diff --git a/README.md b/README.md index 001ceb9..2cfb2a0 100644 --- a/README.md +++ b/README.md @@ -73,7 +73,7 @@ in `/frontend` ## License -The OpenRemote Machine Learning Forecast Service is distributed under [AGPL-3.0-or-later](LICENSE.txt). +The OpenRemote ML Forecast Service is distributed under [AGPL-3.0-or-later](LICENSE.txt). ``` Copyright 2025, OpenRemote Inc. diff --git a/docker/Dockerfile b/docker/Dockerfile index 2045300..12c3fcf 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -17,6 +17,7 @@ ARG ML_WEB_ROOT_PATH ARG ML_OR_KEYCLOAK_URL ARG ML_OR_URL +# Run the front-end bundle in production mode RUN ML_SERVICE_URL=${ML_SERVICE_URL:-/services/ml-forecast} \ ML_WEB_ROOT_PATH=${ML_WEB_ROOT_PATH:-/services/ml-forecast/ui} \ ML_OR_KEYCLOAK_URL=${ML_OR_KEYCLOAK_URL:-/auth} \ @@ -31,24 +32,27 @@ RUN echo "Starting Python build phase..." WORKDIR /app ENV PYTHONUNBUFFERED=1 \ - PYTHONDONTWRITEBYTECODE=1 \ - PIP_NO_CACHE_DIR=1 \ - PIP_DISABLE_PIP_VERSION_CHECK=1 + PYTHONDONTWRITEBYTECODE=1 RUN echo "Installing Python build dependencies..." RUN apt-get update \ && apt-get install -y --no-install-recommends \ build-essential \ + curl \ && rm -rf /var/lib/apt/lists/* -# Copy project files -COPY pyproject.toml README.md ./ +# Install uv +RUN pip install uv + +# Copy the necessary project files +COPY pyproject.toml uv.lock README.md ./ COPY src/ ./src/ COPY scripts/ ./scripts/ +COPY packages/ ./packages/ -# Install project dependencies and clean up +# Install project dependencies using uv RUN echo "Installing Python project dependencies..." -RUN pip install --no-cache-dir . \ +RUN uv sync --no-cache-dir \ && apt-get remove -y build-essential \ && apt-get autoremove -y \ && rm -rf /var/lib/apt/lists/* \ @@ -67,27 +71,29 @@ ARG ML_ENVIRONMENT ENV PYTHONUNBUFFERED=1 \ PYTHONDONTWRITEBYTECODE=1 \ PYTHONPATH=/app/src \ - # Use the ARG, falling back to a default if not provided during build or runtime ML_ENVIRONMENT=${ML_ENVIRONMENT:-production} -# Install runtime dependencies and clean up +# Install any runtime dependencies RUN echo "Installing runtime dependencies..." RUN apt-get update \ && apt-get install -y --no-install-recommends \ curl \ && rm -rf /var/lib/apt/lists/* -# Copy installed packages from builder -RUN echo "Copying Python packages from builder..." -COPY --from=builder /usr/local/lib/python3.13/site-packages/ /usr/local/lib/python3.13/site-packages/ -COPY --from=builder /usr/local/bin/ /usr/local/bin/ +# Install uv package manager +RUN pip install uv # Copy application code -COPY pyproject.toml ./ +COPY pyproject.toml uv.lock README.md ./ COPY src/ ./src/ COPY scripts/ ./scripts/ +COPY packages/ ./packages/ + +# Install project dependencies using uv +RUN echo "Installing Python project dependencies..." +RUN uv sync --no-cache-dir -# Copy frontend build and clean up +# Copy frontend build artifacts RUN echo "Copying frontend build artifacts..." COPY --from=frontend-builder /app/frontend/dist/ ./deployment/web/dist/ RUN rm -rf /app/frontend @@ -100,9 +106,9 @@ RUN mkdir -p ./deployment/data/models ./deployment/data/configs EXPOSE 8000 # Add health check -HEALTHCHECK --interval=5s --timeout=5s --start-period=30s --retries=3 CMD curl --fail --silent http://localhost:8000/ui || exit 1 +HEALTHCHECK --interval=10s --timeout=10s --start-period=30s --retries=3 CMD curl --fail --silent http://localhost:8000/ui || exit 1 RUN echo "Container setup complete! Starting application..." -# Run the application -CMD ["python", "-m", "service_ml_forecast.main"] +# Run the application using uv run to ensure virtual environment is activated +CMD ["uv", "run", "python", "-m", "service_ml_forecast.main"] diff --git a/frontend/index.html b/frontend/index.html index 04bf2b5..7e8cc67 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -26,7 +26,6 @@ /* Outlet */ #outlet { - padding: 20px; min-width: fit-content; } diff --git a/frontend/package.json b/frontend/package.json index 0261153..f4f190b 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -5,6 +5,7 @@ "type": "module", "scripts": { "serve": "cross-env rspack serve", + "build:dev": "cross-env ML_OR_KEYCLOAK_URL=${ML_OR_KEYCLOAK_URL:-http://localhost:8081/auth} ML_OR_URL=${ML_OR_URL:-http://localhost:8080} ML_SERVICE_URL=${ML_SERVICE_URL:-/services/ml-forecast} ML_WEB_ROOT_PATH=${ML_WEB_ROOT_PATH:-/services/ml-forecast/ui} rspack build --mode development", "build:prod": "cross-env ML_OR_KEYCLOAK_URL=${ML_OR_KEYCLOAK_URL:-/auth} ML_OR_URL=${ML_OR_URL} ML_SERVICE_URL=${ML_SERVICE_URL:-/services/ml-forecast} ML_WEB_ROOT_PATH=${ML_WEB_ROOT_PATH:-/services/ml-forecast/ui} rspack build --mode production", "build:analyze": "rspack build --mode production --analyze", "lint": "eslint && prettier . --check", diff --git a/frontend/src/components/breadcrumb-nav.ts b/frontend/src/components/breadcrumb-nav.ts index 03a7af4..3e563cc 100644 --- a/frontend/src/components/breadcrumb-nav.ts +++ b/frontend/src/components/breadcrumb-nav.ts @@ -19,6 +19,7 @@ import { css, html, LitElement } from 'lit'; import { customElement, property, state } from 'lit/decorators.js'; import { Router, RouterLocation } from '@vaadin/router'; import { getRootPath } from '../common/util'; +import { IS_EMBEDDED } from '../common/constants'; /** * Represents a part of the breadcrumb navigation @@ -26,6 +27,7 @@ import { getRootPath } from '../common/util'; interface BreadcrumbPart { path: string; name: string; + icon?: string; } /** @@ -42,7 +44,31 @@ export class BreadcrumbNav extends LitElement { align-items: center; gap: 8px; margin-bottom: 16px; - width: fit-content; + width: 100%; + justify-content: space-between; + } + + .breadcrumb-container { + display: flex; + align-items: center; + gap: 8px; + } + + .realm-badge { + background-color: var(--or-app-color4); + color: white; + padding: 4px 12px; + border-radius: 16px; + font-size: 12px; + font-weight: 500; + text-transform: uppercase; + letter-spacing: 0.5px; + margin-left: auto; + min-width: 60px; + text-align: center; + display: flex; + align-items: center; + justify-content: center; } a { @@ -53,7 +79,7 @@ export class BreadcrumbNav extends LitElement { gap: 4px; --or-icon-width: 16px; --or-icon-height: 16px; - max-width: 200px; + max-width: 300px; } a:hover { @@ -63,7 +89,7 @@ export class BreadcrumbNav extends LitElement { span[aria-current='page'] { color: rgba(0, 0, 0, 0.87); font-weight: 500; - max-width: 200px; + max-width: 300px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; @@ -86,18 +112,10 @@ export class BreadcrumbNav extends LitElement { protected readonly rootPath = getRootPath(); - protected get HOME_LINK(): BreadcrumbPart { - return { - path: `${this.rootPath}/${this.realm}/configs`, - name: 'ML Forecast Service' - }; - } - - protected readonly MAX_TEXT_LENGTH = 20; + protected readonly MAX_TEXT_LENGTH = 40; willUpdate(changedProperties: Map) { if (changedProperties.has('realm') && this.realm) { - // Trigger location change event const location: Partial = { pathname: `${this.rootPath}/${this.realm}/configs`, params: { @@ -105,7 +123,6 @@ export class BreadcrumbNav extends LitElement { } }; - // Update the breadcrumbs and title this.updateBreadcrumbs(location as RouterLocation); } } @@ -115,7 +132,6 @@ export class BreadcrumbNav extends LitElement { */ protected readonly handleLocationChange = (event: CustomEvent<{ location: RouterLocation }>) => { const location = event.detail.location; - // Update the breadcrumbs and title this.updateBreadcrumbs(location); }; @@ -136,26 +152,40 @@ export class BreadcrumbNav extends LitElement { const parts: BreadcrumbPart[] = []; const { pathname, params } = location; - // Add Smartcity part (realm) - if (this.realm) { - parts.push({ - path: `${this.rootPath}/${this.realm}/configs`, - name: this.realm.charAt(0).toUpperCase() + this.realm.slice(1) - }); + const homePart = { + path: `${this.rootPath}/${this.realm}/configs`, + name: 'ML Forecast Service', + icon: 'puzzle' + }; + + // If we are not embedded, add the home part + if (!IS_EMBEDDED) { + parts.push(homePart); } + const configsPart = { + path: `${this.rootPath}/${this.realm}/configs`, + name: 'Configurations' + }; + // Add Configs part if (pathname.includes('/configs')) { - parts.push({ - path: `${this.rootPath}/${this.realm}/configs`, - name: 'Configs' - }); + parts.push(configsPart); - // Add specific config part if we're on a config page - if (params.id) { + // Handle config editor page + const isExistingConfig = params.id && !pathname.includes('/new'); + if (isExistingConfig) { parts.push({ path: `${this.rootPath}/${this.realm}/configs/${params.id}`, - name: params.id === 'new' ? 'New Config' : `${params.id}` + name: `${params.id}` + }); + } + + const isNewConfig = pathname.includes('/new'); + if (isNewConfig) { + parts.push({ + path: `${this.rootPath}/${this.realm}/configs/new`, + name: 'New' }); } } @@ -173,15 +203,18 @@ export class BreadcrumbNav extends LitElement { /** * Renders a single breadcrumb item */ - protected renderBreadcrumbItem(part: BreadcrumbPart, readonly: boolean) { + protected renderBreadcrumbItem(part: BreadcrumbPart, readonly: boolean, isFirst: boolean) { const truncatedName = this.truncateText(part.name); + const icon = part.icon ? html`` : html``; + return html` - + ${!isFirst ? html`` : html``} ${readonly ? html`${truncatedName}` : html` this.handleNavigation(e, part.path)}> + ${icon} ${truncatedName} `} @@ -197,15 +230,20 @@ export class BreadcrumbNav extends LitElement { } render() { - const truncatedHomeName = this.truncateText(this.HOME_LINK.name); + // Hide breadcrumbs if there's only one part + const shouldShowBreadcrumbs = this.parts.length > 1; + if (!shouldShowBreadcrumbs) { + return html``; + } + + const realmBadge = IS_EMBEDDED ? html`` : html`
${this.realm}
`; return html` `; } diff --git a/frontend/src/pages/app-layout.ts b/frontend/src/pages/app-layout.ts index f3d3b1a..8e7d9f7 100644 --- a/frontend/src/pages/app-layout.ts +++ b/frontend/src/pages/app-layout.ts @@ -17,16 +17,27 @@ import { createContext, provide } from '@lit/context'; import { PreventAndRedirectCommands, RouterLocation } from '@vaadin/router'; -import { html, LitElement } from 'lit'; +import { css, html, LitElement, unsafeCSS } from 'lit'; import { customElement, state } from 'lit/decorators.js'; import { setRealmTheme } from '../common/theme'; import { manager } from '@openremote/core'; -import { ML_OR_URL } from '../common/constants'; +import { IS_EMBEDDED, ML_OR_URL } from '../common/constants'; export const realmContext = createContext(Symbol('realm')); @customElement('app-layout') export class AppLayout extends LitElement { + static get styles() { + const padding = IS_EMBEDDED ? '0 20px' : '20px'; + + return css` + :host { + display: block; + padding: ${unsafeCSS(padding)}; + } + `; + } + // Provide the realm to all child elements @provide({ context: realmContext }) @state() diff --git a/frontend/src/pages/pages-config-list.ts b/frontend/src/pages/pages-config-list.ts index a697b80..148f7b4 100644 --- a/frontend/src/pages/pages-config-list.ts +++ b/frontend/src/pages/pages-config-list.ts @@ -58,12 +58,16 @@ export class PageConfigList extends LitElement { --or-icon-fill: var(--or-app-color3); } .title { - font-size: 18px; - font-weight: bold; + font-size: 14px; + font-weight: bolder; display: flex; flex-direction: row; align-items: center; color: var(--or-app-color3); + text-transform: uppercase; + line-height: 1em; + flex: 0 0 auto; + letter-spacing: 0.025em; } `; } @@ -166,8 +170,8 @@ export class PageConfigList extends LitElement {
- - Forecast Configurations + + Forecast configurations
=42", "wheel"] +build-backend = "setuptools.build_meta" + +[project] +name = "openremote-client" +version = "0.1.0" +description = "A Python client for interacting with the OpenRemote API" +readme = "README.md" +requires-python = ">=3.13" + +dependencies = ["httpx>=0.24.0", "pydantic>=2.0.0", "apscheduler>=3.11.0"] + +[tool.setuptools] +package-dir = { "" = "src" } +[tool.setuptools.package-data] +"openremote_client" = ["py.typed"] # include type stubs + +[tool.setuptools.packages.find] +where = ["src"] diff --git a/packages/openremote_client/src/openremote_client/__init__.py b/packages/openremote_client/src/openremote_client/__init__.py new file mode 100644 index 0000000..cb2e7ca --- /dev/null +++ b/packages/openremote_client/src/openremote_client/__init__.py @@ -0,0 +1,29 @@ +"""OpenRemote Client Package.""" + +from openremote_client.client_roles import ClientRoles +from openremote_client.models import ( + AssetDatapoint, + AssetDatapointPeriod, + AssetDatapointQuery, + BasicAsset, + BasicAttribute, + Realm, + ServiceInfo, + ServiceStatus, +) +from openremote_client.rest_client import OpenRemoteClient +from openremote_client.service_registrar import OpenRemoteServiceRegistrar + +__all__ = [ + "AssetDatapoint", + "AssetDatapointPeriod", + "AssetDatapointQuery", + "BasicAsset", + "BasicAttribute", + "ClientRoles", + "OpenRemoteClient", + "OpenRemoteServiceRegistrar", + "Realm", + "ServiceInfo", + "ServiceStatus", +] diff --git a/packages/openremote_client/src/openremote_client/client_roles.py b/packages/openremote_client/src/openremote_client/client_roles.py new file mode 100644 index 0000000..8547303 --- /dev/null +++ b/packages/openremote_client/src/openremote_client/client_roles.py @@ -0,0 +1,25 @@ +# Copyright 2025, OpenRemote Inc. +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +# SPDX-License-Identifier: AGPL-3.0-or-later + +""" +This module contains the client roles for the OpenRemote API. +""" + + +class ClientRoles: + READ_SERVICES_ROLE = "read:services" + WRITE_SERVICES_ROLE = "write:services" diff --git a/src/service_ml_forecast/clients/openremote/models.py b/packages/openremote_client/src/openremote_client/models.py similarity index 61% rename from src/service_ml_forecast/clients/openremote/models.py rename to packages/openremote_client/src/openremote_client/models.py index bc82d59..5e3fdf8 100644 --- a/src/service_ml_forecast/clients/openremote/models.py +++ b/packages/openremote_client/src/openremote_client/models.py @@ -15,6 +15,7 @@ # # SPDX-License-Identifier: AGPL-3.0-or-later +from enum import Enum from typing import Any from pydantic import BaseModel @@ -81,3 +82,47 @@ class Realm(BaseModel): name: str displayName: str + + +class ServiceStatus(str, Enum): + """The status of a registered service. + + - AVAILABLE: The service is available and can be used + - UNAVAILABLE: The service is unavailable + """ + + AVAILABLE = "AVAILABLE" + UNAVAILABLE = "UNAVAILABLE" + + +class ServiceInfo(BaseModel): + """Holds comprehensive details about a service. + + This object is used to register and deregister services. + """ + + serviceId: str + """The unique identifier of the service, e.g. 'energy-service'""" + + instanceId: int | None = None + """The unique instance identifier of the registered service, + either generated by the service or provided by the user.""" + + label: str + """The label of the service, e.g. 'Energy Service'""" + + icon: str | None = None + """The icon of the service, e.g. 'puzzle', must be part of the Material Design Icons set""" + + version: str | None = None + """The version of the service, e.g. '1.0.0'""" + + homepageUrl: str + """The URL of the service's homepage which provides the user interface, + e.g. 'https://openremote.app/services/energy-service/ui'""" + + status: ServiceStatus + """The status of the service, e.g. 'AVAILABLE'""" + + realm: str + """The realm of the service, e.g. 'master'""" diff --git a/src/service_ml_forecast/clients/openremote/__init__.py b/packages/openremote_client/src/openremote_client/py.typed similarity index 100% rename from src/service_ml_forecast/clients/openremote/__init__.py rename to packages/openremote_client/src/openremote_client/py.typed diff --git a/packages/openremote_client/src/openremote_client/rest_client.py b/packages/openremote_client/src/openremote_client/rest_client.py new file mode 100644 index 0000000..1bf6099 --- /dev/null +++ b/packages/openremote_client/src/openremote_client/rest_client.py @@ -0,0 +1,450 @@ +# Copyright 2025, OpenRemote Inc. +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +# SPDX-License-Identifier: AGPL-3.0-or-later + +import logging +import time +from http import HTTPStatus +from typing import Any + +import httpx +from pydantic import BaseModel + +from openremote_client.models import ( + AssetDatapoint, + AssetDatapointPeriod, + AssetDatapointQuery, + BasicAsset, + Realm, + ServiceInfo, +) + +MASTER_REALM = "master" + + +class OAuthTokenResponse(BaseModel): + """Response model for OpenRemote OAuth token.""" + + access_token: str + token_type: str + expires_in: int + + +class OAuthTokenRequest(BaseModel): + """Request model for OpenRemote OAuth token.""" + + grant_type: str + client_id: str + client_secret: str + + +class OpenRemoteClient: + """Client for OpenRemote API. + + Args: + openremote_url: The URL of the OpenRemote API. + keycloak_url: The URL of the Keycloak API. + realm: The default realm to use for the OpenRemote API. + service_user: The service user for the OpenRemote API. + service_user_secret: The service user secret for the OpenRemote API. + timeout: Timeout in seconds for HTTP requests. Defaults to 30 seconds. + + Raises: + Exception: If the authentication fails + """ + + logger = logging.getLogger(__name__) + + def __init__( + self, + openremote_url: str, + keycloak_url: str, + realm: str, + service_user: str, + service_user_secret: str, + timeout: float = 60.0, + ): + self.openremote_url: str = openremote_url + self.keycloak_url: str = keycloak_url + self.realm: str = realm + self.service_user: str = service_user + self.service_user_secret: str = service_user_secret + self.oauth_token: OAuthTokenResponse | None = None + self.token_expiration_timestamp: float | None = None + self.timeout: float = timeout + + # Initialize nested clients + self.assets = self._Assets(self) + self.realms = self._Realms(self) + self.health = self._Health(self) + self.services = self._Services(self) + + self._authenticate() + + def _authenticate(self) -> bool: + token = self._get_token() + if token is not None: + self.oauth_token = token + self.token_expiration_timestamp = time.time() + token.expires_in + return True + return False + + def _get_token(self) -> OAuthTokenResponse | None: + url = f"{self.keycloak_url}/realms/{self.realm}/protocol/openid-connect/token" + + data = OAuthTokenRequest( + grant_type="client_credentials", + client_id=self.service_user, + client_secret=self.service_user_secret, + ) + + with httpx.Client(timeout=self.timeout) as client: + try: + response = client.post(url, data=data.model_dump()) + response.raise_for_status() + token_data = OAuthTokenResponse(**response.json()) + return token_data + except (httpx.HTTPStatusError, httpx.ConnectError) as e: + self.logger.warning(f"Error getting authentication token: {e}") + return None + + def _check_and_refresh_auth(self) -> bool: + if self.oauth_token is None or ( + self.token_expiration_timestamp is not None and time.time() > self.token_expiration_timestamp - 10 + ): + return self._authenticate() + return True + + def _build_headers(self) -> dict[str, str]: + headers = {"Content-Type": "application/json"} + if self.oauth_token is not None: + headers["Authorization"] = f"Bearer {self.oauth_token.access_token}" + return headers + + def _build_request(self, method: str, url: str, data: Any | None = None) -> httpx.Request: + self._check_and_refresh_auth() + headers = self._build_headers() + return httpx.Request(method, url, headers=headers, json=data) + + class _Health: + """Health check operations.""" + + def __init__(self, client: "OpenRemoteClient"): + self._client = client + + def check(self) -> bool: + """Check if the OpenRemote API is healthy. + + Returns: + bool: True if healthy, False if not. + """ + url = f"{self._client.openremote_url}/api/master/health" + + request = self._client._build_request("GET", url) + with httpx.Client(timeout=self._client.timeout) as client: + try: + response = client.send(request) + response.raise_for_status() + return response.status_code == HTTPStatus.OK + except (httpx.HTTPStatusError, httpx.ConnectError) as e: + self._client.logger.error(f"OpenRemote API is not healthy: {e}") + return False + + class _Assets: + """Asset-related operations.""" + + def __init__(self, client: "OpenRemoteClient"): + self._client = client + + def get_datapoint_period( + self, asset_id: str, attribute_name: str, realm: str | None = None + ) -> AssetDatapointPeriod | None: + """Retrieve the datapoints timestamp period of a given asset attribute. + + Args: + asset_id: The ID of the asset. + attribute_name: The name of the attribute. + realm: The realm to retrieve assets from defaulting to the configured realm. + + Returns: + AssetDatapointPeriod | None: The datapoints timestamp period of the asset attribute + """ + if realm is None: + realm = self._client.realm + + query = f"?assetId={asset_id}&attributeName={attribute_name}" + url = f"{self._client.openremote_url}/api/{realm}/asset/datapoint/periods{query}" + + request = self._client._build_request("GET", url) + + with httpx.Client(timeout=self._client.timeout) as client: + try: + response = client.send(request) + response.raise_for_status() + return AssetDatapointPeriod(**response.json()) + except (httpx.HTTPStatusError, httpx.ConnectError) as e: + self._client.logger.error(f"Error retrieving asset datapoint period: {e}") + return None + + def get_historical_datapoints( + self, + asset_id: str, + attribute_name: str, + from_timestamp: int, + to_timestamp: int, + realm: str | None = None, + ) -> list[AssetDatapoint] | None: + """Retrieve the historical data points of a given asset attribute. + + Remarks: + - Note, request may fail if more than 100k datapoints are requested, depending on the OpenRemote instance. + + Args: + asset_id: The ID of the asset. + attribute_name: The name of the attribute. + from_timestamp: Epoch timestamp in milliseconds. + to_timestamp: Epoch timestamp in milliseconds. + realm: The realm to retrieve assets from defaulting to the configured realm. + Returns: + list[AssetDatapoint] | None: List of historical data points or None + """ + if realm is None: + realm = self._client.realm + + params = f"{asset_id}/{attribute_name}" + url = f"{self._client.openremote_url}/api/{realm}/asset/datapoint/{params}" + + request_body = AssetDatapointQuery( + fromTimestamp=from_timestamp, + toTimestamp=to_timestamp, + ) + + request = self._client._build_request("POST", url, data=request_body.model_dump()) + + with httpx.Client(timeout=self._client.timeout) as client: + try: + response = client.send(request) + response.raise_for_status() + datapoints = response.json() + return [AssetDatapoint(**datapoint) for datapoint in datapoints] + except (httpx.HTTPStatusError, httpx.ConnectError) as e: + self._client.logger.error(f"Error retrieving historical datapoints: {e}") + return None + + def write_predicted_datapoints( + self, + asset_id: str, + attribute_name: str, + datapoints: list[AssetDatapoint], + realm: str | None = None, + ) -> bool: + """Write the predicted data points of a given asset attribute. + + Args: + asset_id: The ID of the asset. + attribute_name: The name of the attribute. + datapoints: The data points to write. + realm: The realm to write the data points to defaulting to the configured realm. + Returns: + bool: True if successful + """ + if realm is None: + realm = self._client.realm + + params = f"{asset_id}/{attribute_name}" + url = f"{self._client.openremote_url}/api/{realm}/asset/predicted/{params}" + + datapoints_json = [datapoint.model_dump() for datapoint in datapoints] + + request = self._client._build_request("PUT", url, data=datapoints_json) + + with httpx.Client(timeout=self._client.timeout) as client: + try: + response = client.send(request) + response.raise_for_status() + return response.status_code == HTTPStatus.NO_CONTENT + except (httpx.HTTPStatusError, httpx.ConnectError) as e: + self._client.logger.error(f"Error writing predicted datapoints: {e}") + return False + + def get_predicted_datapoints( + self, + asset_id: str, + attribute_name: str, + from_timestamp: int, + to_timestamp: int, + realm: str | None = None, + ) -> list[AssetDatapoint] | None: + """Retrieve the predicted data points of a given asset attribute. + + Args: + asset_id: The ID of the asset. + attribute_name: The name of the attribute. + from_timestamp: Epoch timestamp in milliseconds. + to_timestamp: Epoch timestamp in milliseconds. + realm: The realm to retrieve assets from defaulting to the configured realm. + Returns: + list[AssetDatapoint] | None: List of predicted data points or None + """ + if realm is None: + realm = self._client.realm + + params = f"{asset_id}/{attribute_name}" + url = f"{self._client.openremote_url}/api/{realm}/asset/predicted/{params}" + + request_body = AssetDatapointQuery( + fromTimestamp=from_timestamp, + toTimestamp=to_timestamp, + ) + + request = self._client._build_request("POST", url, data=request_body.model_dump()) + + with httpx.Client(timeout=self._client.timeout) as client: + try: + response = client.send(request) + response.raise_for_status() + datapoints = response.json() + return [AssetDatapoint(**datapoint) for datapoint in datapoints] + except (httpx.HTTPStatusError, httpx.ConnectError) as e: + self._client.logger.error(f"Error retrieving predicted datapoints: {e}") + return None + + def query(self, asset_query: dict[str, Any], realm: str | None = None) -> list[BasicAsset] | None: + """Perform an asset query. + + Args: + asset_query: The asset query dict to send to the OpenRemote API. + realm: The realm to perform the asset query on. + Returns: + list[Asset] | None: List of assets or None + """ + if realm is None: + realm = self._client.realm + + url = f"{self._client.openremote_url}/api/{realm}/asset/query" + request = self._client._build_request("POST", url, data=asset_query) + with httpx.Client(timeout=self._client.timeout) as client: + try: + response = client.send(request) + response.raise_for_status() + assets = response.json() + return [BasicAsset(**asset) for asset in assets] + except (httpx.HTTPStatusError, httpx.ConnectError) as e: + self._client.logger.error(f"Error retrieving assets: {e}") + return None + + def get_by_ids( + self, asset_ids: list[str], query_realm: str, realm: str | None = None + ) -> list[BasicAsset] | None: + """Retrieve assets by their IDs. + + Args: + asset_ids: The IDs of the assets to retrieve. + query_realm: The realm for the asset query. + realm: The realm to retrieve assets from defaulting to the configured realm. + + Returns: + list[Asset] | None: List of assets or None + """ + if realm is None: + realm = self._client.realm + + asset_query = { + "recursive": False, + "realm": {"name": query_realm}, + "ids": asset_ids, + } + return self.query(asset_query, realm) + + class _Realms: + """Realm-related operations.""" + + def __init__(self, client: "OpenRemoteClient"): + self._client = client + + def get_accessible(self, realm: str | None = None) -> list[Realm] | None: + """Retrieves all realms. + + Args: + realm: The realm to retrieve realms from defaulting to the configured realm. + + Returns: + list[Realm] | None: List of realms or None + """ + if realm is None: + realm = self._client.realm + + url = f"{self._client.openremote_url}/api/{realm}/realm/accessible" + request = self._client._build_request("GET", url) + + with httpx.Client(timeout=self._client.timeout) as client: + try: + response = client.send(request) + response.raise_for_status() + + return [Realm(**realm) for realm in response.json()] + + except (httpx.HTTPStatusError, httpx.ConnectError) as e: + self._client.logger.error(f"Error retrieving realms: {e}") + return None + + class _Services: + """Service-related operations.""" + + def __init__(self, client: "OpenRemoteClient"): + self._client = client + + def register(self, service: ServiceInfo, is_global: bool = False) -> ServiceInfo | None: + """Registers a service with the OpenRemote API.""" + url = f"{self._client.openremote_url}/api/{self._client.realm}/service" + if is_global: + url = f"{self._client.openremote_url}/api/{self._client.realm}/service/global" + + request = self._client._build_request("POST", url, data=service.model_dump()) + with httpx.Client(timeout=self._client.timeout) as client: + try: + response = client.send(request) + response.raise_for_status() + return ServiceInfo(**response.json()) + except (httpx.HTTPStatusError, httpx.ConnectError) as e: + self._client.logger.error(f"Error registering service: {e}") + return None + + def heartbeat(self, service_id: str, instance_id: int) -> bool: + """Sends a heartbeat to the OpenRemote API.""" + url = f"{self._client.openremote_url}/api/{self._client.realm}/service/{service_id}/{instance_id}" + request = self._client._build_request("PUT", url) + with httpx.Client(timeout=self._client.timeout) as client: + try: + response = client.send(request) + response.raise_for_status() + return response.status_code == HTTPStatus.NO_CONTENT + except (httpx.HTTPStatusError, httpx.ConnectError) as e: + self._client.logger.error(f"Error sending heartbeat: {e}") + return False + + def deregister(self, service_id: str, instance_id: int) -> bool: + """Deregisters a service with the OpenRemote API.""" + url = f"{self._client.openremote_url}/api/{self._client.realm}/service/{service_id}/{instance_id}" + request = self._client._build_request("DELETE", url) + with httpx.Client(timeout=self._client.timeout) as client: + try: + response = client.send(request) + response.raise_for_status() + return response.status_code == HTTPStatus.NO_CONTENT + except (httpx.HTTPStatusError, httpx.ConnectError) as e: + self._client.logger.error(f"Error deregistering service: {e}") + return False diff --git a/packages/openremote_client/src/openremote_client/service_registrar.py b/packages/openremote_client/src/openremote_client/service_registrar.py new file mode 100644 index 0000000..799fd45 --- /dev/null +++ b/packages/openremote_client/src/openremote_client/service_registrar.py @@ -0,0 +1,146 @@ +# Copyright 2025, OpenRemote Inc. +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +# SPDX-License-Identifier: AGPL-3.0-or-later + +import logging + +from apscheduler.executors.pool import ThreadPoolExecutor +from apscheduler.jobstores.memory import MemoryJobStore +from apscheduler.schedulers.background import BackgroundScheduler + +from openremote_client.models import ServiceInfo +from openremote_client.rest_client import OpenRemoteClient + +logger = logging.getLogger(__name__) + +HEARTBEAT_JOB_ID = "service:heartbeat" +JOB_GRACE_PERIOD = 60 +HEARTBEAT_INTERVAL = 30 + + +class OpenRemoteServiceRegistrar: + """Manages the registration and heartbeat scheduling for OpenRemote services.""" + + def __init__( + self, + client: OpenRemoteClient, + service_info: ServiceInfo, + is_global: bool = False, + ): + self.client = client + self.service_info = service_info + self.is_global = is_global + self.instance_id: int | None = None + self.registered = False + self._stopped = False + + executors = { + "thread_pool": ThreadPoolExecutor(max_workers=1), + } + jobstores = {"default": MemoryJobStore()} + + self.scheduler = BackgroundScheduler( + jobstores=jobstores, + executors=executors, + daemon=True, + coalesce=True, + max_instances=1, + job_defaults={"misfire_grace_time": JOB_GRACE_PERIOD}, + logger=logger, + ) + + def start(self) -> None: + """Start the scheduler and register the service.""" + if self.scheduler.running: + logger.warning("Service scheduler already running") + return + + self.scheduler.start() + logger.info("Service registrar scheduler started") + self._register_service() + + self.scheduler.add_job( + self._send_heartbeat, + trigger="interval", + seconds=HEARTBEAT_INTERVAL, + id=HEARTBEAT_JOB_ID, + name=HEARTBEAT_JOB_ID, + executor="thread_pool", + ) + + def stop(self) -> None: + """Stop the scheduler and deregister the service.""" + if self._stopped: + return + self._stopped = True + + if self.registered and self.instance_id: + self._deregister_service() + + if self.scheduler.running: + self.scheduler.shutdown() + + def _register_service(self) -> None: + """Register the service with OpenRemote.""" + try: + response = self.client.services.register(self.service_info, self.is_global) + + if response is not None: + self.instance_id = response.instanceId + self.registered = True + logger.info(f"Successfully registered service with instance ID: {self.instance_id}") + else: + logger.error("Failed to register service with OpenRemote") + + except Exception as e: + logger.error(f"Error registering service: {e}") + + def _send_heartbeat(self) -> None: + """Send a heartbeat to OpenRemote.""" + if not self.registered or not self.instance_id: + logger.warning("Cannot send heartbeat - service not registered, attempting re-registration") + self._register_service() + return + + try: + success = self.client.services.heartbeat(self.service_info.serviceId, self.instance_id) + + if success: + logger.debug(f"Heartbeat sent successfully for instance: {self.instance_id}") + else: + logger.error(f"Failed to send heartbeat for instance: {self.instance_id}, trying re-registration") + self._register_service() + + except Exception as e: + logger.error(f"Error sending heartbeat: {e}") + + def _deregister_service(self) -> None: + """Deregister the service from OpenRemote.""" + if not self.instance_id: + return + + try: + success = self.client.services.deregister(self.service_info.serviceId, self.instance_id) + + if success: + logger.info(f"Successfully deregistered service with instance ID: {self.instance_id}") + self.registered = False + self.instance_id = None + else: + logger.error(f"Failed to deregister service with instance ID: {self.instance_id}") + + except Exception as e: + logger.error(f"Error deregistering service: {e}") diff --git a/packages/openremote_client/tests/__init__.py b/packages/openremote_client/tests/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/packages/openremote_client/tests/conftest.py b/packages/openremote_client/tests/conftest.py new file mode 100644 index 0000000..865c177 --- /dev/null +++ b/packages/openremote_client/tests/conftest.py @@ -0,0 +1,46 @@ +"""Test configuration and fixtures for the openremote_client package.""" + +from http import HTTPStatus + +import pytest +import respx +from openremote_client.rest_client import OpenRemoteClient + +# Common test data used across multiple tests +TEST_ASSET_ID = "44ORIhkDVAlT97dYGUD9n5" +TEST_ATTRIBUTE_NAME = "powerTotalConsumers" +TEST_OLDEST_TIMESTAMP = 1716153600000 # 2024-05-20 00:00:00 UTC + +# Mock URLs and credentials +MOCK_OPENREMOTE_URL = "https://openremote.local" +MOCK_KEYCLOAK_URL = "https://keycloak.local/auth" +MOCK_REALM = "master" +MOCK_SERVICE_USER = "service_user" +MOCK_SERVICE_USER_SECRET = "service_user_secret" +MOCK_ACCESS_TOKEN = "mock_access_token" +MOCK_TOKEN_EXPIRY_SECONDS = 60 + + +@pytest.fixture +def mock_openremote_client() -> OpenRemoteClient | None: + """Create a mock OpenRemote client with mocked authentication.""" + with respx.mock(base_url=MOCK_KEYCLOAK_URL) as respx_mock: + respx_mock.post("/realms/master/protocol/openid-connect/token").mock( + return_value=respx.MockResponse( + HTTPStatus.OK, + json={ + "access_token": MOCK_ACCESS_TOKEN, + "token_type": "Bearer", + "expires_in": MOCK_TOKEN_EXPIRY_SECONDS, + }, + ), + ) + + client = OpenRemoteClient( + openremote_url=MOCK_OPENREMOTE_URL, + keycloak_url=MOCK_KEYCLOAK_URL, + realm=MOCK_REALM, + service_user=MOCK_SERVICE_USER, + service_user_secret=MOCK_SERVICE_USER_SECRET, + ) + return client diff --git a/packages/openremote_client/tests/test_rest_client.py b/packages/openremote_client/tests/test_rest_client.py new file mode 100644 index 0000000..2509662 --- /dev/null +++ b/packages/openremote_client/tests/test_rest_client.py @@ -0,0 +1,463 @@ +import time +from http import HTTPStatus +from typing import Any + +import respx +from openremote_client.models import AssetDatapoint, AssetDatapointPeriod +from openremote_client.rest_client import OpenRemoteClient + +from .conftest import ( + MOCK_OPENREMOTE_URL, + TEST_ASSET_ID, + TEST_ATTRIBUTE_NAME, + TEST_OLDEST_TIMESTAMP, +) + +# Test constants to avoid magic numbers +EXPECTED_DATAPOINTS_COUNT = 2 +EXPECTED_ASSETS_COUNT = 2 +EXPECTED_REALMS_COUNT = 2 + + +# helper function to convert seconds to milliseconds +def sec_to_ms(timestamp: int) -> int: + return int(timestamp * 1000) + + +def test_health_check_success(mock_openremote_client: OpenRemoteClient) -> None: + """Test successful health check. + + Verifies that: + - The client can perform a health check + - The method returns True when the API is healthy + """ + with respx.mock(base_url=MOCK_OPENREMOTE_URL) as respx_mock: + respx_mock.get("/api/master/health").mock( + return_value=respx.MockResponse(HTTPStatus.OK), + ) + assert mock_openremote_client.health.check() is True + + +def test_health_check_failure(mock_openremote_client: OpenRemoteClient) -> None: + """Test health check failure. + + Verifies that: + - The client properly handles health check failures + - The method returns False when the API is not healthy + """ + with respx.mock(base_url=MOCK_OPENREMOTE_URL) as respx_mock: + respx_mock.get("/api/master/health").mock( + return_value=respx.MockResponse(HTTPStatus.INTERNAL_SERVER_ERROR), + ) + assert mock_openremote_client.health.check() is False + + +def test_get_asset_datapoint_period(mock_openremote_client: OpenRemoteClient) -> None: + """Test retrieval of datapoint period information for an asset attribute. + + Verifies that: + - The client can retrieve time period information for datapoints + - The response is properly parsed into an AssetDatapointPeriod object + - The returned object contains the correct asset ID and attribute name + """ + # Mock asset datapoint period endpoint + with respx.mock(base_url=MOCK_OPENREMOTE_URL) as respx_mock: + respx_mock.get( + f"/api/master/asset/datapoint/periods?assetId={TEST_ASSET_ID}&attributeName={TEST_ATTRIBUTE_NAME}", + ).mock( + return_value=respx.MockResponse( + HTTPStatus.OK, + json={ + "assetId": TEST_ASSET_ID, + "attributeName": TEST_ATTRIBUTE_NAME, + "oldestTimestamp": TEST_OLDEST_TIMESTAMP, + "latestTimestamp": sec_to_ms(int(time.time())), + }, + ), + ) + datapoint_period: AssetDatapointPeriod | None = mock_openremote_client.assets.get_datapoint_period( + TEST_ASSET_ID, + TEST_ATTRIBUTE_NAME, + ) + assert datapoint_period is not None + assert datapoint_period.assetId == TEST_ASSET_ID + assert datapoint_period.attributeName == TEST_ATTRIBUTE_NAME + + +def test_get_asset_datapoint_period_invalid_asset_id(mock_openremote_client: OpenRemoteClient) -> None: + """Test datapoint period retrieval with an invalid asset ID. + + Verifies that: + - The client properly handles a NOT_FOUND response for invalid asset IDs + - The method returns None when the asset doesn't exist + """ + # Mock asset datapoint period endpoint + with respx.mock(base_url=MOCK_OPENREMOTE_URL) as respx_mock: + respx_mock.get( + f"/api/master/asset/datapoint/periods?assetId=invalid_asset_id&attributeName={TEST_ATTRIBUTE_NAME}", + ).mock(return_value=respx.MockResponse(HTTPStatus.NOT_FOUND)) + + datapoint_period: AssetDatapointPeriod | None = mock_openremote_client.assets.get_datapoint_period( + "invalid_asset_id", + TEST_ATTRIBUTE_NAME, + ) + assert datapoint_period is None + + +def test_get_historical_datapoints(mock_openremote_client: OpenRemoteClient) -> None: + """Test retrieval of historical datapoints for an asset attribute. + + Verifies that: + - The client can retrieve historical time series data + - The response is properly parsed into AssetDatapoint objects + - The returned datapoints have the expected timestamps and values + """ + # Mock historical datapoints endpoint + mock_values = [100, 200] + + with respx.mock(base_url=MOCK_OPENREMOTE_URL) as respx_mock: + respx_mock.post(f"/api/master/asset/datapoint/{TEST_ASSET_ID}/{TEST_ATTRIBUTE_NAME}").mock( + return_value=respx.MockResponse( + HTTPStatus.OK, + json=[ + {"x": TEST_OLDEST_TIMESTAMP, "y": mock_values[0]}, + {"x": TEST_OLDEST_TIMESTAMP + 1, "y": mock_values[1]}, + ], + ), + ) + datapoints: list[AssetDatapoint] | None = mock_openremote_client.assets.get_historical_datapoints( + TEST_ASSET_ID, + TEST_ATTRIBUTE_NAME, + TEST_OLDEST_TIMESTAMP, + sec_to_ms(int(time.time())), + ) + assert datapoints is not None + assert len(datapoints) > 0 + assert datapoints[0].x == TEST_OLDEST_TIMESTAMP + assert datapoints[0].y == mock_values[0] + + +def test_get_historical_datapoints_invalid_asset_id(mock_openremote_client: OpenRemoteClient) -> None: + """Test historical datapoint retrieval with an invalid asset ID. + + Verifies that: + - The client properly handles a NOT_FOUND response for invalid asset IDs + - The method returns None when the asset doesn't exist + """ + # Mock historical datapoints endpoint + with respx.mock(base_url=MOCK_OPENREMOTE_URL) as respx_mock: + respx_mock.post(f"/api/master/asset/datapoint/invalid_asset_id/{TEST_ATTRIBUTE_NAME}").mock( + return_value=respx.MockResponse(HTTPStatus.NOT_FOUND), + ) + datapoints: list[AssetDatapoint] | None = mock_openremote_client.assets.get_historical_datapoints( + "invalid_asset_id", + TEST_ATTRIBUTE_NAME, + TEST_OLDEST_TIMESTAMP, + sec_to_ms(int(time.time())), + ) + assert datapoints is None + + +def test_write_predicted_datapoints(mock_openremote_client: OpenRemoteClient) -> None: + """Test writing and retrieving predicted datapoints for an asset attribute. + + Verifies that: + - The client can write predicted datapoints to OpenRemote + - The client can retrieve previously written predicted datapoints + - The retrieved datapoints match the originally written ones in both timestamps and values + """ + # Mock predicted datapoints endpoint + mock_timestamp1 = 572127577200000 # 20100-01-01 00:00:00 UTC + mock_timestamp2 = mock_timestamp1 + 1 # 20100-01-01 00:00:01 UTC + mock_values = [100, 200] + + datapoints: list[AssetDatapoint] = [ + AssetDatapoint(x=mock_timestamp1, y=mock_values[0]), + AssetDatapoint(x=mock_timestamp2, y=mock_values[1]), + ] + + with respx.mock(base_url=MOCK_OPENREMOTE_URL) as respx_mock: + respx_mock.put(f"/api/master/asset/predicted/{TEST_ASSET_ID}/{TEST_ATTRIBUTE_NAME}").mock( + return_value=respx.MockResponse(HTTPStatus.NO_CONTENT), + ) + + respx_mock.post(f"/api/master/asset/predicted/{TEST_ASSET_ID}/{TEST_ATTRIBUTE_NAME}").mock( + return_value=respx.MockResponse( + HTTPStatus.OK, + json=[ + {"x": mock_timestamp1, "y": mock_values[0]}, + {"x": mock_timestamp2, "y": mock_values[1]}, + ], + ), + ) + + assert mock_openremote_client.assets.write_predicted_datapoints( + TEST_ASSET_ID, TEST_ATTRIBUTE_NAME, datapoints + ), "Failed to write predicted datapoints" + + predicted_datapoints: list[AssetDatapoint] | None = mock_openremote_client.assets.get_predicted_datapoints( + TEST_ASSET_ID, + TEST_ATTRIBUTE_NAME, + mock_timestamp1, + mock_timestamp2, + ) + assert predicted_datapoints is not None + assert len(predicted_datapoints) == len(datapoints) + + # Sort both lists by timestamp (x) before comparison + sorted_predicted = sorted(predicted_datapoints, key=lambda d: d.x) + sorted_original = sorted(datapoints, key=lambda d: d.x) + + for predicted_datapoint, datapoint in zip(sorted_predicted, sorted_original, strict=True): + assert predicted_datapoint.x == datapoint.x, f"Timestamp mismatch: {predicted_datapoint.x} != {datapoint.x}" + assert predicted_datapoint.y == datapoint.y, f"Value mismatch: {predicted_datapoint.y} != {datapoint.y}" + + +def test_write_predicted_datapoints_failure(mock_openremote_client: OpenRemoteClient) -> None: + """Test writing predicted datapoints failure. + + Verifies that: + - The client properly handles write failures + - The method returns False when write fails + """ + datapoints: list[AssetDatapoint] = [ + AssetDatapoint(x=572127577200000, y=100), + ] + + with respx.mock(base_url=MOCK_OPENREMOTE_URL) as respx_mock: + respx_mock.put(f"/api/master/asset/predicted/{TEST_ASSET_ID}/{TEST_ATTRIBUTE_NAME}").mock( + return_value=respx.MockResponse(HTTPStatus.INTERNAL_SERVER_ERROR), + ) + + assert ( + mock_openremote_client.assets.write_predicted_datapoints(TEST_ASSET_ID, TEST_ATTRIBUTE_NAME, datapoints) + is False + ) + + +def test_get_predicted_datapoints(mock_openremote_client: OpenRemoteClient) -> None: + """Test retrieval of predicted datapoints. + + Verifies that: + - The client can retrieve predicted datapoints + - The response is properly parsed into AssetDatapoint objects + """ + mock_timestamp1 = 572127577200000 + mock_timestamp2 = mock_timestamp1 + 1 + mock_values = [100, 200] + + with respx.mock(base_url=MOCK_OPENREMOTE_URL) as respx_mock: + respx_mock.post(f"/api/master/asset/predicted/{TEST_ASSET_ID}/{TEST_ATTRIBUTE_NAME}").mock( + return_value=respx.MockResponse( + HTTPStatus.OK, + json=[ + {"x": mock_timestamp1, "y": mock_values[0]}, + {"x": mock_timestamp2, "y": mock_values[1]}, + ], + ), + ) + + predicted_datapoints: list[AssetDatapoint] | None = mock_openremote_client.assets.get_predicted_datapoints( + TEST_ASSET_ID, + TEST_ATTRIBUTE_NAME, + mock_timestamp1, + mock_timestamp2, + ) + assert predicted_datapoints is not None + assert len(predicted_datapoints) == EXPECTED_DATAPOINTS_COUNT + assert predicted_datapoints[0].x == mock_timestamp1 + assert predicted_datapoints[0].y == mock_values[0] + assert predicted_datapoints[1].x == mock_timestamp2 + assert predicted_datapoints[1].y == mock_values[1] + + +def test_get_predicted_datapoints_not_found(mock_openremote_client: OpenRemoteClient) -> None: + """Test retrieval of predicted datapoints when not found. + + Verifies that: + - The client properly handles NOT_FOUND responses + - The method returns None when no predicted datapoints exist + """ + with respx.mock(base_url=MOCK_OPENREMOTE_URL) as respx_mock: + respx_mock.post(f"/api/master/asset/predicted/{TEST_ASSET_ID}/{TEST_ATTRIBUTE_NAME}").mock( + return_value=respx.MockResponse(HTTPStatus.NOT_FOUND), + ) + + predicted_datapoints: list[AssetDatapoint] | None = mock_openremote_client.assets.get_predicted_datapoints( + TEST_ASSET_ID, + TEST_ATTRIBUTE_NAME, + 572127577200000, + 572127577200001, + ) + assert predicted_datapoints is None + + +def test_asset_query(mock_openremote_client: OpenRemoteClient) -> None: + """Test asset query functionality. + + Verifies that: + - The client can perform asset queries + - The response is properly parsed into BasicAsset objects + """ + asset_query = { + "recursive": True, + "realm": {"name": "test_realm"}, + "ids": ["asset1", "asset2"], + } + + mock_assets: list[dict[str, Any]] = [ + { + "id": "asset1", + "name": "Test Asset 1", + "realm": "test_realm", + "parentId": None, + "attributes": {}, + }, + { + "id": "asset2", + "name": "Test Asset 2", + "realm": "test_realm", + "parentId": "asset1", + "attributes": {}, + }, + ] + + with respx.mock(base_url=MOCK_OPENREMOTE_URL) as respx_mock: + respx_mock.post("/api/test_realm/asset/query").mock( + return_value=respx.MockResponse(HTTPStatus.OK, json=mock_assets), + ) + + assets = mock_openremote_client.assets.query(asset_query, "test_realm") + assert assets is not None + assert len(assets) == EXPECTED_ASSETS_COUNT + assert assets[0].id == "asset1" + assert assets[0].name == "Test Asset 1" + assert assets[1].id == "asset2" + assert assets[1].name == "Test Asset 2" + + +def test_asset_query_failure(mock_openremote_client: OpenRemoteClient) -> None: + """Test asset query failure. + + Verifies that: + - The client properly handles query failures + - The method returns None when query fails + """ + asset_query = { + "recursive": True, + "realm": {"name": "test_realm"}, + "ids": ["asset1"], + } + + with respx.mock(base_url=MOCK_OPENREMOTE_URL) as respx_mock: + respx_mock.post("/api/test_realm/asset/query").mock( + return_value=respx.MockResponse(HTTPStatus.INTERNAL_SERVER_ERROR), + ) + + assets = mock_openremote_client.assets.query(asset_query, "test_realm") + assert assets is None + + +def test_get_assets_by_ids(mock_openremote_client: OpenRemoteClient) -> None: + """Test retrieving assets by IDs. + + Verifies that: + - The client can retrieve assets by their IDs + - The method uses the correct query structure + - The response is properly parsed into BasicAsset objects + """ + asset_ids = ["asset1", "asset2"] + query_realm = "test_realm" + + mock_assets: list[dict[str, Any]] = [ + { + "id": "asset1", + "name": "Test Asset 1", + "realm": query_realm, + "parentId": None, + "attributes": {}, + }, + { + "id": "asset2", + "name": "Test Asset 2", + "realm": query_realm, + "parentId": None, + "attributes": {}, + }, + ] + + with respx.mock(base_url=MOCK_OPENREMOTE_URL) as respx_mock: + respx_mock.post("/api/master/asset/query").mock( + return_value=respx.MockResponse(HTTPStatus.OK, json=mock_assets), + ) + + assets = mock_openremote_client.assets.get_by_ids(asset_ids, query_realm) + assert assets is not None + assert len(assets) == EXPECTED_ASSETS_COUNT + assert assets[0].id == "asset1" + assert assets[1].id == "asset2" + + +def test_get_assets_by_ids_failure(mock_openremote_client: OpenRemoteClient) -> None: + """Test retrieving assets by IDs failure. + + Verifies that: + - The client properly handles failures when retrieving assets by IDs + - The method returns None when the operation fails + """ + asset_ids = ["asset1"] + query_realm = "test_realm" + + with respx.mock(base_url=MOCK_OPENREMOTE_URL) as respx_mock: + respx_mock.post("/api/master/asset/query").mock( + return_value=respx.MockResponse(HTTPStatus.NOT_FOUND), + ) + + assets = mock_openremote_client.assets.get_by_ids(asset_ids, query_realm) + assert assets is None + + +def test_get_realms(mock_openremote_client: OpenRemoteClient) -> None: + """Test retrieving realms. + + Verifies that: + - The client can retrieve realms + - The response is properly parsed into Realm objects + """ + mock_realms: list[dict[str, Any]] = [ + { + "name": "test_realm_1", + "displayName": "Test Realm 1", + }, + { + "name": "test_realm_2", + "displayName": "Test Realm 2", + }, + ] + + with respx.mock(base_url=MOCK_OPENREMOTE_URL) as respx_mock: + respx_mock.get("/api/master/realm/accessible").mock( + return_value=respx.MockResponse(HTTPStatus.OK, json=mock_realms), + ) + + realms = mock_openremote_client.realms.get_accessible() + assert realms is not None + assert len(realms) == EXPECTED_REALMS_COUNT + assert realms[0].name == "test_realm_1" + assert realms[1].name == "test_realm_2" + + +def test_get_realms_failure(mock_openremote_client: OpenRemoteClient) -> None: + """Test retrieving realms failure. + + Verifies that: + - The client properly handles failures when retrieving realms + - The method returns None when the operation fails + """ + with respx.mock(base_url=MOCK_OPENREMOTE_URL) as respx_mock: + respx_mock.get("/api/master/realm/accessible").mock( + return_value=respx.MockResponse(HTTPStatus.INTERNAL_SERVER_ERROR), + ) + + realms = mock_openremote_client.realms.get_accessible() + assert realms is None diff --git a/packages/openremote_client/tests/test_service_registrar.py b/packages/openremote_client/tests/test_service_registrar.py new file mode 100644 index 0000000..5a5810d --- /dev/null +++ b/packages/openremote_client/tests/test_service_registrar.py @@ -0,0 +1,126 @@ +# Copyright 2025, OpenRemote Inc. +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +# SPDX-License-Identifier: AGPL-3.0-or-later + + +from unittest.mock import Mock + +from openremote_client.models import ServiceInfo, ServiceStatus +from openremote_client.service_registrar import OpenRemoteServiceRegistrar + + +def test_service_registrar_start() -> None: + """Test that OpenRemoteServiceRegistrar starts correctly.""" + mock_client = Mock() + + # mock response with the instanceId set to the test-instance-id + mock_response = ServiceInfo( + serviceId="test-service", + instanceId=1, + label="Test Service", + homepageUrl="http://localhost:8000/ui", + status=ServiceStatus.AVAILABLE, + realm="test-realm", + ) + mock_client.services.register.return_value = mock_response + + registrar = OpenRemoteServiceRegistrar( + client=mock_client, + service_info=ServiceInfo( + serviceId="test-service", + label="Test Service", + homepageUrl="http://localhost:8000/ui", + status=ServiceStatus.AVAILABLE, + realm="test-realm", + ), + ) + + registrar.start() + + assert registrar.registered is True + assert registrar.instance_id == 1 + assert registrar.scheduler.running is True + + +def test_service_registrar_stop() -> None: + """Test that OpenRemoteServiceRegistrar stops correctly.""" + mock_client = Mock() + mock_client.services.deregister.return_value = True + + registrar = OpenRemoteServiceRegistrar( + client=mock_client, + service_info=ServiceInfo( + serviceId="test-service", + label="Test Service", + homepageUrl="http://localhost:8000/ui", + status=ServiceStatus.AVAILABLE, + realm="test-realm", + ), + ) + registrar.instance_id = 1 + registrar.registered = True + + # Start the scheduler first so we can stop it + registrar.scheduler.start() + + registrar.stop() + + assert registrar.registered is False + assert registrar.instance_id is None + + +def test_service_registrar_heartbeat() -> None: + """Test that heartbeat is sent correctly.""" + mock_client = Mock() + mock_client.services.heartbeat.return_value = True + + registrar = OpenRemoteServiceRegistrar( + client=mock_client, + service_info=ServiceInfo( + serviceId="test-service", + label="Test Service", + homepageUrl="http://localhost:8000/ui", + status=ServiceStatus.AVAILABLE, + realm="test-realm", + ), + ) + registrar.instance_id = 1 + registrar.registered = True + + registrar._send_heartbeat() + + mock_client.services.heartbeat.assert_called_once_with("test-service", 1) + + +def test_service_registrar_heartbeat_not_registered() -> None: + """Test that heartbeat is not sent when service is not registered.""" + mock_client = Mock() + + registrar = OpenRemoteServiceRegistrar( + client=mock_client, + service_info=ServiceInfo( + serviceId="test-service", + label="Test Service", + homepageUrl="http://localhost:8000/ui", + status=ServiceStatus.AVAILABLE, + realm="test-realm", + ), + ) + registrar.registered = False + + registrar._send_heartbeat() + + mock_client.services.heartbeat.assert_not_called() diff --git a/pyproject.toml b/pyproject.toml index 8ccffc2..7d62f9e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta" [project] name = "service-ml-forecast" version = "0.2.0" -description = "Machine Learning Forecast Service" +description = "ML Forecast Service" readme = "README.md" requires-python = ">=3.13" dependencies = [ @@ -26,8 +26,19 @@ dependencies = [ "isodate>=0.7.2", "pyjwt>=2.10.1", "aiocache>=0.12.3", + "openremote-client", + "scikit-learn>=1.7.2", ] + +# Workspace and sources for local packages +[tool.uv.workspace] +members = ["packages/*"] + +[tool.uv.sources] +openremote-client = { workspace = true } + + [dependency-groups] dev = [ "pytest>=8.3.5", @@ -106,17 +117,30 @@ combine-as-imports = true testpaths = ["tests"] python_files = "test_*.py" filterwarnings = ["ignore:.*"] +log_cli = true +log_cli_level = "INFO" +log_cli_format = "%(asctime)s [%(levelname)8s] %(name)s: %(message)s" +log_cli_date_format = "%Y-%m-%d %H:%M:%S" [project.scripts] service_ml_forecast = "service_ml_forecast.main:app" -# CLI commands for development tasks -lint = "scripts.tools:lint" -start = "scripts.tools:start" -test = "scripts.tools:test" -test-coverage = "scripts.tools:test_coverage" -format = "scripts.tools:format" -build = "scripts.tools:build" -build-frontend = "scripts.tools:build_frontend" -build-all = "scripts.tools:build_all" +# CLI helpers help = "scripts.tools:help" + +lint = "scripts.tools:lint" # lint backend and packages +format = "scripts.tools:format" # format backend and packages +test = "scripts.tools:test" # test backend and packages +test-coverage = "scripts.tools:test_coverage" # test backend and packages with coverage +build = "scripts.tools:build" # build backend and packages +start = "scripts.tools:start" # start backend server + +build-frontend = "scripts.tools:build_frontend" # build frontend bundle +build-frontend-dev = "scripts.tools:build_frontend_dev" # build frontend bundle for development + +# Package-specific commands +lint-packages = "scripts.tools:lint_packages" # lint packages +test-packages = "scripts.tools:test_packages" # test packages +build-packages = "scripts.tools:build_packages" # build packages + + diff --git a/scripts/__init__.py b/scripts/__init__.py index b1ff1db..ab22690 100644 --- a/scripts/__init__.py +++ b/scripts/__init__.py @@ -2,6 +2,6 @@ Helper scripts for various tasks such as linting, formatting, testing, etc. """ -from scripts.tools import build, build_frontend, format, lint, start, test, test_coverage, build_all +from scripts.tools import build, build_frontend, build_frontend_dev, format, lint, start, test, test_coverage -__all__ = ["build", "build_frontend", "format", "lint", "start", "test", "test_coverage", "build_all"] +__all__ = ["build", "build_frontend", "build_frontend_dev", "format", "lint", "start", "test", "test_coverage"] diff --git a/scripts/tools.py b/scripts/tools.py index 84c6907..1f8d13f 100644 --- a/scripts/tools.py +++ b/scripts/tools.py @@ -33,8 +33,18 @@ def find_project_root(start_path: Path = Path(__file__)) -> Path: # Deployment directory DEPLOYMENT_DIR: Path = Path(f"{_PROJECT_ROOT}/deployment") -DEPLOYMENT_WEB_DIR: Path = Path(f"{DEPLOYMENT_DIR}/web/") +DEPLOYMENT_WEB_DIR: Path = Path(f"{_PROJECT_ROOT}/deployment/web/") +# Packages directory +PACKAGES_DIR: Path = Path(f"{_PROJECT_ROOT}/packages") + + +def get_package_dirs() -> list[Path]: + """Get all package directories.""" + if not PACKAGES_DIR.exists(): + return [] + + return [pkg_dir for pkg_dir in PACKAGES_DIR.iterdir() if pkg_dir.is_dir() and (pkg_dir / "pyproject.toml").exists()] def step(cmd: str, description: str = "", dir: Path | None = _PROJECT_ROOT) -> None: @@ -58,13 +68,16 @@ def help() -> None: print("Available commands:") print(" help - Print help") print(" start - Start the backend") - print(" lint - Run linting") - print(" format - Format the code") - print(" test - Run tests") - print(" test-coverage - Run tests with coverage") - print(" build - Build the backend") + print(" lint - Run linting (main + packages)") + print(" format - Format the code (main + packages)") + print(" test - Run tests (main + packages)") + print(" test-coverage - Run tests with coverage (main + packages)") + print(" build - Build the backend and packages") print(" build-frontend - Build the frontend bundle") - print(" build-all - Build the backend and frontend bundle") + print(" build-frontend-dev - Build the frontend bundle in development mode") + print(" lint-packages - Run linting only on packages") + print(" test-packages - Run tests only on packages") + print(" build-packages - Build all packages") def start() -> None: @@ -73,28 +86,113 @@ def start() -> None: def lint() -> None: - """Run linting on the backend src.""" + """Run linting on the backend src and all packages.""" + + # Lint main project + step(f"uv run ruff check {SRC_DIR} {TEST_DIR}", "ruff checks (main)") + step(f"uv run mypy --cache-fine-grained {SRC_DIR} {TEST_DIR}", "mypy checks (main)") + + # Lint packages + lint_packages() + + +def lint_packages() -> None: + """Run linting only on packages.""" + package_dirs = get_package_dirs() + + for pkg_dir in package_dirs: + pkg_name = pkg_dir.name + print(f"\n--- Linting package: {pkg_name} ---") + + # Check if package has src directory + src_dir = pkg_dir / "src" + test_dir = pkg_dir / "tests" + + if src_dir.exists(): + step(f"uv run ruff check {src_dir}", f"ruff checks ({pkg_name})", pkg_dir) + step(f"uv run mypy --cache-fine-grained {src_dir}", f"mypy checks ({pkg_name})", pkg_dir) + + if test_dir.exists(): + step(f"uv run ruff check {test_dir}", f"ruff checks tests ({pkg_name})", pkg_dir) + step(f"uv run mypy --cache-fine-grained {test_dir}", f"mypy checks tests ({pkg_name})", pkg_dir) - step(f"uv run ruff check {SRC_DIR} {TEST_DIR}", "ruff checks") - step(f"uv run mypy --cache-fine-grained {SRC_DIR} {TEST_DIR}", "mypy checks") def format() -> None: - """Format the backend src.""" + """Format the backend src and all packages.""" - step(f"uv run ruff format {SRC_DIR} {TEST_DIR}", "ruff formatting") - step(f"uv run ruff check --fix {SRC_DIR} {TEST_DIR}", "ruff check and fix") + # Format main project + step(f"uv run ruff format {SRC_DIR} {TEST_DIR}", "ruff formatting (main)") + step(f"uv run ruff check --fix {SRC_DIR} {TEST_DIR}", "ruff check and fix (main)") + + # Format packages + format_packages() + + +def format_packages() -> None: + """Format only packages.""" + package_dirs = get_package_dirs() + + for pkg_dir in package_dirs: + pkg_name = pkg_dir.name + print(f"\n--- Formatting package: {pkg_name} ---") + + # Check if package has src directory + src_dir = pkg_dir / "src" + test_dir = pkg_dir / "tests" + + if src_dir.exists(): + step(f"uv run ruff format {src_dir}", f"ruff formatting ({pkg_name})", pkg_dir) + step(f"uv run ruff check --fix {src_dir}", f"ruff check and fix ({pkg_name})", pkg_dir) + + if test_dir.exists(): + step(f"uv run ruff format {test_dir}", f"ruff formatting tests ({pkg_name})", pkg_dir) + step(f"uv run ruff check --fix {test_dir}", f"ruff check and fix tests ({pkg_name})", pkg_dir) def test() -> None: - """Run pytest.""" + """Run pytest on main project and all packages.""" + + # Test main project + step(f"uv run pytest {TEST_DIR} -v --cache-clear -s", "pytest (main)") + + # Test packages + test_packages() + - step(f"uv run pytest {TEST_DIR} -vv --cache-clear", "pytest") +def test_packages() -> None: + """Run tests only on packages.""" + package_dirs = get_package_dirs() + + for pkg_dir in package_dirs: + pkg_name = pkg_dir.name + test_dir = pkg_dir / "tests" + + if test_dir.exists(): + print(f"\n--- Testing package: {pkg_name} ---") + step(f"uv run pytest {test_dir} -v --cache-clear -s", f"pytest ({pkg_name})", pkg_dir) def test_coverage() -> None: - """Run tests with coverage.""" + """Run tests with coverage on main project and all packages.""" + + # Test main project with coverage + step(f"uv run pytest {TEST_DIR} -v --cache-clear --cov {SRC_DIR} -s", "pytest with coverage (main)") + + # Test packages with coverage + package_dirs = get_package_dirs() + + for pkg_dir in package_dirs: + pkg_name = pkg_dir.name + src_dir = pkg_dir / "src" + test_dir = pkg_dir / "tests" - step(f"uv run pytest {TEST_DIR} -vv --cache-clear --cov {SRC_DIR}", "pytest with coverage") + if test_dir.exists() and src_dir.exists(): + print(f"\n--- Testing package with coverage: {pkg_name} ---") + step( + f"uv run pytest {test_dir} -vv --cache-clear --cov {src_dir} -s", + f"pytest with coverage ({pkg_name})", + pkg_dir, + ) def build() -> None: @@ -104,23 +202,39 @@ def build() -> None: step("uv build", "Building backend") +def build_packages() -> None: + """Build all packages.""" + package_dirs = get_package_dirs() + + for pkg_dir in package_dirs: + pkg_name = pkg_dir.name + print(f"\n--- Building package: {pkg_name} ---") + step("uv build", f"Building {pkg_name}", pkg_dir) + + def build_frontend() -> None: """Build the frontend bundle and copy to deployment/web.""" step(f"npm run build:prod", "Building frontend in frontend directory", FRONTEND_DIR) + _copy_frontend_dist() + + +def build_frontend_dev() -> None: + """Build the frontend bundle and copy to deployment/web.""" + + step(f"npm run build:dev", "Building frontend in frontend directory", FRONTEND_DIR) + + _copy_frontend_dist() + + +def _copy_frontend_dist() -> None: + """Copy the frontend dist to the deployment/web directory.""" DEPLOYMENT_WEB_DIR.mkdir(parents=True, exist_ok=True) - + if DEPLOYMENT_WEB_DIR.exists(): shutil.rmtree(DEPLOYMENT_WEB_DIR) shutil.copytree(FRONTEND_DIR / "dist", DEPLOYMENT_WEB_DIR / "dist") - - print(f"Frontend dist copied to {DEPLOYMENT_WEB_DIR}") - -def build_all() -> None: - """Build the package and frontend.""" - - build() - build_frontend() + print(f"Frontend dist copied to {DEPLOYMENT_WEB_DIR}") diff --git a/src/service_ml_forecast/api/model_config_route.py b/src/service_ml_forecast/api/model_config_route.py index 6fe35b8..05ca25b 100644 --- a/src/service_ml_forecast/api/model_config_route.py +++ b/src/service_ml_forecast/api/model_config_route.py @@ -27,8 +27,8 @@ from fastapi import APIRouter, Depends, HTTPException from fastapi.responses import JSONResponse +from openremote_client import ClientRoles -from service_ml_forecast.clients.openremote.client_roles import ClientRoles from service_ml_forecast.dependencies import OAUTH2_SCHEME, OPENREMOTE_KC_RESOURCE, get_config_service from service_ml_forecast.middlewares.keycloak.decorators import realm_accessible, roles_allowed from service_ml_forecast.middlewares.keycloak.middleware import KeycloakMiddleware diff --git a/src/service_ml_forecast/clients/openremote/client_roles.py b/src/service_ml_forecast/clients/openremote/client_roles.py deleted file mode 100644 index 312ac7a..0000000 --- a/src/service_ml_forecast/clients/openremote/client_roles.py +++ /dev/null @@ -1,3 +0,0 @@ -class ClientRoles: - READ_SERVICES_ROLE = "read:services" - WRITE_SERVICES_ROLE = "write:services" diff --git a/src/service_ml_forecast/clients/openremote/openremote_client.py b/src/service_ml_forecast/clients/openremote/openremote_client.py deleted file mode 100644 index 4e34354..0000000 --- a/src/service_ml_forecast/clients/openremote/openremote_client.py +++ /dev/null @@ -1,373 +0,0 @@ -# Copyright 2025, OpenRemote Inc. -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -# SPDX-License-Identifier: AGPL-3.0-or-later - -import logging -import time -from http import HTTPStatus -from typing import Any - -import httpx -from pydantic import BaseModel - -from service_ml_forecast.clients.openremote.models import ( - AssetDatapoint, - AssetDatapointPeriod, - AssetDatapointQuery, - BasicAsset, - Realm, -) - - -class OAuthTokenResponse(BaseModel): - """Response model for OpenRemote OAuth token.""" - - access_token: str - token_type: str - expires_in: int - - -class OAuthTokenRequest(BaseModel): - """Request model for OpenRemote OAuth token.""" - - grant_type: str - client_id: str - client_secret: str - - -class OpenRemoteClient: - """Client for OpenRemote API. - - Args: - openremote_url: The URL of the OpenRemote API. - keycloak_url: The URL of the Keycloak API. - realm: The default realm to use for the OpenRemote API. - service_user: The service user for the OpenRemote API. - service_user_secret: The service user secret for the OpenRemote API. - timeout: Timeout in seconds for HTTP requests. Defaults to 30 seconds. - - Raises: - Exception: If the authentication fails - """ - - logger = logging.getLogger(__name__) - - def __init__( - self, - openremote_url: str, - keycloak_url: str, - realm: str, - service_user: str, - service_user_secret: str, - timeout: float = 60.0, - ): - self.openremote_url: str = openremote_url - self.keycloak_url: str = keycloak_url - self.realm: str = realm - self.service_user: str = service_user - self.service_user_secret: str = service_user_secret - self.oauth_token: OAuthTokenResponse | None = None - self.token_expiration_timestamp: float | None = None - self.timeout: float = timeout - - self.__authenticate() - - def __authenticate(self) -> bool: - token = self.__get_token() - if token is not None: - self.oauth_token = token - self.token_expiration_timestamp = time.time() + token.expires_in - return True - return False - - def __get_token(self) -> OAuthTokenResponse | None: - url = f"{self.keycloak_url}/realms/{self.realm}/protocol/openid-connect/token" - - data = OAuthTokenRequest( - grant_type="client_credentials", - client_id=self.service_user, - client_secret=self.service_user_secret, - ) - - with httpx.Client(timeout=self.timeout) as client: - try: - response = client.post(url, data=data.model_dump()) - response.raise_for_status() - token_data = OAuthTokenResponse(**response.json()) - return token_data - except (httpx.HTTPStatusError, httpx.ConnectError) as e: - self.logger.warning(f"Error getting authentication token: {e}") - return None - - def __check_and_refresh_auth(self) -> bool: - if self.oauth_token is None or ( - self.token_expiration_timestamp is not None and time.time() > self.token_expiration_timestamp - 10 - ): - return self.__authenticate() - return True - - def __build_headers(self) -> dict[str, str]: - headers = {"Content-Type": "application/json"} - if self.oauth_token is not None: - headers["Authorization"] = f"Bearer {self.oauth_token.access_token}" - return headers - - def __build_request(self, method: str, url: str, data: Any | None = None) -> httpx.Request: - self.__check_and_refresh_auth() - headers = self.__build_headers() - return httpx.Request(method, url, headers=headers, json=data) - - def health_check(self) -> bool: - """Check if the OpenRemote API is healthy. - - Returns: - bool: True if healthy, False if not. - """ - - url = f"{self.openremote_url}/api/master/health" - - request = self.__build_request("GET", url) - with httpx.Client(timeout=self.timeout) as client: - try: - response = client.send(request) - response.raise_for_status() - return response.status_code == HTTPStatus.OK - except (httpx.HTTPStatusError, httpx.ConnectError) as e: - self.logger.error(f"OpenRemote API is not healthy: {e}") - return False - - def get_asset_datapoint_period( - self, asset_id: str, attribute_name: str, realm: str | None = None - ) -> AssetDatapointPeriod | None: - """Retrieve the datapoints timestamp period of a given asset attribute. - - Args: - asset_id: The ID of the asset. - attribute_name: The name of the attribute. - realm: The realm to retrieve assets from defaulting to the configured realm. - - Returns: - AssetDatapointPeriod | None: The datapoints timestamp period of the asset attribute - """ - - if realm is None: - realm = self.realm - - query = f"?assetId={asset_id}&attributeName={attribute_name}" - url = f"{self.openremote_url}/api/{realm}/asset/datapoint/periods{query}" - - request = self.__build_request("GET", url) - - with httpx.Client(timeout=self.timeout) as client: - try: - response = client.send(request) - response.raise_for_status() - return AssetDatapointPeriod(**response.json()) - except (httpx.HTTPStatusError, httpx.ConnectError) as e: - self.logger.error(f"Error retrieving asset datapoint period: {e}") - return None - - def get_historical_datapoints( - self, - asset_id: str, - attribute_name: str, - from_timestamp: int, - to_timestamp: int, - realm: str | None = None, - ) -> list[AssetDatapoint] | None: - """Retrieve the historical data points of a given asset attribute. - - Remarks: - - Note, request may fail if more than 100k datapoints are requested, depending on the OpenRemote instance. - - Args: - asset_id: The ID of the asset. - attribute_name: The name of the attribute. - from_timestamp: Epoch timestamp in milliseconds. - to_timestamp: Epoch timestamp in milliseconds. - realm: The realm to retrieve assets from defaulting to the configured realm. - Returns: - list[AssetDatapoint] | None: List of historical data points or None - """ - - if realm is None: - realm = self.realm - - params = f"{asset_id}/{attribute_name}" - url = f"{self.openremote_url}/api/{realm}/asset/datapoint/{params}" - - request_body = AssetDatapointQuery( - fromTimestamp=from_timestamp, - toTimestamp=to_timestamp, - ) - - request = self.__build_request("POST", url, data=request_body.model_dump()) - - with httpx.Client(timeout=self.timeout) as client: - try: - response = client.send(request) - response.raise_for_status() - datapoints = response.json() - return [AssetDatapoint(**datapoint) for datapoint in datapoints] - except (httpx.HTTPStatusError, httpx.ConnectError) as e: - self.logger.error(f"Error retrieving historical datapoints: {e}") - return None - - def write_predicted_datapoints( - self, asset_id: str, attribute_name: str, datapoints: list[AssetDatapoint], realm: str | None = None - ) -> bool: - """Write the predicted data points of a given asset attribute. - - Args: - asset_id: The ID of the asset. - attribute_name: The name of the attribute. - datapoints: The data points to write. - realm: The realm to write the data points to defaulting to the configured realm. - Returns: - bool: True if successful - """ - - if realm is None: - realm = self.realm - - params = f"{asset_id}/{attribute_name}" - url = f"{self.openremote_url}/api/{realm}/asset/predicted/{params}" - - datapoints_json = [datapoint.model_dump() for datapoint in datapoints] - - request = self.__build_request("PUT", url, data=datapoints_json) - - with httpx.Client(timeout=self.timeout) as client: - try: - response = client.send(request) - response.raise_for_status() - return response.status_code == HTTPStatus.NO_CONTENT - except (httpx.HTTPStatusError, httpx.ConnectError) as e: - self.logger.error(f"Error writing predicted datapoints: {e}") - return False - - def get_predicted_datapoints( - self, - asset_id: str, - attribute_name: str, - from_timestamp: int, - to_timestamp: int, - realm: str | None = None, - ) -> list[AssetDatapoint] | None: - """Retrieve the predicted data points of a given asset attribute. - - Args: - asset_id: The ID of the asset. - attribute_name: The name of the attribute. - from_timestamp: Epoch timestamp in milliseconds. - to_timestamp: Epoch timestamp in milliseconds. - realm: The realm to retrieve assets from defaulting to the configured realm. - Returns: - list[AssetDatapoint] | None: List of predicted data points or None - """ - - if realm is None: - realm = self.realm - - params = f"{asset_id}/{attribute_name}" - url = f"{self.openremote_url}/api/{realm}/asset/predicted/{params}" - - request_body = AssetDatapointQuery( - fromTimestamp=from_timestamp, - toTimestamp=to_timestamp, - ) - - request = self.__build_request("POST", url, data=request_body.model_dump()) - - with httpx.Client(timeout=self.timeout) as client: - try: - response = client.send(request) - response.raise_for_status() - datapoints = response.json() - return [AssetDatapoint(**datapoint) for datapoint in datapoints] - except (httpx.HTTPStatusError, httpx.ConnectError) as e: - self.logger.error(f"Error retrieving predicted datapoints: {e}") - return None - - def asset_query( - self, asset_query: dict[str, Any], query_realm: str, realm: str | None = None - ) -> list[BasicAsset] | None: - """Perform an asset query. - - Args: - asset_query: The asset query dict to send to the OpenRemote API. - query_realm: The realm for the asset query. - realm: The realm to retrieve assets from defaulting to the configured realm. - Returns: - list[Asset] | None: List of assets or None - """ - - if realm is None: - realm = self.realm - - url = f"{self.openremote_url}/api/{realm}/asset/query" - request = self.__build_request("POST", url, data=asset_query) - with httpx.Client(timeout=self.timeout) as client: - try: - response = client.send(request) - response.raise_for_status() - assets = response.json() - return [BasicAsset(**asset) for asset in assets] - except (httpx.HTTPStatusError, httpx.ConnectError) as e: - self.logger.error(f"Error retrieving assets: {e}") - return None - - def get_assets_by_ids( - self, asset_ids: list[str], query_realm: str, realm: str | None = None - ) -> list[BasicAsset] | None: - """Retrieve assets by their IDs. - - Args: - asset_ids: The IDs of the assets to retrieve. - query_realm: The realm for the asset query. - realm: The realm to retrieve assets from defaulting to the configured realm. - - Returns: - list[Asset] | None: List of assets or None - """ - - if realm is None: - realm = self.realm - - asset_query = {"recursive": False, "realm": {"name": query_realm}, "ids": asset_ids} - return self.asset_query(asset_query, query_realm, realm) - - def get_accessible_realms(self) -> list[Realm] | None: - """Retrieves all accessible realms for the current authenticated user. - - Returns: - list[Realm] | None: List of realms or None - """ - - url = f"{self.openremote_url}/api/{self.realm}/realm/accessible" - request = self.__build_request("GET", url) - - with httpx.Client(timeout=self.timeout) as client: - try: - response = client.send(request) - response.raise_for_status() - self.logger.info(f"Accessible realms: {response.json()}") - - return [Realm(**realm) for realm in response.json()] - - except (httpx.HTTPStatusError, httpx.ConnectError) as e: - self.logger.error(f"Error retrieving realms: {e}") - return None diff --git a/src/service_ml_forecast/config.py b/src/service_ml_forecast/config.py index 87d0e70..6f691fe 100644 --- a/src/service_ml_forecast/config.py +++ b/src/service_ml_forecast/config.py @@ -40,28 +40,28 @@ class AppEnvironment(BaseSettings): All settings can be overridden via environment variables. - The environment variables are prefixed with "ML_" to avoid conflicts with other services. + The environment variables are prefixed with "ML_" to avoid conflicts """ - # Application Settings - ML_LOG_LEVEL: str = "INFO" # log level to use - ML_ENVIRONMENT: str = "development" # environment to run the service in - ML_VERIFY_SSL: bool = True # whether to verify SSL certificates when making requests - - # FastAPI Settings - ML_API_PUBLISH_DOCS: bool = True # whether to make the openapi docs available - ML_API_ROOT_PATH: str = ( - "/services/ml-forecast" # when running behind a reverse proxy, the root path of the fastapi app - ) + # FastAPI settings + ML_API_PUBLISH_DOCS: bool = True + ML_API_ROOT_PATH: str = "/services/ml-forecast" # reverse proxy root path for the service ML_API_MIDDLEWARE_KEYCLOAK: bool = True # whether to enable keycloak middleware - # Uvicorn Settings - ML_WEBSERVER_HOST: str = "0.0.0.0" # host to bind the web server (uvicorn) to - ML_WEBSERVER_PORT: int = 8000 # port to bind the web server (uvicorn) to + # Uvicorn webserver settings + ML_WEBSERVER_PORT: int = 8000 ML_WEBSERVER_ORIGINS: list[str] = [ "http://localhost:8000", "http://localhost:8001", - ] # origins to allow + ] + + # Application settings + ML_LOG_LEVEL: str = "INFO" + ML_ENVIRONMENT: str = "development" + ML_VERIFY_SSL: bool = True # verify SSL certificates when making HTTP requests + + # Service registration settings + ML_SERVICE_HOSTNAME: str = f"http://localhost:{ML_WEBSERVER_PORT}" # OpenRemote Settings ML_OR_URL: str = "http://localhost:8080" # OpenRemote Manager URL diff --git a/src/service_ml_forecast/dependencies.py b/src/service_ml_forecast/dependencies.py index 7941808..4b0c695 100644 --- a/src/service_ml_forecast/dependencies.py +++ b/src/service_ml_forecast/dependencies.py @@ -22,8 +22,8 @@ import logging from fastapi.security import OAuth2PasswordBearer +from openremote_client import OpenRemoteClient -from service_ml_forecast.clients.openremote.openremote_client import OpenRemoteClient from service_ml_forecast.config import ENV from service_ml_forecast.services.model_config_service import ModelConfigService from service_ml_forecast.services.openremote_service import OpenRemoteService @@ -57,6 +57,13 @@ def get_openremote_service() -> OpenRemoteService: return __openremote_service +def get_openremote_client() -> OpenRemoteClient: + """ + Get the openremote client dependency. + """ + return __openremote_client + + def get_openremote_issuers() -> list[str] | None: """Get valid issuers from OpenRemote realms. diff --git a/src/service_ml_forecast/logging_config.py b/src/service_ml_forecast/logging_config.py index a7b71cf..e5a26f2 100644 --- a/src/service_ml_forecast/logging_config.py +++ b/src/service_ml_forecast/logging_config.py @@ -35,7 +35,7 @@ }, }, "loggers": { - # Service ML Forecast logs + # Service logs "": { "handlers": ["default"], "level": ENV.ML_LOG_LEVEL, diff --git a/src/service_ml_forecast/main.py b/src/service_ml_forecast/main.py index ff5e4e1..e963649 100644 --- a/src/service_ml_forecast/main.py +++ b/src/service_ml_forecast/main.py @@ -23,12 +23,14 @@ from fastapi.concurrency import asynccontextmanager from fastapi.middleware.cors import CORSMiddleware from fastapi.middleware.gzip import GZipMiddleware +from openremote_client import OpenRemoteServiceRegistrar +from openremote_client.models import ServiceInfo, ServiceStatus from service_ml_forecast import __app_info__ from service_ml_forecast.api import model_config_route, web_route from service_ml_forecast.api.route_exception_handlers import register_exception_handlers from service_ml_forecast.config import ENV -from service_ml_forecast.dependencies import get_openremote_issuers, get_openremote_service +from service_ml_forecast.dependencies import get_openremote_client, get_openremote_issuers, get_openremote_service from service_ml_forecast.logging_config import LOGGING_CONFIG from service_ml_forecast.middlewares.keycloak.middleware import KeycloakMiddleware from service_ml_forecast.services.model_scheduler import ModelScheduler @@ -100,10 +102,24 @@ async def lifespan(_app: FastAPI) -> AsyncGenerator[None]: def initialize_background_services() -> None: """Initialize background services, these run in the background and are not part of the FastAPI lifecycle""" - # Setup the ML Model Scheduler + # Setup the Model Scheduler model_scheduler = ModelScheduler(get_openremote_service()) model_scheduler.start() + # Service details for registration + service_info = ServiceInfo( + serviceId="ml-forecasting", + label="ML Forecasting Service", + icon="chart-timeline-variant", + realm=ENV.ML_OR_REALM, + homepageUrl=f"{ENV.ML_SERVICE_HOSTNAME}{ENV.ML_API_ROOT_PATH}/ui/{{realm}}", + status=ServiceStatus.AVAILABLE, + ) + + # Start the OpenRemote Service Registrar, service is global so it can be accessed from any realm + service_registrar = OpenRemoteServiceRegistrar(get_openremote_client(), service_info, is_global=True) + service_registrar.start() + # Entrypoint for the service if __name__ == "__main__": @@ -118,5 +134,5 @@ def initialize_background_services() -> None: # Initialize any services that run separately from the FastAPI app initialize_background_services() - reload = IS_DEV # Enable auto-reload in development mode - uvicorn.run("service_ml_forecast.main:app", host=ENV.ML_WEBSERVER_HOST, port=ENV.ML_WEBSERVER_PORT, reload=reload) + # Run the FastAPI app, enable auto-reload in development mode + uvicorn.run("service_ml_forecast.main:app", host="0.0.0.0", port=ENV.ML_WEBSERVER_PORT, reload=IS_DEV) diff --git a/src/service_ml_forecast/middlewares/keycloak/middleware.py b/src/service_ml_forecast/middlewares/keycloak/middleware.py index 361ecd5..abba2a4 100644 --- a/src/service_ml_forecast/middlewares/keycloak/middleware.py +++ b/src/service_ml_forecast/middlewares/keycloak/middleware.py @@ -134,7 +134,7 @@ async def _verify_jwt_token(token: str, valid_issuers: list[str]) -> dict[str, A if unverified_header.get("alg") != JWT_ALGORITHM_RS256: raise jwt.exceptions.InvalidTokenError("Invalid token algorithm: Expected RS256") - # Decode the token without verifying (we don't have the public key yet) + # Decode the token without verifying (necessary so we can extract the issuer for retrieving the JWKS) unverified_payload = jwt.decode(token, options={"verify_signature": False, "verify_aud": False}) # Extract required claims diff --git a/src/service_ml_forecast/ml/data_processing.py b/src/service_ml_forecast/ml/data_processing.py new file mode 100644 index 0000000..8a9a096 --- /dev/null +++ b/src/service_ml_forecast/ml/data_processing.py @@ -0,0 +1,299 @@ +import logging +from typing import cast +from uuid import UUID + +import pandas as pd +from openremote_client import AssetDatapoint +from pandas import DataFrame +from sklearn.impute import KNNImputer + +from service_ml_forecast.models.feature_data_wrappers import ForecastDataSet, TrainingDataSet + +logger = logging.getLogger(__name__) + +# Constants +MIN_UNIQUE_TIMESTAMPS_FOR_RESAMPLE = 2 + + +def convert_datapoints_to_dataframe( + datapoints: list[AssetDatapoint], + time_col_name: str, + value_col_name: str, +) -> pd.DataFrame: + """Converts a list of AssetDatapoint objects to a Pandas DataFrame. + + Args: + datapoints: List of AssetDatapoint objects. + time_col_name: Name for the time column + value_col_name: Name for the value column + + Returns: + A Pandas DataFrame with time and value columns, sorted by time. + """ + if not datapoints: + return pd.DataFrame(columns=[time_col_name, value_col_name]) + + timeseries_df = pd.DataFrame([{time_col_name: point.x, value_col_name: point.y} for point in datapoints]) + + # Convert the millis timestamp to datetime objects + timeseries_df[time_col_name] = pd.to_datetime(timeseries_df[time_col_name], unit="ms") + + # Sort and aggregate duplicate timestamps + timeseries_df = timeseries_df.sort_values(time_col_name) + timeseries_df = timeseries_df.groupby(time_col_name, as_index=False).mean() + + return timeseries_df + + +def resample_and_interpolate( + datapoints: list[AssetDatapoint], + frequency: str, + time_col_name: str, + value_col_name: str, +) -> pd.DataFrame | None: + """Resamples and interpolates a time series represented by AssetDatapoints. + + Args: + datapoints: List of AssetDatapoint objects. + frequency: The target frequency string (e.g., 'H', '15T'). + time_col_name: Name for the time column + value_col_name: Name for the value column + + Returns: + A Pandas DataFrame resampled to the specified frequency with interpolated values, + or None if input is empty. Returns the original data (potentially aggregated if duplicate timestamps) + if resampling fails or is not possible (e.g., < 2 unique timestamps). + """ + if not datapoints: + return None + + timeseries_df = convert_datapoints_to_dataframe( + datapoints, time_col_name=time_col_name, value_col_name=value_col_name + ) + + if timeseries_df[time_col_name].nunique() < MIN_UNIQUE_TIMESTAMPS_FOR_RESAMPLE: + logger.warning( + f"Cannot resample/interpolate series '{value_col_name}' with frequency '{frequency}' " + f"as it has less than {MIN_UNIQUE_TIMESTAMPS_FOR_RESAMPLE} unique timestamps." + ) + # If only one point, return frame with that point + if timeseries_df.shape[0] == 1: + return timeseries_df + # If multiple points but only one unique timestamp, aggregate (mean) and return + else: + df_agg = timeseries_df.groupby(time_col_name).mean().reset_index() + return df_agg + + timeseries_df = timeseries_df.set_index(time_col_name) + + # Ensure the index is sorted by time + if not timeseries_df.index.is_monotonic_increasing: + logger.warning(f"Data for {value_col_name} is not sorted by time. Sorting before resampling.") + timeseries_df = timeseries_df.sort_index() + + # Resample, interpolate temporally, fill edges + try: + df_resampled = timeseries_df.resample(frequency).mean() # resample to target frequency + df_interpolated = df_resampled.interpolate(method="time") # interpolate by time + df_filled = df_interpolated.ffill().bfill() # fill edges + except ValueError as e: + logger.error( + f"Error resampling/interpolating series '{value_col_name}' with frequency '{frequency}': {e}. " + f"Returning original sorted data." + ) + # Fallback: Return original sorted data if resampling fails + return timeseries_df.reset_index() + + # Check if interpolation still has NaNs + if df_filled[value_col_name].isna().any(): + logger.error( + f"Interpolation still has NaNs for series '{value_col_name}' with frequency '{frequency}'. " + f"This indicates a critical data processing issue." + ) + + return df_filled.reset_index() + + +def align_training_data( + training_dataset: TrainingDataSet, frequency: str, timestamp_col: str = "timestamp", value_col: str = "value" +) -> DataFrame: + """Prepare training dataframe with aligned timestamps for target and optional regressors. + + This function resamples all data to a consistent frequency and aligns timestamps + across target and regressor data, ensuring a clean dataset for model training. + + Args: + training_dataset: Training dataset containing target and optional regressors + frequency: Target frequency string (e.g., 'H', '15T', 'D') + timestamp_col: Name for the timestamp column in output DataFrame + value_col: Name for the target value column in output DataFrame + + Returns: + Aligned DataFrame with target and regressor data + """ + target = training_dataset.target + regressors = training_dataset.regressors + + dataframes = [] + + # Resample and interpolate target data + target_df = resample_and_interpolate( + target.datapoints, + frequency, + time_col_name=timestamp_col, + value_col_name=value_col, + ) + if target_df is None: + logger.error("Cannot prepare training data: Target data resampling resulted in None.") + return DataFrame(columns=[timestamp_col, value_col]) + + dataframes.append(target_df) + target_len = len(target_df) + logger.info(f"Target data resampled to {frequency} frequency, resulting in {target_len} datapoints.") + + # Resample and interpolate regressor data if they are provided + if regressors is not None: + for regressor in regressors: + regressor_df = resample_and_interpolate( + regressor.datapoints, + frequency, + time_col_name=timestamp_col, + value_col_name=regressor.feature_name, + ) + if regressor_df is not None and not regressor_df.empty: + regressor_len = len(regressor_df) + logger.info(f"Regressor '{regressor.feature_name}' resampled, resulting in {regressor_len} datapoints.") + dataframes.append(regressor_df) + else: + logger.warning( + f"Regressor '{regressor.feature_name}' data is empty or None after resampling. It will be excluded." + ) + + # Find the common date range to avoid going outside the training range + min_date = max(df[timestamp_col].min() for df in dataframes) + max_date = min(df[timestamp_col].max() for df in dataframes) + logger.info(f"Common date range for training data: {min_date} to {max_date}") + + # Create a full index for the common date range + full_index = pd.date_range(start=min_date, end=max_date, freq=frequency) + + # Start with target data + result = target_df[(target_df[timestamp_col] >= min_date) & (target_df[timestamp_col] <= max_date)].copy() + + # Merge the regressors if they are provided + if regressors is not None: + for i, _regressor in enumerate(regressors): + regressor_df = dataframes[i + 1] # note +1 because target_df is first component + if regressor_df is not None and not regressor_df.empty: + result = result.merge(regressor_df, on=timestamp_col, how="left") + + # Update the index and reindex to the full index + result = result.set_index(timestamp_col) + result = result.reindex(full_index) + + numeric_columns = result.select_dtypes(include=["float64", "int64"]).columns + + if len(numeric_columns) > 0 and result[numeric_columns].isna().any().any(): + # Try and apply KNN imputation if we have missing values + try: + # Use sensible defaults for KNN imputation, keep small datasets from failing + n_samples = (result[numeric_columns].notna().any(axis=1)).sum() + n_neighbors = max(1, min(5, n_samples - 1)) + imputer = KNNImputer(n_neighbors=n_neighbors) + result[numeric_columns] = imputer.fit_transform(result[numeric_columns]) + logger.info(f"Applied KNN imputation with {n_neighbors} neighbors for missing values") + except Exception as e: + logger.warning(f"KNN imputation failed: {e}. Falling back to time-based interpolation") + # Fallback to original method (temporal interpolation and forward/backward fill for edges) + for col in numeric_columns: + result[col] = result[col].interpolate(method="time", limit_direction="both") + result[col] = result[col].ffill().bfill() + + # Check for completely empty columns (shouldn't happen) + for col in numeric_columns: + if result[col].isna().all(): + raise ValueError(f"All values in column '{col}' are NaN after imputation. Cannot proceed with forecasting.") + + # Reset index and rename it back to the original timestamp column name + result = result.reset_index().rename(columns={"index": timestamp_col}) + + return cast(DataFrame, result) + + +def align_forecast_data( + future_df: DataFrame, + forecast_dataset: ForecastDataSet | None, + frequency: str, + config_id: UUID, + timestamp_col: str = "timestamp", +) -> DataFrame: + """Prepare forecast dataframe by adding aligned regressor data. + + This function resamples regressor data to match the forecast frequency + and aligns it with the future dataframe timestamps. + + Args: + future_df: Base future dataframe with timestamps + forecast_dataset: Forecast dataset containing optional regressors + frequency: Target frequency string (e.g., 'H', '15T', 'D') + config_id: Model configuration ID for logging + timestamp_col: Name of the timestamp column in the future dataframe + + Returns: + Future dataframe with aligned regressor data + """ + if forecast_dataset is None or not forecast_dataset.regressors: + logger.info(f"No regressors provided for forecast -- {config_id}") + return future_df + + logger.info(f"Preparing forecast dataframe with {len(forecast_dataset.regressors)} regressor(s) -- {config_id}") + + prepared_future_df = future_df.copy() + + for regressor in forecast_dataset.regressors: + if regressor.datapoints is None or len(regressor.datapoints) == 0: + logger.warning(f"Regressor '{regressor.feature_name}' has no data. Skipping.") + continue + + regressor_dataframe = resample_and_interpolate( + datapoints=regressor.datapoints, + frequency=frequency, + time_col_name=timestamp_col, + value_col_name=regressor.feature_name, # use the feature name as the value column + ) + + if regressor_dataframe is None or regressor_dataframe.empty: + logger.warning( + f"Regressor '{regressor.feature_name}' data is empty or None after resampling for the forecast period. " + f"This regressor cannot be added to the future dataframe for model {config_id}." + ) + continue + + regressor_len = len(regressor_dataframe) + logger.info( + f"Regressor '{regressor.feature_name}' resampled for forecast period, result {regressor_len} datapoints." + ) + + # Ensure regressor dataframe covers the future range as much as possible + regressor_dataframe = regressor_dataframe.set_index(timestamp_col) + regressor_dataframe = regressor_dataframe.reindex( + prepared_future_df[timestamp_col], + method="ffill", + ) + regressor_dataframe = regressor_dataframe.reset_index() + + # Check for completely empty regressor columns (should be impossible after ffill) + if regressor_dataframe[regressor.feature_name].isna().all(): + raise ValueError( + f"All values in regressor '{regressor.feature_name}' are NaN after resampling. " + f"Cannot proceed with forecasting." + ) + + # Merge the prepared regressor data with the future dataframe (on the timestamp column) + prepared_future_df = prepared_future_df.merge( + regressor_dataframe[[timestamp_col, regressor.feature_name]], + on=timestamp_col, + how="left", + ) + + return prepared_future_df diff --git a/src/service_ml_forecast/ml/evaluation_metrics.py b/src/service_ml_forecast/ml/evaluation_metrics.py new file mode 100644 index 0000000..32b5b8e --- /dev/null +++ b/src/service_ml_forecast/ml/evaluation_metrics.py @@ -0,0 +1,29 @@ +from dataclasses import dataclass + + +@dataclass +class EvaluationMetrics: + """ + General evaluation metrics for a model. + + RMSE: Root Mean Squared Error - measures typical forecast error in same units as data. + Higher values indicate larger prediction errors. Penalizes outliers heavily. + + MAE: Mean Absolute Error - measures average absolute difference between predicted and actual values. + More robust to outliers than RMSE. Same units as data. + + MAPE: Mean Absolute Percentage Error - measures average percentage error relative to actual values. + Expressed as decimal (0.05 = 5% error). Can be misleading when actual values are near zero. + + MdAPE: Median Absolute Percentage Error - measures median percentage error, more robust to outliers than MAPE. + Expressed as decimal (0.05 = 5% error). Better for skewed error distributions. + + R2: R-squared (coefficient of determination) - measures proportion of variance explained by the model. + Range: 0-1 (1.0 = perfect, 0.0 = no better than mean, negative = worse than mean). + """ + + rmse: float + mae: float + mape: float + mdape: float + r2: float diff --git a/src/service_ml_forecast/ml/model_provider.py b/src/service_ml_forecast/ml/model_provider.py index 760a05d..b123f57 100644 --- a/src/service_ml_forecast/ml/model_provider.py +++ b/src/service_ml_forecast/ml/model_provider.py @@ -18,6 +18,7 @@ from typing import Protocol, TypeVar from uuid import UUID +from service_ml_forecast.ml.evaluation_metrics import EvaluationMetrics from service_ml_forecast.models.feature_data_wrappers import ForecastDataSet, ForecastResult, TrainingDataSet # Define a generic type variable for the model @@ -26,9 +27,9 @@ class ModelProvider(Protocol[ModelType]): - """Base protocol for all ML models. + """Base protocol for all models. - This protocol defines the methods that all ML model providers must implement. + This protocol defines the methods that all model providers must implement. """ def train_model(self, training_dataset: TrainingDataSet) -> ModelType | None: @@ -67,3 +68,13 @@ def load_model(self, model_config_id: UUID) -> ModelType: Returns: The loaded model, or None if the model could not be loaded. """ + + def evaluate_model(self, model: ModelType) -> EvaluationMetrics | None: + """Evaluate the trained model using cross-validation. + + Args: + model: The trained model to evaluate. + + Returns: + The evaluation metrics or None if evaluation could not be performed. + """ diff --git a/src/service_ml_forecast/ml/model_provider_factory.py b/src/service_ml_forecast/ml/model_provider_factory.py index 29c9e3b..244fa6a 100644 --- a/src/service_ml_forecast/ml/model_provider_factory.py +++ b/src/service_ml_forecast/ml/model_provider_factory.py @@ -24,7 +24,7 @@ class ModelProviderFactory: - """Factory for creating ML model providers based on the provided model config.""" + """Factory for creating model providers based on the provided model config.""" @staticmethod def create_provider( diff --git a/src/service_ml_forecast/ml/prophet_model_provider.py b/src/service_ml_forecast/ml/prophet_model_provider.py index 3c46c8e..48b223b 100644 --- a/src/service_ml_forecast/ml/prophet_model_provider.py +++ b/src/service_ml_forecast/ml/prophet_model_provider.py @@ -18,52 +18,81 @@ import logging from uuid import UUID +import numpy as np import pandas as pd +from openremote_client import AssetDatapoint from prophet import Prophet +from prophet.diagnostics import cross_validation, performance_metrics from prophet.serialize import model_from_json, model_to_json +from sklearn.metrics import r2_score -from service_ml_forecast.clients.openremote.models import AssetDatapoint from service_ml_forecast.common.time_util import TimeUtil +from service_ml_forecast.ml.data_processing import ( + align_forecast_data, + align_training_data, +) +from service_ml_forecast.ml.evaluation_metrics import EvaluationMetrics from service_ml_forecast.ml.model_provider import ModelProvider -from service_ml_forecast.models.feature_data_wrappers import ForecastDataSet, ForecastResult, TrainingDataSet +from service_ml_forecast.models.feature_data_wrappers import ( + ForecastDataSet, + ForecastResult, + TrainingDataSet, +) from service_ml_forecast.models.model_config import ProphetModelConfig from service_ml_forecast.services.model_storage_service import ModelStorageService logger = logging.getLogger(__name__) +# Constants +MIN_DATAPOINTS_FOR_PROPHET = 2 +MIN_RECOMMENDED_DATAPOINTS = 50 +TIMESTAMP_COLUMN_NAME = "ds" +VALUE_COLUMN_NAME = "y" +FORECAST_COLUMN_NAME = "yhat" + class ProphetModelProvider(ModelProvider[Prophet]): - """Prophet model provider.""" + """Prophet model provider. + + Prophet is an additive regression model, widely used for time series forecasting. + """ - def __init__( - self, - config: ProphetModelConfig, - ) -> None: + def __init__(self, config: ProphetModelConfig) -> None: self.config = config self.model_storage_service = ModelStorageService() + # Suppress Prophet's verbose logging + logging.getLogger("cmdstanpy").disabled = True + def train_model(self, training_dataset: TrainingDataSet) -> Prophet | None: if training_dataset.target.datapoints is None or len(training_dataset.target.datapoints) == 0: - logger.error("No target data provided, cannot train Prophet model") + logger.error("No target data provided, cannot train model") return None logger.info(f"Training model -- {self.config.id} with {len(training_dataset.target.datapoints)} datapoints") - # Add a warning if the dataset is very small - min_required_datapoints = 50 - num_datapoints = len(training_dataset.target.datapoints) - if num_datapoints < min_required_datapoints: + # Prepare the training dataframe, by resampling, interpolating and merging the target and regressors + dataframe = align_training_data( + training_dataset, + self.config.forecast_frequency, + timestamp_col=TIMESTAMP_COLUMN_NAME, + value_col=VALUE_COLUMN_NAME, + ) + + # Check if dataframe is empty or too small after preprocessing + if dataframe.empty or len(dataframe) < MIN_DATAPOINTS_FOR_PROPHET: + logger.error( + f"Training data for model {self.config.id} is insufficient after resampling and cleaning. Cannot train." + ) + return None + elif len(dataframe) < MIN_RECOMMENDED_DATAPOINTS: logger.warning( - f"Training dataset for model {self.config.id} has only {num_datapoints} datapoints " - f"(minimum recommended: {min_required_datapoints}). The resulting model may be unreliable." + f"Training dataset for model {self.config.id} has only {len(dataframe)} datapoints " + f"after resampling (minimum recommended: {MIN_RECOMMENDED_DATAPOINTS})." ) - dataframe = _prepare_training_dataframe(training_dataset) - - # Construct the model + # Construct model and apply hyperparameters from the model config`` model = Prophet() - - # Apply model configuration model.weekly_seasonality = self.config.weekly_seasonality model.yearly_seasonality = self.config.yearly_seasonality model.daily_seasonality = self.config.daily_seasonality @@ -77,7 +106,7 @@ def train_model(self, training_dataset: TrainingDataSet) -> Prophet | None: for regressor in training_dataset.regressors: model.add_regressor(regressor.feature_name) - # Train the model + # Train/fit the model model.fit(dataframe) return model @@ -89,36 +118,41 @@ def load_model(self, model_id: UUID) -> Prophet: def save_model(self, model: Prophet) -> None: model_json = model_to_json(model) self.model_storage_service.save(model_json, self.config.id) - logger.info(f"Saved trained model -- {self.config.id}") + logger.info(f"Saved model -- {self.config.id}") def generate_forecast(self, forecast_dataset: ForecastDataSet | None = None) -> ForecastResult: model = self.load_model(self.config.id) - future = model.make_future_dataframe( + # Create the future dataframe (this creates a dataframe starting from the last datapoint in the training set!) + future_base = model.make_future_dataframe( periods=self.config.forecast_periods, freq=self.config.forecast_frequency, include_history=False, ) - # round the future timestamps to the forecast frequency - future["ds"] = future["ds"].dt.round(self.config.forecast_frequency) - - if forecast_dataset is not None: - logger.info(f"Forecasting with {len(forecast_dataset.regressors)} regressor(s) -- {self.config.id}") - for regressor in forecast_dataset.regressors: - regressor_dataframe = _convert_datapoints_to_dataframe( - regressor.datapoints, - rename_y=regressor.feature_name, - ) + # round the future timestamps to the forecast frequency for a clean and consistent forecast + original_times = future_base[TIMESTAMP_COLUMN_NAME].copy() + future_base[TIMESTAMP_COLUMN_NAME] = future_base[TIMESTAMP_COLUMN_NAME].dt.round(self.config.forecast_frequency) + + # Log timestamp rounding effects + time_shift = (future_base[TIMESTAMP_COLUMN_NAME] - original_times).abs().max() + if time_shift > pd.Timedelta(minutes=1): + logger.warning(f"Timestamp rounding shifted forecasts by up to {time_shift} for model {self.config.id}") + + # Prepare the future dataframe with regressors if available + future_prepared = align_forecast_data( + future_base, + forecast_dataset, + self.config.forecast_frequency, + self.config.id, + timestamp_col=TIMESTAMP_COLUMN_NAME, + ) - future = pd.merge_asof( - future, - regressor_dataframe[["ds", regressor.feature_name]], - on="ds", - direction="nearest", - ) + # Generate the forecast using the prepared future dataframe, doesn't matter if its none or empty + forecast = model.predict(future_prepared) - forecast = model.predict(future) + # Validate forecast quality + self._validate_forecast_quality(forecast) # noinspection PyTypeChecker datapoints = _convert_prophet_forecast_to_datapoints(forecast) @@ -129,52 +163,121 @@ def generate_forecast(self, forecast_dataset: ForecastDataSet | None = None) -> datapoints=datapoints, ) + def evaluate_model(self, model: Prophet) -> EvaluationMetrics | None: + """Evaluate the model using Prophet's cross-validation (RMSE, MAE, MAPE, MdAPE, R²).""" -def _convert_prophet_forecast_to_datapoints(dataframe: pd.DataFrame) -> list[AssetDatapoint]: - datapoints = [] - for _, row in dataframe.iterrows(): - # Convert the `ds` timestamp to milliseconds since that is what OpenRemote expects - millis = TimeUtil.sec_to_ms(int(row["ds"].timestamp())) - datapoints.append(AssetDatapoint(x=millis, y=row["yhat"])) - - return datapoints + try: + horizon_delta = pd.Timedelta(self.config.forecast_frequency) * self.config.forecast_periods + secs = int(horizon_delta.total_seconds()) + horizon_str = f"{secs} seconds" + except Exception: + logger.warning(f"Invalid forecast_frequency '{self.config.forecast_frequency}', using 30 days") + horizon_str = "30 days" + horizon_td = pd.to_timedelta(horizon_str) -def _convert_datapoints_to_dataframe(datapoints: list[AssetDatapoint], rename_y: str | None = None) -> pd.DataFrame: - dataframe = pd.DataFrame([{"ds": point.x, "y": point.y} for point in datapoints]) + training_df = model.history + training_duration = training_df[TIMESTAMP_COLUMN_NAME].max() - training_df[TIMESTAMP_COLUMN_NAME].min() - # Convert the millis timestamp to seconds for Prophet - dataframe["ds"] = pd.to_datetime(dataframe["ds"], unit="ms") - if rename_y is not None: - dataframe = dataframe.rename(columns={"y": rename_y}) + min_initial = pd.Timedelta(days=30) + initial_duration = max(horizon_td * 3, min_initial) + initial_duration = min(initial_duration, training_duration * 0.6) + initial_str = f"{int(initial_duration.total_seconds())} seconds" - # Sort the dataframe by timestamp - dataframe = dataframe.sort_values("ds") + # Enough data? + if training_duration < initial_duration + horizon_td: + logger.warning(f"Training data too short for CV (need {initial_duration} + {horizon_td})") + return None - return dataframe + remaining_duration = training_duration - initial_duration + max_folds = 20 + raw_period = remaining_duration / max_folds + period_duration = max(raw_period, horizon_td) + period_str = f"{int(period_duration.total_seconds())} seconds" + # Approximate folds count + usable = training_duration - initial_duration - horizon_td + expected_folds = max(1, int(usable / period_duration) + 1) -def _prepare_training_dataframe(training_dataset: TrainingDataSet) -> pd.DataFrame: - target = training_dataset.target - regressors = training_dataset.regressors + if expected_folds > max_folds: + logger.info(f"Capping folds to {max_folds} (dataset would allow ~{expected_folds})") + expected_folds = max_folds - # Convert the datapoints to a dataframe - prophet expects the target data to be 'ds' and 'y' structure - dataframe = _convert_datapoints_to_dataframe(target.datapoints) + logger.info( + f"Running CV with ~{expected_folds} folds " + f"(initial={initial_duration}, period={period_duration}, horizon={horizon_td})" + ) - # Add regressors if they are provided - if regressors is not None: - for regressor in regressors: - regressor_dataframe = _convert_datapoints_to_dataframe( - regressor.datapoints, - rename_y=regressor.feature_name, + try: + df_cv = cross_validation( + model, + initial=initial_str, + period=period_str, + horizon=horizon_str, + parallel="processes", + disable_tqdm=True, ) + except Exception as e: + logger.warning(f"Cross-validation failed: {e}") + return None - # Interpolate the regressor values to the target data point timestamps - dataframe = pd.merge_asof( - dataframe, - regressor_dataframe[["ds", regressor.feature_name]], - on="ds", - direction="nearest", - ) + if df_cv.empty: + logger.warning("Cross-validation returned no rows") + return None + + # ------------------------------------------------------------------------- + # Metrics + # ------------------------------------------------------------------------- + df_p = performance_metrics(df_cv, rolling_window=0.1) + + # R² (extra check for finite values) + y_true = df_cv["y"].to_numpy() + y_pred = df_cv["yhat"].to_numpy() + if y_true.size == 0 or np.allclose(y_true.var(), 0): + r2 = float("nan") + else: + r2 = r2_score(y_true, y_pred) + + metrics = EvaluationMetrics( + rmse=float(df_p["rmse"].iloc[-1]), + mae=float(df_p["mae"].iloc[-1]), + mape=float(df_p["mape"].iloc[-1]), + mdape=float(df_p["mdape"].iloc[-1]), + r2=r2, + ) - return dataframe + logger.info( + f"RMSE: {metrics.rmse:.4f}, MAE: {metrics.mae:.4f}, " + f"MAPE: {metrics.mape:.4f}, MdAPE: {metrics.mdape:.4f}, R²: {metrics.r2:.4f}" + ) + return metrics + + def _validate_forecast_quality(self, forecast: pd.DataFrame) -> None: + """Validate forecast quality and log warnings for potential issues.""" + + # Check for NaN values + if forecast[FORECAST_COLUMN_NAME].isna().any(): + nan_count = forecast[FORECAST_COLUMN_NAME].isna().sum() + logger.warning(f"Forecast contains {nan_count} NaN values for model {self.config.id}") + + # Check for extreme outliers (values > 10x the mean) - generic check + forecast_mean = forecast[FORECAST_COLUMN_NAME].mean() + if forecast_mean != 0: # Avoid division by zero + extreme_threshold = abs(forecast_mean) * 10 + extreme_count = (forecast[FORECAST_COLUMN_NAME].abs() > extreme_threshold).sum() + if extreme_count > 0: + logger.warning( + f"Forecast contains {extreme_count} extreme outliers (>10x mean) for model {self.config.id}" + ) + + +def _convert_prophet_forecast_to_datapoints( + dataframe: pd.DataFrame, +) -> list[AssetDatapoint]: + datapoints = [] + for _, row in dataframe.iterrows(): + # Convert the timestamp to milliseconds since that is what OpenRemote expects + millis = TimeUtil.sec_to_ms(int(row[TIMESTAMP_COLUMN_NAME].timestamp())) + datapoints.append(AssetDatapoint(x=millis, y=row[FORECAST_COLUMN_NAME])) + + return datapoints diff --git a/src/service_ml_forecast/models/feature_data_wrappers.py b/src/service_ml_forecast/models/feature_data_wrappers.py index f3ff41c..5e545d7 100644 --- a/src/service_ml_forecast/models/feature_data_wrappers.py +++ b/src/service_ml_forecast/models/feature_data_wrappers.py @@ -15,10 +15,9 @@ # # SPDX-License-Identifier: AGPL-3.0-or-later +from openremote_client import AssetDatapoint from pydantic import BaseModel -from service_ml_forecast.clients.openremote.models import AssetDatapoint - class AssetFeatureDatapoints(BaseModel): """Feature with the feature name and the datapoints. diff --git a/src/service_ml_forecast/models/model_config.py b/src/service_ml_forecast/models/model_config.py index 3b95c9a..b4c7a46 100644 --- a/src/service_ml_forecast/models/model_config.py +++ b/src/service_ml_forecast/models/model_config.py @@ -76,7 +76,7 @@ class TargetAssetDatapointsFeature(BaseModel): class BaseModelConfig(BaseModel): - """Base configuration for all ML models.""" + """Base configuration for all models.""" id: UUID = Field( default_factory=uuid4, @@ -88,7 +88,7 @@ class BaseModelConfig(BaseModel): default=True, description="Whether the model is enabled and will be scheduled for training and forecasting.", ) - type: ModelTypeEnum = Field(description="Which machine learning model to use.") + type: ModelTypeEnum = Field(description="Which model to use.") target: TargetAssetDatapointsFeature = Field( description="The asset attribute to generate datapoints for. " "There must be historical data available for training.", diff --git a/src/service_ml_forecast/services/model_config_service.py b/src/service_ml_forecast/services/model_config_service.py index 733e9d6..7066e31 100644 --- a/src/service_ml_forecast/services/model_config_service.py +++ b/src/service_ml_forecast/services/model_config_service.py @@ -36,7 +36,7 @@ class ModelConfigService: - """Manages the persistence of ML model configurations.""" + """Manages the persistence of model configurations.""" CONFIG_FILE_PREFIX = "config" CONFIG_FILE_EXTENSION = "json" @@ -186,7 +186,7 @@ def delete(self, realm: str, config_id: UUID) -> None: logger.info(f"Config did not have a model file to delete: {config_id} - {e}") def _parse(self, json: str) -> ModelConfig: - """Parse the provided ML model config JSON string into the concrete type.""" + """Parse the provided model config JSON string into the concrete type.""" model_adapter: TypeAdapter[ModelConfig] = TypeAdapter(ModelConfig) return model_adapter.validate_json(json) diff --git a/src/service_ml_forecast/services/model_scheduler.py b/src/service_ml_forecast/services/model_scheduler.py index 9a3c33b..01f5aa4 100644 --- a/src/service_ml_forecast/services/model_scheduler.py +++ b/src/service_ml_forecast/services/model_scheduler.py @@ -40,7 +40,7 @@ class ModelScheduler(Singleton): - """Manages the scheduling of ML model training and forecasting jobs.""" + """Manages the scheduling of model training and forecasting jobs.""" def __init__(self, openremote_service: OpenRemoteService) -> None: self.config_storage = ModelConfigService(openremote_service) @@ -63,12 +63,12 @@ def __init__(self, openremote_service: OpenRemoteService) -> None: ) def start(self) -> None: - """Start the scheduler for ML model training and forecasting. + """Start the scheduler for model training and forecasting. Does not start the scheduler if it is already running. """ if self.scheduler.running: - logger.warning("Scheduler for ML Model Training already running") + logger.warning("Scheduler for Model Training already running") return self.scheduler.start() diff --git a/src/service_ml_forecast/services/model_storage_service.py b/src/service_ml_forecast/services/model_storage_service.py index 52b08ec..51575a6 100644 --- a/src/service_ml_forecast/services/model_storage_service.py +++ b/src/service_ml_forecast/services/model_storage_service.py @@ -27,7 +27,7 @@ class ModelStorageService: - """Manages the persistence of ML models.""" + """Manages the persistence of models.""" MODEL_FILE_PREFIX = "model" DEFAULT_MODEL_FILE_EXTENSION = "json" diff --git a/src/service_ml_forecast/services/openremote_service.py b/src/service_ml_forecast/services/openremote_service.py index 798f9c4..a78c6ad 100644 --- a/src/service_ml_forecast/services/openremote_service.py +++ b/src/service_ml_forecast/services/openremote_service.py @@ -17,8 +17,8 @@ import logging -from service_ml_forecast.clients.openremote.models import AssetDatapoint, BasicAsset, Realm -from service_ml_forecast.clients.openremote.openremote_client import OpenRemoteClient +from openremote_client import AssetDatapoint, BasicAsset, OpenRemoteClient, Realm + from service_ml_forecast.common.time_util import TimeUtil from service_ml_forecast.models.feature_data_wrappers import AssetFeatureDatapoints, ForecastDataSet, TrainingDataSet from service_ml_forecast.models.model_config import ModelConfig @@ -27,10 +27,7 @@ class OpenRemoteService: - """Service for interacting with the OpenRemote Manager API. - - Provides a wrapper around the OpenRemoteClient to provide a more convenient interface for the ML Forecast service. - """ + """Service for interacting with the OpenRemote Manager API.""" def __init__(self, client: OpenRemoteClient): self.client = client @@ -45,7 +42,7 @@ def write_predicted_datapoints(self, config: ModelConfig, asset_datapoints: list Returns: True if the datapoints were written successfully, False otherwise. """ - return self.client.write_predicted_datapoints( + return self.client.assets.write_predicted_datapoints( config.target.asset_id, config.target.attribute_name, asset_datapoints, @@ -143,7 +140,7 @@ def _get_historical_datapoints( # Single requests for sub-monthly periods if months_diff <= 1: - return self.client.get_historical_datapoints(asset_id, attribute_name, from_timestamp, to_timestamp) + return self.client.assets.get_historical_datapoints(asset_id, attribute_name, from_timestamp, to_timestamp) # Split into monthly chunks if more than 1 month to avoid hitting datapoint limits on the OpenRemote side else: all_datapoints = [] @@ -161,7 +158,7 @@ def _get_historical_datapoints( # Don't exceed the original to_timestamp current_to = min(current_to, to_timestamp) - chunk_datapoints = self.client.get_historical_datapoints( + chunk_datapoints = self.client.assets.get_historical_datapoints( asset_id, attribute_name, current_from, current_to ) @@ -196,7 +193,7 @@ def get_forecast_dataset(self, config: ModelConfig) -> ForecastDataSet | None: # Get the start timestamp for the regressor start_timestamp = TimeUtil.get_period_start_timestamp_ms(regressor.training_data_period) - regressor_datapoints = self.client.get_predicted_datapoints( + regressor_datapoints = self.client.assets.get_predicted_datapoints( regressor.asset_id, regressor.attribute_name, start_timestamp, @@ -229,7 +226,7 @@ def get_assets_by_ids(self, realm: str, asset_ids: list[str]) -> list[BasicAsset Returns: A list of all assets from OpenRemote. """ - assets = self.client.get_assets_by_ids(asset_ids, realm) + assets = self.client.assets.get_by_ids(asset_ids, realm) if assets is None: logger.warning(f"Unable to retrieve assets by ids for realm {realm}") return [] @@ -240,6 +237,6 @@ def get_accessible_realms(self) -> list[Realm] | None: """Get all accessible realms from OpenRemote for the current authenticated user. Returns: - A list of all realms from OpenRemote. + A list of all accessible realms from OpenRemote. """ - return self.client.get_accessible_realms() + return self.client.realms.get_accessible() diff --git a/tests/clients/openremote/test_openremote_client.py b/tests/clients/openremote/test_openremote_client.py deleted file mode 100644 index 434facb..0000000 --- a/tests/clients/openremote/test_openremote_client.py +++ /dev/null @@ -1,103 +0,0 @@ -import time - -from service_ml_forecast.clients.openremote.models import AssetDatapoint, AssetDatapointPeriod -from service_ml_forecast.clients.openremote.openremote_client import OpenRemoteClient -from service_ml_forecast.common.time_util import TimeUtil -from tests.conftest import TEST_ASSET_ID, TEST_ATTRIBUTE_NAME - - -def test_get_asset_datapoint_period(openremote_client: OpenRemoteClient) -> None: - """Test retrieval of datapoint period information from a real OpenRemote instance. - - Verifies that: - - The client can retrieve time period metadata for asset datapoints - - The returned object contains valid period information - """ - datapoint_period: AssetDatapointPeriod | None = openremote_client.get_asset_datapoint_period( - TEST_ASSET_ID, - TEST_ATTRIBUTE_NAME, - ) - assert datapoint_period is not None - - -def test_get_asset_datapoint_period_invalid_asset_id(openremote_client: OpenRemoteClient) -> None: - """Test datapoint period retrieval with an invalid asset ID on a real instance. - - Verifies that: - - The client properly handles errors for non-existent assets - - The method returns None when the asset ID is invalid - """ - datapoint_period: AssetDatapointPeriod | None = openremote_client.get_asset_datapoint_period( - "invalid_asset_id", - TEST_ATTRIBUTE_NAME, - ) - assert datapoint_period is None - - -def test_get_historical_datapoints(openremote_client: OpenRemoteClient) -> None: - """Test retrieval of historical datapoints from a real OpenRemote instance. - - Verifies that: - - The client can retrieve time series data from OpenRemote - - The response contains valid datapoints for the given time range - """ - datapoints: list[AssetDatapoint] | None = openremote_client.get_historical_datapoints( - TEST_ASSET_ID, - TEST_ATTRIBUTE_NAME, - 1716153600000, - TimeUtil.sec_to_ms(int(time.time())), - ) - assert datapoints is not None - assert len(datapoints) > 0 - - -def test_get_historical_datapoints_invalid_asset_id(openremote_client: OpenRemoteClient) -> None: - """Test historical datapoint retrieval with an invalid asset ID on a real instance. - - Verifies that: - - The client properly handles errors for non-existent assets - - The method returns None when the asset ID is invalid - """ - datapoints: list[AssetDatapoint] | None = openremote_client.get_historical_datapoints( - "invalid_asset_id", - TEST_ATTRIBUTE_NAME, - 1716153600000, - TimeUtil.sec_to_ms(int(time.time())), - ) - assert datapoints is None, "Expected the datapoints to be None" - - -def test_write_predicted_datapoints(openremote_client: OpenRemoteClient) -> None: - """Test writing and retrieving predicted datapoints on a real OpenRemote instance. - - Verifies that: - - The client can write predicted datapoints to OpenRemote - - The client can retrieve those predictions within a specified time range - - The retrieved predictions maintain the same timestamps and values - """ - timestamp1 = 572127577200000 # 20100-01-01 00:00:00 - timestamp2 = timestamp1 + 1 # 20100-01-01 00:00:01 - - datapoints: list[AssetDatapoint] = [ - AssetDatapoint(x=timestamp1, y=100), - AssetDatapoint(x=timestamp2, y=200), - ] - - assert openremote_client.write_predicted_datapoints(TEST_ASSET_ID, TEST_ATTRIBUTE_NAME, datapoints) - - predicted_datapoints: list[AssetDatapoint] | None = openremote_client.get_predicted_datapoints( - TEST_ASSET_ID, - TEST_ATTRIBUTE_NAME, - timestamp1, - timestamp2, - ) - assert predicted_datapoints is not None - assert len(predicted_datapoints) == len(datapoints) - - # Sort both lists by timestamp (x) before comparison - sorted_predicted = sorted(predicted_datapoints, key=lambda d: d.x) - sorted_original = sorted(datapoints, key=lambda d: d.x) - - for predicted_datapoint, datapoint in zip(sorted_predicted, sorted_original, strict=True): - assert predicted_datapoint.x == datapoint.x, f"Timestamp mismatch: {predicted_datapoint.x} != {datapoint.x}" - assert predicted_datapoint.y == datapoint.y, f"Value mismatch: {predicted_datapoint.y} != {datapoint.y}" diff --git a/tests/clients/openremote/test_openremote_client_mock.py b/tests/clients/openremote/test_openremote_client_mock.py deleted file mode 100644 index 4d8e444..0000000 --- a/tests/clients/openremote/test_openremote_client_mock.py +++ /dev/null @@ -1,175 +0,0 @@ -import time -from http import HTTPStatus - -import respx - -from service_ml_forecast.clients.openremote.models import AssetDatapoint, AssetDatapointPeriod -from service_ml_forecast.clients.openremote.openremote_client import OpenRemoteClient -from service_ml_forecast.common.time_util import TimeUtil -from tests.conftest import ( - MOCK_OPENREMOTE_URL, - TEST_ASSET_ID, - TEST_ATTRIBUTE_NAME, - TEST_OLDEST_TIMESTAMP, -) - - -def test_get_asset_datapoint_period(mock_openremote_client: OpenRemoteClient) -> None: - """Test retrieval of datapoint period information for an asset attribute. - - Verifies that: - - The client can retrieve time period information for datapoints - - The response is properly parsed into an AssetDatapointPeriod object - - The returned object contains the correct asset ID and attribute name - """ - # Mock asset datapoint period endpoint - with respx.mock(base_url=MOCK_OPENREMOTE_URL) as respx_mock: - respx_mock.get( - f"/api/master/asset/datapoint/periods?assetId={TEST_ASSET_ID}&attributeName={TEST_ATTRIBUTE_NAME}", - ).mock( - return_value=respx.MockResponse( - HTTPStatus.OK, - json={ - "assetId": TEST_ASSET_ID, - "attributeName": TEST_ATTRIBUTE_NAME, - "oldestTimestamp": TEST_OLDEST_TIMESTAMP, - "latestTimestamp": TimeUtil.sec_to_ms(int(time.time())), - }, - ), - ) - datapoint_period: AssetDatapointPeriod | None = mock_openremote_client.get_asset_datapoint_period( - TEST_ASSET_ID, - TEST_ATTRIBUTE_NAME, - ) - assert datapoint_period is not None - assert datapoint_period.assetId == TEST_ASSET_ID - assert datapoint_period.attributeName == TEST_ATTRIBUTE_NAME - - -def test_get_asset_datapoint_period_invalid_asset_id(mock_openremote_client: OpenRemoteClient) -> None: - """Test datapoint period retrieval with an invalid asset ID. - - Verifies that: - - The client properly handles a NOT_FOUND response for invalid asset IDs - - The method returns None when the asset doesn't exist - """ - # Mock asset datapoint period endpoint - with respx.mock(base_url=MOCK_OPENREMOTE_URL) as respx_mock: - respx_mock.get( - f"/api/master/asset/datapoint/periods?assetId=invalid_asset_id&attributeName={TEST_ATTRIBUTE_NAME}", - ).mock(return_value=respx.MockResponse(HTTPStatus.NOT_FOUND)) - - datapoint_period: AssetDatapointPeriod | None = mock_openremote_client.get_asset_datapoint_period( - "invalid_asset_id", - TEST_ATTRIBUTE_NAME, - ) - assert datapoint_period is None - - -def test_get_historical_datapoints(mock_openremote_client: OpenRemoteClient) -> None: - """Test retrieval of historical datapoints for an asset attribute. - - Verifies that: - - The client can retrieve historical time series data - - The response is properly parsed into AssetDatapoint objects - - The returned datapoints have the expected timestamps and values - """ - # Mock historical datapoints endpoint - mock_values = [100, 200] - - with respx.mock(base_url=MOCK_OPENREMOTE_URL) as respx_mock: - respx_mock.post(f"/api/master/asset/datapoint/{TEST_ASSET_ID}/{TEST_ATTRIBUTE_NAME}").mock( - return_value=respx.MockResponse( - HTTPStatus.OK, - json=[ - {"x": TEST_OLDEST_TIMESTAMP, "y": mock_values[0]}, - {"x": TEST_OLDEST_TIMESTAMP + 1, "y": mock_values[1]}, - ], - ), - ) - datapoints: list[AssetDatapoint] | None = mock_openremote_client.get_historical_datapoints( - TEST_ASSET_ID, - TEST_ATTRIBUTE_NAME, - TEST_OLDEST_TIMESTAMP, - TimeUtil.sec_to_ms(int(time.time())), - ) - assert datapoints is not None - assert len(datapoints) > 0 - assert datapoints[0].x == TEST_OLDEST_TIMESTAMP - assert datapoints[0].y == mock_values[0] - - -def test_get_historical_datapoints_invalid_asset_id(mock_openremote_client: OpenRemoteClient) -> None: - """Test historical datapoint retrieval with an invalid asset ID. - - Verifies that: - - The client properly handles a NOT_FOUND response for invalid asset IDs - - The method returns None when the asset doesn't exist - """ - # Mock historical datapoints endpoint - with respx.mock(base_url=MOCK_OPENREMOTE_URL) as respx_mock: - respx_mock.post(f"/api/master/asset/datapoint/invalid_asset_id/{TEST_ATTRIBUTE_NAME}").mock( - return_value=respx.MockResponse(HTTPStatus.NOT_FOUND), - ) - datapoints: list[AssetDatapoint] | None = mock_openremote_client.get_historical_datapoints( - "invalid_asset_id", - TEST_ATTRIBUTE_NAME, - TEST_OLDEST_TIMESTAMP, - TimeUtil.sec_to_ms(int(time.time())), - ) - assert datapoints is None - - -def test_write_predicted_datapoints(mock_openremote_client: OpenRemoteClient) -> None: - """Test writing and retrieving predicted datapoints for an asset attribute. - - Verifies that: - - The client can write predicted datapoints to OpenRemote - - The client can retrieve previously written predicted datapoints - - The retrieved datapoints match the originally written ones in both timestamps and values - """ - # Mock predicted datapoints endpoint - mock_timestamp1 = 572127577200000 # 20100-01-01 00:00:00 UTC - mock_timestamp2 = mock_timestamp1 + 1 # 20100-01-01 00:00:01 UTC - mock_values = [100, 200] - - datapoints: list[AssetDatapoint] = [ - AssetDatapoint(x=mock_timestamp1, y=mock_values[0]), - AssetDatapoint(x=mock_timestamp2, y=mock_values[1]), - ] - - with respx.mock(base_url=MOCK_OPENREMOTE_URL) as respx_mock: - respx_mock.put(f"/api/master/asset/predicted/{TEST_ASSET_ID}/{TEST_ATTRIBUTE_NAME}").mock( - return_value=respx.MockResponse(HTTPStatus.NO_CONTENT), - ) - - respx_mock.post(f"/api/master/asset/predicted/{TEST_ASSET_ID}/{TEST_ATTRIBUTE_NAME}").mock( - return_value=respx.MockResponse( - HTTPStatus.OK, - json=[ - {"x": mock_timestamp1, "y": mock_values[0]}, - {"x": mock_timestamp2, "y": mock_values[1]}, - ], - ), - ) - - assert mock_openremote_client.write_predicted_datapoints(TEST_ASSET_ID, TEST_ATTRIBUTE_NAME, datapoints), ( - "Failed to write predicted datapoints" - ) - - predicted_datapoints: list[AssetDatapoint] | None = mock_openremote_client.get_predicted_datapoints( - TEST_ASSET_ID, - TEST_ATTRIBUTE_NAME, - mock_timestamp1, - mock_timestamp2, - ) - assert predicted_datapoints is not None - assert len(predicted_datapoints) == len(datapoints) - - # Sort both lists by timestamp (x) before comparison - sorted_predicted = sorted(predicted_datapoints, key=lambda d: d.x) - sorted_original = sorted(datapoints, key=lambda d: d.x) - - for predicted_datapoint, datapoint in zip(sorted_predicted, sorted_original, strict=True): - assert predicted_datapoint.x == datapoint.x, f"Timestamp mismatch: {predicted_datapoint.x} != {datapoint.x}" - assert predicted_datapoint.y == datapoint.y, f"Value mismatch: {predicted_datapoint.y} != {datapoint.y}" diff --git a/tests/conftest.py b/tests/conftest.py index 8633215..05b6251 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -14,9 +14,8 @@ import respx from fastapi import FastAPI from fastapi.testclient import TestClient +from openremote_client import AssetDatapoint, OpenRemoteClient -from service_ml_forecast.clients.openremote.models import AssetDatapoint -from service_ml_forecast.clients.openremote.openremote_client import OpenRemoteClient from service_ml_forecast.config import DIRS from service_ml_forecast.dependencies import get_config_service from service_ml_forecast.logging_config import LOGGING_CONFIG @@ -37,6 +36,7 @@ MOCK_KEYCLOAK_URL = "https://keycloak.local/auth" MOCK_KEYCLOAK_REALM = "master" MOCK_SERVICE_USER = "service_user" +MOCK_REALM = "master" MOCK_SERVICE_USER_SECRET = "service_user_secret" MOCK_ACCESS_TOKEN = "mock_access_token" MOCK_TOKEN_EXPIRY_SECONDS = 60 @@ -61,28 +61,6 @@ def cleanup_test_tmp_dir() -> Generator[None]: shutil.rmtree(TEST_TMP_DIR, ignore_errors=True) -@pytest.fixture -def openremote_client() -> OpenRemoteClient | None: - """Create an OpenRemote client for testing against a real instance.""" - from service_ml_forecast.config import ENV - - try: - client = OpenRemoteClient( - openremote_url=ENV.ML_OR_URL, - keycloak_url=ENV.ML_OR_KEYCLOAK_URL, - realm=ENV.ML_OR_REALM, - service_user=ENV.ML_OR_SERVICE_USER, - service_user_secret=ENV.ML_OR_SERVICE_USER_SECRET, - ) - if not client.health_check(): - pytest.skip(reason="Unable to reach the OpenRemote Manager API") - - return client - - except Exception as e: - pytest.skip(reason=f"Failed to create OpenRemote client: {e}") - - @pytest.fixture def mock_openremote_client() -> OpenRemoteClient | None: """Create a mock OpenRemote client with mocked authentication.""" @@ -102,7 +80,7 @@ def mock_openremote_client() -> OpenRemoteClient | None: client = OpenRemoteClient( openremote_url=MOCK_OPENREMOTE_URL, keycloak_url=MOCK_KEYCLOAK_URL, - realm=MOCK_KEYCLOAK_REALM, + realm=MOCK_REALM, service_user=MOCK_SERVICE_USER, service_user_secret=MOCK_SERVICE_USER_SECRET, ) @@ -137,16 +115,24 @@ def prophet_multi_variable_config() -> ProphetModelConfig: def windspeed_mock_datapoints() -> list[AssetDatapoint]: windspeed_data_path = Path(__file__).parent / "ml/resources/mock-datapoints-windspeed.json" with open(windspeed_data_path) as f: - datapoints: list[AssetDatapoint] = json.load(f) - return datapoints + raw_data = json.load(f) + return [AssetDatapoint(x=point["x"], y=point["y"]) for point in raw_data] @pytest.fixture def tariff_mock_datapoints() -> list[AssetDatapoint]: tariff_data_path = Path(__file__).parent / "ml/resources/mock-datapoints-tariff.json" with open(tariff_data_path) as f: - datapoints: list[AssetDatapoint] = json.load(f) - return datapoints + raw_data = json.load(f) + return [AssetDatapoint(x=point["x"], y=point["y"]) for point in raw_data] + + +@pytest.fixture +def power_grid_mock_datapoints() -> list[AssetDatapoint]: + power_grid_data_path = Path(__file__).parent / "ml/resources/mock-datapoints-power-grid.json" + with open(power_grid_data_path) as f: + raw_data = json.load(f) + return [AssetDatapoint(x=point["x"], y=point["y"]) for point in raw_data] @pytest.fixture diff --git a/tests/ml/resources/mock-datapoints-power-grid.json b/tests/ml/resources/mock-datapoints-power-grid.json new file mode 100644 index 0000000..8937c00 --- /dev/null +++ b/tests/ml/resources/mock-datapoints-power-grid.json @@ -0,0 +1 @@ +[{"x":1750283941927,"y":30.013},{"x":1750283881592,"y":28.9},{"x":1750283821227,"y":33.882},{"x":1750283760836,"y":36.458},{"x":1750283700457,"y":39.895},{"x":1750283643020,"y":45.189},{"x":1750283582652,"y":43.941},{"x":1750283522292,"y":43.607},{"x":1750283461922,"y":43.023},{"x":1750283401565,"y":39.944},{"x":1750283341196,"y":31.921},{"x":1750283280654,"y":41.356},{"x":1750283220250,"y":41.522},{"x":1750283162802,"y":44.895},{"x":1750283102465,"y":43.838},{"x":1750283042108,"y":46.364},{"x":1750282981747,"y":46.25},{"x":1750282921391,"y":46.924},{"x":1750282861008,"y":41.512},{"x":1750282800661,"y":40.905},{"x":1750282740202,"y":43.056},{"x":1750282682751,"y":39.154},{"x":1750282622327,"y":40.76},{"x":1750282561956,"y":43.281},{"x":1750282501597,"y":40.861},{"x":1750282441192,"y":35.427},{"x":1750282380804,"y":27.404},{"x":1750282320468,"y":34.962},{"x":1750282262985,"y":40.639},{"x":1750282202538,"y":41.825},{"x":1750282142190,"y":35.589},{"x":1750282081832,"y":34.637},{"x":1750282021491,"y":35.888},{"x":1750281961127,"y":32.742},{"x":1750281900753,"y":49.378},{"x":1750281840412,"y":32.242},{"x":1750281782982,"y":35.985},{"x":1750281722620,"y":48.982},{"x":1750281662254,"y":42.748},{"x":1750281601838,"y":52.258},{"x":1750281541463,"y":43.649},{"x":1750281481105,"y":49.659},{"x":1750281420733,"y":28.346},{"x":1750281360330,"y":34.65},{"x":1750281302898,"y":47.814},{"x":1750281242559,"y":33.102},{"x":1750281182197,"y":33.331},{"x":1750281121840,"y":32.811},{"x":1750281061446,"y":36.372},{"x":1750281001080,"y":35.369},{"x":1750280940662,"y":34.112},{"x":1750280880230,"y":33.252},{"x":1750280822802,"y":31.554},{"x":1750280762440,"y":31.924},{"x":1750280702086,"y":46.006},{"x":1750280641683,"y":27.48},{"x":1750280581316,"y":31.692},{"x":1750280520944,"y":36.979},{"x":1750280460589,"y":37.189},{"x":1750280403115,"y":39.253},{"x":1750280342653,"y":47.792},{"x":1750280282295,"y":68.008},{"x":1750280221902,"y":55.656},{"x":1750280161543,"y":59.14},{"x":1750280101151,"y":62.271},{"x":1750280040777,"y":51.05},{"x":1750279980408,"y":36.867},{"x":1750279922940,"y":35.508},{"x":1750279862558,"y":32.639},{"x":1750279802175,"y":33.875},{"x":1750279741782,"y":41.904},{"x":1750279681344,"y":30.658},{"x":1750279620906,"y":30.373},{"x":1750279560560,"y":29.467},{"x":1750279500180,"y":35.813},{"x":1750279442787,"y":32.456},{"x":1750279382376,"y":29.955},{"x":1750279321984,"y":30.348},{"x":1750279261625,"y":28.929},{"x":1750279201277,"y":31.113},{"x":1750279140884,"y":27.433},{"x":1750279080483,"y":33.051},{"x":1750279023084,"y":32.84},{"x":1750278962664,"y":32.55},{"x":1750278902307,"y":32.864},{"x":1750278841915,"y":37.222},{"x":1750278781564,"y":36.078},{"x":1750278721188,"y":44.656},{"x":1750278660825,"y":42.144},{"x":1750278600479,"y":27.884},{"x":1750278542933,"y":26.549},{"x":1750278482580,"y":27.693},{"x":1750278422206,"y":41.455},{"x":1750278361836,"y":36.599},{"x":1750278301448,"y":31.949},{"x":1750278241086,"y":37.149},{"x":1750278180708,"y":37.311},{"x":1750278120277,"y":49.897},{"x":1750278062839,"y":39.167},{"x":1750278002470,"y":34.854},{"x":1750277942115,"y":46.007},{"x":1750277881732,"y":31.674},{"x":1750277821366,"y":35.691},{"x":1750277760979,"y":34.542},{"x":1750277700628,"y":32.307},{"x":1750277640172,"y":40.915},{"x":1750277582690,"y":35.476},{"x":1750277522335,"y":37.769},{"x":1750277461957,"y":37.412},{"x":1750277401610,"y":41.659},{"x":1750277341259,"y":36.897},{"x":1750277280894,"y":40.94},{"x":1750277220527,"y":49.4},{"x":1750277160163,"y":36.229},{"x":1750277102768,"y":36.901},{"x":1750277042400,"y":30.587},{"x":1750276982034,"y":33.709},{"x":1750276921649,"y":40.588},{"x":1750276861290,"y":44.563},{"x":1750276800913,"y":56.435},{"x":1750276740381,"y":51.545},{"x":1750276682954,"y":47.955},{"x":1750276622604,"y":40.455},{"x":1750276562241,"y":42.876},{"x":1750276501890,"y":52.623},{"x":1750276441539,"y":40.115},{"x":1750276381182,"y":44.01},{"x":1750276320809,"y":41.421},{"x":1750276260429,"y":40.661},{"x":1750276203027,"y":39.252},{"x":1750276142652,"y":37.649},{"x":1750276082245,"y":35.386},{"x":1750276021843,"y":48.948},{"x":1750275961478,"y":39.659},{"x":1750275901108,"y":43.578},{"x":1750275840708,"y":41.857},{"x":1750275780291,"y":46.241},{"x":1750275722808,"y":44.306},{"x":1750275662468,"y":40.637},{"x":1750275602085,"y":49.276},{"x":1750275541733,"y":44.313},{"x":1750275481371,"y":42.734},{"x":1750275421013,"y":40.65},{"x":1750275360654,"y":46.616},{"x":1750275300321,"y":51.96},{"x":1750275242830,"y":48.266},{"x":1750275182489,"y":56.706},{"x":1750275122128,"y":61.909},{"x":1750275061771,"y":68.005},{"x":1750275001416,"y":69.163},{"x":1750274941042,"y":47.743},{"x":1750274880682,"y":49.526},{"x":1750274820381,"y":53.452},{"x":1750274762928,"y":37.634},{"x":1750274702575,"y":31.846},{"x":1750274642195,"y":41.261},{"x":1750274581844,"y":32.519},{"x":1750274521497,"y":33.088},{"x":1750274461136,"y":49.316},{"x":1750274400735,"y":32.802},{"x":1750274340356,"y":43.246},{"x":1750274282888,"y":34.612},{"x":1750274222548,"y":36.046},{"x":1750274162194,"y":45.855},{"x":1750274101842,"y":28.099},{"x":1750274041466,"y":29.865},{"x":1750273981121,"y":29.918},{"x":1750273920762,"y":27.886},{"x":1750273860415,"y":31.709},{"x":1750273802988,"y":26.605},{"x":1750273742651,"y":35.305},{"x":1750273682260,"y":51.941},{"x":1750273621876,"y":43.164},{"x":1750273561538,"y":49.56},{"x":1750273501182,"y":60.845},{"x":1750273440831,"y":53.446},{"x":1750273380487,"y":41.775},{"x":1750273320138,"y":43.054},{"x":1750273262716,"y":45.619},{"x":1750273202347,"y":32.007},{"x":1750273141917,"y":33.288},{"x":1750273081519,"y":27.557},{"x":1750273021164,"y":30.321},{"x":1750272960828,"y":46.472},{"x":1750272900481,"y":44.115},{"x":1750272843025,"y":40.358},{"x":1750272782668,"y":38.306},{"x":1750272722278,"y":41.346},{"x":1750272661924,"y":35.057},{"x":1750272601565,"y":27.171},{"x":1750272541213,"y":33.904},{"x":1750272480818,"y":40.592},{"x":1750272420374,"y":40.769},{"x":1750272362939,"y":41.19},{"x":1750272302570,"y":40.295},{"x":1750272242212,"y":41.785},{"x":1750272181843,"y":47.426},{"x":1750272121471,"y":30.265},{"x":1750272061115,"y":32.053},{"x":1750272000771,"y":40.842},{"x":1750271940370,"y":35.415},{"x":1750271882941,"y":40.167},{"x":1750271822587,"y":40.742},{"x":1750271762222,"y":35.07},{"x":1750271701877,"y":37.175},{"x":1750271641529,"y":31.569},{"x":1750271581193,"y":29.139},{"x":1750271520801,"y":30.192},{"x":1750271460456,"y":38.793},{"x":1750271402998,"y":35.752},{"x":1750271342565,"y":29.886},{"x":1750271282221,"y":29.237},{"x":1750271221799,"y":31.163},{"x":1750271161454,"y":31.073},{"x":1750271101096,"y":28.966},{"x":1750271040725,"y":30.981},{"x":1750270980317,"y":29.915},{"x":1750270922776,"y":28.14},{"x":1750270862446,"y":36.823},{"x":1750270802089,"y":45.721},{"x":1750270741732,"y":50.578},{"x":1750270681351,"y":49.138},{"x":1750270620984,"y":49.229},{"x":1750270560634,"y":36.434},{"x":1750270500296,"y":30.551},{"x":1750270442799,"y":32.321},{"x":1750270382406,"y":28.11},{"x":1750270322054,"y":40.874},{"x":1750270261672,"y":26.614},{"x":1750270201293,"y":33.551},{"x":1750270140908,"y":36.818},{"x":1750270080549,"y":36.955},{"x":1750270020175,"y":37.658},{"x":1750269962732,"y":37.406},{"x":1750269902352,"y":35.717},{"x":1750269841970,"y":35.669},{"x":1750269781617,"y":36.499},{"x":1750269721227,"y":37.859},{"x":1750269660870,"y":27.947},{"x":1750269600560,"y":37.834},{"x":1750269542992,"y":34.142},{"x":1750269482625,"y":30.683},{"x":1750269422275,"y":30.901},{"x":1750269361900,"y":31.183},{"x":1750269301532,"y":30.032},{"x":1750269241183,"y":32.251},{"x":1750269180772,"y":38.031},{"x":1750269120433,"y":33.224},{"x":1750269062981,"y":34.194},{"x":1750269002612,"y":33.247},{"x":1750268942199,"y":31.601},{"x":1750268881735,"y":29.345},{"x":1750268821306,"y":34.046},{"x":1750268760946,"y":30.764},{"x":1750268700590,"y":42.209},{"x":1750268640178,"y":34.416},{"x":1750268582756,"y":44.194},{"x":1750268522365,"y":44.905},{"x":1750268461980,"y":42.932},{"x":1750268401627,"y":42.064},{"x":1750268341284,"y":30.839},{"x":1750268280932,"y":21.508},{"x":1750268220589,"y":24.405},{"x":1750268160267,"y":30.613},{"x":1750268102813,"y":38.621},{"x":1750268042465,"y":28.772},{"x":1750267982082,"y":45.075},{"x":1750267921721,"y":45.373},{"x":1750267861363,"y":36.37},{"x":1750267800995,"y":31.827},{"x":1750267740591,"y":24.015},{"x":1750267680246,"y":28.51},{"x":1750267622855,"y":23.617},{"x":1750267562495,"y":34.201},{"x":1750267502147,"y":27.472},{"x":1750267441756,"y":46.092},{"x":1750267381422,"y":44.098},{"x":1750267321074,"y":34.892},{"x":1750267260699,"y":46.182},{"x":1750267200350,"y":38.856},{"x":1750267142926,"y":21.655},{"x":1750267082572,"y":23.302},{"x":1750267022194,"y":28.984},{"x":1750266961843,"y":20.077},{"x":1750266901532,"y":29.556},{"x":1750266841182,"y":30.662},{"x":1750266780779,"y":25.611},{"x":1750266720427,"y":21.419},{"x":1750266662991,"y":25.195},{"x":1750266602654,"y":19.172},{"x":1750266542278,"y":17.817},{"x":1750266481882,"y":23.289},{"x":1750266421530,"y":38.422},{"x":1750266361150,"y":40.382},{"x":1750266300773,"y":35.834},{"x":1750266240408,"y":35.812},{"x":1750266183031,"y":23.558},{"x":1750266122658,"y":18.246},{"x":1750266062300,"y":16.956},{"x":1750266001933,"y":23.609},{"x":1750265941529,"y":28.111},{"x":1750265881174,"y":34.613},{"x":1750265820820,"y":38.663},{"x":1750265760460,"y":48.331},{"x":1750265703008,"y":32.66},{"x":1750265642659,"y":24.866},{"x":1750265582308,"y":16.158},{"x":1750265521954,"y":18.149},{"x":1750265461581,"y":18.02},{"x":1750265401214,"y":16.327},{"x":1750265340848,"y":14.989},{"x":1750265280432,"y":26.965},{"x":1750888741865,"y":26.273},{"x":1750888681494,"y":30.078},{"x":1750888621103,"y":39.76},{"x":1750888560658,"y":39.955},{"x":1750888500289,"y":43.522},{"x":1750888442813,"y":37.657},{"x":1750888382428,"y":37.017},{"x":1750888322061,"y":28.518},{"x":1750888261652,"y":27.881},{"x":1750888201283,"y":29.25},{"x":1750888140866,"y":28.681},{"x":1750888080471,"y":29.461},{"x":1750888022999,"y":28.16},{"x":1750887962646,"y":27.557},{"x":1750887902221,"y":25.35},{"x":1750887841847,"y":27.719},{"x":1750887781449,"y":24.881},{"x":1750887721066,"y":24.66},{"x":1750887660631,"y":24.614},{"x":1750887600263,"y":24.199},{"x":1750887542802,"y":41.608},{"x":1750887482390,"y":35.48},{"x":1750887422025,"y":43.506},{"x":1750887360868,"y":38.085},{"x":1750887300473,"y":35.177},{"x":1750887242946,"y":28.213},{"x":1750887182569,"y":27.204},{"x":1750887122191,"y":24.491},{"x":1750887061787,"y":31.563},{"x":1750887001393,"y":33.314},{"x":1750886940969,"y":31.988},{"x":1750886880629,"y":40.176},{"x":1750886820255,"y":39.219},{"x":1750886762784,"y":36.432},{"x":1750886702408,"y":37.659},{"x":1750886642032,"y":28.528},{"x":1750886581648,"y":39.126},{"x":1750886521272,"y":27.206},{"x":1750886460876,"y":27.121},{"x":1750886400472,"y":29.484},{"x":1750886340026,"y":24.844},{"x":1750886282588,"y":28.992},{"x":1750886222091,"y":28.507},{"x":1750886161706,"y":30.098},{"x":1750886101339,"y":25.978},{"x":1750886040925,"y":25.246},{"x":1750885980556,"y":26.116},{"x":1750885920104,"y":29.514},{"x":1750885862648,"y":27.078},{"x":1750885802271,"y":35.109},{"x":1750885741886,"y":38.061},{"x":1750885681507,"y":33.961},{"x":1750885621100,"y":36.892},{"x":1750885560695,"y":25.198},{"x":1750885500354,"y":31.51},{"x":1750885442788,"y":30.678},{"x":1750885382391,"y":28.755},{"x":1750885321989,"y":33.591},{"x":1750885261559,"y":36.809},{"x":1750885201208,"y":33.159},{"x":1750885140746,"y":29.76},{"x":1750885080372,"y":28.062},{"x":1750885022885,"y":27.158},{"x":1750884962511,"y":31.179},{"x":1750884902114,"y":27.152},{"x":1750884841743,"y":38.655},{"x":1750884781383,"y":36.818},{"x":1750884720942,"y":37.931},{"x":1750884660584,"y":39.8},{"x":1750884600187,"y":38.503},{"x":1750884542721,"y":29.615},{"x":1750884482312,"y":26.952},{"x":1750884421921,"y":27.013},{"x":1750884361519,"y":29.693},{"x":1750884301142,"y":35.591},{"x":1750884240723,"y":34.255},{"x":1750884180345,"y":36.778},{"x":1750884122846,"y":35.892},{"x":1750884062450,"y":33.092},{"x":1750884002040,"y":32.685},{"x":1750883941654,"y":34.394},{"x":1750883881278,"y":26.899},{"x":1750883820896,"y":26.613},{"x":1750883760539,"y":27.188},{"x":1750883700146,"y":30.363},{"x":1750883642686,"y":30.658},{"x":1750883582252,"y":34.417},{"x":1750883521877,"y":36.388},{"x":1750883461465,"y":38.062},{"x":1750883401060,"y":41.003},{"x":1750883340666,"y":38.996},{"x":1750883280267,"y":27.775},{"x":1750883222817,"y":26.861},{"x":1750883162348,"y":37.907},{"x":1750883101958,"y":31.833},{"x":1750883041532,"y":32.303},{"x":1750882981136,"y":37.529},{"x":1750882920741,"y":39.428},{"x":1750882860291,"y":39.1},{"x":1750882802781,"y":37.19},{"x":1750882742357,"y":35.223},{"x":1750882681856,"y":35.58},{"x":1750882621345,"y":33.562},{"x":1750882560953,"y":40.197},{"x":1750882500584,"y":42.345},{"x":1750882440168,"y":42.674},{"x":1750882382714,"y":42.785},{"x":1750882322283,"y":49.029},{"x":1750882261831,"y":38.648},{"x":1750882201357,"y":44.414},{"x":1750882140899,"y":46.846},{"x":1750882080462,"y":43.053},{"x":1750882022996,"y":49.264},{"x":1750881962624,"y":42.918},{"x":1750881902169,"y":40.695},{"x":1750881841729,"y":41.048},{"x":1750881781300,"y":36.366},{"x":1750881720897,"y":37.755},{"x":1750881660441,"y":38.664},{"x":1750881602842,"y":42.68},{"x":1750881542413,"y":39.165},{"x":1750881482038,"y":36.75},{"x":1750881421605,"y":37.977},{"x":1750881361197,"y":43.843},{"x":1750881300789,"y":47.471},{"x":1750881240357,"y":47.941},{"x":1750881182870,"y":47.599},{"x":1750881122476,"y":46.82},{"x":1750881062043,"y":49.697},{"x":1750881001598,"y":41.544},{"x":1750880941197,"y":42.204},{"x":1750880880815,"y":35.271},{"x":1750880820387,"y":36.509},{"x":1750880762904,"y":38.148},{"x":1750880702479,"y":40.884},{"x":1750880642106,"y":38.887},{"x":1750880581675,"y":36.383},{"x":1750880521279,"y":36.444},{"x":1750880460854,"y":36.96},{"x":1750880400476,"y":34.567},{"x":1750880343023,"y":39.357},{"x":1750880282640,"y":36.519},{"x":1750880222249,"y":36.607},{"x":1750880161837,"y":41.031},{"x":1750880101436,"y":44.18},{"x":1750880041010,"y":40.242},{"x":1750879980610,"y":53.167},{"x":1750879920204,"y":50.181},{"x":1750879862718,"y":48.327},{"x":1750879802318,"y":52.534},{"x":1750879741927,"y":44.161},{"x":1750879681524,"y":34.876},{"x":1750879621130,"y":45.393},{"x":1750879560674,"y":46.59},{"x":1750879500280,"y":37.932},{"x":1750879442762,"y":38.526},{"x":1750879382329,"y":47.225},{"x":1750879321936,"y":46.188},{"x":1750879261515,"y":42.04},{"x":1750879201111,"y":40.639},{"x":1750879140652,"y":57.548},{"x":1750879080192,"y":44.39},{"x":1750879022644,"y":43.149},{"x":1750878962259,"y":55.672},{"x":1750878901836,"y":49.705},{"x":1750878841440,"y":36.138},{"x":1750878781003,"y":37.333},{"x":1750878720628,"y":41.521},{"x":1750878660246,"y":59.044},{"x":1750878602775,"y":43.568},{"x":1750878542388,"y":42.177},{"x":1750878481981,"y":40.062},{"x":1750878421572,"y":55.784},{"x":1750878361193,"y":49.623},{"x":1750878300766,"y":37.774},{"x":1750878240363,"y":41.703},{"x":1750878182864,"y":36.712},{"x":1750878122433,"y":39.186},{"x":1750878062051,"y":33.919},{"x":1750878001658,"y":35.704},{"x":1750877941164,"y":40.481},{"x":1750877880769,"y":33.85},{"x":1750877820392,"y":34.811},{"x":1750877762858,"y":32.745},{"x":1750877702480,"y":32.73},{"x":1750877642097,"y":34.056},{"x":1750877581670,"y":40.91},{"x":1750877521288,"y":38.987},{"x":1750877460867,"y":46.983},{"x":1750877400483,"y":39.094},{"x":1750877342823,"y":47.672},{"x":1750877282463,"y":49.416},{"x":1750877222048,"y":38.006},{"x":1750877161562,"y":34.828},{"x":1750877101130,"y":37.447},{"x":1750877040720,"y":41.401},{"x":1750876980367,"y":44.866},{"x":1750876922744,"y":55.243},{"x":1750876862362,"y":38.431},{"x":1750876801945,"y":34.248},{"x":1750876741544,"y":35.445},{"x":1750876681141,"y":36.678},{"x":1750876620754,"y":36.511},{"x":1750876560368,"y":35.345},{"x":1750876502894,"y":43.911},{"x":1750876442507,"y":36.566},{"x":1750876382121,"y":48.654},{"x":1750876321699,"y":44.319},{"x":1750876261304,"y":47.468},{"x":1750876200929,"y":52.189},{"x":1750876140505,"y":48.862},{"x":1750876082986,"y":49.828},{"x":1750876022602,"y":45.863},{"x":1750875962209,"y":43.102},{"x":1750875901804,"y":29.452},{"x":1750875841417,"y":32.338},{"x":1750875781033,"y":43.727},{"x":1750875720613,"y":28.731},{"x":1750875660189,"y":28.391},{"x":1750875602733,"y":30.362},{"x":1750875542349,"y":37.718},{"x":1750875481814,"y":34.879},{"x":1750875421208,"y":37.96},{"x":1750875360755,"y":37.071},{"x":1750875300440,"y":38.555},{"x":1750875242775,"y":45.393},{"x":1750875182396,"y":39.572},{"x":1750875121986,"y":33.112},{"x":1750875061625,"y":31.419},{"x":1750875001175,"y":43.618},{"x":1750874940768,"y":32.469},{"x":1750874880352,"y":38.945},{"x":1750874822892,"y":42.783},{"x":1750874762475,"y":37.274},{"x":1750874702064,"y":36.136},{"x":1750874641669,"y":35.346},{"x":1750874581273,"y":48.545},{"x":1750874520852,"y":43.432},{"x":1750874460475,"y":35.928},{"x":1750874402999,"y":26.418},{"x":1750874342578,"y":25.764},{"x":1750874282179,"y":28.742},{"x":1750874221783,"y":34.326},{"x":1750874161418,"y":28.942},{"x":1750874100974,"y":28.229},{"x":1750874040586,"y":25.878},{"x":1750873980148,"y":24.905},{"x":1750873922635,"y":25.668},{"x":1750873862235,"y":32.871},{"x":1750873801845,"y":29.041},{"x":1750873741456,"y":28.508},{"x":1750873681070,"y":29.128},{"x":1750873620651,"y":34.152},{"x":1750873560248,"y":36.581},{"x":1750873502728,"y":35.239},{"x":1750873442345,"y":34.286},{"x":1750873381967,"y":28.962},{"x":1750873321528,"y":27.489},{"x":1750873261131,"y":30.848},{"x":1750873200722,"y":25.281},{"x":1750873140257,"y":26.736},{"x":1750873082777,"y":25.031},{"x":1750873022370,"y":27.722},{"x":1750872961986,"y":33.942},{"x":1750872901617,"y":28.417},{"x":1750872841227,"y":39.793},{"x":1750872780789,"y":53.177},{"x":1750872720409,"y":53.897},{"x":1750872662879,"y":43.838},{"x":1750872602483,"y":48.64},{"x":1750872542059,"y":38.438},{"x":1750872481645,"y":31.534},{"x":1750872421226,"y":28.452},{"x":1750872360769,"y":31.897},{"x":1750872300352,"y":32.009},{"x":1750872242809,"y":38.395},{"x":1750872182401,"y":55.446},{"x":1750872122003,"y":53.384},{"x":1750872061618,"y":40.967},{"x":1750872001212,"y":45.312},{"x":1750871940748,"y":31.125},{"x":1750871880194,"y":27.262},{"x":1750871822625,"y":27.287},{"x":1750871762182,"y":24.307},{"x":1750871701764,"y":38.645},{"x":1750871641371,"y":40.534},{"x":1750871580935,"y":36.449},{"x":1750871520558,"y":36.281},{"x":1750871463018,"y":35.04},{"x":1750871402594,"y":30.618},{"x":1750871342188,"y":35.144},{"x":1750871281768,"y":28.686},{"x":1750871221330,"y":26.866},{"x":1750871160912,"y":24.424},{"x":1750871100559,"y":23.445},{"x":1750871043050,"y":21.046},{"x":1750870982616,"y":28.68},{"x":1750870922218,"y":16.884},{"x":1750870861820,"y":16.908},{"x":1750870801538,"y":14.394},{"x":1750870740953,"y":18.409},{"x":1750870680522,"y":17.46},{"x":1750870620097,"y":14.823},{"x":1750870562620,"y":22.85},{"x":1750870502179,"y":28.292},{"x":1750870441794,"y":30.126},{"x":1750870381390,"y":25.586},{"x":1750870320983,"y":24.691},{"x":1750870260546,"y":29.513},{"x":1750870200123,"y":24.505},{"x":1750870142696,"y":31.848},{"x":1750870082304,"y":35.797},{"x":1750870021860,"y":34.394},{"x":1750869961434,"y":33.214},{"x":1750869901025,"y":28.026},{"x":1750869840586,"y":37.732},{"x":1750869780136,"y":22.57},{"x":1750869722708,"y":19.821},{"x":1750869662289,"y":15.133},{"x":1750869601832,"y":31.735},{"x":1750869541426,"y":36.461},{"x":1750869481005,"y":39.859},{"x":1750869420599,"y":39.064},{"x":1750869360217,"y":34.677},{"x":1750869302747,"y":25.627},{"x":1750869242319,"y":26.177},{"x":1750869181880,"y":24.213},{"x":1750869121450,"y":30.689},{"x":1750869061032,"y":28.911},{"x":1750869000629,"y":31.241},{"x":1750868940113,"y":24.873},{"x":1750868882667,"y":26.395},{"x":1750868822245,"y":13.13},{"x":1750868761833,"y":14.104},{"x":1750868701423,"y":17.349},{"x":1750868641008,"y":21.483},{"x":1750868580586,"y":24.005},{"x":1750868520156,"y":28.665},{"x":1750868462647,"y":35.675},{"x":1750868402215,"y":31.46},{"x":1750868341786,"y":24.748},{"x":1750868281306,"y":30.969},{"x":1750868220822,"y":13.862},{"x":1750868160454,"y":15.445},{"x":1750868102839,"y":17.055},{"x":1750868042435,"y":17.516},{"x":1750867982049,"y":25.503},{"x":1750867921666,"y":18.692},{"x":1750867861249,"y":31.421},{"x":1750867800862,"y":26.992},{"x":1750867740372,"y":35.077},{"x":1750867682825,"y":26.51},{"x":1750867622371,"y":16.336},{"x":1750867561983,"y":20.451},{"x":1750867501583,"y":20.901},{"x":1750867441188,"y":13.795},{"x":1750867380725,"y":23.731},{"x":1750867320309,"y":22.066},{"x":1750867262807,"y":42.919},{"x":1750867202402,"y":32.15},{"x":1750867141970,"y":21.573},{"x":1750867081572,"y":14.46},{"x":1750867021169,"y":16.695},{"x":1750866960745,"y":11.589},{"x":1750866900401,"y":13.787},{"x":1750866842847,"y":12.785},{"x":1750866782427,"y":33.024},{"x":1750866721989,"y":30.436},{"x":1750866661589,"y":35.919},{"x":1750866601194,"y":35.798},{"x":1750866540770,"y":34.616},{"x":1750866480408,"y":14.229},{"x":1750866422871,"y":15.695},{"x":1750866362474,"y":14.151},{"x":1750866302096,"y":10.862},{"x":1750866241696,"y":14.517},{"x":1750866181241,"y":22.824},{"x":1750866120836,"y":20.836},{"x":1750866060392,"y":19.992},{"x":1750866002892,"y":24.596},{"x":1750865942494,"y":22.952},{"x":1750865882091,"y":12.787},{"x":1750865821657,"y":21.659},{"x":1750865761253,"y":20.89},{"x":1750865700837,"y":20.298},{"x":1750865640373,"y":26.972},{"x":1750865582896,"y":29.756},{"x":1750865522475,"y":30.351},{"x":1750865462077,"y":18.639},{"x":1750865401677,"y":36.906},{"x":1750865341289,"y":13.096},{"x":1750865280851,"y":18.615},{"x":1750865220458,"y":25.529},{"x":1750865162914,"y":19.734},{"x":1750865102500,"y":22.574},{"x":1750865042029,"y":15.476},{"x":1750864981608,"y":20.032},{"x":1750864921190,"y":23.285},{"x":1750864860774,"y":19.178},{"x":1750864803403,"y":20.593},{"x":1750864742621,"y":20.342},{"x":1750864682131,"y":19.838},{"x":1750864621592,"y":28.066},{"x":1750864561167,"y":21.823},{"x":1750864500728,"y":17.077},{"x":1750864440303,"y":16.398},{"x":1750864382795,"y":13.772},{"x":1750864322359,"y":28.692},{"x":1750864261955,"y":13.935},{"x":1750864201553,"y":15.017},{"x":1750864141100,"y":26.243},{"x":1750864080699,"y":13.628},{"x":1750864020257,"y":12.787},{"x":1750863962754,"y":16.157},{"x":1750863902287,"y":19.501},{"x":1750863841851,"y":34.246},{"x":1750863781450,"y":24.94},{"x":1750863720956,"y":26.787},{"x":1750863660501,"y":32.662},{"x":1750863602828,"y":29.207},{"x":1750863542375,"y":36.313},{"x":1750863481916,"y":32.815},{"x":1750863421485,"y":25.605},{"x":1750863361080,"y":12.276},{"x":1750863300637,"y":12.271},{"x":1750863240299,"y":9.45},{"x":1750863182725,"y":20.049},{"x":1750863122276,"y":31.882},{"x":1750863061855,"y":23.823},{"x":1750863001433,"y":22.162},{"x":1750862940999,"y":23.262},{"x":1750862880600,"y":18.65},{"x":1750862820160,"y":20.284},{"x":1750862762668,"y":11.863},{"x":1750862702245,"y":17.574},{"x":1750862641813,"y":19.03},{"x":1750862581409,"y":28.066},{"x":1750862520988,"y":8.503},{"x":1750862460586,"y":9.348},{"x":1750862400171,"y":7.544},{"x":1750862342635,"y":11.641},{"x":1750862282228,"y":14.726},{"x":1750862221791,"y":12.99},{"x":1750862161296,"y":32.972},{"x":1750862100872,"y":24.57},{"x":1750862040464,"y":32.967},{"x":1750861982971,"y":40.966},{"x":1750861922561,"y":25.332},{"x":1750861862142,"y":19.495},{"x":1750861801639,"y":10.34},{"x":1750861741177,"y":10.238},{"x":1750861680757,"y":40.942},{"x":1750861620394,"y":24.986},{"x":1750861562925,"y":29.6},{"x":1750861502503,"y":37.44},{"x":1750861442104,"y":32.181},{"x":1750861381665,"y":33.505},{"x":1750861321260,"y":31.192},{"x":1750861260853,"y":40.952},{"x":1750861200460,"y":21.9},{"x":1750861142853,"y":18.364},{"x":1750861082214,"y":13.598},{"x":1750861021664,"y":14.262},{"x":1750860961220,"y":10.554},{"x":1750860900735,"y":8.124},{"x":1750860840295,"y":29.818},{"x":1750860782802,"y":31.143},{"x":1750860722378,"y":32.2},{"x":1750860661921,"y":30.747},{"x":1750860601494,"y":16.742},{"x":1750860541057,"y":11.971},{"x":1750860480630,"y":21.254},{"x":1750860420189,"y":14.648},{"x":1750860362629,"y":51.421},{"x":1750860302170,"y":38.935},{"x":1750860241768,"y":31.921},{"x":1750860181321,"y":39.805},{"x":1750860120897,"y":50.636},{"x":1750860060436,"y":33.234},{"x":1750860002824,"y":25.126},{"x":1750859942417,"y":31.975},{"x":1750859881904,"y":35.576},{"x":1750859821509,"y":15.232},{"x":1750859761052,"y":6.9},{"x":1750859700649,"y":4.34},{"x":1750859643166,"y":21.888},{"x":1750859582639,"y":24.076},{"x":1750859522193,"y":31.132},{"x":1750859461766,"y":17.065},{"x":1750859401317,"y":12.795},{"x":1750859340871,"y":23.537},{"x":1750859280434,"y":28.261},{"x":1750859222846,"y":24.711},{"x":1750859162429,"y":26.243},{"x":1750859101978,"y":23.652},{"x":1750859041563,"y":36.728},{"x":1750858981127,"y":35.744},{"x":1750858920666,"y":32.291},{"x":1750858860209,"y":37.834},{"x":1750858802705,"y":30.246},{"x":1750858742290,"y":17.48},{"x":1750858681866,"y":13.862},{"x":1750858621445,"y":8.161},{"x":1750858560986,"y":7.027},{"x":1750858500515,"y":15.221},{"x":1750858442922,"y":26.765},{"x":1750858382492,"y":11.609},{"x":1750858321965,"y":12.171},{"x":1750858261548,"y":3.61},{"x":1750858201151,"y":17.653},{"x":1750858140707,"y":6.858},{"x":1750858080297,"y":3.426},{"x":1750858022782,"y":4.365},{"x":1750857962300,"y":5.789},{"x":1750857901845,"y":16.865},{"x":1750857841406,"y":15.37},{"x":1750857780931,"y":34.369},{"x":1750857720505,"y":21.369},{"x":1750857663028,"y":27.094},{"x":1750857602598,"y":12.389},{"x":1750857542115,"y":36.961},{"x":1750857481578,"y":38.488},{"x":1750857420970,"y":36.32},{"x":1750857360541,"y":16.15},{"x":1750857302989,"y":20.761},{"x":1750857242546,"y":15.098},{"x":1750857182124,"y":26.838},{"x":1750857121652,"y":33.258},{"x":1750857061164,"y":25.394},{"x":1750857000713,"y":15.977},{"x":1750856940246,"y":19.922},{"x":1750856882677,"y":18.467},{"x":1750856822241,"y":29.895},{"x":1750856761796,"y":22.901},{"x":1750856701368,"y":24.702},{"x":1750856640912,"y":36.148},{"x":1750856580465,"y":31.625},{"x":1750856522917,"y":28.203},{"x":1750856462468,"y":28.046},{"x":1750856401959,"y":22.674},{"x":1750856341447,"y":35.028},{"x":1750856280949,"y":25.621},{"x":1750856220513,"y":14.587},{"x":1750856163038,"y":15.204},{"x":1750856102557,"y":21.127},{"x":1750856042138,"y":27.525},{"x":1750855981709,"y":19.343},{"x":1750855921236,"y":24.268},{"x":1750855860712,"y":26.558},{"x":1750855800248,"y":29.693},{"x":1750855742702,"y":34.764},{"x":1750855682285,"y":20.68},{"x":1750855621834,"y":16.425},{"x":1750855561380,"y":18.317},{"x":1750855500930,"y":18.798},{"x":1750855440457,"y":27.04},{"x":1750855382899,"y":25.043},{"x":1750855322374,"y":28.808},{"x":1750855261833,"y":20.343},{"x":1750855201367,"y":26.637},{"x":1750855140887,"y":45.707},{"x":1750855080417,"y":51.551},{"x":1750855022832,"y":53.993},{"x":1750854962387,"y":46.693},{"x":1750854901909,"y":44.968},{"x":1750854841431,"y":27.055},{"x":1750854780934,"y":28.329},{"x":1750854720404,"y":27.754},{"x":1750854662807,"y":43.569},{"x":1750854602354,"y":32.939},{"x":1750854541861,"y":35.109},{"x":1750854481351,"y":41.578},{"x":1750854420897,"y":37.029},{"x":1750854360447,"y":39.431},{"x":1750854302880,"y":42.901},{"x":1750854242429,"y":37.616},{"x":1750854181979,"y":35.196},{"x":1750854121458,"y":39.147},{"x":1750854060930,"y":48.552},{"x":1750854000434,"y":43.574},{"x":1750853942772,"y":43.549},{"x":1750853882136,"y":52.39},{"x":1750853821633,"y":38.89},{"x":1750853761173,"y":34.975},{"x":1750853700724,"y":39.766},{"x":1750853640201,"y":45.069},{"x":1750853582598,"y":39.996},{"x":1750853522131,"y":33.243},{"x":1750853461597,"y":42.034},{"x":1750853401000,"y":40.947},{"x":1750853340509,"y":40.401},{"x":1750853282929,"y":33.264},{"x":1750853222408,"y":33.751},{"x":1750853161850,"y":38.579},{"x":1750853101342,"y":55.187},{"x":1750853040745,"y":34.394},{"x":1750852980237,"y":49.797},{"x":1750852922509,"y":53.498},{"x":1750852861822,"y":30.281},{"x":1750852801243,"y":25.869},{"x":1750852740366,"y":47.853},{"x":1750852682660,"y":40.509},{"x":1750852588426,"y":49.884},{"x":1750852585401,"y":53.231},{"x":1750850222536,"y":70.15},{"x":1750850162111,"y":62.856},{"x":1750850101664,"y":55.061},{"x":1750850041238,"y":49.124},{"x":1750849980830,"y":31.315},{"x":1750849920491,"y":29.393},{"x":1750849862990,"y":38.609},{"x":1750849802598,"y":37.337},{"x":1750849742183,"y":32.832},{"x":1750849681798,"y":41.019},{"x":1750849621409,"y":39.125},{"x":1750849560984,"y":34.912},{"x":1750849500600,"y":31.989},{"x":1750849443157,"y":32.191},{"x":1750849382647,"y":32.769},{"x":1750849322285,"y":42.736},{"x":1750849261890,"y":37.648},{"x":1750849201520,"y":32.222},{"x":1750849141051,"y":38.149},{"x":1750849080653,"y":38.027},{"x":1750849020283,"y":33.439},{"x":1750848962783,"y":20.389},{"x":1750848902339,"y":24.609},{"x":1750848841985,"y":25.05},{"x":1750848781594,"y":33.211},{"x":1750848721227,"y":23.208},{"x":1750848660790,"y":30.025},{"x":1750848600410,"y":29.595},{"x":1750848542925,"y":39.695},{"x":1750848482500,"y":27.378},{"x":1750848422066,"y":26.84},{"x":1750848361666,"y":25.904},{"x":1750848301295,"y":29.387},{"x":1750848240829,"y":27.841},{"x":1750848180451,"y":22.336},{"x":1750848123022,"y":39.783},{"x":1750848062645,"y":39.759},{"x":1750848002211,"y":36.937},{"x":1750847941835,"y":44.256},{"x":1750847881466,"y":38.598},{"x":1750847821075,"y":37.003},{"x":1750847760693,"y":43.496},{"x":1750847700309,"y":29.002},{"x":1750847642811,"y":23.457},{"x":1750847582447,"y":24.782},{"x":1750847522071,"y":28.937},{"x":1750847461710,"y":26.665},{"x":1750847401318,"y":20.695},{"x":1750847340926,"y":20.123},{"x":1750847280549,"y":32.571},{"x":1750847220194,"y":39.066},{"x":1750847162700,"y":35.601},{"x":1750847102358,"y":36.045},{"x":1750847041982,"y":46.634},{"x":1750846981617,"y":31.747},{"x":1750846921274,"y":26.385},{"x":1750846860772,"y":45.345},{"x":1750846800434,"y":38.591},{"x":1750846742924,"y":41.171},{"x":1750846682574,"y":39.408},{"x":1750846622188,"y":39.885},{"x":1750846561812,"y":37.273},{"x":1750846501417,"y":32.78},{"x":1750846441005,"y":33.726},{"x":1750846380634,"y":29.91},{"x":1750846320270,"y":30.06},{"x":1750846262769,"y":24.971},{"x":1750846202367,"y":21.167},{"x":1750846141984,"y":23.68},{"x":1750846081607,"y":31.517},{"x":1750846021213,"y":39.607},{"x":1750845960802,"y":26.911},{"x":1750845900419,"y":24.026},{"x":1750845842939,"y":23.454},{"x":1750845782575,"y":25.937},{"x":1750845722191,"y":26.79},{"x":1750845661797,"y":27.372},{"x":1750845601440,"y":29.175},{"x":1750845541040,"y":28.372},{"x":1750845480652,"y":28.549},{"x":1750845420305,"y":29.301},{"x":1750845362819,"y":40.331},{"x":1750845302386,"y":59.187},{"x":1750845241988,"y":57.452},{"x":1750845181644,"y":42.791},{"x":1750845121225,"y":45.49},{"x":1750845060835,"y":34.284},{"x":1750845000462,"y":32.334},{"x":1750844943007,"y":37.536},{"x":1750844882641,"y":35.704},{"x":1750844822205,"y":31.14},{"x":1750844761843,"y":31.474},{"x":1750844701488,"y":26.355},{"x":1750844641116,"y":25.134},{"x":1750844580724,"y":27.604},{"x":1750844520376,"y":36.196},{"x":1750844462898,"y":25.619},{"x":1750844402545,"y":25.003},{"x":1750844342164,"y":29.586},{"x":1750844281773,"y":41.239},{"x":1750844221400,"y":43.964},{"x":1750844160980,"y":46.196},{"x":1750844100632,"y":43.675},{"x":1750844040146,"y":37.363},{"x":1750843982726,"y":30.304},{"x":1750843922347,"y":26.748},{"x":1750843861983,"y":41.444},{"x":1750843801604,"y":34.475},{"x":1750843741185,"y":27.242},{"x":1750843680851,"y":29.858},{"x":1750843620415,"y":37.219},{"x":1750843562995,"y":25.893},{"x":1750843502638,"y":31.568},{"x":1750843442232,"y":32.96},{"x":1750843381856,"y":31.49},{"x":1750843321481,"y":34.838},{"x":1750843261120,"y":30.384},{"x":1750843200715,"y":36.135},{"x":1750843140272,"y":33.454},{"x":1750843082782,"y":34.579},{"x":1750843022397,"y":42.148},{"x":1750842962040,"y":28.335},{"x":1750842901652,"y":21.813},{"x":1750842841245,"y":19.877},{"x":1750842780839,"y":29.134},{"x":1750842720450,"y":44.995},{"x":1750842663018,"y":46.415},{"x":1750842602594,"y":35.614},{"x":1750842542229,"y":26.776},{"x":1750842481823,"y":25.272},{"x":1750842421460,"y":25.405},{"x":1750842361022,"y":43.276},{"x":1750842300656,"y":35.889},{"x":1750842240259,"y":27.606},{"x":1750842182835,"y":23.174},{"x":1750842122478,"y":31.289},{"x":1750842062102,"y":26.975},{"x":1750842001754,"y":29.594},{"x":1750841941253,"y":32.198},{"x":1750841880860,"y":28.099},{"x":1750841820445,"y":31.537},{"x":1750841762983,"y":27.193},{"x":1750841702517,"y":19.303},{"x":1750841642131,"y":20.929},{"x":1750841581775,"y":27.062},{"x":1750841521407,"y":30.822},{"x":1750841460981,"y":38.589},{"x":1750841400554,"y":31.591},{"x":1750841340145,"y":28.871},{"x":1750841282552,"y":29.982},{"x":1750841222126,"y":34.525},{"x":1750841161748,"y":24.657},{"x":1750841101363,"y":24.232},{"x":1750841040982,"y":21.381},{"x":1750840980578,"y":21.918},{"x":1750840920226,"y":34.883},{"x":1750840862765,"y":23.963},{"x":1750840802400,"y":22.844},{"x":1750840742011,"y":26.454},{"x":1750840681622,"y":23.27},{"x":1750840621233,"y":26.517},{"x":1750840560834,"y":25.667},{"x":1750840500490,"y":32.45},{"x":1750840442983,"y":41.367},{"x":1750840382588,"y":34.686},{"x":1750840322215,"y":29.57},{"x":1750840261821,"y":58.467},{"x":1750840201481,"y":52.26},{"x":1750840141093,"y":42.754},{"x":1750840080707,"y":44.957},{"x":1750840020337,"y":48.903},{"x":1750839962891,"y":42.656},{"x":1750839902523,"y":29.809},{"x":1750839842124,"y":29.712},{"x":1750839781705,"y":29.302},{"x":1750839721328,"y":23.331},{"x":1750839660930,"y":38.812},{"x":1750839600532,"y":25.867},{"x":1750839540150,"y":38.99},{"x":1750839482689,"y":33.055},{"x":1750839422332,"y":29.607},{"x":1750839361968,"y":27.79},{"x":1750839301593,"y":32.343},{"x":1750839241238,"y":29.211},{"x":1750839180869,"y":37.868},{"x":1750839120520,"y":30.009},{"x":1750839060113,"y":25.527},{"x":1750839002668,"y":35.013},{"x":1750838942292,"y":21.485},{"x":1750838881862,"y":21.569},{"x":1750838821510,"y":21.803},{"x":1750838761127,"y":25.303},{"x":1750838700758,"y":26.255},{"x":1750838640368,"y":32.324},{"x":1750838582939,"y":38.041},{"x":1750838522562,"y":36.853},{"x":1750838462192,"y":30.703},{"x":1750838401765,"y":32.845},{"x":1750838341385,"y":27.91},{"x":1750838280988,"y":32.75},{"x":1750838220617,"y":29.461},{"x":1750838160334,"y":22.959},{"x":1750838102710,"y":24.635},{"x":1750838042359,"y":27.627},{"x":1750837981962,"y":27.442},{"x":1750837921606,"y":28.423},{"x":1750837861237,"y":27.331},{"x":1750837800839,"y":36.644},{"x":1750837740459,"y":33.235},{"x":1750837682948,"y":33.463},{"x":1750837622485,"y":28.184},{"x":1750837562121,"y":41.104},{"x":1750837501743,"y":26.407},{"x":1750837441389,"y":32.068},{"x":1750837380973,"y":39.589},{"x":1750837320614,"y":34.55},{"x":1750837260248,"y":27.428},{"x":1750837202800,"y":30.601},{"x":1750837142404,"y":30.548},{"x":1750837082045,"y":30.532},{"x":1750837021665,"y":31.232},{"x":1750836961303,"y":26.666},{"x":1750836900886,"y":29.685},{"x":1750836840538,"y":36.758},{"x":1750836780134,"y":37.373},{"x":1750836722795,"y":37.498},{"x":1750836662441,"y":40.97},{"x":1750836602062,"y":35.48},{"x":1750836541699,"y":38.966},{"x":1750836481338,"y":27.078},{"x":1750836420928,"y":30.668},{"x":1750836360528,"y":43.51},{"x":1750836300151,"y":43.313},{"x":1750836242757,"y":37.395},{"x":1750836182396,"y":33.592},{"x":1750836121980,"y":31.535},{"x":1750836061613,"y":33.762},{"x":1750836001236,"y":29.907},{"x":1750835940812,"y":32.534},{"x":1750835880450,"y":33.421},{"x":1750835822960,"y":40.742},{"x":1750835762607,"y":34.476},{"x":1750835702225,"y":34.033},{"x":1750835641839,"y":33.113},{"x":1750835581470,"y":29.859},{"x":1750835521084,"y":31.821},{"x":1750835460712,"y":41.958},{"x":1750835400258,"y":34.787},{"x":1750835342811,"y":39.113},{"x":1750835282427,"y":34.1},{"x":1750835222090,"y":28.371},{"x":1750835161690,"y":30.345},{"x":1750835101322,"y":26.075},{"x":1750835040948,"y":41.051},{"x":1750834980577,"y":42.938},{"x":1750834920240,"y":42.595},{"x":1750834862759,"y":31.433},{"x":1750834802381,"y":49.061},{"x":1750834741980,"y":27.341},{"x":1750834681622,"y":36.054},{"x":1750834621218,"y":30.927},{"x":1750834560768,"y":27.509},{"x":1750834500301,"y":28.023},{"x":1750834442836,"y":26.231},{"x":1750834382477,"y":25.302},{"x":1750834322091,"y":30.536},{"x":1750834261717,"y":31.431},{"x":1750834201292,"y":29.568},{"x":1750834140898,"y":29.267},{"x":1750834080393,"y":26.069},{"x":1750834022889,"y":18.865},{"x":1750833962518,"y":23.964},{"x":1750833902154,"y":33.554},{"x":1750833841789,"y":22.695},{"x":1750833781408,"y":18.593},{"x":1750833721020,"y":17.253},{"x":1750833660631,"y":36.825},{"x":1750833600256,"y":29.214},{"x":1750833542757,"y":28.9},{"x":1750833482389,"y":35.546},{"x":1750833421989,"y":47.228},{"x":1750833361608,"y":29.92},{"x":1750833301257,"y":26.384},{"x":1750833240838,"y":28.025},{"x":1750833180512,"y":35.083},{"x":1750833123044,"y":24.775},{"x":1750833062657,"y":27.332},{"x":1750833002296,"y":22.814},{"x":1750832941937,"y":31.765},{"x":1750832881590,"y":28.243},{"x":1750832821200,"y":30.806},{"x":1750832760833,"y":38.924},{"x":1750832700431,"y":54.208},{"x":1750832642963,"y":44.871},{"x":1750832582590,"y":57.233},{"x":1750832522197,"y":41.881},{"x":1750832461792,"y":52.87},{"x":1750832401398,"y":56.017},{"x":1750832341028,"y":37.219},{"x":1750832280649,"y":38.361},{"x":1750832220332,"y":35.777},{"x":1750832162762,"y":26.488},{"x":1750832102396,"y":37.654},{"x":1750832041996,"y":43.051},{"x":1750831981634,"y":34.926},{"x":1750831921235,"y":35.235},{"x":1750831860762,"y":28.893},{"x":1750831800412,"y":33.213},{"x":1750831742927,"y":49.316},{"x":1750831682560,"y":31.717},{"x":1750831622124,"y":44.049},{"x":1750831561724,"y":43.651},{"x":1750831501385,"y":27.049},{"x":1750831441004,"y":22.644},{"x":1750831380644,"y":31.073},{"x":1750831320242,"y":33.764},{"x":1750831262807,"y":20.967},{"x":1750831202422,"y":22.673},{"x":1750831142004,"y":16.913},{"x":1750831081605,"y":19.968},{"x":1750831021225,"y":22.009},{"x":1750830960817,"y":31.496},{"x":1750830900392,"y":27.752},{"x":1750830842879,"y":27.568},{"x":1750830782499,"y":23.348},{"x":1750830722138,"y":28.794},{"x":1750830661737,"y":23.879},{"x":1750830601347,"y":20.838},{"x":1750830540950,"y":19.096},{"x":1750830480471,"y":21.251},{"x":1750830422942,"y":31.816},{"x":1750830362590,"y":19.134},{"x":1750830302214,"y":22.927},{"x":1750830241826,"y":19.9},{"x":1750830181472,"y":22.037},{"x":1750830121107,"y":29.393},{"x":1750830060713,"y":26.523},{"x":1750830000299,"y":21.22},{"x":1750829942785,"y":19.976},{"x":1750829882394,"y":20.207},{"x":1750829822042,"y":21.409},{"x":1750829761674,"y":20.836},{"x":1750829701292,"y":25.54},{"x":1750829640928,"y":23.289},{"x":1750829580548,"y":22.706},{"x":1750829520189,"y":27.119},{"x":1750829462696,"y":23.093},{"x":1750829402329,"y":22.485},{"x":1750829341945,"y":26.357},{"x":1750829281523,"y":30.785},{"x":1750829221096,"y":40.322},{"x":1750829160718,"y":40.216},{"x":1750829100417,"y":42.714},{"x":1750829042875,"y":44.128},{"x":1750828982457,"y":35.42},{"x":1750828921997,"y":27.382},{"x":1750828861653,"y":23.713},{"x":1750828801220,"y":23.499},{"x":1750828740844,"y":27.11},{"x":1750828680518,"y":25.153},{"x":1750828620125,"y":30.276},{"x":1750828562695,"y":42.434},{"x":1750828502301,"y":39.588},{"x":1750828441912,"y":37.358},{"x":1750828381569,"y":37.165},{"x":1750828321205,"y":23.303},{"x":1750828260793,"y":23.48},{"x":1750828200432,"y":21.836},{"x":1750828142943,"y":21.554},{"x":1750828082552,"y":24.242},{"x":1750828022205,"y":35.686},{"x":1750827961751,"y":30.976},{"x":1750827901366,"y":30.005},{"x":1750827840980,"y":29.349},{"x":1750827780629,"y":28.223},{"x":1750827720248,"y":40.059},{"x":1750827662797,"y":34.894},{"x":1750827602394,"y":33.461},{"x":1750827541973,"y":36.455},{"x":1750827481587,"y":33.135},{"x":1750827421230,"y":22.969},{"x":1750827360830,"y":23.216},{"x":1750827300397,"y":22.434},{"x":1750827242963,"y":24.706},{"x":1750827182597,"y":23.568},{"x":1750827122186,"y":24.627},{"x":1750827061804,"y":27.204},{"x":1750827001431,"y":26.896},{"x":1750826941082,"y":24.571},{"x":1750826880606,"y":29.902},{"x":1750826822987,"y":23.977},{"x":1750826762604,"y":23.943},{"x":1750826702250,"y":28.222},{"x":1750826641867,"y":28.631},{"x":1750826581485,"y":27.024},{"x":1750826521125,"y":26.165},{"x":1750826460752,"y":27.317},{"x":1750826400394,"y":28.423},{"x":1750826342924,"y":25.122},{"x":1750826282535,"y":24.391},{"x":1750826222179,"y":24.07},{"x":1750826161755,"y":23.346},{"x":1750826101398,"y":26.272},{"x":1750826041028,"y":25.804},{"x":1750825980661,"y":32.413},{"x":1750825920277,"y":34.898},{"x":1750825862781,"y":32.686},{"x":1750825802416,"y":33.161},{"x":1750825742040,"y":36.079},{"x":1750825681675,"y":31.269},{"x":1750825621290,"y":29.787},{"x":1750825560934,"y":23.916},{"x":1750825500559,"y":23.931},{"x":1750825440205,"y":29.472},{"x":1750825382743,"y":26.525},{"x":1750825322382,"y":23.956},{"x":1750825262012,"y":23.375},{"x":1750825201598,"y":28.013},{"x":1750825141220,"y":27.494},{"x":1750825080830,"y":29.956},{"x":1750825020447,"y":23.033},{"x":1750824962994,"y":25.068},{"x":1750824902628,"y":24.07},{"x":1750824842275,"y":24.642},{"x":1750824781775,"y":27.156},{"x":1750824721411,"y":24.167},{"x":1750824661027,"y":45.506},{"x":1750824600640,"y":62.527},{"x":1750824540249,"y":50.458},{"x":1750824482791,"y":53.137},{"x":1750824422400,"y":54.539},{"x":1750824362012,"y":28.286},{"x":1750824301627,"y":27.653},{"x":1750824241235,"y":25.024},{"x":1750824180830,"y":25.242},{"x":1750824120498,"y":30.972},{"x":1750824063002,"y":47.158},{"x":1750824002497,"y":47.184},{"x":1750823942130,"y":46.354},{"x":1750823881751,"y":47.326},{"x":1750823821395,"y":47.764},{"x":1750823761017,"y":30.562},{"x":1750823700630,"y":28.57},{"x":1750823640265,"y":28.24},{"x":1750823582769,"y":25.736},{"x":1750823522399,"y":25.844},{"x":1750823462022,"y":28.702},{"x":1750823401634,"y":25.63},{"x":1750823341278,"y":25.669},{"x":1750823280852,"y":28.216},{"x":1750823220386,"y":26.931},{"x":1750823162958,"y":32.272},{"x":1750823102584,"y":31.173},{"x":1750823042198,"y":32.09},{"x":1750822981796,"y":31.682},{"x":1750822921426,"y":30.552},{"x":1750822861007,"y":33.407},{"x":1750822800629,"y":33.255},{"x":1750822740163,"y":29.449},{"x":1750822682733,"y":26.6},{"x":1750822622347,"y":28.003},{"x":1750822561974,"y":25.089},{"x":1750822501615,"y":33.061},{"x":1750822441219,"y":33.614},{"x":1750822380829,"y":31.622},{"x":1750822320453,"y":34.466},{"x":1750822262963,"y":34.843},{"x":1750822202563,"y":35.775},{"x":1750822142196,"y":39.202},{"x":1750822081801,"y":34.497},{"x":1750822021429,"y":35.311},{"x":1750821961058,"y":24.505},{"x":1750821900682,"y":26.025},{"x":1750821840277,"y":30.185},{"x":1750821782799,"y":27.163},{"x":1750821722423,"y":26.274},{"x":1750821662009,"y":28.91},{"x":1750821601619,"y":29.602},{"x":1750821541201,"y":29.121},{"x":1750821480792,"y":27.068},{"x":1750821420404,"y":26.85},{"x":1750821362856,"y":26.286},{"x":1750821302486,"y":26.571},{"x":1750821242112,"y":29.156},{"x":1750821181710,"y":37.791},{"x":1750821121336,"y":38.196},{"x":1750821060922,"y":35.857},{"x":1750821000553,"y":39.113},{"x":1750820940163,"y":42.499},{"x":1750820882693,"y":31.182},{"x":1750820822318,"y":26.539},{"x":1750820761908,"y":33.084},{"x":1750820701532,"y":25.697},{"x":1750820643150,"y":28.932},{"x":1750820580679,"y":39.354},{"x":1750820520461,"y":53.802},{"x":1750820462744,"y":46.658},{"x":1750820402747,"y":44.855},{"x":1750820342306,"y":44.245},{"x":1750820281875,"y":27.034},{"x":1750820221479,"y":27.33},{"x":1750820161050,"y":24.231},{"x":1750820100573,"y":32.98},{"x":1750820040119,"y":37.92},{"x":1750819982703,"y":34.684},{"x":1750819922339,"y":34.188},{"x":1750819861946,"y":30.955},{"x":1750819801597,"y":31.599},{"x":1750819741219,"y":30.044},{"x":1750819680765,"y":27.124},{"x":1750819620263,"y":27.057},{"x":1750819562849,"y":31.848},{"x":1750819502435,"y":28.758},{"x":1750819442038,"y":24.38},{"x":1750819381626,"y":25.256},{"x":1750819321269,"y":32.581},{"x":1750819260880,"y":27.271},{"x":1750819200429,"y":28.431},{"x":1750819142985,"y":27.321},{"x":1750819082578,"y":33.046},{"x":1750819022213,"y":34.19},{"x":1750818961805,"y":36.545},{"x":1750818901434,"y":38.874},{"x":1750818841056,"y":30.88},{"x":1750818780671,"y":25.335},{"x":1750818720265,"y":27.64},{"x":1750818662769,"y":29.217},{"x":1750818602406,"y":31.705},{"x":1750818541970,"y":29.701},{"x":1750818481623,"y":26.296},{"x":1750818421197,"y":25.97},{"x":1750818360760,"y":25.6},{"x":1750818300465,"y":25.053},{"x":1750818242948,"y":24.594},{"x":1750818182586,"y":23.076},{"x":1750818122160,"y":26.848},{"x":1750818061750,"y":26.762},{"x":1750818001338,"y":35.347},{"x":1750817940928,"y":41.702},{"x":1750817880518,"y":37.648},{"x":1750817820113,"y":36.081},{"x":1750817762653,"y":34.859},{"x":1750817702240,"y":30.295},{"x":1750817641858,"y":26.296},{"x":1750817581411,"y":36.978},{"x":1750817520993,"y":35.675},{"x":1750817460561,"y":35.081},{"x":1750817400181,"y":47.267},{"x":1750817342741,"y":46.058},{"x":1750817282343,"y":36.359},{"x":1750817221972,"y":40.591},{"x":1750817161606,"y":37.606},{"x":1750817101268,"y":37.008},{"x":1750817040901,"y":35.432},{"x":1750816980550,"y":37.065},{"x":1750816920150,"y":35.955},{"x":1750816862686,"y":30.814},{"x":1750816802282,"y":31.703},{"x":1750816741864,"y":26.193},{"x":1750816681490,"y":25.612},{"x":1750816621063,"y":25.137},{"x":1750816560686,"y":29.13},{"x":1750816500276,"y":26.692},{"x":1750816442794,"y":23.761},{"x":1750816382404,"y":26.345},{"x":1750816321994,"y":32.714},{"x":1750816261626,"y":34.165},{"x":1750816201228,"y":28.638},{"x":1750816140843,"y":29.913},{"x":1750816080289,"y":35.447},{"x":1750816022790,"y":43.69},{"x":1750815962428,"y":42.632},{"x":1750815902034,"y":35.865},{"x":1750815841629,"y":32.899},{"x":1750815781253,"y":26.806},{"x":1750815720802,"y":26.432},{"x":1750815660454,"y":25.461},{"x":1750815602996,"y":30.038},{"x":1750815542552,"y":27.7},{"x":1750815482161,"y":26.602},{"x":1750815421793,"y":27.253},{"x":1750815361416,"y":30.114},{"x":1750815301036,"y":39.798},{"x":1750815240658,"y":36.118},{"x":1750815180285,"y":36.312},{"x":1750815122754,"y":35.533},{"x":1750815062373,"y":32.976},{"x":1750815001945,"y":31.152},{"x":1750814941590,"y":28.371},{"x":1750814881198,"y":29.777},{"x":1750814820790,"y":29.867},{"x":1750814760403,"y":31.056},{"x":1750814702940,"y":27.663},{"x":1750814642533,"y":32.574},{"x":1750814582141,"y":25.485},{"x":1750814521750,"y":26.451},{"x":1750814461338,"y":26.06},{"x":1750814400932,"y":28.252},{"x":1750814340548,"y":25.155},{"x":1750814280187,"y":25.538},{"x":1750814222727,"y":30.195},{"x":1750814162323,"y":28.974},{"x":1750814101944,"y":29.231},{"x":1750814041541,"y":28.397},{"x":1750813981115,"y":33.558},{"x":1750813920697,"y":26.342},{"x":1750813860298,"y":26.09},{"x":1750813802800,"y":26.469},{"x":1750813742407,"y":30.601},{"x":1750813682014,"y":31.476},{"x":1750813621615,"y":27.609},{"x":1750813561221,"y":29.817},{"x":1750813500758,"y":32.55},{"x":1750813440361,"y":34.465},{"x":1750813382883,"y":35.722},{"x":1750813322499,"y":33.009},{"x":1750813262127,"y":32.359},{"x":1750813201687,"y":27.097},{"x":1750813141238,"y":26.366},{"x":1750813080836,"y":29.552},{"x":1750813020462,"y":52.751},{"x":1750812962946,"y":50.043},{"x":1750812902505,"y":52.291},{"x":1750812842100,"y":54.712},{"x":1750812781709,"y":50.722},{"x":1750812721288,"y":30.414},{"x":1750812660887,"y":28.89},{"x":1750812600602,"y":29.156},{"x":1750812540112,"y":25.857},{"x":1750812482597,"y":25.874},{"x":1750812422118,"y":25.546},{"x":1750812361746,"y":29.554},{"x":1750812301331,"y":29.212},{"x":1750812240933,"y":28.995},{"x":1750812180563,"y":31.268},{"x":1750812120225,"y":29.936},{"x":1750812062661,"y":33.508},{"x":1750812002282,"y":28.058},{"x":1750811941915,"y":31.573},{"x":1750811881558,"y":28.47},{"x":1750811821199,"y":26.792},{"x":1750811760802,"y":28.984},{"x":1750811700422,"y":25.249},{"x":1750811642907,"y":25.08},{"x":1750811582521,"y":23.86},{"x":1750811522158,"y":37.845},{"x":1750811461774,"y":33.915},{"x":1750811401426,"y":38.771},{"x":1750811341010,"y":34.229},{"x":1750811280652,"y":36.693},{"x":1750811220245,"y":38.457},{"x":1750811162823,"y":48.31},{"x":1750811102448,"y":47.963},{"x":1750811042056,"y":50.697},{"x":1750810981678,"y":47.377},{"x":1750810921312,"y":33.596},{"x":1750810860938,"y":25.767},{"x":1750810800552,"y":22.858},{"x":1750810740122,"y":27.066},{"x":1750810682716,"y":23.733},{"x":1750810622348,"y":28.559},{"x":1750810561979,"y":27.33},{"x":1750810501584,"y":27.14},{"x":1750810441186,"y":35.708},{"x":1750810380772,"y":27.796},{"x":1750810320452,"y":27.382},{"x":1750810262923,"y":27.899},{"x":1750810202565,"y":26.457},{"x":1750810142193,"y":25.072},{"x":1750810081824,"y":24.982},{"x":1750810021460,"y":30.538},{"x":1750809961015,"y":29.209},{"x":1750809900655,"y":27.742},{"x":1750809840203,"y":35.008},{"x":1750809782751,"y":35.948},{"x":1750809722385,"y":30.088},{"x":1750809662013,"y":44.093},{"x":1750809601619,"y":35.472},{"x":1750809541167,"y":34.233},{"x":1750809480787,"y":37.628},{"x":1750809420408,"y":32.289},{"x":1750809362984,"y":28.82},{"x":1750809302510,"y":26.461},{"x":1750809242145,"y":23.579},{"x":1750809181766,"y":25.125},{"x":1750809121380,"y":26.949},{"x":1750809061016,"y":29.696},{"x":1750809000635,"y":29.604},{"x":1750808940273,"y":24.163},{"x":1750808882734,"y":27.635},{"x":1750808822262,"y":27.302},{"x":1750808761885,"y":28.654},{"x":1750808701508,"y":26.621},{"x":1750808641113,"y":26.904},{"x":1750808580682,"y":27.635},{"x":1750808520320,"y":30.49},{"x":1750808462873,"y":28.818},{"x":1750808402500,"y":27.011},{"x":1750808342113,"y":23.23},{"x":1750808281746,"y":32.469},{"x":1750808221393,"y":31.427},{"x":1750808161000,"y":32.183},{"x":1750808100645,"y":34.241},{"x":1750808040245,"y":25.816},{"x":1750807982769,"y":25.729},{"x":1750807922379,"y":28.815},{"x":1750807861997,"y":31.85},{"x":1750807801584,"y":27.424},{"x":1750807741204,"y":27.293},{"x":1750807680840,"y":26.836},{"x":1750807620431,"y":36.01},{"x":1750807562977,"y":42.698},{"x":1750807502620,"y":34.461},{"x":1750807442252,"y":37.965},{"x":1750807381871,"y":37.246},{"x":1750807321509,"y":29.067},{"x":1750807261143,"y":26.207},{"x":1750807200764,"y":23.751},{"x":1750807140388,"y":26.981},{"x":1750807082935,"y":24.328},{"x":1750807022567,"y":31.658},{"x":1750806962188,"y":46.419},{"x":1750806901794,"y":49.228},{"x":1750806841433,"y":47.739},{"x":1750806781017,"y":49.313},{"x":1750806720639,"y":38.442},{"x":1750806660127,"y":27.811},{"x":1750806602660,"y":29.845},{"x":1750806542244,"y":27.163},{"x":1750806481850,"y":26.151},{"x":1750806421419,"y":27.201},{"x":1750806361045,"y":26.103},{"x":1750806300615,"y":29.075},{"x":1750806240151,"y":27.894},{"x":1750806182683,"y":28.355},{"x":1750806122287,"y":29.826},{"x":1750806061905,"y":35.407},{"x":1750806001378,"y":35.56},{"x":1750805940887,"y":36.903},{"x":1750805880488,"y":35.489},{"x":1750805820106,"y":33.002},{"x":1750805762702,"y":23.798},{"x":1750805702220,"y":30.298},{"x":1750805641840,"y":30.796},{"x":1750805581442,"y":27.198},{"x":1750805521064,"y":23.886},{"x":1750805460681,"y":30.03},{"x":1750805400320,"y":29.866},{"x":1750805342783,"y":31.885},{"x":1750805282246,"y":28.266},{"x":1750805221803,"y":31.891},{"x":1750805161395,"y":29.53},{"x":1750805100921,"y":33.747},{"x":1750805040528,"y":30.346},{"x":1750804980117,"y":30.571},{"x":1750804922678,"y":26.519},{"x":1750804862312,"y":28.375},{"x":1750804801914,"y":37.348},{"x":1750804741519,"y":36.411},{"x":1750804681160,"y":40.368},{"x":1750804620756,"y":35.022},{"x":1750804560381,"y":37.012},{"x":1750804502872,"y":34.417},{"x":1750804442536,"y":39.494},{"x":1750804382100,"y":34.909},{"x":1750804321720,"y":33.228},{"x":1750804261346,"y":26.21},{"x":1750804200948,"y":25.913},{"x":1750804140541,"y":23.676},{"x":1750804080212,"y":27.165},{"x":1750804022646,"y":30.378},{"x":1750803962229,"y":26.37},{"x":1750803901807,"y":29.476},{"x":1750803841440,"y":25.313},{"x":1750803781025,"y":35.085},{"x":1750803720658,"y":38.773},{"x":1750803660207,"y":50.362},{"x":1750803602666,"y":48.028},{"x":1750803542286,"y":47.409},{"x":1750803481915,"y":49.055},{"x":1750803421549,"y":52.504},{"x":1750803361170,"y":36.854},{"x":1750803300763,"y":37.441},{"x":1750803240373,"y":39.744},{"x":1750803182787,"y":29.876},{"x":1750803122349,"y":30.277},{"x":1750803061881,"y":29.999},{"x":1750803001490,"y":29.548},{"x":1750802941075,"y":29.101},{"x":1750802880670,"y":27.745},{"x":1750802820310,"y":30.245},{"x":1750802762792,"y":26.873},{"x":1750802702403,"y":27.926},{"x":1750802642020,"y":26.596},{"x":1750802581612,"y":36.075},{"x":1750802521235,"y":33.013},{"x":1750802460863,"y":40.252},{"x":1750802400340,"y":36.683},{"x":1750802342722,"y":33.282},{"x":1750802282313,"y":32.596},{"x":1750802221929,"y":31.903},{"x":1750802161557,"y":31.699},{"x":1750802101111,"y":31.455},{"x":1750802040724,"y":28.008},{"x":1750801980421,"y":31.209},{"x":1750801922878,"y":27.525},{"x":1750801862430,"y":27.44},{"x":1750801802056,"y":27.924},{"x":1750801741652,"y":33.167},{"x":1750801681137,"y":33.255},{"x":1750801620739,"y":32.958},{"x":1750801560381,"y":30.535},{"x":1750801502832,"y":27.821},{"x":1750801442465,"y":37.638},{"x":1750801382069,"y":36.664},{"x":1750801321616,"y":34.028},{"x":1750801261237,"y":34.062},{"x":1750801200789,"y":33.941},{"x":1750801140367,"y":31.358},{"x":1750801082967,"y":28.403},{"x":1750801022550,"y":26.36},{"x":1750800962113,"y":33.143},{"x":1750800901700,"y":29.749},{"x":1750800841316,"y":31.897},{"x":1750800780830,"y":30.803},{"x":1750800720434,"y":33.12},{"x":1750800662982,"y":31.158},{"x":1750800602555,"y":24.954},{"x":1750800542205,"y":28.834},{"x":1750800481771,"y":28.639},{"x":1750800421412,"y":29.393},{"x":1750800361020,"y":31.378},{"x":1750800300626,"y":31.036},{"x":1750800240168,"y":43.238},{"x":1750800182600,"y":46.451},{"x":1750800122221,"y":41.316},{"x":1750800061805,"y":46.837},{"x":1750800001434,"y":43.817},{"x":1750799941053,"y":32.83},{"x":1750799880641,"y":29.929},{"x":1750799820247,"y":34.684},{"x":1750799762734,"y":32.121},{"x":1750799702327,"y":30.493},{"x":1750799641960,"y":32.942},{"x":1750799581525,"y":38.455},{"x":1750799521159,"y":33.473},{"x":1750799460685,"y":31.534},{"x":1750799400337,"y":32.819},{"x":1750799342844,"y":34.296},{"x":1750799282454,"y":37.411},{"x":1750799222033,"y":33.68},{"x":1750799161651,"y":33.836},{"x":1750799101277,"y":32.663},{"x":1750799040842,"y":38.827},{"x":1750798980452,"y":47.229},{"x":1750798922941,"y":59.82},{"x":1750798862561,"y":60.026},{"x":1750798802162,"y":58.93},{"x":1750798741739,"y":58.987},{"x":1750798681377,"y":39.209},{"x":1750798620929,"y":34.802},{"x":1750798560546,"y":37.737},{"x":1750798503012,"y":36.306},{"x":1750798442642,"y":37.799},{"x":1750798382231,"y":37.394},{"x":1750798321836,"y":41.646},{"x":1750798261350,"y":40.974},{"x":1750798200877,"y":35.007},{"x":1750798140517,"y":33.469},{"x":1750798080069,"y":37.26},{"x":1750798022581,"y":41.677},{"x":1750797962164,"y":36.31},{"x":1750797901790,"y":34.232},{"x":1750797841412,"y":38.509},{"x":1750797781016,"y":43.977},{"x":1750797720577,"y":40.882},{"x":1750797660332,"y":38.446},{"x":1750797602702,"y":38.713},{"x":1750797542292,"y":46.139},{"x":1750797481901,"y":52.337},{"x":1750797421509,"y":37.96},{"x":1750797361099,"y":44.117},{"x":1750797300700,"y":53.423},{"x":1750797240315,"y":50.987},{"x":1750797182851,"y":44.311},{"x":1750797122411,"y":55.67},{"x":1750797061994,"y":50.79},{"x":1750797001617,"y":51.652},{"x":1750796941226,"y":50.625},{"x":1750796880799,"y":50.916},{"x":1750796820432,"y":42.8},{"x":1750796762836,"y":42.402},{"x":1750796702443,"y":37.844},{"x":1750796642073,"y":45.683},{"x":1750796581647,"y":36.108},{"x":1750796521222,"y":46.119},{"x":1750796460765,"y":40.047},{"x":1750796400413,"y":41.228},{"x":1750796342891,"y":39.143},{"x":1750796282514,"y":36.771},{"x":1750796222118,"y":37.661},{"x":1750796161699,"y":39.003},{"x":1750796101306,"y":40.143},{"x":1750796040854,"y":36.569},{"x":1750795980431,"y":39.34},{"x":1750795922926,"y":41.942},{"x":1750795862481,"y":51.859},{"x":1750795802080,"y":42.838},{"x":1750795741657,"y":44.535},{"x":1750795681274,"y":39.675},{"x":1750795620867,"y":41.235},{"x":1750795560509,"y":39.06},{"x":1750795500101,"y":49.937},{"x":1750795442684,"y":43.032},{"x":1750795382308,"y":46.186},{"x":1750795321896,"y":53.077},{"x":1750795261519,"y":45.992},{"x":1750795201177,"y":38.955},{"x":1750795140617,"y":38.137},{"x":1750795080236,"y":36.519},{"x":1750795022762,"y":43.845},{"x":1750794962379,"y":44.536},{"x":1750794901966,"y":38.776},{"x":1750794841586,"y":42.452},{"x":1750794781216,"y":40.737},{"x":1750794720802,"y":50.225},{"x":1750794660419,"y":40.238},{"x":1750794602869,"y":39.662},{"x":1750794542494,"y":39.277},{"x":1750794482077,"y":37.12},{"x":1750794421579,"y":52.862},{"x":1750794361203,"y":37.809},{"x":1750794300834,"y":38.589},{"x":1750794240395,"y":38.512},{"x":1750794182944,"y":37.824},{"x":1750794122565,"y":51.4},{"x":1750794062185,"y":50.832},{"x":1750794001807,"y":37.391},{"x":1750793941387,"y":38.411},{"x":1750793880996,"y":37.38},{"x":1750793820601,"y":46.206},{"x":1750793760161,"y":49.846},{"x":1750793702664,"y":53.842},{"x":1750793642286,"y":49.412},{"x":1750793581894,"y":54.563},{"x":1750793521530,"y":57.222},{"x":1750793461155,"y":42.533},{"x":1750793400791,"y":44.441},{"x":1750793340432,"y":37.528},{"x":1750793282952,"y":35.224},{"x":1750793222557,"y":41.342},{"x":1750793162196,"y":57.781},{"x":1750793101816,"y":46.985},{"x":1750793041456,"y":44.042},{"x":1750792981086,"y":43.261},{"x":1750792920671,"y":49.229},{"x":1750792860327,"y":32.799},{"x":1750792802831,"y":38.616},{"x":1750792742439,"y":39.191},{"x":1750792682059,"y":39.903},{"x":1750792621681,"y":39.33},{"x":1750792561283,"y":40.813},{"x":1750792500931,"y":35.249},{"x":1750792440550,"y":31.0},{"x":1750792380160,"y":31.123},{"x":1750792322747,"y":34.383},{"x":1750792262373,"y":34.861},{"x":1750792201965,"y":40.123},{"x":1750792141597,"y":37.113},{"x":1750792081199,"y":64.374},{"x":1750792020822,"y":58.409},{"x":1750791960429,"y":53.003},{"x":1750791902992,"y":52.034},{"x":1750791842628,"y":58.927},{"x":1750791782228,"y":38.351},{"x":1750791721861,"y":37.177},{"x":1750791661482,"y":34.583},{"x":1750791601112,"y":37.425},{"x":1750791540648,"y":46.605},{"x":1750791480292,"y":33.794},{"x":1750791422739,"y":37.83},{"x":1750791362385,"y":51.495},{"x":1750791301934,"y":36.82},{"x":1750791241569,"y":33.304},{"x":1750791181195,"y":44.055},{"x":1750791120806,"y":36.615},{"x":1750791060436,"y":43.389},{"x":1750791002974,"y":35.47},{"x":1750790942611,"y":41.673},{"x":1750790882194,"y":40.342},{"x":1750790821730,"y":43.148},{"x":1750790761312,"y":45.93},{"x":1750790700946,"y":52.278},{"x":1750790640561,"y":64.607},{"x":1750790580109,"y":51.21},{"x":1750790522647,"y":40.643},{"x":1750790462240,"y":41.509},{"x":1750790401864,"y":38.651},{"x":1750790341492,"y":43.457},{"x":1750790281131,"y":37.522},{"x":1750790220763,"y":54.152},{"x":1750790160398,"y":52.046},{"x":1750790102933,"y":49.989},{"x":1750790042511,"y":49.404},{"x":1750789982139,"y":37.008},{"x":1750789921748,"y":29.542},{"x":1750789861371,"y":33.672},{"x":1750789800982,"y":31.652},{"x":1750789740641,"y":44.644},{"x":1750789680239,"y":43.514},{"x":1750789622735,"y":44.806},{"x":1750789562334,"y":39.149},{"x":1750789501936,"y":44.382},{"x":1750789441539,"y":30.665},{"x":1750789381096,"y":47.201},{"x":1750789320743,"y":26.963},{"x":1750789260370,"y":26.028},{"x":1750789202933,"y":41.848},{"x":1750789142550,"y":44.371},{"x":1750789082175,"y":34.998},{"x":1750789021783,"y":36.992},{"x":1750788961387,"y":41.526},{"x":1750788901031,"y":38.27},{"x":1750788840634,"y":32.391},{"x":1750788780284,"y":32.339},{"x":1750788722727,"y":30.942},{"x":1750788662359,"y":47.002},{"x":1750788601933,"y":52.245},{"x":1750788541556,"y":30.71},{"x":1750788481194,"y":34.997},{"x":1750788420777,"y":30.21},{"x":1750788360445,"y":31.422},{"x":1750788302947,"y":28.837},{"x":1750788242565,"y":26.562},{"x":1750788182175,"y":41.17},{"x":1750788121795,"y":35.456},{"x":1750788061439,"y":48.664},{"x":1750788001235,"y":58.287},{"x":1750787940664,"y":47.24},{"x":1750787880258,"y":51.795},{"x":1750787822789,"y":42.31},{"x":1750787762420,"y":24.756},{"x":1750787702020,"y":25.583},{"x":1750787641632,"y":32.172},{"x":1750787581271,"y":40.691},{"x":1750787520872,"y":51.228},{"x":1750787460518,"y":51.494},{"x":1750787402991,"y":52.43},{"x":1750787342606,"y":47.835},{"x":1750787282131,"y":50.176},{"x":1750787221705,"y":49.83},{"x":1750787161345,"y":51.767},{"x":1750787100944,"y":45.514},{"x":1750787040576,"y":44.59},{"x":1750786980165,"y":56.64},{"x":1750786922745,"y":33.7},{"x":1750786862337,"y":30.053},{"x":1750786801972,"y":27.322},{"x":1750786741614,"y":30.227},{"x":1750786681258,"y":32.239},{"x":1750786620886,"y":30.435},{"x":1750786560513,"y":24.362},{"x":1750786503003,"y":24.998},{"x":1750786442579,"y":21.545},{"x":1750786382207,"y":23.124},{"x":1750786321767,"y":21.911},{"x":1750786261381,"y":22.643},{"x":1750786201029,"y":23.436},{"x":1750786140572,"y":22.506},{"x":1750786080251,"y":39.138},{"x":1750786022702,"y":33.469},{"x":1750785962331,"y":40.368},{"x":1750785901922,"y":28.664},{"x":1750785841579,"y":25.222},{"x":1750785781205,"y":24.151},{"x":1750785720794,"y":23.148},{"x":1750785660473,"y":29.342},{"x":1750785602951,"y":35.386},{"x":1750785542646,"y":25.309},{"x":1750785482311,"y":29.879},{"x":1750785421919,"y":29.822},{"x":1750785361527,"y":33.683},{"x":1750785301179,"y":28.03},{"x":1750785240782,"y":30.698},{"x":1750785180370,"y":26.213},{"x":1750785122943,"y":21.452},{"x":1750785062558,"y":32.952},{"x":1750785002195,"y":22.345},{"x":1750784941815,"y":21.01},{"x":1750784881459,"y":26.767},{"x":1750784821049,"y":38.254},{"x":1750784760692,"y":44.175},{"x":1750784700349,"y":41.874},{"x":1750784642851,"y":45.467},{"x":1750784582449,"y":46.141},{"x":1750784522034,"y":25.712},{"x":1750784461663,"y":27.4},{"x":1750784401297,"y":21.811},{"x":1750784340795,"y":21.485},{"x":1750784280396,"y":18.093},{"x":1750784222949,"y":28.819},{"x":1750784162568,"y":22.6},{"x":1750784102131,"y":19.469},{"x":1750784041761,"y":20.289},{"x":1750783981357,"y":23.646},{"x":1750783920958,"y":18.601},{"x":1750783860566,"y":24.367},{"x":1750783800196,"y":28.466},{"x":1750783742746,"y":28.975},{"x":1750783682361,"y":27.595},{"x":1750783621912,"y":31.152},{"x":1750783561540,"y":33.737},{"x":1750783501192,"y":29.165},{"x":1750783440781,"y":35.148},{"x":1750783380415,"y":38.431},{"x":1750783323037,"y":37.701},{"x":1750783262658,"y":24.603},{"x":1750783202256,"y":25.681},{"x":1750783141878,"y":23.953},{"x":1750783081510,"y":19.868},{"x":1750783021143,"y":27.066},{"x":1750782960737,"y":23.875},{"x":1750782900385,"y":39.091},{"x":1750782842901,"y":34.252},{"x":1750782782505,"y":26.319},{"x":1750782722109,"y":30.653},{"x":1750782661726,"y":30.696},{"x":1750782601374,"y":33.312},{"x":1750782540959,"y":33.251},{"x":1750782480577,"y":24.715},{"x":1750782420144,"y":40.149},{"x":1750782362714,"y":31.699},{"x":1750782302361,"y":31.751},{"x":1750782241919,"y":33.507},{"x":1750782181528,"y":25.604},{"x":1750782121105,"y":32.541},{"x":1750782060686,"y":30.434},{"x":1750782000430,"y":18.465},{"x":1750781942844,"y":26.594},{"x":1750781882479,"y":13.771},{"x":1750781822072,"y":18.753},{"x":1750781761652,"y":15.835},{"x":1750781701276,"y":16.199},{"x":1750781640887,"y":27.817},{"x":1750781580493,"y":26.061},{"x":1750781523019,"y":22.338},{"x":1750781462611,"y":22.175},{"x":1750781402235,"y":34.098},{"x":1750781341869,"y":26.877},{"x":1750781281508,"y":25.222},{"x":1750781221101,"y":18.96},{"x":1750781160688,"y":36.885},{"x":1750781100334,"y":22.652},{"x":1750781042783,"y":28.664},{"x":1750780982419,"y":25.466},{"x":1750780922059,"y":30.015},{"x":1750780861661,"y":20.041},{"x":1750780801314,"y":30.151},{"x":1750780740839,"y":35.249},{"x":1750780680467,"y":21.345},{"x":1750780623016,"y":16.298},{"x":1750780562641,"y":27.9},{"x":1750780502194,"y":24.378},{"x":1750780441792,"y":30.424},{"x":1750780381407,"y":29.572},{"x":1750780320995,"y":42.956},{"x":1750780260617,"y":49.084},{"x":1750780200353,"y":31.141},{"x":1750780142804,"y":22.751},{"x":1750780082360,"y":31.902},{"x":1750780021909,"y":32.203},{"x":1750779961533,"y":25.874},{"x":1750779901164,"y":23.98},{"x":1750779840786,"y":25.791},{"x":1750779780383,"y":24.351},{"x":1750779722919,"y":17.113},{"x":1750779662514,"y":18.193},{"x":1750779602116,"y":21.533},{"x":1750779541732,"y":32.977},{"x":1750779481369,"y":24.436},{"x":1750779420976,"y":24.466},{"x":1750779360629,"y":35.029},{"x":1750779300213,"y":34.405},{"x":1750779242755,"y":20.796},{"x":1750779182389,"y":40.086},{"x":1750779121985,"y":36.506},{"x":1750779061601,"y":31.714},{"x":1750779001229,"y":36.574},{"x":1750778940830,"y":33.327},{"x":1750778880429,"y":28.125},{"x":1750778822973,"y":18.323},{"x":1750778762618,"y":28.852},{"x":1750778702260,"y":32.136},{"x":1750778641857,"y":32.806},{"x":1750778581480,"y":31.403},{"x":1750778521101,"y":33.724},{"x":1750778460755,"y":41.755},{"x":1750778400374,"y":32.259},{"x":1750778342919,"y":46.924},{"x":1750778282524,"y":24.976},{"x":1750778222123,"y":27.954},{"x":1750778161732,"y":30.607},{"x":1750778101329,"y":38.337},{"x":1750778040935,"y":42.833},{"x":1750777980560,"y":36.632},{"x":1750777920160,"y":37.664},{"x":1750777862733,"y":25.713},{"x":1750777802342,"y":26.507},{"x":1750777741959,"y":19.583},{"x":1750777681602,"y":17.823},{"x":1750777621218,"y":10.332},{"x":1750777560828,"y":25.342},{"x":1750777500454,"y":25.569},{"x":1750777442982,"y":19.225},{"x":1750777382614,"y":16.334},{"x":1750777322227,"y":22.763},{"x":1750777261866,"y":18.129},{"x":1750777201481,"y":30.849},{"x":1750777141023,"y":22.716},{"x":1750777080631,"y":29.059},{"x":1750777020256,"y":18.857},{"x":1750776962792,"y":21.817},{"x":1750776902365,"y":35.994},{"x":1750776841945,"y":31.193},{"x":1750776781567,"y":29.377},{"x":1750776721176,"y":23.412},{"x":1750776660737,"y":22.612},{"x":1750776600376,"y":24.343},{"x":1750776542914,"y":17.689},{"x":1750776482516,"y":50.315},{"x":1750776422048,"y":47.888},{"x":1750776361690,"y":42.06},{"x":1750776301312,"y":51.522},{"x":1750776240942,"y":49.539},{"x":1750776180550,"y":29.137},{"x":1750776123067,"y":28.375},{"x":1750776062640,"y":30.809},{"x":1750776002254,"y":22.544},{"x":1750775941868,"y":22.473},{"x":1750775881480,"y":21.619},{"x":1750775821095,"y":26.174},{"x":1750775760689,"y":28.683},{"x":1750775700303,"y":21.901},{"x":1750775642845,"y":23.806},{"x":1750775582480,"y":24.686},{"x":1750775522120,"y":29.344},{"x":1750775461739,"y":25.268},{"x":1750775401392,"y":29.687},{"x":1750775340966,"y":39.603},{"x":1750775280627,"y":44.894},{"x":1750775220190,"y":23.797},{"x":1750775162710,"y":27.742},{"x":1750775102334,"y":39.039},{"x":1750775041946,"y":29.033},{"x":1750774981609,"y":26.122},{"x":1750774921240,"y":22.915},{"x":1750774860874,"y":28.966},{"x":1750774800443,"y":27.585},{"x":1750774742905,"y":27.209},{"x":1750774682547,"y":22.895},{"x":1750774622178,"y":30.691},{"x":1750774561800,"y":30.282},{"x":1750774501429,"y":27.099},{"x":1750774441043,"y":31.315},{"x":1750774380656,"y":30.564},{"x":1750774320291,"y":33.695},{"x":1750774262754,"y":28.063},{"x":1750774202388,"y":36.08},{"x":1750774141931,"y":36.115},{"x":1750774081579,"y":26.275},{"x":1750774021204,"y":32.585},{"x":1750773960822,"y":33.777},{"x":1750773900452,"y":39.968},{"x":1750773842964,"y":29.877},{"x":1750773782595,"y":41.375},{"x":1750773722189,"y":31.386},{"x":1750773661800,"y":36.309},{"x":1750773601453,"y":23.092},{"x":1750773541065,"y":45.404},{"x":1750773480686,"y":47.819},{"x":1750773420356,"y":63.732},{"x":1750773362858,"y":49.91},{"x":1750773302472,"y":51.032},{"x":1750773242090,"y":33.095},{"x":1750773181712,"y":40.448},{"x":1750773121332,"y":22.955},{"x":1750773060954,"y":37.858},{"x":1750773000615,"y":44.113},{"x":1750772940207,"y":33.565},{"x":1750772882718,"y":32.377},{"x":1750772822242,"y":20.089},{"x":1750772761845,"y":23.658},{"x":1750772701464,"y":29.963},{"x":1750772641123,"y":29.585},{"x":1750772580745,"y":35.895},{"x":1750772520455,"y":50.502},{"x":1750772462839,"y":31.612},{"x":1750772402474,"y":43.682},{"x":1750772342037,"y":29.702},{"x":1750772281639,"y":32.466},{"x":1750772221273,"y":29.944},{"x":1750772160848,"y":31.269},{"x":1750772100486,"y":35.261},{"x":1750772043035,"y":35.599},{"x":1750771982668,"y":26.681},{"x":1750771922274,"y":24.773},{"x":1750771861923,"y":20.343},{"x":1750771801593,"y":23.37},{"x":1750771741187,"y":25.774},{"x":1750771680801,"y":42.444},{"x":1750771620425,"y":30.503},{"x":1750771562985,"y":35.328},{"x":1750771502627,"y":53.317},{"x":1750771442283,"y":38.535},{"x":1750771381882,"y":55.277},{"x":1750771321537,"y":50.086},{"x":1750771261204,"y":57.604},{"x":1750771200797,"y":60.484},{"x":1750771140411,"y":60.356},{"x":1750771082938,"y":37.675},{"x":1750771022562,"y":41.588},{"x":1750770962176,"y":39.794},{"x":1750770901825,"y":37.396},{"x":1750770841428,"y":34.985},{"x":1750770781058,"y":47.941},{"x":1750770720681,"y":34.492},{"x":1750770660229,"y":45.545},{"x":1750770602774,"y":35.619},{"x":1750770542406,"y":33.989},{"x":1750770482030,"y":51.385},{"x":1750770421634,"y":45.225},{"x":1750770361251,"y":54.642},{"x":1750770300861,"y":42.214},{"x":1750770240530,"y":45.911},{"x":1750770183057,"y":71.7},{"x":1750770122623,"y":38.905},{"x":1750770062235,"y":37.733},{"x":1750770001856,"y":29.977},{"x":1750769941452,"y":33.528},{"x":1750769881098,"y":42.946},{"x":1750769820699,"y":30.386},{"x":1750769760300,"y":33.864},{"x":1750769702742,"y":28.188},{"x":1750769642348,"y":31.039},{"x":1750769581967,"y":29.05},{"x":1750769521615,"y":28.94},{"x":1750769461217,"y":24.443},{"x":1750769400818,"y":29.461},{"x":1750769340433,"y":26.381},{"x":1750769282972,"y":27.263},{"x":1750769222547,"y":23.888},{"x":1750769162199,"y":28.771},{"x":1750769101823,"y":25.708},{"x":1750769041418,"y":20.639},{"x":1750768981052,"y":29.514},{"x":1750768920654,"y":29.833},{"x":1750768860271,"y":28.165},{"x":1750768802789,"y":29.373},{"x":1750768742438,"y":30.005},{"x":1750768682079,"y":36.502},{"x":1750768621700,"y":44.349},{"x":1750768561320,"y":42.04},{"x":1750768500948,"y":44.006},{"x":1750768440551,"y":60.041},{"x":1750768380152,"y":35.042},{"x":1750768322734,"y":46.213},{"x":1750768262376,"y":41.592},{"x":1750768201997,"y":52.009},{"x":1750768141647,"y":46.97},{"x":1750768081287,"y":30.706},{"x":1750768020843,"y":30.027},{"x":1750767960491,"y":26.24},{"x":1750767902984,"y":29.471},{"x":1750767842575,"y":30.453},{"x":1750767782209,"y":35.201},{"x":1750767721800,"y":34.012},{"x":1750767661410,"y":42.341},{"x":1750767600997,"y":41.92},{"x":1750767540596,"y":54.976},{"x":1750767480245,"y":53.491},{"x":1750767422747,"y":52.632},{"x":1750767362344,"y":47.369},{"x":1750767301924,"y":44.178},{"x":1750767241564,"y":25.677},{"x":1750767181194,"y":28.912},{"x":1750767120796,"y":34.535},{"x":1750767060405,"y":40.795},{"x":1750767002920,"y":43.272},{"x":1750766942562,"y":42.89},{"x":1750766882157,"y":36.643},{"x":1750766821734,"y":36.271},{"x":1750766761296,"y":47.13},{"x":1750766700926,"y":55.765},{"x":1750766640576,"y":59.184},{"x":1750766580180,"y":52.703},{"x":1750766522713,"y":48.598},{"x":1750766462310,"y":34.094},{"x":1750766402034,"y":33.34},{"x":1750766341534,"y":33.003},{"x":1750766281127,"y":37.941},{"x":1750766220727,"y":38.813},{"x":1750766160358,"y":40.46},{"x":1750766102816,"y":34.3},{"x":1750766042390,"y":32.938},{"x":1750765982027,"y":39.545},{"x":1750765921667,"y":44.455},{"x":1750765861289,"y":58.335},{"x":1750765800896,"y":49.671},{"x":1750765740521,"y":41.544},{"x":1750765683053,"y":33.436},{"x":1750765622618,"y":37.712},{"x":1750765562245,"y":59.265},{"x":1750765501848,"y":59.262},{"x":1750765441496,"y":61.834},{"x":1750765381080,"y":63.939},{"x":1750765320690,"y":59.322},{"x":1750765260306,"y":37.494},{"x":1750765202804,"y":41.467},{"x":1750765142388,"y":37.543},{"x":1750765082024,"y":47.015},{"x":1750765021662,"y":50.123},{"x":1750764961263,"y":53.586},{"x":1750764900874,"y":53.664},{"x":1750764840493,"y":45.288},{"x":1750764783012,"y":44.206},{"x":1750764722618,"y":37.039},{"x":1750764662246,"y":41.613},{"x":1750764601897,"y":45.349},{"x":1750764541531,"y":40.261},{"x":1750764481179,"y":40.655},{"x":1750764420768,"y":37.345},{"x":1750764360388,"y":37.784},{"x":1750764302933,"y":50.021},{"x":1750764242552,"y":40.027},{"x":1750764182186,"y":43.586},{"x":1750764121814,"y":33.534},{"x":1750764061385,"y":34.224},{"x":1750764000986,"y":37.972},{"x":1750763940613,"y":35.82},{"x":1750763880255,"y":41.447},{"x":1750763822778,"y":45.977},{"x":1750763762364,"y":48.839},{"x":1750763701993,"y":37.766},{"x":1750763641633,"y":37.752},{"x":1750763581280,"y":33.682},{"x":1750763520911,"y":39.282},{"x":1750763460517,"y":38.969},{"x":1750763403124,"y":44.152},{"x":1750763342625,"y":35.977},{"x":1750763282295,"y":43.69},{"x":1750763221914,"y":44.912},{"x":1750763161568,"y":39.25},{"x":1750763101223,"y":43.965},{"x":1750763040796,"y":47.804},{"x":1750762980462,"y":47.895},{"x":1750762923050,"y":40.806},{"x":1750762862628,"y":46.948},{"x":1750762802303,"y":49.782},{"x":1750762741859,"y":52.334},{"x":1750762681498,"y":48.713},{"x":1750762621148,"y":53.601},{"x":1750762560768,"y":39.4},{"x":1750762500424,"y":52.326},{"x":1750762442933,"y":44.262},{"x":1750762382570,"y":42.474},{"x":1750762322235,"y":47.646},{"x":1750762261872,"y":52.509},{"x":1750762201514,"y":36.256},{"x":1750762141138,"y":36.273},{"x":1750762080620,"y":24.8},{"x":1750762020114,"y":31.291},{"x":1750761962690,"y":33.806},{"x":1750761902318,"y":44.695},{"x":1750761841927,"y":30.446},{"x":1750761781535,"y":34.091},{"x":1750761721185,"y":33.484},{"x":1750761660814,"y":32.983},{"x":1750761600441,"y":40.374},{"x":1750761542938,"y":58.531},{"x":1750761482582,"y":39.503},{"x":1750761422233,"y":50.878},{"x":1750761361881,"y":59.222},{"x":1750761301530,"y":48.381},{"x":1750761241190,"y":48.092},{"x":1750761180797,"y":36.158},{"x":1750761120428,"y":29.559},{"x":1750761062955,"y":37.971},{"x":1750761002619,"y":29.512},{"x":1750760942218,"y":27.501},{"x":1750760881859,"y":30.746},{"x":1750760821503,"y":61.51},{"x":1750760761132,"y":71.59},{"x":1750760700728,"y":59.196},{"x":1750760640354,"y":56.785},{"x":1750760582922,"y":65.654},{"x":1750760522551,"y":33.938},{"x":1750760462172,"y":31.327},{"x":1750760401744,"y":32.188},{"x":1750760341397,"y":32.202},{"x":1750760281035,"y":26.362},{"x":1750760220676,"y":30.476},{"x":1750760160265,"y":25.855},{"x":1750760102791,"y":33.299},{"x":1750760042457,"y":34.35},{"x":1750759982082,"y":34.51},{"x":1750759921728,"y":35.238},{"x":1750759861295,"y":39.722},{"x":1750759800912,"y":29.844},{"x":1750759740493,"y":25.503},{"x":1750759683114,"y":24.925},{"x":1750759622661,"y":28.082},{"x":1750759562303,"y":25.097},{"x":1750759501965,"y":22.9},{"x":1750759441590,"y":33.848},{"x":1750759381227,"y":21.09},{"x":1750759320804,"y":24.775},{"x":1750759260427,"y":22.076},{"x":1750759203028,"y":28.708},{"x":1750759142652,"y":23.114},{"x":1750759082245,"y":26.636},{"x":1750759021897,"y":30.018},{"x":1750758961518,"y":41.702},{"x":1750758901101,"y":35.011},{"x":1750758840720,"y":37.636},{"x":1750758780377,"y":40.471},{"x":1750758722846,"y":30.536},{"x":1750758662477,"y":18.541},{"x":1750758602115,"y":33.641},{"x":1750758541699,"y":30.346},{"x":1750758481266,"y":23.618},{"x":1750758420698,"y":24.83},{"x":1750758360390,"y":24.342},{"x":1750758302894,"y":28.921},{"x":1750758242481,"y":28.79},{"x":1750758182134,"y":27.409},{"x":1750758121743,"y":20.448},{"x":1750758061382,"y":18.315},{"x":1750758000970,"y":17.339},{"x":1750757940565,"y":16.748},{"x":1750757880189,"y":16.167},{"x":1750757822767,"y":9.415},{"x":1750757762400,"y":14.763},{"x":1750757701995,"y":24.334},{"x":1750757641663,"y":28.547},{"x":1750757581277,"y":30.376},{"x":1750757520891,"y":24.601},{"x":1750757460487,"y":33.146},{"x":1750757400116,"y":39.156},{"x":1750757342680,"y":31.074},{"x":1750757282330,"y":32.865},{"x":1750757221977,"y":33.004},{"x":1750757161597,"y":32.595},{"x":1750757101258,"y":26.089},{"x":1750757040859,"y":32.774},{"x":1750756980515,"y":25.989},{"x":1750756920169,"y":32.093},{"x":1750756862759,"y":38.402},{"x":1750756802422,"y":51.387},{"x":1750756742077,"y":48.19},{"x":1750756681715,"y":49.336},{"x":1750756621360,"y":47.101},{"x":1750756560972,"y":35.857},{"x":1750756500660,"y":24.174},{"x":1750756440252,"y":23.663},{"x":1750756382803,"y":22.043},{"x":1750756322469,"y":29.947},{"x":1750756262100,"y":22.494},{"x":1750756201726,"y":22.144},{"x":1750756141334,"y":20.304},{"x":1750756080965,"y":16.78},{"x":1750756020572,"y":22.252},{"x":1750755960164,"y":19.361},{"x":1750755902737,"y":28.992},{"x":1750755842369,"y":32.016},{"x":1750755781967,"y":27.921},{"x":1750755721602,"y":24.433},{"x":1750755661238,"y":24.621},{"x":1750755600919,"y":27.096},{"x":1750755540341,"y":33.63},{"x":1750755482872,"y":29.078},{"x":1750755422522,"y":34.588},{"x":1750755362175,"y":36.585},{"x":1750755301774,"y":32.844},{"x":1750755241426,"y":32.848},{"x":1750755181034,"y":37.142},{"x":1750755120689,"y":27.289},{"x":1750755060293,"y":23.253},{"x":1750755002828,"y":26.949},{"x":1750754942452,"y":39.277},{"x":1750754881977,"y":33.448},{"x":1750754821507,"y":24.046},{"x":1750754761127,"y":25.05},{"x":1750754700728,"y":26.567},{"x":1750754640368,"y":26.858},{"x":1750754582899,"y":30.2},{"x":1750754522536,"y":28.96},{"x":1750754462175,"y":24.351},{"x":1750754401754,"y":36.015},{"x":1750754341401,"y":25.236},{"x":1750754281032,"y":23.108},{"x":1750754220674,"y":28.068},{"x":1750754160312,"y":22.957},{"x":1750754102845,"y":20.226},{"x":1750754042468,"y":22.356},{"x":1750753982107,"y":28.385},{"x":1750753921722,"y":23.374},{"x":1750753861369,"y":28.829},{"x":1750753800985,"y":32.605},{"x":1750753740554,"y":32.223},{"x":1750753680120,"y":27.608},{"x":1750753622720,"y":36.48},{"x":1750753562347,"y":32.036},{"x":1750753501933,"y":31.848},{"x":1750753441570,"y":35.522},{"x":1750753381177,"y":37.713},{"x":1750753320784,"y":43.192},{"x":1750753260354,"y":34.619},{"x":1750753202785,"y":30.051},{"x":1750753142424,"y":29.987},{"x":1750753082051,"y":35.859},{"x":1750753021694,"y":34.106},{"x":1750752961319,"y":36.907},{"x":1750752900967,"y":23.3},{"x":1750752840588,"y":34.946},{"x":1750752780201,"y":22.734},{"x":1750752722743,"y":24.22},{"x":1750752662365,"y":17.791},{"x":1750752601993,"y":15.132},{"x":1750752541595,"y":17.119},{"x":1750752481211,"y":26.344},{"x":1750752420786,"y":26.399},{"x":1750752360452,"y":23.606},{"x":1750752302955,"y":25.854},{"x":1750752242571,"y":16.581},{"x":1750752182200,"y":14.108},{"x":1750752121779,"y":24.839},{"x":1750752061398,"y":24.919},{"x":1750752001055,"y":37.35},{"x":1750751940602,"y":58.93},{"x":1750751880170,"y":32.709},{"x":1750751822745,"y":28.273},{"x":1750751762396,"y":36.541},{"x":1750751701990,"y":25.828},{"x":1750751641582,"y":28.468},{"x":1750751581208,"y":24.282},{"x":1750751520816,"y":22.884},{"x":1750751460422,"y":28.806},{"x":1750751402966,"y":45.622},{"x":1750751342565,"y":54.983},{"x":1750751282153,"y":48.81},{"x":1750751221636,"y":46.531},{"x":1750751161287,"y":46.671},{"x":1750751100896,"y":22.317},{"x":1750751040489,"y":17.481},{"x":1750750980035,"y":28.878},{"x":1750750922684,"y":22.869},{"x":1750750862282,"y":16.466},{"x":1750750801914,"y":21.349},{"x":1750750741579,"y":21.292},{"x":1750750681201,"y":23.448},{"x":1750750620809,"y":27.046},{"x":1750750560455,"y":28.836},{"x":1750750503006,"y":40.442},{"x":1750750442616,"y":36.43},{"x":1750750382251,"y":34.321},{"x":1750750321906,"y":24.565},{"x":1750750261533,"y":18.343},{"x":1750750201175,"y":46.447},{"x":1750750140775,"y":47.289},{"x":1750750080417,"y":49.742},{"x":1750750022968,"y":52.625},{"x":1750749962619,"y":67.528},{"x":1750749902265,"y":54.26},{"x":1750749841903,"y":48.621},{"x":1750749781546,"y":52.355},{"x":1750749721174,"y":52.972},{"x":1750749660793,"y":49.207},{"x":1750749600465,"y":51.03},{"x":1750749543008,"y":51.721},{"x":1750749482604,"y":60.664},{"x":1750749422252,"y":48.759},{"x":1750749361879,"y":29.583},{"x":1750749301540,"y":47.728},{"x":1750749241177,"y":40.382},{"x":1750749180777,"y":42.262},{"x":1750749120455,"y":37.055},{"x":1750749062936,"y":47.851},{"x":1750749002581,"y":30.626},{"x":1750748942191,"y":29.066},{"x":1750748881823,"y":43.377},{"x":1750748821449,"y":37.603},{"x":1750748761059,"y":31.766},{"x":1750748700656,"y":30.609},{"x":1750748640258,"y":30.0},{"x":1750748582771,"y":28.977},{"x":1750748522413,"y":28.879},{"x":1750748462057,"y":27.06},{"x":1750748401679,"y":29.152},{"x":1750748341252,"y":30.61},{"x":1750748280844,"y":28.999},{"x":1750748220469,"y":27.188},{"x":1750748162991,"y":31.549},{"x":1750748102598,"y":24.868},{"x":1750748042190,"y":25.149},{"x":1750747981803,"y":18.885},{"x":1750747921420,"y":23.826},{"x":1750747860988,"y":34.338},{"x":1750747800593,"y":44.005},{"x":1750747740180,"y":36.827},{"x":1750747682658,"y":31.035},{"x":1750747622206,"y":31.538},{"x":1750747561804,"y":25.345},{"x":1750747501440,"y":38.928},{"x":1750747441052,"y":29.326},{"x":1750747380657,"y":37.088},{"x":1750747320251,"y":29.716},{"x":1750747262800,"y":43.792},{"x":1750747202380,"y":57.224},{"x":1750747141958,"y":47.438},{"x":1750747081588,"y":53.434},{"x":1750747021198,"y":51.376},{"x":1750746960811,"y":31.82},{"x":1750746900419,"y":34.212},{"x":1750746842977,"y":41.392},{"x":1750746782602,"y":30.09},{"x":1750746722200,"y":38.603},{"x":1750746661840,"y":41.427},{"x":1750746601472,"y":56.846},{"x":1750746541075,"y":51.682},{"x":1750746480696,"y":55.101},{"x":1750746420252,"y":77.074},{"x":1750746362760,"y":66.527},{"x":1750746302356,"y":54.458},{"x":1750746241957,"y":41.015},{"x":1750746181577,"y":51.998},{"x":1750746121199,"y":35.06},{"x":1750746060811,"y":39.794},{"x":1750746000456,"y":33.46},{"x":1750745942937,"y":44.279},{"x":1750745882533,"y":28.632},{"x":1750745822160,"y":25.873},{"x":1750745761853,"y":18.891},{"x":1750745701364,"y":20.248},{"x":1750745640980,"y":37.979},{"x":1750745580583,"y":35.829},{"x":1750745520164,"y":36.812},{"x":1750745462668,"y":29.099},{"x":1750745402266,"y":23.679},{"x":1750745341871,"y":23.759},{"x":1750745281486,"y":26.826},{"x":1750745221126,"y":23.463},{"x":1750745160740,"y":23.907},{"x":1750745100359,"y":22.412},{"x":1750745042850,"y":21.425},{"x":1750744982471,"y":35.249},{"x":1750744922103,"y":32.983},{"x":1750744861709,"y":31.828},{"x":1750744801335,"y":32.439},{"x":1750744740894,"y":35.138},{"x":1750744680514,"y":24.09},{"x":1750744620088,"y":26.387},{"x":1750744562649,"y":25.84},{"x":1750744502225,"y":24.933},{"x":1750744441824,"y":30.35},{"x":1750744381465,"y":24.43},{"x":1750744321071,"y":28.894},{"x":1750744260691,"y":27.118},{"x":1750744200324,"y":27.377},{"x":1750744142808,"y":31.977},{"x":1750744082412,"y":32.734},{"x":1750744021924,"y":36.579},{"x":1750743961568,"y":34.663},{"x":1750743901182,"y":31.504},{"x":1750743840767,"y":23.315},{"x":1750743780403,"y":40.688},{"x":1750743723024,"y":36.11},{"x":1750743662638,"y":35.58},{"x":1750743602229,"y":35.224},{"x":1750743541860,"y":35.948},{"x":1750743481481,"y":25.248},{"x":1750743421111,"y":26.152},{"x":1750743360757,"y":32.977},{"x":1750743300415,"y":31.809},{"x":1750743242965,"y":34.068},{"x":1750743182619,"y":34.067},{"x":1750743122270,"y":35.145},{"x":1750743061890,"y":29.401},{"x":1750743001514,"y":25.101},{"x":1750742941106,"y":24.244},{"x":1750742880733,"y":22.177},{"x":1750742820350,"y":23.995},{"x":1750742762942,"y":24.619},{"x":1750742702576,"y":23.818},{"x":1750742642194,"y":23.793},{"x":1750742581829,"y":24.933},{"x":1750742521433,"y":25.4},{"x":1750742461066,"y":23.8},{"x":1750742400652,"y":25.423},{"x":1750742340263,"y":36.75},{"x":1750742282875,"y":29.946},{"x":1750742222484,"y":27.662},{"x":1750742162141,"y":29.756},{"x":1750742101802,"y":26.089},{"x":1750742041463,"y":25.243},{"x":1750741981089,"y":31.419},{"x":1750741920720,"y":23.729},{"x":1750741860350,"y":24.486},{"x":1750741802853,"y":27.521},{"x":1750741742492,"y":22.464},{"x":1750741682091,"y":23.149},{"x":1750741621704,"y":28.795},{"x":1750741561325,"y":24.035},{"x":1750741500953,"y":25.651},{"x":1750741440575,"y":25.127},{"x":1750741380224,"y":27.878},{"x":1750741322727,"y":28.131},{"x":1750741262373,"y":31.724},{"x":1750741202044,"y":25.616},{"x":1750741141604,"y":25.096},{"x":1750741081211,"y":22.917},{"x":1750741020793,"y":22.306},{"x":1750740960422,"y":45.914},{"x":1750740902919,"y":50.854},{"x":1750740842566,"y":47.408},{"x":1750740782178,"y":48.277},{"x":1750740721819,"y":45.455},{"x":1750740661418,"y":24.771},{"x":1750740601037,"y":26.923},{"x":1750740540693,"y":29.505},{"x":1750740480248,"y":25.267},{"x":1750740422768,"y":26.015},{"x":1750740362409,"y":24.2},{"x":1750740302048,"y":24.813},{"x":1750740241697,"y":27.018},{"x":1750740181312,"y":27.779},{"x":1750740120949,"y":24.705},{"x":1750740060607,"y":30.529},{"x":1750740000231,"y":24.437},{"x":1750739942749,"y":35.514},{"x":1750739882370,"y":41.134},{"x":1750739821968,"y":45.161},{"x":1750739761630,"y":39.032},{"x":1750739701197,"y":39.852},{"x":1750739640783,"y":30.485},{"x":1750739580433,"y":21.514},{"x":1750739522916,"y":21.328},{"x":1750739462565,"y":30.873},{"x":1750739402197,"y":28.883},{"x":1750739341830,"y":31.418},{"x":1750739281480,"y":28.455},{"x":1750739221127,"y":36.862},{"x":1750739160741,"y":36.869},{"x":1750739100334,"y":39.139},{"x":1750739042831,"y":33.884},{"x":1750738982455,"y":35.933},{"x":1750738922091,"y":26.533},{"x":1750738861715,"y":25.61},{"x":1750738801354,"y":24.963},{"x":1750738740985,"y":36.095},{"x":1750738680607,"y":28.364},{"x":1750738620259,"y":28.555},{"x":1750738562804,"y":27.014},{"x":1750738502409,"y":26.941},{"x":1750738442025,"y":26.178},{"x":1750738381639,"y":27.719},{"x":1750738321295,"y":25.001},{"x":1750738260929,"y":25.328},{"x":1750738200574,"y":22.261},{"x":1750738140163,"y":23.959},{"x":1750738082700,"y":27.553},{"x":1750738022354,"y":33.105},{"x":1750737961919,"y":31.257},{"x":1750737901542,"y":30.569},{"x":1750737841171,"y":31.8},{"x":1750737780781,"y":31.572},{"x":1750737720431,"y":28.779},{"x":1750737663030,"y":27.787},{"x":1750737602540,"y":31.836},{"x":1750737542140,"y":29.223},{"x":1750737481785,"y":31.539},{"x":1750737421428,"y":31.157},{"x":1750737361072,"y":29.605},{"x":1750737300654,"y":31.082},{"x":1750737240273,"y":29.322},{"x":1750737182840,"y":29.26},{"x":1750737122484,"y":39.292},{"x":1750737062119,"y":53.936},{"x":1750737001740,"y":51.014},{"x":1750736941397,"y":46.484},{"x":1750736880933,"y":47.758},{"x":1750736820515,"y":39.133},{"x":1750736760140,"y":27.961},{"x":1750736702702,"y":28.733},{"x":1750736642321,"y":32.062},{"x":1750736581969,"y":30.598},{"x":1750736521625,"y":28.171},{"x":1750736461263,"y":34.731},{"x":1750736400871,"y":33.515},{"x":1750736340519,"y":36.199},{"x":1750736280160,"y":36.801},{"x":1750736222670,"y":28.307},{"x":1750736162304,"y":27.931},{"x":1750736101959,"y":26.802},{"x":1750736041583,"y":24.711},{"x":1750735981175,"y":27.784},{"x":1750735920798,"y":32.072},{"x":1750735860422,"y":28.408},{"x":1750735802999,"y":27.853},{"x":1750735742647,"y":37.833},{"x":1750735682264,"y":41.088},{"x":1750735621893,"y":42.05},{"x":1750735561542,"y":39.842},{"x":1750735501183,"y":37.253},{"x":1750735440789,"y":36.446},{"x":1750735380414,"y":43.734},{"x":1750735323010,"y":43.231},{"x":1750735262647,"y":46.12},{"x":1750735202303,"y":49.247},{"x":1750735141903,"y":35.409},{"x":1750735081513,"y":32.39},{"x":1750735021100,"y":29.991},{"x":1750734960691,"y":29.661},{"x":1750734900335,"y":27.184},{"x":1750734842827,"y":28.898},{"x":1750734782468,"y":26.249},{"x":1750734722103,"y":27.029},{"x":1750734661701,"y":26.288},{"x":1750734601332,"y":26.864},{"x":1750734540953,"y":25.388},{"x":1750734480581,"y":27.012},{"x":1750734420255,"y":29.007},{"x":1750734362797,"y":28.509},{"x":1750734302435,"y":29.367},{"x":1750734242751,"y":32.082},{"x":1750734182769,"y":26.85},{"x":1750734121120,"y":25.247},{"x":1750734060569,"y":31.56},{"x":1750734001485,"y":26.169},{"x":1750733941057,"y":34.145},{"x":1750733880687,"y":37.772},{"x":1750733820317,"y":35.413},{"x":1750733762880,"y":39.999},{"x":1750733702462,"y":40.79},{"x":1750733642119,"y":29.657},{"x":1750733581749,"y":28.574},{"x":1750733521406,"y":26.747},{"x":1750733460962,"y":29.713},{"x":1750733400613,"y":31.603},{"x":1750733340285,"y":28.183},{"x":1750733282752,"y":25.361},{"x":1750733222308,"y":23.971},{"x":1750733161899,"y":28.085},{"x":1750733101551,"y":29.784},{"x":1750733041199,"y":28.915},{"x":1750732980829,"y":27.699},{"x":1750732920483,"y":29.97},{"x":1750732860190,"y":29.848},{"x":1750732802699,"y":26.072},{"x":1750732742354,"y":29.277},{"x":1750732682008,"y":23.422},{"x":1750732621632,"y":24.472},{"x":1750732561257,"y":24.16},{"x":1750732500874,"y":24.87},{"x":1750732440535,"y":36.133},{"x":1750732380186,"y":35.758},{"x":1750732322727,"y":39.442},{"x":1750732262379,"y":41.634},{"x":1750732201975,"y":39.419},{"x":1750732141601,"y":28.361},{"x":1750732081254,"y":28.701},{"x":1750732020870,"y":31.273},{"x":1750731960501,"y":25.837},{"x":1750731900137,"y":26.681},{"x":1750731842744,"y":34.773},{"x":1750731782396,"y":47.082},{"x":1750731722029,"y":49.184},{"x":1750731661697,"y":51.279},{"x":1750731601354,"y":50.878},{"x":1750731540959,"y":41.646},{"x":1750731480604,"y":28.504},{"x":1750731420234,"y":26.594},{"x":1750731362859,"y":27.677},{"x":1750731302472,"y":24.898},{"x":1750731242107,"y":24.931},{"x":1750731181734,"y":27.025},{"x":1750731121386,"y":25.568},{"x":1750731061028,"y":22.607},{"x":1750731000613,"y":26.164},{"x":1750730940220,"y":25.102},{"x":1750730882774,"y":28.952},{"x":1750730822416,"y":31.973},{"x":1750730762056,"y":31.922},{"x":1750730701689,"y":30.01},{"x":1750730641350,"y":30.387},{"x":1750730580950,"y":26.306},{"x":1750730520603,"y":25.867},{"x":1750730460151,"y":26.127},{"x":1750730402733,"y":26.673},{"x":1750730342345,"y":25.044},{"x":1750730281960,"y":29.151},{"x":1750730221608,"y":29.708},{"x":1750730161269,"y":25.459},{"x":1750730100835,"y":29.394},{"x":1750730040492,"y":31.163},{"x":1750729980123,"y":30.357},{"x":1750729922672,"y":29.029},{"x":1750729862310,"y":32.136},{"x":1750729801941,"y":29.095},{"x":1750729741594,"y":24.224},{"x":1750729681085,"y":30.444},{"x":1750729620691,"y":47.179},{"x":1750729560324,"y":45.834},{"x":1750729502929,"y":49.977},{"x":1750729442568,"y":48.65},{"x":1750729382226,"y":50.548},{"x":1750729321894,"y":31.084},{"x":1750729261541,"y":29.597},{"x":1750729201196,"y":27.558},{"x":1750729140804,"y":28.825},{"x":1750729080443,"y":28.902},{"x":1750729020099,"y":26.205},{"x":1750728962689,"y":47.487},{"x":1750728902340,"y":45.744},{"x":1750728841980,"y":45.375},{"x":1750728781621,"y":48.149},{"x":1750728721267,"y":53.872},{"x":1750728660898,"y":29.152},{"x":1750728600547,"y":27.241},{"x":1750728540168,"y":28.272},{"x":1750728482704,"y":25.686},{"x":1750728422340,"y":25.436},{"x":1750728361960,"y":25.579},{"x":1750728301614,"y":26.753},{"x":1750728241275,"y":25.355},{"x":1750728180888,"y":26.45},{"x":1750728120532,"y":32.504},{"x":1750728060154,"y":29.596},{"x":1750728002698,"y":31.405},{"x":1750727942348,"y":29.376},{"x":1750727881944,"y":26.616},{"x":1750727821583,"y":33.645},{"x":1750727761236,"y":38.193},{"x":1750727700850,"y":36.969},{"x":1750727640384,"y":34.602},{"x":1750727582936,"y":34.121},{"x":1750727522606,"y":31.661},{"x":1750727462250,"y":29.629},{"x":1750727401857,"y":33.647},{"x":1750727341462,"y":28.492},{"x":1750727281089,"y":28.435},{"x":1750727220719,"y":27.451},{"x":1750727160336,"y":29.811},{"x":1750727102798,"y":26.711},{"x":1750727042416,"y":27.706},{"x":1750726982042,"y":28.98},{"x":1750726921652,"y":28.092},{"x":1750726861294,"y":26.912},{"x":1750726800884,"y":31.59},{"x":1750726740435,"y":27.257},{"x":1750726682962,"y":26.947},{"x":1750726622604,"y":37.387},{"x":1750726562230,"y":33.823},{"x":1750726501825,"y":30.793},{"x":1750726441441,"y":30.4},{"x":1750726381067,"y":28.293},{"x":1750726320685,"y":26.948},{"x":1750726260318,"y":29.454},{"x":1750726202879,"y":25.207},{"x":1750726142519,"y":28.364},{"x":1750726082127,"y":29.538},{"x":1750726021696,"y":31.238},{"x":1750725961316,"y":27.447},{"x":1750725900920,"y":29.5},{"x":1750725840534,"y":26.266},{"x":1750725783126,"y":26.357},{"x":1750725722670,"y":26.094},{"x":1750725662316,"y":31.987},{"x":1750725601901,"y":26.732},{"x":1750725541533,"y":29.953},{"x":1750725481183,"y":25.24},{"x":1750725420795,"y":34.168},{"x":1750725360437,"y":35.123},{"x":1750725302988,"y":40.387},{"x":1750725242623,"y":44.675},{"x":1750725182273,"y":44.294},{"x":1750725121889,"y":38.351},{"x":1750725061523,"y":36.161},{"x":1750725001148,"y":34.808},{"x":1750724940767,"y":35.225},{"x":1750724880404,"y":47.247},{"x":1750724823017,"y":48.482},{"x":1750724762656,"y":48.796},{"x":1750724702315,"y":48.677},{"x":1750724641932,"y":52.158},{"x":1750724581590,"y":31.195},{"x":1750724521226,"y":29.556},{"x":1750724460835,"y":29.871},{"x":1750724400432,"y":28.407},{"x":1750724342987,"y":26.973},{"x":1750724282634,"y":25.75},{"x":1750724222291,"y":27.863},{"x":1750724161931,"y":24.712},{"x":1750724101548,"y":25.503},{"x":1750724041198,"y":31.428},{"x":1750723980801,"y":29.152},{"x":1750723920475,"y":34.857},{"x":1750723863044,"y":36.301},{"x":1750723802680,"y":28.239},{"x":1750723742320,"y":30.95},{"x":1750723681914,"y":26.473},{"x":1750723621563,"y":24.635},{"x":1750723561193,"y":29.27},{"x":1750723500800,"y":31.906},{"x":1750723440407,"y":27.022},{"x":1750723382947,"y":26.882},{"x":1750723322586,"y":29.258},{"x":1750723262218,"y":28.916},{"x":1750723201874,"y":32.083},{"x":1750723141434,"y":29.286},{"x":1750723081080,"y":27.21},{"x":1750723020700,"y":26.038},{"x":1750722960373,"y":26.933},{"x":1750722902878,"y":24.486},{"x":1750722842527,"y":27.299},{"x":1750722782140,"y":31.643},{"x":1750722721776,"y":28.357},{"x":1750722661441,"y":30.447},{"x":1750722601050,"y":41.72},{"x":1750722540699,"y":33.019},{"x":1750722480281,"y":31.249},{"x":1750722422745,"y":30.032},{"x":1750722362367,"y":27.953},{"x":1750722301999,"y":29.556},{"x":1750722241636,"y":32.58},{"x":1750722181284,"y":29.23},{"x":1750722120897,"y":24.198},{"x":1750722060508,"y":45.381},{"x":1750722000065,"y":45.86},{"x":1750721942662,"y":49.962},{"x":1750721882309,"y":51.74},{"x":1750721821931,"y":52.122},{"x":1750721761585,"y":30.215},{"x":1750721701221,"y":29.34},{"x":1750721640842,"y":28.398},{"x":1750721580507,"y":27.637},{"x":1750721520131,"y":26.746},{"x":1750721462708,"y":26.103},{"x":1750721402349,"y":24.887},{"x":1750721341995,"y":25.929},{"x":1750721281629,"y":25.006},{"x":1750721221273,"y":31.321},{"x":1750721160896,"y":31.937},{"x":1750721100538,"y":32.419},{"x":1750721040126,"y":35.081},{"x":1750720982666,"y":27.694},{"x":1750720922300,"y":33.984},{"x":1750720861827,"y":44.831},{"x":1750720801488,"y":53.632},{"x":1750720741093,"y":48.711},{"x":1750720680747,"y":44.523},{"x":1750720620394,"y":38.238},{"x":1750720562957,"y":35.475},{"x":1750720502572,"y":30.655},{"x":1750720442204,"y":34.932},{"x":1750720381828,"y":32.454},{"x":1750720321468,"y":27.816},{"x":1750720261112,"y":29.012},{"x":1750720200703,"y":29.536},{"x":1750720140348,"y":29.241},{"x":1750720082887,"y":25.229},{"x":1750720022531,"y":28.535},{"x":1750719962141,"y":25.381},{"x":1750719901773,"y":27.558},{"x":1750719841424,"y":31.591},{"x":1750719781056,"y":34.952},{"x":1750719720687,"y":36.813},{"x":1750719660288,"y":36.853},{"x":1750719602790,"y":32.904},{"x":1750719542432,"y":43.75},{"x":1750719482054,"y":49.674},{"x":1750719421652,"y":56.297},{"x":1750719361286,"y":52.655},{"x":1750719300783,"y":47.317},{"x":1750719240487,"y":38.056},{"x":1750719180092,"y":30.276},{"x":1750719122677,"y":30.155},{"x":1750719062327,"y":34.17},{"x":1750719001969,"y":31.343},{"x":1750718941613,"y":33.662},{"x":1750718881029,"y":32.485},{"x":1750718820572,"y":31.917},{"x":1750718760177,"y":33.381},{"x":1750718702688,"y":31.503},{"x":1750718642292,"y":33.239},{"x":1750718581931,"y":35.226},{"x":1750718521551,"y":34.961},{"x":1750718461140,"y":32.659},{"x":1750718400808,"y":33.373},{"x":1750718340364,"y":38.195},{"x":1750718282942,"y":38.137},{"x":1750718222585,"y":37.162},{"x":1750718162228,"y":36.431},{"x":1750718101866,"y":36.332},{"x":1750718041511,"y":26.03},{"x":1750717981158,"y":28.466},{"x":1750717920754,"y":27.722},{"x":1750717860389,"y":28.887},{"x":1750717802930,"y":29.052},{"x":1750717742567,"y":30.693},{"x":1750717682206,"y":33.368},{"x":1750717621808,"y":28.988},{"x":1750717561446,"y":28.209},{"x":1750717501076,"y":31.182},{"x":1750717440696,"y":27.167},{"x":1750717380323,"y":27.426},{"x":1750717322867,"y":32.313},{"x":1750717262516,"y":30.647},{"x":1750717202149,"y":27.18},{"x":1750717141750,"y":26.882},{"x":1750717081402,"y":29.621},{"x":1750717021023,"y":28.682},{"x":1750716960664,"y":32.571},{"x":1750716900297,"y":34.931},{"x":1750716842825,"y":35.518},{"x":1750716782474,"y":55.086},{"x":1750716722098,"y":53.283},{"x":1750716661726,"y":51.559},{"x":1750716601346,"y":50.97},{"x":1750716540971,"y":51.868},{"x":1750716480595,"y":31.14},{"x":1750716420244,"y":34.25},{"x":1750716362750,"y":29.403},{"x":1750716302388,"y":34.136},{"x":1750716242037,"y":31.157},{"x":1750716181651,"y":30.219},{"x":1750716121272,"y":27.19},{"x":1750716060759,"y":29.729},{"x":1750716000480,"y":32.614},{"x":1750715942887,"y":32.075},{"x":1750715882522,"y":28.47},{"x":1750715822156,"y":30.245},{"x":1750715761751,"y":29.061},{"x":1750715701357,"y":30.702},{"x":1750715640935,"y":32.451},{"x":1750715580566,"y":36.08},{"x":1750715520291,"y":31.451},{"x":1750715462772,"y":42.158},{"x":1750715402426,"y":44.003},{"x":1750715342003,"y":41.534},{"x":1750715281606,"y":52.364},{"x":1750715221209,"y":52.456},{"x":1750715160846,"y":39.748},{"x":1750715100464,"y":39.069},{"x":1750715043014,"y":40.985},{"x":1750714982645,"y":32.376},{"x":1750714922278,"y":34.396},{"x":1750714861910,"y":35.65},{"x":1750714801577,"y":38.449},{"x":1750714741221,"y":33.76},{"x":1750714680823,"y":31.118},{"x":1750714620480,"y":30.812},{"x":1750714560120,"y":32.678},{"x":1750714502710,"y":29.842},{"x":1750714442348,"y":29.431},{"x":1750714381989,"y":34.839},{"x":1750714321637,"y":31.878},{"x":1750714261268,"y":30.131},{"x":1750714200856,"y":36.975},{"x":1750714140478,"y":27.467},{"x":1750714080106,"y":34.013},{"x":1750714022650,"y":32.002},{"x":1750713962279,"y":34.812},{"x":1750713901907,"y":47.729},{"x":1750713841535,"y":47.194},{"x":1750713781168,"y":46.166},{"x":1750713720772,"y":46.28},{"x":1750713660427,"y":48.12},{"x":1750713602868,"y":32.433},{"x":1750713542510,"y":37.182},{"x":1750713482120,"y":29.636},{"x":1750713421742,"y":28.129},{"x":1750713361351,"y":28.304},{"x":1750713300972,"y":27.666},{"x":1750713240599,"y":30.215},{"x":1750713180195,"y":29.063},{"x":1750713122765,"y":28.733},{"x":1750713062410,"y":27.864},{"x":1750713002073,"y":29.148},{"x":1750712941676,"y":29.727},{"x":1750712881307,"y":32.831},{"x":1750712820938,"y":29.893},{"x":1750712760537,"y":30.305},{"x":1750712700144,"y":41.102},{"x":1750712642733,"y":36.452},{"x":1750712582359,"y":36.088},{"x":1750712522002,"y":41.774},{"x":1750712461630,"y":35.703},{"x":1750712401268,"y":35.08},{"x":1750712340729,"y":38.138},{"x":1750712280386,"y":40.07},{"x":1750712222894,"y":42.359},{"x":1750712162532,"y":36.607},{"x":1750712102107,"y":34.847},{"x":1750712041712,"y":35.707},{"x":1750711981356,"y":36.55},{"x":1750711920979,"y":41.574},{"x":1750711860624,"y":39.432},{"x":1750711800203,"y":32.933},{"x":1750711742723,"y":37.331},{"x":1750711682180,"y":37.944},{"x":1750711621733,"y":38.022},{"x":1750711561363,"y":39.883},{"x":1750711500968,"y":48.703},{"x":1750711440587,"y":45.829},{"x":1750711380151,"y":46.838},{"x":1750711322689,"y":49.522},{"x":1750711262331,"y":54.485},{"x":1750711201969,"y":49.415},{"x":1750711141617,"y":56.917},{"x":1750711081244,"y":66.858},{"x":1750711020824,"y":65.41},{"x":1750710960473,"y":62.801},{"x":1750710902985,"y":59.797},{"x":1750710842619,"y":40.097},{"x":1750710782240,"y":34.799},{"x":1750710721854,"y":35.239},{"x":1750710661489,"y":35.372},{"x":1750710601132,"y":36.64},{"x":1750710540730,"y":40.971},{"x":1750710480386,"y":44.876},{"x":1750710422879,"y":39.396},{"x":1750710362514,"y":43.498},{"x":1750710302141,"y":52.619},{"x":1750710241772,"y":49.297},{"x":1750710181409,"y":44.924},{"x":1750710121038,"y":46.791},{"x":1750710060647,"y":46.278},{"x":1750710000272,"y":36.57},{"x":1750709942773,"y":39.024},{"x":1750709882362,"y":44.363},{"x":1750709821965,"y":43.616},{"x":1750709761587,"y":40.349},{"x":1750709701217,"y":43.041},{"x":1750709640774,"y":43.031},{"x":1750709580405,"y":42.383},{"x":1750709522888,"y":38.242},{"x":1750709462506,"y":36.09},{"x":1750709402128,"y":38.676},{"x":1750709341716,"y":38.364},{"x":1750709281332,"y":44.091},{"x":1750709220956,"y":44.327},{"x":1750709160573,"y":39.98},{"x":1750709100176,"y":38.055},{"x":1750709042677,"y":56.957},{"x":1750708982287,"y":45.976},{"x":1750708921893,"y":41.74},{"x":1750708861525,"y":39.944},{"x":1750708801120,"y":39.746},{"x":1750708740669,"y":39.05},{"x":1750708680283,"y":41.926},{"x":1750708622811,"y":43.176},{"x":1750708562452,"y":46.489},{"x":1750708502023,"y":45.162},{"x":1750708441618,"y":40.664},{"x":1750708381252,"y":39.901},{"x":1750708320865,"y":43.963},{"x":1750708260489,"y":43.203},{"x":1750708202979,"y":43.637},{"x":1750708142618,"y":42.628},{"x":1750708082146,"y":46.198},{"x":1750708021691,"y":43.307},{"x":1750707961334,"y":38.875},{"x":1750707900976,"y":40.535},{"x":1750707840585,"y":43.033},{"x":1750707780122,"y":40.411},{"x":1750707722669,"y":45.834},{"x":1750707662319,"y":41.514},{"x":1750707601934,"y":40.678},{"x":1750707541590,"y":37.408},{"x":1750707481219,"y":50.584},{"x":1750707420835,"y":44.861},{"x":1750707360506,"y":38.177},{"x":1750707300145,"y":52.002},{"x":1750707242680,"y":41.812},{"x":1750707182331,"y":49.922},{"x":1750707121927,"y":39.432},{"x":1750707061557,"y":37.391},{"x":1750707001274,"y":46.972},{"x":1750706940790,"y":40.181},{"x":1750706880460,"y":41.285},{"x":1750706822911,"y":43.479},{"x":1750706762550,"y":45.362},{"x":1750706702162,"y":43.962},{"x":1750706641774,"y":44.334},{"x":1750706581405,"y":51.381},{"x":1750706520995,"y":61.473},{"x":1750706460632,"y":43.251},{"x":1750706400301,"y":40.254},{"x":1750706342820,"y":39.683},{"x":1750706282462,"y":41.698},{"x":1750706222120,"y":43.316},{"x":1750706161684,"y":46.339},{"x":1750706101342,"y":51.012},{"x":1750706040974,"y":54.82},{"x":1750705980590,"y":48.081},{"x":1750705920214,"y":49.898},{"x":1750705862784,"y":45.847},{"x":1750705802433,"y":45.788},{"x":1750705742061,"y":47.368},{"x":1750705681712,"y":51.598},{"x":1750705621320,"y":51.444},{"x":1750705560920,"y":46.813},{"x":1750705500556,"y":48.569},{"x":1750705440193,"y":49.531},{"x":1750705382727,"y":44.195},{"x":1750705322355,"y":36.831},{"x":1750705261988,"y":44.781},{"x":1750705201592,"y":48.164},{"x":1750705141205,"y":44.767},{"x":1750705080798,"y":48.244},{"x":1750705020446,"y":41.524},{"x":1750704962990,"y":52.319},{"x":1750704902636,"y":51.589},{"x":1750704842249,"y":39.142},{"x":1750704781886,"y":42.759},{"x":1750704721509,"y":40.817},{"x":1750704661154,"y":43.14},{"x":1750704600743,"y":60.708},{"x":1750704540423,"y":54.309},{"x":1750704482810,"y":48.707},{"x":1750704422329,"y":49.345},{"x":1750704361978,"y":35.688},{"x":1750704301627,"y":50.33},{"x":1750704241265,"y":30.592},{"x":1750704180827,"y":29.441},{"x":1750704120445,"y":31.745},{"x":1750704062940,"y":33.407},{"x":1750704002589,"y":37.612},{"x":1750703942270,"y":37.872},{"x":1750703881866,"y":44.793},{"x":1750703821506,"y":44.326},{"x":1750703761130,"y":47.911},{"x":1750703700756,"y":54.017},{"x":1750703640405,"y":46.496},{"x":1750703582959,"y":35.296},{"x":1750703522613,"y":31.161},{"x":1750703462263,"y":39.62},{"x":1750703401862,"y":46.603},{"x":1750703341472,"y":26.267},{"x":1750703281122,"y":30.572},{"x":1750703220731,"y":33.326},{"x":1750703160338,"y":30.228},{"x":1750703102793,"y":33.84},{"x":1750703042445,"y":28.117},{"x":1750702982090,"y":27.661},{"x":1750702921730,"y":25.7},{"x":1750702861383,"y":31.15},{"x":1750702801031,"y":31.161},{"x":1750702740667,"y":32.329},{"x":1750702680297,"y":37.077},{"x":1750702622796,"y":32.355},{"x":1750702562384,"y":33.19},{"x":1750702502003,"y":50.321},{"x":1750702441653,"y":50.716},{"x":1750702381292,"y":46.323},{"x":1750702320903,"y":44.32},{"x":1750702260514,"y":50.261},{"x":1750702200104,"y":33.894},{"x":1750702142657,"y":31.242},{"x":1750702082290,"y":30.575},{"x":1750702021909,"y":44.878},{"x":1750701961552,"y":42.773},{"x":1750701901193,"y":39.819},{"x":1750701840758,"y":38.344},{"x":1750701780420,"y":34.376},{"x":1750701722874,"y":40.683},{"x":1750701662529,"y":34.567},{"x":1750701602166,"y":37.995},{"x":1750701541705,"y":26.732},{"x":1750701481316,"y":24.031},{"x":1750701420957,"y":48.891},{"x":1750701360632,"y":44.488},{"x":1750701300180,"y":37.491},{"x":1750701242732,"y":36.752},{"x":1750701182311,"y":39.953},{"x":1750701121916,"y":31.714},{"x":1750701061560,"y":25.095},{"x":1750701001180,"y":25.166},{"x":1750700940791,"y":23.313},{"x":1750700880370,"y":24.63},{"x":1750700822830,"y":25.455},{"x":1750700762478,"y":30.998},{"x":1750700702140,"y":29.167},{"x":1750700641790,"y":25.47},{"x":1750700581436,"y":25.867},{"x":1750700521074,"y":28.586},{"x":1750700460733,"y":23.653},{"x":1750700400353,"y":19.768},{"x":1750700342898,"y":24.129},{"x":1750700282502,"y":28.679},{"x":1750700222153,"y":24.606},{"x":1750700161795,"y":26.692},{"x":1750700101449,"y":35.687},{"x":1750700041092,"y":27.025},{"x":1750699980668,"y":33.729},{"x":1750699920338,"y":35.118},{"x":1750699862870,"y":30.098},{"x":1750699802519,"y":28.792},{"x":1750699742115,"y":31.329},{"x":1750699681748,"y":26.209},{"x":1750699621373,"y":39.981},{"x":1750699560970,"y":40.052},{"x":1750699500609,"y":53.028},{"x":1750699440179,"y":39.694},{"x":1750699382694,"y":48.182},{"x":1750699322298,"y":24.132},{"x":1750699261904,"y":22.05},{"x":1750699201540,"y":26.197},{"x":1750699141187,"y":21.975},{"x":1750699080780,"y":28.217},{"x":1750699020449,"y":27.022},{"x":1750698963020,"y":27.802},{"x":1750698902652,"y":39.61},{"x":1750698842309,"y":26.643},{"x":1750698781921,"y":22.592},{"x":1750698721552,"y":17.835},{"x":1750698661151,"y":41.994},{"x":1750698600769,"y":39.656},{"x":1750698540381,"y":39.598},{"x":1750698482909,"y":38.978},{"x":1750698422544,"y":53.26},{"x":1750698362163,"y":32.876},{"x":1750698301803,"y":28.169},{"x":1750698241435,"y":32.371},{"x":1750698181059,"y":24.392},{"x":1750698120689,"y":21.101},{"x":1750698060332,"y":18.547},{"x":1750698002772,"y":18.949},{"x":1750697942405,"y":19.412},{"x":1750697882046,"y":39.748},{"x":1750697821654,"y":27.904},{"x":1750697761288,"y":29.709},{"x":1750697700852,"y":34.446},{"x":1750697640486,"y":37.7},{"x":1750697583047,"y":35.517},{"x":1750697522697,"y":25.998},{"x":1750697462312,"y":20.602},{"x":1750697401900,"y":17.789},{"x":1750697341527,"y":17.64},{"x":1750697281010,"y":13.774},{"x":1750697220598,"y":16.058},{"x":1750697160237,"y":28.104},{"x":1750697102691,"y":14.472},{"x":1750697042274,"y":17.347},{"x":1750696981917,"y":16.741},{"x":1750696921550,"y":19.172},{"x":1750696861187,"y":27.602},{"x":1750696800777,"y":30.425},{"x":1750696740396,"y":24.494},{"x":1750696682902,"y":28.666},{"x":1750696622548,"y":32.271},{"x":1750696562194,"y":14.97},{"x":1750696501830,"y":18.838},{"x":1750696441460,"y":20.843},{"x":1750696381092,"y":23.279},{"x":1750696320709,"y":20.032},{"x":1750696260303,"y":21.616},{"x":1750696202851,"y":16.146},{"x":1750696142460,"y":18.843},{"x":1750696082111,"y":18.425},{"x":1750696021741,"y":29.068},{"x":1750695961371,"y":17.998},{"x":1750695900991,"y":15.449},{"x":1750695840608,"y":28.611},{"x":1750695780237,"y":33.178},{"x":1750695722761,"y":33.14},{"x":1750695662361,"y":35.844},{"x":1750695601985,"y":41.381},{"x":1750695541608,"y":37.773},{"x":1750695481269,"y":27.412},{"x":1750695420875,"y":26.943},{"x":1750695360515,"y":35.421},{"x":1750695300047,"y":22.32},{"x":1750695242692,"y":11.602},{"x":1750695182332,"y":12.64},{"x":1750695121963,"y":16.328},{"x":1750695061610,"y":21.377},{"x":1750695001254,"y":19.718},{"x":1750694940883,"y":15.33},{"x":1750694880545,"y":16.13},{"x":1750694820109,"y":15.151},{"x":1750694762716,"y":30.092},{"x":1750694702366,"y":15.213},{"x":1750694641987,"y":17.454},{"x":1750694581635,"y":10.87},{"x":1750694521263,"y":18.413},{"x":1750694460902,"y":5.839},{"x":1750694400760,"y":20.099},{"x":1750694342935,"y":31.187},{"x":1750694282609,"y":21.474},{"x":1750694222193,"y":14.89},{"x":1750694161837,"y":22.171},{"x":1750694101431,"y":28.061},{"x":1750694041062,"y":21.841},{"x":1750693980704,"y":14.42},{"x":1750693920349,"y":12.106},{"x":1750693862853,"y":31.325},{"x":1750693802516,"y":36.283},{"x":1750693742166,"y":48.559},{"x":1750693681707,"y":43.417},{"x":1750693621248,"y":37.993},{"x":1750693560800,"y":45.868},{"x":1750693500511,"y":41.72},{"x":1750693442959,"y":47.776},{"x":1750693382603,"y":39.981},{"x":1750693322243,"y":47.593},{"x":1750693261880,"y":47.719},{"x":1750693201555,"y":49.645},{"x":1750693141165,"y":39.002},{"x":1750693080780,"y":34.474},{"x":1750693020410,"y":40.914},{"x":1750692962936,"y":15.122},{"x":1750692902570,"y":10.792},{"x":1750692842216,"y":21.758},{"x":1750692781862,"y":32.099},{"x":1750692721497,"y":37.707},{"x":1750692661133,"y":10.747},{"x":1750692600766,"y":29.3},{"x":1750692540398,"y":45.25},{"x":1750692482860,"y":33.375},{"x":1750692422510,"y":25.891},{"x":1750692362180,"y":19.12},{"x":1750692301808,"y":22.119},{"x":1750692241407,"y":13.772},{"x":1750692181030,"y":28.196},{"x":1750692120657,"y":16.112},{"x":1750692060264,"y":12.791},{"x":1750692002772,"y":26.207},{"x":1750691942397,"y":10.6},{"x":1750691882034,"y":16.973},{"x":1750691821645,"y":25.938},{"x":1750691761262,"y":12.776},{"x":1750691700872,"y":20.215},{"x":1750691640543,"y":15.246},{"x":1750691582961,"y":17.804},{"x":1750691522587,"y":30.118},{"x":1750691462243,"y":24.486},{"x":1750691401877,"y":14.086},{"x":1750691341524,"y":10.718},{"x":1750691281158,"y":30.279},{"x":1750691220772,"y":20.421},{"x":1750691160387,"y":19.869},{"x":1750691102931,"y":23.0},{"x":1750691042581,"y":14.624},{"x":1750690982176,"y":20.128},{"x":1750690921787,"y":14.081},{"x":1750690861360,"y":20.937},{"x":1750690801010,"y":30.98},{"x":1750690740509,"y":25.35},{"x":1750690682989,"y":14.103},{"x":1750690622614,"y":14.3},{"x":1750690562238,"y":8.135},{"x":1750690501821,"y":24.375},{"x":1750690441456,"y":14.989},{"x":1750690381083,"y":17.457},{"x":1750690320690,"y":12.726},{"x":1750690260293,"y":14.774},{"x":1750690202846,"y":21.544},{"x":1750690142475,"y":26.806},{"x":1750690082043,"y":31.87},{"x":1750690021612,"y":28.504},{"x":1750689961228,"y":24.343},{"x":1750689900858,"y":13.552},{"x":1750689840482,"y":23.343},{"x":1750689782987,"y":39.24},{"x":1750689722630,"y":49.375},{"x":1750689662267,"y":44.178},{"x":1750689601872,"y":33.357},{"x":1750689541495,"y":31.331},{"x":1750689481113,"y":33.613},{"x":1750689420733,"y":22.516},{"x":1750689360418,"y":21.464},{"x":1750689302915,"y":16.79},{"x":1750689242514,"y":16.041},{"x":1750689182150,"y":10.107},{"x":1750689121768,"y":11.794},{"x":1750689061391,"y":7.737},{"x":1750689001009,"y":18.75},{"x":1750688940558,"y":14.34},{"x":1750688880148,"y":25.595},{"x":1750688822700,"y":32.948},{"x":1750688762344,"y":28.647},{"x":1750688701958,"y":34.606},{"x":1750688641599,"y":26.551},{"x":1750688581230,"y":22.068},{"x":1750688520829,"y":22.392},{"x":1750688460511,"y":23.422},{"x":1750688403110,"y":15.93},{"x":1750688342630,"y":17.111},{"x":1750688282227,"y":23.269},{"x":1750688221829,"y":10.097},{"x":1750688161464,"y":16.337},{"x":1750688101025,"y":22.84},{"x":1750688040655,"y":13.145},{"x":1750687980295,"y":10.619},{"x":1750687922813,"y":10.878},{"x":1750687862413,"y":14.347},{"x":1750687801962,"y":8.363},{"x":1750687741580,"y":11.972},{"x":1750687681207,"y":6.516},{"x":1750687620785,"y":7.374},{"x":1750687560374,"y":11.188},{"x":1750687502909,"y":15.115},{"x":1750687442528,"y":24.774},{"x":1750687382134,"y":11.493},{"x":1750687321745,"y":12.267},{"x":1750687261370,"y":11.697},{"x":1750687201127,"y":9.763},{"x":1750687140545,"y":8.298},{"x":1750687080127,"y":28.484},{"x":1750687022695,"y":27.156},{"x":1750686962309,"y":3.488},{"x":1750686901864,"y":3.759},{"x":1750686841498,"y":20.562},{"x":1750686781139,"y":22.048},{"x":1750686720765,"y":9.326},{"x":1750686660385,"y":27.401},{"x":1750686602858,"y":21.038},{"x":1750686542473,"y":18.766},{"x":1750686482096,"y":8.563},{"x":1750686421694,"y":15.334},{"x":1750686361332,"y":13.801},{"x":1750686300960,"y":9.013},{"x":1750686240508,"y":9.622},{"x":1750686180114,"y":29.91},{"x":1750686122690,"y":27.811},{"x":1750686062308,"y":12.183},{"x":1750686001904,"y":14.641},{"x":1750685941531,"y":19.88},{"x":1750685881192,"y":20.333},{"x":1750685820789,"y":21.943},{"x":1750685760442,"y":27.094},{"x":1750685702976,"y":27.228},{"x":1750685642614,"y":34.283},{"x":1750685582243,"y":19.368},{"x":1750685521878,"y":20.031},{"x":1750685461497,"y":18.491},{"x":1750685401154,"y":26.327},{"x":1750685340739,"y":15.321},{"x":1750685280384,"y":13.018},{"x":1750685222924,"y":14.055},{"x":1750685162526,"y":13.929},{"x":1750685102155,"y":8.411},{"x":1750685041771,"y":11.166},{"x":1750684981422,"y":17.423},{"x":1750684921024,"y":13.964},{"x":1750684860652,"y":9.504},{"x":1750684800280,"y":10.666},{"x":1750684742743,"y":37.398},{"x":1750684682354,"y":30.822},{"x":1750684621989,"y":31.661},{"x":1750684561592,"y":25.609},{"x":1750684501216,"y":22.538},{"x":1750684440795,"y":17.583},{"x":1750684380424,"y":10.365},{"x":1750684322967,"y":9.576},{"x":1750684262612,"y":8.747},{"x":1750684202263,"y":6.98},{"x":1750684141877,"y":18.448},{"x":1750684081504,"y":16.134},{"x":1750684021099,"y":19.011},{"x":1750683960718,"y":25.491},{"x":1750683900360,"y":11.864},{"x":1750683842888,"y":12.512},{"x":1750683782516,"y":9.397},{"x":1750683722161,"y":2.703},{"x":1750683661737,"y":10.629},{"x":1750683601380,"y":15.039},{"x":1750683540941,"y":26.399},{"x":1750683480603,"y":18.107},{"x":1750683420197,"y":27.127},{"x":1750683362748,"y":29.532},{"x":1750683302339,"y":11.219},{"x":1750683241953,"y":12.44},{"x":1750683181585,"y":15.563},{"x":1750683121211,"y":11.581},{"x":1750683060857,"y":10.783},{"x":1750683000452,"y":13.642},{"x":1750682943031,"y":7.805},{"x":1750682882559,"y":6.493},{"x":1750682822153,"y":4.582},{"x":1750682761733,"y":6.561},{"x":1750682701384,"y":21.405},{"x":1750682640970,"y":21.608},{"x":1750682580622,"y":14.89},{"x":1750682520247,"y":15.304},{"x":1750682462758,"y":11.472},{"x":1750682402412,"y":20.244},{"x":1750682342028,"y":6.855},{"x":1750682281633,"y":9.13},{"x":1750682221270,"y":12.709},{"x":1750682160897,"y":11.415},{"x":1750682100551,"y":12.892},{"x":1750682040107,"y":5.505},{"x":1750681982705,"y":6.822},{"x":1750681922344,"y":10.632},{"x":1750681861965,"y":7.184},{"x":1750681801623,"y":9.061},{"x":1750681741255,"y":6.634},{"x":1750681680877,"y":3.495},{"x":1750681620524,"y":7.693},{"x":1750681563009,"y":0.327},{"x":1750681502635,"y":10.186},{"x":1750681442278,"y":22.578},{"x":1750681381884,"y":5.684},{"x":1750681321532,"y":10.264},{"x":1750681261142,"y":12.29},{"x":1750681200761,"y":11.25},{"x":1750681140365,"y":22.376},{"x":1750681082869,"y":5.69},{"x":1750681022510,"y":14.003},{"x":1750680962139,"y":13.268},{"x":1750680901783,"y":3.557},{"x":1750680841414,"y":5.975},{"x":1750680780998,"y":6.581},{"x":1750680720610,"y":24.433},{"x":1750680660119,"y":23.75},{"x":1750680602747,"y":36.398},{"x":1750680542355,"y":26.061},{"x":1750680481970,"y":39.578},{"x":1750680421585,"y":6.729},{"x":1750680361226,"y":7.632},{"x":1750680300817,"y":4.955},{"x":1750680240386,"y":13.8},{"x":1750680182900,"y":6.927},{"x":1750680122505,"y":5.61},{"x":1750680062116,"y":9.672},{"x":1750680001655,"y":8.133},{"x":1750679941262,"y":13.226},{"x":1750679880898,"y":8.457},{"x":1750679820542,"y":11.091},{"x":1750679760119,"y":18.431},{"x":1750679702700,"y":25.174},{"x":1750679642285,"y":17.009},{"x":1750679581887,"y":9.785},{"x":1750679521520,"y":13.169},{"x":1750679461132,"y":8.454},{"x":1750679400712,"y":10.794},{"x":1750679340280,"y":9.964},{"x":1750679282711,"y":5.356},{"x":1750679222227,"y":2.122},{"x":1750679161856,"y":15.874},{"x":1750679101446,"y":5.515},{"x":1750679041061,"y":6.892},{"x":1750678980694,"y":9.398},{"x":1750678920317,"y":14.396},{"x":1750678862812,"y":7.14},{"x":1750678802437,"y":4.355},{"x":1750678742036,"y":3.905},{"x":1750678681671,"y":10.495},{"x":1750678621289,"y":7.862},{"x":1750678560920,"y":21.349},{"x":1750678500580,"y":7.154},{"x":1750678440150,"y":6.266},{"x":1750678382706,"y":28.232},{"x":1750678322350,"y":6.794},{"x":1750678261981,"y":11.503},{"x":1750678201640,"y":32.364},{"x":1750678141255,"y":10.078},{"x":1750678080885,"y":9.834},{"x":1750678020455,"y":13.7},{"x":1750677962996,"y":7.229},{"x":1750677902620,"y":7.335},{"x":1750677842256,"y":5.29},{"x":1750677781899,"y":13.45},{"x":1750677721547,"y":15.108},{"x":1750677661179,"y":19.002},{"x":1750677600728,"y":14.32},{"x":1750677540342,"y":2.584},{"x":1750677482826,"y":10.44},{"x":1750677422424,"y":8.034},{"x":1750677362038,"y":15.209},{"x":1750677301646,"y":8.199},{"x":1750677241277,"y":11.197},{"x":1750677180859,"y":25.079},{"x":1750677120493,"y":11.494},{"x":1750677062991,"y":8.176},{"x":1750677002612,"y":9.735},{"x":1750676942225,"y":1.107},{"x":1750676881858,"y":5.186},{"x":1750676821465,"y":7.347},{"x":1750676761098,"y":11.54},{"x":1750676700740,"y":6.269},{"x":1750676640287,"y":0.846},{"x":1750676582781,"y":8.067},{"x":1750676522360,"y":33.016},{"x":1750676461947,"y":32.324},{"x":1750676401539,"y":36.515},{"x":1750676341067,"y":21.023},{"x":1750676280692,"y":14.236},{"x":1750676220346,"y":3.406},{"x":1750676162806,"y":5.711},{"x":1750676102401,"y":6.214},{"x":1750676042030,"y":7.654},{"x":1750675981653,"y":5.044},{"x":1750675921291,"y":2.117},{"x":1750675860900,"y":8.512},{"x":1750675800541,"y":20.154},{"x":1750675740106,"y":18.616},{"x":1750675682641,"y":7.078},{"x":1750675622086,"y":20.406},{"x":1750675561714,"y":7.74},{"x":1750675501329,"y":10.254},{"x":1750675440908,"y":1.734},{"x":1750675380524,"y":-1.181},{"x":1750675320099,"y":-1.21},{"x":1750675262720,"y":8.648},{"x":1750675202342,"y":18.973},{"x":1750675141949,"y":4.153},{"x":1750675081578,"y":6.702},{"x":1750675021226,"y":6.824},{"x":1750674960842,"y":6.801},{"x":1750674900469,"y":34.722},{"x":1750674843018,"y":11.037},{"x":1750674782620,"y":14.381},{"x":1750674722227,"y":22.409},{"x":1750674661825,"y":10.321},{"x":1750674601431,"y":17.695},{"x":1750674541014,"y":19.481},{"x":1750674480632,"y":13.149},{"x":1750674420124,"y":18.501},{"x":1750674362728,"y":31.578},{"x":1750674302332,"y":23.894},{"x":1750674241947,"y":26.346},{"x":1750674181532,"y":31.084},{"x":1750674121142,"y":54.29},{"x":1750674060706,"y":17.914},{"x":1750674000359,"y":22.335},{"x":1750673942768,"y":25.694},{"x":1750673882363,"y":12.857},{"x":1750673821962,"y":25.001},{"x":1750673761555,"y":11.969},{"x":1750673701179,"y":17.161},{"x":1750673640756,"y":23.633},{"x":1750673580372,"y":4.875},{"x":1750673522841,"y":4.536},{"x":1750673462429,"y":-2.4},{"x":1750673402026,"y":15.564},{"x":1750673341624,"y":26.377},{"x":1750673281236,"y":11.726},{"x":1750673220851,"y":24.844},{"x":1750673160450,"y":23.239},{"x":1750673102946,"y":28.329},{"x":1750673042554,"y":34.837},{"x":1750672982191,"y":19.05},{"x":1750672921811,"y":25.14},{"x":1750672861444,"y":36.749},{"x":1750672801086,"y":30.804},{"x":1750672740607,"y":27.247},{"x":1750672680155,"y":18.833},{"x":1750672622697,"y":16.587},{"x":1750672562344,"y":25.653},{"x":1750672501898,"y":27.626},{"x":1750672441544,"y":23.724},{"x":1750672381165,"y":35.363},{"x":1750672320787,"y":17.103},{"x":1750672260448,"y":20.292},{"x":1750672202966,"y":46.064},{"x":1750672142590,"y":20.749},{"x":1750672082164,"y":19.997},{"x":1750672021698,"y":23.099},{"x":1750671961334,"y":16.157},{"x":1750671900962,"y":25.867},{"x":1750671840556,"y":30.15},{"x":1750671780183,"y":39.476},{"x":1750671722715,"y":26.345},{"x":1750671662333,"y":28.05},{"x":1750671601951,"y":8.043},{"x":1750671541601,"y":20.038},{"x":1750671481232,"y":23.41},{"x":1750671420846,"y":24.272},{"x":1750671360474,"y":36.251},{"x":1750671302941,"y":39.198},{"x":1750671242573,"y":45.585},{"x":1750671182220,"y":45.367},{"x":1750671121844,"y":35.107},{"x":1750671061425,"y":28.576},{"x":1750671001065,"y":38.157},{"x":1750670940663,"y":22.439},{"x":1750670880237,"y":25.118},{"x":1750670822769,"y":19.13},{"x":1750670762417,"y":20.95},{"x":1750670702060,"y":27.899},{"x":1750670641647,"y":19.887},{"x":1750670581305,"y":18.26},{"x":1750670520918,"y":22.336},{"x":1750670460557,"y":30.415},{"x":1750670400239,"y":25.322},{"x":1750670342731,"y":28.461},{"x":1750670282367,"y":28.14},{"x":1750670221984,"y":34.172},{"x":1750670161609,"y":32.588},{"x":1750670101258,"y":33.619},{"x":1750670040820,"y":27.194},{"x":1750669980435,"y":24.774},{"x":1750669922995,"y":15.28},{"x":1750669862550,"y":20.548},{"x":1750669802152,"y":23.659},{"x":1750669741792,"y":22.094},{"x":1750669681413,"y":27.882},{"x":1750669621039,"y":22.987},{"x":1750669560663,"y":13.669},{"x":1750669500320,"y":12.013},{"x":1750669442832,"y":25.223},{"x":1750669382438,"y":18.154},{"x":1750669322049,"y":22.706},{"x":1750669261681,"y":20.93},{"x":1750669201361,"y":13.464},{"x":1750669140876,"y":14.176},{"x":1750669080457,"y":12.958},{"x":1750669022996,"y":19.036},{"x":1750668962595,"y":14.656},{"x":1750668902212,"y":24.583},{"x":1750668841815,"y":32.822},{"x":1750668781459,"y":39.793},{"x":1750668721090,"y":21.396},{"x":1750668660703,"y":23.738},{"x":1750668600341,"y":26.134},{"x":1750668542772,"y":29.008},{"x":1750668482320,"y":32.678},{"x":1750668421836,"y":39.701},{"x":1750668361476,"y":45.365},{"x":1750668301127,"y":46.574},{"x":1750668240750,"y":19.397},{"x":1750668180356,"y":32.539},{"x":1750668122895,"y":49.333},{"x":1750668062538,"y":34.628},{"x":1750668002175,"y":29.988},{"x":1750667941795,"y":22.06},{"x":1750667881429,"y":18.541},{"x":1750667821067,"y":22.309},{"x":1750667760645,"y":28.174},{"x":1750667700300,"y":30.151},{"x":1750667642838,"y":25.574},{"x":1750667582451,"y":22.866},{"x":1750667522089,"y":18.495},{"x":1750667461691,"y":23.551},{"x":1750667401342,"y":21.328},{"x":1750667340932,"y":13.811},{"x":1750667280566,"y":18.656},{"x":1750667223015,"y":13.401},{"x":1750667162662,"y":14.42},{"x":1750667102270,"y":12.837},{"x":1750667041900,"y":26.225},{"x":1750666981535,"y":19.946},{"x":1750666921147,"y":30.506},{"x":1750666860726,"y":24.012},{"x":1750666800286,"y":21.854},{"x":1750666742821,"y":18.956},{"x":1750666682439,"y":28.41},{"x":1750666622057,"y":30.988},{"x":1750666561659,"y":25.48},{"x":1750666501274,"y":17.507},{"x":1750666440878,"y":19.219},{"x":1750666380558,"y":21.167},{"x":1750666320088,"y":16.498},{"x":1750666262702,"y":17.545},{"x":1750666202364,"y":20.794},{"x":1750666141962,"y":19.718},{"x":1750666081610,"y":23.386},{"x":1750666021232,"y":24.044},{"x":1750665960824,"y":27.973},{"x":1750665900447,"y":38.755},{"x":1750665842979,"y":25.022},{"x":1750665782629,"y":28.897},{"x":1750665722258,"y":29.716},{"x":1750665661858,"y":32.722},{"x":1750665601537,"y":43.423},{"x":1750665541029,"y":40.416},{"x":1750665480637,"y":38.349},{"x":1750665420263,"y":39.204},{"x":1750665362736,"y":33.313},{"x":1750665302331,"y":16.511},{"x":1750665241959,"y":21.153},{"x":1750665181605,"y":29.383},{"x":1750665121189,"y":30.845},{"x":1750665060815,"y":25.522},{"x":1750665000459,"y":22.332},{"x":1750664942995,"y":11.868},{"x":1750664882616,"y":12.973},{"x":1750664822105,"y":18.485},{"x":1750664761716,"y":27.037},{"x":1750664701335,"y":28.361},{"x":1750664640954,"y":26.766},{"x":1750664580597,"y":29.583},{"x":1750664520206,"y":20.301},{"x":1750664462741,"y":18.141},{"x":1750664402391,"y":21.105},{"x":1750664342042,"y":23.908},{"x":1750664281661,"y":9.697},{"x":1750664221318,"y":14.269},{"x":1750664160941,"y":14.406},{"x":1750664100590,"y":15.667},{"x":1750664040105,"y":17.983},{"x":1750663982699,"y":17.869},{"x":1750663922345,"y":14.545},{"x":1750663861956,"y":18.887},{"x":1750663801566,"y":20.072},{"x":1750663741209,"y":26.44},{"x":1750663680816,"y":24.562},{"x":1750663620458,"y":25.881},{"x":1750663562999,"y":23.911},{"x":1750663502654,"y":17.496},{"x":1750663442299,"y":14.905},{"x":1750663381883,"y":16.659},{"x":1750663321534,"y":17.606},{"x":1750663260967,"y":20.454},{"x":1750663200619,"y":21.38},{"x":1750663140140,"y":17.097},{"x":1750663082738,"y":19.038},{"x":1750663022378,"y":17.657},{"x":1750662961981,"y":13.627},{"x":1750662901636,"y":30.433},{"x":1750662841280,"y":32.044},{"x":1750662780911,"y":20.486},{"x":1750662720575,"y":22.239},{"x":1750662660193,"y":14.448},{"x":1750662602724,"y":39.92},{"x":1750662542336,"y":51.609},{"x":1750662481965,"y":42.478},{"x":1750662421599,"y":41.294},{"x":1750662361246,"y":42.392},{"x":1750662300863,"y":21.189},{"x":1750662240461,"y":20.404},{"x":1750662182937,"y":26.385},{"x":1750662122557,"y":39.309},{"x":1750662062185,"y":22.079},{"x":1750662001803,"y":27.293},{"x":1750661941406,"y":22.791},{"x":1750661880998,"y":27.79},{"x":1750661820651,"y":23.046},{"x":1750661760254,"y":31.679},{"x":1750661702715,"y":24.548},{"x":1750661642319,"y":36.489},{"x":1750661581944,"y":28.76},{"x":1750661521576,"y":20.415},{"x":1750661461206,"y":43.915},{"x":1750661400852,"y":40.352},{"x":1750661340514,"y":35.089},{"x":1750661282907,"y":30.752},{"x":1750661222430,"y":30.264},{"x":1750661162064,"y":40.941},{"x":1750661101648,"y":57.224},{"x":1750661041270,"y":48.836},{"x":1750660980873,"y":42.557},{"x":1750660920511,"y":43.884},{"x":1750660860169,"y":38.351},{"x":1750660802657,"y":25.038},{"x":1750660742293,"y":24.488},{"x":1750660681904,"y":29.568},{"x":1750660621548,"y":23.281},{"x":1750660561187,"y":43.427},{"x":1750660500815,"y":24.598},{"x":1750660440435,"y":25.299},{"x":1750660382966,"y":31.212},{"x":1750660322603,"y":33.018},{"x":1750660262200,"y":26.227},{"x":1750660201835,"y":32.452},{"x":1750660141458,"y":29.977},{"x":1750660081084,"y":36.344},{"x":1750660020724,"y":29.35},{"x":1750659960394,"y":29.284},{"x":1750659902931,"y":32.041},{"x":1750659842589,"y":35.307},{"x":1750659782248,"y":31.794},{"x":1750659721862,"y":33.389},{"x":1750659661498,"y":36.842},{"x":1750659601150,"y":33.064},{"x":1750659540777,"y":50.775},{"x":1750659480411,"y":41.295},{"x":1750659423024,"y":37.76},{"x":1750659362631,"y":49.567},{"x":1750659302285,"y":64.559},{"x":1750659241914,"y":51.913},{"x":1750659181577,"y":53.159},{"x":1750659121236,"y":50.629},{"x":1750659060837,"y":34.315},{"x":1750659000491,"y":34.317},{"x":1750658943062,"y":36.935},{"x":1750658882689,"y":42.804},{"x":1750658822334,"y":25.965},{"x":1750658761976,"y":25.641},{"x":1750658701620,"y":27.784},{"x":1750658641252,"y":34.673},{"x":1750658580835,"y":19.716},{"x":1750658520465,"y":35.64},{"x":1750658462920,"y":24.418},{"x":1750658402565,"y":42.086},{"x":1750658342117,"y":41.725},{"x":1750658281756,"y":43.52},{"x":1750658221407,"y":26.283},{"x":1750658161014,"y":26.3},{"x":1750658100645,"y":25.947},{"x":1750658040259,"y":27.698},{"x":1750657982838,"y":19.85},{"x":1750657922477,"y":31.483},{"x":1750657862131,"y":32.364},{"x":1750657801756,"y":30.782},{"x":1750657741390,"y":35.988},{"x":1750657680880,"y":33.498},{"x":1750657620471,"y":20.741},{"x":1750657562991,"y":22.089},{"x":1750657502625,"y":21.201},{"x":1750657442285,"y":21.362},{"x":1750657381915,"y":27.299},{"x":1750657321553,"y":31.87},{"x":1750657261172,"y":45.418},{"x":1750657200764,"y":47.597},{"x":1750657140412,"y":43.457},{"x":1750657082919,"y":53.605},{"x":1750657022561,"y":41.519},{"x":1750656962139,"y":24.319},{"x":1750656901772,"y":23.473},{"x":1750656841400,"y":23.237},{"x":1750656781047,"y":21.563},{"x":1750656720641,"y":22.444},{"x":1750656660280,"y":23.313},{"x":1750656602795,"y":24.146},{"x":1750656542424,"y":22.841},{"x":1750656482074,"y":22.231},{"x":1750656421683,"y":23.496},{"x":1750656361328,"y":25.73},{"x":1750656300941,"y":27.026},{"x":1750656240570,"y":25.548},{"x":1750656180135,"y":36.043},{"x":1750656122695,"y":31.341},{"x":1750656062290,"y":25.371},{"x":1750656001908,"y":32.452},{"x":1750655941544,"y":32.301},{"x":1750655881181,"y":34.674},{"x":1750655820788,"y":37.132},{"x":1750655760428,"y":40.209},{"x":1750655700119,"y":35.84},{"x":1750655642656,"y":30.427},{"x":1750655582302,"y":35.718},{"x":1750655521928,"y":37.966},{"x":1750655461546,"y":36.119},{"x":1750655401182,"y":36.885},{"x":1750655340804,"y":34.807},{"x":1750655280439,"y":29.529},{"x":1750655222970,"y":29.291},{"x":1750655162577,"y":27.758},{"x":1750655102220,"y":26.646},{"x":1750655041836,"y":37.956},{"x":1750654981466,"y":34.802},{"x":1750654921079,"y":37.069},{"x":1750654860690,"y":32.681},{"x":1750654800239,"y":34.525},{"x":1750654742760,"y":37.797},{"x":1750654682336,"y":34.415},{"x":1750654621943,"y":46.176},{"x":1750654561563,"y":43.631},{"x":1750654501139,"y":42.823},{"x":1750654440739,"y":47.714},{"x":1750654380360,"y":44.323},{"x":1750654322890,"y":37.583},{"x":1750654262542,"y":35.184},{"x":1750654202154,"y":36.065},{"x":1750654141754,"y":35.572},{"x":1750654081270,"y":38.606},{"x":1750654020798,"y":29.789},{"x":1750653960446,"y":36.174},{"x":1750653903029,"y":32.391},{"x":1750653842636,"y":35.035},{"x":1750653782249,"y":35.217},{"x":1750653721878,"y":37.698},{"x":1750653661501,"y":44.99},{"x":1750653601117,"y":49.716},{"x":1750653540731,"y":46.816},{"x":1750653480336,"y":43.489},{"x":1750653422779,"y":39.399},{"x":1750653362408,"y":37.5},{"x":1750653302019,"y":38.506},{"x":1750653241628,"y":33.977},{"x":1750653181223,"y":37.263},{"x":1750653120822,"y":33.824},{"x":1750653060500,"y":37.124},{"x":1750653002935,"y":35.675},{"x":1750652942539,"y":39.352},{"x":1750652882179,"y":38.628},{"x":1750652821779,"y":34.703},{"x":1750652761419,"y":37.964},{"x":1750652701038,"y":35.518},{"x":1750652640651,"y":44.088},{"x":1750652580293,"y":39.684},{"x":1750652522805,"y":51.757},{"x":1750652462428,"y":49.518},{"x":1750652402060,"y":55.899},{"x":1750652341698,"y":58.541},{"x":1750652281334,"y":60.687},{"x":1750652220955,"y":46.021},{"x":1750652160605,"y":43.845},{"x":1750652100299,"y":44.271},{"x":1750652042767,"y":36.603},{"x":1750651982417,"y":35.249},{"x":1750651922046,"y":34.125},{"x":1750651861681,"y":38.932},{"x":1750651801302,"y":39.408},{"x":1750651740945,"y":37.717},{"x":1750651680583,"y":36.967},{"x":1750651620195,"y":36.472},{"x":1750651562703,"y":38.059},{"x":1750651502352,"y":34.744},{"x":1750651441973,"y":35.258},{"x":1750651381625,"y":36.339},{"x":1750651321245,"y":40.717},{"x":1750651260814,"y":46.869},{"x":1750651200197,"y":32.036},{"x":1750651142712,"y":33.147},{"x":1750651082352,"y":35.055},{"x":1750651021954,"y":29.328},{"x":1750650961593,"y":44.469},{"x":1750650901218,"y":44.167},{"x":1750650840823,"y":42.56},{"x":1750650780490,"y":36.308},{"x":1750650723042,"y":29.815},{"x":1750650662673,"y":24.75},{"x":1750650602286,"y":24.831},{"x":1750650541903,"y":26.744},{"x":1750650481472,"y":29.159},{"x":1750650421009,"y":33.482},{"x":1750650360653,"y":30.553},{"x":1750650300297,"y":29.64},{"x":1750650242830,"y":33.686},{"x":1750650182459,"y":28.824},{"x":1750650122116,"y":26.739},{"x":1750650061681,"y":38.181},{"x":1750650001327,"y":34.666},{"x":1750649940931,"y":34.42},{"x":1750649880568,"y":37.855},{"x":1750649820171,"y":35.52},{"x":1750649762719,"y":25.552},{"x":1750649702362,"y":31.558},{"x":1750649641962,"y":27.888},{"x":1750649581596,"y":28.566},{"x":1750649521199,"y":27.786},{"x":1750649460802,"y":24.611},{"x":1750649400402,"y":25.651},{"x":1750649342916,"y":27.514},{"x":1750649282558,"y":25.64},{"x":1750649222195,"y":27.948},{"x":1750649161829,"y":27.046},{"x":1750649101408,"y":32.17},{"x":1750649041035,"y":31.524},{"x":1750648980616,"y":32.981},{"x":1750648920261,"y":30.358},{"x":1750648862777,"y":27.47},{"x":1750648802408,"y":24.938},{"x":1750648742033,"y":25.567},{"x":1750648681622,"y":25.238},{"x":1750648621270,"y":28.356},{"x":1750648560735,"y":25.949},{"x":1750648500566,"y":23.748},{"x":1750648442932,"y":25.824},{"x":1750648382590,"y":28.143},{"x":1750648322239,"y":32.304},{"x":1750648261809,"y":28.301},{"x":1750648201427,"y":29.897},{"x":1750648141024,"y":23.586},{"x":1750648080640,"y":23.917},{"x":1750648020275,"y":24.093},{"x":1750647962787,"y":24.061},{"x":1750647902412,"y":24.905},{"x":1750647842000,"y":32.225},{"x":1750647780256,"y":47.03},{"x":1750647720903,"y":44.134},{"x":1750647660340,"y":44.227},{"x":1750647601027,"y":43.883},{"x":1750647540556,"y":49.662},{"x":1750647480176,"y":32.434},{"x":1750647422726,"y":32.474},{"x":1750647362318,"y":31.633},{"x":1750647301921,"y":31.27},{"x":1750647241557,"y":30.316},{"x":1750647181203,"y":30.359},{"x":1750647120837,"y":31.342},{"x":1750647060399,"y":25.607},{"x":1750647002981,"y":27.043},{"x":1750646942608,"y":24.191},{"x":1750646882160,"y":24.286},{"x":1750646821661,"y":23.981},{"x":1750646761307,"y":27.735},{"x":1750646700939,"y":25.518},{"x":1750646640575,"y":30.278},{"x":1750646580163,"y":28.711},{"x":1750646522705,"y":30.097},{"x":1750646462351,"y":25.538},{"x":1750646401967,"y":24.484},{"x":1750646341588,"y":25.918},{"x":1750646281243,"y":23.517},{"x":1750646220855,"y":23.985},{"x":1750646160521,"y":23.87},{"x":1750646100060,"y":53.315},{"x":1750646042655,"y":45.483},{"x":1750645982293,"y":46.71},{"x":1750645921910,"y":47.893},{"x":1750645861530,"y":36.338},{"x":1750645801157,"y":27.025},{"x":1750645740776,"y":31.463},{"x":1750645680425,"y":24.965},{"x":1750645622978,"y":24.684},{"x":1750645562610,"y":23.568},{"x":1750645502230,"y":24.53},{"x":1750645441832,"y":26.126},{"x":1750645381450,"y":34.891},{"x":1750645321082,"y":25.936},{"x":1750645260690,"y":26.495},{"x":1750645200304,"y":27.007},{"x":1750645142771,"y":23.7},{"x":1750645082405,"y":41.903},{"x":1750645022003,"y":37.601},{"x":1750644961590,"y":34.698},{"x":1750644901198,"y":33.986},{"x":1750644840812,"y":33.47},{"x":1750644780445,"y":23.832},{"x":1750644720051,"y":29.92},{"x":1750644662670,"y":29.819},{"x":1750644602327,"y":26.665},{"x":1750644541941,"y":25.752},{"x":1750644481580,"y":24.149},{"x":1750644421220,"y":22.935},{"x":1750644360765,"y":32.411},{"x":1750644300393,"y":35.216},{"x":1750644242979,"y":31.207},{"x":1750644182624,"y":31.223},{"x":1750644122247,"y":26.288},{"x":1750644061866,"y":29.628},{"x":1750644001497,"y":27.385},{"x":1750643941065,"y":30.36},{"x":1750643880669,"y":26.279},{"x":1750643820274,"y":26.17},{"x":1750643762719,"y":24.706},{"x":1750643702324,"y":23.845},{"x":1750643641923,"y":24.532},{"x":1750643581550,"y":29.359},{"x":1750643521195,"y":34.612},{"x":1750643460833,"y":28.85},{"x":1750643400515,"y":32.273},{"x":1750643340096,"y":37.965},{"x":1750643282604,"y":48.505},{"x":1750643222129,"y":50.786},{"x":1750643161774,"y":51.144},{"x":1750643101403,"y":46.404},{"x":1750643040992,"y":31.077},{"x":1750642980643,"y":33.851},{"x":1750642920326,"y":32.782},{"x":1750642862829,"y":32.451},{"x":1750642802468,"y":31.45},{"x":1750642742104,"y":24.517},{"x":1750642681691,"y":24.325},{"x":1750642621340,"y":26.433},{"x":1750642560953,"y":26.101},{"x":1750642500566,"y":24.644},{"x":1750642440182,"y":27.921},{"x":1750642382758,"y":29.131},{"x":1750642322393,"y":25.857},{"x":1750642262035,"y":26.879},{"x":1750642201679,"y":27.298},{"x":1750642141312,"y":26.702},{"x":1750642080946,"y":27.254},{"x":1750642020590,"y":30.963},{"x":1750641960225,"y":24.581},{"x":1750641902718,"y":27.159},{"x":1750641842336,"y":27.402},{"x":1750641781970,"y":27.512},{"x":1750641721616,"y":29.827},{"x":1750641661230,"y":30.387},{"x":1750641600854,"y":37.093},{"x":1750641540439,"y":37.359},{"x":1750641483014,"y":35.224},{"x":1750641422616,"y":35.803},{"x":1750641362223,"y":39.918},{"x":1750641301847,"y":28.09},{"x":1750641241468,"y":30.817},{"x":1750641181106,"y":36.432},{"x":1750641120742,"y":49.709},{"x":1750641060370,"y":47.719},{"x":1750641002887,"y":52.196},{"x":1750640942505,"y":43.78},{"x":1750640882137,"y":40.311},{"x":1750640821772,"y":26.425},{"x":1750640761362,"y":29.58},{"x":1750640700959,"y":29.728},{"x":1750640640601,"y":29.363},{"x":1750640580204,"y":32.491},{"x":1750640522746,"y":32.894},{"x":1750640462371,"y":32.012},{"x":1750640401996,"y":30.239},{"x":1750640341554,"y":33.919},{"x":1750640281138,"y":26.477},{"x":1750640220749,"y":25.652},{"x":1750640160383,"y":26.363},{"x":1750640102840,"y":27.899},{"x":1750640042425,"y":26.21},{"x":1750639982064,"y":25.025},{"x":1750639921686,"y":36.742},{"x":1750639861293,"y":36.095},{"x":1750639800914,"y":36.823},{"x":1750639740554,"y":36.504},{"x":1750639680149,"y":44.865},{"x":1750639622686,"y":27.223},{"x":1750639562339,"y":25.87},{"x":1750639501922,"y":24.526},{"x":1750639441544,"y":24.136},{"x":1750639381167,"y":24.324},{"x":1750639320777,"y":34.826},{"x":1750639260405,"y":26.85},{"x":1750639202773,"y":29.226},{"x":1750639142406,"y":27.086},{"x":1750639082026,"y":26.718},{"x":1750639021660,"y":23.953},{"x":1750638961291,"y":26.928},{"x":1750638900918,"y":28.524},{"x":1750638840536,"y":24.582},{"x":1750638780203,"y":24.525},{"x":1750638722732,"y":24.314},{"x":1750638662354,"y":30.617},{"x":1750638601982,"y":28.062},{"x":1750638541624,"y":30.529},{"x":1750638481228,"y":34.488},{"x":1750638420849,"y":29.556},{"x":1750638360456,"y":26.787},{"x":1750638302964,"y":29.094},{"x":1750638242525,"y":23.66},{"x":1750638182140,"y":23.795},{"x":1750638121772,"y":24.758},{"x":1750638061417,"y":27.302},{"x":1750638000976,"y":25.975},{"x":1750637940582,"y":25.991},{"x":1750637880190,"y":26.897},{"x":1750637822735,"y":26.324},{"x":1750637762355,"y":29.436},{"x":1750637701958,"y":29.459},{"x":1750637641597,"y":34.21},{"x":1750637581249,"y":27.704},{"x":1750637520859,"y":23.634},{"x":1750637460459,"y":23.352},{"x":1750637403015,"y":25.777},{"x":1750637342629,"y":23.005},{"x":1750637282257,"y":23.535},{"x":1750637221884,"y":27.211},{"x":1750637161507,"y":26.246},{"x":1750637101127,"y":26.329},{"x":1750637040742,"y":45.786},{"x":1750636980353,"y":48.358},{"x":1750636922827,"y":48.575},{"x":1750636862448,"y":50.685},{"x":1750636802056,"y":49.707},{"x":1750636741610,"y":45.156},{"x":1750636681222,"y":25.07},{"x":1750636620798,"y":28.249},{"x":1750636560424,"y":24.649},{"x":1750636502954,"y":24.087},{"x":1750636442609,"y":26.186},{"x":1750636382227,"y":37.721},{"x":1750636321823,"y":37.014},{"x":1750636261447,"y":36.706},{"x":1750636201027,"y":34.87},{"x":1750636140654,"y":33.391},{"x":1750636080155,"y":36.984},{"x":1750636022693,"y":32.925},{"x":1750635962346,"y":32.015},{"x":1750635901901,"y":31.489},{"x":1750635841549,"y":30.402},{"x":1750635781068,"y":28.849},{"x":1750635720669,"y":28.811},{"x":1750635660275,"y":28.987},{"x":1750635602841,"y":31.556},{"x":1750635542469,"y":27.203},{"x":1750635482099,"y":24.684},{"x":1750635421726,"y":24.758},{"x":1750635361357,"y":23.698},{"x":1750635301010,"y":26.269},{"x":1750635240601,"y":28.535},{"x":1750635180247,"y":37.633},{"x":1750635122740,"y":50.947},{"x":1750635062377,"y":49.12},{"x":1750635001988,"y":46.695},{"x":1750634941617,"y":50.35},{"x":1750634881272,"y":37.258},{"x":1750634820859,"y":25.058},{"x":1750634760504,"y":25.902},{"x":1750634703020,"y":29.458},{"x":1750634642643,"y":30.23},{"x":1750634582288,"y":27.956},{"x":1750634521884,"y":29.61},{"x":1750634461503,"y":33.166},{"x":1750634401123,"y":32.431},{"x":1750634340745,"y":29.949},{"x":1750634280370,"y":32.951},{"x":1750634222940,"y":29.017},{"x":1750634162676,"y":25.733},{"x":1750634102223,"y":30.65},{"x":1750634041835,"y":31.914},{"x":1750633981446,"y":29.139},{"x":1750633921065,"y":33.026},{"x":1750633860618,"y":27.414},{"x":1750633800292,"y":30.16},{"x":1750633742750,"y":28.473},{"x":1750633682374,"y":28.75},{"x":1750633621975,"y":31.529},{"x":1750633561563,"y":26.413},{"x":1750633501191,"y":26.52},{"x":1750633440793,"y":28.825},{"x":1750633380426,"y":25.779},{"x":1750633322972,"y":25.665},{"x":1750633262584,"y":28.912},{"x":1750633202201,"y":40.227},{"x":1750633141821,"y":34.973},{"x":1750633081445,"y":32.888},{"x":1750633021070,"y":32.608},{"x":1750632960673,"y":28.101},{"x":1750632900232,"y":29.275},{"x":1750632842816,"y":25.951},{"x":1750632782448,"y":36.357},{"x":1750632722076,"y":35.699},{"x":1750632661699,"y":34.873},{"x":1750632601348,"y":38.384},{"x":1750632540955,"y":34.226},{"x":1750632480501,"y":26.904},{"x":1750632423089,"y":28.314},{"x":1750632362636,"y":31.176},{"x":1750632302226,"y":30.304},{"x":1750632241863,"y":32.637},{"x":1750632181470,"y":25.245},{"x":1750632121107,"y":23.773},{"x":1750632060715,"y":23.987},{"x":1750632000364,"y":23.654},{"x":1750631942849,"y":26.768},{"x":1750631882497,"y":27.983},{"x":1750631822122,"y":29.95},{"x":1750631761746,"y":27.75},{"x":1750631701386,"y":30.665},{"x":1750631640990,"y":27.711},{"x":1750631580641,"y":24.263},{"x":1750631520285,"y":29.189},{"x":1750631462814,"y":26.25},{"x":1750631402444,"y":25.534},{"x":1750631342064,"y":24.61},{"x":1750631281695,"y":26.097},{"x":1750631221307,"y":39.048},{"x":1750631160950,"y":38.721},{"x":1750631100554,"y":41.102},{"x":1750631040202,"y":37.875},{"x":1750630982729,"y":38.833},{"x":1750630922378,"y":26.443},{"x":1750630861975,"y":30.265},{"x":1750630801513,"y":26.806},{"x":1750630741184,"y":27.117},{"x":1750630680774,"y":27.871},{"x":1750630620415,"y":24.882},{"x":1750630563022,"y":27.459},{"x":1750630502587,"y":27.466},{"x":1750630442230,"y":26.31},{"x":1750630381858,"y":32.402},{"x":1750630321513,"y":31.838},{"x":1750630261105,"y":33.687},{"x":1750630200743,"y":34.276},{"x":1750630140329,"y":28.563},{"x":1750630082854,"y":27.433},{"x":1750630022484,"y":26.996},{"x":1750629962094,"y":29.515},{"x":1750629901717,"y":28.027},{"x":1750629841347,"y":30.948},{"x":1750629780956,"y":31.301},{"x":1750629720549,"y":27.854},{"x":1750629660159,"y":25.864},{"x":1750629602674,"y":26.022},{"x":1750629542305,"y":32.447},{"x":1750629481917,"y":31.911},{"x":1750629421532,"y":28.652},{"x":1750629361179,"y":31.244},{"x":1750629300696,"y":27.261},{"x":1750629240352,"y":28.85},{"x":1750629182907,"y":28.397},{"x":1750629122541,"y":27.102},{"x":1750629062163,"y":27.971},{"x":1750629001799,"y":27.964},{"x":1750628941443,"y":30.354},{"x":1750628881005,"y":36.37},{"x":1750628820571,"y":28.102},{"x":1750628760165,"y":28.144},{"x":1750628702725,"y":26.811},{"x":1750628642366,"y":28.671},{"x":1750628581993,"y":28.872},{"x":1750628521622,"y":33.627},{"x":1750628461264,"y":31.345},{"x":1750628400904,"y":27.334},{"x":1750628340517,"y":27.223},{"x":1750628280123,"y":48.213},{"x":1750628222684,"y":50.931},{"x":1750628162343,"y":47.646},{"x":1750628101984,"y":47.138},{"x":1750628041626,"y":35.729},{"x":1750627981277,"y":29.331},{"x":1750627920919,"y":29.649},{"x":1750627860550,"y":29.68},{"x":1750627800166,"y":35.092},{"x":1750627742748,"y":32.753},{"x":1750627682372,"y":33.188},{"x":1750627621991,"y":34.528},{"x":1750627561632,"y":34.657},{"x":1750627501263,"y":31.558},{"x":1750627440915,"y":30.498},{"x":1750627380545,"y":31.651},{"x":1750627320160,"y":33.425},{"x":1750627262704,"y":29.708},{"x":1750627202353,"y":34.79},{"x":1750627141950,"y":31.488},{"x":1750627081553,"y":31.108},{"x":1750627021168,"y":31.568},{"x":1750626960771,"y":33.511},{"x":1750626900468,"y":38.659},{"x":1750626842984,"y":52.182},{"x":1750626782605,"y":54.921},{"x":1750626722215,"y":48.082},{"x":1750626661851,"y":49.519},{"x":1750626601511,"y":44.381},{"x":1750626541136,"y":32.703},{"x":1750626480771,"y":33.621},{"x":1750626420363,"y":32.776},{"x":1750626362947,"y":31.532},{"x":1750626302530,"y":31.845},{"x":1750626242178,"y":26.796},{"x":1750626181823,"y":36.77},{"x":1750626121462,"y":37.42},{"x":1750626061100,"y":37.404},{"x":1750626000703,"y":47.411},{"x":1750625940279,"y":50.885},{"x":1750625882835,"y":45.694},{"x":1750625822468,"y":47.2},{"x":1750625762102,"y":46.653},{"x":1750625701667,"y":48.854},{"x":1750625641317,"y":44.202},{"x":1750625580932,"y":41.655},{"x":1750625520543,"y":40.896},{"x":1750625460137,"y":38.482},{"x":1750625402653,"y":37.136},{"x":1750625342306,"y":34.812},{"x":1750625281876,"y":37.12},{"x":1750625221399,"y":41.476},{"x":1750625161045,"y":43.27},{"x":1750625100709,"y":38.115},{"x":1750625040296,"y":35.665},{"x":1750624982848,"y":40.529},{"x":1750624922482,"y":37.603},{"x":1750624862125,"y":38.788},{"x":1750624801749,"y":39.263},{"x":1750624741383,"y":36.206},{"x":1750624680990,"y":52.744},{"x":1750624620631,"y":39.807},{"x":1750624560300,"y":37.941},{"x":1750624502826,"y":38.878},{"x":1750624442458,"y":42.344},{"x":1750624382075,"y":42.031},{"x":1750624321730,"y":39.815},{"x":1750624261336,"y":39.422},{"x":1750624200965,"y":39.186},{"x":1750624140600,"y":37.439},{"x":1750624080258,"y":50.324},{"x":1750624022791,"y":65.205},{"x":1750623962455,"y":58.067},{"x":1750623902117,"y":57.461},{"x":1750623841753,"y":56.774},{"x":1750623781396,"y":57.745},{"x":1750623720963,"y":52.462},{"x":1750623660624,"y":53.186},{"x":1750623600224,"y":53.552},{"x":1750623542797,"y":66.425},{"x":1750623482462,"y":52.354},{"x":1750623422093,"y":55.002},{"x":1750623361740,"y":55.88},{"x":1750623301370,"y":52.673},{"x":1750623240983,"y":49.673},{"x":1750623180631,"y":47.79},{"x":1750623120305,"y":46.272},{"x":1750623062749,"y":40.856},{"x":1750623002382,"y":42.286},{"x":1750622942012,"y":45.921},{"x":1750622881613,"y":42.77},{"x":1750622821285,"y":37.466},{"x":1750622760937,"y":45.516},{"x":1750622700606,"y":40.72},{"x":1750622640281,"y":58.828},{"x":1750622582810,"y":41.168},{"x":1750622522445,"y":37.642},{"x":1750622462099,"y":39.459},{"x":1750622401703,"y":35.681},{"x":1750622341293,"y":33.629},{"x":1750622280929,"y":39.916},{"x":1750622220586,"y":32.915},{"x":1750622160216,"y":36.318},{"x":1750622102782,"y":47.839},{"x":1750622042415,"y":47.848},{"x":1750621982043,"y":48.434},{"x":1750621921700,"y":46.974},{"x":1750621861352,"y":41.237},{"x":1750621800965,"y":43.543},{"x":1750621740623,"y":43.496},{"x":1750621680200,"y":49.077},{"x":1750621622706,"y":40.638},{"x":1750621562316,"y":42.245},{"x":1750621501966,"y":41.642},{"x":1750621441606,"y":45.961},{"x":1750621381235,"y":45.087},{"x":1750621320849,"y":48.446},{"x":1750621260517,"y":44.741},{"x":1750621200081,"y":46.135},{"x":1750621142679,"y":46.772},{"x":1750621082326,"y":39.739},{"x":1750621021974,"y":42.75},{"x":1750620961626,"y":39.484},{"x":1750620901249,"y":45.96},{"x":1750620840879,"y":38.817},{"x":1750620780484,"y":36.446},{"x":1750620720115,"y":42.399},{"x":1750620662722,"y":44.03},{"x":1750620602328,"y":44.151},{"x":1750620541975,"y":41.229},{"x":1750620481613,"y":42.021},{"x":1750620421282,"y":44.457},{"x":1750620360912,"y":40.875},{"x":1750620300582,"y":42.114},{"x":1750620240236,"y":57.383},{"x":1750620182751,"y":43.149},{"x":1750620122408,"y":49.279},{"x":1750620062048,"y":52.662},{"x":1750620001689,"y":54.752},{"x":1750619941342,"y":70.048},{"x":1750619880987,"y":75.526},{"x":1750619820639,"y":60.285},{"x":1750619760271,"y":52.561},{"x":1750619702876,"y":47.824},{"x":1750619642517,"y":47.083},{"x":1750619582122,"y":44.799},{"x":1750619521729,"y":48.821},{"x":1750619461356,"y":42.408},{"x":1750619401019,"y":42.886},{"x":1750619340669,"y":39.709},{"x":1750619280316,"y":38.289},{"x":1750619222882,"y":39.689},{"x":1750619162546,"y":49.35},{"x":1750619102197,"y":49.322},{"x":1750619041816,"y":46.19},{"x":1750618981479,"y":46.606},{"x":1750618921121,"y":51.09},{"x":1750618860747,"y":36.056},{"x":1750618800494,"y":41.945},{"x":1750618742930,"y":42.741},{"x":1750618682575,"y":50.011},{"x":1750618622230,"y":55.278},{"x":1750618561803,"y":52.43},{"x":1750618501440,"y":47.735},{"x":1750618441076,"y":47.389},{"x":1750618380684,"y":53.82},{"x":1750618320366,"y":43.864},{"x":1750618262871,"y":45.291},{"x":1750618202516,"y":48.707},{"x":1750618142120,"y":57.954},{"x":1750618081689,"y":39.462},{"x":1750618021232,"y":47.962},{"x":1750617960839,"y":37.374},{"x":1750617900448,"y":38.724},{"x":1750617842924,"y":48.859},{"x":1750617782547,"y":48.746},{"x":1750617722182,"y":52.217},{"x":1750617661811,"y":52.802},{"x":1750617601463,"y":49.4},{"x":1750617541114,"y":54.774},{"x":1750617480738,"y":38.861},{"x":1750617420395,"y":43.755},{"x":1750617362850,"y":38.911},{"x":1750617302483,"y":36.815},{"x":1750617242083,"y":37.761},{"x":1750617181706,"y":37.69},{"x":1750617121339,"y":40.96},{"x":1750617060960,"y":40.919},{"x":1750617000888,"y":45.701},{"x":1750616940192,"y":46.416},{"x":1750616882738,"y":45.939},{"x":1750616822363,"y":50.199},{"x":1750616762013,"y":44.4},{"x":1750616701656,"y":39.382},{"x":1750616641300,"y":38.077},{"x":1750616580918,"y":35.951},{"x":1750616520554,"y":35.825},{"x":1750616460232,"y":35.49},{"x":1750616402703,"y":36.727},{"x":1750616342356,"y":39.205},{"x":1750616282001,"y":40.796},{"x":1750616221646,"y":39.721},{"x":1750616161246,"y":45.385},{"x":1750616100884,"y":38.632},{"x":1750616040530,"y":41.624},{"x":1750615980147,"y":39.012},{"x":1750615922731,"y":33.636},{"x":1750615862357,"y":29.329},{"x":1750615801996,"y":30.132},{"x":1750615741613,"y":34.369},{"x":1750615681262,"y":33.113},{"x":1750615620867,"y":35.942},{"x":1750615560522,"y":37.985},{"x":1750615500126,"y":50.53},{"x":1750615442694,"y":38.038},{"x":1750615382352,"y":43.473},{"x":1750615321958,"y":29.48},{"x":1750615261601,"y":28.51},{"x":1750615201250,"y":29.457},{"x":1750615140772,"y":34.563},{"x":1750615080412,"y":32.082},{"x":1750615022949,"y":33.192},{"x":1750614962590,"y":32.191},{"x":1750614902216,"y":54.307},{"x":1750614841866,"y":57.076},{"x":1750614781495,"y":54.654},{"x":1750614721142,"y":51.534},{"x":1750614660728,"y":57.275},{"x":1750614600370,"y":37.003},{"x":1750614542935,"y":29.656},{"x":1750614482558,"y":28.119},{"x":1750614422094,"y":27.958},{"x":1750614361716,"y":30.872},{"x":1750614301354,"y":26.951},{"x":1750614240995,"y":25.609},{"x":1750614180639,"y":30.087},{"x":1750614120290,"y":29.17},{"x":1750614062826,"y":35.429},{"x":1750614002469,"y":39.296},{"x":1750613942126,"y":37.552},{"x":1750613881721,"y":36.9},{"x":1750613821396,"y":37.751},{"x":1750613761058,"y":30.113},{"x":1750613700695,"y":25.27},{"x":1750613640352,"y":27.439},{"x":1750613582894,"y":28.292},{"x":1750613522524,"y":38.128},{"x":1750613462129,"y":43.053},{"x":1750613401755,"y":37.436},{"x":1750613341397,"y":40.081},{"x":1750613281056,"y":39.39},{"x":1750613220691,"y":29.6},{"x":1750613160358,"y":28.166},{"x":1750613102909,"y":24.524},{"x":1750613042559,"y":26.983},{"x":1750612982203,"y":27.267},{"x":1750612921819,"y":28.01},{"x":1750612861482,"y":28.731},{"x":1750612801100,"y":30.633},{"x":1750612740741,"y":32.28},{"x":1750612680355,"y":37.222},{"x":1750612622883,"y":30.809},{"x":1750612562489,"y":31.061},{"x":1750612502117,"y":27.928},{"x":1750612441774,"y":35.643},{"x":1750612381398,"y":24.705},{"x":1750612321043,"y":29.444},{"x":1750612260652,"y":42.639},{"x":1750612200339,"y":30.976},{"x":1750612142864,"y":42.068},{"x":1750612082506,"y":32.622},{"x":1750612022163,"y":34.339},{"x":1750611961792,"y":28.384},{"x":1750611901451,"y":29.676},{"x":1750611841057,"y":39.405},{"x":1750611780697,"y":47.231},{"x":1750611720353,"y":59.155},{"x":1750611662873,"y":49.902},{"x":1750611602501,"y":48.853},{"x":1750611542137,"y":40.793},{"x":1750611481787,"y":31.519},{"x":1750611421421,"y":38.333},{"x":1750611361074,"y":44.472},{"x":1750611300670,"y":37.346},{"x":1750611240291,"y":50.792},{"x":1750611182847,"y":50.301},{"x":1750611122509,"y":42.591},{"x":1750611062171,"y":39.438},{"x":1750611001813,"y":36.27},{"x":1750610941456,"y":26.552},{"x":1750610881062,"y":23.97},{"x":1750610820632,"y":21.797},{"x":1750610760252,"y":27.299},{"x":1750610702806,"y":27.724},{"x":1750610642471,"y":34.628},{"x":1750610582115,"y":31.672},{"x":1750610521789,"y":46.18},{"x":1750610461445,"y":44.327},{"x":1750610401084,"y":52.012},{"x":1750610340737,"y":50.115},{"x":1750610280400,"y":51.667},{"x":1750610222977,"y":33.071},{"x":1750610162621,"y":41.445},{"x":1750610102250,"y":35.703},{"x":1750610041875,"y":30.582},{"x":1750609981504,"y":36.508},{"x":1750609921179,"y":21.65},{"x":1750609860792,"y":32.914},{"x":1750609800429,"y":24.142},{"x":1750609742940,"y":23.394},{"x":1750609682578,"y":22.954},{"x":1750609622214,"y":30.435},{"x":1750609561800,"y":31.084},{"x":1750609501458,"y":18.703},{"x":1750609441078,"y":31.24},{"x":1750609380688,"y":24.001},{"x":1750609320315,"y":22.276},{"x":1750609262888,"y":22.097},{"x":1750609202505,"y":35.576},{"x":1750609142139,"y":38.639},{"x":1750609081797,"y":51.43},{"x":1750609021451,"y":43.027},{"x":1750608961087,"y":30.622},{"x":1750608900753,"y":21.653},{"x":1750608840343,"y":23.299},{"x":1750608782926,"y":33.571},{"x":1750608722539,"y":35.08},{"x":1750608662188,"y":19.746},{"x":1750608601824,"y":19.697},{"x":1750608541462,"y":30.278},{"x":1750608481116,"y":39.502},{"x":1750608420770,"y":35.499},{"x":1750608360415,"y":37.013},{"x":1750608302993,"y":36.702},{"x":1750608242604,"y":41.617},{"x":1750608182241,"y":34.349},{"x":1750608121878,"y":42.717},{"x":1750608061517,"y":25.258},{"x":1750608001123,"y":31.279},{"x":1750607940650,"y":34.817},{"x":1750607880282,"y":41.131},{"x":1750607822821,"y":45.118},{"x":1750607762465,"y":22.885},{"x":1750607702092,"y":24.393},{"x":1750607641719,"y":23.656},{"x":1750607581372,"y":26.403},{"x":1750607521033,"y":27.0},{"x":1750607460625,"y":31.0},{"x":1750607400274,"y":28.17},{"x":1750607342828,"y":27.982},{"x":1750607282407,"y":20.411},{"x":1750607221981,"y":19.065},{"x":1750607161597,"y":17.258},{"x":1750607101225,"y":13.171},{"x":1750607040855,"y":22.726},{"x":1750606980514,"y":30.943},{"x":1750606920176,"y":26.277},{"x":1750606862715,"y":29.476},{"x":1750606802367,"y":26.985},{"x":1750606741991,"y":29.551},{"x":1750606681654,"y":33.489},{"x":1750606621287,"y":45.763},{"x":1750606560894,"y":43.413},{"x":1750606500571,"y":58.279},{"x":1750606440197,"y":40.432},{"x":1750606382698,"y":32.53},{"x":1750606322331,"y":22.567},{"x":1750606261971,"y":20.319},{"x":1750606201640,"y":24.619},{"x":1750606141283,"y":23.56},{"x":1750606080890,"y":24.377},{"x":1750606020530,"y":43.871},{"x":1750605960157,"y":27.25},{"x":1750605902727,"y":30.133},{"x":1750605842377,"y":28.45},{"x":1750605781953,"y":24.979},{"x":1750605721597,"y":20.312},{"x":1750605661260,"y":33.874},{"x":1750605600814,"y":23.673},{"x":1750605540426,"y":18.991},{"x":1750605482991,"y":19.568},{"x":1750605422618,"y":30.626},{"x":1750605362220,"y":41.621},{"x":1750605301847,"y":30.37},{"x":1750605241457,"y":32.799},{"x":1750605181079,"y":23.057},{"x":1750605120677,"y":17.51},{"x":1750605060289,"y":20.243},{"x":1750605002811,"y":21.139},{"x":1750604942389,"y":20.259},{"x":1750604882022,"y":18.339},{"x":1750604821635,"y":15.906},{"x":1750604761261,"y":17.82},{"x":1750604700877,"y":16.76},{"x":1750604640530,"y":23.126},{"x":1750604580142,"y":27.463},{"x":1750604522707,"y":12.113},{"x":1750604462328,"y":6.893},{"x":1750604401937,"y":17.883},{"x":1750604341550,"y":18.903},{"x":1750604281142,"y":24.183},{"x":1750604220759,"y":33.018},{"x":1750604160375,"y":42.331},{"x":1750604102882,"y":43.127},{"x":1750604042519,"y":63.114},{"x":1750603982131,"y":51.206},{"x":1750603921759,"y":27.029},{"x":1750603861378,"y":33.853},{"x":1750603800993,"y":23.46},{"x":1750603740602,"y":23.13},{"x":1750603680144,"y":15.893},{"x":1750603622696,"y":15.673},{"x":1750603562326,"y":12.64},{"x":1750603501945,"y":32.657},{"x":1750603441547,"y":28.878},{"x":1750603381141,"y":24.216},{"x":1750603320729,"y":24.076},{"x":1750603260339,"y":16.365},{"x":1750603202843,"y":15.11},{"x":1750603142465,"y":17.924},{"x":1750603082089,"y":19.7},{"x":1750603021686,"y":11.109},{"x":1750602961338,"y":27.827},{"x":1750602900920,"y":39.641},{"x":1750602840548,"y":23.219},{"x":1750602780108,"y":15.509},{"x":1750602722638,"y":17.21},{"x":1750602662245,"y":20.007},{"x":1750602601843,"y":16.051},{"x":1750602541451,"y":27.132},{"x":1750602481016,"y":12.402},{"x":1750602420596,"y":11.372},{"x":1750602360118,"y":40.568},{"x":1750602302696,"y":28.309},{"x":1750602242304,"y":6.689},{"x":1750602181926,"y":32.166},{"x":1750602121559,"y":23.972},{"x":1750602061190,"y":15.327},{"x":1750602000817,"y":18.701},{"x":1750601940408,"y":14.679},{"x":1750601882936,"y":20.804},{"x":1750601822557,"y":3.803},{"x":1750601762160,"y":21.405},{"x":1750601701816,"y":17.233},{"x":1750601641389,"y":24.25},{"x":1750601581008,"y":26.204},{"x":1750601520582,"y":42.741},{"x":1750601460177,"y":36.046},{"x":1750601402735,"y":26.507},{"x":1750601342362,"y":34.49},{"x":1750601281984,"y":28.847},{"x":1750601221600,"y":20.305},{"x":1750601161230,"y":11.771},{"x":1750601100825,"y":18.494},{"x":1750601040470,"y":15.928},{"x":1750600983008,"y":26.804},{"x":1750600922619,"y":39.109},{"x":1750600862259,"y":31.549},{"x":1750600801798,"y":21.392},{"x":1750600741366,"y":19.677},{"x":1750600680995,"y":16.885},{"x":1750600620637,"y":23.497},{"x":1750600560244,"y":12.872},{"x":1750600502773,"y":25.31},{"x":1750600442420,"y":18.867},{"x":1750600382059,"y":10.097},{"x":1750600321695,"y":7.418},{"x":1750600261323,"y":19.759},{"x":1750600200917,"y":33.564},{"x":1750600140532,"y":19.147},{"x":1750600080072,"y":20.967},{"x":1750600022557,"y":9.7},{"x":1750599962170,"y":17.011},{"x":1750599901811,"y":51.151},{"x":1750599841448,"y":26.899},{"x":1750599781089,"y":27.975},{"x":1750599720724,"y":39.194},{"x":1750599660392,"y":37.222},{"x":1750599602973,"y":14.081},{"x":1750599542620,"y":14.752},{"x":1750599482245,"y":19.635},{"x":1750599421879,"y":31.632},{"x":1750599361533,"y":30.388},{"x":1750599301162,"y":37.443},{"x":1750599240755,"y":32.981},{"x":1750599180402,"y":31.643},{"x":1750599122866,"y":10.133},{"x":1750599062516,"y":7.458},{"x":1750599002132,"y":13.672},{"x":1750598941759,"y":36.317},{"x":1750598881383,"y":25.771},{"x":1750598821022,"y":19.185},{"x":1750598760659,"y":21.469},{"x":1750598700317,"y":20.643},{"x":1750598642887,"y":12.303},{"x":1750598582475,"y":26.615},{"x":1750598522094,"y":40.014},{"x":1750598461698,"y":17.406},{"x":1750598401298,"y":14.494},{"x":1750598340924,"y":27.219},{"x":1750598280548,"y":15.006},{"x":1750598220152,"y":28.548},{"x":1750598162742,"y":30.93},{"x":1750598102406,"y":23.134},{"x":1750598041994,"y":23.69},{"x":1750597981632,"y":13.311},{"x":1750597921253,"y":3.225},{"x":1750597860883,"y":11.37},{"x":1750597800461,"y":17.913},{"x":1750597742865,"y":7.39},{"x":1750597682499,"y":14.451},{"x":1750597622131,"y":28.257},{"x":1750597561763,"y":11.628},{"x":1750597501399,"y":11.884},{"x":1750597441034,"y":25.995},{"x":1750597380604,"y":34.607},{"x":1750597320270,"y":35.416},{"x":1750597262802,"y":21.252},{"x":1750597202425,"y":40.215},{"x":1750597142053,"y":22.262},{"x":1750597081678,"y":17.1},{"x":1750597021342,"y":29.064},{"x":1750596960936,"y":17.841},{"x":1750596900527,"y":28.087},{"x":1750596840159,"y":27.897},{"x":1750596782740,"y":33.937},{"x":1750596722396,"y":36.418},{"x":1750596662022,"y":24.788},{"x":1750596601666,"y":16.154},{"x":1750596541312,"y":18.367},{"x":1750596480797,"y":8.04},{"x":1750596420363,"y":16.932},{"x":1750596362960,"y":25.941},{"x":1750596302616,"y":37.325},{"x":1750596242259,"y":31.383},{"x":1750596181909,"y":36.576},{"x":1750596121480,"y":34.913},{"x":1750596061107,"y":26.927},{"x":1750596000740,"y":12.973},{"x":1750595940380,"y":17.853},{"x":1750595882894,"y":9.076},{"x":1750595822545,"y":12.779},{"x":1750595762216,"y":20.718},{"x":1750595701879,"y":18.303},{"x":1750595641526,"y":29.296},{"x":1750595581115,"y":37.87},{"x":1750595520775,"y":36.09},{"x":1750595460407,"y":20.572},{"x":1750595403048,"y":19.001},{"x":1750595342670,"y":9.053},{"x":1750595282285,"y":16.648},{"x":1750595221898,"y":23.497},{"x":1750595161544,"y":36.111},{"x":1750595101194,"y":38.532},{"x":1750595040788,"y":28.592},{"x":1750594980395,"y":24.451},{"x":1750594922937,"y":23.7},{"x":1750594862566,"y":26.517},{"x":1750594802178,"y":32.033},{"x":1750594741822,"y":17.0},{"x":1750594681460,"y":27.216},{"x":1750594621029,"y":6.663},{"x":1750594560665,"y":8.43},{"x":1750594500295,"y":1.144},{"x":1750594442839,"y":26.325},{"x":1750594382484,"y":31.138},{"x":1750594322129,"y":12.311},{"x":1750594261789,"y":8.64},{"x":1750594201430,"y":4.858},{"x":1750594141077,"y":27.595},{"x":1750594080697,"y":47.384},{"x":1750594020348,"y":33.496},{"x":1750593962888,"y":47.848},{"x":1750593902556,"y":51.499},{"x":1750593842132,"y":17.01},{"x":1750593781754,"y":35.139},{"x":1750593721395,"y":45.355},{"x":1750593660947,"y":24.227},{"x":1750593600588,"y":34.678},{"x":1750593540134,"y":31.449},{"x":1750593482695,"y":23.09},{"x":1750593422328,"y":10.755},{"x":1750593361944,"y":20.054},{"x":1750593301512,"y":24.753},{"x":1750593241096,"y":7.264},{"x":1750593180731,"y":14.142},{"x":1750593120383,"y":23.958},{"x":1750593062953,"y":40.635},{"x":1750593002599,"y":36.879},{"x":1750592942238,"y":23.967},{"x":1750592881732,"y":25.297},{"x":1750592821300,"y":27.599},{"x":1750592760928,"y":-0.534},{"x":1750592700550,"y":23.397},{"x":1750592640117,"y":2.712},{"x":1750592582694,"y":15.414},{"x":1750592522305,"y":27.849},{"x":1750592461926,"y":33.989},{"x":1750592401540,"y":23.153},{"x":1750592341188,"y":23.109},{"x":1750592280811,"y":5.987},{"x":1750592220435,"y":25.337},{"x":1750592163079,"y":20.488},{"x":1750592102678,"y":18.903},{"x":1750592042294,"y":18.006},{"x":1750591981920,"y":21.427},{"x":1750591921570,"y":29.146},{"x":1750591861224,"y":44.629},{"x":1750591800868,"y":47.013},{"x":1750591740468,"y":43.147},{"x":1750591680130,"y":36.404},{"x":1750591622700,"y":27.627},{"x":1750591562285,"y":18.437},{"x":1750591501911,"y":32.17},{"x":1750591441562,"y":33.215},{"x":1750591381217,"y":23.83},{"x":1750591320828,"y":52.785},{"x":1750591260485,"y":40.614},{"x":1750591200119,"y":37.643},{"x":1750591142653,"y":22.674},{"x":1750591082300,"y":27.148},{"x":1750591021936,"y":37.791},{"x":1750590961576,"y":25.619},{"x":1750590901246,"y":31.947},{"x":1750590840875,"y":37.025},{"x":1750590780529,"y":26.213},{"x":1750590720124,"y":23.721},{"x":1750590662676,"y":25.276},{"x":1750590602293,"y":32.251},{"x":1750590541904,"y":36.134},{"x":1750590481529,"y":33.296},{"x":1750590421136,"y":32.443},{"x":1750590360762,"y":38.034},{"x":1750590300744,"y":40.274},{"x":1750590243002,"y":27.451},{"x":1750590182621,"y":41.487},{"x":1750590122238,"y":30.289},{"x":1750590061824,"y":47.534},{"x":1750590001376,"y":44.369},{"x":1750589940935,"y":34.33},{"x":1750589880534,"y":39.707},{"x":1750589820123,"y":39.952},{"x":1750589762694,"y":41.846},{"x":1750589702315,"y":25.627},{"x":1750589641963,"y":29.437},{"x":1750589581584,"y":25.171},{"x":1750589521225,"y":34.247},{"x":1750589460815,"y":52.919},{"x":1750589400416,"y":46.177},{"x":1750589343008,"y":33.428},{"x":1750589282555,"y":34.343},{"x":1750589222128,"y":61.389},{"x":1750589161763,"y":45.374},{"x":1750589101391,"y":31.417},{"x":1750589041033,"y":33.927},{"x":1750588980688,"y":45.766},{"x":1750588920340,"y":63.617},{"x":1750588862932,"y":63.306},{"x":1750588802572,"y":54.285},{"x":1750588742221,"y":56.382},{"x":1750588681857,"y":33.954},{"x":1750588621512,"y":28.994},{"x":1750588561169,"y":42.836},{"x":1750588500779,"y":27.482},{"x":1750588440408,"y":28.084},{"x":1750588382903,"y":28.351},{"x":1750588322560,"y":23.948},{"x":1750588262192,"y":24.794},{"x":1750588201849,"y":53.281},{"x":1750588141471,"y":59.562},{"x":1750588081121,"y":47.36},{"x":1750588020768,"y":53.522},{"x":1750587960431,"y":38.408},{"x":1750587902984,"y":33.5},{"x":1750587842595,"y":20.343},{"x":1750587782247,"y":30.55},{"x":1750587721843,"y":28.744},{"x":1750587661499,"y":40.204},{"x":1750587601080,"y":37.821},{"x":1750587540719,"y":32.856},{"x":1750587480381,"y":39.141},{"x":1750587422988,"y":48.244},{"x":1750587362628,"y":47.057},{"x":1750587302268,"y":48.628},{"x":1750587241909,"y":55.783},{"x":1750587181557,"y":43.717},{"x":1750587121198,"y":40.902},{"x":1750587060807,"y":40.517},{"x":1750587000462,"y":41.069},{"x":1750586943019,"y":56.527},{"x":1750586882599,"y":40.156},{"x":1750586822257,"y":39.094},{"x":1750586761874,"y":45.374},{"x":1750586701503,"y":54.777},{"x":1750586641093,"y":51.054},{"x":1750586580732,"y":57.294},{"x":1750586520334,"y":54.994},{"x":1750586462935,"y":49.46},{"x":1750586402573,"y":37.217},{"x":1750586342187,"y":57.415},{"x":1750586281792,"y":45.192},{"x":1750586221395,"y":52.213},{"x":1750586161037,"y":42.706},{"x":1750586100630,"y":52.176},{"x":1750586040239,"y":37.514},{"x":1750585982763,"y":49.683},{"x":1750585922422,"y":37.898},{"x":1750585861973,"y":54.451},{"x":1750585801613,"y":54.515},{"x":1750585741265,"y":44.496},{"x":1750585680836,"y":54.152},{"x":1750585620372,"y":47.328},{"x":1750585562982,"y":47.721},{"x":1750585502636,"y":54.27},{"x":1750585442254,"y":35.863},{"x":1750585381882,"y":45.352},{"x":1750585321513,"y":52.542},{"x":1750585261133,"y":46.087},{"x":1750585200736,"y":64.52},{"x":1750585140332,"y":51.299},{"x":1750585082922,"y":69.608},{"x":1750585022548,"y":63.663},{"x":1750584962188,"y":61.149},{"x":1750584901805,"y":63.02},{"x":1750584841460,"y":63.752},{"x":1750584781115,"y":60.539},{"x":1750584720754,"y":66.34},{"x":1750584660411,"y":62.645},{"x":1750584602974,"y":53.348},{"x":1750584542596,"y":55.686},{"x":1750584482214,"y":73.092},{"x":1750584421846,"y":61.371},{"x":1750584361474,"y":40.889},{"x":1750584301126,"y":41.715},{"x":1750584240751,"y":53.499},{"x":1750584180378,"y":31.629},{"x":1750584122987,"y":36.09},{"x":1750584062594,"y":33.281},{"x":1750584002233,"y":39.945},{"x":1750583941880,"y":35.094},{"x":1750583881488,"y":39.1},{"x":1750583821120,"y":44.142},{"x":1750583760766,"y":66.944},{"x":1750583700389,"y":65.548},{"x":1750583642938,"y":64.729},{"x":1750583582523,"y":76.331},{"x":1750583522150,"y":54.525},{"x":1750583461790,"y":38.566},{"x":1750583401438,"y":41.995},{"x":1750583341075,"y":51.247},{"x":1750583280695,"y":48.611},{"x":1750583220333,"y":49.936},{"x":1750583162853,"y":52.219},{"x":1750583102473,"y":48.828},{"x":1750583042100,"y":55.042},{"x":1750582981692,"y":46.645},{"x":1750582921339,"y":38.788},{"x":1750582860883,"y":31.179},{"x":1750582800508,"y":42.43},{"x":1750582742989,"y":41.334},{"x":1750582682639,"y":61.957},{"x":1750582622280,"y":42.643},{"x":1750582561881,"y":38.466},{"x":1750582501493,"y":37.324},{"x":1750582441125,"y":37.424},{"x":1750582380733,"y":37.488},{"x":1750582320378,"y":63.176},{"x":1750582262917,"y":54.348},{"x":1750582202560,"y":51.441},{"x":1750582142226,"y":48.542},{"x":1750582081733,"y":50.178},{"x":1750582021280,"y":33.262},{"x":1750581960879,"y":30.089},{"x":1750581900527,"y":41.399},{"x":1750581840137,"y":34.475},{"x":1750581782731,"y":41.01},{"x":1750581722367,"y":42.246},{"x":1750581662009,"y":39.997},{"x":1750581601636,"y":33.625},{"x":1750581541231,"y":22.195},{"x":1750581480878,"y":21.614},{"x":1750581420536,"y":32.013},{"x":1750581360174,"y":31.71},{"x":1750581302740,"y":33.599},{"x":1750581242404,"y":41.454},{"x":1750581182057,"y":42.828},{"x":1750581121694,"y":27.938},{"x":1750581061330,"y":21.026},{"x":1750581000962,"y":21.774},{"x":1750580940590,"y":28.777},{"x":1750580880235,"y":34.417},{"x":1750580822824,"y":35.082},{"x":1750580762492,"y":28.381},{"x":1750580702140,"y":31.946},{"x":1750580641795,"y":24.715},{"x":1750580581459,"y":27.04},{"x":1750580521100,"y":31.14},{"x":1750580460747,"y":34.859},{"x":1750580400448,"y":42.709},{"x":1750580342953,"y":47.048},{"x":1750580282608,"y":40.756},{"x":1750580222234,"y":40.494},{"x":1750580161869,"y":47.868},{"x":1750580101495,"y":50.909},{"x":1750580041144,"y":26.248},{"x":1750579980764,"y":27.141},{"x":1750579920409,"y":27.28},{"x":1750579862967,"y":28.623},{"x":1750579802599,"y":40.047},{"x":1750579742265,"y":47.833},{"x":1750579681914,"y":37.833},{"x":1750579621551,"y":33.854},{"x":1750579561181,"y":40.16},{"x":1750579500801,"y":31.745},{"x":1750579440464,"y":28.737},{"x":1750579382995,"y":51.796},{"x":1750579322604,"y":41.103},{"x":1750579262265,"y":38.684},{"x":1750579201861,"y":40.382},{"x":1750579141459,"y":39.26},{"x":1750579081091,"y":40.547},{"x":1750579020737,"y":40.047},{"x":1750578960391,"y":27.909},{"x":1750578902905,"y":28.819},{"x":1750578842555,"y":30.372},{"x":1750578782183,"y":33.279},{"x":1750578721822,"y":33.639},{"x":1750578661491,"y":34.584},{"x":1750578601120,"y":27.71},{"x":1750578540738,"y":25.133},{"x":1750578480386,"y":21.109},{"x":1750578422854,"y":25.032},{"x":1750578362484,"y":24.369},{"x":1750578302127,"y":44.565},{"x":1750578241756,"y":32.864},{"x":1750578181391,"y":28.505},{"x":1750578121023,"y":33.352},{"x":1750578060651,"y":55.5},{"x":1750578000276,"y":53.836},{"x":1750577942855,"y":53.604},{"x":1750577882505,"y":51.81},{"x":1750577822134,"y":40.181},{"x":1750577761791,"y":27.651},{"x":1750577701429,"y":29.222},{"x":1750577641072,"y":32.929},{"x":1750577580719,"y":35.219},{"x":1750577520387,"y":48.567},{"x":1750577462941,"y":39.335},{"x":1750577402538,"y":50.196},{"x":1750577342183,"y":35.919},{"x":1750577281808,"y":40.145},{"x":1750577221452,"y":31.868},{"x":1750577161116,"y":30.929},{"x":1750577100746,"y":21.758},{"x":1750577040400,"y":32.148},{"x":1750576982946,"y":40.716},{"x":1750576922588,"y":29.345},{"x":1750576862246,"y":34.109},{"x":1750576801830,"y":48.102},{"x":1750576741485,"y":20.734},{"x":1750576681129,"y":22.991},{"x":1750576620759,"y":20.309},{"x":1750576560390,"y":33.159},{"x":1750576502927,"y":27.608},{"x":1750576442588,"y":27.404},{"x":1750576382198,"y":21.497},{"x":1750576321812,"y":18.418},{"x":1750576261447,"y":22.468},{"x":1750576201071,"y":16.841},{"x":1750576140688,"y":23.893},{"x":1750576080319,"y":31.262},{"x":1750576022878,"y":25.617},{"x":1750575962532,"y":38.556},{"x":1750575902146,"y":35.79},{"x":1750575841776,"y":60.71},{"x":1750575781425,"y":58.038},{"x":1750575721053,"y":70.806},{"x":1750575660676,"y":66.004},{"x":1750575600415,"y":70.369},{"x":1750575542814,"y":42.057},{"x":1750575482436,"y":43.704},{"x":1750575422074,"y":30.768},{"x":1750575361692,"y":43.937},{"x":1750575301312,"y":47.819},{"x":1750575240943,"y":55.273},{"x":1750575180580,"y":38.259},{"x":1750575120210,"y":40.785},{"x":1750575062795,"y":38.651},{"x":1750575002475,"y":39.282},{"x":1750574942048,"y":26.734},{"x":1750574881697,"y":30.784},{"x":1750574821270,"y":26.846},{"x":1750574760902,"y":42.287},{"x":1750574700551,"y":47.772},{"x":1750574640053,"y":38.144},{"x":1750574582670,"y":40.838},{"x":1750574522294,"y":43.337},{"x":1750574461903,"y":34.927},{"x":1750574401563,"y":33.459},{"x":1750574341214,"y":41.723},{"x":1750574280842,"y":51.733},{"x":1750574220498,"y":36.847},{"x":1750574163087,"y":50.627},{"x":1750574102670,"y":46.485},{"x":1750574042319,"y":37.175},{"x":1750573981959,"y":35.483},{"x":1750573921560,"y":35.976},{"x":1750573861209,"y":42.958},{"x":1750573800800,"y":39.567},{"x":1750573740354,"y":42.522},{"x":1750573682952,"y":35.393},{"x":1750573622585,"y":29.192},{"x":1750573562229,"y":37.981},{"x":1750573501834,"y":31.629},{"x":1750573441466,"y":27.978},{"x":1750573381109,"y":24.761},{"x":1750573320751,"y":23.352},{"x":1750573260390,"y":24.351},{"x":1750573203017,"y":26.936},{"x":1750573142619,"y":24.363},{"x":1750573082254,"y":30.648},{"x":1750573021891,"y":44.887},{"x":1750572961540,"y":37.331},{"x":1750572901213,"y":41.543},{"x":1750572840848,"y":45.817},{"x":1750572780480,"y":41.847},{"x":1750572720130,"y":28.006},{"x":1750572662728,"y":20.776},{"x":1750572602375,"y":21.04},{"x":1750572542037,"y":31.158},{"x":1750572481690,"y":19.571},{"x":1750572421318,"y":31.985},{"x":1750572360950,"y":35.177},{"x":1750572300586,"y":36.482},{"x":1750572240226,"y":47.963},{"x":1750572182747,"y":36.24},{"x":1750572122332,"y":29.512},{"x":1750572061940,"y":38.259},{"x":1750572001554,"y":39.069},{"x":1750571941087,"y":39.801},{"x":1750571880731,"y":49.91},{"x":1750571820343,"y":34.084},{"x":1750571762885,"y":33.978},{"x":1750571702508,"y":25.693},{"x":1750571642151,"y":32.089},{"x":1750571581783,"y":31.662},{"x":1750571521422,"y":22.684},{"x":1750571461042,"y":21.463},{"x":1750571400673,"y":34.597},{"x":1750571340304,"y":22.281},{"x":1750571282836,"y":21.989},{"x":1750571222385,"y":24.562},{"x":1750571162035,"y":33.82},{"x":1750571101756,"y":50.513},{"x":1750571041371,"y":51.991},{"x":1750570981015,"y":52.072},{"x":1750570920649,"y":51.891},{"x":1750570860292,"y":32.956},{"x":1750570802852,"y":25.377},{"x":1750570742466,"y":26.876},{"x":1750570682073,"y":35.766},{"x":1750570621682,"y":33.522},{"x":1750570561289,"y":31.618},{"x":1750570500914,"y":29.707},{"x":1750570440540,"y":29.974},{"x":1750570380170,"y":31.524},{"x":1750570322640,"y":29.632},{"x":1750570262260,"y":27.465},{"x":1750570201873,"y":20.371},{"x":1750570141485,"y":22.77},{"x":1750570081119,"y":26.134},{"x":1750570020729,"y":26.359},{"x":1750569960314,"y":25.292},{"x":1750569902889,"y":28.437},{"x":1750569842455,"y":27.672},{"x":1750569782081,"y":25.343},{"x":1750569721668,"y":27.349},{"x":1750569661310,"y":28.998},{"x":1750569600955,"y":32.283},{"x":1750569540552,"y":45.737},{"x":1750569480205,"y":44.963},{"x":1750569422726,"y":44.94},{"x":1750569362307,"y":48.008},{"x":1750569301937,"y":28.793},{"x":1750569241568,"y":22.865},{"x":1750569181210,"y":23.315},{"x":1750569120832,"y":31.925},{"x":1750569060457,"y":34.027},{"x":1750569002992,"y":38.198},{"x":1750568942646,"y":37.208},{"x":1750568882257,"y":34.142},{"x":1750568821878,"y":43.075},{"x":1750568761509,"y":24.795},{"x":1750568701128,"y":21.971},{"x":1750568640751,"y":32.894},{"x":1750568580378,"y":31.745},{"x":1750568522940,"y":34.358},{"x":1750568462583,"y":36.099},{"x":1750568402229,"y":34.201},{"x":1750568341848,"y":26.01},{"x":1750568281485,"y":24.992},{"x":1750568221127,"y":26.158},{"x":1750568160744,"y":27.425},{"x":1750568100304,"y":24.94},{"x":1750568042871,"y":23.443},{"x":1750567982506,"y":26.003},{"x":1750567922156,"y":23.379},{"x":1750567861786,"y":28.148},{"x":1750567801448,"y":26.415},{"x":1750567741095,"y":36.021},{"x":1750567680688,"y":45.743},{"x":1750567620264,"y":43.361},{"x":1750567562803,"y":43.556},{"x":1750567502469,"y":49.214},{"x":1750567442109,"y":48.066},{"x":1750567381762,"y":27.043},{"x":1750567321388,"y":28.067},{"x":1750567261022,"y":37.952},{"x":1750567200644,"y":36.834},{"x":1750567140303,"y":40.016},{"x":1750567082849,"y":39.038},{"x":1750567022502,"y":32.857},{"x":1750566962161,"y":33.964},{"x":1750566901784,"y":24.763},{"x":1750566841398,"y":28.517},{"x":1750566781004,"y":36.579},{"x":1750566720671,"y":39.948},{"x":1750566660302,"y":39.92},{"x":1750566602843,"y":39.686},{"x":1750566542461,"y":37.01},{"x":1750566482115,"y":36.258},{"x":1750566421749,"y":36.553},{"x":1750566361374,"y":33.558},{"x":1750566301000,"y":33.525},{"x":1750566240629,"y":29.762},{"x":1750566180272,"y":27.257},{"x":1750566122843,"y":28.518},{"x":1750566062483,"y":27.059},{"x":1750566002101,"y":25.358},{"x":1750565941697,"y":25.098},{"x":1750565881339,"y":26.589},{"x":1750565820955,"y":24.192},{"x":1750565760528,"y":25.14},{"x":1750565700219,"y":36.091},{"x":1750565642731,"y":35.541},{"x":1750565582380,"y":33.241},{"x":1750565522012,"y":33.275},{"x":1750565461615,"y":44.469},{"x":1750565401248,"y":31.22},{"x":1750565340869,"y":27.803},{"x":1750565280521,"y":30.256},{"x":1750565223079,"y":25.863},{"x":1750565162670,"y":27.745},{"x":1750565102290,"y":30.238},{"x":1750565041925,"y":26.708},{"x":1750564981556,"y":25.478},{"x":1750564921191,"y":30.269},{"x":1750564860790,"y":24.761},{"x":1750564800230,"y":25.703},{"x":1750564742744,"y":25.381},{"x":1750564682363,"y":31.805},{"x":1750564621980,"y":29.857},{"x":1750564561624,"y":27.335},{"x":1750564501256,"y":39.926},{"x":1750564440884,"y":40.798},{"x":1750564380520,"y":51.591},{"x":1750564320140,"y":48.869},{"x":1750564262710,"y":46.672},{"x":1750564202352,"y":33.45},{"x":1750564141984,"y":29.792},{"x":1750564081604,"y":28.433},{"x":1750564021174,"y":28.78},{"x":1750563960758,"y":30.651},{"x":1750563900431,"y":30.814},{"x":1750563842893,"y":29.708},{"x":1750563782561,"y":28.712},{"x":1750563722206,"y":31.614},{"x":1750563661868,"y":29.25},{"x":1750563601463,"y":28.52},{"x":1750563541089,"y":27.427},{"x":1750563480689,"y":28.83},{"x":1750563420329,"y":29.884},{"x":1750563362847,"y":32.988},{"x":1750563302477,"y":30.497},{"x":1750563242119,"y":26.322},{"x":1750563181700,"y":24.853},{"x":1750563121337,"y":25.938},{"x":1750563060895,"y":25.964},{"x":1750563000496,"y":25.954},{"x":1750562943020,"y":26.289},{"x":1750562882664,"y":39.397},{"x":1750562822305,"y":36.993},{"x":1750562761926,"y":35.092},{"x":1750562701574,"y":36.266},{"x":1750562641194,"y":33.097},{"x":1750562580794,"y":32.337},{"x":1750562520420,"y":44.827},{"x":1750562462908,"y":36.699},{"x":1750562402549,"y":38.393},{"x":1750562342172,"y":35.38},{"x":1750562281807,"y":38.008},{"x":1750562221436,"y":38.535},{"x":1750562161098,"y":36.893},{"x":1750562100727,"y":39.895},{"x":1750562040388,"y":32.94},{"x":1750561982871,"y":28.775},{"x":1750561922516,"y":27.883},{"x":1750561862138,"y":27.077},{"x":1750561801748,"y":27.644},{"x":1750561741382,"y":28.586},{"x":1750561680977,"y":29.988},{"x":1750561620629,"y":37.529},{"x":1750561560276,"y":36.964},{"x":1750561502815,"y":41.099},{"x":1750561442359,"y":40.195},{"x":1750561382823,"y":30.003},{"x":1750561322793,"y":33.033},{"x":1750561261984,"y":27.864},{"x":1750561202995,"y":27.574},{"x":1750561142589,"y":27.124},{"x":1750561082190,"y":27.129},{"x":1750561021829,"y":28.933},{"x":1750560961466,"y":29.456},{"x":1750560901074,"y":32.569},{"x":1750560840722,"y":30.649},{"x":1750560780402,"y":29.375},{"x":1750560723009,"y":28.473},{"x":1750560662646,"y":26.88},{"x":1750560602287,"y":29.461},{"x":1750560541936,"y":26.643},{"x":1750560481517,"y":26.675},{"x":1750560421057,"y":35.423},{"x":1750560360684,"y":34.301},{"x":1750560300333,"y":35.078},{"x":1750560242784,"y":43.045},{"x":1750560182418,"y":32.234},{"x":1750560122021,"y":33.217},{"x":1750560061626,"y":32.867},{"x":1750560001260,"y":33.307},{"x":1750559940894,"y":31.047},{"x":1750559880521,"y":31.639},{"x":1750559820116,"y":34.356},{"x":1750559762699,"y":39.199},{"x":1750559702329,"y":36.305},{"x":1750559641961,"y":36.77},{"x":1750559581583,"y":37.106},{"x":1750559521206,"y":37.956},{"x":1750559460848,"y":31.12},{"x":1750559400495,"y":27.282},{"x":1750559340169,"y":32.432},{"x":1750559282718,"y":33.075},{"x":1750559222361,"y":32.076},{"x":1750559161971,"y":29.907},{"x":1750559101597,"y":27.732},{"x":1750559041222,"y":29.615},{"x":1750558980856,"y":26.226},{"x":1750558920428,"y":27.37},{"x":1750558862966,"y":29.963},{"x":1750558802592,"y":34.297},{"x":1750558742241,"y":32.846},{"x":1750558681882,"y":37.892},{"x":1750558621518,"y":37.413},{"x":1750558561138,"y":38.063},{"x":1750558500778,"y":31.928},{"x":1750558440418,"y":32.86},{"x":1750558382915,"y":30.781},{"x":1750558322554,"y":30.062},{"x":1750558262203,"y":32.637},{"x":1750558201787,"y":26.243},{"x":1750558141401,"y":31.372},{"x":1750558080992,"y":30.745},{"x":1750558020637,"y":34.082},{"x":1750557960253,"y":35.383},{"x":1750557902808,"y":33.636},{"x":1750557842410,"y":32.894},{"x":1750557782057,"y":35.755},{"x":1750557721666,"y":32.17},{"x":1750557661294,"y":30.213},{"x":1750557600949,"y":31.599},{"x":1750557540478,"y":33.126},{"x":1750557480096,"y":30.65},{"x":1750557422687,"y":38.408},{"x":1750557362301,"y":39.45},{"x":1750557301871,"y":48.643},{"x":1750557241499,"y":48.761},{"x":1750557181127,"y":48.33},{"x":1750557120743,"y":39.145},{"x":1750557060393,"y":35.667},{"x":1750557002959,"y":31.463},{"x":1750556942584,"y":28.401},{"x":1750556882150,"y":27.845},{"x":1750556821734,"y":29.553},{"x":1750556761355,"y":31.182},{"x":1750556700976,"y":27.381},{"x":1750556640555,"y":36.204},{"x":1750556582947,"y":43.595},{"x":1750556522592,"y":42.768},{"x":1750556462231,"y":40.52},{"x":1750556401855,"y":40.69},{"x":1750556341465,"y":43.715},{"x":1750556281117,"y":34.117},{"x":1750556220766,"y":35.246},{"x":1750556160396,"y":32.085},{"x":1750556102966,"y":39.342},{"x":1750556042582,"y":37.707},{"x":1750555982183,"y":37.513},{"x":1750555921782,"y":39.19},{"x":1750555861412,"y":34.909},{"x":1750555801000,"y":37.724},{"x":1750555740598,"y":32.188},{"x":1750555680234,"y":30.947},{"x":1750555622769,"y":31.968},{"x":1750555562411,"y":28.78},{"x":1750555501996,"y":31.679},{"x":1750555441615,"y":34.306},{"x":1750555381268,"y":30.921},{"x":1750555320903,"y":31.888},{"x":1750555260555,"y":33.237},{"x":1750555200135,"y":32.537},{"x":1750555142697,"y":30.984},{"x":1750555082330,"y":29.543},{"x":1750555021947,"y":32.818},{"x":1750554961561,"y":32.234},{"x":1750554901197,"y":31.151},{"x":1750554840836,"y":31.627},{"x":1750554780498,"y":30.26},{"x":1750554720099,"y":29.124},{"x":1750554662662,"y":29.24},{"x":1750554602305,"y":33.306},{"x":1750554541954,"y":35.533},{"x":1750554481598,"y":36.534},{"x":1750554421250,"y":34.837},{"x":1750554360847,"y":34.552},{"x":1750554300463,"y":34.936},{"x":1750554243033,"y":34.276},{"x":1750554182643,"y":34.829},{"x":1750554122307,"y":36.92},{"x":1750554061904,"y":30.038},{"x":1750554001572,"y":29.027},{"x":1750553941098,"y":30.041},{"x":1750553880730,"y":30.839},{"x":1750553820357,"y":42.41},{"x":1750553762917,"y":38.157},{"x":1750553702531,"y":52.043},{"x":1750553642176,"y":67.784},{"x":1750553581800,"y":51.256},{"x":1750553521420,"y":51.141},{"x":1750553461060,"y":41.545},{"x":1750553400660,"y":29.305},{"x":1750553340274,"y":29.546},{"x":1750553282663,"y":29.694},{"x":1750553222244,"y":33.161},{"x":1750553161861,"y":39.819},{"x":1750553101494,"y":40.848},{"x":1750553041114,"y":43.354},{"x":1750552980747,"y":44.174},{"x":1750552920389,"y":43.099},{"x":1750552862927,"y":34.75},{"x":1750552802577,"y":35.375},{"x":1750552742183,"y":33.02},{"x":1750552681814,"y":37.154},{"x":1750552621419,"y":36.929},{"x":1750552561059,"y":36.056},{"x":1750552500658,"y":32.685},{"x":1750552440287,"y":36.818},{"x":1750552382816,"y":47.718},{"x":1750552322441,"y":47.76},{"x":1750552262074,"y":48.128},{"x":1750552201726,"y":47.571},{"x":1750552141359,"y":42.954},{"x":1750552080985,"y":34.528},{"x":1750552020623,"y":43.311},{"x":1750551960251,"y":43.373},{"x":1750551902767,"y":40.797},{"x":1750551842392,"y":42.463},{"x":1750551781992,"y":38.866},{"x":1750551721637,"y":33.091},{"x":1750551661250,"y":29.564},{"x":1750551600850,"y":33.941},{"x":1750551540480,"y":39.5},{"x":1750551480094,"y":32.585},{"x":1750551422725,"y":33.842},{"x":1750551362363,"y":35.754},{"x":1750551301995,"y":31.119},{"x":1750551241603,"y":29.814},{"x":1750551181213,"y":46.81},{"x":1750551120798,"y":42.449},{"x":1750551060421,"y":42.347},{"x":1750551003005,"y":46.829},{"x":1750550942623,"y":46.701},{"x":1750550882245,"y":59.279},{"x":1750550821831,"y":43.941},{"x":1750550761480,"y":45.09},{"x":1750550701125,"y":56.012},{"x":1750550640736,"y":41.287},{"x":1750550580382,"y":41.679},{"x":1750550522876,"y":33.045},{"x":1750550462502,"y":33.858},{"x":1750550402128,"y":28.204},{"x":1750550341726,"y":35.845},{"x":1750550281347,"y":33.836},{"x":1750550220964,"y":35.459},{"x":1750550160595,"y":49.75},{"x":1750550100195,"y":35.708},{"x":1750550042716,"y":34.612},{"x":1750549982315,"y":32.346},{"x":1750549921928,"y":46.247},{"x":1750549861547,"y":52.33},{"x":1750549801183,"y":51.89},{"x":1750549740782,"y":47.752},{"x":1750549680337,"y":55.986},{"x":1750549622791,"y":40.1},{"x":1750549562420,"y":37.67},{"x":1750549502033,"y":35.954},{"x":1750549441632,"y":45.868},{"x":1750549381264,"y":36.811},{"x":1750549320870,"y":32.013},{"x":1750549260485,"y":39.307},{"x":1750549203042,"y":38.847},{"x":1750549142657,"y":38.872},{"x":1750549082278,"y":40.977},{"x":1750549021881,"y":39.835},{"x":1750548961462,"y":37.523},{"x":1750548901035,"y":41.468},{"x":1750548840658,"y":39.634},{"x":1750548780327,"y":38.629},{"x":1750548722840,"y":35.67},{"x":1750548662420,"y":35.098},{"x":1750548601979,"y":34.876},{"x":1750548541617,"y":35.512},{"x":1750548481204,"y":36.54},{"x":1750548420800,"y":33.137},{"x":1750548360515,"y":39.744},{"x":1750548300076,"y":40.161},{"x":1750548242648,"y":38.259},{"x":1750548182263,"y":41.651},{"x":1750548121872,"y":44.764},{"x":1750548061496,"y":40.26},{"x":1750548001109,"y":39.416},{"x":1750547940735,"y":36.885},{"x":1750547880392,"y":36.303},{"x":1750547822886,"y":33.632},{"x":1750547762521,"y":34.011},{"x":1750547702126,"y":36.885},{"x":1750547641681,"y":43.236},{"x":1750547581288,"y":42.722},{"x":1750547520846,"y":46.39},{"x":1750547460479,"y":53.552},{"x":1750547400110,"y":38.697},{"x":1750547342645,"y":39.533},{"x":1750547282264,"y":42.187},{"x":1750547221854,"y":38.414},{"x":1750547161487,"y":40.525},{"x":1750547101085,"y":41.981},{"x":1750547040684,"y":43.369},{"x":1750546980321,"y":49.867},{"x":1750546922922,"y":44.741},{"x":1750546862525,"y":45.83},{"x":1750546802122,"y":42.156},{"x":1750546741716,"y":52.793},{"x":1750546681346,"y":32.838},{"x":1750546620998,"y":48.737},{"x":1750546560594,"y":35.594},{"x":1750546500198,"y":37.977},{"x":1750546442722,"y":41.01},{"x":1750546382334,"y":35.175},{"x":1750546321942,"y":37.233},{"x":1750546261576,"y":32.867},{"x":1750546201192,"y":32.929},{"x":1750546140826,"y":35.34},{"x":1750546080389,"y":44.65},{"x":1750546022772,"y":34.666},{"x":1750545962396,"y":48.996},{"x":1750545902048,"y":33.019},{"x":1750545841633,"y":40.209},{"x":1750545781278,"y":40.621},{"x":1750545720895,"y":48.015},{"x":1750545660532,"y":46.467},{"x":1750545600118,"y":44.622},{"x":1750545542689,"y":43.953},{"x":1750545482317,"y":52.489},{"x":1750545421926,"y":51.385},{"x":1750545361544,"y":50.935},{"x":1750545301181,"y":63.088},{"x":1750545240781,"y":35.479},{"x":1750545180419,"y":32.416},{"x":1750545123011,"y":34.78},{"x":1750545062679,"y":32.545},{"x":1750545002262,"y":46.959},{"x":1750544941879,"y":36.56},{"x":1750544881524,"y":45.332},{"x":1750544821165,"y":42.999},{"x":1750544760758,"y":47.429},{"x":1750544700374,"y":41.338},{"x":1750544642915,"y":43.311},{"x":1750544582561,"y":36.249},{"x":1750544522197,"y":37.233},{"x":1750544461818,"y":41.293},{"x":1750544401459,"y":57.014},{"x":1750544341073,"y":52.676},{"x":1750544280696,"y":46.08},{"x":1750544220347,"y":53.263},{"x":1750544162881,"y":46.934},{"x":1750544102494,"y":53.113},{"x":1750544042094,"y":61.628},{"x":1750543981725,"y":48.83},{"x":1750543921327,"y":49.336},{"x":1750543860910,"y":42.993},{"x":1750543800503,"y":48.53},{"x":1750543742990,"y":48.313},{"x":1750543682571,"y":38.873},{"x":1750543622207,"y":38.99},{"x":1750543561790,"y":46.975},{"x":1750543501392,"y":42.646},{"x":1750543441028,"y":36.962},{"x":1750543380649,"y":37.889},{"x":1750543320267,"y":34.709},{"x":1750543262837,"y":34.871},{"x":1750543202360,"y":33.676},{"x":1750543141909,"y":34.978},{"x":1750543081548,"y":30.48},{"x":1750543021180,"y":33.711},{"x":1750542960802,"y":49.707},{"x":1750542900378,"y":34.538},{"x":1750542842910,"y":32.63},{"x":1750542782526,"y":32.921},{"x":1750542722136,"y":32.939},{"x":1750542661775,"y":32.404},{"x":1750542601450,"y":32.388},{"x":1750542541097,"y":38.557},{"x":1750542480496,"y":37.636},{"x":1750542423008,"y":41.561},{"x":1750542362583,"y":39.069},{"x":1750542302216,"y":45.286},{"x":1750542241869,"y":56.303},{"x":1750542181471,"y":58.037},{"x":1750542121089,"y":48.825},{"x":1750542060646,"y":49.693},{"x":1750542000358,"y":40.032},{"x":1750541942744,"y":40.809},{"x":1750541882371,"y":39.002},{"x":1750541821945,"y":36.921},{"x":1750541761548,"y":42.43},{"x":1750541701233,"y":35.804},{"x":1750541640809,"y":36.493},{"x":1750541580424,"y":35.441},{"x":1750541522994,"y":36.287},{"x":1750541462632,"y":33.296},{"x":1750541402231,"y":46.038},{"x":1750541341869,"y":42.956},{"x":1750541281508,"y":41.624},{"x":1750541221151,"y":43.993},{"x":1750541160720,"y":42.463},{"x":1750541100336,"y":47.023},{"x":1750541042896,"y":34.016},{"x":1750540982508,"y":32.953},{"x":1750540922079,"y":36.297},{"x":1750540861710,"y":36.778},{"x":1750540801331,"y":34.085},{"x":1750540740921,"y":34.215},{"x":1750540680540,"y":44.406},{"x":1750540620087,"y":45.253},{"x":1750540562676,"y":74.206},{"x":1750540502319,"y":70.45},{"x":1750540441940,"y":66.331},{"x":1750540381588,"y":52.498},{"x":1750540321228,"y":50.454},{"x":1750540260827,"y":43.656},{"x":1750540200441,"y":52.133},{"x":1750540142866,"y":42.302},{"x":1750540082517,"y":35.195},{"x":1750540022125,"y":68.627},{"x":1750539961772,"y":58.197},{"x":1750539901405,"y":56.659},{"x":1750539840985,"y":43.854},{"x":1750539780602,"y":51.294},{"x":1750539720218,"y":42.603},{"x":1750539662764,"y":33.273},{"x":1750539602415,"y":46.213},{"x":1750539542029,"y":42.655},{"x":1750539481581,"y":54.101},{"x":1750539421239,"y":32.751},{"x":1750539360816,"y":33.093},{"x":1750539300422,"y":43.962},{"x":1750539242918,"y":38.719},{"x":1750539182505,"y":34.983},{"x":1750539122076,"y":35.156},{"x":1750539061686,"y":30.382},{"x":1750539001314,"y":32.859},{"x":1750538940906,"y":54.974},{"x":1750538880514,"y":40.297},{"x":1750538822972,"y":47.337},{"x":1750538762571,"y":47.852},{"x":1750538702214,"y":40.898},{"x":1750538641801,"y":34.808},{"x":1750538581402,"y":37.085},{"x":1750538520999,"y":35.928},{"x":1750538460627,"y":37.285},{"x":1750538400252,"y":35.835},{"x":1750538342737,"y":36.53},{"x":1750538282385,"y":56.101},{"x":1750538221951,"y":36.839},{"x":1750538161575,"y":46.994},{"x":1750538101168,"y":48.937},{"x":1750538040784,"y":47.375},{"x":1750537980406,"y":47.654},{"x":1750537922973,"y":73.056},{"x":1750537862623,"y":59.734},{"x":1750537802219,"y":64.251},{"x":1750537741781,"y":68.548},{"x":1750537681390,"y":54.768},{"x":1750537621014,"y":48.507},{"x":1750537560626,"y":42.803},{"x":1750537500272,"y":37.725},{"x":1750537442746,"y":37.724},{"x":1750537382349,"y":37.357},{"x":1750537321985,"y":50.513},{"x":1750537261588,"y":46.395},{"x":1750537201235,"y":44.265},{"x":1750537140838,"y":42.075},{"x":1750537080472,"y":54.336},{"x":1750537023045,"y":50.206},{"x":1750536962613,"y":42.483},{"x":1750536902247,"y":37.152},{"x":1750536841834,"y":42.075},{"x":1750536781469,"y":62.333},{"x":1750536721078,"y":51.126},{"x":1750536660712,"y":56.285},{"x":1750536600367,"y":60.263},{"x":1750536542839,"y":41.79},{"x":1750536482488,"y":33.441},{"x":1750536422093,"y":39.05},{"x":1750536361718,"y":48.864},{"x":1750536301289,"y":43.519},{"x":1750536240927,"y":46.237},{"x":1750536180560,"y":48.483},{"x":1750536122757,"y":44.396},{"x":1750536062426,"y":41.05},{"x":1750536001975,"y":53.779},{"x":1750535941579,"y":51.957},{"x":1750535881204,"y":50.395},{"x":1750535820811,"y":69.854},{"x":1750535760466,"y":58.073},{"x":1750535702988,"y":71.916},{"x":1750535642627,"y":60.106},{"x":1750535582257,"y":77.204},{"x":1750535521876,"y":64.152},{"x":1750535461509,"y":58.642},{"x":1750535401178,"y":47.323},{"x":1750535340731,"y":39.399},{"x":1750535280301,"y":41.567},{"x":1750535222776,"y":36.359},{"x":1750535162404,"y":35.79},{"x":1750535102064,"y":36.226},{"x":1750535041665,"y":34.969},{"x":1750534981305,"y":39.645},{"x":1750534920892,"y":32.084},{"x":1750534860511,"y":56.024},{"x":1750534800203,"y":60.716},{"x":1750534742688,"y":51.717},{"x":1750534682320,"y":51.721},{"x":1750534621929,"y":66.863},{"x":1750534561542,"y":43.102},{"x":1750534501140,"y":43.062},{"x":1750534440766,"y":46.8},{"x":1750534380401,"y":52.04},{"x":1750534322965,"y":51.589},{"x":1750534262614,"y":50.922},{"x":1750534202239,"y":53.895},{"x":1750534141875,"y":51.855},{"x":1750534081534,"y":60.608},{"x":1750534021137,"y":54.89},{"x":1750533960757,"y":50.662},{"x":1750533900392,"y":59.236},{"x":1750533842906,"y":45.259},{"x":1750533782553,"y":52.469},{"x":1750533722180,"y":50.442},{"x":1750533661814,"y":51.416},{"x":1750533601410,"y":58.633},{"x":1750533541032,"y":48.428},{"x":1750533480674,"y":44.065},{"x":1750533420280,"y":51.717},{"x":1750533362848,"y":43.906},{"x":1750533302502,"y":44.535},{"x":1750533242115,"y":61.648},{"x":1750533181781,"y":65.655},{"x":1750533121424,"y":72.677},{"x":1750533061034,"y":70.936},{"x":1750533000701,"y":62.766},{"x":1750532940296,"y":56.169},{"x":1750532882748,"y":63.876},{"x":1750532822377,"y":49.151},{"x":1750532762028,"y":45.02},{"x":1750532701660,"y":45.141},{"x":1750532641287,"y":56.963},{"x":1750532580913,"y":49.211},{"x":1750532520562,"y":50.563},{"x":1750532460113,"y":42.578},{"x":1750532402680,"y":58.964},{"x":1750532342289,"y":75.202},{"x":1750532281919,"y":54.322},{"x":1750532221538,"y":49.951},{"x":1750532161189,"y":59.397},{"x":1750532100750,"y":54.432},{"x":1750532040387,"y":45.436},{"x":1750531982931,"y":48.584},{"x":1750531922544,"y":62.822},{"x":1750531862187,"y":58.584},{"x":1750531801782,"y":65.735},{"x":1750531741408,"y":64.556},{"x":1750531680937,"y":66.676},{"x":1750531620484,"y":70.211},{"x":1750531560149,"y":57.569},{"x":1750531502692,"y":72.206},{"x":1750531442302,"y":64.656},{"x":1750531381937,"y":65.302},{"x":1750531321584,"y":45.799},{"x":1750531261191,"y":43.845},{"x":1750531200796,"y":37.02},{"x":1750531140421,"y":59.033},{"x":1750531083034,"y":54.301},{"x":1750531022626,"y":43.111},{"x":1750530962266,"y":54.182},{"x":1750530901837,"y":47.348},{"x":1750530841445,"y":46.959},{"x":1750530781084,"y":53.503},{"x":1750530720689,"y":50.866},{"x":1750530660324,"y":68.664},{"x":1750530602930,"y":49.623},{"x":1750530542570,"y":73.004},{"x":1750530482221,"y":61.825},{"x":1750530421833,"y":67.695},{"x":1750530361484,"y":53.644},{"x":1750530301065,"y":61.387},{"x":1750530240704,"y":62.626},{"x":1750530180340,"y":64.361},{"x":1750530122850,"y":48.687},{"x":1750530062465,"y":56.069},{"x":1750530002088,"y":45.229},{"x":1750529941704,"y":54.942},{"x":1750529881328,"y":51.051},{"x":1750529820945,"y":49.166},{"x":1750529760556,"y":62.302},{"x":1750529700217,"y":50.646},{"x":1750529642772,"y":40.031},{"x":1750529582413,"y":42.514},{"x":1750529522069,"y":51.503},{"x":1750529461709,"y":45.181},{"x":1750529401343,"y":52.202},{"x":1750529340970,"y":51.864},{"x":1750529280643,"y":57.928},{"x":1750529220259,"y":64.09},{"x":1750529162812,"y":61.847},{"x":1750529102428,"y":55.043},{"x":1750529042050,"y":49.137},{"x":1750528981675,"y":54.786},{"x":1750528921326,"y":46.589},{"x":1750528860945,"y":48.706},{"x":1750528800586,"y":58.845},{"x":1750528740213,"y":62.513},{"x":1750528682733,"y":52.869},{"x":1750528622388,"y":47.483},{"x":1750528562025,"y":51.737},{"x":1750528501646,"y":44.09},{"x":1750528441222,"y":42.914},{"x":1750528380869,"y":44.24},{"x":1750528320496,"y":69.799},{"x":1750528260205,"y":57.505},{"x":1750528202712,"y":74.427},{"x":1750528142335,"y":60.545},{"x":1750528081940,"y":72.045},{"x":1750528021436,"y":73.57},{"x":1750527961085,"y":67.745},{"x":1750527900632,"y":68.95},{"x":1750527840146,"y":51.305},{"x":1750527782764,"y":51.18},{"x":1750527722376,"y":58.003},{"x":1750527662024,"y":42.532},{"x":1750527601645,"y":41.775},{"x":1750527541271,"y":48.042},{"x":1750527480884,"y":54.597},{"x":1750527420501,"y":74.202},{"x":1750527360141,"y":60.363},{"x":1750527302689,"y":50.555},{"x":1750527242320,"y":50.737},{"x":1750527181946,"y":52.664},{"x":1750527121578,"y":45.006},{"x":1750527061200,"y":39.545},{"x":1750527000796,"y":59.331},{"x":1750526940544,"y":45.108},{"x":1750526882995,"y":58.182},{"x":1750526822610,"y":73.625},{"x":1750526762253,"y":80.213},{"x":1750526701889,"y":47.108},{"x":1750526641480,"y":52.209},{"x":1750526581134,"y":61.161},{"x":1750526520668,"y":61.984},{"x":1750526460308,"y":43.285},{"x":1750526402886,"y":55.61},{"x":1750526342545,"y":49.612},{"x":1750526282186,"y":76.767},{"x":1750526221795,"y":59.411},{"x":1750526161428,"y":47.193},{"x":1750526101068,"y":36.354},{"x":1750526040692,"y":42.726},{"x":1750525980336,"y":48.21},{"x":1750525922914,"y":47.79},{"x":1750525862563,"y":49.483},{"x":1750525802197,"y":51.08},{"x":1750525741792,"y":42.225},{"x":1750525681438,"y":54.097},{"x":1750525621087,"y":53.25},{"x":1750525560727,"y":73.242},{"x":1750525500380,"y":58.55},{"x":1750525442863,"y":46.962},{"x":1750525382501,"y":40.008},{"x":1750525322152,"y":44.451},{"x":1750525261785,"y":43.58},{"x":1750525201431,"y":52.963},{"x":1750525140998,"y":51.427},{"x":1750525080657,"y":51.131},{"x":1750525020298,"y":36.219},{"x":1750524962864,"y":29.841},{"x":1750524902459,"y":50.481},{"x":1750524842105,"y":35.026},{"x":1750524781724,"y":40.375},{"x":1750524721361,"y":46.814},{"x":1750524660981,"y":53.457},{"x":1750524600624,"y":50.922},{"x":1750524540254,"y":55.341},{"x":1750524482684,"y":54.263},{"x":1750524422246,"y":47.514},{"x":1750524361869,"y":45.361},{"x":1750524301517,"y":36.401},{"x":1750524241147,"y":35.502},{"x":1750524180785,"y":32.714},{"x":1750524120401,"y":37.64},{"x":1750524062950,"y":39.391},{"x":1750524002602,"y":48.47},{"x":1750523942210,"y":47.623},{"x":1750523881847,"y":47.896},{"x":1750523821511,"y":39.59},{"x":1750523761159,"y":59.03},{"x":1750523700754,"y":29.901},{"x":1750523640408,"y":29.12},{"x":1750523582955,"y":43.866},{"x":1750523522574,"y":42.23},{"x":1750523462215,"y":77.441},{"x":1750523401854,"y":61.492},{"x":1750523341492,"y":61.859},{"x":1750523281088,"y":35.598},{"x":1750523220704,"y":62.196},{"x":1750523160320,"y":35.863},{"x":1750523102865,"y":44.254},{"x":1750523042485,"y":29.163},{"x":1750522982089,"y":37.963},{"x":1750522921729,"y":44.228},{"x":1750522861386,"y":29.108},{"x":1750522801032,"y":62.56},{"x":1750522740684,"y":47.719},{"x":1750522680348,"y":56.438},{"x":1750522622921,"y":47.265},{"x":1750522562544,"y":51.767},{"x":1750522502192,"y":29.948},{"x":1750522441819,"y":46.496},{"x":1750522381485,"y":49.471},{"x":1750522321136,"y":38.81},{"x":1750522260760,"y":30.482},{"x":1750522200441,"y":35.588},{"x":1750522142931,"y":34.864},{"x":1750522082574,"y":42.089},{"x":1750522022197,"y":40.169},{"x":1750521961829,"y":34.785},{"x":1750521901487,"y":26.604},{"x":1750521841078,"y":28.145},{"x":1750521780721,"y":33.145},{"x":1750521720373,"y":30.093},{"x":1750521662947,"y":29.226},{"x":1750521602553,"y":41.026},{"x":1750521542183,"y":44.014},{"x":1750521481788,"y":46.633},{"x":1750521421439,"y":45.332},{"x":1750521361086,"y":54.734},{"x":1750521300668,"y":36.661},{"x":1750521240236,"y":45.667},{"x":1750521182769,"y":49.302},{"x":1750521122399,"y":36.5},{"x":1750521062024,"y":28.37},{"x":1750521001671,"y":20.59},{"x":1750520941336,"y":18.655},{"x":1750520880836,"y":19.546},{"x":1750520820417,"y":31.682},{"x":1750520762989,"y":16.703},{"x":1750520702624,"y":35.074},{"x":1750520642221,"y":38.109},{"x":1750520581850,"y":42.592},{"x":1750520521477,"y":51.09},{"x":1750520461091,"y":42.957},{"x":1750520400671,"y":39.119},{"x":1750520340264,"y":21.358},{"x":1750520282835,"y":18.86},{"x":1750520222463,"y":23.421},{"x":1750520162115,"y":31.363},{"x":1750520101723,"y":33.659},{"x":1750520041367,"y":36.685},{"x":1750519980964,"y":32.36},{"x":1750519920605,"y":29.259},{"x":1750519860256,"y":36.695},{"x":1750519802817,"y":33.86},{"x":1750519742458,"y":26.139},{"x":1750519682117,"y":29.954},{"x":1750519621748,"y":31.257},{"x":1750519561390,"y":26.142},{"x":1750519501019,"y":27.4},{"x":1750519440649,"y":26.753},{"x":1750519380272,"y":31.698},{"x":1750519322844,"y":53.101},{"x":1750519262477,"y":27.748},{"x":1750519202121,"y":22.068},{"x":1750519141709,"y":18.091},{"x":1750519081351,"y":22.214},{"x":1750519020965,"y":24.16},{"x":1750518960619,"y":25.004},{"x":1750518900301,"y":21.751},{"x":1750518842784,"y":25.611},{"x":1750518782425,"y":23.703},{"x":1750518722059,"y":35.304},{"x":1750518661678,"y":34.91},{"x":1750518601316,"y":39.267},{"x":1750518540963,"y":57.186},{"x":1750518480552,"y":32.075},{"x":1750518420202,"y":36.735},{"x":1750518362746,"y":44.997},{"x":1750518302391,"y":34.541},{"x":1750518242032,"y":42.806},{"x":1750518181669,"y":37.032},{"x":1750518121303,"y":33.715},{"x":1750518060903,"y":23.484},{"x":1750518000592,"y":24.363},{"x":1750517942987,"y":22.881},{"x":1750517882597,"y":21.394},{"x":1750517822220,"y":20.941},{"x":1750517761860,"y":20.766},{"x":1750517701374,"y":22.694},{"x":1750517640983,"y":26.636},{"x":1750517580610,"y":19.444},{"x":1750517520254,"y":17.807},{"x":1750517462807,"y":21.601},{"x":1750517402463,"y":22.145},{"x":1750517342099,"y":17.983},{"x":1750517281564,"y":18.178},{"x":1750517221125,"y":29.625},{"x":1750517160737,"y":51.84},{"x":1750517100400,"y":60.428},{"x":1750517042913,"y":48.031},{"x":1750516982504,"y":53.971},{"x":1750516922131,"y":39.657},{"x":1750516861745,"y":33.429},{"x":1750516801370,"y":41.008},{"x":1750516740982,"y":43.406},{"x":1750516680598,"y":53.994},{"x":1750516620279,"y":31.168},{"x":1750516562723,"y":41.603},{"x":1750516502367,"y":48.038},{"x":1750516441998,"y":58.208},{"x":1750516381656,"y":18.561},{"x":1750516321215,"y":24.291},{"x":1750516260836,"y":27.329},{"x":1750516200462,"y":37.132},{"x":1750516142942,"y":39.822},{"x":1750516082563,"y":37.347},{"x":1750516022187,"y":40.372},{"x":1750515961828,"y":32.702},{"x":1750515901455,"y":31.591},{"x":1750515841079,"y":18.422},{"x":1750515780661,"y":31.622},{"x":1750515720308,"y":19.432},{"x":1750515662862,"y":20.924},{"x":1750515602498,"y":16.295},{"x":1750515542140,"y":30.706},{"x":1750515481752,"y":26.88},{"x":1750515421388,"y":20.007},{"x":1750515361011,"y":26.376},{"x":1750515300654,"y":28.566},{"x":1750515240271,"y":41.541},{"x":1750515182778,"y":37.264},{"x":1750515122392,"y":47.836},{"x":1750515062033,"y":36.238},{"x":1750515001673,"y":49.319},{"x":1750514941303,"y":17.411},{"x":1750514880905,"y":14.721},{"x":1750514820539,"y":23.445},{"x":1750514760188,"y":35.986},{"x":1750514702719,"y":47.263},{"x":1750514642359,"y":26.994},{"x":1750514581947,"y":46.998},{"x":1750514521542,"y":41.872},{"x":1750514461174,"y":19.402},{"x":1750514400793,"y":32.329},{"x":1750514340361,"y":27.682},{"x":1750514282888,"y":17.708},{"x":1750514222508,"y":17.514},{"x":1750514162143,"y":21.837},{"x":1750514101718,"y":27.253},{"x":1750514041368,"y":19.743},{"x":1750513980956,"y":16.943},{"x":1750513920602,"y":17.719},{"x":1750513860238,"y":15.502},{"x":1750513802806,"y":24.351},{"x":1750513742459,"y":42.775},{"x":1750513682073,"y":40.74},{"x":1750513621625,"y":41.674},{"x":1750513561248,"y":42.938},{"x":1750513500880,"y":40.872},{"x":1750513440488,"y":25.267},{"x":1750513380115,"y":30.603},{"x":1750513322677,"y":25.949},{"x":1750513262297,"y":24.26},{"x":1750513201910,"y":24.73},{"x":1750513141535,"y":41.731},{"x":1750513081177,"y":44.402},{"x":1750513020754,"y":25.535},{"x":1750512960385,"y":42.068},{"x":1750512902970,"y":36.584},{"x":1750512842612,"y":33.766},{"x":1750512782243,"y":25.219},{"x":1750512721875,"y":33.681},{"x":1750512661537,"y":20.448},{"x":1750512601193,"y":23.931},{"x":1750512540796,"y":22.414},{"x":1750512480452,"y":21.045},{"x":1750512423005,"y":19.632},{"x":1750512362624,"y":17.099},{"x":1750512302281,"y":26.188},{"x":1750512241925,"y":18.003},{"x":1750512181535,"y":12.26},{"x":1750512121177,"y":17.226},{"x":1750512060805,"y":34.918},{"x":1750512000465,"y":23.072},{"x":1750511942947,"y":31.814},{"x":1750511882578,"y":17.962},{"x":1750511822206,"y":30.694},{"x":1750511761851,"y":44.154},{"x":1750511701489,"y":29.226},{"x":1750511641123,"y":33.037},{"x":1750511580790,"y":25.71},{"x":1750511520451,"y":11.712},{"x":1750511462960,"y":23.323},{"x":1750511402553,"y":13.831},{"x":1750511342188,"y":32.508},{"x":1750511281821,"y":41.935},{"x":1750511221463,"y":21.891},{"x":1750511161102,"y":37.254},{"x":1750511100732,"y":27.093},{"x":1750511040407,"y":20.741},{"x":1750510982968,"y":28.475},{"x":1750510922611,"y":29.808},{"x":1750510862236,"y":9.897},{"x":1750510801876,"y":6.535},{"x":1750510741475,"y":12.166},{"x":1750510681113,"y":21.483},{"x":1750510620744,"y":19.085},{"x":1750510560370,"y":19.664},{"x":1750510502880,"y":24.767},{"x":1750510442504,"y":36.452},{"x":1750510382145,"y":34.957},{"x":1750510321757,"y":40.756},{"x":1750510261374,"y":31.565},{"x":1750510200995,"y":39.152},{"x":1750510140631,"y":26.08},{"x":1750510080310,"y":37.124},{"x":1750510022749,"y":39.977},{"x":1750509962366,"y":28.613},{"x":1750509901999,"y":21.767},{"x":1750509841631,"y":31.653},{"x":1750509781236,"y":29.772},{"x":1750509720845,"y":26.216},{"x":1750509660440,"y":40.496},{"x":1750509602976,"y":17.363},{"x":1750509542602,"y":22.543},{"x":1750509482193,"y":10.359},{"x":1750509421807,"y":9.987},{"x":1750509361389,"y":11.566},{"x":1750509300996,"y":18.651},{"x":1750509240645,"y":21.602},{"x":1750509180312,"y":22.399},{"x":1750509122896,"y":36.033},{"x":1750509062520,"y":25.771},{"x":1750509002162,"y":25.897},{"x":1750508941764,"y":32.316},{"x":1750508881406,"y":21.566},{"x":1750508820979,"y":11.92},{"x":1750508760609,"y":4.472},{"x":1750508700212,"y":17.54},{"x":1750508642728,"y":15.388},{"x":1750508582369,"y":19.081},{"x":1750508521973,"y":16.914},{"x":1750508461554,"y":16.401},{"x":1750508401175,"y":17.425},{"x":1750508340813,"y":15.87},{"x":1750508280409,"y":16.326},{"x":1750508222979,"y":10.935},{"x":1750508162640,"y":-3.114},{"x":1750508102308,"y":7.59},{"x":1750508041945,"y":7.444},{"x":1750507981571,"y":8.29},{"x":1750507921232,"y":13.126},{"x":1750507860749,"y":18.59},{"x":1750507800374,"y":22.824},{"x":1750507742876,"y":35.006},{"x":1750507682521,"y":48.717},{"x":1750507622138,"y":64.03},{"x":1750507561758,"y":45.143},{"x":1750507501404,"y":33.502},{"x":1750507441040,"y":31.355},{"x":1750507380674,"y":30.491},{"x":1750507320308,"y":22.218},{"x":1750507262849,"y":18.905},{"x":1750507202441,"y":23.075},{"x":1750507142058,"y":29.369},{"x":1750507081705,"y":35.161},{"x":1750507021294,"y":34.318},{"x":1750506960936,"y":27.876},{"x":1750506900505,"y":16.915},{"x":1750506840098,"y":14.232},{"x":1750506782703,"y":17.117},{"x":1750506722354,"y":22.337},{"x":1750506661987,"y":23.329},{"x":1750506601617,"y":18.842},{"x":1750506541269,"y":20.477},{"x":1750506480824,"y":24.95},{"x":1750506420390,"y":21.247},{"x":1750506362949,"y":11.689},{"x":1750506302597,"y":14.443},{"x":1750506242243,"y":9.131},{"x":1750506181894,"y":15.562},{"x":1750506121530,"y":22.959},{"x":1750506061174,"y":19.817},{"x":1750506000763,"y":21.555},{"x":1750505940370,"y":24.158},{"x":1750505882929,"y":8.36},{"x":1750505822524,"y":28.453},{"x":1750505762183,"y":11.18},{"x":1750505701759,"y":19.839},{"x":1750505641397,"y":20.902},{"x":1750505581058,"y":26.479},{"x":1750505520690,"y":13.147},{"x":1750505460333,"y":15.602},{"x":1750505402882,"y":14.242},{"x":1750505342491,"y":8.279},{"x":1750505282100,"y":15.932},{"x":1750505221724,"y":23.853},{"x":1750505161336,"y":35.736},{"x":1750505100946,"y":29.407},{"x":1750505040576,"y":21.706},{"x":1750504980216,"y":19.317},{"x":1750504922842,"y":11.133},{"x":1750504862498,"y":11.109},{"x":1750504802159,"y":5.943},{"x":1750504741789,"y":17.978},{"x":1750504681449,"y":26.308},{"x":1750504621048,"y":18.668},{"x":1750504560611,"y":17.432},{"x":1750504500259,"y":29.831},{"x":1750504442784,"y":14.995},{"x":1750504382427,"y":10.194},{"x":1750504322067,"y":12.945},{"x":1750504261688,"y":8.976},{"x":1750504201281,"y":8.82},{"x":1750504140929,"y":11.494},{"x":1750504080565,"y":12.204},{"x":1750504020189,"y":8.681},{"x":1750503962742,"y":8.448},{"x":1750503902352,"y":18.345},{"x":1750503842012,"y":12.724},{"x":1750503781662,"y":20.086},{"x":1750503721278,"y":27.613},{"x":1750503660899,"y":41.727},{"x":1750503600664,"y":29.034},{"x":1750503542996,"y":45.528},{"x":1750503482637,"y":43.898},{"x":1750503422291,"y":22.361},{"x":1750503361912,"y":32.932},{"x":1750503301541,"y":28.021},{"x":1750503241183,"y":41.652},{"x":1750503180808,"y":31.461},{"x":1750503120422,"y":30.165},{"x":1750503063024,"y":41.655},{"x":1750503002661,"y":18.022},{"x":1750502942287,"y":32.413},{"x":1750502881884,"y":16.458},{"x":1750502821458,"y":22.531},{"x":1750502761044,"y":28.655},{"x":1750502700679,"y":34.346},{"x":1750502640319,"y":26.888},{"x":1750502582807,"y":21.574},{"x":1750502522420,"y":32.108},{"x":1750502462071,"y":20.232},{"x":1750502401698,"y":14.253},{"x":1750502341287,"y":15.292},{"x":1750502280938,"y":20.498},{"x":1750502220537,"y":19.112},{"x":1750502160142,"y":24.544},{"x":1750502102661,"y":15.908},{"x":1750502042288,"y":13.58},{"x":1750501981923,"y":15.804},{"x":1750501921541,"y":19.961},{"x":1750501861171,"y":14.034},{"x":1750501800791,"y":22.091},{"x":1750501740407,"y":21.426},{"x":1750501682927,"y":11.181},{"x":1750501622568,"y":11.528},{"x":1750501562202,"y":22.865},{"x":1750501501813,"y":21.262},{"x":1750501441460,"y":21.501},{"x":1750501381077,"y":29.946},{"x":1750501320690,"y":34.027},{"x":1750501260355,"y":34.887},{"x":1750501202871,"y":33.805},{"x":1750501142476,"y":26.631},{"x":1750501082117,"y":9.179},{"x":1750501021732,"y":12.458},{"x":1750500961341,"y":12.112},{"x":1750500900952,"y":22.741},{"x":1750500840577,"y":25.446},{"x":1750500780268,"y":16.388},{"x":1750500722771,"y":17.936},{"x":1750500662434,"y":25.799},{"x":1750500602091,"y":21.534},{"x":1750500541715,"y":18.762},{"x":1750500481335,"y":33.565},{"x":1750500420955,"y":25.25},{"x":1750500360596,"y":21.226},{"x":1750500300176,"y":17.585},{"x":1750500242722,"y":17.884},{"x":1750500182338,"y":30.125},{"x":1750500121947,"y":10.392},{"x":1750500061559,"y":10.516},{"x":1750500001209,"y":13.278},{"x":1750499940773,"y":15.324},{"x":1750499880401,"y":34.339},{"x":1750499822935,"y":17.49},{"x":1750499762535,"y":10.113},{"x":1750499702138,"y":27.389},{"x":1750499641722,"y":21.38},{"x":1750499581360,"y":16.599},{"x":1750499520964,"y":14.745},{"x":1750499460585,"y":24.238},{"x":1750499400201,"y":30.225},{"x":1750499342732,"y":40.842},{"x":1750499282354,"y":28.257},{"x":1750499221803,"y":28.716},{"x":1750499161431,"y":49.008},{"x":1750499100997,"y":38.757},{"x":1750499040648,"y":39.37},{"x":1750498980299,"y":45.772},{"x":1750498922817,"y":34.47},{"x":1750498862459,"y":29.553},{"x":1750498802097,"y":28.693},{"x":1750498741732,"y":14.865},{"x":1750498681345,"y":24.787},{"x":1750498620965,"y":19.743},{"x":1750498560578,"y":28.449},{"x":1750498500145,"y":25.65},{"x":1750498442668,"y":27.553},{"x":1750498382292,"y":27.365},{"x":1750498321900,"y":27.683},{"x":1750498261526,"y":15.661},{"x":1750498201191,"y":12.773},{"x":1750498140755,"y":25.456},{"x":1750498080412,"y":23.332},{"x":1750498022942,"y":16.624},{"x":1750497962595,"y":25.886},{"x":1750497902234,"y":23.115},{"x":1750497841847,"y":18.595},{"x":1750497781491,"y":20.473},{"x":1750497721118,"y":20.76},{"x":1750497660752,"y":16.823},{"x":1750497600380,"y":25.283},{"x":1750497542901,"y":16.656},{"x":1750497482558,"y":12.851},{"x":1750497422186,"y":17.453},{"x":1750497361821,"y":6.928},{"x":1750497301472,"y":22.361},{"x":1750497241109,"y":15.79},{"x":1750497180735,"y":18.904},{"x":1750497120360,"y":13.591},{"x":1750497062822,"y":13.831},{"x":1750497002430,"y":25.469},{"x":1750496942025,"y":24.183},{"x":1750496881655,"y":29.124},{"x":1750496821225,"y":26.525},{"x":1750496760838,"y":24.073},{"x":1750496700491,"y":35.745},{"x":1750496642988,"y":40.259},{"x":1750496582615,"y":46.75},{"x":1750496522226,"y":38.398},{"x":1750496461806,"y":42.188},{"x":1750496401442,"y":24.597},{"x":1750496340987,"y":15.197},{"x":1750496280583,"y":15.834},{"x":1750496220220,"y":29.372},{"x":1750496162706,"y":47.168},{"x":1750496102190,"y":25.731},{"x":1750496041811,"y":31.651},{"x":1750495981412,"y":27.06},{"x":1750495921101,"y":13.132},{"x":1750495860641,"y":22.333},{"x":1750495800304,"y":27.848},{"x":1750495742756,"y":31.573},{"x":1750495682287,"y":27.969},{"x":1750495621799,"y":28.09},{"x":1750495561347,"y":16.597},{"x":1750495500973,"y":24.876},{"x":1750495440598,"y":30.565},{"x":1750495380241,"y":27.005},{"x":1750495322771,"y":28.461},{"x":1750495262361,"y":35.515},{"x":1750495201981,"y":27.344},{"x":1750495141595,"y":30.565},{"x":1750495081202,"y":30.601},{"x":1750495020796,"y":30.104},{"x":1750494960428,"y":32.625},{"x":1750494902888,"y":18.918},{"x":1750494842500,"y":15.843},{"x":1750494782153,"y":13.442},{"x":1750494721726,"y":19.719},{"x":1750494661336,"y":24.656},{"x":1750494600987,"y":26.445},{"x":1750494540642,"y":38.254},{"x":1750494480289,"y":29.85},{"x":1750494422795,"y":49.891},{"x":1750494362454,"y":57.607},{"x":1750494302056,"y":44.934},{"x":1750494241634,"y":43.843},{"x":1750494181264,"y":30.27},{"x":1750494120888,"y":46.479},{"x":1750494060501,"y":14.448},{"x":1750494000135,"y":13.919},{"x":1750493942725,"y":26.497},{"x":1750493882363,"y":30.175},{"x":1750493821979,"y":29.294},{"x":1750493761602,"y":33.432},{"x":1750493701254,"y":28.379},{"x":1750493640853,"y":17.155},{"x":1750493580505,"y":23.115},{"x":1750493520124,"y":17.561},{"x":1750493462656,"y":19.858},{"x":1750493402295,"y":32.579},{"x":1750493341898,"y":32.552},{"x":1750493281538,"y":34.999},{"x":1750493221125,"y":44.072},{"x":1750493160755,"y":63.992},{"x":1750493100371,"y":46.208},{"x":1750493042933,"y":34.64},{"x":1750492982579,"y":32.692},{"x":1750492922190,"y":28.219},{"x":1750492861839,"y":37.572},{"x":1750492801508,"y":28.905},{"x":1750492740914,"y":26.778},{"x":1750492680531,"y":31.197},{"x":1750492620104,"y":37.138},{"x":1750492562647,"y":40.67},{"x":1750492502260,"y":39.893},{"x":1750492441836,"y":38.51},{"x":1750492381502,"y":40.032},{"x":1750492321156,"y":29.4},{"x":1750492260768,"y":29.596},{"x":1750492200434,"y":19.691},{"x":1750492142994,"y":14.157},{"x":1750492082611,"y":22.515},{"x":1750492022150,"y":20.653},{"x":1750491961804,"y":22.247},{"x":1750491901404,"y":28.055},{"x":1750491841039,"y":27.942},{"x":1750491780683,"y":21.303},{"x":1750491720373,"y":18.187},{"x":1750491662890,"y":22.552},{"x":1750491602497,"y":16.618},{"x":1750491542131,"y":21.962},{"x":1750491481776,"y":17.233},{"x":1750491421417,"y":27.287},{"x":1750491361054,"y":33.978},{"x":1750491300691,"y":32.072},{"x":1750491240329,"y":35.26},{"x":1750491182858,"y":34.037},{"x":1750491122502,"y":14.119},{"x":1750491062142,"y":19.486},{"x":1750491001795,"y":21.138},{"x":1750490941360,"y":21.509},{"x":1750490880972,"y":23.14},{"x":1750490820590,"y":19.117},{"x":1750490760222,"y":29.593},{"x":1750490702775,"y":30.186},{"x":1750490642401,"y":32.683},{"x":1750490582050,"y":20.491},{"x":1750490521667,"y":25.022},{"x":1750490461313,"y":22.187},{"x":1750490400869,"y":13.97},{"x":1750490340508,"y":27.087},{"x":1750490283085,"y":18.264},{"x":1750490222651,"y":20.168},{"x":1750490162294,"y":28.302},{"x":1750490101906,"y":32.028},{"x":1750490041537,"y":22.332},{"x":1750489981195,"y":27.332},{"x":1750489920791,"y":29.307},{"x":1750489860381,"y":34.117},{"x":1750489802903,"y":31.921},{"x":1750489742519,"y":31.543},{"x":1750489682148,"y":27.565},{"x":1750489621798,"y":13.862},{"x":1750489561402,"y":21.594},{"x":1750489500991,"y":29.668},{"x":1750489440634,"y":19.114},{"x":1750489380230,"y":34.354},{"x":1750489322724,"y":23.091},{"x":1750489262365,"y":20.476},{"x":1750489202075,"y":18.827},{"x":1750489141604,"y":18.388},{"x":1750489081247,"y":33.709},{"x":1750489020854,"y":32.456},{"x":1750488960491,"y":23.347},{"x":1750488903019,"y":40.001},{"x":1750488842679,"y":23.991},{"x":1750488782328,"y":43.031},{"x":1750488721977,"y":30.584},{"x":1750488661596,"y":36.274},{"x":1750488601240,"y":26.41},{"x":1750488540868,"y":42.715},{"x":1750488480463,"y":25.322},{"x":1750488422971,"y":35.916},{"x":1750488362616,"y":23.335},{"x":1750488302273,"y":43.275},{"x":1750488241882,"y":48.157},{"x":1750488181538,"y":47.869},{"x":1750488121202,"y":28.62},{"x":1750488060790,"y":50.477},{"x":1750488000469,"y":35.637},{"x":1750487942954,"y":24.714},{"x":1750487882612,"y":30.962},{"x":1750487822268,"y":27.318},{"x":1750487761902,"y":20.327},{"x":1750487701577,"y":27.568},{"x":1750487641234,"y":41.229},{"x":1750487580875,"y":44.904},{"x":1750487520521,"y":40.05},{"x":1750487460096,"y":38.061},{"x":1750487402675,"y":38.822},{"x":1750487342316,"y":24.257},{"x":1750487281904,"y":24.752},{"x":1750487221563,"y":23.986},{"x":1750487161161,"y":22.722},{"x":1750487100781,"y":20.993},{"x":1750487040515,"y":23.426},{"x":1750486980107,"y":22.604},{"x":1750486922689,"y":24.627},{"x":1750486862316,"y":24.295},{"x":1750486801972,"y":25.743},{"x":1750486741621,"y":31.291},{"x":1750486681308,"y":34.343},{"x":1750486620927,"y":37.334},{"x":1750486560606,"y":31.546},{"x":1750486500236,"y":29.657},{"x":1750486442793,"y":35.714},{"x":1750486382440,"y":35.234},{"x":1750486322070,"y":39.377},{"x":1750486261729,"y":24.255},{"x":1750486201391,"y":21.328},{"x":1750486141030,"y":39.412},{"x":1750486080690,"y":38.399},{"x":1750486020322,"y":48.714},{"x":1750485962903,"y":56.29},{"x":1750485902526,"y":45.294},{"x":1750485842190,"y":34.314},{"x":1750485781816,"y":31.626},{"x":1750485721435,"y":26.608},{"x":1750485661093,"y":27.369},{"x":1750485600856,"y":19.625},{"x":1750485540337,"y":41.02},{"x":1750485482939,"y":39.975},{"x":1750485422584,"y":40.604},{"x":1750485362211,"y":43.658},{"x":1750485301825,"y":42.267},{"x":1750485241478,"y":17.155},{"x":1750485181133,"y":19.109},{"x":1750485120780,"y":23.58},{"x":1750485060433,"y":20.827},{"x":1750485002956,"y":21.725},{"x":1750484942595,"y":21.368},{"x":1750484882213,"y":19.939},{"x":1750484821720,"y":21.456},{"x":1750484761360,"y":17.638},{"x":1750484700974,"y":27.947},{"x":1750484640643,"y":27.477},{"x":1750484580263,"y":34.243},{"x":1750484522811,"y":30.773},{"x":1750484462452,"y":38.551},{"x":1750484402067,"y":22.578},{"x":1750484341665,"y":22.954},{"x":1750484281284,"y":20.38},{"x":1750484220928,"y":23.512},{"x":1750484160569,"y":18.658},{"x":1750484100211,"y":21.479},{"x":1750484042775,"y":23.405},{"x":1750483982424,"y":22.389},{"x":1750483922054,"y":23.046},{"x":1750483861706,"y":19.666},{"x":1750483801334,"y":35.543},{"x":1750483740943,"y":30.242},{"x":1750483680592,"y":30.497},{"x":1750483620255,"y":28.347},{"x":1750483562826,"y":27.519},{"x":1750483502482,"y":22.181},{"x":1750483442113,"y":22.341},{"x":1750483381732,"y":25.28},{"x":1750483321368,"y":28.354},{"x":1750483260968,"y":29.161},{"x":1750483200606,"y":26.611},{"x":1750483140230,"y":25.23},{"x":1750483082834,"y":23.851},{"x":1750483022494,"y":22.3},{"x":1750482962118,"y":22.281},{"x":1750482901764,"y":25.893},{"x":1750482841442,"y":21.989},{"x":1750482781109,"y":33.7},{"x":1750482720771,"y":32.491},{"x":1750482660404,"y":31.596},{"x":1750482603005,"y":31.959},{"x":1750482542666,"y":41.018},{"x":1750482482303,"y":32.086},{"x":1750482421923,"y":31.801},{"x":1750482361567,"y":33.998},{"x":1750482301232,"y":30.195},{"x":1750482240847,"y":21.481},{"x":1750482180524,"y":19.827},{"x":1750482120171,"y":24.161},{"x":1750482062686,"y":26.438},{"x":1750482002328,"y":24.514},{"x":1750481941916,"y":24.657},{"x":1750481881583,"y":26.345},{"x":1750481821195,"y":25.441},{"x":1750481760809,"y":27.077},{"x":1750481700463,"y":24.633},{"x":1750481640118,"y":22.783},{"x":1750481582714,"y":22.135},{"x":1750481522355,"y":22.529},{"x":1750481461975,"y":21.682},{"x":1750481401581,"y":36.826},{"x":1750481341248,"y":32.721},{"x":1750481280853,"y":32.445},{"x":1750481220418,"y":32.842},{"x":1750481162990,"y":34.37},{"x":1750481102658,"y":25.05},{"x":1750481042313,"y":30.22},{"x":1750480981958,"y":28.731},{"x":1750480921578,"y":27.281},{"x":1750480861215,"y":26.322},{"x":1750480800850,"y":26.906},{"x":1750480740364,"y":25.734},{"x":1750480682863,"y":34.877},{"x":1750480622518,"y":27.591},{"x":1750480562184,"y":24.635},{"x":1750480501810,"y":35.285},{"x":1750480441467,"y":34.991},{"x":1750480381125,"y":31.175},{"x":1750480320754,"y":34.769},{"x":1750480260401,"y":30.756},{"x":1750480202972,"y":28.221},{"x":1750480142615,"y":25.89},{"x":1750480082273,"y":25.814},{"x":1750480021911,"y":27.806},{"x":1750479961568,"y":30.387},{"x":1750479901220,"y":36.978},{"x":1750479840847,"y":43.999},{"x":1750479780491,"y":50.552},{"x":1750479720105,"y":51.971},{"x":1750479662720,"y":50.14},{"x":1750479602355,"y":37.37},{"x":1750479541993,"y":36.545},{"x":1750479481611,"y":37.679},{"x":1750479421314,"y":33.417},{"x":1750479360865,"y":26.788},{"x":1750479300463,"y":33.253},{"x":1750479243047,"y":36.513},{"x":1750479182661,"y":32.942},{"x":1750479122266,"y":32.968},{"x":1750479061875,"y":36.645},{"x":1750479001507,"y":39.261},{"x":1750478941130,"y":33.361},{"x":1750478880779,"y":33.288},{"x":1750478820407,"y":31.969},{"x":1750478762989,"y":30.254},{"x":1750478702624,"y":43.912},{"x":1750478642280,"y":42.888},{"x":1750478581909,"y":47.146},{"x":1750478521533,"y":45.066},{"x":1750478461135,"y":40.316},{"x":1750478400639,"y":37.887},{"x":1750478340218,"y":33.902},{"x":1750478282744,"y":29.401},{"x":1750478222385,"y":37.762},{"x":1750478162001,"y":33.694},{"x":1750478101629,"y":33.308},{"x":1750478041279,"y":36.034},{"x":1750477980921,"y":33.205},{"x":1750477920560,"y":32.66},{"x":1750477860144,"y":37.713},{"x":1750477802750,"y":43.01},{"x":1750477742376,"y":34.366},{"x":1750477681990,"y":35.345},{"x":1750477621521,"y":32.58},{"x":1750477561145,"y":46.657},{"x":1750477500789,"y":40.807},{"x":1750477440401,"y":37.883},{"x":1750477382925,"y":38.223},{"x":1750477322562,"y":39.129},{"x":1750477262205,"y":43.078},{"x":1750477201824,"y":42.268},{"x":1750477141490,"y":44.51},{"x":1750477081168,"y":47.942},{"x":1750477020799,"y":42.452},{"x":1750476960486,"y":33.702},{"x":1750476902964,"y":33.828},{"x":1750476842602,"y":35.353},{"x":1750476782272,"y":32.061},{"x":1750476721905,"y":37.417},{"x":1750476661529,"y":42.498},{"x":1750476601180,"y":44.963},{"x":1750476540779,"y":42.609},{"x":1750476480412,"y":44.458},{"x":1750476422994,"y":45.409},{"x":1750476362647,"y":51.847},{"x":1750476302288,"y":57.666},{"x":1750476241923,"y":56.46},{"x":1750476181554,"y":55.145},{"x":1750476121192,"y":58.44},{"x":1750476060829,"y":39.748},{"x":1750476000482,"y":29.946},{"x":1750475942989,"y":30.291},{"x":1750475882601,"y":31.071},{"x":1750475822223,"y":26.682},{"x":1750475761839,"y":26.128},{"x":1750475701470,"y":30.984},{"x":1750475641173,"y":29.04},{"x":1750475580784,"y":28.586},{"x":1750475520448,"y":35.97},{"x":1750475462932,"y":38.513},{"x":1750475402559,"y":35.815},{"x":1750475342208,"y":38.38},{"x":1750475281812,"y":37.211},{"x":1750475221409,"y":28.128},{"x":1750475161031,"y":30.887},{"x":1750475100683,"y":27.724},{"x":1750475041782,"y":26.099},{"x":1750474981327,"y":31.514},{"x":1750474920373,"y":30.859},{"x":1750474862659,"y":28.63},{"x":1750474800633,"y":38.097},{"x":1750474740130,"y":34.432},{"x":1750474682760,"y":34.266},{"x":1750474622372,"y":35.734},{"x":1750474561979,"y":36.799},{"x":1750474501581,"y":28.463},{"x":1750474441192,"y":28.195},{"x":1750474380768,"y":28.775},{"x":1750474320405,"y":29.135},{"x":1750474262962,"y":31.637},{"x":1750474202590,"y":27.7},{"x":1750474142231,"y":27.608},{"x":1750474081723,"y":28.115},{"x":1750474021276,"y":26.812},{"x":1750473960919,"y":26.04},{"x":1750473900568,"y":29.782},{"x":1750473840122,"y":26.673},{"x":1750473782715,"y":26.937},{"x":1750473722374,"y":30.869},{"x":1750473662017,"y":49.836},{"x":1750473601638,"y":47.769},{"x":1750473541233,"y":52.527},{"x":1750473480861,"y":51.722},{"x":1750473420498,"y":48.646},{"x":1750473360095,"y":27.143},{"x":1750473302670,"y":24.303},{"x":1750473242346,"y":26.204},{"x":1750473181972,"y":30.623},{"x":1750473121596,"y":26.901},{"x":1750473061201,"y":26.865},{"x":1750473000807,"y":26.783},{"x":1750472940358,"y":26.732},{"x":1750472882908,"y":29.978},{"x":1750472822524,"y":34.659},{"x":1750472762154,"y":29.568},{"x":1750472701797,"y":31.8},{"x":1750472641429,"y":27.388},{"x":1750472581043,"y":27.983},{"x":1750472520682,"y":27.474},{"x":1750472460325,"y":29.759},{"x":1750472402905,"y":26.021},{"x":1750472342529,"y":25.366},{"x":1750472282150,"y":25.533},{"x":1750472221769,"y":28.158},{"x":1750472161388,"y":35.358},{"x":1750472101023,"y":34.308},{"x":1750472040643,"y":39.027},{"x":1750471980276,"y":49.385},{"x":1750471922841,"y":42.851},{"x":1750471862484,"y":35.906},{"x":1750471802115,"y":36.29},{"x":1750471741748,"y":28.218},{"x":1750471681400,"y":28.344},{"x":1750471621043,"y":25.567},{"x":1750471560681,"y":24.845},{"x":1750471500327,"y":23.89},{"x":1750471442811,"y":35.318},{"x":1750471382477,"y":38.082},{"x":1750471322126,"y":37.074},{"x":1750471261756,"y":35.631},{"x":1750471201438,"y":36.807},{"x":1750471140957,"y":37.581},{"x":1750471080615,"y":34.837},{"x":1750471020272,"y":32.011},{"x":1750470962788,"y":31.064},{"x":1750470902420,"y":30.082},{"x":1750470842063,"y":28.389},{"x":1750470781708,"y":33.682},{"x":1750470721324,"y":34.0},{"x":1750470660949,"y":29.551},{"x":1750470600602,"y":33.317},{"x":1750470540255,"y":49.203},{"x":1750470482795,"y":48.484},{"x":1750470422378,"y":47.599},{"x":1750470362022,"y":51.089},{"x":1750470301640,"y":50.519},{"x":1750470241288,"y":27.993},{"x":1750470180891,"y":27.762},{"x":1750470120509,"y":28.814},{"x":1750470060138,"y":33.059},{"x":1750470002728,"y":30.569},{"x":1750469942392,"y":26.189},{"x":1750469882005,"y":25.953},{"x":1750469821652,"y":24.4},{"x":1750469761298,"y":24.841},{"x":1750469700909,"y":27.667},{"x":1750469640546,"y":29.155},{"x":1750469580172,"y":28.347},{"x":1750469522749,"y":29.854},{"x":1750469462390,"y":25.524},{"x":1750469402003,"y":25.39},{"x":1750469341653,"y":27.958},{"x":1750469281286,"y":27.349},{"x":1750469220922,"y":29.494},{"x":1750469160556,"y":27.238},{"x":1750469100177,"y":26.997},{"x":1750469042724,"y":27.696},{"x":1750468982390,"y":33.262},{"x":1750468922023,"y":26.446},{"x":1750468861660,"y":25.245},{"x":1750468801319,"y":25.42},{"x":1750468740949,"y":24.481},{"x":1750468680588,"y":29.357},{"x":1750468620222,"y":29.901},{"x":1750468562740,"y":26.563},{"x":1750468502365,"y":27.862},{"x":1750468441976,"y":25.247},{"x":1750468381629,"y":30.028},{"x":1750468321255,"y":27.693},{"x":1750468260854,"y":31.739},{"x":1750468200467,"y":27.255},{"x":1750468142996,"y":49.672},{"x":1750468082632,"y":47.861},{"x":1750468022280,"y":45.046},{"x":1750467961906,"y":46.669},{"x":1750467901534,"y":43.843},{"x":1750467841185,"y":29.006},{"x":1750467780778,"y":25.976},{"x":1750467720420,"y":24.633},{"x":1750467662963,"y":25.078},{"x":1750467602583,"y":26.207},{"x":1750467542208,"y":28.265},{"x":1750467481833,"y":37.583},{"x":1750467421469,"y":37.975},{"x":1750467361092,"y":37.827},{"x":1750467300691,"y":43.515},{"x":1750467240320,"y":38.405},{"x":1750467182796,"y":27.822},{"x":1750467122433,"y":28.832},{"x":1750467062056,"y":26.321},{"x":1750467001659,"y":35.706},{"x":1750466941318,"y":35.159},{"x":1750466880876,"y":35.311},{"x":1750466820442,"y":37.171},{"x":1750466763009,"y":37.074},{"x":1750466702638,"y":30.148},{"x":1750466642272,"y":28.187},{"x":1750466581876,"y":28.318},{"x":1750466521527,"y":30.26},{"x":1750466461155,"y":26.973},{"x":1750466400782,"y":26.303},{"x":1750466340427,"y":29.507},{"x":1750466282988,"y":29.333},{"x":1750466222604,"y":29.007},{"x":1750466162248,"y":30.877},{"x":1750466101867,"y":26.765},{"x":1750466041507,"y":25.663},{"x":1750465981127,"y":25.833},{"x":1750465920785,"y":30.622},{"x":1750465860431,"y":31.745},{"x":1750465802994,"y":26.336},{"x":1750465742615,"y":25.205},{"x":1750465682265,"y":36.449},{"x":1750465621883,"y":34.421},{"x":1750465561529,"y":40.789},{"x":1750465501163,"y":35.781},{"x":1750465440781,"y":36.239},{"x":1750465380420,"y":26.018},{"x":1750465322982,"y":28.181},{"x":1750465262608,"y":29.076},{"x":1750465202207,"y":28.607},{"x":1750465141839,"y":31.426},{"x":1750465081482,"y":28.405},{"x":1750465021116,"y":31.679},{"x":1750464960689,"y":29.487},{"x":1750464900399,"y":27.737},{"x":1750464842848,"y":26.403},{"x":1750464782502,"y":29.84},{"x":1750464722126,"y":37.113},{"x":1750464661763,"y":25.443},{"x":1750464601394,"y":25.313},{"x":1750464541007,"y":25.006},{"x":1750464480631,"y":26.652},{"x":1750464423221,"y":37.511},{"x":1750464362606,"y":36.756},{"x":1750464302270,"y":36.15},{"x":1750464241875,"y":35.895},{"x":1750464181491,"y":35.4},{"x":1750464121108,"y":33.453},{"x":1750464060694,"y":31.291},{"x":1750464000323,"y":26.607},{"x":1750463942847,"y":26.935},{"x":1750463882497,"y":27.644},{"x":1750463822122,"y":30.022},{"x":1750463761702,"y":33.437},{"x":1750463701300,"y":29.473},{"x":1750463640938,"y":31.411},{"x":1750463580572,"y":40.79},{"x":1750463520139,"y":38.433},{"x":1750463462747,"y":41.102},{"x":1750463402393,"y":42.33},{"x":1750463342017,"y":40.43},{"x":1750463281597,"y":36.098},{"x":1750463221117,"y":37.09},{"x":1750463160720,"y":32.346},{"x":1750463100390,"y":34.701},{"x":1750463042895,"y":35.123},{"x":1750462982520,"y":29.616},{"x":1750462922157,"y":32.799},{"x":1750462861794,"y":29.011},{"x":1750462801415,"y":26.958},{"x":1750462741052,"y":27.999},{"x":1750462680685,"y":24.888},{"x":1750462620290,"y":25.881},{"x":1750462562859,"y":25.68},{"x":1750462502490,"y":25.886},{"x":1750462442136,"y":29.188},{"x":1750462381795,"y":41.452},{"x":1750462321433,"y":36.246},{"x":1750462261079,"y":47.461},{"x":1750462200677,"y":44.241},{"x":1750462140245,"y":41.452},{"x":1750462082775,"y":41.724},{"x":1750462022390,"y":39.724},{"x":1750461962001,"y":40.144},{"x":1750461901607,"y":31.329},{"x":1750461841227,"y":29.797},{"x":1750461780873,"y":27.755},{"x":1750461720515,"y":28.058},{"x":1750461660122,"y":31.031},{"x":1750461602677,"y":28.203},{"x":1750461542316,"y":48.501},{"x":1750461481911,"y":47.238},{"x":1750461421552,"y":45.221},{"x":1750461361178,"y":54.122},{"x":1750461300784,"y":38.76},{"x":1750461240363,"y":27.506},{"x":1750461182841,"y":28.382},{"x":1750461122463,"y":32.48},{"x":1750461062092,"y":28.229},{"x":1750461001692,"y":30.635},{"x":1750460941334,"y":28.102},{"x":1750460880949,"y":27.494},{"x":1750460820567,"y":29.587},{"x":1750460760164,"y":31.24},{"x":1750460702689,"y":29.122},{"x":1750460642344,"y":28.231},{"x":1750460581976,"y":29.255},{"x":1750460521592,"y":27.993},{"x":1750460461207,"y":30.576},{"x":1750460400738,"y":25.885},{"x":1750460340353,"y":31.995},{"x":1750460282920,"y":29.354},{"x":1750460222567,"y":26.699},{"x":1750460162200,"y":30.155},{"x":1750460101819,"y":26.886},{"x":1750460041459,"y":27.677},{"x":1750459981067,"y":28.641},{"x":1750459920681,"y":31.45},{"x":1750459860331,"y":31.779},{"x":1750459802826,"y":29.171},{"x":1750459742460,"y":30.231},{"x":1750459682067,"y":35.038},{"x":1750459621653,"y":31.303},{"x":1750459561300,"y":30.955},{"x":1750459500884,"y":32.176},{"x":1750459440484,"y":32.143},{"x":1750459383087,"y":30.773},{"x":1750459322678,"y":29.94},{"x":1750459262295,"y":27.099},{"x":1750459201914,"y":26.716},{"x":1750459141529,"y":26.663},{"x":1750459081127,"y":36.285},{"x":1750459020757,"y":50.47},{"x":1750458960463,"y":46.833},{"x":1750458902932,"y":47.762},{"x":1750458842558,"y":48.971},{"x":1750458782180,"y":37.654},{"x":1750458721782,"y":39.173},{"x":1750458661422,"y":41.877},{"x":1750458601041,"y":38.75},{"x":1750458540646,"y":39.311},{"x":1750458480267,"y":37.49},{"x":1750458422799,"y":56.46},{"x":1750458362409,"y":60.638},{"x":1750458302036,"y":55.03},{"x":1750458241689,"y":56.119},{"x":1750458181278,"y":49.911},{"x":1750458120897,"y":35.82},{"x":1750458060507,"y":28.505},{"x":1750458000093,"y":31.393},{"x":1750457942678,"y":31.078},{"x":1750457882317,"y":30.399},{"x":1750457821951,"y":32.438},{"x":1750457761560,"y":42.268},{"x":1750457701291,"y":48.854},{"x":1750457640805,"y":44.367},{"x":1750457580431,"y":42.663},{"x":1750457522963,"y":42.094},{"x":1750457462607,"y":33.014},{"x":1750457402228,"y":34.858},{"x":1750457341870,"y":34.265},{"x":1750457281493,"y":30.63},{"x":1750457221086,"y":29.775},{"x":1750457160714,"y":30.686},{"x":1750457100352,"y":34.302},{"x":1750457042863,"y":42.518},{"x":1750456982467,"y":39.338},{"x":1750456922057,"y":36.2},{"x":1750456861634,"y":34.274},{"x":1750456801263,"y":45.176},{"x":1750456740791,"y":42.83},{"x":1750456680421,"y":39.769},{"x":1750456623007,"y":39.261},{"x":1750456562616,"y":39.432},{"x":1750456502225,"y":35.48},{"x":1750456441833,"y":40.104},{"x":1750456381470,"y":43.718},{"x":1750456321112,"y":35.2},{"x":1750456260734,"y":42.377},{"x":1750456200372,"y":33.96},{"x":1750456142875,"y":43.295},{"x":1750456082445,"y":47.247},{"x":1750456021949,"y":50.802},{"x":1750455961584,"y":48.101},{"x":1750455901193,"y":46.956},{"x":1750455840814,"y":38.306},{"x":1750455780417,"y":43.813},{"x":1750455723007,"y":51.041},{"x":1750455662640,"y":51.707},{"x":1750455602256,"y":48.889},{"x":1750455541868,"y":36.313},{"x":1750455481439,"y":33.464},{"x":1750455421063,"y":32.147},{"x":1750455360684,"y":36.353},{"x":1750455300350,"y":28.651},{"x":1750455242878,"y":32.12},{"x":1750455182521,"y":30.481},{"x":1750455122177,"y":42.522},{"x":1750455061794,"y":54.727},{"x":1750455001425,"y":46.93},{"x":1750454941030,"y":39.975},{"x":1750454880647,"y":41.215},{"x":1750454820250,"y":32.252},{"x":1750454762768,"y":35.549},{"x":1750454702388,"y":29.543},{"x":1750454642035,"y":35.349},{"x":1750454581662,"y":33.725},{"x":1750454521279,"y":28.358},{"x":1750454460913,"y":42.149},{"x":1750454400556,"y":41.288},{"x":1750454340102,"y":33.423},{"x":1750454282674,"y":33.914},{"x":1750454222312,"y":52.639},{"x":1750454161954,"y":53.179},{"x":1750454101564,"y":56.096},{"x":1750454041211,"y":56.535},{"x":1750453980804,"y":60.825},{"x":1750453920457,"y":35.816},{"x":1750453862925,"y":57.184},{"x":1750453802541,"y":44.392},{"x":1750453742171,"y":51.053},{"x":1750453681803,"y":38.087},{"x":1750453621466,"y":45.123},{"x":1750453561067,"y":45.194},{"x":1750453500707,"y":33.934},{"x":1750453440240,"y":41.683},{"x":1750453382804,"y":42.645},{"x":1750453322410,"y":31.294},{"x":1750453262058,"y":29.07},{"x":1750453201633,"y":33.341},{"x":1750453141234,"y":40.898},{"x":1750453080836,"y":42.108},{"x":1750453020437,"y":44.987},{"x":1750452963008,"y":45.182},{"x":1750452902588,"y":37.389},{"x":1750452842225,"y":41.857},{"x":1750452781833,"y":37.898},{"x":1750452721486,"y":33.135},{"x":1750452661127,"y":33.261},{"x":1750452600677,"y":31.77},{"x":1750452540300,"y":40.33},{"x":1750452482786,"y":40.919},{"x":1750452422310,"y":42.732},{"x":1750452361915,"y":38.815},{"x":1750452301557,"y":31.096},{"x":1750452241158,"y":36.991},{"x":1750452180770,"y":34.843},{"x":1750452120363,"y":30.304},{"x":1750452062867,"y":30.932},{"x":1750452002493,"y":30.223},{"x":1750451942115,"y":41.175},{"x":1750451881705,"y":46.534},{"x":1750451821309,"y":49.199},{"x":1750451760915,"y":49.365},{"x":1750451700570,"y":58.131},{"x":1750451640128,"y":58.309},{"x":1750451582674,"y":54.728},{"x":1750451522313,"y":46.179},{"x":1750451461980,"y":49.987},{"x":1750451401598,"y":45.565},{"x":1750451341240,"y":35.754},{"x":1750451280840,"y":54.072},{"x":1750451220479,"y":38.064},{"x":1750451160139,"y":39.934},{"x":1750451102693,"y":36.038},{"x":1750451042324,"y":33.723},{"x":1750450981950,"y":30.867},{"x":1750450921586,"y":28.896},{"x":1750450861236,"y":28.211},{"x":1750450800858,"y":31.225},{"x":1750450740425,"y":31.277},{"x":1750450682951,"y":34.59},{"x":1750450622547,"y":39.476},{"x":1750450562168,"y":34.137},{"x":1750450501816,"y":34.138},{"x":1750450441453,"y":31.342},{"x":1750450381112,"y":29.089},{"x":1750450320723,"y":32.051},{"x":1750450260330,"y":37.078},{"x":1750450202874,"y":34.257},{"x":1750450142518,"y":41.691},{"x":1750450082154,"y":45.69},{"x":1750450021780,"y":40.145},{"x":1750449961365,"y":39.732},{"x":1750449900990,"y":39.224},{"x":1750449840635,"y":44.358},{"x":1750449780274,"y":43.703},{"x":1750449722786,"y":49.708},{"x":1750449662384,"y":40.875},{"x":1750449602042,"y":37.584},{"x":1750449541592,"y":48.076},{"x":1750449481250,"y":35.328},{"x":1750449420855,"y":41.742},{"x":1750449360501,"y":37.505},{"x":1750449303010,"y":42.16},{"x":1750449242611,"y":38.713},{"x":1750449182229,"y":38.434},{"x":1750449121856,"y":36.97},{"x":1750449061484,"y":52.887},{"x":1750449001079,"y":37.576},{"x":1750448940731,"y":43.351},{"x":1750448880246,"y":41.528},{"x":1750448822829,"y":39.911},{"x":1750448762464,"y":35.679},{"x":1750448702094,"y":36.473},{"x":1750448641706,"y":34.803},{"x":1750448581355,"y":43.41},{"x":1750448520999,"y":34.01},{"x":1750448460636,"y":42.819},{"x":1750448400295,"y":35.305},{"x":1750448342843,"y":60.55},{"x":1750448282508,"y":46.362},{"x":1750448222130,"y":48.211},{"x":1750448161771,"y":44.722},{"x":1750448101389,"y":42.245},{"x":1750448041045,"y":34.014},{"x":1750447980678,"y":34.213},{"x":1750447920370,"y":36.238},{"x":1750447862878,"y":48.3},{"x":1750447802525,"y":30.66},{"x":1750447742177,"y":51.701},{"x":1750447681758,"y":41.303},{"x":1750447621388,"y":48.204},{"x":1750447560998,"y":59.231},{"x":1750447500627,"y":40.281},{"x":1750447440246,"y":47.835},{"x":1750447382782,"y":53.736},{"x":1750447322431,"y":54.737},{"x":1750447262072,"y":37.882},{"x":1750447201695,"y":36.84},{"x":1750447141340,"y":47.437},{"x":1750447080934,"y":38.492},{"x":1750447020570,"y":36.648},{"x":1750446960133,"y":30.753},{"x":1750446902767,"y":34.686},{"x":1750446842399,"y":46.104},{"x":1750446782008,"y":33.455},{"x":1750446721628,"y":47.261},{"x":1750446661272,"y":35.718},{"x":1750446600908,"y":35.796},{"x":1750446540524,"y":34.999},{"x":1750446480195,"y":39.689},{"x":1750446422718,"y":45.7},{"x":1750446362369,"y":33.86},{"x":1750446301986,"y":32.774},{"x":1750446241649,"y":37.59},{"x":1750446181285,"y":50.448},{"x":1750446120909,"y":47.001},{"x":1750446060544,"y":43.332},{"x":1750446000164,"y":58.346},{"x":1750445942688,"y":48.915},{"x":1750445882319,"y":34.28},{"x":1750445821961,"y":39.818},{"x":1750445761603,"y":40.495},{"x":1750445701188,"y":50.811},{"x":1750445640825,"y":51.833},{"x":1750445580450,"y":43.961},{"x":1750445523021,"y":42.789},{"x":1750445462617,"y":41.893},{"x":1750445402253,"y":45.595},{"x":1750445341841,"y":43.044},{"x":1750445281439,"y":65.39},{"x":1750445220957,"y":53.201},{"x":1750445160580,"y":55.515},{"x":1750445100180,"y":47.368},{"x":1750445042753,"y":43.391},{"x":1750444982365,"y":43.349},{"x":1750444922009,"y":48.764},{"x":1750444861659,"y":56.378},{"x":1750444801291,"y":40.033},{"x":1750444740879,"y":34.387},{"x":1750444680519,"y":31.285},{"x":1750444620147,"y":32.953},{"x":1750444562706,"y":38.666},{"x":1750444502342,"y":44.361},{"x":1750444441983,"y":40.188},{"x":1750444381634,"y":43.037},{"x":1750444321278,"y":36.21},{"x":1750444260888,"y":33.717},{"x":1750444200531,"y":32.432},{"x":1750444140127,"y":40.696},{"x":1750444082689,"y":41.793},{"x":1750444022340,"y":64.336},{"x":1750443961955,"y":60.349},{"x":1750443901597,"y":57.722},{"x":1750443841196,"y":75.279},{"x":1750443780841,"y":58.744},{"x":1750443720436,"y":38.474},{"x":1750443663016,"y":52.839},{"x":1750443602660,"y":46.847},{"x":1750443542306,"y":63.497},{"x":1750443481931,"y":57.469},{"x":1750443421540,"y":52.569},{"x":1750443361168,"y":59.461},{"x":1750443300786,"y":62.95},{"x":1750443240421,"y":66.849},{"x":1750443182966,"y":74.586},{"x":1750443122614,"y":48.679},{"x":1750443062197,"y":45.291},{"x":1750443001831,"y":53.683},{"x":1750442941469,"y":57.046},{"x":1750442881080,"y":41.67},{"x":1750442820683,"y":42.586},{"x":1750442760368,"y":36.224},{"x":1750442702819,"y":34.873},{"x":1750442642390,"y":31.348},{"x":1750442581984,"y":49.436},{"x":1750442521603,"y":55.05},{"x":1750442461253,"y":62.398},{"x":1750442400842,"y":62.884},{"x":1750442340402,"y":59.283},{"x":1750442282954,"y":59.436},{"x":1750442222600,"y":41.948},{"x":1750442162252,"y":51.607},{"x":1750442101831,"y":55.863},{"x":1750442041472,"y":40.631},{"x":1750441981068,"y":48.847},{"x":1750441920682,"y":40.325},{"x":1750441860325,"y":45.965},{"x":1750441802905,"y":42.536},{"x":1750441742467,"y":49.387},{"x":1750441681988,"y":44.473},{"x":1750441621559,"y":36.995},{"x":1750441561196,"y":33.367},{"x":1750441500809,"y":31.361},{"x":1750441440331,"y":29.11},{"x":1750441382812,"y":27.763},{"x":1750441322426,"y":36.757},{"x":1750441262071,"y":41.655},{"x":1750441201632,"y":43.759},{"x":1750441141296,"y":27.2},{"x":1750441080932,"y":34.645},{"x":1750441020535,"y":41.375},{"x":1750440960195,"y":57.183},{"x":1750440902682,"y":47.896},{"x":1750440842333,"y":49.591},{"x":1750440781925,"y":51.236},{"x":1750440721563,"y":48.678},{"x":1750440661172,"y":24.091},{"x":1750440600799,"y":36.695},{"x":1750440540400,"y":24.415},{"x":1750440482942,"y":36.78},{"x":1750440422565,"y":54.029},{"x":1750440362146,"y":41.92},{"x":1750440301802,"y":45.836},{"x":1750440241444,"y":42.498},{"x":1750440181045,"y":37.755},{"x":1750440120626,"y":33.65},{"x":1750440060240,"y":24.65},{"x":1750440002781,"y":23.302},{"x":1750439942419,"y":37.222},{"x":1750439882051,"y":24.88},{"x":1750439821657,"y":41.581},{"x":1750439761310,"y":37.54},{"x":1750439700888,"y":37.441},{"x":1750439640525,"y":35.172},{"x":1750439580167,"y":46.76},{"x":1750439522733,"y":37.723},{"x":1750439462375,"y":46.952},{"x":1750439401952,"y":47.706},{"x":1750439341588,"y":62.326},{"x":1750439281201,"y":47.145},{"x":1750439220790,"y":46.198},{"x":1750439160409,"y":28.712},{"x":1750439102963,"y":31.494},{"x":1750439042594,"y":50.159},{"x":1750438982242,"y":54.556},{"x":1750438921867,"y":51.113},{"x":1750438861487,"y":43.59},{"x":1750438801103,"y":42.244},{"x":1750438740643,"y":42.279},{"x":1750438680292,"y":55.263},{"x":1750438622815,"y":50.811},{"x":1750438562471,"y":42.136},{"x":1750438502024,"y":32.167},{"x":1750438441670,"y":29.959},{"x":1750438381300,"y":36.93},{"x":1750438320884,"y":53.96},{"x":1750438260503,"y":46.517},{"x":1750438203040,"y":39.154},{"x":1750438142658,"y":42.293},{"x":1750438082155,"y":36.853},{"x":1750438021677,"y":20.495},{"x":1750437961287,"y":23.33},{"x":1750437900925,"y":27.874},{"x":1750437840514,"y":36.149},{"x":1750437783026,"y":23.149},{"x":1750437722673,"y":24.248},{"x":1750437662292,"y":33.653},{"x":1750437601908,"y":53.507},{"x":1750437541497,"y":47.181},{"x":1750437481147,"y":46.186},{"x":1750437420753,"y":47.14},{"x":1750437360443,"y":42.173},{"x":1750437302960,"y":28.886},{"x":1750437242595,"y":26.281},{"x":1750437182253,"y":31.375},{"x":1750437121875,"y":29.754},{"x":1750437061522,"y":34.226},{"x":1750437001108,"y":39.001},{"x":1750436940741,"y":50.44},{"x":1750436880328,"y":47.091},{"x":1750436822873,"y":34.91},{"x":1750436762512,"y":29.866},{"x":1750436702177,"y":45.014},{"x":1750436641786,"y":36.122},{"x":1750436581435,"y":33.597},{"x":1750436521091,"y":44.913},{"x":1750436460705,"y":52.422},{"x":1750436400302,"y":62.271},{"x":1750436342855,"y":46.981},{"x":1750436282483,"y":46.816},{"x":1750436222149,"y":40.034},{"x":1750436161753,"y":31.012},{"x":1750436101398,"y":43.242},{"x":1750436041016,"y":31.321},{"x":1750435980644,"y":44.14},{"x":1750435920267,"y":36.309},{"x":1750435862785,"y":36.307},{"x":1750435802411,"y":43.359},{"x":1750435742049,"y":39.821},{"x":1750435681658,"y":27.608},{"x":1750435621307,"y":27.891},{"x":1750435560919,"y":33.753},{"x":1750435500585,"y":37.019},{"x":1750435440163,"y":40.647},{"x":1750435382676,"y":42.838},{"x":1750435322336,"y":53.597},{"x":1750435261935,"y":30.878},{"x":1750435201546,"y":37.344},{"x":1750435141073,"y":37.728},{"x":1750435080644,"y":28.117},{"x":1750435020304,"y":24.872},{"x":1750434962845,"y":26.485},{"x":1750434902486,"y":27.517},{"x":1750434842120,"y":28.932},{"x":1750434781768,"y":23.551},{"x":1750434721393,"y":17.86},{"x":1750434661045,"y":21.673},{"x":1750434600662,"y":23.331},{"x":1750434540287,"y":25.562},{"x":1750434482758,"y":23.666},{"x":1750434422292,"y":31.584},{"x":1750434361931,"y":41.885},{"x":1750434301526,"y":39.317},{"x":1750434241159,"y":39.288},{"x":1750434180754,"y":64.618},{"x":1750434120409,"y":35.801},{"x":1750434062946,"y":23.502},{"x":1750434002590,"y":22.738},{"x":1750433942216,"y":23.609},{"x":1750433881806,"y":31.589},{"x":1750433821447,"y":39.634},{"x":1750433761072,"y":34.595},{"x":1750433700704,"y":38.274},{"x":1750433640272,"y":37.958},{"x":1750433582789,"y":34.78},{"x":1750433522448,"y":27.142},{"x":1750433462042,"y":27.292},{"x":1750433401687,"y":23.293},{"x":1750433341291,"y":36.972},{"x":1750433280945,"y":41.102},{"x":1750433220559,"y":32.733},{"x":1750433160333,"y":41.914},{"x":1750433102738,"y":51.125},{"x":1750433042377,"y":37.545},{"x":1750432982027,"y":34.606},{"x":1750432921655,"y":49.04},{"x":1750432861279,"y":35.95},{"x":1750432800896,"y":28.868},{"x":1750432740555,"y":35.035},{"x":1750432680107,"y":18.035},{"x":1750432622677,"y":18.974},{"x":1750432562289,"y":21.939},{"x":1750432501924,"y":19.9},{"x":1750432441588,"y":32.728},{"x":1750432381203,"y":26.363},{"x":1750432320847,"y":25.348},{"x":1750432260466,"y":31.476},{"x":1750432202915,"y":30.371},{"x":1750432142524,"y":22.869},{"x":1750432082168,"y":22.775},{"x":1750432021787,"y":32.764},{"x":1750431961419,"y":40.207},{"x":1750431901066,"y":42.508},{"x":1750431840678,"y":47.316},{"x":1750431780316,"y":39.13},{"x":1750431722831,"y":57.521},{"x":1750431662484,"y":39.681},{"x":1750431602061,"y":35.436},{"x":1750431541676,"y":18.689},{"x":1750431481298,"y":21.83},{"x":1750431420922,"y":44.311},{"x":1750431360615,"y":43.956},{"x":1750431303066,"y":58.284},{"x":1750431242655,"y":64.712},{"x":1750431182290,"y":52.783},{"x":1750431121954,"y":62.681},{"x":1750431061585,"y":43.259},{"x":1750431001227,"y":44.656},{"x":1750430940795,"y":33.093},{"x":1750430880443,"y":33.164},{"x":1750430822897,"y":32.911},{"x":1750430762553,"y":39.338},{"x":1750430702215,"y":25.453},{"x":1750430641789,"y":27.103},{"x":1750430581440,"y":27.709},{"x":1750430521074,"y":27.952},{"x":1750430460677,"y":9.823},{"x":1750430400287,"y":8.877},{"x":1750430342771,"y":12.6},{"x":1750430282408,"y":21.216},{"x":1750430222030,"y":29.374},{"x":1750430161680,"y":30.052},{"x":1750430101273,"y":18.089},{"x":1750430040906,"y":23.744},{"x":1750429980524,"y":31.581},{"x":1750429920136,"y":22.906},{"x":1750429862651,"y":8.414},{"x":1750429802281,"y":22.777},{"x":1750429741908,"y":30.6},{"x":1750429681518,"y":15.952},{"x":1750429621162,"y":20.296},{"x":1750429560784,"y":21.984},{"x":1750429500417,"y":9.577},{"x":1750429442908,"y":31.69},{"x":1750429382536,"y":14.21},{"x":1750429322168,"y":18.657},{"x":1750429261792,"y":17.965},{"x":1750429201418,"y":15.507},{"x":1750429141052,"y":29.556},{"x":1750429080675,"y":32.236},{"x":1750429020308,"y":36.057},{"x":1750428962871,"y":50.569},{"x":1750428902494,"y":36.452},{"x":1750428842139,"y":51.242},{"x":1750428781763,"y":33.896},{"x":1750428721405,"y":21.821},{"x":1750428660966,"y":27.438},{"x":1750428600633,"y":36.441},{"x":1750428540185,"y":23.386},{"x":1750428482746,"y":15.308},{"x":1750428422356,"y":29.204},{"x":1750428361981,"y":19.705},{"x":1750428301615,"y":20.334},{"x":1750428241242,"y":25.896},{"x":1750428180859,"y":27.914},{"x":1750428120447,"y":17.331},{"x":1750428063025,"y":9.947},{"x":1750428002574,"y":20.187},{"x":1750427942198,"y":21.745},{"x":1750427881824,"y":19.248},{"x":1750427821421,"y":24.413},{"x":1750427761031,"y":17.637},{"x":1750427700629,"y":20.804},{"x":1750427640255,"y":11.793},{"x":1750427582797,"y":20.854},{"x":1750427522448,"y":14.447},{"x":1750427462066,"y":21.945},{"x":1750427401481,"y":19.833},{"x":1750427341125,"y":28.592},{"x":1750427280706,"y":25.161},{"x":1750427220239,"y":18.683},{"x":1750427162770,"y":25.203},{"x":1750427102416,"y":32.649},{"x":1750427042048,"y":13.286},{"x":1750426981669,"y":19.326},{"x":1750426921290,"y":17.954},{"x":1750426860920,"y":39.69},{"x":1750426800525,"y":35.046},{"x":1750426740125,"y":25.468},{"x":1750426682737,"y":34.681},{"x":1750426622375,"y":23.451},{"x":1750426561996,"y":21.019},{"x":1750426501622,"y":17.429},{"x":1750426441263,"y":13.753},{"x":1750426380831,"y":25.219},{"x":1750426320471,"y":25.172},{"x":1750426262988,"y":27.808},{"x":1750426202625,"y":19.747},{"x":1750426142256,"y":17.174},{"x":1750426081864,"y":27.099},{"x":1750426021492,"y":26.83},{"x":1750425961121,"y":20.772},{"x":1750425900764,"y":23.491},{"x":1750425840399,"y":21.975},{"x":1750425782928,"y":20.248},{"x":1750425722571,"y":23.921},{"x":1750425662197,"y":15.938},{"x":1750425601817,"y":11.305},{"x":1750425541423,"y":7.853},{"x":1750425481065,"y":5.143},{"x":1750425420719,"y":3.949},{"x":1750425360359,"y":11.102},{"x":1750425302797,"y":13.624},{"x":1750425242443,"y":19.578},{"x":1750425182088,"y":11.211},{"x":1750425121704,"y":10.809},{"x":1750425061359,"y":17.643},{"x":1750425000962,"y":11.584},{"x":1750424940591,"y":22.924},{"x":1750424880168,"y":22.685},{"x":1750424822697,"y":22.581},{"x":1750424762334,"y":18.852},{"x":1750424701981,"y":11.332},{"x":1750424641600,"y":3.485},{"x":1750424581235,"y":8.281},{"x":1750424520853,"y":15.914},{"x":1750424460481,"y":23.748},{"x":1750424400127,"y":18.764},{"x":1750424342684,"y":16.338},{"x":1750424282337,"y":15.472},{"x":1750424221972,"y":16.302},{"x":1750424161619,"y":8.99},{"x":1750424101218,"y":11.794},{"x":1750424040853,"y":9.077},{"x":1750423980511,"y":15.674},{"x":1750423920144,"y":38.781},{"x":1750423862742,"y":23.844},{"x":1750423802387,"y":34.385},{"x":1750423741986,"y":41.775},{"x":1750423681546,"y":34.521},{"x":1750423621067,"y":20.596},{"x":1750423560636,"y":12.672},{"x":1750423500310,"y":24.685},{"x":1750423442829,"y":23.532},{"x":1750423382443,"y":20.08},{"x":1750423322060,"y":14.832},{"x":1750423261714,"y":17.388},{"x":1750423201320,"y":13.23},{"x":1750423140930,"y":3.543},{"x":1750423080585,"y":3.219},{"x":1750423020201,"y":9.386},{"x":1750422962710,"y":6.753},{"x":1750422902364,"y":6.548},{"x":1750422841974,"y":9.115},{"x":1750422781573,"y":11.64},{"x":1750422721213,"y":4.477},{"x":1750422660850,"y":1.504},{"x":1750422600431,"y":8.995},{"x":1750422542859,"y":10.189},{"x":1750422482489,"y":8.131},{"x":1750422422124,"y":5.012},{"x":1750422361722,"y":5.784},{"x":1750422301374,"y":9.719},{"x":1750422241011,"y":21.578},{"x":1750422180639,"y":19.429},{"x":1750422120305,"y":10.251},{"x":1750422062815,"y":21.14},{"x":1750422002443,"y":9.009},{"x":1750421942050,"y":13.267},{"x":1750421881691,"y":35.733},{"x":1750421821352,"y":22.893},{"x":1750421760955,"y":33.171},{"x":1750421700540,"y":35.178},{"x":1750421640153,"y":37.786},{"x":1750421582754,"y":7.533},{"x":1750421522367,"y":9.878},{"x":1750421462001,"y":16.388},{"x":1750421401642,"y":14.516},{"x":1750421341265,"y":22.551},{"x":1750421280896,"y":18.84},{"x":1750421220518,"y":19.897},{"x":1750421160090,"y":24.518},{"x":1750421102688,"y":30.249},{"x":1750421042322,"y":22.769},{"x":1750420981916,"y":21.896},{"x":1750420921566,"y":19.165},{"x":1750420861205,"y":8.61},{"x":1750420800837,"y":14.34},{"x":1750420740390,"y":27.266},{"x":1750420682980,"y":20.153},{"x":1750420622623,"y":9.066},{"x":1750420562229,"y":5.783},{"x":1750420501862,"y":11.618},{"x":1750420441462,"y":6.524},{"x":1750420381114,"y":23.438},{"x":1750420320745,"y":12.389},{"x":1750420260402,"y":15.502},{"x":1750420203002,"y":9.288},{"x":1750420142649,"y":10.855},{"x":1750420082281,"y":-0.502},{"x":1750420021811,"y":2.833},{"x":1750419961419,"y":5.7},{"x":1750419901098,"y":18.948},{"x":1750419840736,"y":20.89},{"x":1750419780347,"y":8.025},{"x":1750419722895,"y":12.436},{"x":1750419662501,"y":35.87},{"x":1750419602107,"y":33.936},{"x":1750419541726,"y":25.388},{"x":1750419481344,"y":27.612},{"x":1750419420987,"y":22.393},{"x":1750419360605,"y":5.704},{"x":1750419300304,"y":9.265},{"x":1750419242762,"y":12.077},{"x":1750419182389,"y":12.401},{"x":1750419122041,"y":15.811},{"x":1750419061714,"y":6.281},{"x":1750419001342,"y":14.754},{"x":1750418940992,"y":35.669},{"x":1750418880603,"y":37.421},{"x":1750418820237,"y":14.281},{"x":1750418762814,"y":19.31},{"x":1750418702458,"y":17.942},{"x":1750418642052,"y":31.493},{"x":1750418581646,"y":36.585},{"x":1750418521315,"y":36.504},{"x":1750418460928,"y":29.489},{"x":1750418400547,"y":31.631},{"x":1750418340065,"y":44.575},{"x":1750418282696,"y":23.289},{"x":1750418222329,"y":12.003},{"x":1750418161940,"y":16.21},{"x":1750418101611,"y":4.413},{"x":1750418041200,"y":5.787},{"x":1750417980804,"y":10.86},{"x":1750417920419,"y":10.965},{"x":1750417862966,"y":13.028},{"x":1750417802614,"y":30.377},{"x":1750417742270,"y":25.066},{"x":1750417681896,"y":9.451},{"x":1750417621524,"y":5.846},{"x":1750417561160,"y":3.776},{"x":1750417500770,"y":3.588},{"x":1750417440394,"y":7.19},{"x":1750417382943,"y":17.601},{"x":1750417322564,"y":1.45},{"x":1750417262184,"y":0.514},{"x":1750417201819,"y":0.802},{"x":1750417141406,"y":11.186},{"x":1750417081053,"y":16.824},{"x":1750417020691,"y":18.811},{"x":1750416960343,"y":33.582},{"x":1750416902837,"y":29.307},{"x":1750416842466,"y":47.463},{"x":1750416782123,"y":31.958},{"x":1750416721754,"y":15.121},{"x":1750416661394,"y":10.451},{"x":1750416601050,"y":13.176},{"x":1750416540688,"y":15.327},{"x":1750416480323,"y":11.04},{"x":1750416422727,"y":31.114},{"x":1750416362388,"y":24.292},{"x":1750416302016,"y":20.443},{"x":1750416241643,"y":28.908},{"x":1750416181281,"y":20.23},{"x":1750416120928,"y":20.713},{"x":1750416060603,"y":12.66},{"x":1750416000222,"y":20.133},{"x":1750415942795,"y":18.862},{"x":1750415882455,"y":30.369},{"x":1750415822118,"y":16.489},{"x":1750415761730,"y":31.377},{"x":1750415701349,"y":30.184},{"x":1750415640985,"y":22.529},{"x":1750415580631,"y":14.916},{"x":1750415520321,"y":22.296},{"x":1750415462840,"y":9.479},{"x":1750415402486,"y":19.351},{"x":1750415342115,"y":9.619},{"x":1750415281752,"y":14.045},{"x":1750415221395,"y":7.477},{"x":1750415161029,"y":9.021},{"x":1750415100641,"y":21.484},{"x":1750415040295,"y":26.655},{"x":1750414982823,"y":17.465},{"x":1750414922463,"y":18.387},{"x":1750414862078,"y":16.708},{"x":1750414801673,"y":19.736},{"x":1750414741298,"y":22.765},{"x":1750414680906,"y":39.934},{"x":1750414620550,"y":30.107},{"x":1750414560064,"y":20.594},{"x":1750414502715,"y":30.061},{"x":1750414442329,"y":14.258},{"x":1750414381975,"y":17.519},{"x":1750414321613,"y":30.116},{"x":1750414261225,"y":15.639},{"x":1750414200866,"y":20.776},{"x":1750414140473,"y":17.41},{"x":1750414080119,"y":43.373},{"x":1750414022651,"y":29.961},{"x":1750413962305,"y":28.09},{"x":1750413901937,"y":0.991},{"x":1750413841548,"y":12.362},{"x":1750413781177,"y":26.229},{"x":1750413720761,"y":11.78},{"x":1750413660391,"y":27.755},{"x":1750413602856,"y":32.558},{"x":1750413542501,"y":33.315},{"x":1750413482051,"y":14.76},{"x":1750413421700,"y":26.147},{"x":1750413361326,"y":16.362},{"x":1750413300908,"y":11.098},{"x":1750413240545,"y":14.448},{"x":1750413180121,"y":4.629},{"x":1750413122672,"y":12.428},{"x":1750413062307,"y":28.018},{"x":1750413001952,"y":28.041},{"x":1750412941600,"y":35.997},{"x":1750412881197,"y":33.731},{"x":1750412820781,"y":25.13},{"x":1750412760393,"y":32.761},{"x":1750412702944,"y":27.238},{"x":1750412642577,"y":6.696},{"x":1750412582248,"y":17.989},{"x":1750412521873,"y":15.078},{"x":1750412461526,"y":20.653},{"x":1750412401183,"y":26.136},{"x":1750412340820,"y":10.852},{"x":1750412280398,"y":15.081},{"x":1750412222960,"y":26.063},{"x":1750412162617,"y":45.763},{"x":1750412102256,"y":25.62},{"x":1750412041906,"y":46.96},{"x":1750411981535,"y":40.239},{"x":1750411921191,"y":44.034},{"x":1750411860784,"y":36.717},{"x":1750411800440,"y":35.866},{"x":1750411742945,"y":24.607},{"x":1750411682560,"y":27.59},{"x":1750411622207,"y":14.283},{"x":1750411561826,"y":36.526},{"x":1750411501454,"y":37.226},{"x":1750411441061,"y":32.86},{"x":1750411380702,"y":34.239},{"x":1750411320340,"y":59.304},{"x":1750411262890,"y":41.596},{"x":1750411202517,"y":47.965},{"x":1750411142179,"y":42.934},{"x":1750411081796,"y":57.098},{"x":1750411021436,"y":21.943},{"x":1750410961084,"y":28.269},{"x":1750410900721,"y":23.953},{"x":1750410840309,"y":27.922},{"x":1750410782837,"y":18.273},{"x":1750410722465,"y":29.448},{"x":1750410662115,"y":30.084},{"x":1750410601735,"y":39.77},{"x":1750410541358,"y":40.494},{"x":1750410480976,"y":40.824},{"x":1750410420589,"y":40.581},{"x":1750410360150,"y":37.956},{"x":1750410302699,"y":34.874},{"x":1750410242359,"y":38.172},{"x":1750410182021,"y":15.931},{"x":1750410121644,"y":29.895},{"x":1750410061260,"y":24.607},{"x":1750410000854,"y":21.141},{"x":1750409940348,"y":22.537},{"x":1750409882904,"y":29.916},{"x":1750409822544,"y":33.082},{"x":1750409762206,"y":26.906},{"x":1750409701804,"y":26.259},{"x":1750409641433,"y":10.738},{"x":1750409581085,"y":26.763},{"x":1750409520705,"y":15.117},{"x":1750409460380,"y":37.781},{"x":1750409402979,"y":21.158},{"x":1750409342592,"y":8.43},{"x":1750409282166,"y":8.96},{"x":1750409221700,"y":23.694},{"x":1750409161348,"y":24.071},{"x":1750409101011,"y":32.728},{"x":1750409040618,"y":18.975},{"x":1750408980266,"y":17.876},{"x":1750408922820,"y":24.362},{"x":1750408862450,"y":15.655},{"x":1750408802098,"y":19.843},{"x":1750408741729,"y":16.008},{"x":1750408681375,"y":14.871},{"x":1750408620970,"y":20.563},{"x":1750408560628,"y":15.981},{"x":1750408500228,"y":23.578},{"x":1750408442731,"y":18.495},{"x":1750408382323,"y":18.858},{"x":1750408321945,"y":42.152},{"x":1750408261586,"y":34.514},{"x":1750408201214,"y":42.916},{"x":1750408140809,"y":39.971},{"x":1750408080422,"y":37.57},{"x":1750408022996,"y":32.656},{"x":1750407962648,"y":28.679},{"x":1750407902318,"y":30.971},{"x":1750407841943,"y":28.842},{"x":1750407781594,"y":17.837},{"x":1750407721235,"y":21.613},{"x":1750407660857,"y":31.761},{"x":1750407600522,"y":32.85},{"x":1750407540119,"y":37.794},{"x":1750407482702,"y":19.192},{"x":1750407422339,"y":30.251},{"x":1750407361994,"y":18.424},{"x":1750407301625,"y":33.13},{"x":1750407241269,"y":29.811},{"x":1750407180866,"y":36.828},{"x":1750407120495,"y":18.764},{"x":1750407060097,"y":25.788},{"x":1750407002684,"y":30.883},{"x":1750406942351,"y":29.18},{"x":1750406881967,"y":17.786},{"x":1750406821623,"y":33.775},{"x":1750406761276,"y":26.808},{"x":1750406700912,"y":35.625},{"x":1750406640546,"y":22.377},{"x":1750406580174,"y":20.378},{"x":1750406522700,"y":32.956},{"x":1750406462301,"y":27.188},{"x":1750406401933,"y":35.738},{"x":1750406341532,"y":20.63},{"x":1750406281186,"y":27.925},{"x":1750406220814,"y":34.23},{"x":1750406160486,"y":28.57},{"x":1750406103017,"y":29.703},{"x":1750406042636,"y":44.95},{"x":1750405982265,"y":41.781},{"x":1750405921859,"y":32.27},{"x":1750405861516,"y":44.273},{"x":1750405801107,"y":45.646},{"x":1750405740774,"y":40.889},{"x":1750405680309,"y":42.695},{"x":1750405622839,"y":38.772},{"x":1750405562526,"y":58.034},{"x":1750405502158,"y":44.093},{"x":1750405441811,"y":24.691},{"x":1750405381431,"y":23.03},{"x":1750405321085,"y":32.689},{"x":1750405260703,"y":16.577},{"x":1750405200383,"y":16.976},{"x":1750405142935,"y":24.21},{"x":1750405082572,"y":32.797},{"x":1750405022195,"y":27.38},{"x":1750404961812,"y":20.796},{"x":1750404901492,"y":20.484},{"x":1750404841118,"y":23.562},{"x":1750404780779,"y":21.939},{"x":1750404720410,"y":21.165},{"x":1750404663034,"y":23.612},{"x":1750404602642,"y":15.127},{"x":1750404542285,"y":21.506},{"x":1750404481893,"y":22.026},{"x":1750404421544,"y":19.54},{"x":1750404361194,"y":25.347},{"x":1750404300776,"y":25.791},{"x":1750404240417,"y":25.328},{"x":1750404182997,"y":35.873},{"x":1750404122663,"y":18.096},{"x":1750404062297,"y":24.16},{"x":1750404001924,"y":24.355},{"x":1750403941578,"y":33.0},{"x":1750403881183,"y":16.749},{"x":1750403820803,"y":27.007},{"x":1750403760448,"y":23.614},{"x":1750403702940,"y":34.986},{"x":1750403642598,"y":35.467},{"x":1750403582241,"y":23.127},{"x":1750403521878,"y":26.932},{"x":1750403461530,"y":18.894},{"x":1750403401170,"y":17.039},{"x":1750403340788,"y":39.642},{"x":1750403280438,"y":27.084},{"x":1750403222999,"y":23.096},{"x":1750403162646,"y":27.876},{"x":1750403102307,"y":40.651},{"x":1750403041938,"y":31.801},{"x":1750402981581,"y":41.149},{"x":1750402921195,"y":30.058},{"x":1750402860829,"y":28.958},{"x":1750402800442,"y":23.542},{"x":1750402742949,"y":33.163},{"x":1750402682574,"y":30.056},{"x":1750402622236,"y":37.457},{"x":1750402561876,"y":33.683},{"x":1750402501489,"y":36.559},{"x":1750402441134,"y":46.249},{"x":1750402380773,"y":35.404},{"x":1750402320454,"y":35.714},{"x":1750402262968,"y":41.322},{"x":1750402202612,"y":40.932},{"x":1750402142262,"y":31.095},{"x":1750402081856,"y":27.215},{"x":1750402021466,"y":42.602},{"x":1750401961087,"y":43.968},{"x":1750401900713,"y":49.529},{"x":1750401840323,"y":42.839},{"x":1750401782877,"y":48.586},{"x":1750401722511,"y":26.069},{"x":1750401662160,"y":30.056},{"x":1750401601810,"y":21.229},{"x":1750401541474,"y":23.544},{"x":1750401481134,"y":17.022},{"x":1750401420757,"y":15.977},{"x":1750401360436,"y":27.386},{"x":1750401302942,"y":18.595},{"x":1750401242599,"y":21.327},{"x":1750401182234,"y":21.07},{"x":1750401121882,"y":28.242},{"x":1750401061520,"y":23.381},{"x":1750401001148,"y":24.885},{"x":1750400940753,"y":20.327},{"x":1750400880428,"y":28.513},{"x":1750400822994,"y":32.449},{"x":1750400762650,"y":33.735},{"x":1750400702313,"y":32.846},{"x":1750400641958,"y":23.586},{"x":1750400581627,"y":19.222},{"x":1750400521274,"y":19.897},{"x":1750400460891,"y":24.409},{"x":1750400400586,"y":21.531},{"x":1750400340148,"y":21.197},{"x":1750400282736,"y":21.661},{"x":1750400222382,"y":16.243},{"x":1750400162029,"y":29.543},{"x":1750400101704,"y":15.534},{"x":1750400041357,"y":31.797},{"x":1750399980997,"y":16.66},{"x":1750399920645,"y":27.632},{"x":1750399860260,"y":20.945},{"x":1750399802789,"y":36.309},{"x":1750399742437,"y":20.093},{"x":1750399682051,"y":32.357},{"x":1750399621687,"y":21.215},{"x":1750399561350,"y":30.771},{"x":1750399500994,"y":15.721},{"x":1750399440627,"y":31.117},{"x":1750399380217,"y":37.679},{"x":1750399322763,"y":38.43},{"x":1750399262422,"y":22.769},{"x":1750399202038,"y":27.898},{"x":1750399141663,"y":17.913},{"x":1750399081320,"y":17.878},{"x":1750399020950,"y":20.415},{"x":1750398960601,"y":16.163},{"x":1750398900225,"y":14.626},{"x":1750398842747,"y":24.307},{"x":1750398782392,"y":25.005},{"x":1750398722005,"y":23.314},{"x":1750398661693,"y":22.526},{"x":1750398601294,"y":25.165},{"x":1750398540943,"y":13.782},{"x":1750398480452,"y":16.252},{"x":1750398423015,"y":20.308},{"x":1750398362658,"y":17.062},{"x":1750398302312,"y":29.101},{"x":1750398241957,"y":29.163},{"x":1750398181587,"y":47.077},{"x":1750398121223,"y":46.487},{"x":1750398060796,"y":47.911},{"x":1750398000440,"y":51.493},{"x":1750397942915,"y":34.807},{"x":1750397882566,"y":25.679},{"x":1750397822210,"y":27.905},{"x":1750397761865,"y":24.892},{"x":1750397701495,"y":21.381},{"x":1750397641145,"y":21.669},{"x":1750397580791,"y":17.771},{"x":1750397520427,"y":17.407},{"x":1750397462943,"y":18.066},{"x":1750397402579,"y":17.319},{"x":1750397342208,"y":20.012},{"x":1750397281803,"y":19.838},{"x":1750397221457,"y":19.603},{"x":1750397161106,"y":19.62},{"x":1750397100690,"y":22.763},{"x":1750397040284,"y":23.376},{"x":1750396982796,"y":20.636},{"x":1750396922465,"y":19.267},{"x":1750396862119,"y":27.653},{"x":1750396801764,"y":26.502},{"x":1750396741412,"y":35.404},{"x":1750396681010,"y":38.607},{"x":1750396620644,"y":36.044},{"x":1750396560296,"y":28.398},{"x":1750396502838,"y":24.523},{"x":1750396442514,"y":23.521},{"x":1750396382160,"y":23.053},{"x":1750396321743,"y":22.294},{"x":1750396261381,"y":22.667},{"x":1750396200984,"y":22.585},{"x":1750396140638,"y":23.341},{"x":1750396080299,"y":32.873},{"x":1750396022810,"y":29.809},{"x":1750395962469,"y":33.721},{"x":1750395902077,"y":30.452},{"x":1750395841720,"y":18.6},{"x":1750395781358,"y":23.531},{"x":1750395721012,"y":22.718},{"x":1750395660670,"y":20.78},{"x":1750395600527,"y":24.651},{"x":1750395542830,"y":23.83},{"x":1750395482445,"y":23.32},{"x":1750395422101,"y":23.918},{"x":1750395361702,"y":29.469},{"x":1750395301335,"y":29.195},{"x":1750395240976,"y":30.666},{"x":1750395180634,"y":27.113},{"x":1750395120307,"y":26.323},{"x":1750395062816,"y":19.78},{"x":1750395002449,"y":26.233},{"x":1750394942055,"y":28.884},{"x":1750394881618,"y":25.046},{"x":1750394821171,"y":24.096},{"x":1750394760760,"y":25.762},{"x":1750394700414,"y":21.105},{"x":1750394642908,"y":20.861},{"x":1750394582558,"y":23.135},{"x":1750394522169,"y":20.861},{"x":1750394461791,"y":22.022},{"x":1750394401401,"y":31.82},{"x":1750394341045,"y":31.08},{"x":1750394280665,"y":31.631},{"x":1750394220301,"y":29.976},{"x":1750394162867,"y":30.325},{"x":1750394102505,"y":22.836},{"x":1750394042117,"y":22.355},{"x":1750393981723,"y":32.179},{"x":1750393921379,"y":27.89},{"x":1750393860966,"y":26.709},{"x":1750393800596,"y":39.185},{"x":1750393740233,"y":45.832},{"x":1750393682785,"y":45.423},{"x":1750393622420,"y":44.893},{"x":1750393562030,"y":46.624},{"x":1750393501655,"y":36.223},{"x":1750393441276,"y":24.717},{"x":1750393380923,"y":25.907},{"x":1750393320535,"y":24.669},{"x":1750393260179,"y":22.585},{"x":1750393202729,"y":24.836},{"x":1750393142364,"y":24.306},{"x":1750393081986,"y":23.112},{"x":1750393021622,"y":26.517},{"x":1750392961273,"y":21.059},{"x":1750392900882,"y":24.05},{"x":1750392840521,"y":28.115},{"x":1750392780150,"y":26.847},{"x":1750392722690,"y":26.348},{"x":1750392662299,"y":25.843},{"x":1750392601900,"y":23.452},{"x":1750392541538,"y":33.601},{"x":1750392481137,"y":21.716},{"x":1750392420763,"y":22.719},{"x":1750392360409,"y":25.312},{"x":1750392302960,"y":25.061},{"x":1750392242601,"y":27.131},{"x":1750392182247,"y":24.859},{"x":1750392121857,"y":40.076},{"x":1750392061464,"y":43.015},{"x":1750392000963,"y":44.731},{"x":1750391940574,"y":38.556},{"x":1750391880140,"y":35.285},{"x":1750391822704,"y":36.06},{"x":1750391762340,"y":33.814},{"x":1750391701922,"y":25.2},{"x":1750391641546,"y":24.618},{"x":1750391581141,"y":25.47},{"x":1750391520751,"y":23.096},{"x":1750391460311,"y":36.129},{"x":1750391402807,"y":54.437},{"x":1750391342420,"y":58.256},{"x":1750391281959,"y":54.435},{"x":1750391221527,"y":56.149},{"x":1750391161151,"y":40.253},{"x":1750391100798,"y":32.71},{"x":1750391040364,"y":35.278},{"x":1750390982950,"y":34.251},{"x":1750390922580,"y":29.805},{"x":1750390862198,"y":40.864},{"x":1750390801813,"y":36.394},{"x":1750390741450,"y":37.266},{"x":1750390681102,"y":45.819},{"x":1750390620718,"y":46.407},{"x":1750390560364,"y":34.051},{"x":1750390502897,"y":37.715},{"x":1750390442501,"y":31.186},{"x":1750390382140,"y":30.592},{"x":1750390321728,"y":35.502},{"x":1750390261329,"y":36.344},{"x":1750390200940,"y":33.235},{"x":1750390140579,"y":33.177},{"x":1750390080260,"y":31.559},{"x":1750390022740,"y":35.966},{"x":1750389962387,"y":42.886},{"x":1750389902026,"y":45.384},{"x":1750389841646,"y":42.541},{"x":1750389781234,"y":40.8},{"x":1750389720858,"y":38.088},{"x":1750389660484,"y":31.285},{"x":1750389600146,"y":29.863},{"x":1750389542704,"y":33.904},{"x":1750389482333,"y":29.743},{"x":1750389421972,"y":36.024},{"x":1750389361597,"y":43.892},{"x":1750389301235,"y":46.266},{"x":1750389240810,"y":58.179},{"x":1750389180424,"y":59.755},{"x":1750389122984,"y":54.743},{"x":1750389062585,"y":45.798},{"x":1750389002212,"y":52.534},{"x":1750388941816,"y":41.658},{"x":1750388881470,"y":45.329},{"x":1750388821090,"y":44.119},{"x":1750388760738,"y":41.174},{"x":1750388700403,"y":34.284},{"x":1750388642820,"y":25.103},{"x":1750388580644,"y":29.364},{"x":1750388522943,"y":32.392},{"x":1750388462425,"y":29.914},{"x":1750388400451,"y":27.415},{"x":1750388342948,"y":33.182},{"x":1750388282589,"y":26.847},{"x":1750388222236,"y":28.476},{"x":1750388161874,"y":39.497},{"x":1750388101459,"y":36.855},{"x":1750388041081,"y":33.497},{"x":1750387980728,"y":37.524},{"x":1750387920334,"y":33.922},{"x":1750387862861,"y":26.057},{"x":1750387802497,"y":30.741},{"x":1750387742142,"y":26.317},{"x":1750387681733,"y":25.046},{"x":1750387621267,"y":27.539},{"x":1750387560890,"y":26.133},{"x":1750387500500,"y":27.658},{"x":1750387443089,"y":26.567},{"x":1750387382640,"y":24.494},{"x":1750387322259,"y":23.194},{"x":1750387261880,"y":28.757},{"x":1750387201481,"y":25.41},{"x":1750387141126,"y":26.87},{"x":1750387080751,"y":27.064},{"x":1750387020367,"y":57.218},{"x":1750386962846,"y":53.873},{"x":1750386902494,"y":56.955},{"x":1750386842136,"y":55.45},{"x":1750386781756,"y":54.452},{"x":1750386721396,"y":35.6},{"x":1750386660970,"y":35.427},{"x":1750386600615,"y":28.865},{"x":1750386540160,"y":35.894},{"x":1750386482735,"y":30.715},{"x":1750386422376,"y":26.482},{"x":1750386361984,"y":28.376},{"x":1750386301620,"y":23.526},{"x":1750386241228,"y":23.543},{"x":1750386180857,"y":26.981},{"x":1750386120524,"y":25.297},{"x":1750386060098,"y":24.183},{"x":1750386002672,"y":27.729},{"x":1750385942306,"y":26.255},{"x":1750385881940,"y":27.375},{"x":1750385821588,"y":32.352},{"x":1750385761224,"y":33.966},{"x":1750385700853,"y":42.17},{"x":1750385640489,"y":49.142},{"x":1750385580144,"y":40.697},{"x":1750385522658,"y":39.826},{"x":1750385462301,"y":33.872},{"x":1750385401902,"y":24.349},{"x":1750385341564,"y":23.231},{"x":1750385281163,"y":29.941},{"x":1750385220776,"y":25.091},{"x":1750385160433,"y":24.57},{"x":1750385102990,"y":28.466},{"x":1750385042639,"y":24.854},{"x":1750384982231,"y":32.495},{"x":1750384921860,"y":39.397},{"x":1750384861491,"y":31.791},{"x":1750384801098,"y":34.794},{"x":1750384740649,"y":38.005},{"x":1750384680239,"y":28.516},{"x":1750384622840,"y":46.751},{"x":1750384562478,"y":46.283},{"x":1750384502110,"y":42.724},{"x":1750384441732,"y":44.814},{"x":1750384381373,"y":45.794},{"x":1750384320968,"y":24.706},{"x":1750384260605,"y":24.254},{"x":1750384200300,"y":24.15},{"x":1750384142728,"y":22.054},{"x":1750384082320,"y":24.709},{"x":1750384021815,"y":25.278},{"x":1750383961448,"y":25.522},{"x":1750383901097,"y":29.234},{"x":1750383840728,"y":22.607},{"x":1750383780357,"y":22.645},{"x":1750383722918,"y":25.309},{"x":1750383662521,"y":26.395},{"x":1750383602170,"y":25.783},{"x":1750383541809,"y":31.23},{"x":1750383481469,"y":27.046},{"x":1750383421105,"y":26.077},{"x":1750383360740,"y":24.739},{"x":1750383300393,"y":24.302},{"x":1750383242942,"y":24.223},{"x":1750383182587,"y":29.385},{"x":1750383122196,"y":23.818},{"x":1750383061822,"y":28.802},{"x":1750383001443,"y":24.54},{"x":1750382941083,"y":23.687},{"x":1750382880717,"y":26.511},{"x":1750382820318,"y":27.024},{"x":1750382762884,"y":24.028},{"x":1750382702526,"y":28.74},{"x":1750382642161,"y":26.143},{"x":1750382581748,"y":34.975},{"x":1750382521391,"y":40.079},{"x":1750382461003,"y":43.394},{"x":1750382400657,"y":41.824},{"x":1750382340252,"y":41.248},{"x":1750382282713,"y":40.331},{"x":1750382222355,"y":38.993},{"x":1750382161983,"y":42.914},{"x":1750382101622,"y":33.804},{"x":1750382041271,"y":35.623},{"x":1750381980889,"y":28.315},{"x":1750381920493,"y":53.414},{"x":1750381860088,"y":57.494},{"x":1750381802693,"y":57.525},{"x":1750381742307,"y":52.318},{"x":1750381681916,"y":54.86},{"x":1750381621571,"y":42.516},{"x":1750381561152,"y":34.606},{"x":1750381500758,"y":38.216},{"x":1750381440353,"y":39.34},{"x":1750381382854,"y":30.921},{"x":1750381322451,"y":27.447},{"x":1750381262076,"y":26.55},{"x":1750381201673,"y":27.828},{"x":1750381141291,"y":26.953},{"x":1750381080944,"y":30.995},{"x":1750381020564,"y":27.293},{"x":1750380960160,"y":27.676},{"x":1750380902719,"y":26.379},{"x":1750380842361,"y":28.687},{"x":1750380781977,"y":33.89},{"x":1750380721610,"y":37.763},{"x":1750380661237,"y":36.889},{"x":1750380600844,"y":33.006},{"x":1750380540479,"y":33.689},{"x":1750380483010,"y":23.039},{"x":1750380422540,"y":24.005},{"x":1750380362186,"y":26.971},{"x":1750380301821,"y":28.943},{"x":1750380241432,"y":31.295},{"x":1750380181081,"y":30.877},{"x":1750380120666,"y":26.329},{"x":1750380060321,"y":36.617},{"x":1750380002873,"y":30.446},{"x":1750379942510,"y":30.163},{"x":1750379882150,"y":33.51},{"x":1750379821770,"y":33.098},{"x":1750379761417,"y":23.635},{"x":1750379701038,"y":29.639},{"x":1750379640658,"y":32.066},{"x":1750379580314,"y":27.669},{"x":1750379522845,"y":27.414},{"x":1750379462496,"y":26.466},{"x":1750379402126,"y":23.304},{"x":1750379341749,"y":28.31},{"x":1750379281376,"y":23.871},{"x":1750379221001,"y":23.727},{"x":1750379160609,"y":23.87},{"x":1750379100247,"y":22.948},{"x":1750379042838,"y":27.48},{"x":1750378982467,"y":29.736},{"x":1750378922104,"y":33.44},{"x":1750378861740,"y":36.814},{"x":1750378801385,"y":33.516},{"x":1750378740996,"y":31.929},{"x":1750378680640,"y":46.341},{"x":1750378620310,"y":47.017},{"x":1750378562748,"y":49.268},{"x":1750378502384,"y":44.748},{"x":1750378441946,"y":44.172},{"x":1750378381595,"y":24.65},{"x":1750378321243,"y":26.669},{"x":1750378260857,"y":29.066},{"x":1750378200497,"y":28.944},{"x":1750378142996,"y":26.292},{"x":1750378082634,"y":31.179},{"x":1750378022244,"y":28.718},{"x":1750377961895,"y":30.745},{"x":1750377901545,"y":32.956},{"x":1750377841193,"y":24.343},{"x":1750377780836,"y":25.671},{"x":1750377720462,"y":26.093},{"x":1750377662978,"y":28.043},{"x":1750377602601,"y":30.286},{"x":1750377542255,"y":28.302},{"x":1750377481831,"y":31.6},{"x":1750377421489,"y":27.95},{"x":1750377361098,"y":38.158},{"x":1750377300692,"y":44.664},{"x":1750377240342,"y":34.741},{"x":1750377182942,"y":34.253},{"x":1750377122581,"y":36.217},{"x":1750377062225,"y":25.056},{"x":1750377001833,"y":42.592},{"x":1750376941462,"y":44.746},{"x":1750376881075,"y":47.444},{"x":1750376820561,"y":46.451},{"x":1750376760191,"y":34.005},{"x":1750376702728,"y":33.406},{"x":1750376642384,"y":29.396},{"x":1750376582023,"y":25.279},{"x":1750376521592,"y":24.436},{"x":1750376461197,"y":24.432},{"x":1750376400811,"y":24.701},{"x":1750376340432,"y":26.447},{"x":1750376282983,"y":36.699},{"x":1750376222629,"y":27.948},{"x":1750376162223,"y":37.785},{"x":1750376101855,"y":40.005},{"x":1750376041511,"y":39.853},{"x":1750375981110,"y":41.666},{"x":1750375920764,"y":41.46},{"x":1750375860418,"y":33.038},{"x":1750375802987,"y":32.326},{"x":1750375742582,"y":26.029},{"x":1750375682205,"y":27.517},{"x":1750375621814,"y":29.661},{"x":1750375561455,"y":26.776},{"x":1750375501092,"y":27.999},{"x":1750375440692,"y":31.043},{"x":1750375380320,"y":36.86},{"x":1750375322895,"y":36.929},{"x":1750375262554,"y":38.57},{"x":1750375202201,"y":34.577},{"x":1750375141825,"y":29.824},{"x":1750375081454,"y":27.093},{"x":1750375021055,"y":28.421},{"x":1750374960663,"y":27.011},{"x":1750374900275,"y":26.024},{"x":1750374842800,"y":31.11},{"x":1750374782421,"y":25.782},{"x":1750374722049,"y":28.236},{"x":1750374661645,"y":28.974},{"x":1750374601287,"y":31.76},{"x":1750374540888,"y":30.042},{"x":1750374480521,"y":27.672},{"x":1750374420147,"y":29.91},{"x":1750374362678,"y":27.026},{"x":1750374302318,"y":29.461},{"x":1750374241916,"y":34.012},{"x":1750374181527,"y":29.563},{"x":1750374121135,"y":27.298},{"x":1750374060692,"y":26.274},{"x":1750374000170,"y":31.199},{"x":1750373942717,"y":34.628},{"x":1750373882317,"y":30.747},{"x":1750373821889,"y":30.029},{"x":1750373761505,"y":35.914},{"x":1750373701084,"y":26.831},{"x":1750373640695,"y":25.725},{"x":1750373580342,"y":29.317},{"x":1750373522904,"y":25.514},{"x":1750373462520,"y":47.423},{"x":1750373402140,"y":49.159},{"x":1750373341783,"y":53.794},{"x":1750373281321,"y":52.912},{"x":1750373220873,"y":54.429},{"x":1750373160475,"y":32.611},{"x":1750373100137,"y":35.196},{"x":1750373042627,"y":36.074},{"x":1750372982275,"y":28.848},{"x":1750372921896,"y":33.452},{"x":1750372861523,"y":29.009},{"x":1750372801172,"y":32.769},{"x":1750372740776,"y":29.806},{"x":1750372680436,"y":36.791},{"x":1750372622973,"y":46.057},{"x":1750372562603,"y":46.196},{"x":1750372502212,"y":57.96},{"x":1750372441812,"y":51.811},{"x":1750372381444,"y":47.96},{"x":1750372321061,"y":33.357},{"x":1750372260679,"y":34.201},{"x":1750372200312,"y":28.097},{"x":1750372142805,"y":31.495},{"x":1750372082392,"y":29.523},{"x":1750372022013,"y":27.814},{"x":1750371961652,"y":28.894},{"x":1750371901288,"y":28.104},{"x":1750371840905,"y":26.794},{"x":1750371780540,"y":31.536},{"x":1750371720154,"y":32.143},{"x":1750371662745,"y":31.399},{"x":1750371602365,"y":31.066},{"x":1750371542002,"y":33.632},{"x":1750371481658,"y":33.094},{"x":1750371421231,"y":28.798},{"x":1750371360842,"y":27.838},{"x":1750371300496,"y":29.14},{"x":1750371242996,"y":31.161},{"x":1750371182651,"y":31.44},{"x":1750371122288,"y":29.667},{"x":1750371061925,"y":40.991},{"x":1750371001557,"y":42.391},{"x":1750370941218,"y":39.364},{"x":1750370880847,"y":41.433},{"x":1750370820474,"y":38.811},{"x":1750370760088,"y":27.951},{"x":1750370702663,"y":27.381},{"x":1750370642314,"y":28.779},{"x":1750370581956,"y":30.648},{"x":1750370521582,"y":29.013},{"x":1750370461189,"y":30.653},{"x":1750370400911,"y":36.328},{"x":1750370340377,"y":47.813},{"x":1750370282915,"y":54.406},{"x":1750370222545,"y":58.323},{"x":1750370162184,"y":56.303},{"x":1750370101765,"y":55.727},{"x":1750370041396,"y":44.979},{"x":1750369980979,"y":32.174},{"x":1750369920638,"y":28.69},{"x":1750369860255,"y":36.323},{"x":1750369802849,"y":29.673},{"x":1750369742464,"y":29.276},{"x":1750369682041,"y":31.233},{"x":1750369621593,"y":34.413},{"x":1750369561233,"y":36.38},{"x":1750369500838,"y":31.555},{"x":1750369440471,"y":33.975},{"x":1750369382990,"y":30.877},{"x":1750369322613,"y":30.929},{"x":1750369262258,"y":32.715},{"x":1750369201849,"y":30.653},{"x":1750369141491,"y":40.015},{"x":1750369081104,"y":38.88},{"x":1750369020723,"y":44.305},{"x":1750368960320,"y":46.571},{"x":1750368902885,"y":45.893},{"x":1750368842541,"y":31.728},{"x":1750368782161,"y":27.941},{"x":1750368721802,"y":28.953},{"x":1750368661433,"y":26.231},{"x":1750368601030,"y":26.481},{"x":1750368540642,"y":26.237},{"x":1750368480295,"y":29.634},{"x":1750368422820,"y":28.202},{"x":1750368362395,"y":28.402},{"x":1750368302045,"y":31.52},{"x":1750368241687,"y":41.382},{"x":1750368181343,"y":44.485},{"x":1750368120987,"y":45.35},{"x":1750368060635,"y":44.321},{"x":1750368000250,"y":42.66},{"x":1750367942788,"y":39.602},{"x":1750367882432,"y":34.736},{"x":1750367822059,"y":32.239},{"x":1750367761683,"y":29.406},{"x":1750367701279,"y":30.941},{"x":1750367640945,"y":36.473},{"x":1750367580520,"y":33.433},{"x":1750367520147,"y":32.653},{"x":1750367462697,"y":44.992},{"x":1750367402316,"y":43.544},{"x":1750367341966,"y":41.793},{"x":1750367281578,"y":39.479},{"x":1750367221199,"y":37.553},{"x":1750367160793,"y":46.182},{"x":1750367100469,"y":39.82},{"x":1750367043027,"y":66.951},{"x":1750366982662,"y":65.734},{"x":1750366922316,"y":59.996},{"x":1750366861929,"y":56.573},{"x":1750366801573,"y":41.751},{"x":1750366741161,"y":36.033},{"x":1750366680807,"y":34.335},{"x":1750366620463,"y":31.648},{"x":1750366562939,"y":34.268},{"x":1750366502579,"y":28.422},{"x":1750366442226,"y":29.115},{"x":1750366381845,"y":29.298},{"x":1750366321474,"y":30.706},{"x":1750366261121,"y":41.546},{"x":1750366200730,"y":47.315},{"x":1750366140323,"y":50.999},{"x":1750366082881,"y":44.832},{"x":1750366022461,"y":50.285},{"x":1750365962108,"y":46.609},{"x":1750365901748,"y":36.705},{"x":1750365841388,"y":36.974},{"x":1750365781047,"y":49.369},{"x":1750365720690,"y":60.508},{"x":1750365660358,"y":47.264},{"x":1750365602918,"y":47.751},{"x":1750365542591,"y":52.918},{"x":1750365482199,"y":46.821},{"x":1750365421856,"y":35.947},{"x":1750365361464,"y":41.134},{"x":1750365301108,"y":42.21},{"x":1750365240727,"y":37.045},{"x":1750365180396,"y":42.832},{"x":1750365122977,"y":43.15},{"x":1750365062619,"y":37.473},{"x":1750365002271,"y":48.874},{"x":1750364941909,"y":56.112},{"x":1750364881551,"y":66.772},{"x":1750364821200,"y":55.603},{"x":1750364760856,"y":70.906},{"x":1750364700455,"y":45.937},{"x":1750364642993,"y":46.721},{"x":1750364582651,"y":39.428},{"x":1750364522273,"y":46.789},{"x":1750364461899,"y":42.641},{"x":1750364401532,"y":41.141},{"x":1750364341191,"y":60.343},{"x":1750364280829,"y":53.56},{"x":1750364220510,"y":55.524},{"x":1750364160020,"y":56.798},{"x":1750364102672,"y":54.002},{"x":1750364042336,"y":48.71},{"x":1750363981927,"y":38.133},{"x":1750363921556,"y":38.26},{"x":1750363861134,"y":35.152},{"x":1750363800769,"y":37.329},{"x":1750363740402,"y":42.632},{"x":1750363682985,"y":39.151},{"x":1750363622611,"y":43.102},{"x":1750363562255,"y":55.562},{"x":1750363501874,"y":47.014},{"x":1750363441493,"y":54.1},{"x":1750363381159,"y":55.306},{"x":1750363320773,"y":54.016},{"x":1750363260450,"y":35.451},{"x":1750363202976,"y":35.066},{"x":1750363142628,"y":37.508},{"x":1750363082275,"y":45.973},{"x":1750363021881,"y":44.243},{"x":1750362961561,"y":44.949},{"x":1750362901209,"y":66.453},{"x":1750362840861,"y":51.984},{"x":1750362780521,"y":56.196},{"x":1750362720184,"y":51.627},{"x":1750362662691,"y":57.375},{"x":1750362602370,"y":39.92},{"x":1750362541996,"y":39.747},{"x":1750362481629,"y":42.202},{"x":1750362421199,"y":40.399},{"x":1750362360820,"y":40.83},{"x":1750362300486,"y":69.405},{"x":1750362242898,"y":55.634},{"x":1750362182574,"y":58.069},{"x":1750362122206,"y":67.646},{"x":1750362061859,"y":48.196},{"x":1750362001480,"y":37.8},{"x":1750361941128,"y":40.971},{"x":1750361880768,"y":36.324},{"x":1750361820388,"y":37.061},{"x":1750361763009,"y":48.589},{"x":1750361702665,"y":56.745},{"x":1750361642345,"y":60.451},{"x":1750361581992,"y":56.466},{"x":1750361521652,"y":77.597},{"x":1750361461304,"y":56.957},{"x":1750361400944,"y":57.769},{"x":1750361340571,"y":56.881},{"x":1750361280217,"y":55.703},{"x":1750361222791,"y":66.591},{"x":1750361162467,"y":48.659},{"x":1750361102145,"y":42.093},{"x":1750361041783,"y":43.161},{"x":1750360981442,"y":51.237},{"x":1750360921090,"y":37.027},{"x":1750360860747,"y":50.679},{"x":1750360800445,"y":42.145},{"x":1750360742976,"y":30.164},{"x":1750360682620,"y":29.411},{"x":1750360622245,"y":29.689},{"x":1750360561877,"y":32.833},{"x":1750360501515,"y":28.93},{"x":1750360441123,"y":40.84},{"x":1750360380768,"y":41.0},{"x":1750360320423,"y":33.986},{"x":1750360263015,"y":34.857},{"x":1750360202647,"y":33.146},{"x":1750360142306,"y":32.785},{"x":1750360081893,"y":44.734},{"x":1750360021557,"y":36.259},{"x":1750359961185,"y":50.798},{"x":1750359900815,"y":45.986},{"x":1750359840463,"y":36.481},{"x":1750359780109,"y":37.008},{"x":1750359722693,"y":39.989},{"x":1750359662353,"y":52.653},{"x":1750359601958,"y":51.339},{"x":1750359541572,"y":57.214},{"x":1750359481225,"y":57.227},{"x":1750359420859,"y":54.44},{"x":1750359360509,"y":34.165},{"x":1750359300124,"y":31.477},{"x":1750359242688,"y":41.923},{"x":1750359182324,"y":40.001},{"x":1750359121959,"y":35.454},{"x":1750359061628,"y":43.088},{"x":1750359001289,"y":48.514},{"x":1750358940906,"y":46.885},{"x":1750358880561,"y":41.238},{"x":1750358820162,"y":40.848},{"x":1750358762653,"y":43.575},{"x":1750358702302,"y":37.685},{"x":1750358641923,"y":32.244},{"x":1750358581592,"y":31.87},{"x":1750358521244,"y":24.554},{"x":1750358460838,"y":37.254},{"x":1750358400532,"y":34.798},{"x":1750358342940,"y":49.08},{"x":1750358282597,"y":36.609},{"x":1750358222229,"y":40.404},{"x":1750358161881,"y":41.079},{"x":1750358101500,"y":42.975},{"x":1750358041165,"y":40.484},{"x":1750357980737,"y":39.036},{"x":1750357920389,"y":34.181},{"x":1750357862949,"y":42.104},{"x":1750357802596,"y":32.003},{"x":1750357742211,"y":30.998},{"x":1750357681835,"y":26.359},{"x":1750357621477,"y":37.364},{"x":1750357561105,"y":42.96},{"x":1750357500743,"y":45.165},{"x":1750357440397,"y":47.448},{"x":1750357382975,"y":44.748},{"x":1750357322598,"y":52.905},{"x":1750357262236,"y":36.567},{"x":1750357201884,"y":36.778},{"x":1750357141530,"y":28.568},{"x":1750357081169,"y":24.115},{"x":1750357020777,"y":28.947},{"x":1750356960415,"y":27.858},{"x":1750356903037,"y":33.929},{"x":1750356842676,"y":27.692},{"x":1750356782346,"y":38.287},{"x":1750356721976,"y":28.219},{"x":1750356661620,"y":26.977},{"x":1750356601224,"y":37.195},{"x":1750356540871,"y":34.222},{"x":1750356480552,"y":42.061},{"x":1750356420091,"y":40.528},{"x":1750356362674,"y":29.046},{"x":1750356302340,"y":30.578},{"x":1750356241971,"y":31.212},{"x":1750356181620,"y":26.274},{"x":1750356121285,"y":47.029},{"x":1750356060912,"y":35.754},{"x":1750356000662,"y":57.411},{"x":1750355940199,"y":57.69},{"x":1750355882756,"y":41.078},{"x":1750355822386,"y":39.875},{"x":1750355762064,"y":33.011},{"x":1750355701710,"y":25.94},{"x":1750355641319,"y":26.875},{"x":1750355580952,"y":32.456},{"x":1750355520610,"y":36.879},{"x":1750355460257,"y":36.57},{"x":1750355402819,"y":43.505},{"x":1750355342479,"y":56.432},{"x":1750355282092,"y":38.879},{"x":1750355221687,"y":44.575},{"x":1750355161341,"y":22.588},{"x":1750355100985,"y":27.938},{"x":1750355040656,"y":48.929},{"x":1750354980291,"y":49.286},{"x":1750354922861,"y":43.753},{"x":1750354862507,"y":34.858},{"x":1750354802138,"y":45.149},{"x":1750354741714,"y":26.496},{"x":1750354681362,"y":25.866},{"x":1750354621025,"y":33.186},{"x":1750354560661,"y":30.079},{"x":1750354500330,"y":28.827},{"x":1750354442875,"y":37.418},{"x":1750354382546,"y":38.397},{"x":1750354322205,"y":39.508},{"x":1750354261836,"y":34.866},{"x":1750354201498,"y":35.136},{"x":1750354141082,"y":52.05},{"x":1750354080728,"y":46.561},{"x":1750354020392,"y":45.887},{"x":1750353963004,"y":44.153},{"x":1750353902760,"y":52.705},{"x":1750353842296,"y":39.303},{"x":1750353781943,"y":26.014},{"x":1750353721615,"y":28.205},{"x":1750353661276,"y":32.785},{"x":1750353600895,"y":31.885},{"x":1750353540569,"y":48.943},{"x":1750353480245,"y":40.572},{"x":1750353422803,"y":42.486},{"x":1750353362458,"y":21.998},{"x":1750353302106,"y":23.892},{"x":1750353241744,"y":23.14},{"x":1750353181396,"y":22.356},{"x":1750353121033,"y":24.921},{"x":1750353060685,"y":39.003},{"x":1750353000582,"y":25.64},{"x":1750352942797,"y":33.236},{"x":1750352882404,"y":55.046},{"x":1750352822060,"y":50.358},{"x":1750352761709,"y":57.833},{"x":1750352701364,"y":49.873},{"x":1750352640995,"y":57.406},{"x":1750352580615,"y":41.449},{"x":1750352520244,"y":25.836},{"x":1750352462793,"y":23.014},{"x":1750352402414,"y":36.509},{"x":1750352342055,"y":35.708},{"x":1750352281700,"y":31.542},{"x":1750352221353,"y":33.164},{"x":1750352160993,"y":35.949},{"x":1750352100596,"y":26.443},{"x":1750352040207,"y":26.756},{"x":1750351982724,"y":37.462},{"x":1750351922364,"y":27.376},{"x":1750351862028,"y":22.082},{"x":1750351801674,"y":42.5},{"x":1750351741269,"y":28.287},{"x":1750351680936,"y":19.109},{"x":1750351620496,"y":45.038},{"x":1750351560140,"y":46.657},{"x":1750351502717,"y":42.723},{"x":1750351442400,"y":42.287},{"x":1750351382019,"y":46.405},{"x":1750351321665,"y":29.517},{"x":1750351261295,"y":24.781},{"x":1750351200952,"y":39.437},{"x":1750351140577,"y":49.993},{"x":1750351080228,"y":33.05},{"x":1750351022793,"y":31.389},{"x":1750350962442,"y":31.89},{"x":1750350902092,"y":33.805},{"x":1750350841757,"y":30.203},{"x":1750350781411,"y":25.45},{"x":1750350721066,"y":39.836},{"x":1750350660728,"y":44.866},{"x":1750350600467,"y":32.808},{"x":1750350542935,"y":51.946},{"x":1750350482583,"y":43.976},{"x":1750350422203,"y":43.359},{"x":1750350361847,"y":44.541},{"x":1750350301468,"y":32.244},{"x":1750350241129,"y":26.668},{"x":1750350180747,"y":22.35},{"x":1750350120400,"y":25.118},{"x":1750350063017,"y":27.782},{"x":1750350002675,"y":34.211},{"x":1750349942350,"y":33.584},{"x":1750349881963,"y":32.067},{"x":1750349821592,"y":30.387},{"x":1750349761254,"y":34.663},{"x":1750349700908,"y":48.542},{"x":1750349640562,"y":48.807},{"x":1750349580237,"y":50.514},{"x":1750349522804,"y":44.003},{"x":1750349462463,"y":38.875},{"x":1750349402115,"y":36.897},{"x":1750349341771,"y":23.594},{"x":1750349281411,"y":23.687},{"x":1750349221011,"y":28.884},{"x":1750349160626,"y":26.924},{"x":1750349100291,"y":36.466},{"x":1750349042812,"y":41.002},{"x":1750348982456,"y":34.502},{"x":1750348922115,"y":39.011},{"x":1750348861763,"y":37.277},{"x":1750348801405,"y":28.033},{"x":1750348741026,"y":31.133},{"x":1750348680679,"y":25.84},{"x":1750348620339,"y":34.166},{"x":1750348562901,"y":52.112},{"x":1750348502514,"y":34.26},{"x":1750348442159,"y":52.271},{"x":1750348381813,"y":38.768},{"x":1750348321466,"y":30.831},{"x":1750348261112,"y":23.513},{"x":1750348200679,"y":22.021},{"x":1750348140303,"y":23.726},{"x":1750348082846,"y":25.098},{"x":1750348022444,"y":23.225},{"x":1750347962092,"y":36.129},{"x":1750347901725,"y":26.354},{"x":1750347841378,"y":26.167},{"x":1750347780968,"y":30.34},{"x":1750347720643,"y":22.594},{"x":1750347660243,"y":34.21},{"x":1750347602761,"y":35.27},{"x":1750347542391,"y":40.012},{"x":1750347482066,"y":24.249},{"x":1750347421722,"y":44.463},{"x":1750347361386,"y":42.218},{"x":1750347301022,"y":45.343},{"x":1750347240685,"y":53.313},{"x":1750347180358,"y":42.516},{"x":1750347122904,"y":37.084},{"x":1750347062569,"y":28.788},{"x":1750347002201,"y":30.655},{"x":1750346941848,"y":23.412},{"x":1750346881470,"y":22.394},{"x":1750346821116,"y":31.84},{"x":1750346760790,"y":31.006},{"x":1750346700432,"y":23.122},{"x":1750346640078,"y":21.657},{"x":1750346582649,"y":21.521},{"x":1750346522306,"y":19.478},{"x":1750346461955,"y":16.702},{"x":1750346401598,"y":10.163},{"x":1750346341239,"y":7.01},{"x":1750346280838,"y":9.034},{"x":1750346220513,"y":20.892},{"x":1750346163034,"y":31.137},{"x":1750346102682,"y":28.034},{"x":1750346042331,"y":30.071},{"x":1750345981955,"y":21.317},{"x":1750345921588,"y":7.54},{"x":1750345861244,"y":7.452},{"x":1750345800817,"y":7.535},{"x":1750345740382,"y":5.333},{"x":1750345682985,"y":11.813},{"x":1750345622626,"y":19.05},{"x":1750345562284,"y":19.883},{"x":1750345501910,"y":21.994},{"x":1750345441534,"y":27.191},{"x":1750345381178,"y":40.475},{"x":1750345320804,"y":20.899},{"x":1750345260474,"y":13.54},{"x":1750345203043,"y":15.715},{"x":1750345142678,"y":14.396},{"x":1750345082326,"y":17.169},{"x":1750345021966,"y":9.921},{"x":1750344961585,"y":15.067},{"x":1750344901210,"y":12.492},{"x":1750344840824,"y":13.289},{"x":1750344780503,"y":12.756},{"x":1750344720146,"y":11.818},{"x":1750344662668,"y":27.504},{"x":1750344602319,"y":16.834},{"x":1750344541957,"y":23.153},{"x":1750344481588,"y":34.464},{"x":1750344421123,"y":34.701},{"x":1750344360774,"y":21.365},{"x":1750344300455,"y":16.094},{"x":1750344242949,"y":20.485},{"x":1750344182570,"y":10.588},{"x":1750344122201,"y":11.388},{"x":1750344061832,"y":13.745},{"x":1750344001466,"y":21.569},{"x":1750343941103,"y":18.098},{"x":1750343880754,"y":27.147},{"x":1750343820391,"y":24.864},{"x":1750343762967,"y":43.673},{"x":1750343702574,"y":34.515},{"x":1750343642206,"y":30.693},{"x":1750343581823,"y":21.275},{"x":1750343521458,"y":20.674},{"x":1750343461083,"y":24.587},{"x":1750343400753,"y":37.383},{"x":1750343340340,"y":58.8},{"x":1750343282859,"y":36.912},{"x":1750343222500,"y":29.057},{"x":1750343162106,"y":28.073},{"x":1750343101726,"y":18.885},{"x":1750343041377,"y":28.626},{"x":1750342981023,"y":19.446},{"x":1750342920654,"y":16.285},{"x":1750342860313,"y":20.21},{"x":1750342802850,"y":20.827},{"x":1750342742479,"y":12.069},{"x":1750342682123,"y":15.526},{"x":1750342621752,"y":23.696},{"x":1750342561393,"y":26.327},{"x":1750342500956,"y":30.152},{"x":1750342440600,"y":16.76},{"x":1750342380251,"y":14.173},{"x":1750342322776,"y":10.62},{"x":1750342262377,"y":12.864},{"x":1750342201978,"y":13.472},{"x":1750342141619,"y":15.582},{"x":1750342081215,"y":25.148},{"x":1750342020852,"y":25.524},{"x":1750341960478,"y":38.477},{"x":1750341900125,"y":42.453},{"x":1750341842676,"y":39.472},{"x":1750341782342,"y":41.749},{"x":1750341721903,"y":38.505},{"x":1750341661550,"y":41.416},{"x":1750341601205,"y":24.253},{"x":1750341540755,"y":22.365},{"x":1750341480414,"y":15.96},{"x":1750341422986,"y":23.773},{"x":1750341362600,"y":25.203},{"x":1750341302189,"y":25.133},{"x":1750341241795,"y":25.626},{"x":1750341181460,"y":24.52},{"x":1750341121072,"y":10.375},{"x":1750341060686,"y":13.745},{"x":1750341000359,"y":15.101},{"x":1750340942907,"y":24.821},{"x":1750340882473,"y":30.18},{"x":1750340822024,"y":34.895},{"x":1750340761670,"y":24.065},{"x":1750340701321,"y":29.896},{"x":1750340640934,"y":37.175},{"x":1750340580558,"y":15.807},{"x":1750340520130,"y":17.346},{"x":1750340462747,"y":15.152},{"x":1750340402363,"y":17.361},{"x":1750340342011,"y":18.035},{"x":1750340281647,"y":15.966},{"x":1750340221259,"y":13.373},{"x":1750340160874,"y":15.824},{"x":1750340100545,"y":26.604},{"x":1750340040154,"y":14.688},{"x":1750339982673,"y":13.126},{"x":1750339922297,"y":15.135},{"x":1750339861959,"y":20.643},{"x":1750339801566,"y":12.174},{"x":1750339741176,"y":12.575},{"x":1750339680799,"y":14.778},{"x":1750339620436,"y":16.073},{"x":1750339563038,"y":30.734},{"x":1750339502641,"y":33.276},{"x":1750339442296,"y":33.745},{"x":1750339381943,"y":33.063},{"x":1750339321605,"y":32.857},{"x":1750339261233,"y":15.458},{"x":1750339200810,"y":25.917},{"x":1750339140398,"y":19.243},{"x":1750339082936,"y":20.013},{"x":1750339022567,"y":19.502},{"x":1750338962211,"y":31.92},{"x":1750338901836,"y":22.04},{"x":1750338841483,"y":27.317},{"x":1750338781115,"y":25.135},{"x":1750338720763,"y":20.045},{"x":1750338660388,"y":14.607},{"x":1750338602939,"y":6.882},{"x":1750338542572,"y":4.007},{"x":1750338482217,"y":5.302},{"x":1750338421851,"y":16.767},{"x":1750338361466,"y":19.185},{"x":1750338301109,"y":18.413},{"x":1750338240732,"y":13.786},{"x":1750338180339,"y":14.048},{"x":1750338122916,"y":22.292},{"x":1750338062558,"y":12.227},{"x":1750338002247,"y":7.191},{"x":1750337941728,"y":3.899},{"x":1750337881376,"y":3.337},{"x":1750337820990,"y":8.657},{"x":1750337760628,"y":21.071},{"x":1750337700190,"y":20.228},{"x":1750337642735,"y":30.192},{"x":1750337582379,"y":28.802},{"x":1750337521996,"y":27.354},{"x":1750337461652,"y":3.943},{"x":1750337401282,"y":7.213},{"x":1750337340924,"y":17.645},{"x":1750337280502,"y":15.049},{"x":1750337222996,"y":12.475},{"x":1750337162637,"y":12.212},{"x":1750337102279,"y":4.053},{"x":1750337041915,"y":-0.913},{"x":1750336981576,"y":17.652},{"x":1750336921250,"y":22.367},{"x":1750336860848,"y":21.787},{"x":1750336800506,"y":18.971},{"x":1750336740049,"y":6.818},{"x":1750336682671,"y":6.63},{"x":1750336622299,"y":8.185},{"x":1750336561934,"y":22.227},{"x":1750336501590,"y":40.467},{"x":1750336441196,"y":26.337},{"x":1750336380837,"y":25.389},{"x":1750336320459,"y":24.616},{"x":1750336263115,"y":35.03},{"x":1750336202664,"y":11.728},{"x":1750336142317,"y":28.205},{"x":1750336081896,"y":22.813},{"x":1750336021564,"y":15.614},{"x":1750335961209,"y":20.1},{"x":1750335900792,"y":25.612},{"x":1750335840435,"y":17.95},{"x":1750335782889,"y":23.4},{"x":1750335722547,"y":18.232},{"x":1750335662187,"y":12.884},{"x":1750335601817,"y":21.823},{"x":1750335541458,"y":17.016},{"x":1750335481136,"y":6.764},{"x":1750335420752,"y":8.206},{"x":1750335360376,"y":11.365},{"x":1750335302897,"y":25.973},{"x":1750335242491,"y":27.722},{"x":1750335182140,"y":31.753},{"x":1750335121730,"y":25.443},{"x":1750335061352,"y":21.918},{"x":1750335000957,"y":19.167},{"x":1750334940608,"y":19.976},{"x":1750334880328,"y":6.853},{"x":1750334822774,"y":13.597},{"x":1750334762393,"y":11.828},{"x":1750334702027,"y":12.219},{"x":1750334641673,"y":10.844},{"x":1750334581303,"y":19.552},{"x":1750334520929,"y":38.919},{"x":1750334460570,"y":7.985},{"x":1750334400522,"y":12.829},{"x":1750334342750,"y":12.79},{"x":1750334282385,"y":26.009},{"x":1750334222049,"y":11.182},{"x":1750334161699,"y":17.353},{"x":1750334101340,"y":12.219},{"x":1750334040938,"y":17.297},{"x":1750333980584,"y":25.841},{"x":1750333920200,"y":52.342},{"x":1750333862761,"y":65.137},{"x":1750333802358,"y":49.625},{"x":1750333742002,"y":47.898},{"x":1750333681590,"y":42.315},{"x":1750333621184,"y":19.788},{"x":1750333560796,"y":10.375},{"x":1750333500435,"y":23.387},{"x":1750333442898,"y":26.544},{"x":1750333382532,"y":22.757},{"x":1750333322190,"y":22.905},{"x":1750333261806,"y":22.33},{"x":1750333201433,"y":15.699},{"x":1750333141082,"y":31.445},{"x":1750333080685,"y":14.07},{"x":1750333020368,"y":19.771},{"x":1750332962904,"y":15.194},{"x":1750332902547,"y":3.81},{"x":1750332842183,"y":23.782},{"x":1750332781812,"y":31.102},{"x":1750332721439,"y":22.262},{"x":1750332661199,"y":26.296},{"x":1750332600727,"y":28.274},{"x":1750332540370,"y":13.743},{"x":1750332482938,"y":7.579},{"x":1750332422583,"y":6.389},{"x":1750332362214,"y":13.591},{"x":1750332301849,"y":43.223},{"x":1750332241501,"y":46.99},{"x":1750332181152,"y":22.458},{"x":1750332120767,"y":37.505},{"x":1750332060378,"y":16.523},{"x":1750332002890,"y":9.747},{"x":1750331942564,"y":-0.105},{"x":1750331882220,"y":11.823},{"x":1750331821871,"y":12.052},{"x":1750331761518,"y":26.901},{"x":1750331701180,"y":13.74},{"x":1750331640806,"y":11.808},{"x":1750331580455,"y":13.552},{"x":1750331523000,"y":6.422},{"x":1750331462612,"y":21.283},{"x":1750331402237,"y":33.151},{"x":1750331341885,"y":27.46},{"x":1750331281523,"y":32.35},{"x":1750331221140,"y":27.052},{"x":1750331160762,"y":29.067},{"x":1750331100370,"y":15.862},{"x":1750331042943,"y":24.114},{"x":1750330982612,"y":22.898},{"x":1750330922196,"y":26.598},{"x":1750330861837,"y":24.208},{"x":1750330801452,"y":10.958},{"x":1750330741062,"y":17.628},{"x":1750330680681,"y":11.499},{"x":1750330620347,"y":16.548},{"x":1750330562880,"y":20.447},{"x":1750330502522,"y":17.919},{"x":1750330442190,"y":15.941},{"x":1750330381808,"y":16.0},{"x":1750330321473,"y":26.856},{"x":1750330261104,"y":23.361},{"x":1750330200705,"y":29.982},{"x":1750330140283,"y":37.565},{"x":1750330082829,"y":16.197},{"x":1750330022409,"y":28.43},{"x":1750329962064,"y":17.316},{"x":1750329901715,"y":11.138},{"x":1750329841332,"y":22.75},{"x":1750329780952,"y":18.281},{"x":1750329720642,"y":19.402},{"x":1750329660274,"y":12.162},{"x":1750329602848,"y":19.87},{"x":1750329542500,"y":30.02},{"x":1750329482125,"y":34.567},{"x":1750329421770,"y":26.065},{"x":1750329361439,"y":29.886},{"x":1750329301082,"y":33.393},{"x":1750329240731,"y":23.165},{"x":1750329180341,"y":38.182},{"x":1750329122873,"y":27.999},{"x":1750329062519,"y":24.449},{"x":1750329002180,"y":39.591},{"x":1750328941841,"y":25.189},{"x":1750328881469,"y":29.493},{"x":1750328821114,"y":26.826},{"x":1750328760739,"y":22.463},{"x":1750328700388,"y":30.392},{"x":1750328642894,"y":25.565},{"x":1750328582527,"y":25.369},{"x":1750328522181,"y":32.407},{"x":1750328461830,"y":37.552},{"x":1750328401455,"y":24.047},{"x":1750328341092,"y":21.405},{"x":1750328280742,"y":27.979},{"x":1750328220409,"y":24.58},{"x":1750328162895,"y":36.828},{"x":1750328102520,"y":23.454},{"x":1750328042135,"y":24.628},{"x":1750327981785,"y":23.742},{"x":1750327921386,"y":23.953},{"x":1750327861005,"y":15.832},{"x":1750327800646,"y":20.462},{"x":1750327740244,"y":29.255},{"x":1750327682812,"y":12.374},{"x":1750327622435,"y":22.328},{"x":1750327562080,"y":29.288},{"x":1750327501682,"y":23.054},{"x":1750327441308,"y":32.287},{"x":1750327380933,"y":29.117},{"x":1750327320568,"y":22.157},{"x":1750327260172,"y":31.881},{"x":1750327202714,"y":42.755},{"x":1750327142306,"y":47.123},{"x":1750327081940,"y":54.908},{"x":1750327021587,"y":45.341},{"x":1750326961197,"y":39.815},{"x":1750326900815,"y":31.01},{"x":1750326840444,"y":36.681},{"x":1750326783041,"y":35.493},{"x":1750326722662,"y":23.422},{"x":1750326662276,"y":19.609},{"x":1750326601895,"y":18.674},{"x":1750326541517,"y":28.577},{"x":1750326481117,"y":38.063},{"x":1750326420684,"y":36.866},{"x":1750326360263,"y":26.855},{"x":1750326302834,"y":25.591},{"x":1750326242487,"y":37.383},{"x":1750326182119,"y":39.256},{"x":1750326121761,"y":36.837},{"x":1750326061371,"y":40.554},{"x":1750326000983,"y":32.112},{"x":1750325940604,"y":35.843},{"x":1750325880233,"y":21.31},{"x":1750325822745,"y":25.242},{"x":1750325762394,"y":19.739},{"x":1750325702036,"y":17.398},{"x":1750325641651,"y":34.717},{"x":1750325581296,"y":34.866},{"x":1750325520926,"y":18.059},{"x":1750325460554,"y":30.627},{"x":1750325400135,"y":17.807},{"x":1750325342745,"y":27.263},{"x":1750325282404,"y":31.238},{"x":1750325222050,"y":29.263},{"x":1750325161713,"y":24.312},{"x":1750325101348,"y":32.851},{"x":1750325040975,"y":30.726},{"x":1750324980605,"y":28.216},{"x":1750324920235,"y":29.238},{"x":1750324862759,"y":25.025},{"x":1750324802321,"y":17.592},{"x":1750324741958,"y":20.583},{"x":1750324681625,"y":31.487},{"x":1750324621268,"y":11.401},{"x":1750324560868,"y":15.359},{"x":1750324500541,"y":16.258},{"x":1750324443002,"y":16.833},{"x":1750324382650,"y":15.158},{"x":1750324322253,"y":15.475},{"x":1750324261886,"y":15.831},{"x":1750324201555,"y":19.831},{"x":1750324141204,"y":16.568},{"x":1750324080821,"y":8.409},{"x":1750324020429,"y":7.551},{"x":1750323962961,"y":26.429},{"x":1750323902538,"y":28.827},{"x":1750323842183,"y":32.458},{"x":1750323781774,"y":25.692},{"x":1750323721377,"y":27.52},{"x":1750323660981,"y":16.094},{"x":1750323600699,"y":5.981},{"x":1750323540210,"y":12.223},{"x":1750323482769,"y":12.392},{"x":1750323422416,"y":13.424},{"x":1750323362051,"y":17.626},{"x":1750323301697,"y":11.667},{"x":1750323241294,"y":16.819},{"x":1750323180938,"y":17.044},{"x":1750323120583,"y":20.834},{"x":1750323060245,"y":11.657},{"x":1750323002815,"y":11.332},{"x":1750322942422,"y":15.367},{"x":1750322881979,"y":15.42},{"x":1750322821555,"y":20.912},{"x":1750322761205,"y":28.758},{"x":1750322700755,"y":20.763},{"x":1750322640399,"y":16.882},{"x":1750322582892,"y":11.572},{"x":1750322522481,"y":12.124},{"x":1750322462121,"y":5.707},{"x":1750322401735,"y":6.137},{"x":1750322341422,"y":30.135},{"x":1750322281049,"y":33.901},{"x":1750322220670,"y":30.648},{"x":1750322160299,"y":29.984},{"x":1750322102790,"y":28.367},{"x":1750322042434,"y":16.908},{"x":1750321982018,"y":21.808},{"x":1750321921644,"y":16.164},{"x":1750321861266,"y":14.518},{"x":1750321800900,"y":32.091},{"x":1750321740554,"y":28.685},{"x":1750321680137,"y":27.984},{"x":1750321622696,"y":28.605},{"x":1750321562333,"y":23.893},{"x":1750321501969,"y":25.771},{"x":1750321441604,"y":31.502},{"x":1750321381213,"y":29.602},{"x":1750321320861,"y":24.29},{"x":1750321260475,"y":16.532},{"x":1750321200086,"y":21.987},{"x":1750321142679,"y":23.433},{"x":1750321082334,"y":27.449},{"x":1750321021976,"y":25.944},{"x":1750320961597,"y":24.22},{"x":1750320901194,"y":13.355},{"x":1750320840809,"y":10.371},{"x":1750320780439,"y":11.482},{"x":1750320722944,"y":28.051},{"x":1750320662595,"y":41.748},{"x":1750320602215,"y":39.697},{"x":1750320541840,"y":44.094},{"x":1750320481490,"y":42.951},{"x":1750320421133,"y":39.843},{"x":1750320360797,"y":35.346},{"x":1750320300450,"y":30.132},{"x":1750320242987,"y":28.032},{"x":1750320182621,"y":37.877},{"x":1750320122256,"y":33.495},{"x":1750320061884,"y":31.812},{"x":1750320001554,"y":32.209},{"x":1750319941115,"y":36.068},{"x":1750319880761,"y":28.991},{"x":1750319820379,"y":32.778},{"x":1750319762923,"y":30.919},{"x":1750319702559,"y":33.98},{"x":1750319642190,"y":23.077},{"x":1750319581816,"y":21.891},{"x":1750319521442,"y":24.277},{"x":1750319461094,"y":21.734},{"x":1750319400684,"y":28.481},{"x":1750319340307,"y":30.688},{"x":1750319282714,"y":25.352},{"x":1750319222276,"y":29.615},{"x":1750319161917,"y":19.065},{"x":1750319101548,"y":22.284},{"x":1750319041169,"y":24.223},{"x":1750318980774,"y":29.523},{"x":1750318920439,"y":24.724},{"x":1750318862849,"y":23.009},{"x":1750318802511,"y":22.548},{"x":1750318742147,"y":26.624},{"x":1750318681813,"y":26.325},{"x":1750318621439,"y":38.919},{"x":1750318561079,"y":37.219},{"x":1750318500694,"y":36.767},{"x":1750318440262,"y":33.479},{"x":1750318382833,"y":32.952},{"x":1750318322475,"y":31.098},{"x":1750318262115,"y":30.79},{"x":1750318201741,"y":31.411},{"x":1750318141385,"y":28.041},{"x":1750318080982,"y":26.142},{"x":1750318020644,"y":25.67},{"x":1750317960248,"y":28.448},{"x":1750317902781,"y":33.649},{"x":1750317842448,"y":29.481},{"x":1750317782067,"y":27.628},{"x":1750317721727,"y":22.079},{"x":1750317661362,"y":25.41},{"x":1750317600981,"y":22.928},{"x":1750317540627,"y":28.135},{"x":1750317480267,"y":32.736},{"x":1750317422854,"y":28.115},{"x":1750317362510,"y":31.578},{"x":1750317302161,"y":28.518},{"x":1750317241799,"y":28.923},{"x":1750317181490,"y":45.702},{"x":1750317121115,"y":32.907},{"x":1750317060737,"y":31.966},{"x":1750317000374,"y":29.165},{"x":1750316942979,"y":33.272},{"x":1750316882618,"y":49.946},{"x":1750316822243,"y":35.336},{"x":1750316761891,"y":35.819},{"x":1750316701483,"y":30.134},{"x":1750316641110,"y":28.917},{"x":1750316580740,"y":24.913},{"x":1750316520388,"y":28.439},{"x":1750316462950,"y":30.48},{"x":1750316402572,"y":32.886},{"x":1750316342212,"y":30.708},{"x":1750316281867,"y":32.651},{"x":1750316221510,"y":36.053},{"x":1750316161114,"y":40.547},{"x":1750316100748,"y":42.446},{"x":1750316040363,"y":44.474},{"x":1750315982952,"y":36.269},{"x":1750315922553,"y":29.144},{"x":1750315862220,"y":26.065},{"x":1750315801866,"y":33.981},{"x":1750315741527,"y":35.758},{"x":1750315681108,"y":33.446},{"x":1750315620690,"y":28.0},{"x":1750315560360,"y":25.455},{"x":1750315502913,"y":38.905},{"x":1750315442567,"y":22.891},{"x":1750315382170,"y":17.849},{"x":1750315321815,"y":22.17},{"x":1750315261385,"y":32.746},{"x":1750315201027,"y":33.694},{"x":1750315140633,"y":28.205},{"x":1750315080290,"y":25.286},{"x":1750315022839,"y":23.124},{"x":1750314962496,"y":37.252},{"x":1750314902149,"y":27.65},{"x":1750314841796,"y":28.401},{"x":1750314781441,"y":31.756},{"x":1750314721105,"y":28.375},{"x":1750314660750,"y":23.281},{"x":1750314600439,"y":35.899},{"x":1750314542899,"y":42.414},{"x":1750314482510,"y":40.081},{"x":1750314422146,"y":34.707},{"x":1750314361764,"y":35.004},{"x":1750314301421,"y":39.511},{"x":1750314241088,"y":71.281},{"x":1750314180689,"y":55.227},{"x":1750314120371,"y":64.348},{"x":1750314062950,"y":35.128},{"x":1750314002548,"y":54.586},{"x":1750313942214,"y":33.373},{"x":1750313881859,"y":37.52},{"x":1750313821499,"y":35.739},{"x":1750313761120,"y":39.025},{"x":1750313700745,"y":27.454},{"x":1750313640366,"y":41.714},{"x":1750313582968,"y":26.035},{"x":1750313522602,"y":24.007},{"x":1750313462231,"y":36.285},{"x":1750313401900,"y":33.799},{"x":1750313341509,"y":20.921},{"x":1750313281154,"y":24.352},{"x":1750313220766,"y":19.567},{"x":1750313160445,"y":18.665},{"x":1750313102927,"y":17.462},{"x":1750313042555,"y":24.271},{"x":1750312982198,"y":21.405},{"x":1750312921817,"y":24.625},{"x":1750312861479,"y":17.819},{"x":1750312801032,"y":17.268},{"x":1750312740595,"y":22.418},{"x":1750312680233,"y":19.479},{"x":1750312622759,"y":22.116},{"x":1750312562382,"y":19.374},{"x":1750312502009,"y":18.044},{"x":1750312441647,"y":19.795},{"x":1750312381302,"y":22.829},{"x":1750312320950,"y":20.128},{"x":1750312260585,"y":27.495},{"x":1750312200223,"y":18.011},{"x":1750312142776,"y":14.706},{"x":1750312082413,"y":13.799},{"x":1750312021991,"y":19.815},{"x":1750311961634,"y":28.724},{"x":1750311901249,"y":26.465},{"x":1750311840906,"y":26.182},{"x":1750311780557,"y":27.174},{"x":1750311720207,"y":25.572},{"x":1750311662736,"y":16.903},{"x":1750311602362,"y":25.736},{"x":1750311542031,"y":23.625},{"x":1750311481668,"y":23.377},{"x":1750311421321,"y":24.138},{"x":1750311360920,"y":21.398},{"x":1750311300570,"y":24.771},{"x":1750311240194,"y":23.035},{"x":1750311182805,"y":25.207},{"x":1750311122478,"y":20.516},{"x":1750311062104,"y":19.243},{"x":1750311001736,"y":20.502},{"x":1750310941358,"y":17.887},{"x":1750310881007,"y":22.064},{"x":1750310820615,"y":22.638},{"x":1750310760310,"y":20.77},{"x":1750310702842,"y":19.691},{"x":1750310642490,"y":27.987},{"x":1750310582148,"y":33.933},{"x":1750310521790,"y":31.66},{"x":1750310461438,"y":30.968},{"x":1750310401039,"y":29.416},{"x":1750310340685,"y":18.648},{"x":1750310280330,"y":18.344},{"x":1750310222822,"y":20.46},{"x":1750310162446,"y":20.177},{"x":1750310102077,"y":21.205},{"x":1750310041200,"y":21.155},{"x":1750309980838,"y":20.94},{"x":1750309920483,"y":22.482},{"x":1750309860109,"y":21.549},{"x":1750309802694,"y":24.886},{"x":1750309742332,"y":21.288},{"x":1750309681966,"y":21.46},{"x":1750309621639,"y":24.189},{"x":1750309561243,"y":24.977},{"x":1750309500871,"y":18.808},{"x":1750309440527,"y":22.437},{"x":1750309380088,"y":19.989},{"x":1750309322712,"y":20.251},{"x":1750309262299,"y":35.524},{"x":1750309201865,"y":28.734},{"x":1750309141391,"y":27.968},{"x":1750309081040,"y":29.893},{"x":1750309020671,"y":28.552},{"x":1750308960325,"y":24.549},{"x":1750308902861,"y":30.075},{"x":1750308842506,"y":22.169},{"x":1750308782112,"y":23.924},{"x":1750308721730,"y":19.996},{"x":1750308661375,"y":20.822},{"x":1750308600975,"y":26.942},{"x":1750308540566,"y":23.779},{"x":1750308480166,"y":32.072},{"x":1750308422687,"y":31.398},{"x":1750308362308,"y":26.092},{"x":1750308301985,"y":28.53},{"x":1750308241607,"y":22.274},{"x":1750308181239,"y":20.653},{"x":1750308120864,"y":23.652},{"x":1750308060483,"y":20.455},{"x":1750308000063,"y":21.158},{"x":1750307942685,"y":25.756},{"x":1750307882333,"y":24.385},{"x":1750307821981,"y":25.857},{"x":1750307761576,"y":24.338},{"x":1750307701227,"y":26.197},{"x":1750307640855,"y":26.071},{"x":1750307580489,"y":26.093},{"x":1750307520134,"y":26.391},{"x":1750307462663,"y":25.981},{"x":1750307402340,"y":25.217},{"x":1750307341956,"y":24.619},{"x":1750307281594,"y":30.547},{"x":1750307221253,"y":27.801},{"x":1750307160886,"y":28.167},{"x":1750307100550,"y":30.788},{"x":1750307040134,"y":30.995},{"x":1750306982677,"y":27.493},{"x":1750306922335,"y":27.556},{"x":1750306861979,"y":32.533},{"x":1750306801602,"y":26.747},{"x":1750306741248,"y":30.182},{"x":1750306680889,"y":30.213},{"x":1750306620521,"y":32.431},{"x":1750306560097,"y":28.129},{"x":1750306502707,"y":30.669},{"x":1750306442326,"y":27.888},{"x":1750306381965,"y":27.169},{"x":1750306321610,"y":31.062},{"x":1750306261249,"y":27.954},{"x":1750306200875,"y":27.01},{"x":1750306140513,"y":27.141},{"x":1750306080156,"y":25.861},{"x":1750306022733,"y":22.162},{"x":1750305962363,"y":29.984},{"x":1750305902037,"y":23.274},{"x":1750305841675,"y":25.68},{"x":1750305781302,"y":25.649},{"x":1750305720939,"y":33.46},{"x":1750305660578,"y":38.004},{"x":1750305600153,"y":41.896},{"x":1750305542664,"y":45.285},{"x":1750305482311,"y":43.496},{"x":1750305421967,"y":39.428},{"x":1750305361603,"y":33.258},{"x":1750305301220,"y":32.525},{"x":1750305240858,"y":34.25},{"x":1750305180499,"y":30.167},{"x":1750305120160,"y":31.229},{"x":1750305062676,"y":30.763},{"x":1750305002322,"y":29.991},{"x":1750304941951,"y":24.815},{"x":1750304881503,"y":26.578},{"x":1750304821107,"y":23.299},{"x":1750304760692,"y":23.383},{"x":1750304700378,"y":27.869},{"x":1750304642886,"y":28.227},{"x":1750304582535,"y":30.461},{"x":1750304522179,"y":31.095},{"x":1750304461821,"y":29.344},{"x":1750304401460,"y":24.631},{"x":1750304341085,"y":26.93},{"x":1750304280732,"y":45.642},{"x":1750304220343,"y":45.619},{"x":1750304162850,"y":48.946},{"x":1750304102486,"y":45.304},{"x":1750304042128,"y":44.938},{"x":1750303981766,"y":31.15},{"x":1750303921409,"y":34.256},{"x":1750303861045,"y":33.701},{"x":1750303803699,"y":36.133},{"x":1750303742680,"y":40.77},{"x":1750303682301,"y":37.731},{"x":1750303621917,"y":32.886},{"x":1750303561544,"y":28.68},{"x":1750303501193,"y":26.9},{"x":1750303440821,"y":28.965},{"x":1750303380445,"y":27.122},{"x":1750303323015,"y":26.658},{"x":1750303262653,"y":27.663},{"x":1750303202276,"y":24.424},{"x":1750303141918,"y":26.091},{"x":1750303081561,"y":26.121},{"x":1750303021197,"y":32.12},{"x":1750302960808,"y":26.282},{"x":1750302900441,"y":27.634},{"x":1750302842985,"y":31.106},{"x":1750302782600,"y":27.866},{"x":1750302722243,"y":27.593},{"x":1750302661827,"y":26.815},{"x":1750302601478,"y":23.611},{"x":1750302541112,"y":25.705},{"x":1750302480749,"y":25.882},{"x":1750302420387,"y":25.353},{"x":1750302362944,"y":29.247},{"x":1750302302598,"y":24.545},{"x":1750302242186,"y":40.42},{"x":1750302183008,"y":41.024},{"x":1750302122287,"y":45.778},{"x":1750302061777,"y":53.554},{"x":1750302002596,"y":42.053},{"x":1750301942137,"y":32.07},{"x":1750301881767,"y":37.258},{"x":1750301821336,"y":39.297},{"x":1750301760941,"y":34.566},{"x":1750301700643,"y":35.187},{"x":1750301640171,"y":51.643},{"x":1750301582702,"y":48.417},{"x":1750301522308,"y":48.934},{"x":1750301461938,"y":51.04},{"x":1750301401585,"y":53.951},{"x":1750301341203,"y":27.902},{"x":1750301280759,"y":32.385},{"x":1750301220293,"y":31.921},{"x":1750301162881,"y":31.412},{"x":1750301102505,"y":32.504},{"x":1750301042122,"y":34.322},{"x":1750300981720,"y":32.739},{"x":1750300921363,"y":33.71},{"x":1750300860956,"y":28.662},{"x":1750300800561,"y":27.623},{"x":1750300743044,"y":32.683},{"x":1750300682690,"y":26.117},{"x":1750300622341,"y":27.259},{"x":1750300561934,"y":25.346},{"x":1750300501576,"y":24.386},{"x":1750300441191,"y":33.628},{"x":1750300380798,"y":33.399},{"x":1750300320444,"y":33.159},{"x":1750300262997,"y":32.311},{"x":1750300202608,"y":32.373},{"x":1750300142215,"y":27.582},{"x":1750300081811,"y":31.922},{"x":1750300021421,"y":24.648},{"x":1750299961033,"y":24.055},{"x":1750299900638,"y":23.975},{"x":1750299840234,"y":24.423},{"x":1750299782760,"y":27.643},{"x":1750299722372,"y":26.894},{"x":1750299662001,"y":26.7},{"x":1750299601612,"y":27.642},{"x":1750299541256,"y":28.734},{"x":1750299480862,"y":26.515},{"x":1750299420498,"y":28.95},{"x":1750299362974,"y":25.53},{"x":1750299302631,"y":26.516},{"x":1750299242258,"y":31.643},{"x":1750299181897,"y":27.257},{"x":1750299121548,"y":31.342},{"x":1750299061197,"y":32.726},{"x":1750299000811,"y":31.014},{"x":1750298940407,"y":30.948},{"x":1750298883019,"y":28.831},{"x":1750298822652,"y":35.664},{"x":1750298762230,"y":25.713},{"x":1750298701854,"y":25.666},{"x":1750298641499,"y":34.978},{"x":1750298581093,"y":36.407},{"x":1750298520721,"y":34.196},{"x":1750298460397,"y":46.728},{"x":1750298402936,"y":44.511},{"x":1750298342565,"y":36.75},{"x":1750298282185,"y":32.088},{"x":1750298221824,"y":28.127},{"x":1750298161443,"y":33.229},{"x":1750298101034,"y":32.265},{"x":1750298040671,"y":35.045},{"x":1750297980313,"y":51.798},{"x":1750297922859,"y":50.009},{"x":1750297862505,"y":46.921},{"x":1750297802142,"y":50.91},{"x":1750297741769,"y":44.503},{"x":1750297681273,"y":26.993},{"x":1750297620841,"y":31.296},{"x":1750297560485,"y":27.108},{"x":1750297500120,"y":31.125},{"x":1750297442688,"y":24.642},{"x":1750297382326,"y":31.741},{"x":1750297321900,"y":25.767},{"x":1750297261542,"y":25.793},{"x":1750297201184,"y":37.933},{"x":1750297140816,"y":33.736},{"x":1750297080446,"y":35.191},{"x":1750297020064,"y":35.687},{"x":1750296962667,"y":34.242},{"x":1750296902256,"y":27.069},{"x":1750296841936,"y":33.117},{"x":1750296781531,"y":33.353},{"x":1750296721179,"y":27.767},{"x":1750296660802,"y":27.158},{"x":1750296600427,"y":25.941},{"x":1750296542952,"y":24.49},{"x":1750296482586,"y":26.677},{"x":1750296422248,"y":34.831},{"x":1750296361841,"y":38.458},{"x":1750296301481,"y":36.106},{"x":1750296241096,"y":34.555},{"x":1750296180746,"y":36.753},{"x":1750296120395,"y":26.756},{"x":1750296062981,"y":26.052},{"x":1750296002623,"y":26.076},{"x":1750295942254,"y":37.313},{"x":1750295881889,"y":33.636},{"x":1750295821496,"y":32.039},{"x":1750295761112,"y":33.369},{"x":1750295700806,"y":28.99},{"x":1750295640487,"y":26.268},{"x":1750295582942,"y":28.749},{"x":1750295522578,"y":30.766},{"x":1750295462218,"y":27.091},{"x":1750295401845,"y":27.784},{"x":1750295341480,"y":30.07},{"x":1750295281059,"y":24.247},{"x":1750295220664,"y":28.212},{"x":1750295160240,"y":29.335},{"x":1750295102825,"y":30.729},{"x":1750295042471,"y":32.887},{"x":1750294982072,"y":30.819},{"x":1750294921719,"y":25.594},{"x":1750294861339,"y":34.888},{"x":1750294800961,"y":27.749},{"x":1750294740458,"y":26.992},{"x":1750294683036,"y":27.258},{"x":1750294622622,"y":29.49},{"x":1750294562243,"y":32.042},{"x":1750294501858,"y":28.028},{"x":1750294441497,"y":30.045},{"x":1750294381158,"y":26.55},{"x":1750294320804,"y":27.175},{"x":1750294260408,"y":24.963},{"x":1750294202955,"y":28.676},{"x":1750294142596,"y":49.393},{"x":1750294082132,"y":48.807},{"x":1750294021704,"y":50.287},{"x":1750293961315,"y":47.415},{"x":1750293900942,"y":27.407},{"x":1750293840530,"y":29.143},{"x":1750293780176,"y":29.627},{"x":1750293722695,"y":28.777},{"x":1750293662320,"y":36.471},{"x":1750293601890,"y":44.013},{"x":1750293541536,"y":51.941},{"x":1750293481180,"y":49.418},{"x":1750293420826,"y":48.061},{"x":1750293360472,"y":43.212},{"x":1750293302979,"y":31.811},{"x":1750293242604,"y":29.979},{"x":1750293182248,"y":29.144},{"x":1750293121831,"y":28.921},{"x":1750293061478,"y":25.805},{"x":1750293001122,"y":27.152},{"x":1750292940758,"y":27.271},{"x":1750292880366,"y":30.039},{"x":1750292822816,"y":27.174},{"x":1750292762483,"y":28.288},{"x":1750292702104,"y":31.441},{"x":1750292641761,"y":29.788},{"x":1750292581376,"y":37.583},{"x":1750292520985,"y":43.147},{"x":1750292460635,"y":38.953},{"x":1750292400331,"y":34.328},{"x":1750292342834,"y":33.434},{"x":1750292282436,"y":26.238},{"x":1750292222067,"y":36.424},{"x":1750292161697,"y":28.146},{"x":1750292101339,"y":31.253},{"x":1750292040973,"y":31.596},{"x":1750291980631,"y":33.538},{"x":1750291920299,"y":36.08},{"x":1750291862808,"y":28.198},{"x":1750291802423,"y":29.826},{"x":1750291741461,"y":26.77},{"x":1750291681097,"y":25.894},{"x":1750291620726,"y":25.896},{"x":1750291560351,"y":26.846},{"x":1750291502885,"y":27.477},{"x":1750291442493,"y":27.301},{"x":1750291382106,"y":30.922},{"x":1750291321714,"y":28.669},{"x":1750291261340,"y":31.764},{"x":1750291200995,"y":31.152},{"x":1750291140452,"y":30.044},{"x":1750291083049,"y":32.552},{"x":1750291022643,"y":30.393},{"x":1750290962297,"y":32.607},{"x":1750290901919,"y":26.364},{"x":1750290841530,"y":34.412},{"x":1750290781155,"y":35.13},{"x":1750290720779,"y":34.897},{"x":1750290660389,"y":35.263},{"x":1750290602995,"y":34.033},{"x":1750290542619,"y":40.883},{"x":1750290482168,"y":37.91},{"x":1750290421719,"y":39.067},{"x":1750290361348,"y":36.835},{"x":1750290300996,"y":38.641},{"x":1750290240635,"y":53.248},{"x":1750290180295,"y":47.451},{"x":1750290122795,"y":45.782},{"x":1750290062425,"y":45.649},{"x":1750290001975,"y":46.619},{"x":1750289941608,"y":30.229},{"x":1750289881227,"y":31.064},{"x":1750289820807,"y":34.71},{"x":1750289760459,"y":30.693},{"x":1750289700079,"y":29.522},{"x":1750289642680,"y":27.857},{"x":1750289582302,"y":29.144},{"x":1750289521920,"y":25.818},{"x":1750289461549,"y":25.904},{"x":1750289401203,"y":24.712},{"x":1750289340819,"y":30.932},{"x":1750289280482,"y":24.045},{"x":1750289223041,"y":24.734},{"x":1750289162615,"y":25.441},{"x":1750289102278,"y":37.535},{"x":1750289041891,"y":44.611},{"x":1750288981537,"y":38.39},{"x":1750288921179,"y":40.586},{"x":1750288860777,"y":34.993},{"x":1750288800422,"y":28.138},{"x":1750288742940,"y":30.777},{"x":1750288682574,"y":31.691},{"x":1750288622164,"y":33.241},{"x":1750288561789,"y":31.371},{"x":1750288501398,"y":37.978},{"x":1750288440978,"y":34.923},{"x":1750288380618,"y":37.635},{"x":1750288320267,"y":34.237},{"x":1750288262749,"y":34.528},{"x":1750288202381,"y":38.042},{"x":1750288142011,"y":28.635},{"x":1750288081645,"y":32.718},{"x":1750288021253,"y":29.651},{"x":1750287960863,"y":26.975},{"x":1750287900498,"y":28.91},{"x":1750287843010,"y":31.303},{"x":1750287782626,"y":34.957},{"x":1750287722250,"y":33.768},{"x":1750287661862,"y":30.091},{"x":1750287601483,"y":31.666},{"x":1750287541095,"y":31.922},{"x":1750287480725,"y":33.319},{"x":1750287420372,"y":28.353},{"x":1750287362882,"y":28.208},{"x":1750287302500,"y":28.037},{"x":1750287242152,"y":51.439},{"x":1750287181791,"y":46.601},{"x":1750287121441,"y":48.35},{"x":1750287061032,"y":47.546},{"x":1750287000663,"y":51.915},{"x":1750286940268,"y":27.564},{"x":1750286882730,"y":28.47},{"x":1750286822246,"y":32.91},{"x":1750286761873,"y":30.749},{"x":1750286701498,"y":25.986},{"x":1750286641128,"y":24.013},{"x":1750286580765,"y":25.387},{"x":1750286520411,"y":39.423},{"x":1750286462974,"y":28.516},{"x":1750286402611,"y":27.002},{"x":1750286342210,"y":27.765},{"x":1750286281798,"y":28.771},{"x":1750286221442,"y":31.059},{"x":1750286161054,"y":26.804},{"x":1750286100719,"y":26.871},{"x":1750286040378,"y":29.248},{"x":1750285982837,"y":32.4},{"x":1750285922491,"y":40.426},{"x":1750285862129,"y":48.403},{"x":1750285801774,"y":54.191},{"x":1750285741372,"y":51.037},{"x":1750285681001,"y":48.142},{"x":1750285620625,"y":37.308},{"x":1750285560293,"y":32.91},{"x":1750285502836,"y":28.415},{"x":1750285442465,"y":29.93},{"x":1750285382092,"y":27.669},{"x":1750285321684,"y":32.459},{"x":1750285261320,"y":35.783},{"x":1750285200948,"y":31.128},{"x":1750285140577,"y":31.748},{"x":1750285080188,"y":30.915},{"x":1750285022670,"y":32.218},{"x":1750284962328,"y":32.345},{"x":1750284901986,"y":30.033},{"x":1750284841629,"y":28.798},{"x":1750284781289,"y":33.416},{"x":1750284720922,"y":26.76},{"x":1750284660529,"y":33.877},{"x":1750284600240,"y":30.358},{"x":1750284542718,"y":29.524},{"x":1750284482331,"y":32.749},{"x":1750284421956,"y":38.844},{"x":1750284361604,"y":44.317},{"x":1750284301263,"y":35.794},{"x":1750284240890,"y":36.695},{"x":1750284180523,"y":35.104},{"x":1750284120097,"y":25.682},{"x":1750284062659,"y":30.004},{"x":1750284002293,"y":31.966},{"x":1751493540323,"y":39.943},{"x":1751493482976,"y":33.227},{"x":1751493422833,"y":28.195},{"x":1751493362689,"y":28.021},{"x":1751493302540,"y":29.907},{"x":1751493242386,"y":28.359},{"x":1751493182251,"y":43.603},{"x":1751493122077,"y":23.551},{"x":1751493061921,"y":28.255},{"x":1751493001768,"y":32.097},{"x":1751492941626,"y":32.878},{"x":1751492881476,"y":33.507},{"x":1751492821323,"y":32.709},{"x":1751492761185,"y":32.4},{"x":1751492701030,"y":40.84},{"x":1751492640850,"y":32.538},{"x":1751492580698,"y":36.718},{"x":1751492520545,"y":31.689},{"x":1751492460433,"y":33.21},{"x":1751492400221,"y":33.663},{"x":1751492342924,"y":29.905},{"x":1751492282699,"y":28.943},{"x":1751492222558,"y":36.967},{"x":1751492162414,"y":38.687},{"x":1751492102266,"y":35.112},{"x":1751492042113,"y":32.771},{"x":1751491981979,"y":30.955},{"x":1751491921812,"y":27.995},{"x":1751491861660,"y":31.362},{"x":1751491801512,"y":29.843},{"x":1751491741362,"y":28.582},{"x":1751491681220,"y":26.961},{"x":1751491621062,"y":31.334},{"x":1751491560907,"y":36.631},{"x":1751491500771,"y":26.636},{"x":1751491440624,"y":29.472},{"x":1751491380491,"y":37.642},{"x":1751491320353,"y":36.766},{"x":1751491260079,"y":41.28},{"x":1751491202893,"y":42.988},{"x":1751491142766,"y":43.448},{"x":1751491082565,"y":37.481},{"x":1751491022415,"y":44.861},{"x":1751490962249,"y":42.061},{"x":1751490902091,"y":26.88},{"x":1751490841912,"y":52.054},{"x":1751490781757,"y":51.542},{"x":1751490721581,"y":52.304},{"x":1751490661428,"y":51.165},{"x":1751490601287,"y":51.693},{"x":1751490541133,"y":30.678},{"x":1751490480975,"y":29.392},{"x":1751490420805,"y":33.918},{"x":1751490360660,"y":29.001},{"x":1751490300513,"y":29.789},{"x":1751490240393,"y":30.323},{"x":1751490180229,"y":32.856},{"x":1751490122884,"y":37.758},{"x":1751490062736,"y":28.632},{"x":1751490002631,"y":28.693},{"x":1751489942436,"y":26.743},{"x":1751489882273,"y":29.36},{"x":1751489822126,"y":31.591},{"x":1751489761972,"y":31.169},{"x":1751489701814,"y":32.752},{"x":1751489641663,"y":41.715},{"x":1751489581523,"y":34.143},{"x":1751489521376,"y":36.953},{"x":1751489461228,"y":25.766},{"x":1751489401112,"y":29.836},{"x":1751489340917,"y":30.231},{"x":1751489280777,"y":50.09},{"x":1751489220618,"y":48.341},{"x":1751489160477,"y":52.911},{"x":1751489100376,"y":57.864},{"x":1751489040237,"y":36.986},{"x":1751488982923,"y":31.433},{"x":1751488922776,"y":47.448},{"x":1751488862627,"y":30.912},{"x":1751488802488,"y":53.521},{"x":1751488742318,"y":54.864},{"x":1751488682174,"y":51.052},{"x":1751488622009,"y":58.134},{"x":1751488561857,"y":54.267},{"x":1751488501695,"y":61.092},{"x":1751488441544,"y":55.305},{"x":1751488381382,"y":29.526},{"x":1751488321228,"y":36.737},{"x":1751488261075,"y":29.366},{"x":1751488200924,"y":29.031},{"x":1751488140766,"y":29.02},{"x":1751488080629,"y":44.407},{"x":1751488020465,"y":35.477},{"x":1751487960352,"y":32.491},{"x":1751487903004,"y":48.625},{"x":1751487842836,"y":33.388},{"x":1751487782696,"y":35.986},{"x":1751487722548,"y":52.187},{"x":1751487662389,"y":53.751},{"x":1751487602238,"y":48.468},{"x":1751487542098,"y":43.174},{"x":1751487481882,"y":40.89},{"x":1751487421670,"y":39.057},{"x":1751487361515,"y":43.468},{"x":1751487301366,"y":37.628},{"x":1751487241210,"y":37.223},{"x":1751487181051,"y":38.9},{"x":1751487120889,"y":37.724},{"x":1751487060733,"y":34.942},{"x":1751487000619,"y":34.81},{"x":1751486940363,"y":33.712},{"x":1751486880300,"y":34.467},{"x":1751486822959,"y":47.362},{"x":1751486762820,"y":31.553},{"x":1751486702671,"y":49.312},{"x":1751486642471,"y":34.42},{"x":1751486582319,"y":34.647},{"x":1751486522164,"y":38.32},{"x":1751486462026,"y":49.13},{"x":1751486401932,"y":35.115},{"x":1751486341681,"y":41.879},{"x":1751486281531,"y":51.591},{"x":1751486221387,"y":43.09},{"x":1751486161240,"y":41.573},{"x":1751486101071,"y":36.61},{"x":1751486040876,"y":51.073},{"x":1751485980717,"y":36.814},{"x":1751485920580,"y":38.419},{"x":1751485860439,"y":51.656},{"x":1751485800296,"y":32.451},{"x":1751485743042,"y":26.795},{"x":1751485682864,"y":33.554},{"x":1751485622716,"y":35.989},{"x":1751485562560,"y":38.515},{"x":1751485502416,"y":34.911},{"x":1751485442260,"y":33.423},{"x":1751485382089,"y":31.252},{"x":1751485321921,"y":34.607},{"x":1751485261779,"y":32.053},{"x":1751485201626,"y":36.152},{"x":1751485141481,"y":38.098},{"x":1751485081330,"y":33.817},{"x":1751485021179,"y":39.35},{"x":1751484961014,"y":35.612},{"x":1751484900864,"y":36.091},{"x":1751484840716,"y":46.352},{"x":1751484780576,"y":43.386},{"x":1751484720484,"y":40.331},{"x":1751484660339,"y":36.37},{"x":1751484602970,"y":33.29},{"x":1751484542822,"y":33.269},{"x":1751484482680,"y":39.019},{"x":1751484422530,"y":36.418},{"x":1751484362355,"y":40.392},{"x":1751484302206,"y":38.167},{"x":1751484242058,"y":51.855},{"x":1751484181900,"y":42.909},{"x":1751484121747,"y":33.024},{"x":1751484061584,"y":36.126},{"x":1751484001435,"y":31.931},{"x":1751483941280,"y":40.869},{"x":1751483881061,"y":34.148},{"x":1751483820857,"y":29.039},{"x":1751483760709,"y":32.974},{"x":1751483700630,"y":41.43},{"x":1751483640358,"y":44.502},{"x":1751483580149,"y":48.33},{"x":1751483522915,"y":50.713},{"x":1751483462773,"y":50.314},{"x":1751483402611,"y":45.738},{"x":1751483342452,"y":39.447},{"x":1751483282307,"y":42.449},{"x":1751483222165,"y":45.569},{"x":1751483162008,"y":38.911},{"x":1751483101861,"y":50.148},{"x":1751483041714,"y":51.524},{"x":1751482981574,"y":54.936},{"x":1751482921421,"y":43.683},{"x":1751482861260,"y":37.619},{"x":1751482801206,"y":45.853},{"x":1751482740873,"y":48.835},{"x":1751482680692,"y":45.57},{"x":1751482620565,"y":47.819},{"x":1751482560446,"y":59.398},{"x":1751482500265,"y":47.828},{"x":1751482442928,"y":49.045},{"x":1751482382791,"y":51.761},{"x":1751482322622,"y":42.43},{"x":1751482262469,"y":41.958},{"x":1751482202314,"y":45.125},{"x":1751482142169,"y":36.758},{"x":1751482082016,"y":35.887},{"x":1751482021869,"y":34.95},{"x":1751481961727,"y":36.533},{"x":1751481901575,"y":40.777},{"x":1751481841424,"y":37.417},{"x":1751481781279,"y":41.172},{"x":1751481721135,"y":36.507},{"x":1751481660978,"y":48.852},{"x":1751481600870,"y":52.781},{"x":1751481540634,"y":53.847},{"x":1751481480584,"y":50.42},{"x":1751481420361,"y":45.087},{"x":1751481360230,"y":38.062},{"x":1751481302910,"y":37.275},{"x":1751481242765,"y":39.109},{"x":1751481182620,"y":38.572},{"x":1751481122470,"y":35.043},{"x":1751481062326,"y":36.909},{"x":1751481002186,"y":42.882},{"x":1751480942023,"y":38.048},{"x":1751480881874,"y":40.805},{"x":1751480821728,"y":43.024},{"x":1751480761585,"y":40.952},{"x":1751480701435,"y":42.756},{"x":1751480641282,"y":38.852},{"x":1751480581127,"y":31.952},{"x":1751480520957,"y":32.48},{"x":1751480460804,"y":29.737},{"x":1751480400673,"y":30.902},{"x":1751480340537,"y":38.774},{"x":1751480280330,"y":36.952},{"x":1751480220143,"y":38.588},{"x":1751480162898,"y":46.335},{"x":1751480102765,"y":38.547},{"x":1751480042605,"y":30.568},{"x":1751479982457,"y":29.508},{"x":1751479922307,"y":28.883},{"x":1751479862157,"y":30.882},{"x":1751479801990,"y":26.619},{"x":1751479741837,"y":31.833},{"x":1751479681696,"y":29.698},{"x":1751479621547,"y":35.679},{"x":1751479561399,"y":40.439},{"x":1751479501250,"y":41.643},{"x":1751479441085,"y":41.287},{"x":1751479380932,"y":43.052},{"x":1751479320765,"y":34.029},{"x":1751479260629,"y":35.348},{"x":1751479200563,"y":33.552},{"x":1751479140196,"y":37.046},{"x":1751479082892,"y":32.894},{"x":1751479022744,"y":46.994},{"x":1751478962593,"y":31.919},{"x":1751478902451,"y":33.865},{"x":1751478842311,"y":30.39},{"x":1751478782177,"y":34.201},{"x":1751478722020,"y":43.291},{"x":1751478661865,"y":38.62},{"x":1751478601699,"y":38.543},{"x":1751478541542,"y":39.598},{"x":1751478481391,"y":25.399},{"x":1751478421238,"y":22.143},{"x":1751478361089,"y":29.651},{"x":1751478300955,"y":30.007},{"x":1751478240721,"y":21.012},{"x":1751478180576,"y":26.671},{"x":1751478120462,"y":32.976},{"x":1751478060276,"y":37.939},{"x":1751478002985,"y":33.709},{"x":1751477942845,"y":35.051},{"x":1751477882652,"y":36.493},{"x":1751477822500,"y":44.146},{"x":1751477762352,"y":40.913},{"x":1751477702191,"y":35.966},{"x":1751477642037,"y":37.913},{"x":1751477581880,"y":24.946},{"x":1751477521730,"y":26.613},{"x":1751477461580,"y":23.015},{"x":1751477401427,"y":22.404},{"x":1751477341274,"y":21.771},{"x":1751477281126,"y":23.777},{"x":1751477220938,"y":33.676},{"x":1751477160810,"y":33.16},{"x":1751477100665,"y":32.058},{"x":1751477040467,"y":31.347},{"x":1751476980308,"y":23.36},{"x":1751476923006,"y":33.339},{"x":1751476862841,"y":27.306},{"x":1751476802688,"y":30.655},{"x":1751476742558,"y":28.626},{"x":1751476682307,"y":25.98},{"x":1751476622128,"y":32.504},{"x":1751476561957,"y":29.388},{"x":1751476501808,"y":26.698},{"x":1751476441671,"y":31.089},{"x":1751476381511,"y":29.433},{"x":1751476321368,"y":37.494},{"x":1751476261195,"y":29.266},{"x":1751476201045,"y":40.069},{"x":1751476140878,"y":31.531},{"x":1751476080741,"y":31.583},{"x":1751476020580,"y":29.629},{"x":1751475960455,"y":29.794},{"x":1751475900337,"y":35.661},{"x":1751475842970,"y":37.199},{"x":1751475782806,"y":42.304},{"x":1751475722637,"y":61.287},{"x":1751475662496,"y":50.666},{"x":1751475602315,"y":59.62},{"x":1751475542166,"y":45.455},{"x":1751475482009,"y":51.307},{"x":1751475421864,"y":47.324},{"x":1751475361712,"y":49.716},{"x":1751475301563,"y":43.009},{"x":1751475241417,"y":34.641},{"x":1751475181262,"y":41.442},{"x":1751475121111,"y":45.851},{"x":1751475060931,"y":41.686},{"x":1751475000790,"y":43.958},{"x":1751474940642,"y":51.219},{"x":1751474880583,"y":48.012},{"x":1751474820287,"y":43.54},{"x":1751474760122,"y":34.262},{"x":1751474702893,"y":42.801},{"x":1751474642726,"y":37.872},{"x":1751474582563,"y":39.295},{"x":1751474522412,"y":35.053},{"x":1751474462272,"y":39.992},{"x":1751474402125,"y":37.065},{"x":1751474341964,"y":31.032},{"x":1751474281817,"y":34.877},{"x":1751474221688,"y":32.87},{"x":1751474161525,"y":32.535},{"x":1751474101375,"y":33.573},{"x":1751474041231,"y":37.003},{"x":1751473981075,"y":42.349},{"x":1751473920930,"y":33.379},{"x":1751473860769,"y":30.694},{"x":1751473800723,"y":34.539},{"x":1751473740457,"y":37.651},{"x":1751473680295,"y":50.861},{"x":1751473622983,"y":60.666},{"x":1751473562838,"y":56.852},{"x":1751473502695,"y":59.158},{"x":1751473442538,"y":58.573},{"x":1751473382402,"y":47.988},{"x":1751473322213,"y":40.08},{"x":1751473262045,"y":42.006},{"x":1751473201862,"y":44.767},{"x":1751473141715,"y":34.945},{"x":1751473081561,"y":42.011},{"x":1751473021345,"y":43.011},{"x":1751472961161,"y":50.804},{"x":1751472900990,"y":45.517},{"x":1751472840832,"y":48.672},{"x":1751472780675,"y":49.45},{"x":1751472720568,"y":45.443},{"x":1751472660344,"y":40.434},{"x":1751472600331,"y":40.283},{"x":1751472542895,"y":41.684},{"x":1751472482755,"y":46.215},{"x":1751472422598,"y":49.061},{"x":1751472362449,"y":46.114},{"x":1751472302321,"y":46.718},{"x":1751472242136,"y":43.673},{"x":1751472181978,"y":36.59},{"x":1751472121828,"y":31.204},{"x":1751472061686,"y":34.563},{"x":1751472001549,"y":32.909},{"x":1751471941365,"y":38.108},{"x":1751471881215,"y":35.627},{"x":1751471821063,"y":38.642},{"x":1751471760902,"y":34.0},{"x":1751471700785,"y":38.68},{"x":1751471640632,"y":43.568},{"x":1751471580484,"y":44.406},{"x":1751471520328,"y":31.299},{"x":1751471460179,"y":43.885},{"x":1751471402888,"y":53.774},{"x":1751471342746,"y":50.841},{"x":1751471282610,"y":63.639},{"x":1751471222460,"y":72.06},{"x":1751471162315,"y":46.688},{"x":1751471102156,"y":35.947},{"x":1751471042001,"y":40.01},{"x":1751470981847,"y":39.865},{"x":1751470921709,"y":39.593},{"x":1751470861540,"y":49.453},{"x":1751470801396,"y":42.853},{"x":1751470741234,"y":42.754},{"x":1751470681085,"y":42.68},{"x":1751470620928,"y":35.892},{"x":1751470560767,"y":33.865},{"x":1751470500661,"y":50.638},{"x":1751470440470,"y":42.137},{"x":1751470380387,"y":42.786},{"x":1751470320233,"y":45.983},{"x":1751470262894,"y":53.288},{"x":1751470202756,"y":52.682},{"x":1751470142599,"y":45.573},{"x":1751470082447,"y":36.219},{"x":1751470022314,"y":39.323},{"x":1751469962123,"y":37.115},{"x":1751469901977,"y":43.475},{"x":1751469841804,"y":38.002},{"x":1751469781636,"y":42.975},{"x":1751469721475,"y":45.18},{"x":1751469661330,"y":50.263},{"x":1751469601171,"y":46.155},{"x":1751469540995,"y":50.426},{"x":1751469480833,"y":43.545},{"x":1751469420628,"y":42.656},{"x":1751469360489,"y":34.493},{"x":1751469300552,"y":40.17},{"x":1751469240289,"y":36.895},{"x":1751469182909,"y":45.326},{"x":1751469122760,"y":50.025},{"x":1751469062622,"y":46.893},{"x":1751469002480,"y":43.173},{"x":1751468942341,"y":40.836},{"x":1751468882192,"y":30.223},{"x":1751468822005,"y":31.89},{"x":1751468761850,"y":39.608},{"x":1751468701708,"y":36.833},{"x":1751468641567,"y":47.993},{"x":1751468581413,"y":46.511},{"x":1751468521272,"y":55.122},{"x":1751468461134,"y":54.866},{"x":1751468401065,"y":61.523},{"x":1751468340742,"y":61.558},{"x":1751468280609,"y":50.188},{"x":1751468220506,"y":51.382},{"x":1751468160346,"y":46.986},{"x":1751468102980,"y":38.598},{"x":1751468042832,"y":40.142},{"x":1751467982675,"y":38.617},{"x":1751467922518,"y":44.634},{"x":1751467862374,"y":36.002},{"x":1751467802216,"y":65.556},{"x":1751467742056,"y":39.488},{"x":1751467681898,"y":46.519},{"x":1751467621749,"y":56.827},{"x":1751467561589,"y":53.393},{"x":1751467501439,"y":49.802},{"x":1751467441272,"y":45.436},{"x":1751467381127,"y":28.189},{"x":1751467320955,"y":39.058},{"x":1751467260811,"y":34.828},{"x":1751467200786,"y":44.556},{"x":1751467140492,"y":45.641},{"x":1751467080329,"y":49.857},{"x":1751467020193,"y":42.995},{"x":1751466962893,"y":57.629},{"x":1751466902741,"y":48.301},{"x":1751466842591,"y":46.766},{"x":1751466782443,"y":48.954},{"x":1751466722268,"y":45.396},{"x":1751466662119,"y":37.313},{"x":1751466601951,"y":55.806},{"x":1751466541804,"y":41.096},{"x":1751466481661,"y":43.753},{"x":1751466421502,"y":59.137},{"x":1751466361349,"y":62.544},{"x":1751466301198,"y":45.536},{"x":1751466241044,"y":42.635},{"x":1751466180880,"y":57.934},{"x":1751466120687,"y":62.659},{"x":1751466060535,"y":54.734},{"x":1751466000401,"y":56.921},{"x":1751465940272,"y":65.571},{"x":1751465882944,"y":59.208},{"x":1751465822754,"y":42.339},{"x":1751465762609,"y":30.758},{"x":1751465702444,"y":56.831},{"x":1751465642290,"y":56.877},{"x":1751465582140,"y":50.093},{"x":1751465521972,"y":42.827},{"x":1751465461854,"y":64.583},{"x":1751465401648,"y":61.131},{"x":1751465341476,"y":51.594},{"x":1751465281327,"y":38.943},{"x":1751465221178,"y":43.425},{"x":1751465161042,"y":44.253},{"x":1751465100840,"y":43.592},{"x":1751465040687,"y":73.322},{"x":1751464980517,"y":53.636},{"x":1751464920390,"y":52.494},{"x":1751464860388,"y":47.636},{"x":1751464802902,"y":37.605},{"x":1751464742718,"y":39.582},{"x":1751464682610,"y":34.614},{"x":1751464622416,"y":46.037},{"x":1751464562266,"y":41.841},{"x":1751464502126,"y":60.515},{"x":1751464441928,"y":51.979},{"x":1751464381788,"y":55.832},{"x":1751464321621,"y":59.923},{"x":1751464261469,"y":47.681},{"x":1751464201317,"y":44.563},{"x":1751464141161,"y":40.686},{"x":1751464080990,"y":32.364},{"x":1751464020849,"y":44.039},{"x":1751463960693,"y":50.002},{"x":1751463900707,"y":61.441},{"x":1751463840377,"y":56.743},{"x":1751463780182,"y":59.283},{"x":1751463722893,"y":47.962},{"x":1751463662743,"y":36.842},{"x":1751463602602,"y":30.316},{"x":1751463542439,"y":30.866},{"x":1751463482130,"y":31.915},{"x":1751463421968,"y":39.139},{"x":1751463361806,"y":37.669},{"x":1751463301657,"y":38.192},{"x":1751463241516,"y":42.11},{"x":1751463181359,"y":52.181},{"x":1751463121173,"y":39.264},{"x":1751463061044,"y":43.133},{"x":1751463000887,"y":43.527},{"x":1751462940684,"y":26.176},{"x":1751462880586,"y":23.853},{"x":1751462820429,"y":25.947},{"x":1751462760300,"y":48.783},{"x":1751462702924,"y":27.219},{"x":1751462642772,"y":34.805},{"x":1751462582595,"y":33.966},{"x":1751462522432,"y":43.933},{"x":1751462462281,"y":31.031},{"x":1751462402103,"y":51.516},{"x":1751462341979,"y":50.653},{"x":1751462281757,"y":40.414},{"x":1751462221539,"y":22.203},{"x":1751462161388,"y":35.237},{"x":1751462101241,"y":23.568},{"x":1751462041061,"y":21.711},{"x":1751461980876,"y":32.909},{"x":1751461920714,"y":35.778},{"x":1751461860559,"y":35.839},{"x":1751461800379,"y":45.296},{"x":1751461740085,"y":42.287},{"x":1751461682858,"y":42.523},{"x":1751461622707,"y":30.017},{"x":1751461562555,"y":38.268},{"x":1751461502402,"y":25.455},{"x":1751461442239,"y":29.971},{"x":1751461382092,"y":23.247},{"x":1751461321928,"y":40.091},{"x":1751461261788,"y":21.29},{"x":1751461201684,"y":40.908},{"x":1751461141432,"y":31.846},{"x":1751461081285,"y":18.964},{"x":1751461021132,"y":10.977},{"x":1751460960958,"y":16.759},{"x":1751460900826,"y":20.434},{"x":1751460840666,"y":38.873},{"x":1751460780502,"y":41.492},{"x":1751460720396,"y":24.997},{"x":1751460660106,"y":43.264},{"x":1751460602867,"y":36.334},{"x":1751460542719,"y":37.864},{"x":1751460482569,"y":10.969},{"x":1751460422413,"y":22.922},{"x":1751460362263,"y":33.601},{"x":1751460302114,"y":29.081},{"x":1751460241948,"y":14.483},{"x":1751460181793,"y":24.935},{"x":1751460121649,"y":28.434},{"x":1751460061524,"y":27.751},{"x":1751460001340,"y":28.69},{"x":1751459941183,"y":24.404},{"x":1751459881015,"y":17.059},{"x":1751459820865,"y":19.722},{"x":1751459760721,"y":9.533},{"x":1751459700582,"y":23.703},{"x":1751459640378,"y":24.694},{"x":1751459580277,"y":39.939},{"x":1751459522929,"y":49.259},{"x":1751459462786,"y":23.29},{"x":1751459402638,"y":47.939},{"x":1751459342477,"y":41.935},{"x":1751459282339,"y":26.946},{"x":1751459222167,"y":25.402},{"x":1751459161992,"y":41.158},{"x":1751459101839,"y":14.341},{"x":1751459041694,"y":12.806},{"x":1751458981545,"y":28.872},{"x":1751458921386,"y":47.756},{"x":1751458861231,"y":42.074},{"x":1751458800948,"y":43.307},{"x":1751458740797,"y":40.785},{"x":1751458680670,"y":31.582},{"x":1751458620489,"y":35.871},{"x":1751458560379,"y":36.879},{"x":1751458502918,"y":46.04},{"x":1751458442742,"y":53.829},{"x":1751458382599,"y":54.337},{"x":1751458322448,"y":46.865},{"x":1751458262282,"y":43.818},{"x":1751458202130,"y":36.049},{"x":1751458141972,"y":38.069},{"x":1751458081812,"y":31.091},{"x":1751458021651,"y":25.769},{"x":1751457961500,"y":34.677},{"x":1751457901358,"y":43.81},{"x":1751457841204,"y":41.432},{"x":1751457781053,"y":35.314},{"x":1751457720873,"y":49.159},{"x":1751457660722,"y":34.508},{"x":1751457600695,"y":24.795},{"x":1751457540487,"y":18.865},{"x":1751457483030,"y":17.04},{"x":1751457422852,"y":26.021},{"x":1751457362708,"y":49.319},{"x":1751457302542,"y":50.003},{"x":1751457242396,"y":39.195},{"x":1751457182235,"y":36.438},{"x":1751457122077,"y":33.298},{"x":1751457061904,"y":30.97},{"x":1751457001756,"y":24.038},{"x":1751456941607,"y":13.359},{"x":1751456881512,"y":40.223},{"x":1751456821308,"y":37.107},{"x":1751456761155,"y":21.414},{"x":1751456701064,"y":16.282},{"x":1751456640838,"y":22.669},{"x":1751456580689,"y":17.787},{"x":1751456520539,"y":11.015},{"x":1751456460432,"y":17.37},{"x":1751456400260,"y":5.233},{"x":1751456342968,"y":2.392},{"x":1751456282812,"y":21.921},{"x":1751456222659,"y":20.397},{"x":1751456162500,"y":31.405},{"x":1751456102343,"y":32.981},{"x":1751456042192,"y":29.903},{"x":1751455982038,"y":17.267},{"x":1751455921855,"y":23.723},{"x":1751455861711,"y":9.673},{"x":1751455801566,"y":12.386},{"x":1751455741373,"y":43.017},{"x":1751455681225,"y":31.015},{"x":1751455621065,"y":30.865},{"x":1751455560893,"y":18.656},{"x":1751455500762,"y":24.934},{"x":1751455440625,"y":21.404},{"x":1751455380460,"y":16.727},{"x":1751455320312,"y":27.337},{"x":1751455262979,"y":13.297},{"x":1751455202839,"y":20.367},{"x":1751455142670,"y":21.934},{"x":1751455082497,"y":29.056},{"x":1751455022287,"y":34.008},{"x":1751454962128,"y":35.498},{"x":1751454901968,"y":28.416},{"x":1751454841816,"y":22.541},{"x":1751454781659,"y":24.226},{"x":1751454721499,"y":21.003},{"x":1751454661337,"y":17.643},{"x":1751454601237,"y":29.081},{"x":1751454540996,"y":22.708},{"x":1751454480843,"y":17.747},{"x":1751454420693,"y":12.122},{"x":1751454360572,"y":17.364},{"x":1751454300453,"y":24.56},{"x":1751454240230,"y":21.328},{"x":1751454182945,"y":24.219},{"x":1751454122801,"y":21.395},{"x":1751454062631,"y":29.797},{"x":1751454002474,"y":14.564},{"x":1751453942299,"y":18.698},{"x":1751453882144,"y":15.84},{"x":1751453821964,"y":23.403},{"x":1751453761813,"y":29.19},{"x":1751453701664,"y":25.956},{"x":1751453641511,"y":35.075},{"x":1751453581370,"y":17.321},{"x":1751453521203,"y":30.943},{"x":1751453461013,"y":37.65},{"x":1751453400861,"y":30.299},{"x":1751453340698,"y":15.225},{"x":1751453280586,"y":24.775},{"x":1751453220373,"y":18.703},{"x":1751453163020,"y":30.971},{"x":1751453102867,"y":47.479},{"x":1751453042668,"y":40.846},{"x":1751452982515,"y":32.128},{"x":1751452922370,"y":36.732},{"x":1751452862219,"y":14.771},{"x":1751452802058,"y":16.458},{"x":1751452741903,"y":24.782},{"x":1751452681753,"y":37.597},{"x":1751452621594,"y":33.557},{"x":1751452561440,"y":30.962},{"x":1751452501279,"y":13.989},{"x":1751452441130,"y":14.354},{"x":1751452380986,"y":9.25},{"x":1751452320822,"y":19.409},{"x":1751452260636,"y":19.986},{"x":1751452200633,"y":32.114},{"x":1751452140316,"y":29.563},{"x":1751452080067,"y":32.722},{"x":1751452022869,"y":18.456},{"x":1751451962701,"y":11.321},{"x":1751451902563,"y":6.755},{"x":1751451842351,"y":11.113},{"x":1751451782201,"y":12.342},{"x":1751451722046,"y":14.562},{"x":1751451661868,"y":33.779},{"x":1751451601720,"y":37.701},{"x":1751451541594,"y":28.14},{"x":1751451481376,"y":30.463},{"x":1751451421180,"y":34.167},{"x":1751451360995,"y":25.292},{"x":1751451300851,"y":21.0},{"x":1751451240714,"y":23.746},{"x":1751451180545,"y":25.312},{"x":1751451120323,"y":19.186},{"x":1751451062985,"y":21.447},{"x":1751451002832,"y":23.403},{"x":1751450942689,"y":23.909},{"x":1751450882513,"y":21.546},{"x":1751450822381,"y":19.167},{"x":1751450762210,"y":14.041},{"x":1751450702047,"y":11.306},{"x":1751450641880,"y":19.852},{"x":1751450581724,"y":28.184},{"x":1751450521566,"y":42.52},{"x":1751450461421,"y":29.465},{"x":1751450401361,"y":35.856},{"x":1751450340979,"y":33.625},{"x":1751450280847,"y":26.081},{"x":1751450220689,"y":26.384},{"x":1751450160576,"y":36.198},{"x":1751450100395,"y":30.924},{"x":1751450040237,"y":23.49},{"x":1751449982938,"y":29.862},{"x":1751449922794,"y":33.115},{"x":1751449862645,"y":27.528},{"x":1751449802491,"y":38.13},{"x":1751449742376,"y":27.003},{"x":1751449682200,"y":23.545},{"x":1751449622050,"y":32.385},{"x":1751449561898,"y":37.901},{"x":1751449501751,"y":53.659},{"x":1751449441584,"y":44.802},{"x":1751449381437,"y":34.078},{"x":1751449321286,"y":25.776},{"x":1751449261131,"y":29.547},{"x":1751449200981,"y":31.276},{"x":1751449140797,"y":27.575},{"x":1751449080646,"y":24.853},{"x":1751449020490,"y":30.439},{"x":1751448960398,"y":27.7},{"x":1751448900044,"y":24.261},{"x":1751448842875,"y":21.633},{"x":1751448782725,"y":46.273},{"x":1751448722586,"y":45.03},{"x":1751448662439,"y":28.423},{"x":1751448602273,"y":41.566},{"x":1751448542126,"y":42.744},{"x":1751448481973,"y":37.929},{"x":1751448421824,"y":30.559},{"x":1751448361684,"y":35.408},{"x":1751448301534,"y":40.692},{"x":1751448241387,"y":28.326},{"x":1751448181256,"y":19.184},{"x":1751448121074,"y":18.393},{"x":1751448060911,"y":27.465},{"x":1751448000772,"y":38.305},{"x":1751447940611,"y":36.729},{"x":1751447880483,"y":41.804},{"x":1751447820324,"y":37.691},{"x":1751447762994,"y":37.671},{"x":1751447702845,"y":28.081},{"x":1751447642689,"y":35.968},{"x":1751447582502,"y":29.521},{"x":1751447522346,"y":27.378},{"x":1751447462195,"y":32.906},{"x":1751447402045,"y":45.647},{"x":1751447341870,"y":36.095},{"x":1751447281716,"y":28.435},{"x":1751447221571,"y":33.521},{"x":1751447161408,"y":34.235},{"x":1751447101270,"y":25.006},{"x":1751447041072,"y":38.246},{"x":1751446980922,"y":21.396},{"x":1751446920756,"y":15.733},{"x":1751446860635,"y":27.904},{"x":1751446800605,"y":34.818},{"x":1751446740307,"y":27.672},{"x":1751446682913,"y":43.203},{"x":1751446622754,"y":52.484},{"x":1751446562607,"y":39.708},{"x":1751446502455,"y":42.686},{"x":1751446442291,"y":37.488},{"x":1751446382145,"y":29.141},{"x":1751446321962,"y":27.224},{"x":1751446261794,"y":32.84},{"x":1751446201642,"y":34.18},{"x":1751446141508,"y":34.532},{"x":1751446081335,"y":31.411},{"x":1751446021193,"y":22.825},{"x":1751445961000,"y":15.725},{"x":1751445900896,"y":16.59},{"x":1751445840660,"y":14.643},{"x":1751445780545,"y":35.966},{"x":1751445720406,"y":46.781},{"x":1751445660244,"y":42.752},{"x":1751445602911,"y":36.879},{"x":1751445542769,"y":44.091},{"x":1751445482602,"y":31.023},{"x":1751445422449,"y":17.534},{"x":1751445362279,"y":21.05},{"x":1751445302118,"y":32.141},{"x":1751445241946,"y":29.673},{"x":1751445181791,"y":37.836},{"x":1751445121643,"y":44.465},{"x":1751445061503,"y":37.83},{"x":1751445001364,"y":39.112},{"x":1751444941193,"y":40.032},{"x":1751444881013,"y":37.724},{"x":1751444820854,"y":29.437},{"x":1751444760706,"y":23.02},{"x":1751444700617,"y":26.742},{"x":1751444640460,"y":34.391},{"x":1751444580223,"y":39.773},{"x":1751444522979,"y":37.159},{"x":1751444462836,"y":51.918},{"x":1751444402684,"y":45.059},{"x":1751444342532,"y":31.519},{"x":1751444282319,"y":38.179},{"x":1751444222127,"y":37.493},{"x":1751444161973,"y":34.114},{"x":1751444101821,"y":33.44},{"x":1751444041667,"y":31.492},{"x":1751443981526,"y":29.747},{"x":1751443921388,"y":22.627},{"x":1751443861233,"y":40.868},{"x":1751443801075,"y":20.424},{"x":1751443740909,"y":21.756},{"x":1751443680766,"y":32.932},{"x":1751443620632,"y":37.319},{"x":1751443560526,"y":51.603},{"x":1751443500405,"y":57.07},{"x":1751443443028,"y":44.691},{"x":1751443382870,"y":37.397},{"x":1751443322727,"y":29.883},{"x":1751443262577,"y":17.036},{"x":1751443202447,"y":26.786},{"x":1751443142266,"y":36.693},{"x":1751443082118,"y":34.276},{"x":1751443021932,"y":36.033},{"x":1751442961787,"y":30.996},{"x":1751442901637,"y":36.231},{"x":1751442841499,"y":42.066},{"x":1751442781352,"y":29.214},{"x":1751442721182,"y":25.087},{"x":1751442661019,"y":29.814},{"x":1751442600870,"y":28.108},{"x":1751442540705,"y":26.739},{"x":1751442480599,"y":36.573},{"x":1751442420412,"y":39.783},{"x":1751442360284,"y":45.129},{"x":1751442302964,"y":41.464},{"x":1751442242816,"y":54.378},{"x":1751442182673,"y":59.072},{"x":1751442122520,"y":46.663},{"x":1751442062378,"y":29.114},{"x":1751442002210,"y":42.077},{"x":1751441942047,"y":36.826},{"x":1751441881882,"y":38.176},{"x":1751441821734,"y":37.588},{"x":1751441761593,"y":41.132},{"x":1751441701438,"y":37.475},{"x":1751441641284,"y":51.23},{"x":1751441581122,"y":38.655},{"x":1751441520962,"y":36.408},{"x":1751441460797,"y":25.094},{"x":1751441400731,"y":30.317},{"x":1751441340562,"y":33.269},{"x":1751441280366,"y":38.53},{"x":1751441220302,"y":46.1},{"x":1751441162939,"y":47.268},{"x":1751441102799,"y":43.094},{"x":1751441042634,"y":34.559},{"x":1751440982478,"y":34.695},{"x":1751440922327,"y":37.171},{"x":1751440862172,"y":37.436},{"x":1751440802014,"y":35.073},{"x":1751440741897,"y":34.773},{"x":1751440681719,"y":40.05},{"x":1751440621487,"y":24.631},{"x":1751440561340,"y":18.875},{"x":1751440501193,"y":29.679},{"x":1751440441024,"y":31.071},{"x":1751440380870,"y":28.185},{"x":1751440320722,"y":42.214},{"x":1751440260558,"y":38.606},{"x":1751440200462,"y":33.424},{"x":1751440140246,"y":37.928},{"x":1751440082901,"y":37.836},{"x":1751440022738,"y":31.695},{"x":1751439962589,"y":31.917},{"x":1751439902429,"y":34.422},{"x":1751439842280,"y":30.271},{"x":1751439782116,"y":31.347},{"x":1751439721959,"y":32.68},{"x":1751439661815,"y":23.799},{"x":1751439601685,"y":32.692},{"x":1751439541504,"y":23.15},{"x":1751439481370,"y":34.915},{"x":1751439421215,"y":31.72},{"x":1751439361073,"y":32.604},{"x":1751439300914,"y":48.635},{"x":1751439240749,"y":46.065},{"x":1751439180626,"y":28.934},{"x":1751439120482,"y":34.443},{"x":1751439060357,"y":27.086},{"x":1751439000059,"y":32.945},{"x":1751438942874,"y":34.828},{"x":1751438882733,"y":36.48},{"x":1751438822581,"y":38.927},{"x":1751438762434,"y":45.128},{"x":1751438702281,"y":39.445},{"x":1751438642153,"y":28.759},{"x":1751438581972,"y":25.56},{"x":1751438521796,"y":24.889},{"x":1751438461649,"y":37.508},{"x":1751438401503,"y":46.552},{"x":1751438341351,"y":50.488},{"x":1751438281209,"y":41.286},{"x":1751438221042,"y":51.304},{"x":1751438160872,"y":42.603},{"x":1751438100727,"y":38.928},{"x":1751438040612,"y":39.243},{"x":1751437982661,"y":31.644},{"x":1751437922493,"y":30.964},{"x":1751437862357,"y":25.68},{"x":1751437802213,"y":24.281},{"x":1751437742035,"y":34.612},{"x":1751437681877,"y":21.588},{"x":1751437621724,"y":30.456},{"x":1751437561569,"y":51.39},{"x":1751437501425,"y":38.551},{"x":1751437441280,"y":47.618},{"x":1751437381122,"y":37.935},{"x":1751437320948,"y":31.638},{"x":1751437260809,"y":24.272},{"x":1751437200702,"y":24.15},{"x":1751437140526,"y":48.703},{"x":1751437080268,"y":36.302},{"x":1751437022875,"y":51.191},{"x":1751436962732,"y":34.991},{"x":1751436902576,"y":53.073},{"x":1751436842427,"y":42.075},{"x":1751436782258,"y":61.536},{"x":1751436722101,"y":39.809},{"x":1751436661950,"y":55.081},{"x":1751436601806,"y":33.647},{"x":1751436541640,"y":36.444},{"x":1751436481490,"y":40.119},{"x":1751436421339,"y":53.675},{"x":1751436361191,"y":71.44},{"x":1751436301025,"y":63.304},{"x":1751436240897,"y":51.392},{"x":1751436180713,"y":33.387},{"x":1751436120613,"y":29.083},{"x":1751436060424,"y":28.643},{"x":1751436000236,"y":24.472},{"x":1751435942951,"y":22.054},{"x":1751435882767,"y":28.518},{"x":1751435822621,"y":32.229},{"x":1751435762489,"y":32.691},{"x":1751435702320,"y":36.595},{"x":1751435642170,"y":37.706},{"x":1751435582017,"y":29.767},{"x":1751435521858,"y":24.767},{"x":1751435461710,"y":23.743},{"x":1751435401560,"y":23.835},{"x":1751435341416,"y":31.542},{"x":1751435281379,"y":39.548},{"x":1751435221112,"y":40.256},{"x":1751435160935,"y":38.561},{"x":1751435100954,"y":40.703},{"x":1751435040741,"y":34.049},{"x":1751434980504,"y":36.73},{"x":1751434920304,"y":35.979},{"x":1751434863050,"y":38.628},{"x":1751434802863,"y":36.814},{"x":1751434742694,"y":27.646},{"x":1751434682559,"y":26.06},{"x":1751434622406,"y":32.335},{"x":1751434562270,"y":32.252},{"x":1751434502096,"y":37.801},{"x":1751434441941,"y":35.253},{"x":1751434381799,"y":29.479},{"x":1751434321650,"y":24.046},{"x":1751434261506,"y":21.62},{"x":1751434201369,"y":28.079},{"x":1751434141189,"y":43.527},{"x":1751434081040,"y":40.565},{"x":1751434020887,"y":47.931},{"x":1751433960737,"y":46.779},{"x":1751433900616,"y":43.941},{"x":1751433840448,"y":32.001},{"x":1751433780296,"y":38.718},{"x":1751433723017,"y":39.091},{"x":1751433662814,"y":30.281},{"x":1751433602663,"y":30.387},{"x":1751433542509,"y":31.38},{"x":1751433482336,"y":39.153},{"x":1751433422167,"y":38.09},{"x":1751433361985,"y":36.545},{"x":1751433301824,"y":34.599},{"x":1751433241682,"y":33.297},{"x":1751433181510,"y":24.095},{"x":1751433121347,"y":23.4},{"x":1751433061190,"y":22.876},{"x":1751433001046,"y":39.007},{"x":1751432940880,"y":37.244},{"x":1751432880726,"y":46.246},{"x":1751432820581,"y":44.11},{"x":1751432760442,"y":44.162},{"x":1751432700351,"y":37.172},{"x":1751432640144,"y":37.168},{"x":1751432582885,"y":39.794},{"x":1751432522745,"y":35.555},{"x":1751432462584,"y":31.513},{"x":1751432402483,"y":25.171},{"x":1751432342270,"y":25.024},{"x":1751432282101,"y":26.401},{"x":1751432221943,"y":23.855},{"x":1751432161799,"y":29.332},{"x":1751432101644,"y":31.515},{"x":1751432041470,"y":29.4},{"x":1751431981303,"y":35.949},{"x":1751431921160,"y":47.565},{"x":1751431860997,"y":45.603},{"x":1751431800836,"y":46.407},{"x":1751431740676,"y":43.712},{"x":1751431680550,"y":34.434},{"x":1751431620379,"y":24.31},{"x":1751431560204,"y":27.845},{"x":1751431502971,"y":34.15},{"x":1751431442817,"y":36.125},{"x":1751431382672,"y":48.84},{"x":1751431322547,"y":44.353},{"x":1751431262376,"y":45.271},{"x":1751431202225,"y":48.103},{"x":1751431142104,"y":45.495},{"x":1751431081928,"y":49.176},{"x":1751431021785,"y":47.087},{"x":1751430961640,"y":43.834},{"x":1751430901498,"y":45.728},{"x":1751430841360,"y":45.656},{"x":1751430781197,"y":47.606},{"x":1751430721040,"y":30.409},{"x":1751430660891,"y":32.57},{"x":1751430600785,"y":32.52},{"x":1751430540572,"y":32.732},{"x":1751430480453,"y":31.778},{"x":1751430420280,"y":29.172},{"x":1751430363014,"y":27.137},{"x":1751430302861,"y":31.193},{"x":1751430242715,"y":28.723},{"x":1751430182578,"y":35.842},{"x":1751430122427,"y":38.703},{"x":1751430062273,"y":41.719},{"x":1751430002129,"y":44.529},{"x":1751429941946,"y":48.617},{"x":1751429881755,"y":34.386},{"x":1751429821578,"y":35.761},{"x":1751429761420,"y":34.161},{"x":1751429701281,"y":33.88},{"x":1751429641122,"y":34.055},{"x":1751429580964,"y":36.436},{"x":1751429520822,"y":28.774},{"x":1751429460676,"y":32.178},{"x":1751429400559,"y":27.736},{"x":1751429340433,"y":28.564},{"x":1751429280248,"y":31.066},{"x":1751429222961,"y":33.48},{"x":1751429162822,"y":30.644},{"x":1751429102668,"y":31.141},{"x":1751429042514,"y":33.187},{"x":1751428982361,"y":34.195},{"x":1751428922216,"y":31.205},{"x":1751428862057,"y":38.978},{"x":1751428801899,"y":43.738},{"x":1751428741690,"y":39.415},{"x":1751428681531,"y":39.586},{"x":1751428621374,"y":40.531},{"x":1751428561236,"y":30.92},{"x":1751428501065,"y":30.91},{"x":1751428440894,"y":38.062},{"x":1751428380740,"y":49.29},{"x":1751428320585,"y":34.977},{"x":1751428260446,"y":34.684},{"x":1751428200355,"y":33.352},{"x":1751428140113,"y":32.876},{"x":1751428082872,"y":35.511},{"x":1751428022719,"y":31.522},{"x":1751427962576,"y":33.138},{"x":1751427902431,"y":29.36},{"x":1751427842279,"y":31.229},{"x":1751427782133,"y":30.49},{"x":1751427721978,"y":28.787},{"x":1751427661825,"y":31.376},{"x":1751427601666,"y":31.768},{"x":1751427541520,"y":33.439},{"x":1751427481371,"y":34.492},{"x":1751427421226,"y":35.928},{"x":1751427361072,"y":31.096},{"x":1751427300902,"y":29.291},{"x":1751427240763,"y":28.67},{"x":1751427180611,"y":29.952},{"x":1751427120531,"y":26.579},{"x":1751427060459,"y":27.153},{"x":1751427000183,"y":26.305},{"x":1751426942880,"y":32.318},{"x":1751426882722,"y":28.332},{"x":1751426822558,"y":27.935},{"x":1751426762408,"y":33.49},{"x":1751426702253,"y":33.288},{"x":1751426642085,"y":33.556},{"x":1751426581913,"y":35.087},{"x":1751426521766,"y":30.844},{"x":1751426461625,"y":29.709},{"x":1751426401476,"y":35.946},{"x":1751426341324,"y":31.474},{"x":1751426281169,"y":29.139},{"x":1751426220969,"y":27.436},{"x":1751426160789,"y":30.443},{"x":1751426100652,"y":26.619},{"x":1751426040500,"y":24.613},{"x":1751425980422,"y":25.813},{"x":1751425920259,"y":28.075},{"x":1751425862902,"y":31.348},{"x":1751425802765,"y":26.939},{"x":1751425741137,"y":27.088},{"x":1751425680970,"y":25.285},{"x":1751425620833,"y":25.337},{"x":1751425560683,"y":28.681},{"x":1751425501830,"y":28.404},{"x":1751425440511,"y":32.801},{"x":1751425382664,"y":31.132},{"x":1751425322471,"y":28.186},{"x":1751425262261,"y":27.783},{"x":1751425201789,"y":30.351},{"x":1751425141402,"y":28.139},{"x":1751425081253,"y":40.778},{"x":1751425021091,"y":34.087},{"x":1751424960925,"y":30.937},{"x":1751424900789,"y":30.16},{"x":1751424840633,"y":29.762},{"x":1751424780507,"y":29.108},{"x":1751424720378,"y":32.227},{"x":1751424663003,"y":32.204},{"x":1751424602859,"y":29.384},{"x":1751424542690,"y":32.188},{"x":1751424482542,"y":31.189},{"x":1751424422393,"y":37.824},{"x":1751424362215,"y":37.869},{"x":1751424302061,"y":41.911},{"x":1751424241894,"y":39.671},{"x":1751424181750,"y":39.508},{"x":1751424121600,"y":29.976},{"x":1751424061455,"y":31.446},{"x":1751424001291,"y":28.762},{"x":1751423941163,"y":30.235},{"x":1751423880966,"y":28.411},{"x":1751423820823,"y":29.538},{"x":1751423760670,"y":31.806},{"x":1751423700577,"y":28.358},{"x":1751423640343,"y":31.597},{"x":1751423580184,"y":33.665},{"x":1751423522893,"y":32.704},{"x":1751423462732,"y":29.965},{"x":1751423402585,"y":28.551},{"x":1751423342425,"y":40.506},{"x":1751423282274,"y":40.372},{"x":1751423222108,"y":43.807},{"x":1751423161949,"y":38.883},{"x":1751423101803,"y":37.335},{"x":1751423041664,"y":29.096},{"x":1751422981508,"y":29.381},{"x":1751422921356,"y":26.659},{"x":1751422861208,"y":29.885},{"x":1751422801039,"y":31.037},{"x":1751422740871,"y":31.731},{"x":1751422680696,"y":29.361},{"x":1751422620566,"y":31.979},{"x":1751422560338,"y":30.436},{"x":1751422500057,"y":28.201},{"x":1751422442889,"y":38.797},{"x":1751422382742,"y":35.387},{"x":1751422322594,"y":34.395},{"x":1751422262430,"y":38.157},{"x":1751422202282,"y":37.773},{"x":1751422142113,"y":26.194},{"x":1751422081959,"y":28.293},{"x":1751422021804,"y":32.345},{"x":1751421961650,"y":32.618},{"x":1751421901504,"y":35.441},{"x":1751421841323,"y":32.023},{"x":1751421781167,"y":29.111},{"x":1751421720995,"y":40.505},{"x":1751421660854,"y":39.957},{"x":1751421600756,"y":39.731},{"x":1751421540543,"y":37.624},{"x":1751421480401,"y":38.658},{"x":1751421420210,"y":29.67},{"x":1751421362921,"y":36.303},{"x":1751421302773,"y":28.961},{"x":1751421242629,"y":32.873},{"x":1751421182484,"y":33.819},{"x":1751421122330,"y":33.097},{"x":1751421062184,"y":32.44},{"x":1751421002026,"y":33.761},{"x":1751420941872,"y":29.32},{"x":1751420881723,"y":36.577},{"x":1751420821574,"y":36.457},{"x":1751420761428,"y":36.501},{"x":1751420701274,"y":35.094},{"x":1751420641062,"y":35.926},{"x":1751420580898,"y":33.342},{"x":1751420520737,"y":30.537},{"x":1751420460596,"y":29.296},{"x":1751420400519,"y":31.77},{"x":1751420340273,"y":40.346},{"x":1751420282962,"y":39.324},{"x":1751420222829,"y":43.205},{"x":1751420162648,"y":39.37},{"x":1751420102498,"y":40.605},{"x":1751420042355,"y":29.588},{"x":1751419982200,"y":32.732},{"x":1751419922052,"y":37.611},{"x":1751419861896,"y":33.349},{"x":1751419801757,"y":33.248},{"x":1751419741596,"y":31.019},{"x":1751419681404,"y":30.182},{"x":1751419621266,"y":28.472},{"x":1751419561105,"y":29.153},{"x":1751419500941,"y":28.653},{"x":1751419440785,"y":31.812},{"x":1751419380678,"y":28.11},{"x":1751419320506,"y":30.418},{"x":1751419260336,"y":28.314},{"x":1751419200184,"y":27.904},{"x":1751419142968,"y":26.629},{"x":1751419082807,"y":32.862},{"x":1751419022619,"y":27.254},{"x":1751418962464,"y":27.237},{"x":1751418902311,"y":30.196},{"x":1751418842156,"y":32.483},{"x":1751418782009,"y":39.075},{"x":1751418721851,"y":35.491},{"x":1751418661687,"y":31.246},{"x":1751418601543,"y":31.794},{"x":1751418541372,"y":32.218},{"x":1751418481235,"y":30.573},{"x":1751418421065,"y":44.954},{"x":1751418360886,"y":48.197},{"x":1751418300737,"y":44.345},{"x":1751418240588,"y":48.13},{"x":1751418180444,"y":48.081},{"x":1751418120364,"y":32.923},{"x":1751418063037,"y":31.303},{"x":1751418002884,"y":30.994},{"x":1751417942723,"y":33.077},{"x":1751417882535,"y":28.65},{"x":1751417822373,"y":31.447},{"x":1751417762229,"y":26.853},{"x":1751417702078,"y":26.993},{"x":1751417641916,"y":28.678},{"x":1751417581760,"y":37.133},{"x":1751417521552,"y":35.193},{"x":1751417461406,"y":35.265},{"x":1751417401237,"y":39.823},{"x":1751417341079,"y":33.766},{"x":1751417280911,"y":33.697},{"x":1751417220758,"y":34.358},{"x":1751417160620,"y":33.939},{"x":1751417100538,"y":46.773},{"x":1751417040394,"y":41.345},{"x":1751416982984,"y":40.031},{"x":1751416922844,"y":39.21},{"x":1751416862684,"y":33.247},{"x":1751416802536,"y":32.608},{"x":1751416742388,"y":28.764},{"x":1751416682225,"y":37.262},{"x":1751416622076,"y":38.964},{"x":1751416561949,"y":38.325},{"x":1751416501776,"y":48.521},{"x":1751416441656,"y":39.67},{"x":1751416381492,"y":30.662},{"x":1751416321334,"y":30.546},{"x":1751416261193,"y":29.026},{"x":1751416201016,"y":28.114},{"x":1751416140845,"y":32.329},{"x":1751416080704,"y":29.254},{"x":1751416020497,"y":28.163},{"x":1751415960361,"y":28.193},{"x":1751415900231,"y":27.601},{"x":1751415842912,"y":32.397},{"x":1751415782761,"y":44.01},{"x":1751415722614,"y":37.268},{"x":1751415662477,"y":39.609},{"x":1751415602332,"y":31.195},{"x":1751415542192,"y":32.652},{"x":1751415482012,"y":29.771},{"x":1751415421814,"y":33.26},{"x":1751415361658,"y":34.08},{"x":1751415301500,"y":31.096},{"x":1751415241359,"y":32.543},{"x":1751415181215,"y":31.495},{"x":1751415121066,"y":31.148},{"x":1751415060907,"y":37.542},{"x":1751415000785,"y":36.669},{"x":1751414940559,"y":34.206},{"x":1751414880454,"y":34.214},{"x":1751414820273,"y":31.214},{"x":1751414762957,"y":32.774},{"x":1751414702805,"y":51.686},{"x":1751414642658,"y":47.995},{"x":1751414582515,"y":48.43},{"x":1751414522361,"y":52.38},{"x":1751414462216,"y":47.267},{"x":1751414402236,"y":31.169},{"x":1751414341898,"y":33.115},{"x":1751414281746,"y":29.197},{"x":1751414221598,"y":28.911},{"x":1751414161440,"y":29.641},{"x":1751414101300,"y":28.003},{"x":1751414041148,"y":35.617},{"x":1751413980991,"y":39.936},{"x":1751413920848,"y":36.001},{"x":1751413860689,"y":34.652},{"x":1751413800567,"y":34.061},{"x":1751413740380,"y":41.826},{"x":1751413680156,"y":39.969},{"x":1751413622904,"y":43.157},{"x":1751413562766,"y":38.889},{"x":1751413502607,"y":41.084},{"x":1751413442460,"y":27.086},{"x":1751413382318,"y":28.043},{"x":1751413322173,"y":30.999},{"x":1751413262000,"y":31.138},{"x":1751413201860,"y":31.752},{"x":1751413141710,"y":31.913},{"x":1751413081589,"y":37.243},{"x":1751413021422,"y":38.09},{"x":1751412961274,"y":43.453},{"x":1751412901123,"y":43.061},{"x":1751412840951,"y":41.949},{"x":1751412780813,"y":35.773},{"x":1751412720675,"y":37.779},{"x":1751412660503,"y":34.31},{"x":1751412600396,"y":38.578},{"x":1751412540130,"y":37.555},{"x":1751412482890,"y":32.441},{"x":1751412422730,"y":30.98},{"x":1751412362588,"y":30.073},{"x":1751412302445,"y":29.458},{"x":1751412242297,"y":29.369},{"x":1751412182186,"y":30.513},{"x":1751412121986,"y":31.447},{"x":1751412061869,"y":31.49},{"x":1751412001708,"y":31.798},{"x":1751411941556,"y":29.904},{"x":1751411881408,"y":30.308},{"x":1751411821213,"y":29.748},{"x":1751411761022,"y":31.857},{"x":1751411700904,"y":31.423},{"x":1751411640668,"y":31.254},{"x":1751411580541,"y":39.984},{"x":1751411520415,"y":29.451},{"x":1751411460254,"y":41.267},{"x":1751411402929,"y":30.185},{"x":1751411342773,"y":30.344},{"x":1751411282634,"y":33.977},{"x":1751411222451,"y":46.456},{"x":1751411162311,"y":49.168},{"x":1751411102175,"y":47.041},{"x":1751411042026,"y":47.377},{"x":1751410981877,"y":50.495},{"x":1751410921730,"y":49.167},{"x":1751410861566,"y":33.617},{"x":1751410801452,"y":34.845},{"x":1751410741264,"y":44.985},{"x":1751410681118,"y":53.152},{"x":1751410620963,"y":41.423},{"x":1751410560803,"y":45.551},{"x":1751410500695,"y":54.888},{"x":1751410440530,"y":46.466},{"x":1751410380348,"y":42.565},{"x":1751410320250,"y":44.834},{"x":1751410262939,"y":54.533},{"x":1751410202838,"y":54.746},{"x":1751410142645,"y":51.88},{"x":1751410082501,"y":50.818},{"x":1751410022347,"y":48.512},{"x":1751409962199,"y":35.423},{"x":1751409902034,"y":38.38},{"x":1751409841874,"y":30.733},{"x":1751409781724,"y":32.142},{"x":1751409721583,"y":31.334},{"x":1751409661424,"y":32.909},{"x":1751409601274,"y":36.113},{"x":1751409541106,"y":32.564},{"x":1751409480951,"y":38.754},{"x":1751409420800,"y":35.176},{"x":1751409360665,"y":55.162},{"x":1751409300623,"y":60.364},{"x":1751409240288,"y":51.396},{"x":1751409182994,"y":52.757},{"x":1751409122812,"y":46.617},{"x":1751409062657,"y":36.651},{"x":1751409002506,"y":32.295},{"x":1751408942333,"y":43.854},{"x":1751408882204,"y":49.464},{"x":1751408822036,"y":48.664},{"x":1751408761873,"y":45.119},{"x":1751408701748,"y":45.181},{"x":1751408641576,"y":44.677},{"x":1751408581431,"y":36.46},{"x":1751408521283,"y":35.553},{"x":1751408461115,"y":32.089},{"x":1751408400951,"y":35.607},{"x":1751408340817,"y":44.297},{"x":1751408280633,"y":53.885},{"x":1751408220455,"y":55.862},{"x":1751408160298,"y":62.869},{"x":1751408103199,"y":59.248},{"x":1751408042894,"y":53.142},{"x":1751407982689,"y":44.33},{"x":1751407922544,"y":34.062},{"x":1751407862391,"y":43.349},{"x":1751407802247,"y":44.929},{"x":1751407742095,"y":39.723},{"x":1751407681940,"y":39.83},{"x":1751407621790,"y":51.534},{"x":1751407561645,"y":47.992},{"x":1751407501529,"y":45.513},{"x":1751407441350,"y":39.529},{"x":1751407381200,"y":41.325},{"x":1751407321038,"y":39.4},{"x":1751407260889,"y":50.876},{"x":1751407200926,"y":57.843},{"x":1751407140541,"y":53.592},{"x":1751407080427,"y":52.18},{"x":1751407020239,"y":48.653},{"x":1751406962901,"y":48.843},{"x":1751406902743,"y":43.925},{"x":1751406842590,"y":42.355},{"x":1751406782441,"y":45.81},{"x":1751406722268,"y":42.838},{"x":1751406662123,"y":45.737},{"x":1751406601956,"y":47.675},{"x":1751406541806,"y":50.412},{"x":1751406481661,"y":41.322},{"x":1751406421504,"y":48.608},{"x":1751406361347,"y":43.901},{"x":1751406301195,"y":45.059},{"x":1751406241039,"y":58.508},{"x":1751406180891,"y":55.91},{"x":1751406120742,"y":53.716},{"x":1751406060596,"y":56.863},{"x":1751406000566,"y":56.387},{"x":1751405940357,"y":56.274},{"x":1751405883003,"y":52.615},{"x":1751405822853,"y":48.818},{"x":1751405762694,"y":55.983},{"x":1751405702549,"y":43.817},{"x":1751405642405,"y":35.667},{"x":1751405582279,"y":37.492},{"x":1751405522101,"y":37.985},{"x":1751405461942,"y":54.549},{"x":1751405401801,"y":65.292},{"x":1751405341645,"y":55.607},{"x":1751405281499,"y":58.473},{"x":1751405221349,"y":51.213},{"x":1751405161201,"y":54.585},{"x":1751405101056,"y":66.579},{"x":1751405040895,"y":47.399},{"x":1751404980745,"y":58.324},{"x":1751404920604,"y":43.816},{"x":1751404860459,"y":49.947},{"x":1751404800272,"y":43.943},{"x":1751404742973,"y":39.946},{"x":1751404682781,"y":41.779},{"x":1751404622588,"y":44.473},{"x":1751404562427,"y":49.331},{"x":1751404502274,"y":52.862},{"x":1751404442121,"y":55.323},{"x":1751404381966,"y":53.636},{"x":1751404321810,"y":42.308},{"x":1751404261661,"y":61.36},{"x":1751404201492,"y":49.828},{"x":1751404141342,"y":52.317},{"x":1751404081184,"y":48.011},{"x":1751404021038,"y":43.699},{"x":1751403960870,"y":47.614},{"x":1751403900738,"y":52.716},{"x":1751403840568,"y":52.212},{"x":1751403780374,"y":34.963},{"x":1751403720307,"y":52.723},{"x":1751403662968,"y":62.339},{"x":1751403602819,"y":63.452},{"x":1751403542620,"y":54.002},{"x":1751403482479,"y":68.514},{"x":1751403422301,"y":46.315},{"x":1751403362156,"y":46.831},{"x":1751403302003,"y":61.292},{"x":1751403241848,"y":49.861},{"x":1751403181710,"y":47.799},{"x":1751403121563,"y":43.177},{"x":1751403061405,"y":38.626},{"x":1751403001260,"y":44.322},{"x":1751402941101,"y":52.76},{"x":1751402880943,"y":48.439},{"x":1751402820793,"y":71.218},{"x":1751402760648,"y":59.34},{"x":1751402700637,"y":49.544},{"x":1751402640393,"y":53.698},{"x":1751402580128,"y":50.453},{"x":1751402522898,"y":52.581},{"x":1751402462734,"y":51.406},{"x":1751402402592,"y":55.522},{"x":1751402342448,"y":58.038},{"x":1751402282307,"y":58.953},{"x":1751402222155,"y":45.906},{"x":1751402161995,"y":45.699},{"x":1751402101859,"y":54.295},{"x":1751402041679,"y":69.646},{"x":1751401981522,"y":64.752},{"x":1751401921393,"y":62.422},{"x":1751401861228,"y":54.66},{"x":1751401801061,"y":48.581},{"x":1751401740887,"y":45.15},{"x":1751401680733,"y":49.913},{"x":1751401620588,"y":46.396},{"x":1751401560458,"y":53.32},{"x":1751401500323,"y":51.184},{"x":1751401440049,"y":37.597},{"x":1751401382881,"y":37.544},{"x":1751401322711,"y":42.946},{"x":1751401262560,"y":63.939},{"x":1751401202412,"y":51.988},{"x":1751401142247,"y":52.848},{"x":1751401082067,"y":52.668},{"x":1751401021821,"y":51.708},{"x":1751400961662,"y":53.852},{"x":1751400901500,"y":45.805},{"x":1751400841343,"y":47.652},{"x":1751400781188,"y":48.862},{"x":1751400721020,"y":64.756},{"x":1751400660874,"y":46.94},{"x":1751400600760,"y":42.515},{"x":1751400540560,"y":56.915},{"x":1751400480377,"y":75.13},{"x":1751400420238,"y":70.097},{"x":1751400362884,"y":60.55},{"x":1751400302738,"y":59.28},{"x":1751400242569,"y":48.365},{"x":1751400182420,"y":52.91},{"x":1751400122275,"y":49.213},{"x":1751400062100,"y":49.798},{"x":1751400001976,"y":48.711},{"x":1751399941761,"y":47.957},{"x":1751399881623,"y":42.886},{"x":1751399821455,"y":42.177},{"x":1751399761310,"y":56.07},{"x":1751399701148,"y":53.541},{"x":1751399641006,"y":60.747},{"x":1751399580831,"y":60.68},{"x":1751399520690,"y":60.776},{"x":1751399460539,"y":57.038},{"x":1751399400449,"y":52.575},{"x":1751399340263,"y":58.824},{"x":1751399282942,"y":55.038},{"x":1751399222789,"y":52.317},{"x":1751399162654,"y":54.576},{"x":1751399102475,"y":48.93},{"x":1751399042325,"y":69.537},{"x":1751398982157,"y":67.967},{"x":1751398921985,"y":85.125},{"x":1751398861837,"y":71.085},{"x":1751398801669,"y":64.339},{"x":1751398741515,"y":52.909},{"x":1751398681358,"y":54.334},{"x":1751398621208,"y":53.663},{"x":1751398561046,"y":60.177},{"x":1751398500899,"y":44.758},{"x":1751398440733,"y":47.987},{"x":1751398380594,"y":42.066},{"x":1751398320429,"y":62.711},{"x":1751398260249,"y":65.805},{"x":1751398202985,"y":65.58},{"x":1751398142834,"y":64.093},{"x":1751398082684,"y":64.41},{"x":1751398022534,"y":52.418},{"x":1751397962386,"y":49.033},{"x":1751397902249,"y":49.84},{"x":1751397842082,"y":47.557},{"x":1751397781908,"y":44.462},{"x":1751397721762,"y":42.545},{"x":1751397661615,"y":65.032},{"x":1751397601471,"y":61.459},{"x":1751397541331,"y":64.643},{"x":1751397481166,"y":68.573},{"x":1751397420972,"y":60.784},{"x":1751397360820,"y":56.101},{"x":1751397300683,"y":53.904},{"x":1751397240511,"y":57.503},{"x":1751397180316,"y":52.456},{"x":1751397120210,"y":45.707},{"x":1751397062900,"y":49.935},{"x":1751397002755,"y":53.505},{"x":1751396942599,"y":62.958},{"x":1751396882416,"y":72.106},{"x":1751396822264,"y":74.103},{"x":1751396762110,"y":62.99},{"x":1751396701954,"y":72.51},{"x":1751396641814,"y":60.742},{"x":1751396581674,"y":70.517},{"x":1751396521517,"y":53.132},{"x":1751396461366,"y":52.798},{"x":1751396401454,"y":54.402},{"x":1751396341027,"y":54.55},{"x":1751396280850,"y":46.838},{"x":1751396220698,"y":46.855},{"x":1751396160542,"y":46.638},{"x":1751396100424,"y":66.283},{"x":1751396040259,"y":65.063},{"x":1751395982911,"y":70.682},{"x":1751395922740,"y":64.49},{"x":1751395862594,"y":64.007},{"x":1751395802436,"y":56.7},{"x":1751395742280,"y":54.332},{"x":1751395682107,"y":51.71},{"x":1751395621946,"y":49.515},{"x":1751395561800,"y":57.791},{"x":1751395501643,"y":63.681},{"x":1751395441492,"y":47.887},{"x":1751395381337,"y":44.579},{"x":1751395321186,"y":56.15},{"x":1751395261029,"y":53.734},{"x":1751395200917,"y":45.555},{"x":1751395140686,"y":61.025},{"x":1751395080552,"y":61.176},{"x":1751395020416,"y":54.968},{"x":1751394960255,"y":57.749},{"x":1751394902968,"y":71.207},{"x":1751394842821,"y":60.411},{"x":1751394782667,"y":51.748},{"x":1751394722527,"y":53.824},{"x":1751394662395,"y":51.455},{"x":1751394602234,"y":53.849},{"x":1751394542046,"y":38.84},{"x":1751394481878,"y":44.52},{"x":1751394421727,"y":35.661},{"x":1751394361577,"y":46.752},{"x":1751394301420,"y":56.54},{"x":1751394241267,"y":67.086},{"x":1751394181142,"y":65.542},{"x":1751394120950,"y":59.074},{"x":1751394060786,"y":53.159},{"x":1751394000662,"y":47.114},{"x":1751393940449,"y":50.342},{"x":1751393880269,"y":52.61},{"x":1751393822927,"y":47.745},{"x":1751393762772,"y":45.496},{"x":1751393702625,"y":52.774},{"x":1751393642477,"y":40.394},{"x":1751393582333,"y":36.444},{"x":1751393522182,"y":47.119},{"x":1751393462021,"y":44.645},{"x":1751393401862,"y":52.263},{"x":1751393341715,"y":57.167},{"x":1751393281584,"y":55.422},{"x":1751393221410,"y":66.057},{"x":1751393161269,"y":72.469},{"x":1751393101123,"y":60.148},{"x":1751393040934,"y":58.901},{"x":1751392980773,"y":57.303},{"x":1751392920630,"y":73.921},{"x":1751392860475,"y":50.913},{"x":1751392800271,"y":52.842},{"x":1751392742980,"y":45.082},{"x":1751392682771,"y":39.929},{"x":1751392622624,"y":52.244},{"x":1751392562479,"y":52.372},{"x":1751392502327,"y":50.789},{"x":1751392442159,"y":55.806},{"x":1751392381982,"y":49.909},{"x":1751392321824,"y":39.476},{"x":1751392261670,"y":40.607},{"x":1751392201527,"y":49.098},{"x":1751392141377,"y":53.512},{"x":1751392081241,"y":57.071},{"x":1751392021081,"y":40.345},{"x":1751391960927,"y":29.561},{"x":1751391900840,"y":28.621},{"x":1751391840608,"y":27.989},{"x":1751391780458,"y":47.675},{"x":1751391720234,"y":53.393},{"x":1751391662966,"y":53.284},{"x":1751391602808,"y":59.048},{"x":1751391542639,"y":63.584},{"x":1751391482481,"y":42.264},{"x":1751391422327,"y":42.706},{"x":1751391362171,"y":43.63},{"x":1751391302017,"y":47.518},{"x":1751391241851,"y":45.148},{"x":1751391181688,"y":29.38},{"x":1751391121540,"y":27.11},{"x":1751391061382,"y":25.854},{"x":1751391001247,"y":27.036},{"x":1751390941078,"y":47.973},{"x":1751390880900,"y":48.635},{"x":1751390820746,"y":53.176},{"x":1751390760634,"y":50.988},{"x":1751390700473,"y":53.829},{"x":1751390640335,"y":40.723},{"x":1751390580086,"y":44.916},{"x":1751390522887,"y":35.961},{"x":1751390462733,"y":36.542},{"x":1751390402582,"y":21.482},{"x":1751390342443,"y":21.937},{"x":1751390282261,"y":26.893},{"x":1751390222087,"y":29.75},{"x":1751390161933,"y":44.127},{"x":1751390101836,"y":52.908},{"x":1751390041640,"y":52.447},{"x":1751389981489,"y":51.568},{"x":1751389921340,"y":55.915},{"x":1751389861197,"y":39.919},{"x":1751389801037,"y":41.607},{"x":1751389740877,"y":37.515},{"x":1751389680719,"y":47.85},{"x":1751389620594,"y":34.639},{"x":1751389560495,"y":38.228},{"x":1751389500294,"y":31.337},{"x":1751389442991,"y":27.52},{"x":1751389382820,"y":33.424},{"x":1751389322654,"y":34.677},{"x":1751389262507,"y":50.076},{"x":1751389202387,"y":63.76},{"x":1751389142212,"y":70.718},{"x":1751389082043,"y":66.17},{"x":1751389021870,"y":57.178},{"x":1751388961717,"y":41.163},{"x":1751388901574,"y":45.277},{"x":1751388841414,"y":47.737},{"x":1751388781274,"y":59.068},{"x":1751388721118,"y":51.167},{"x":1751388660945,"y":40.082},{"x":1751388600808,"y":47.52},{"x":1751388540649,"y":40.124},{"x":1751388480519,"y":55.481},{"x":1751388420386,"y":62.097},{"x":1751388360228,"y":54.56},{"x":1751388302895,"y":49.895},{"x":1751388242736,"y":32.905},{"x":1751388182586,"y":35.739},{"x":1751388122432,"y":51.879},{"x":1751388062289,"y":71.474},{"x":1751388002134,"y":71.554},{"x":1751387941960,"y":59.116},{"x":1751387881809,"y":45.249},{"x":1751387821660,"y":56.624},{"x":1751387761504,"y":44.071},{"x":1751387701358,"y":53.956},{"x":1751387641196,"y":36.238},{"x":1751387581033,"y":57.961},{"x":1751387520877,"y":58.42},{"x":1751387460726,"y":32.91},{"x":1751387400659,"y":29.709},{"x":1751387340477,"y":42.438},{"x":1751387280308,"y":41.349},{"x":1751387223003,"y":24.91},{"x":1751387162882,"y":33.009},{"x":1751387102702,"y":24.691},{"x":1751387042557,"y":35.897},{"x":1751386982415,"y":38.187},{"x":1751386922275,"y":65.434},{"x":1751386862122,"y":55.086},{"x":1751386801961,"y":53.831},{"x":1751386741807,"y":51.886},{"x":1751386681652,"y":50.599},{"x":1751386621457,"y":53.036},{"x":1751386561298,"y":33.695},{"x":1751386501120,"y":31.193},{"x":1751386440939,"y":33.041},{"x":1751386380791,"y":31.068},{"x":1751386320638,"y":34.676},{"x":1751386260539,"y":30.694},{"x":1751386200390,"y":31.793},{"x":1751386143016,"y":29.903},{"x":1751386082859,"y":20.478},{"x":1751386022716,"y":20.237},{"x":1751385962566,"y":20.666},{"x":1751385902406,"y":17.591},{"x":1751385842261,"y":26.692},{"x":1751385782108,"y":38.027},{"x":1751385721942,"y":41.338},{"x":1751385661795,"y":38.118},{"x":1751385601674,"y":44.813},{"x":1751385541480,"y":35.493},{"x":1751385481338,"y":39.538},{"x":1751385421143,"y":44.481},{"x":1751385360986,"y":31.607},{"x":1751385300848,"y":39.635},{"x":1751385240675,"y":37.71},{"x":1751385180577,"y":29.477},{"x":1751385120387,"y":23.271},{"x":1751385060217,"y":23.238},{"x":1751385002963,"y":26.348},{"x":1751384942807,"y":41.033},{"x":1751384882656,"y":49.063},{"x":1751384822512,"y":56.463},{"x":1751384762370,"y":49.87},{"x":1751384702188,"y":62.294},{"x":1751384642031,"y":38.579},{"x":1751384581880,"y":45.959},{"x":1751384521728,"y":37.037},{"x":1751384461576,"y":52.033},{"x":1751384401431,"y":50.361},{"x":1751384341251,"y":39.484},{"x":1751384281090,"y":25.436},{"x":1751384220918,"y":22.123},{"x":1751384160766,"y":30.371},{"x":1751384100635,"y":64.177},{"x":1751384040453,"y":47.559},{"x":1751383980355,"y":46.105},{"x":1751383923019,"y":37.113},{"x":1751383862854,"y":39.217},{"x":1751383802704,"y":27.382},{"x":1751383742547,"y":48.596},{"x":1751383682393,"y":36.814},{"x":1751383622244,"y":41.97},{"x":1751383562087,"y":48.762},{"x":1751383501908,"y":21.934},{"x":1751383441744,"y":35.004},{"x":1751383381585,"y":18.965},{"x":1751383321433,"y":37.595},{"x":1751383261285,"y":40.789},{"x":1751383201127,"y":39.135},{"x":1751383140977,"y":48.856},{"x":1751383080722,"y":41.596},{"x":1751383020586,"y":36.627},{"x":1751382960451,"y":22.865},{"x":1751382900257,"y":44.047},{"x":1751382842922,"y":31.498},{"x":1751382782744,"y":34.625},{"x":1751382722590,"y":32.593},{"x":1751382662412,"y":27.073},{"x":1751382602276,"y":25.927},{"x":1751382542114,"y":16.796},{"x":1751382481961,"y":33.457},{"x":1751382421798,"y":60.016},{"x":1751382361644,"y":40.226},{"x":1751382301491,"y":39.008},{"x":1751382241345,"y":44.819},{"x":1751382181186,"y":43.127},{"x":1751382121040,"y":29.558},{"x":1751382060889,"y":26.361},{"x":1751382000860,"y":30.771},{"x":1751381940515,"y":32.554},{"x":1751381880369,"y":32.824},{"x":1751381820232,"y":16.369},{"x":1751381762953,"y":31.51},{"x":1751381702799,"y":21.284},{"x":1751381642673,"y":21.401},{"x":1751381582498,"y":40.185},{"x":1751381522354,"y":40.858},{"x":1751381462211,"y":39.797},{"x":1751381402035,"y":40.194},{"x":1751381341882,"y":38.979},{"x":1751381281737,"y":32.263},{"x":1751381221587,"y":30.092},{"x":1751381161428,"y":14.378},{"x":1751381101297,"y":23.471},{"x":1751381041127,"y":28.891},{"x":1751380980964,"y":25.489},{"x":1751380920818,"y":15.261},{"x":1751380860674,"y":23.004},{"x":1751380800561,"y":20.597},{"x":1751380740388,"y":42.107},{"x":1751380680064,"y":42.396},{"x":1751380622888,"y":53.312},{"x":1751380562726,"y":39.031},{"x":1751380502583,"y":39.682},{"x":1751380442444,"y":33.214},{"x":1751380382280,"y":25.668},{"x":1751380322129,"y":34.879},{"x":1751380261962,"y":29.399},{"x":1751380201817,"y":26.322},{"x":1751380141646,"y":21.164},{"x":1751380081492,"y":24.079},{"x":1751380021366,"y":24.621},{"x":1751379961176,"y":42.121},{"x":1751379901014,"y":43.907},{"x":1751379840867,"y":49.648},{"x":1751379780706,"y":44.31},{"x":1751379720568,"y":50.787},{"x":1751379660448,"y":36.674},{"x":1751379600319,"y":25.387},{"x":1751379540104,"y":30.143},{"x":1751379482857,"y":32.428},{"x":1751379422655,"y":34.748},{"x":1751379362491,"y":8.125},{"x":1751379302335,"y":25.801},{"x":1751379242188,"y":8.42},{"x":1751379182032,"y":37.62},{"x":1751379121878,"y":35.272},{"x":1751379061708,"y":38.026},{"x":1751379001557,"y":36.633},{"x":1751378941413,"y":39.878},{"x":1751378881238,"y":30.31},{"x":1751378821066,"y":41.601},{"x":1751378760918,"y":27.945},{"x":1751378700754,"y":24.971},{"x":1751378640660,"y":23.54},{"x":1751378580467,"y":12.93},{"x":1751378520340,"y":9.788},{"x":1751378460158,"y":1.0},{"x":1751378402932,"y":35.874},{"x":1751378342708,"y":38.374},{"x":1751378282565,"y":37.87},{"x":1751378222413,"y":34.189},{"x":1751378162256,"y":37.372},{"x":1751378102101,"y":30.963},{"x":1751378041937,"y":29.097},{"x":1751377981809,"y":34.452},{"x":1751377921644,"y":21.039},{"x":1751377861491,"y":17.205},{"x":1751377801344,"y":20.513},{"x":1751377741188,"y":14.943},{"x":1751377681028,"y":19.491},{"x":1751377620876,"y":31.792},{"x":1751377560731,"y":24.431},{"x":1751377500692,"y":34.628},{"x":1751377440413,"y":41.893},{"x":1751377380245,"y":40.697},{"x":1751377322922,"y":27.865},{"x":1751377262779,"y":28.042},{"x":1751377202629,"y":29.249},{"x":1751377142484,"y":27.966},{"x":1751377082335,"y":17.438},{"x":1751377022176,"y":11.39},{"x":1751376961994,"y":14.991},{"x":1751376901848,"y":43.228},{"x":1751376841702,"y":47.154},{"x":1751376781533,"y":34.538},{"x":1751376721388,"y":29.705},{"x":1751376661223,"y":32.239},{"x":1751376601084,"y":25.366},{"x":1751376540872,"y":26.211},{"x":1751376480713,"y":35.991},{"x":1751376420579,"y":33.092},{"x":1751376360394,"y":33.861},{"x":1751376300263,"y":20.613},{"x":1751376242965,"y":19.823},{"x":1751376182808,"y":27.423},{"x":1751376122656,"y":17.589},{"x":1751376062515,"y":15.271},{"x":1751376002354,"y":31.598},{"x":1751375942219,"y":30.336},{"x":1751375882024,"y":41.955},{"x":1751375821827,"y":30.709},{"x":1751375761678,"y":32.935},{"x":1751375701524,"y":20.398},{"x":1751375641366,"y":21.986},{"x":1751375581216,"y":17.139},{"x":1751375521056,"y":22.774},{"x":1751375460917,"y":26.311},{"x":1751375400764,"y":21.955},{"x":1751375340552,"y":32.18},{"x":1751375280542,"y":19.367},{"x":1751375220190,"y":27.625},{"x":1751375162932,"y":30.771},{"x":1751375102777,"y":44.347},{"x":1751375042632,"y":51.45},{"x":1751374982458,"y":44.836},{"x":1751374922282,"y":39.494},{"x":1751374862131,"y":42.657},{"x":1751374801973,"y":40.667},{"x":1751374741796,"y":23.619},{"x":1751374681647,"y":16.712},{"x":1751374621472,"y":18.958},{"x":1751374561313,"y":14.583},{"x":1751374501169,"y":27.842},{"x":1751374440995,"y":17.643},{"x":1751374380843,"y":7.217},{"x":1751374320695,"y":24.123},{"x":1751374260546,"y":29.804},{"x":1751374200433,"y":24.647},{"x":1751374140298,"y":32.574},{"x":1751374082913,"y":33.535},{"x":1751374022756,"y":40.961},{"x":1751373962579,"y":28.845},{"x":1751373902430,"y":19.152},{"x":1751373842278,"y":26.312},{"x":1751373782132,"y":25.023},{"x":1751373721978,"y":25.27},{"x":1751373661823,"y":24.254},{"x":1751373601670,"y":36.408},{"x":1751373541503,"y":30.507},{"x":1751373481353,"y":28.724},{"x":1751373421196,"y":29.598},{"x":1751373361015,"y":18.951},{"x":1751373300869,"y":22.219},{"x":1751373240710,"y":18.566},{"x":1751373180546,"y":41.327},{"x":1751373120551,"y":35.169},{"x":1751373063031,"y":42.099},{"x":1751373002901,"y":37.635},{"x":1751372942727,"y":62.795},{"x":1751372882570,"y":36.826},{"x":1751372822420,"y":38.703},{"x":1751372762281,"y":34.153},{"x":1751372702116,"y":30.927},{"x":1751372641961,"y":27.324},{"x":1751372581808,"y":28.76},{"x":1751372521671,"y":23.566},{"x":1751372461498,"y":25.049},{"x":1751372401333,"y":27.321},{"x":1751372341173,"y":27.35},{"x":1751372280969,"y":45.094},{"x":1751372220784,"y":45.331},{"x":1751372160616,"y":51.89},{"x":1751372100575,"y":40.77},{"x":1751372040348,"y":48.354},{"x":1751371982953,"y":38.045},{"x":1751371922810,"y":29.623},{"x":1751371862653,"y":32.931},{"x":1751371802501,"y":27.94},{"x":1751371742352,"y":28.415},{"x":1751371682199,"y":37.521},{"x":1751371622044,"y":23.237},{"x":1751371561866,"y":35.69},{"x":1751371501723,"y":28.51},{"x":1751371441562,"y":31.295},{"x":1751371381405,"y":36.893},{"x":1751371321246,"y":56.184},{"x":1751371261081,"y":39.577},{"x":1751371201030,"y":55.067},{"x":1751371140616,"y":43.403},{"x":1751371080510,"y":46.169},{"x":1751371020394,"y":37.824},{"x":1751370962982,"y":34.354},{"x":1751370902880,"y":36.394},{"x":1751370842678,"y":33.843},{"x":1751370782504,"y":31.164},{"x":1751370722336,"y":27.818},{"x":1751370662160,"y":28.444},{"x":1751370601997,"y":41.091},{"x":1751370541850,"y":16.553},{"x":1751370481604,"y":24.442},{"x":1751370421457,"y":29.776},{"x":1751370361313,"y":20.563},{"x":1751370301169,"y":47.119},{"x":1751370240944,"y":36.651},{"x":1751370180795,"y":48.34},{"x":1751370120645,"y":54.232},{"x":1751370060523,"y":49.072},{"x":1751370000390,"y":33.97},{"x":1751369940122,"y":43.612},{"x":1751369882883,"y":32.49},{"x":1751369822740,"y":36.156},{"x":1751369762573,"y":42.183},{"x":1751369702426,"y":42.808},{"x":1751369642275,"y":35.47},{"x":1751369582085,"y":15.997},{"x":1751369521930,"y":20.154},{"x":1751369461775,"y":16.484},{"x":1751369401636,"y":35.95},{"x":1751369341462,"y":41.988},{"x":1751369281308,"y":42.932},{"x":1751369221154,"y":42.058},{"x":1751369160991,"y":58.313},{"x":1751369100846,"y":42.385},{"x":1751369040682,"y":36.732},{"x":1751368980527,"y":53.397},{"x":1751368920426,"y":38.014},{"x":1751368860291,"y":50.149},{"x":1751368802944,"y":39.947},{"x":1751368742809,"y":38.544},{"x":1751368682647,"y":44.427},{"x":1751368622426,"y":30.949},{"x":1751368562271,"y":27.217},{"x":1751368502113,"y":42.245},{"x":1751368441949,"y":21.958},{"x":1751368381798,"y":27.943},{"x":1751368321637,"y":39.534},{"x":1751368261478,"y":27.343},{"x":1751368201345,"y":42.353},{"x":1751368141167,"y":45.845},{"x":1751368081000,"y":41.889},{"x":1751368020853,"y":33.212},{"x":1751367960702,"y":24.826},{"x":1751367900635,"y":30.387},{"x":1751367840420,"y":25.673},{"x":1751367780332,"y":29.114},{"x":1751367722974,"y":27.882},{"x":1751367662810,"y":26.141},{"x":1751367602652,"y":30.51},{"x":1751367542467,"y":32.018},{"x":1751367482320,"y":27.09},{"x":1751367422104,"y":28.997},{"x":1751367361944,"y":20.514},{"x":1751367301793,"y":15.916},{"x":1751367241643,"y":21.973},{"x":1751367181497,"y":22.632},{"x":1751367121383,"y":36.72},{"x":1751367061194,"y":38.557},{"x":1751367001035,"y":47.304},{"x":1751366940890,"y":41.123},{"x":1751366880725,"y":38.999},{"x":1751366820570,"y":31.738},{"x":1751366760393,"y":29.944},{"x":1751366700682,"y":38.271},{"x":1751366642964,"y":49.262},{"x":1751366582737,"y":38.01},{"x":1751366521180,"y":12.976},{"x":1751366461004,"y":7.563},{"x":1751366400871,"y":22.298},{"x":1751366340684,"y":8.591},{"x":1751366280575,"y":21.911},{"x":1751366220440,"y":28.706},{"x":1751366160234,"y":44.912},{"x":1751366102912,"y":46.286},{"x":1751366042748,"y":28.03},{"x":1751365982584,"y":25.565},{"x":1751365922434,"y":28.655},{"x":1751365862275,"y":23.279},{"x":1751365802130,"y":23.608},{"x":1751365741960,"y":29.35},{"x":1751365681799,"y":20.672},{"x":1751365621651,"y":25.808},{"x":1751365561487,"y":21.35},{"x":1751365501328,"y":24.498},{"x":1751365441177,"y":24.962},{"x":1751365381001,"y":26.759},{"x":1751365320865,"y":23.719},{"x":1751365260702,"y":9.761},{"x":1751365200638,"y":10.85},{"x":1751365140359,"y":23.611},{"x":1751365080255,"y":21.906},{"x":1751365022927,"y":35.177},{"x":1751364962723,"y":40.509},{"x":1751364902577,"y":38.693},{"x":1751364842540,"y":24.541},{"x":1751364782288,"y":20.643},{"x":1751364722139,"y":44.413},{"x":1751364661974,"y":41.022},{"x":1751364601819,"y":29.959},{"x":1751364541652,"y":21.368},{"x":1751364481507,"y":32.842},{"x":1751364421346,"y":20.834},{"x":1751364361204,"y":18.314},{"x":1751364301019,"y":16.847},{"x":1751364240854,"y":21.188},{"x":1751364180698,"y":54.714},{"x":1751364120564,"y":44.475},{"x":1751364060397,"y":41.959},{"x":1751364000214,"y":51.174},{"x":1751363942904,"y":46.189},{"x":1751363882751,"y":40.088},{"x":1751363822591,"y":44.969},{"x":1751363762437,"y":35.212},{"x":1751363702279,"y":31.963},{"x":1751363642118,"y":33.206},{"x":1751363581958,"y":30.583},{"x":1751363521810,"y":30.338},{"x":1751363461654,"y":30.782},{"x":1751363401515,"y":43.872},{"x":1751363341329,"y":26.301},{"x":1751363281183,"y":33.678},{"x":1751363221011,"y":34.969},{"x":1751363160808,"y":10.497},{"x":1751363100774,"y":21.64},{"x":1751363040515,"y":23.995},{"x":1751362980275,"y":28.327},{"x":1751362920508,"y":42.498},{"x":1751362860280,"y":32.629},{"x":1751362802934,"y":45.969},{"x":1751362742785,"y":52.138},{"x":1751362682614,"y":46.437},{"x":1751362622466,"y":29.189},{"x":1751362562322,"y":39.193},{"x":1751362502157,"y":48.922},{"x":1751362441983,"y":56.404},{"x":1751362381817,"y":54.167},{"x":1751362321651,"y":41.459},{"x":1751362261496,"y":41.305},{"x":1751362201356,"y":48.876},{"x":1751362141194,"y":37.667},{"x":1751362081012,"y":41.174},{"x":1751362020860,"y":36.102},{"x":1751361960719,"y":37.72},{"x":1751361900568,"y":29.243},{"x":1751361840411,"y":23.549},{"x":1751361780293,"y":25.871},{"x":1751361722914,"y":29.562},{"x":1751361662772,"y":32.101},{"x":1751361602621,"y":38.622},{"x":1751361542486,"y":47.549},{"x":1751361482309,"y":45.197},{"x":1751361422106,"y":51.851},{"x":1751361361942,"y":47.099},{"x":1751361301783,"y":42.589},{"x":1751361241630,"y":45.345},{"x":1751361181478,"y":36.35},{"x":1751361121335,"y":34.055},{"x":1751361061179,"y":33.219},{"x":1751361001018,"y":36.907},{"x":1751360940845,"y":27.018},{"x":1751360880685,"y":35.652},{"x":1751360820529,"y":22.311},{"x":1751360760337,"y":21.875},{"x":1751360700139,"y":31.437},{"x":1751360642885,"y":43.321},{"x":1751360582734,"y":44.78},{"x":1751360522579,"y":45.593},{"x":1751360462435,"y":51.167},{"x":1751360402290,"y":49.814},{"x":1751360342086,"y":41.729},{"x":1751360281922,"y":42.768},{"x":1751360221772,"y":58.334},{"x":1751360161620,"y":56.116},{"x":1751360101474,"y":48.362},{"x":1751360041320,"y":38.725},{"x":1751359981158,"y":29.113},{"x":1751359920974,"y":20.151},{"x":1751359860788,"y":18.24},{"x":1751359800688,"y":29.692},{"x":1751359740506,"y":34.702},{"x":1751359680352,"y":25.85},{"x":1751359620149,"y":34.837},{"x":1751359562903,"y":37.524},{"x":1751359502748,"y":26.39},{"x":1751359442564,"y":22.387},{"x":1751359382413,"y":31.816},{"x":1751359322256,"y":31.817},{"x":1751359262116,"y":29.283},{"x":1751359201953,"y":30.035},{"x":1751359141807,"y":40.522},{"x":1751359081656,"y":32.193},{"x":1751359021502,"y":31.677},{"x":1751358961359,"y":46.475},{"x":1751358901214,"y":34.079},{"x":1751358841041,"y":28.069},{"x":1751358780884,"y":37.89},{"x":1751358720738,"y":22.275},{"x":1751358660626,"y":25.174},{"x":1751358600556,"y":29.253},{"x":1751358540354,"y":32.382},{"x":1751358482985,"y":49.025},{"x":1751358422804,"y":32.483},{"x":1751358362662,"y":42.4},{"x":1751358302509,"y":44.428},{"x":1751358242361,"y":39.577},{"x":1751358182216,"y":46.631},{"x":1751358122046,"y":36.059},{"x":1751358061899,"y":29.285},{"x":1751358001743,"y":31.344},{"x":1751357941607,"y":35.937},{"x":1751357881407,"y":34.377},{"x":1751357821224,"y":36.54},{"x":1751357761054,"y":28.677},{"x":1751357700886,"y":27.105},{"x":1751357640751,"y":29.653},{"x":1751357580579,"y":18.452},{"x":1751357520436,"y":27.474},{"x":1751357460274,"y":24.257},{"x":1751357402980,"y":30.778},{"x":1751357342825,"y":42.617},{"x":1751357282663,"y":52.681},{"x":1751357222499,"y":57.187},{"x":1751357162370,"y":57.957},{"x":1751357102216,"y":49.401},{"x":1751357042064,"y":54.999},{"x":1751356981881,"y":27.154},{"x":1751356921718,"y":23.737},{"x":1751356861576,"y":33.483},{"x":1751356801498,"y":26.712},{"x":1751356741229,"y":36.18},{"x":1751356681062,"y":43.224},{"x":1751356620925,"y":27.495},{"x":1751356560736,"y":37.484},{"x":1751356500627,"y":30.986},{"x":1751356440413,"y":33.916},{"x":1751356380276,"y":38.554},{"x":1751356322972,"y":33.96},{"x":1751356262830,"y":36.094},{"x":1751356202680,"y":25.274},{"x":1751356142525,"y":23.196},{"x":1751356082376,"y":29.847},{"x":1751356022209,"y":31.197},{"x":1751355962050,"y":45.199},{"x":1751355901888,"y":31.861},{"x":1751355841733,"y":39.873},{"x":1751355781587,"y":40.642},{"x":1751355721430,"y":49.891},{"x":1751355661280,"y":45.679},{"x":1751355601105,"y":45.767},{"x":1751355540923,"y":47.907},{"x":1751355480748,"y":42.343},{"x":1751355420616,"y":43.231},{"x":1751355360449,"y":38.824},{"x":1751355300327,"y":40.562},{"x":1751355242993,"y":45.03},{"x":1751355182846,"y":40.386},{"x":1751355122696,"y":35.844},{"x":1751355062538,"y":35.107},{"x":1751355002387,"y":37.047},{"x":1751354942239,"y":38.203},{"x":1751354882081,"y":45.822},{"x":1751354821919,"y":38.723},{"x":1751354761767,"y":49.284},{"x":1751354701621,"y":36.555},{"x":1751354641468,"y":42.639},{"x":1751354581311,"y":45.617},{"x":1751354521164,"y":49.462},{"x":1751354460983,"y":28.695},{"x":1751354400845,"y":24.349},{"x":1751354340681,"y":31.993},{"x":1751354280512,"y":43.068},{"x":1751354220316,"y":44.722},{"x":1751354163025,"y":40.372},{"x":1751354102870,"y":56.125},{"x":1751354042702,"y":44.513},{"x":1751353982550,"y":35.423},{"x":1751353922401,"y":32.324},{"x":1751353862237,"y":43.487},{"x":1751353802080,"y":36.726},{"x":1751353741935,"y":43.146},{"x":1751353681776,"y":44.538},{"x":1751353621617,"y":40.539},{"x":1751353561483,"y":42.795},{"x":1751353501312,"y":47.601},{"x":1751353441150,"y":43.082},{"x":1751353380990,"y":42.628},{"x":1751353320823,"y":44.606},{"x":1751353260668,"y":54.267},{"x":1751353200484,"y":28.19},{"x":1751353140238,"y":26.362},{"x":1751353082941,"y":37.056},{"x":1751353022785,"y":42.207},{"x":1751352962633,"y":38.914},{"x":1751352902478,"y":39.397},{"x":1751352842324,"y":44.726},{"x":1751352782188,"y":42.099},{"x":1751352721998,"y":39.057},{"x":1751352661831,"y":41.785},{"x":1751352601689,"y":43.178},{"x":1751352541529,"y":31.416},{"x":1751352481384,"y":33.846},{"x":1751352421223,"y":31.588},{"x":1751352361047,"y":43.107},{"x":1751352300913,"y":42.509},{"x":1751352240599,"y":44.65},{"x":1751352180471,"y":31.419},{"x":1751352120300,"y":31.403},{"x":1751352060149,"y":41.116},{"x":1751352002930,"y":19.899},{"x":1751351942767,"y":23.324},{"x":1751351882613,"y":23.528},{"x":1751351822456,"y":22.797},{"x":1751351762307,"y":26.445},{"x":1751351702161,"y":19.119},{"x":1751351641978,"y":19.359},{"x":1751351581822,"y":18.989},{"x":1751351521654,"y":17.809},{"x":1751351461513,"y":21.493},{"x":1751351401377,"y":34.649},{"x":1751351341196,"y":54.986},{"x":1751351281030,"y":39.497},{"x":1751351220859,"y":45.838},{"x":1751351160705,"y":56.141},{"x":1751351100546,"y":31.26},{"x":1751351040400,"y":41.316},{"x":1751350980192,"y":35.414},{"x":1751350922876,"y":56.187},{"x":1751350862725,"y":43.719},{"x":1751350802585,"y":41.955},{"x":1751350742437,"y":39.434},{"x":1751350682232,"y":45.544},{"x":1751350622024,"y":33.67},{"x":1751350561862,"y":30.319},{"x":1751350501710,"y":35.11},{"x":1751350441560,"y":49.917},{"x":1751350381404,"y":34.661},{"x":1751350321257,"y":38.974},{"x":1751350261099,"y":39.324},{"x":1751350200930,"y":44.606},{"x":1751350140767,"y":41.924},{"x":1751350080633,"y":26.355},{"x":1751350020502,"y":26.134},{"x":1751349960439,"y":29.236},{"x":1751349900190,"y":30.699},{"x":1751349842896,"y":36.881},{"x":1751349782752,"y":49.045},{"x":1751349722605,"y":37.2},{"x":1751349662449,"y":36.492},{"x":1751349602351,"y":32.938},{"x":1751349542131,"y":25.561},{"x":1751349481974,"y":24.494},{"x":1751349421830,"y":24.69},{"x":1751349361678,"y":37.32},{"x":1751349301530,"y":36.932},{"x":1751349241370,"y":36.034},{"x":1751349181200,"y":33.691},{"x":1751349121027,"y":40.259},{"x":1751349060881,"y":26.115},{"x":1751349000727,"y":25.568},{"x":1751348940563,"y":24.132},{"x":1751348880652,"y":22.829},{"x":1751348820248,"y":21.413},{"x":1751348762969,"y":17.734},{"x":1751348702828,"y":27.668},{"x":1751348642662,"y":33.261},{"x":1751348582516,"y":40.077},{"x":1751348522359,"y":39.971},{"x":1751348462218,"y":38.804},{"x":1751348402074,"y":36.858},{"x":1751348341912,"y":32.011},{"x":1751348281761,"y":19.198},{"x":1751348221614,"y":19.185},{"x":1751348161466,"y":32.347},{"x":1751348101302,"y":29.337},{"x":1751348041147,"y":34.593},{"x":1751347980962,"y":35.66},{"x":1751347920810,"y":36.14},{"x":1751347860667,"y":27.766},{"x":1751347800548,"y":25.302},{"x":1751347740346,"y":33.772},{"x":1751347680281,"y":36.832},{"x":1751347622917,"y":38.431},{"x":1751347562776,"y":30.728},{"x":1751347502626,"y":29.3},{"x":1751347442496,"y":29.038},{"x":1751347382315,"y":29.773},{"x":1751347322169,"y":33.159},{"x":1751347261996,"y":21.561},{"x":1751347201841,"y":22.098},{"x":1751347141670,"y":25.624},{"x":1751347081431,"y":24.987},{"x":1751347021238,"y":22.69},{"x":1751346961079,"y":26.724},{"x":1751346900914,"y":21.485},{"x":1751346840753,"y":21.781},{"x":1751346780607,"y":21.822},{"x":1751346720491,"y":23.332},{"x":1751346660256,"y":31.308},{"x":1751346602993,"y":21.547},{"x":1751346542827,"y":32.58},{"x":1751346482678,"y":40.918},{"x":1751346422525,"y":41.141},{"x":1751346362377,"y":46.678},{"x":1751346302231,"y":44.602},{"x":1751346242067,"y":34.734},{"x":1751346181897,"y":26.896},{"x":1751346121743,"y":24.728},{"x":1751346061595,"y":33.681},{"x":1751346001671,"y":33.607},{"x":1751345941185,"y":35.975},{"x":1751345881030,"y":40.544},{"x":1751345820884,"y":42.939},{"x":1751345760738,"y":42.255},{"x":1751345700613,"y":41.539},{"x":1751345640415,"y":44.293},{"x":1751345580209,"y":50.066},{"x":1751345522950,"y":46.407},{"x":1751345462803,"y":46.416},{"x":1751345402636,"y":41.728},{"x":1751345342490,"y":25.675},{"x":1751345282333,"y":31.048},{"x":1751345222187,"y":24.814},{"x":1751345162025,"y":32.564},{"x":1751345101868,"y":33.766},{"x":1751345041702,"y":33.984},{"x":1751344981549,"y":34.521},{"x":1751344921383,"y":37.754},{"x":1751344861224,"y":30.757},{"x":1751344801067,"y":31.279},{"x":1751344740880,"y":30.498},{"x":1751344680722,"y":29.018},{"x":1751344620592,"y":26.828},{"x":1751344560459,"y":30.22},{"x":1751344500309,"y":27.515},{"x":1751344442978,"y":30.807},{"x":1751344382830,"y":26.262},{"x":1751344322665,"y":24.943},{"x":1751344262518,"y":27.402},{"x":1751344202355,"y":23.726},{"x":1751344142205,"y":23.609},{"x":1751344082043,"y":28.052},{"x":1751344021885,"y":28.915},{"x":1751343961731,"y":26.098},{"x":1751343901555,"y":28.522},{"x":1751343841401,"y":24.505},{"x":1751343781278,"y":25.937},{"x":1751343721079,"y":22.717},{"x":1751343660915,"y":25.881},{"x":1751343600792,"y":24.169},{"x":1751343540559,"y":24.04},{"x":1751343480398,"y":23.542},{"x":1751343423016,"y":28.309},{"x":1751343362860,"y":30.105},{"x":1751343302719,"y":31.379},{"x":1751343242576,"y":37.654},{"x":1751343182404,"y":30.414},{"x":1751343122253,"y":30.229},{"x":1751343062101,"y":28.886},{"x":1751343001932,"y":26.744},{"x":1751342941777,"y":25.902},{"x":1751342881626,"y":26.613},{"x":1751342821478,"y":24.108},{"x":1751342761310,"y":24.141},{"x":1751342701158,"y":23.57},{"x":1751342640996,"y":25.703},{"x":1751342580830,"y":29.609},{"x":1751342520671,"y":26.622},{"x":1751342460581,"y":25.291},{"x":1751342400438,"y":29.158},{"x":1751342342999,"y":26.937},{"x":1751342282854,"y":24.577},{"x":1751342222694,"y":31.232},{"x":1751342162531,"y":25.316},{"x":1751342102387,"y":26.984},{"x":1751342042238,"y":25.374},{"x":1751341982084,"y":28.896},{"x":1751341921908,"y":24.271},{"x":1751341861722,"y":24.331},{"x":1751341801505,"y":24.089},{"x":1751341741352,"y":40.136},{"x":1751341681204,"y":32.781},{"x":1751341621027,"y":41.23},{"x":1751341560873,"y":49.547},{"x":1751341500766,"y":38.928},{"x":1751341440552,"y":34.895},{"x":1751341380357,"y":34.162},{"x":1751341320125,"y":24.153},{"x":1751341262877,"y":26.982},{"x":1751341202727,"y":28.574},{"x":1751341142580,"y":23.73},{"x":1751341082429,"y":23.476},{"x":1751341022276,"y":25.271},{"x":1751340962110,"y":25.487},{"x":1751340901931,"y":26.734},{"x":1751340841794,"y":25.997},{"x":1751340781618,"y":26.221},{"x":1751340721467,"y":24.272},{"x":1751340661319,"y":23.091},{"x":1751340601168,"y":34.328},{"x":1751340540987,"y":34.881},{"x":1751340480771,"y":33.502},{"x":1751340420615,"y":32.414},{"x":1751340360478,"y":35.648},{"x":1751340300415,"y":27.963},{"x":1751340243003,"y":28.392},{"x":1751340182863,"y":35.163},{"x":1751340122707,"y":27.46},{"x":1751340062559,"y":37.747},{"x":1751340002401,"y":35.979},{"x":1751339942226,"y":32.557},{"x":1751339882046,"y":31.664},{"x":1751339821861,"y":23.027},{"x":1751339761696,"y":21.817},{"x":1751339701533,"y":26.018},{"x":1751339641376,"y":22.814},{"x":1751339581218,"y":26.722},{"x":1751339521033,"y":28.108},{"x":1751339460885,"y":24.631},{"x":1751339400736,"y":25.09},{"x":1751339340584,"y":24.636},{"x":1751339280391,"y":24.795},{"x":1751339223009,"y":28.557},{"x":1751339162837,"y":26.488},{"x":1751339100676,"y":24.863},{"x":1751339041604,"y":24.871},{"x":1751338981349,"y":24.416},{"x":1751338922858,"y":24.485},{"x":1751338862694,"y":34.319},{"x":1751338801469,"y":43.208},{"x":1751338741230,"y":44.65},{"x":1751338681077,"y":42.728},{"x":1751338620903,"y":44.216},{"x":1751338560755,"y":33.692},{"x":1751338500593,"y":28.752},{"x":1751338440530,"y":41.221},{"x":1751338380269,"y":35.075},{"x":1751338322944,"y":47.968},{"x":1751338262797,"y":46.959},{"x":1751338202631,"y":57.372},{"x":1751338142479,"y":57.874},{"x":1751338082306,"y":52.985},{"x":1751338022157,"y":53.358},{"x":1751337962010,"y":50.069},{"x":1751337901847,"y":45.517},{"x":1751337841690,"y":49.233},{"x":1751337781532,"y":44.118},{"x":1751337721380,"y":44.777},{"x":1751337661239,"y":47.059},{"x":1751337601075,"y":41.127},{"x":1751337540905,"y":40.942},{"x":1751337480747,"y":44.138},{"x":1751337420609,"y":36.573},{"x":1751337360471,"y":37.974},{"x":1751337300352,"y":40.452},{"x":1751337242985,"y":41.266},{"x":1751337182839,"y":39.166},{"x":1751337122687,"y":33.519},{"x":1751337062523,"y":34.14},{"x":1751337002383,"y":35.312},{"x":1751336942230,"y":29.747},{"x":1751336882082,"y":28.599},{"x":1751336821914,"y":31.022},{"x":1751336761781,"y":22.824},{"x":1751336701617,"y":21.751},{"x":1751336641465,"y":21.034},{"x":1751336581315,"y":29.968},{"x":1751336521165,"y":33.176},{"x":1751336460988,"y":34.183},{"x":1751336400852,"y":29.963},{"x":1751336340706,"y":29.9},{"x":1751336280575,"y":22.303},{"x":1751336220335,"y":23.79},{"x":1751336160173,"y":21.067},{"x":1751336102951,"y":21.496},{"x":1751336042754,"y":22.128},{"x":1751335982599,"y":23.964},{"x":1751335922452,"y":27.036},{"x":1751335862309,"y":23.875},{"x":1751335802161,"y":28.778},{"x":1751335741999,"y":24.498},{"x":1751335681854,"y":24.468},{"x":1751335621675,"y":22.888},{"x":1751335561533,"y":21.455},{"x":1751335501369,"y":30.107},{"x":1751335441210,"y":29.678},{"x":1751335381041,"y":32.667},{"x":1751335320886,"y":33.613},{"x":1751335260750,"y":36.695},{"x":1751335200756,"y":21.102},{"x":1751335140281,"y":24.982},{"x":1751335083017,"y":21.809},{"x":1751335022872,"y":23.237},{"x":1751334962690,"y":24.478},{"x":1751334902542,"y":22.173},{"x":1751334842369,"y":22.343},{"x":1751334782220,"y":24.128},{"x":1751334722061,"y":32.996},{"x":1751334661902,"y":30.065},{"x":1751334601756,"y":29.902},{"x":1751334541611,"y":31.328},{"x":1751334481456,"y":31.372},{"x":1751334421310,"y":21.87},{"x":1751334361160,"y":21.467},{"x":1751334300995,"y":21.635},{"x":1751334240833,"y":21.188},{"x":1751334180668,"y":22.333},{"x":1751334120521,"y":27.631},{"x":1751334060371,"y":28.875},{"x":1751334000247,"y":26.695},{"x":1751333942963,"y":22.723},{"x":1751333882813,"y":21.709},{"x":1751333822666,"y":21.583},{"x":1751333762520,"y":22.739},{"x":1751333702355,"y":28.357},{"x":1751333642204,"y":22.754},{"x":1751333582045,"y":21.797},{"x":1751333521880,"y":22.088},{"x":1751333461733,"y":22.947},{"x":1751333401589,"y":25.313},{"x":1751333341427,"y":26.086},{"x":1751333281285,"y":25.898},{"x":1751333221112,"y":22.256},{"x":1751333160940,"y":21.003},{"x":1751333100793,"y":21.162},{"x":1751333040640,"y":24.023},{"x":1751332980426,"y":23.083},{"x":1751332920372,"y":21.174},{"x":1751332862995,"y":21.319},{"x":1751332802849,"y":20.769},{"x":1751332742704,"y":20.471},{"x":1751332682499,"y":23.524},{"x":1751332622368,"y":23.454},{"x":1751332562161,"y":23.01},{"x":1751332501987,"y":21.791},{"x":1751332441827,"y":22.113},{"x":1751332381669,"y":25.345},{"x":1751332321512,"y":22.05},{"x":1751332261361,"y":21.741},{"x":1751332201209,"y":20.608},{"x":1751332141045,"y":21.83},{"x":1751332080886,"y":21.432},{"x":1751332020716,"y":24.754},{"x":1751331960551,"y":20.663},{"x":1751331900446,"y":23.187},{"x":1751331840234,"y":20.928},{"x":1751331782976,"y":20.858},{"x":1751331722816,"y":25.2},{"x":1751331662667,"y":21.775},{"x":1751331602511,"y":21.998},{"x":1751331542359,"y":21.858},{"x":1751331482211,"y":21.987},{"x":1751331422057,"y":21.751},{"x":1751331361903,"y":28.199},{"x":1751331301763,"y":21.735},{"x":1751331241613,"y":22.881},{"x":1751331181461,"y":21.958},{"x":1751331121308,"y":29.705},{"x":1751331061151,"y":39.985},{"x":1751331000978,"y":42.023},{"x":1751330940823,"y":41.625},{"x":1751330880686,"y":41.06},{"x":1751330820538,"y":34.679},{"x":1751330760417,"y":24.553},{"x":1751330700430,"y":24.475},{"x":1751330643009,"y":20.773},{"x":1751330582847,"y":20.777},{"x":1751330522694,"y":22.893},{"x":1751330462552,"y":22.604},{"x":1751330402401,"y":22.799},{"x":1751330342249,"y":21.188},{"x":1751330282104,"y":23.127},{"x":1751330221976,"y":23.915},{"x":1751330161813,"y":24.297},{"x":1751330101658,"y":22.228},{"x":1751330041514,"y":31.534},{"x":1751329981367,"y":20.418},{"x":1751329921220,"y":23.466},{"x":1751329861016,"y":22.417},{"x":1751329800877,"y":29.19},{"x":1751329740686,"y":30.379},{"x":1751329680564,"y":30.603},{"x":1751329620394,"y":29.674},{"x":1751329560220,"y":31.434},{"x":1751329502914,"y":21.156},{"x":1751329442778,"y":22.405},{"x":1751329382625,"y":25.989},{"x":1751329322460,"y":24.869},{"x":1751329262322,"y":26.018},{"x":1751329202183,"y":22.344},{"x":1751329142018,"y":22.055},{"x":1751329081870,"y":22.298},{"x":1751329021687,"y":25.434},{"x":1751328961542,"y":22.189},{"x":1751328901405,"y":22.125},{"x":1751328841262,"y":22.071},{"x":1751328781082,"y":21.176},{"x":1751328720916,"y":22.917},{"x":1751328660757,"y":22.449},{"x":1751328600619,"y":20.843},{"x":1751328540472,"y":21.775},{"x":1751328480329,"y":24.678},{"x":1751328420100,"y":20.865},{"x":1751328362891,"y":32.8},{"x":1751328302724,"y":31.007},{"x":1751328242570,"y":30.789},{"x":1751328182403,"y":31.666},{"x":1751328122255,"y":29.755},{"x":1751328062107,"y":29.43},{"x":1751328001989,"y":24.983},{"x":1751327941800,"y":24.06},{"x":1751327881642,"y":22.193},{"x":1751327821496,"y":22.169},{"x":1751327761351,"y":23.15},{"x":1751327701205,"y":26.623},{"x":1751327641051,"y":26.809},{"x":1751327580895,"y":24.774},{"x":1751327520744,"y":26.914},{"x":1751327460612,"y":27.021},{"x":1751327400553,"y":24.981},{"x":1751327340284,"y":26.127},{"x":1751327282970,"y":26.18},{"x":1751327222810,"y":24.368},{"x":1751327162656,"y":33.162},{"x":1751327102493,"y":34.241},{"x":1751327042321,"y":36.031},{"x":1751326982157,"y":33.052},{"x":1751326921999,"y":33.147},{"x":1751326861840,"y":24.75},{"x":1751326801691,"y":24.118},{"x":1751326741527,"y":23.293},{"x":1751326681387,"y":26.432},{"x":1751326621246,"y":25.569},{"x":1751326561069,"y":26.607},{"x":1751326500914,"y":24.639},{"x":1751326440780,"y":24.255},{"x":1751326380629,"y":28.279},{"x":1751326320519,"y":23.907},{"x":1751326260497,"y":24.36},{"x":1751326200184,"y":25.148},{"x":1751326142931,"y":25.165},{"x":1751326082761,"y":24.54},{"x":1751326022609,"y":23.508},{"x":1751325962452,"y":25.335},{"x":1751325902309,"y":23.474},{"x":1751325842147,"y":35.797},{"x":1751325781982,"y":36.075},{"x":1751325721839,"y":39.76},{"x":1751325661680,"y":35.91},{"x":1751325601566,"y":34.842},{"x":1751325541386,"y":22.796},{"x":1751325481223,"y":23.638},{"x":1751325421022,"y":24.445},{"x":1751325360854,"y":25.701},{"x":1751325300736,"y":25.92},{"x":1751325240530,"y":24.674},{"x":1751325180404,"y":27.299},{"x":1751325120307,"y":25.266},{"x":1751325063008,"y":28.525},{"x":1751325002849,"y":24.586},{"x":1751324942679,"y":24.915},{"x":1751324882517,"y":24.449},{"x":1751324822371,"y":24.238},{"x":1751324762230,"y":24.305},{"x":1751324702085,"y":23.902},{"x":1751324641936,"y":24.155},{"x":1751324581784,"y":24.982},{"x":1751324521639,"y":25.04},{"x":1751324461481,"y":26.213},{"x":1751324401386,"y":29.831},{"x":1751324341175,"y":28.005},{"x":1751324281027,"y":25.281},{"x":1751324220933,"y":28.917},{"x":1751324160703,"y":26.163},{"x":1751324100554,"y":29.775},{"x":1751324040353,"y":26.083},{"x":1751323980277,"y":24.623},{"x":1751323922925,"y":25.413},{"x":1751323862775,"y":25.81},{"x":1751323802620,"y":26.303},{"x":1751323742475,"y":26.511},{"x":1751323682330,"y":24.562},{"x":1751323622187,"y":23.14},{"x":1751323562042,"y":23.227},{"x":1751323501878,"y":22.848},{"x":1751323441743,"y":26.259},{"x":1751323381606,"y":23.315},{"x":1751323321462,"y":24.359},{"x":1751323261306,"y":25.015},{"x":1751323201143,"y":26.668},{"x":1751323140984,"y":27.342},{"x":1751323080834,"y":26.674},{"x":1751323020663,"y":27.096},{"x":1751322960533,"y":26.379},{"x":1751322900453,"y":26.759},{"x":1751322840269,"y":27.807},{"x":1751322782908,"y":29.119},{"x":1751322722758,"y":26.082},{"x":1751322662607,"y":25.509},{"x":1751322602436,"y":27.92},{"x":1751322542269,"y":29.65},{"x":1751322482117,"y":29.681},{"x":1751322421966,"y":28.438},{"x":1751322361836,"y":28.295},{"x":1751322301664,"y":28.209},{"x":1751322241497,"y":28.73},{"x":1751322181337,"y":33.658},{"x":1751322121186,"y":33.553},{"x":1751322061017,"y":33.703},{"x":1751322000879,"y":32.766},{"x":1751321940703,"y":30.139},{"x":1751321880528,"y":27.467},{"x":1751321820371,"y":31.89},{"x":1751321760246,"y":29.029},{"x":1751321702905,"y":28.85},{"x":1751321642748,"y":28.008},{"x":1751321582595,"y":29.283},{"x":1751321522446,"y":31.125},{"x":1751321462298,"y":25.436},{"x":1751321402138,"y":26.275},{"x":1751321341977,"y":26.834},{"x":1751321281818,"y":24.431},{"x":1751321221671,"y":23.694},{"x":1751321161515,"y":31.43},{"x":1751321101369,"y":28.21},{"x":1751321041225,"y":37.549},{"x":1751320981065,"y":35.466},{"x":1751320920897,"y":38.202},{"x":1751320860748,"y":39.238},{"x":1751320800675,"y":34.813},{"x":1751320740421,"y":31.729},{"x":1751320680299,"y":29.252},{"x":1751320622973,"y":29.559},{"x":1751320562837,"y":32.336},{"x":1751320502677,"y":34.218},{"x":1751320442536,"y":42.018},{"x":1751320382384,"y":42.984},{"x":1751320322238,"y":49.281},{"x":1751320262084,"y":49.024},{"x":1751320201933,"y":50.849},{"x":1751320141782,"y":36.451},{"x":1751320081628,"y":32.293},{"x":1751320021488,"y":31.259},{"x":1751319961335,"y":34.505},{"x":1751319901209,"y":40.816},{"x":1751319841028,"y":44.554},{"x":1751319780872,"y":42.279},{"x":1751319720716,"y":41.366},{"x":1751319660569,"y":43.813},{"x":1751319600511,"y":54.186},{"x":1751319540234,"y":33.173},{"x":1751319482974,"y":37.987},{"x":1751319422825,"y":36.947},{"x":1751319362680,"y":47.078},{"x":1751319302534,"y":43.837},{"x":1751319242380,"y":53.419},{"x":1751319182240,"y":43.391},{"x":1751319122054,"y":41.237},{"x":1751319061882,"y":30.831},{"x":1751319001746,"y":32.55},{"x":1751318941581,"y":42.944},{"x":1751318881434,"y":32.387},{"x":1751318821294,"y":37.256},{"x":1751318761139,"y":36.675},{"x":1751318700982,"y":36.037},{"x":1751318640835,"y":53.298},{"x":1751318580668,"y":37.44},{"x":1751318520546,"y":51.406},{"x":1751318460397,"y":37.178},{"x":1751318400272,"y":34.001},{"x":1751318342961,"y":32.287},{"x":1751318282800,"y":31.892},{"x":1751318222583,"y":35.637},{"x":1751318162428,"y":34.6},{"x":1751318102282,"y":32.156},{"x":1751318042133,"y":33.17},{"x":1751317981978,"y":40.85},{"x":1751317921831,"y":59.552},{"x":1751317861675,"y":49.548},{"x":1751317801526,"y":52.961},{"x":1751317741374,"y":51.983},{"x":1751317681230,"y":46.896},{"x":1751317621075,"y":45.444},{"x":1751317560932,"y":34.081},{"x":1751317500779,"y":32.992},{"x":1751317440644,"y":35.916},{"x":1751317380473,"y":59.787},{"x":1751317320357,"y":50.569},{"x":1751317260132,"y":47.831},{"x":1751317202906,"y":58.253},{"x":1751317142730,"y":47.223},{"x":1751317082577,"y":40.055},{"x":1751317022426,"y":40.413},{"x":1751316962281,"y":40.707},{"x":1751316902136,"y":48.429},{"x":1751316841974,"y":48.145},{"x":1751316781825,"y":61.614},{"x":1751316721662,"y":42.221},{"x":1751316661508,"y":40.049},{"x":1751316601366,"y":35.64},{"x":1751316541218,"y":32.247},{"x":1751316481066,"y":32.133},{"x":1751316420888,"y":31.588},{"x":1751316360740,"y":38.633},{"x":1751316300715,"y":45.881},{"x":1751316240471,"y":45.914},{"x":1751316180250,"y":38.493},{"x":1751316122976,"y":51.296},{"x":1751316062822,"y":38.577},{"x":1751316002671,"y":35.055},{"x":1751315942490,"y":36.09},{"x":1751315882347,"y":55.062},{"x":1751315822178,"y":53.383},{"x":1751315762022,"y":72.902},{"x":1751315701834,"y":57.5},{"x":1751315641669,"y":56.397},{"x":1751315581514,"y":36.135},{"x":1751315521357,"y":46.496},{"x":1751315461205,"y":32.367},{"x":1751315401039,"y":48.257},{"x":1751315340832,"y":42.197},{"x":1751315280686,"y":41.743},{"x":1751315220516,"y":43.943},{"x":1751315160447,"y":45.883},{"x":1751315100203,"y":39.398},{"x":1751315042908,"y":38.787},{"x":1751314982745,"y":36.465},{"x":1751314922598,"y":50.332},{"x":1751314862452,"y":60.157},{"x":1751314802304,"y":64.693},{"x":1751314742153,"y":69.47},{"x":1751314681987,"y":57.926},{"x":1751314621798,"y":55.62},{"x":1751314561649,"y":52.573},{"x":1751314501495,"y":55.714},{"x":1751314441335,"y":35.445},{"x":1751314381189,"y":36.771},{"x":1751314321026,"y":40.045},{"x":1751314260878,"y":44.536},{"x":1751314200765,"y":56.443},{"x":1751314140603,"y":54.326},{"x":1751314080463,"y":72.459},{"x":1751314020248,"y":61.267},{"x":1751313962934,"y":51.646},{"x":1751313902787,"y":59.007},{"x":1751313842638,"y":49.193},{"x":1751313782487,"y":43.961},{"x":1751313722337,"y":46.163},{"x":1751313662174,"y":35.594},{"x":1751313602096,"y":44.373},{"x":1751313541826,"y":46.201},{"x":1751313481663,"y":58.53},{"x":1751313421506,"y":60.295},{"x":1751313361356,"y":66.165},{"x":1751313301195,"y":64.978},{"x":1751313241025,"y":61.013},{"x":1751313180871,"y":57.94},{"x":1751313120711,"y":60.503},{"x":1751313060575,"y":37.989},{"x":1751313000470,"y":38.286},{"x":1751312940392,"y":32.887},{"x":1751312882946,"y":50.518},{"x":1751312822771,"y":39.706},{"x":1751312762620,"y":44.414},{"x":1751312702474,"y":56.536},{"x":1751312642330,"y":46.771},{"x":1751312582178,"y":55.528},{"x":1751312522018,"y":51.213},{"x":1751312461854,"y":49.275},{"x":1751312401694,"y":44.0},{"x":1751312341544,"y":39.777},{"x":1751312281368,"y":31.756},{"x":1751312221219,"y":44.891},{"x":1751312161044,"y":45.723},{"x":1751312100877,"y":45.79},{"x":1751312040705,"y":47.429},{"x":1751311980573,"y":44.568},{"x":1751311920408,"y":42.754},{"x":1751311860222,"y":42.595},{"x":1751311802945,"y":46.367},{"x":1751311742781,"y":42.449},{"x":1751311682588,"y":45.773},{"x":1751311622446,"y":43.094},{"x":1751311562270,"y":42.104},{"x":1751311502120,"y":47.961},{"x":1751311441945,"y":43.056},{"x":1751311381796,"y":35.647},{"x":1751311321644,"y":37.378},{"x":1751311261469,"y":48.655},{"x":1751311201318,"y":43.743},{"x":1751311141154,"y":41.697},{"x":1751311080990,"y":49.094},{"x":1751311020819,"y":66.032},{"x":1751310960660,"y":53.162},{"x":1751310900563,"y":43.029},{"x":1751310840356,"y":44.49},{"x":1751310783005,"y":59.588},{"x":1751310722855,"y":49.974},{"x":1751310662697,"y":55.702},{"x":1751310602533,"y":69.51},{"x":1751310542387,"y":58.105},{"x":1751310482240,"y":48.408},{"x":1751310422097,"y":45.933},{"x":1751310361920,"y":38.739},{"x":1751310301780,"y":42.093},{"x":1751310241620,"y":45.74},{"x":1751310181471,"y":47.686},{"x":1751310121304,"y":49.564},{"x":1751310061140,"y":59.744},{"x":1751310001031,"y":57.742},{"x":1751309940782,"y":44.734},{"x":1751309880622,"y":39.665},{"x":1751309820504,"y":43.61},{"x":1751309760275,"y":41.835},{"x":1751309702997,"y":43.406},{"x":1751309642862,"y":39.578},{"x":1751309582718,"y":44.544},{"x":1751309522552,"y":43.953},{"x":1751309462392,"y":48.134},{"x":1751309402243,"y":43.274},{"x":1751309342081,"y":46.963},{"x":1751309281920,"y":40.702},{"x":1751309221764,"y":42.988},{"x":1751309161611,"y":22.174},{"x":1751309101464,"y":32.963},{"x":1751309041317,"y":31.376},{"x":1751308981159,"y":31.859},{"x":1751308920614,"y":47.624},{"x":1751308860488,"y":57.778},{"x":1751308800340,"y":52.935},{"x":1751308740099,"y":51.114},{"x":1751308682876,"y":49.733},{"x":1751308622727,"y":42.006},{"x":1751308562578,"y":41.186},{"x":1751308502424,"y":30.935},{"x":1751308442265,"y":42.688},{"x":1751308382109,"y":33.914},{"x":1751308321947,"y":36.379},{"x":1751308261798,"y":28.174},{"x":1751308201652,"y":65.469},{"x":1751308141486,"y":63.211},{"x":1751308081331,"y":59.237},{"x":1751308021179,"y":56.399},{"x":1751307961016,"y":55.065},{"x":1751307900869,"y":37.549},{"x":1751307840718,"y":34.286},{"x":1751307780569,"y":47.978},{"x":1751307720398,"y":44.729},{"x":1751307660246,"y":44.59},{"x":1751307600113,"y":43.03},{"x":1751307542889,"y":55.881},{"x":1751307482671,"y":44.165},{"x":1751307422496,"y":41.073},{"x":1751307362344,"y":40.846},{"x":1751307302182,"y":44.374},{"x":1751307242026,"y":44.113},{"x":1751307181879,"y":32.429},{"x":1751307121725,"y":26.527},{"x":1751307061576,"y":28.805},{"x":1751307001437,"y":28.711},{"x":1751306941272,"y":38.474},{"x":1751306881119,"y":38.347},{"x":1751306820935,"y":58.362},{"x":1751306760778,"y":53.705},{"x":1751306700635,"y":55.446},{"x":1751306640459,"y":41.941},{"x":1751306580210,"y":46.479},{"x":1751306522956,"y":41.879},{"x":1751306462809,"y":27.944},{"x":1751306402676,"y":26.551},{"x":1751306342478,"y":24.906},{"x":1751306282336,"y":24.327},{"x":1751306222182,"y":24.307},{"x":1751306162017,"y":25.252},{"x":1751306101861,"y":27.529},{"x":1751306041702,"y":51.822},{"x":1751305981557,"y":55.782},{"x":1751305921396,"y":52.227},{"x":1751305861288,"y":49.85},{"x":1751305801087,"y":44.339},{"x":1751305740922,"y":36.214},{"x":1751305680779,"y":23.19},{"x":1751305620732,"y":33.618},{"x":1751305560531,"y":32.596},{"x":1751305500429,"y":32.983},{"x":1751305440095,"y":36.108},{"x":1751305382892,"y":41.783},{"x":1751305322742,"y":43.522},{"x":1751305262586,"y":41.864},{"x":1751305202441,"y":37.274},{"x":1751305142309,"y":35.986},{"x":1751305082143,"y":38.367},{"x":1751305021984,"y":40.26},{"x":1751304961833,"y":31.571},{"x":1751304901681,"y":31.081},{"x":1751304841523,"y":33.011},{"x":1751304781376,"y":40.197},{"x":1751304721238,"y":47.122},{"x":1751304661084,"y":30.182},{"x":1751304600935,"y":59.856},{"x":1751304540737,"y":58.448},{"x":1751304480593,"y":59.269},{"x":1751304420396,"y":54.056},{"x":1751304360283,"y":41.067},{"x":1751304302951,"y":31.804},{"x":1751304242808,"y":34.312},{"x":1751304182664,"y":31.83},{"x":1751304122478,"y":31.84},{"x":1751304062315,"y":32.422},{"x":1751304002177,"y":33.895},{"x":1751303942028,"y":53.03},{"x":1751303881910,"y":43.922},{"x":1751303821712,"y":58.52},{"x":1751303761539,"y":46.309},{"x":1751303701395,"y":44.484},{"x":1751303641222,"y":27.073},{"x":1751303581070,"y":20.15},{"x":1751303520884,"y":23.317},{"x":1751303460703,"y":34.391},{"x":1751303400592,"y":37.389},{"x":1751303340402,"y":39.534},{"x":1751303280232,"y":43.802},{"x":1751303222889,"y":39.789},{"x":1751303162734,"y":33.189},{"x":1751303102589,"y":36.62},{"x":1751303042437,"y":34.307},{"x":1751302982292,"y":31.153},{"x":1751302922146,"y":29.404},{"x":1751302861984,"y":20.825},{"x":1751302801874,"y":23.521},{"x":1751302741621,"y":22.036},{"x":1751302681477,"y":24.085},{"x":1751302621326,"y":26.489},{"x":1751302561180,"y":32.323},{"x":1751302501022,"y":47.092},{"x":1751302440868,"y":42.285},{"x":1751302380719,"y":39.302},{"x":1751302320582,"y":38.741},{"x":1751302260427,"y":28.648},{"x":1751302200190,"y":18.694},{"x":1751302142927,"y":20.541},{"x":1751302082789,"y":19.934},{"x":1751302022634,"y":31.054},{"x":1751301962487,"y":37.933},{"x":1751301902339,"y":40.845},{"x":1751301842196,"y":39.498},{"x":1751301782032,"y":36.019},{"x":1751301721881,"y":39.789},{"x":1751301661727,"y":35.839},{"x":1751301601576,"y":34.707},{"x":1751301541427,"y":21.918},{"x":1751301481279,"y":14.472},{"x":1751301421142,"y":21.669},{"x":1751301360947,"y":23.537},{"x":1751301300801,"y":21.343},{"x":1751301240639,"y":30.737},{"x":1751301180490,"y":43.319},{"x":1751301120355,"y":46.202},{"x":1751301060188,"y":50.595},{"x":1751301002874,"y":46.636},{"x":1751300942714,"y":38.214},{"x":1751300882567,"y":29.447},{"x":1751300822414,"y":24.175},{"x":1751300762267,"y":35.441},{"x":1751300702116,"y":32.849},{"x":1751300641949,"y":43.454},{"x":1751300581802,"y":32.927},{"x":1751300521654,"y":35.75},{"x":1751300461501,"y":35.206},{"x":1751300401345,"y":55.0},{"x":1751300341192,"y":37.052},{"x":1751300281005,"y":33.397},{"x":1751300220810,"y":23.219},{"x":1751300160683,"y":31.563},{"x":1751300100583,"y":31.913},{"x":1751300040291,"y":29.954},{"x":1751299983012,"y":33.705},{"x":1751299922849,"y":35.344},{"x":1751299862688,"y":59.477},{"x":1751299802533,"y":39.425},{"x":1751299742385,"y":30.702},{"x":1751299682240,"y":30.365},{"x":1751299622082,"y":25.432},{"x":1751299561922,"y":22.949},{"x":1751299501778,"y":18.301},{"x":1751299441607,"y":16.694},{"x":1751299381493,"y":16.51},{"x":1751299321282,"y":15.146},{"x":1751299261120,"y":11.891},{"x":1751299201057,"y":21.178},{"x":1751299140751,"y":42.527},{"x":1751299080615,"y":38.093},{"x":1751299020462,"y":36.356},{"x":1751298960317,"y":41.372},{"x":1751298900187,"y":23.275},{"x":1751298842902,"y":28.306},{"x":1751298782750,"y":20.609},{"x":1751298722595,"y":24.601},{"x":1751298662454,"y":22.314},{"x":1751298602311,"y":33.038},{"x":1751298542128,"y":29.254},{"x":1751298481946,"y":28.628},{"x":1751298421803,"y":23.878},{"x":1751298361628,"y":21.127},{"x":1751298301476,"y":39.366},{"x":1751298241319,"y":35.394},{"x":1751298181170,"y":35.347},{"x":1751298121004,"y":26.825},{"x":1751298060846,"y":32.198},{"x":1751298000739,"y":23.388},{"x":1751297940550,"y":14.226},{"x":1751297880419,"y":38.022},{"x":1751297820251,"y":29.892},{"x":1751297762967,"y":38.418},{"x":1751297702802,"y":35.159},{"x":1751297642667,"y":33.268},{"x":1751297582488,"y":46.332},{"x":1751297522344,"y":39.282},{"x":1751297462187,"y":31.897},{"x":1751297402040,"y":34.825},{"x":1751297341917,"y":32.801},{"x":1751297281735,"y":32.71},{"x":1751297221559,"y":31.141},{"x":1751297161403,"y":36.984},{"x":1751297101242,"y":29.092},{"x":1751297041087,"y":19.582},{"x":1751296980929,"y":18.572},{"x":1751296920774,"y":26.88},{"x":1751296860628,"y":35.057},{"x":1751296800595,"y":57.009},{"x":1751296740457,"y":37.456},{"x":1751296683010,"y":36.596},{"x":1751296622830,"y":45.101},{"x":1751296562664,"y":36.406},{"x":1751296502510,"y":19.989},{"x":1751296442360,"y":24.375},{"x":1751296382210,"y":31.544},{"x":1751296322075,"y":41.713},{"x":1751296261861,"y":29.943},{"x":1751296201719,"y":27.983},{"x":1751296141546,"y":42.712},{"x":1751296081390,"y":32.957},{"x":1751296021244,"y":55.046},{"x":1751295961059,"y":31.231},{"x":1751295900902,"y":27.428},{"x":1751295840753,"y":29.493},{"x":1751295780610,"y":19.247},{"x":1751295720489,"y":24.181},{"x":1751295660419,"y":25.021},{"x":1751295603002,"y":24.885},{"x":1751295542869,"y":37.45},{"x":1751295482663,"y":41.058},{"x":1751295422465,"y":42.953},{"x":1751295362315,"y":38.269},{"x":1751295302170,"y":39.282},{"x":1751295242020,"y":32.354},{"x":1751295181863,"y":30.923},{"x":1751295121711,"y":27.407},{"x":1751295061563,"y":28.649},{"x":1751295001404,"y":30.122},{"x":1751294941264,"y":18.75},{"x":1751294881115,"y":16.854},{"x":1751294820937,"y":16.465},{"x":1751294760791,"y":24.721},{"x":1751294700783,"y":39.214},{"x":1751294640492,"y":46.065},{"x":1751294580392,"y":31.803},{"x":1751294520163,"y":35.839},{"x":1751294462899,"y":36.0},{"x":1751294402751,"y":13.556},{"x":1751294342606,"y":26.34},{"x":1751294282457,"y":26.833},{"x":1751294222300,"y":13.916},{"x":1751294162142,"y":12.04},{"x":1751294102013,"y":17.821},{"x":1751294041828,"y":41.083},{"x":1751293981662,"y":36.094},{"x":1751293921522,"y":35.101},{"x":1751293861368,"y":28.729},{"x":1751293801229,"y":52.146},{"x":1751293741056,"y":26.589},{"x":1751293680899,"y":15.779},{"x":1751293620753,"y":24.031},{"x":1751293560608,"y":27.826},{"x":1751293500533,"y":39.451},{"x":1751293440412,"y":29.003},{"x":1751293380153,"y":26.086},{"x":1751293322905,"y":35.878},{"x":1751293262755,"y":22.11},{"x":1751293202652,"y":24.853},{"x":1751293142472,"y":26.936},{"x":1751293082292,"y":33.847},{"x":1751293022077,"y":30.212},{"x":1751292961916,"y":9.969},{"x":1751292901803,"y":20.093},{"x":1751292841611,"y":17.229},{"x":1751292781465,"y":17.374},{"x":1751292721317,"y":28.472},{"x":1751292661161,"y":45.835},{"x":1751292600996,"y":44.007},{"x":1751292540839,"y":37.993},{"x":1751292480691,"y":40.873},{"x":1751292420543,"y":24.595},{"x":1751292360455,"y":31.152},{"x":1751292300263,"y":33.343},{"x":1751292242950,"y":21.816},{"x":1751292182802,"y":24.873},{"x":1751292122648,"y":24.819},{"x":1751292062507,"y":34.705},{"x":1751292002343,"y":16.161},{"x":1751291942193,"y":18.027},{"x":1751291882051,"y":16.782},{"x":1751291821894,"y":26.497},{"x":1751291761733,"y":22.68},{"x":1751291701581,"y":36.436},{"x":1751291641430,"y":30.184},{"x":1751291581273,"y":20.757},{"x":1751291521120,"y":21.12},{"x":1751291460953,"y":46.571},{"x":1751291400817,"y":25.739},{"x":1751291340643,"y":19.349},{"x":1751291280559,"y":40.725},{"x":1751291220351,"y":47.634},{"x":1751291163027,"y":33.085},{"x":1751291102889,"y":15.977},{"x":1751291042726,"y":16.488},{"x":1751290982568,"y":14.246},{"x":1751290922422,"y":12.09},{"x":1751290862257,"y":16.329},{"x":1751290802105,"y":31.067},{"x":1751290741946,"y":49.838},{"x":1751290681797,"y":34.945},{"x":1751290621652,"y":34.617},{"x":1751290561493,"y":43.336},{"x":1751290501366,"y":34.708},{"x":1751290441202,"y":33.791},{"x":1751290381053,"y":34.914},{"x":1751290320898,"y":14.339},{"x":1751290260731,"y":42.717},{"x":1751290200639,"y":20.778},{"x":1751290140416,"y":30.82},{"x":1751290080350,"y":20.914},{"x":1751290022979,"y":22.127},{"x":1751289962810,"y":16.595},{"x":1751289902653,"y":35.096},{"x":1751289842506,"y":13.065},{"x":1751289782324,"y":15.205},{"x":1751289722176,"y":15.798},{"x":1751289662008,"y":27.223},{"x":1751289601847,"y":16.337},{"x":1751289541701,"y":13.901},{"x":1751289481542,"y":17.704},{"x":1751289421349,"y":23.916},{"x":1751289361195,"y":34.488},{"x":1751289301030,"y":34.584},{"x":1751289240853,"y":33.001},{"x":1751289180714,"y":22.294},{"x":1751289120577,"y":11.156},{"x":1751289060354,"y":17.334},{"x":1751289000221,"y":23.28},{"x":1751288942922,"y":12.204},{"x":1751288882770,"y":16.162},{"x":1751288822620,"y":19.576},{"x":1751288762464,"y":25.439},{"x":1751288702306,"y":23.291},{"x":1751288642160,"y":27.299},{"x":1751288581969,"y":20.982},{"x":1751288521821,"y":6.672},{"x":1751288461674,"y":-3.55},{"x":1751288401551,"y":16.645},{"x":1751288341327,"y":5.256},{"x":1751288281177,"y":11.446},{"x":1751288220970,"y":22.713},{"x":1751288160820,"y":20.6},{"x":1751288100689,"y":32.047},{"x":1751288040537,"y":35.191},{"x":1751287980410,"y":34.615},{"x":1751287920219,"y":24.563},{"x":1751287862946,"y":16.468},{"x":1751287802791,"y":30.969},{"x":1751287742632,"y":21.742},{"x":1751287682479,"y":25.303},{"x":1751287622328,"y":21.177},{"x":1751287562177,"y":21.615},{"x":1751287502031,"y":43.904},{"x":1751287441850,"y":20.694},{"x":1751287381702,"y":18.692},{"x":1751287321559,"y":12.021},{"x":1751287261393,"y":7.579},{"x":1751287201240,"y":10.183},{"x":1751287141082,"y":13.079},{"x":1751287080927,"y":6.451},{"x":1751287020696,"y":16.631},{"x":1751286960565,"y":20.986},{"x":1751286900410,"y":28.746},{"x":1751286840315,"y":29.756},{"x":1751286783023,"y":26.923},{"x":1751286722852,"y":41.873},{"x":1751286662709,"y":19.976},{"x":1751286602564,"y":17.514},{"x":1751286542418,"y":22.738},{"x":1751286482267,"y":15.279},{"x":1751286422125,"y":32.709},{"x":1751286361964,"y":18.34},{"x":1751286301816,"y":19.241},{"x":1751286241655,"y":24.48},{"x":1751286181545,"y":17.724},{"x":1751286121357,"y":18.271},{"x":1751286061218,"y":11.611},{"x":1751286001065,"y":25.003},{"x":1751285940914,"y":2.71},{"x":1751285880740,"y":31.387},{"x":1751285820546,"y":15.114},{"x":1751285760380,"y":31.967},{"x":1751285700322,"y":44.736},{"x":1751285642975,"y":49.677},{"x":1751285582819,"y":28.421},{"x":1751285522675,"y":35.496},{"x":1751285462533,"y":18.709},{"x":1751285402380,"y":22.664},{"x":1751285342230,"y":56.809},{"x":1751285282085,"y":31.029},{"x":1751285221934,"y":28.901},{"x":1751285161795,"y":26.666},{"x":1751285101644,"y":30.306},{"x":1751285041489,"y":17.26},{"x":1751284981345,"y":16.509},{"x":1751284921190,"y":10.278},{"x":1751284861052,"y":9.699},{"x":1751284801105,"y":15.785},{"x":1751284740698,"y":15.056},{"x":1751284680565,"y":20.234},{"x":1751284620442,"y":25.568},{"x":1751284560514,"y":23.581},{"x":1751284503017,"y":13.484},{"x":1751284442872,"y":3.612},{"x":1751284382725,"y":18.068},{"x":1751284322577,"y":2.726},{"x":1751284262429,"y":10.455},{"x":1751284202274,"y":18.945},{"x":1751284142115,"y":22.421},{"x":1751284081937,"y":31.577},{"x":1751284021790,"y":32.114},{"x":1751283961638,"y":21.025},{"x":1751283901504,"y":24.849},{"x":1751283841332,"y":27.284},{"x":1751283781188,"y":4.216},{"x":1751283721027,"y":10.905},{"x":1751283660881,"y":6.79},{"x":1751283600747,"y":32.259},{"x":1751283540582,"y":12.196},{"x":1751283480497,"y":13.858},{"x":1751283420352,"y":19.625},{"x":1751283362995,"y":26.715},{"x":1751283302845,"y":22.569},{"x":1751283242698,"y":11.497},{"x":1751283182561,"y":9.712},{"x":1751283122409,"y":18.217},{"x":1751283062268,"y":37.331},{"x":1751283002114,"y":15.536},{"x":1751282941959,"y":18.779},{"x":1751282881814,"y":23.384},{"x":1751282821672,"y":42.639},{"x":1751282761529,"y":43.246},{"x":1751282701380,"y":34.031},{"x":1751282641244,"y":24.165},{"x":1751282581067,"y":16.237},{"x":1751282520921,"y":28.427},{"x":1751282460774,"y":5.106},{"x":1751282400714,"y":8.914},{"x":1751282340483,"y":13.19},{"x":1751282280359,"y":26.554},{"x":1751282220205,"y":26.793},{"x":1751282162907,"y":27.002},{"x":1751282102760,"y":24.572},{"x":1751282042619,"y":21.686},{"x":1751281982468,"y":7.501},{"x":1751281922320,"y":10.024},{"x":1751281862169,"y":11.194},{"x":1751281802007,"y":13.498},{"x":1751281741851,"y":13.149},{"x":1751281681701,"y":5.608},{"x":1751281621562,"y":3.728},{"x":1751281561402,"y":19.788},{"x":1751281501246,"y":18.973},{"x":1751281441099,"y":29.122},{"x":1751281380930,"y":28.81},{"x":1751281320764,"y":30.84},{"x":1751281260627,"y":10.693},{"x":1751281200494,"y":13.403},{"x":1751281140290,"y":3.623},{"x":1751281082905,"y":20.437},{"x":1751281022757,"y":22.724},{"x":1751280962615,"y":22.787},{"x":1751280902462,"y":22.47},{"x":1751280842313,"y":47.252},{"x":1751280782153,"y":29.089},{"x":1751280722004,"y":20.265},{"x":1751280661854,"y":28.439},{"x":1751280601699,"y":27.621},{"x":1751280541541,"y":8.242},{"x":1751280481386,"y":4.308},{"x":1751280421247,"y":3.785},{"x":1751280361091,"y":4.764},{"x":1751280300926,"y":7.935},{"x":1751280240721,"y":24.32},{"x":1751280180576,"y":8.303},{"x":1751280120490,"y":17.705},{"x":1751280060269,"y":14.399},{"x":1751280002951,"y":32.613},{"x":1751279942809,"y":27.958},{"x":1751279882656,"y":29.881},{"x":1751279822513,"y":38.607},{"x":1751279762359,"y":39.057},{"x":1751279702203,"y":9.009},{"x":1751279642041,"y":3.562},{"x":1751279581877,"y":6.282},{"x":1751279521723,"y":14.898},{"x":1751279461585,"y":16.994},{"x":1751279401445,"y":36.279},{"x":1751279341278,"y":25.65},{"x":1751279281115,"y":20.026},{"x":1751279220932,"y":11.417},{"x":1751279160787,"y":13.789},{"x":1751279100657,"y":11.162},{"x":1751279040513,"y":27.936},{"x":1751278980368,"y":23.687},{"x":1751278920252,"y":41.977},{"x":1751278862918,"y":18.2},{"x":1751278802764,"y":28.684},{"x":1751278742610,"y":29.141},{"x":1751278682460,"y":20.945},{"x":1751278622262,"y":17.503},{"x":1751278562087,"y":26.072},{"x":1751278501925,"y":31.805},{"x":1751278441765,"y":25.72},{"x":1751278381632,"y":19.177},{"x":1751278321460,"y":36.292},{"x":1751278261300,"y":35.592},{"x":1751278201144,"y":16.169},{"x":1751278140961,"y":24.528},{"x":1751278080814,"y":26.464},{"x":1751278020672,"y":6.948},{"x":1751277960525,"y":13.441},{"x":1751277900430,"y":20.781},{"x":1751277840362,"y":25.284},{"x":1751277782918,"y":20.165},{"x":1751277722770,"y":18.746},{"x":1751277662587,"y":15.469},{"x":1751277602434,"y":21.716},{"x":1751277542274,"y":14.001},{"x":1751277482120,"y":10.729},{"x":1751277421957,"y":15.62},{"x":1751277361812,"y":14.982},{"x":1751277301698,"y":24.359},{"x":1751277241499,"y":31.059},{"x":1751277181352,"y":42.774},{"x":1751277121207,"y":34.919},{"x":1751277061058,"y":29.08},{"x":1751277000951,"y":17.605},{"x":1751276940746,"y":7.498},{"x":1751276880637,"y":10.038},{"x":1751276820452,"y":20.92},{"x":1751276760274,"y":24.482},{"x":1751276702981,"y":27.77},{"x":1751276642837,"y":20.948},{"x":1751276582683,"y":26.341},{"x":1751276522533,"y":16.176},{"x":1751276462377,"y":10.297},{"x":1751276402229,"y":11.557},{"x":1751276342080,"y":15.826},{"x":1751276281919,"y":45.201},{"x":1751276221759,"y":26.663},{"x":1751276161607,"y":23.558},{"x":1751276101454,"y":29.834},{"x":1751276041307,"y":36.316},{"x":1751275981154,"y":30.684},{"x":1751275920996,"y":29.054},{"x":1751275860855,"y":40.515},{"x":1751275800739,"y":39.8},{"x":1751275740596,"y":47.166},{"x":1751275680496,"y":41.571},{"x":1751275620309,"y":37.397},{"x":1751275562951,"y":42.213},{"x":1751275502797,"y":29.79},{"x":1751275442652,"y":20.893},{"x":1751275382485,"y":13.821},{"x":1751275322339,"y":15.928},{"x":1751275262191,"y":17.257},{"x":1751275202016,"y":19.444},{"x":1751275141862,"y":21.609},{"x":1751275081670,"y":20.217},{"x":1751275021457,"y":25.618},{"x":1751274961300,"y":33.048},{"x":1751274901152,"y":36.772},{"x":1751274840976,"y":47.685},{"x":1751274780834,"y":36.552},{"x":1751274720684,"y":16.343},{"x":1751274660560,"y":15.547},{"x":1751274600390,"y":9.927},{"x":1751274540273,"y":19.926},{"x":1751274482962,"y":29.263},{"x":1751274422780,"y":31.96},{"x":1751274362617,"y":21.046},{"x":1751274302468,"y":25.416},{"x":1751274242308,"y":34.131},{"x":1751274182160,"y":30.368},{"x":1751274121995,"y":15.915},{"x":1751274061852,"y":17.381},{"x":1751274001716,"y":18.387},{"x":1751273941485,"y":9.722},{"x":1751273881368,"y":13.951},{"x":1751273821181,"y":17.667},{"x":1751273761011,"y":15.296},{"x":1751273700865,"y":43.198},{"x":1751273640710,"y":39.302},{"x":1751273580560,"y":35.441},{"x":1751273520467,"y":45.718},{"x":1751273460322,"y":45.942},{"x":1751273402959,"y":38.013},{"x":1751273342819,"y":19.418},{"x":1751273282650,"y":10.406},{"x":1751273222482,"y":18.872},{"x":1751273162328,"y":19.821},{"x":1751273102175,"y":26.049},{"x":1751273042028,"y":32.046},{"x":1751272981873,"y":27.97},{"x":1751272921725,"y":21.175},{"x":1751272861578,"y":22.09},{"x":1751272801429,"y":47.256},{"x":1751272741273,"y":30.544},{"x":1751272681116,"y":37.048},{"x":1751272620938,"y":46.568},{"x":1751272560788,"y":52.57},{"x":1751272500654,"y":46.733},{"x":1751272440498,"y":39.317},{"x":1751272380279,"y":22.09},{"x":1751272322950,"y":20.509},{"x":1751272262812,"y":17.629},{"x":1751272202636,"y":19.667},{"x":1751272142488,"y":36.561},{"x":1751272082339,"y":31.079},{"x":1751272022191,"y":38.199},{"x":1751271962039,"y":30.707},{"x":1751271901888,"y":23.338},{"x":1751271841739,"y":19.872},{"x":1751271781587,"y":25.398},{"x":1751271721440,"y":27.505},{"x":1751271661292,"y":28.892},{"x":1751271601128,"y":18.475},{"x":1751271540959,"y":30.818},{"x":1751271480773,"y":36.576},{"x":1751271420603,"y":31.857},{"x":1751271360424,"y":23.064},{"x":1751271300218,"y":39.757},{"x":1751271242958,"y":37.394},{"x":1751271182809,"y":37.659},{"x":1751271122656,"y":25.841},{"x":1751271062495,"y":36.842},{"x":1751271002349,"y":49.768},{"x":1751270942226,"y":50.284},{"x":1751270882044,"y":44.518},{"x":1751270821891,"y":46.801},{"x":1751270761740,"y":36.284},{"x":1751270701593,"y":46.648},{"x":1751270641423,"y":33.487},{"x":1751270581278,"y":22.294},{"x":1751270521140,"y":26.711},{"x":1751270460931,"y":23.948},{"x":1751270401031,"y":35.176},{"x":1751270340612,"y":20.23},{"x":1751270280459,"y":28.077},{"x":1751270220178,"y":30.788},{"x":1751270162907,"y":32.106},{"x":1751270102753,"y":30.127},{"x":1751270042606,"y":29.403},{"x":1751269982457,"y":22.257},{"x":1751269922299,"y":23.285},{"x":1751269862119,"y":26.334},{"x":1751269801954,"y":26.549},{"x":1751269741801,"y":33.335},{"x":1751269681682,"y":42.309},{"x":1751269621505,"y":40.179},{"x":1751269561354,"y":31.306},{"x":1751269501210,"y":37.345},{"x":1751269441024,"y":26.086},{"x":1751269380873,"y":24.744},{"x":1751269320722,"y":20.872},{"x":1751269260582,"y":31.948},{"x":1751269200451,"y":27.14},{"x":1751269140304,"y":22.581},{"x":1751269082954,"y":28.175},{"x":1751269022817,"y":32.356},{"x":1751268962643,"y":36.14},{"x":1751268902476,"y":32.514},{"x":1751268842330,"y":25.839},{"x":1751268782162,"y":28.622},{"x":1751268722003,"y":36.118},{"x":1751268661858,"y":18.382},{"x":1751268601706,"y":19.093},{"x":1751268541559,"y":28.522},{"x":1751268481413,"y":26.083},{"x":1751268421264,"y":28.399},{"x":1751268361143,"y":36.582},{"x":1751268300964,"y":30.118},{"x":1751268240786,"y":32.243},{"x":1751268180643,"y":43.629},{"x":1751268120487,"y":44.07},{"x":1751268060456,"y":40.141},{"x":1751268000129,"y":36.615},{"x":1751267942880,"y":30.66},{"x":1751267882743,"y":33.011},{"x":1751267822557,"y":29.442},{"x":1751267762399,"y":22.606},{"x":1751267702251,"y":33.276},{"x":1751267642112,"y":35.233},{"x":1751267581897,"y":35.247},{"x":1751267521739,"y":39.583},{"x":1751267461582,"y":40.292},{"x":1751267401424,"y":41.459},{"x":1751267341276,"y":35.488},{"x":1751267281116,"y":35.784},{"x":1751267220955,"y":38.39},{"x":1751267160799,"y":34.979},{"x":1751267100673,"y":33.899},{"x":1751267040608,"y":29.377},{"x":1751266980324,"y":27.576},{"x":1751266923018,"y":26.903},{"x":1751266862865,"y":25.334},{"x":1751266802697,"y":18.958},{"x":1751266742529,"y":19.465},{"x":1751266682381,"y":25.733},{"x":1751266622226,"y":19.234},{"x":1751266562079,"y":22.868},{"x":1751266501907,"y":21.531},{"x":1751266441752,"y":18.072},{"x":1751266381607,"y":22.922},{"x":1751266321449,"y":22.7},{"x":1751266261287,"y":28.553},{"x":1751266201056,"y":23.957},{"x":1751266140881,"y":30.076},{"x":1751266080739,"y":31.615},{"x":1751266020569,"y":29.019},{"x":1751265960464,"y":21.577},{"x":1751265900524,"y":20.302},{"x":1751265842965,"y":23.291},{"x":1751265782819,"y":16.009},{"x":1751265722669,"y":17.946},{"x":1751265662519,"y":17.359},{"x":1751265602359,"y":29.326},{"x":1751265542205,"y":20.146},{"x":1751265482049,"y":30.316},{"x":1751265421897,"y":23.7},{"x":1751265361742,"y":22.873},{"x":1751265301594,"y":19.641},{"x":1751265241431,"y":18.293},{"x":1751265181275,"y":29.375},{"x":1751265121125,"y":23.681},{"x":1751265060953,"y":21.182},{"x":1751265000903,"y":21.318},{"x":1751264940612,"y":23.118},{"x":1751264880462,"y":25.355},{"x":1751264820332,"y":32.596},{"x":1751264762980,"y":36.182},{"x":1751264702821,"y":32.461},{"x":1751264642668,"y":29.477},{"x":1751264582518,"y":27.924},{"x":1751264522357,"y":42.686},{"x":1751264462213,"y":33.224},{"x":1751264402026,"y":21.499},{"x":1751264341889,"y":18.228},{"x":1751264281681,"y":37.648},{"x":1751264221475,"y":24.381},{"x":1751264161326,"y":35.537},{"x":1751264101187,"y":34.565},{"x":1751264041014,"y":29.532},{"x":1751263980861,"y":30.097},{"x":1751263920761,"y":52.567},{"x":1751263860560,"y":42.072},{"x":1751263800514,"y":28.001},{"x":1751263740232,"y":39.55},{"x":1751263682931,"y":42.501},{"x":1751263622784,"y":43.185},{"x":1751263562623,"y":43.93},{"x":1751263502479,"y":22.195},{"x":1751263442325,"y":30.36},{"x":1751263382173,"y":29.888},{"x":1751263321989,"y":26.201},{"x":1751263261824,"y":28.809},{"x":1751263201743,"y":24.749},{"x":1751263141467,"y":15.684},{"x":1751263081310,"y":18.797},{"x":1751263021160,"y":18.374},{"x":1751262960998,"y":17.764},{"x":1751262900853,"y":17.028},{"x":1751262840695,"y":20.281},{"x":1751262780540,"y":22.392},{"x":1751262720408,"y":20.659},{"x":1751262660203,"y":18.996},{"x":1751262602944,"y":18.521},{"x":1751262542797,"y":16.549},{"x":1751262482643,"y":15.928},{"x":1751262422482,"y":15.82},{"x":1751262362330,"y":16.37},{"x":1751262302173,"y":16.589},{"x":1751262242026,"y":17.532},{"x":1751262181872,"y":23.86},{"x":1751262121719,"y":21.59},{"x":1751262061560,"y":28.279},{"x":1751262001412,"y":29.012},{"x":1751261941258,"y":33.48},{"x":1751261881109,"y":32.838},{"x":1751261820948,"y":37.075},{"x":1751261760794,"y":32.849},{"x":1751261700697,"y":29.692},{"x":1751261640493,"y":21.011},{"x":1751261580351,"y":23.224},{"x":1751261520212,"y":24.25},{"x":1751261462926,"y":20.035},{"x":1751261402772,"y":20.185},{"x":1751261342625,"y":18.644},{"x":1751261282463,"y":23.428},{"x":1751261222318,"y":19.592},{"x":1751261162166,"y":23.49},{"x":1751261102000,"y":19.033},{"x":1751261041862,"y":21.409},{"x":1751260981686,"y":19.054},{"x":1751260921548,"y":19.205},{"x":1751260861367,"y":22.083},{"x":1751260801220,"y":26.23},{"x":1751260741071,"y":20.429},{"x":1751260680884,"y":22.684},{"x":1751260620648,"y":23.923},{"x":1751260560500,"y":23.732},{"x":1751260500398,"y":24.626},{"x":1751260442965,"y":19.056},{"x":1751260382852,"y":20.04},{"x":1751260322663,"y":24.555},{"x":1751260262517,"y":20.302},{"x":1751260202344,"y":22.772},{"x":1751260142204,"y":24.149},{"x":1751260082008,"y":30.009},{"x":1751260021841,"y":28.143},{"x":1751259961702,"y":24.734},{"x":1751259901541,"y":24.378},{"x":1751259841393,"y":35.814},{"x":1751259781247,"y":34.657},{"x":1751259721083,"y":33.791},{"x":1751259660916,"y":35.039},{"x":1751259600904,"y":31.56},{"x":1751259540553,"y":30.229},{"x":1751259480400,"y":26.692},{"x":1751259420254,"y":24.629},{"x":1751259362968,"y":21.638},{"x":1751259302804,"y":24.656},{"x":1751259242660,"y":24.831},{"x":1751259182489,"y":29.896},{"x":1751259122329,"y":24.338},{"x":1751259062162,"y":22.624},{"x":1751259001992,"y":23.993},{"x":1751258941845,"y":24.318},{"x":1751258881687,"y":25.866},{"x":1751258821542,"y":25.669},{"x":1751258761367,"y":23.492},{"x":1751258701230,"y":20.498},{"x":1751258641026,"y":22.892},{"x":1751258580877,"y":23.891},{"x":1751258520723,"y":29.138},{"x":1751258460581,"y":24.392},{"x":1751258400544,"y":25.184},{"x":1751258340286,"y":23.459},{"x":1751258280106,"y":29.055},{"x":1751258222871,"y":24.864},{"x":1751258162728,"y":28.721},{"x":1751258102572,"y":25.43},{"x":1751258042426,"y":29.252},{"x":1751257982283,"y":22.241},{"x":1751257922140,"y":22.504},{"x":1751257861977,"y":24.684},{"x":1751257801823,"y":27.312},{"x":1751257741644,"y":25.121},{"x":1751257681498,"y":24.223},{"x":1751257621341,"y":27.804},{"x":1751257561191,"y":27.161},{"x":1751257501021,"y":30.406},{"x":1751257440852,"y":33.061},{"x":1751257380696,"y":36.796},{"x":1751257320550,"y":33.406},{"x":1751257260477,"y":32.937},{"x":1751257200211,"y":33.604},{"x":1751257142935,"y":28.799},{"x":1751257082758,"y":24.173},{"x":1751257022606,"y":24.802},{"x":1751256962456,"y":25.249},{"x":1751256902316,"y":26.919},{"x":1751256842166,"y":27.172},{"x":1751256782021,"y":24.855},{"x":1751256721869,"y":25.821},{"x":1751256661723,"y":25.166},{"x":1751256601603,"y":24.88},{"x":1751256541427,"y":27.545},{"x":1751256481270,"y":26.899},{"x":1751256421119,"y":25.727},{"x":1751256360954,"y":25.768},{"x":1751256300819,"y":25.814},{"x":1751256240663,"y":22.568},{"x":1751256180535,"y":24.824},{"x":1751256120372,"y":24.37},{"x":1751256060246,"y":27.967},{"x":1751256002910,"y":30.017},{"x":1751255942747,"y":37.989},{"x":1751255882578,"y":40.56},{"x":1751255822433,"y":42.868},{"x":1751255762262,"y":38.401},{"x":1751255702130,"y":39.036},{"x":1751255641962,"y":39.196},{"x":1751255581794,"y":25.107},{"x":1751255521636,"y":27.3},{"x":1751255461479,"y":23.448},{"x":1751255401333,"y":26.058},{"x":1751255341162,"y":23.77},{"x":1751255280993,"y":25.89},{"x":1751255220847,"y":28.159},{"x":1751255160694,"y":27.053},{"x":1751255100622,"y":26.847},{"x":1751255040448,"y":26.3},{"x":1751254980275,"y":24.79},{"x":1751254923016,"y":24.717},{"x":1751254862835,"y":27.848},{"x":1751254802702,"y":23.559},{"x":1751254742518,"y":33.187},{"x":1751254682368,"y":37.378},{"x":1751254622220,"y":38.534},{"x":1751254562073,"y":38.556},{"x":1751254501908,"y":37.863},{"x":1751254441761,"y":41.536},{"x":1751254381599,"y":34.24},{"x":1751254321450,"y":24.849},{"x":1751254261304,"y":24.517},{"x":1751254201159,"y":30.556},{"x":1751254140949,"y":24.568},{"x":1751254080800,"y":25.618},{"x":1751254020647,"y":26.737},{"x":1751253960504,"y":26.255},{"x":1751253900479,"y":24.015},{"x":1751253840234,"y":26.636},{"x":1751253782950,"y":27.367},{"x":1751253722802,"y":30.483},{"x":1751253662657,"y":32.111},{"x":1751253602508,"y":31.223},{"x":1751253542361,"y":36.792},{"x":1751253482188,"y":29.877},{"x":1751253422000,"y":36.036},{"x":1751253361841,"y":38.454},{"x":1751253301710,"y":34.83},{"x":1751253241557,"y":35.116},{"x":1751253181416,"y":33.853},{"x":1751253121272,"y":27.655},{"x":1751253061117,"y":28.594},{"x":1751253000965,"y":28.022},{"x":1751252940769,"y":30.021},{"x":1751252880627,"y":33.647},{"x":1751252820478,"y":31.754},{"x":1751252760345,"y":29.29},{"x":1751252700120,"y":28.407},{"x":1751252642393,"y":29.417},{"x":1751252582249,"y":34.395},{"x":1751252520912,"y":27.056},{"x":1751252460704,"y":33.553},{"x":1751252402212,"y":33.584},{"x":1751252342007,"y":35.479},{"x":1751252281856,"y":39.38},{"x":1751252221713,"y":39.667},{"x":1751252161566,"y":28.174},{"x":1751252101420,"y":26.087},{"x":1751252041268,"y":27.671},{"x":1751251981143,"y":24.613},{"x":1751251920961,"y":23.98},{"x":1751251860803,"y":37.605},{"x":1751251800694,"y":34.584},{"x":1751251740487,"y":37.333},{"x":1751251680412,"y":35.343},{"x":1751251620065,"y":39.665},{"x":1751251562898,"y":41.526},{"x":1751251502727,"y":30.15},{"x":1751251442583,"y":36.769},{"x":1751251382435,"y":32.257},{"x":1751251322289,"y":28.359},{"x":1751251262143,"y":28.587},{"x":1751251201965,"y":26.874},{"x":1751251141813,"y":26.534},{"x":1751251081672,"y":26.742},{"x":1751251021523,"y":26.065},{"x":1751250961378,"y":28.127},{"x":1751250901238,"y":31.621},{"x":1751250841087,"y":31.122},{"x":1751250780883,"y":26.558},{"x":1751250720737,"y":25.968},{"x":1751250660578,"y":28.742},{"x":1751250600520,"y":26.707},{"x":1751250540289,"y":32.805},{"x":1751250482987,"y":29.878},{"x":1751250422844,"y":29.85},{"x":1751250362690,"y":26.103},{"x":1751250302542,"y":24.734},{"x":1751250242387,"y":28.066},{"x":1751250182239,"y":29.529},{"x":1751250122095,"y":26.783},{"x":1751250061934,"y":44.84},{"x":1751250001792,"y":37.424},{"x":1751249941656,"y":36.786},{"x":1751249881486,"y":33.028},{"x":1751249821304,"y":34.815},{"x":1751249761124,"y":26.673},{"x":1751249700980,"y":27.543},{"x":1751249640821,"y":28.34},{"x":1751249580678,"y":30.666},{"x":1751249520552,"y":27.534},{"x":1751249460342,"y":29.924},{"x":1751249400254,"y":27.412},{"x":1751249342944,"y":27.999},{"x":1751249282789,"y":27.567},{"x":1751249222618,"y":35.722},{"x":1751249162467,"y":29.181},{"x":1751249102315,"y":26.299},{"x":1751249042169,"y":25.967},{"x":1751248982002,"y":34.187},{"x":1751248921861,"y":28.513},{"x":1751248861720,"y":25.136},{"x":1751248801606,"y":36.616},{"x":1751248741342,"y":38.971},{"x":1751248681190,"y":35.444},{"x":1751248621024,"y":34.812},{"x":1751248560880,"y":35.408},{"x":1751248500737,"y":24.467},{"x":1751248440580,"y":27.324},{"x":1751248380431,"y":23.577},{"x":1751248320276,"y":35.635},{"x":1751248262952,"y":37.522},{"x":1751248202808,"y":35.433},{"x":1751248142659,"y":38.768},{"x":1751248082511,"y":38.861},{"x":1751248022352,"y":25.096},{"x":1751247962198,"y":24.859},{"x":1751247902041,"y":27.029},{"x":1751247841893,"y":26.779},{"x":1751247781741,"y":25.165},{"x":1751247721596,"y":24.965},{"x":1751247661451,"y":33.159},{"x":1751247601301,"y":37.722},{"x":1751247541142,"y":32.446},{"x":1751247480977,"y":31.735},{"x":1751247420818,"y":29.856},{"x":1751247360686,"y":29.041},{"x":1751247300594,"y":27.591},{"x":1751247240296,"y":23.359},{"x":1751247182956,"y":23.003},{"x":1751247122816,"y":22.914},{"x":1751247062662,"y":24.052},{"x":1751247002508,"y":25.425},{"x":1751246942354,"y":32.158},{"x":1751246882211,"y":25.409},{"x":1751246822038,"y":28.333},{"x":1751246761869,"y":29.276},{"x":1751246701730,"y":27.774},{"x":1751246641580,"y":25.623},{"x":1751246581434,"y":31.863},{"x":1751246521300,"y":26.464},{"x":1751246461149,"y":25.233},{"x":1751246400996,"y":23.152},{"x":1751246340841,"y":24.397},{"x":1751246280686,"y":29.084},{"x":1751246220645,"y":25.36},{"x":1751246160388,"y":36.19},{"x":1751246103010,"y":38.283},{"x":1751246042860,"y":37.396},{"x":1751245982710,"y":40.642},{"x":1751245922562,"y":36.203},{"x":1751245862417,"y":25.644},{"x":1751245802272,"y":25.016},{"x":1751245742117,"y":26.592},{"x":1751245681953,"y":25.047},{"x":1751245621801,"y":27.327},{"x":1751245561645,"y":23.915},{"x":1751245501502,"y":23.092},{"x":1751245441357,"y":28.419},{"x":1751245381209,"y":29.178},{"x":1751245321047,"y":30.851},{"x":1751245260870,"y":32.828},{"x":1751245200884,"y":27.892},{"x":1751245140515,"y":27.396},{"x":1751245080357,"y":27.643},{"x":1751245020176,"y":23.901},{"x":1751244962903,"y":30.699},{"x":1751244902735,"y":25.35},{"x":1751244842585,"y":24.738},{"x":1751244782418,"y":35.826},{"x":1751244722267,"y":32.55},{"x":1751244662116,"y":34.414},{"x":1751244601953,"y":34.097},{"x":1751244541803,"y":36.6},{"x":1751244481610,"y":28.056},{"x":1751244421465,"y":27.587},{"x":1751244361318,"y":27.369},{"x":1751244301184,"y":29.547},{"x":1751244240996,"y":26.187},{"x":1751244180850,"y":26.103},{"x":1751244120696,"y":26.339},{"x":1751244060566,"y":30.452},{"x":1751244000423,"y":32.719},{"x":1751243940378,"y":29.062},{"x":1751243882944,"y":27.406},{"x":1751243822816,"y":25.409},{"x":1751243762644,"y":28.821},{"x":1751243702494,"y":30.048},{"x":1751243642344,"y":39.624},{"x":1751243582182,"y":39.721},{"x":1751243522027,"y":38.057},{"x":1751243461877,"y":36.37},{"x":1751243401733,"y":33.323},{"x":1751243341554,"y":26.096},{"x":1751243281390,"y":31.608},{"x":1751243221228,"y":33.412},{"x":1751243161079,"y":26.555},{"x":1751243100931,"y":25.682},{"x":1751243040769,"y":34.924},{"x":1751242980626,"y":37.943},{"x":1751242920467,"y":37.644},{"x":1751242860370,"y":27.887},{"x":1751242803011,"y":33.396},{"x":1751242742877,"y":33.048},{"x":1751242682673,"y":37.298},{"x":1751242622500,"y":36.633},{"x":1751242562353,"y":34.795},{"x":1751242502179,"y":39.512},{"x":1751242441989,"y":39.476},{"x":1751242381828,"y":38.278},{"x":1751242321689,"y":37.486},{"x":1751242261535,"y":36.103},{"x":1751242201395,"y":33.738},{"x":1751242141236,"y":34.939},{"x":1751242081071,"y":37.637},{"x":1751242020918,"y":37.375},{"x":1751241960757,"y":33.924},{"x":1751241900632,"y":25.929},{"x":1751241840491,"y":28.026},{"x":1751241780522,"y":28.369},{"x":1751241722989,"y":26.493},{"x":1751241662801,"y":25.029},{"x":1751241602653,"y":23.073},{"x":1751241542485,"y":29.296},{"x":1751241482343,"y":27.097},{"x":1751241422196,"y":26.901},{"x":1751241362041,"y":29.722},{"x":1751241301883,"y":28.431},{"x":1751241241738,"y":29.225},{"x":1751241181588,"y":27.529},{"x":1751241121435,"y":26.587},{"x":1751241061312,"y":30.833},{"x":1751241001128,"y":30.278},{"x":1751240940930,"y":27.138},{"x":1751240880787,"y":26.397},{"x":1751240820597,"y":25.383},{"x":1751240760487,"y":25.596},{"x":1751240700379,"y":30.402},{"x":1751240642967,"y":24.144},{"x":1751240582819,"y":27.504},{"x":1751240522673,"y":30.051},{"x":1751240462514,"y":23.575},{"x":1751240402354,"y":36.771},{"x":1751240342206,"y":29.505},{"x":1751240282047,"y":29.595},{"x":1751240221879,"y":31.601},{"x":1751240161726,"y":29.739},{"x":1751240101588,"y":28.125},{"x":1751240041430,"y":27.953},{"x":1751239981279,"y":27.294},{"x":1751239921087,"y":23.762},{"x":1751239860928,"y":23.953},{"x":1751239800827,"y":24.355},{"x":1751239740594,"y":31.236},{"x":1751239680423,"y":23.161},{"x":1751239620254,"y":23.616},{"x":1751239562987,"y":28.491},{"x":1751239502837,"y":28.002},{"x":1751239442698,"y":29.106},{"x":1751239382542,"y":28.227},{"x":1751239322395,"y":25.601},{"x":1751239262243,"y":27.505},{"x":1751239202077,"y":28.181},{"x":1751239141910,"y":25.824},{"x":1751239081778,"y":31.0},{"x":1751239021573,"y":27.06},{"x":1751238961424,"y":33.499},{"x":1751238901274,"y":33.779},{"x":1751238841118,"y":30.515},{"x":1751238780946,"y":29.162},{"x":1751238720800,"y":26.437},{"x":1751238660655,"y":24.909},{"x":1751238600587,"y":24.64},{"x":1751238540324,"y":25.783},{"x":1751238483015,"y":25.529},{"x":1751238422896,"y":28.409},{"x":1751238362716,"y":29.091},{"x":1751238302537,"y":23.753},{"x":1751238242386,"y":30.152},{"x":1751238182239,"y":29.246},{"x":1751238122085,"y":35.75},{"x":1751238061928,"y":33.792},{"x":1751238001798,"y":30.158},{"x":1751237941571,"y":28.66},{"x":1751237881415,"y":28.543},{"x":1751237821255,"y":25.608},{"x":1751237761097,"y":32.058},{"x":1751237700936,"y":25.591},{"x":1751237640776,"y":25.214},{"x":1751237580617,"y":27.233},{"x":1751237520479,"y":25.355},{"x":1751237460345,"y":34.609},{"x":1751237400113,"y":30.358},{"x":1751237342897,"y":29.436},{"x":1751237282741,"y":30.9},{"x":1751237222564,"y":27.706},{"x":1751237162388,"y":33.39},{"x":1751237102240,"y":25.468},{"x":1751237042088,"y":29.36},{"x":1751236981929,"y":29.163},{"x":1751236921773,"y":27.566},{"x":1751236861608,"y":38.771},{"x":1751236801457,"y":34.681},{"x":1751236741305,"y":34.121},{"x":1751236681155,"y":33.437},{"x":1751236620983,"y":32.244},{"x":1751236560842,"y":31.846},{"x":1751236500702,"y":28.307},{"x":1751236440539,"y":29.455},{"x":1751236380439,"y":28.901},{"x":1751236320639,"y":31.356},{"x":1751236262970,"y":25.599},{"x":1751236202841,"y":28.451},{"x":1751236142653,"y":25.538},{"x":1751236082494,"y":28.819},{"x":1751236022344,"y":33.949},{"x":1751235962189,"y":34.674},{"x":1751235902044,"y":39.382},{"x":1751235841880,"y":33.107},{"x":1751235781728,"y":30.202},{"x":1751235721564,"y":31.238},{"x":1751235661407,"y":35.782},{"x":1751235601271,"y":37.257},{"x":1751235541115,"y":27.627},{"x":1751235480968,"y":26.645},{"x":1751235420797,"y":26.904},{"x":1751235360646,"y":26.439},{"x":1751235300564,"y":33.772},{"x":1751235240336,"y":28.297},{"x":1751235182955,"y":33.354},{"x":1751235122812,"y":31.565},{"x":1751235062638,"y":29.91},{"x":1751235002487,"y":33.341},{"x":1751234942334,"y":27.31},{"x":1751234882189,"y":28.75},{"x":1751234822039,"y":29.273},{"x":1751234761884,"y":31.796},{"x":1751234701719,"y":30.235},{"x":1751234641562,"y":31.77},{"x":1751234581400,"y":32.264},{"x":1751234521257,"y":31.035},{"x":1751234461116,"y":30.442},{"x":1751234401145,"y":29.884},{"x":1751234340722,"y":30.92},{"x":1751234280587,"y":31.581},{"x":1751234220416,"y":32.825},{"x":1751234160296,"y":29.909},{"x":1751234103006,"y":29.023},{"x":1751234042854,"y":30.071},{"x":1751233982706,"y":36.574},{"x":1751233922565,"y":33.541},{"x":1751233862411,"y":35.699},{"x":1751233802275,"y":33.582},{"x":1751233742108,"y":32.128},{"x":1751233681937,"y":44.333},{"x":1751233621794,"y":43.988},{"x":1751233561637,"y":44.026},{"x":1751233501498,"y":42.592},{"x":1751233441345,"y":42.061},{"x":1751233381203,"y":41.066},{"x":1751233321049,"y":32.548},{"x":1751233260899,"y":32.003},{"x":1751233200744,"y":34.243},{"x":1751233140546,"y":31.991},{"x":1751233080352,"y":31.249},{"x":1751233020250,"y":35.855},{"x":1751232962968,"y":32.761},{"x":1751232902820,"y":30.277},{"x":1751232842662,"y":30.778},{"x":1751232782512,"y":31.04},{"x":1751232722362,"y":34.739},{"x":1751232662210,"y":32.658},{"x":1751232602058,"y":31.062},{"x":1751232541909,"y":32.417},{"x":1751232481758,"y":31.351},{"x":1751232421608,"y":33.169},{"x":1751232361452,"y":32.129},{"x":1751232301310,"y":29.358},{"x":1751232241138,"y":29.427},{"x":1751232180979,"y":29.665},{"x":1751232120839,"y":32.671},{"x":1751232060690,"y":34.724},{"x":1751232000577,"y":31.266},{"x":1751231940292,"y":33.136},{"x":1751231880229,"y":32.859},{"x":1751231822865,"y":32.287},{"x":1751231762673,"y":32.281},{"x":1751231702507,"y":42.984},{"x":1751231642361,"y":32.228},{"x":1751231582213,"y":33.485},{"x":1751231522058,"y":33.669},{"x":1751231461891,"y":36.892},{"x":1751231401744,"y":31.103},{"x":1751231341571,"y":41.948},{"x":1751231281391,"y":35.262},{"x":1751231221232,"y":35.271},{"x":1751231161077,"y":45.906},{"x":1751231100932,"y":40.367},{"x":1751231040781,"y":42.601},{"x":1751230980676,"y":29.553},{"x":1751230920503,"y":31.286},{"x":1751230860351,"y":37.053},{"x":1751230800147,"y":30.626},{"x":1751230742899,"y":28.515},{"x":1751230682753,"y":27.803},{"x":1751230622607,"y":27.463},{"x":1751230562491,"y":30.905},{"x":1751230502310,"y":38.888},{"x":1751230442159,"y":36.495},{"x":1751230381984,"y":38.632},{"x":1751230321844,"y":33.159},{"x":1751230261678,"y":36.208},{"x":1751230201516,"y":31.66},{"x":1751230141367,"y":29.996},{"x":1751230081225,"y":30.319},{"x":1751230021076,"y":33.263},{"x":1751229960946,"y":30.195},{"x":1751229900843,"y":32.393},{"x":1751229840624,"y":30.499},{"x":1751229780483,"y":41.736},{"x":1751229720298,"y":39.269},{"x":1751229662985,"y":39.971},{"x":1751229602822,"y":42.995},{"x":1751229542662,"y":38.144},{"x":1751229482508,"y":35.596},{"x":1751229422369,"y":30.075},{"x":1751229362197,"y":30.665},{"x":1751229302035,"y":30.474},{"x":1751229241882,"y":31.813},{"x":1751229181747,"y":32.798},{"x":1751229121579,"y":36.763},{"x":1751229061423,"y":33.803},{"x":1751229001286,"y":35.287},{"x":1751228941138,"y":40.628},{"x":1751228880967,"y":38.828},{"x":1751228820824,"y":28.57},{"x":1751228760659,"y":29.834},{"x":1751228700516,"y":31.182},{"x":1751228640417,"y":44.729},{"x":1751228580275,"y":46.713},{"x":1751228522880,"y":50.248},{"x":1751228462732,"y":55.521},{"x":1751228402578,"y":52.97},{"x":1751228342428,"y":44.802},{"x":1751228282286,"y":55.785},{"x":1751228222075,"y":43.209},{"x":1751228161916,"y":40.803},{"x":1751228101745,"y":49.737},{"x":1751228041593,"y":42.469},{"x":1751227981441,"y":42.4},{"x":1751227921284,"y":47.77},{"x":1751227861129,"y":49.511},{"x":1751227800964,"y":43.862},{"x":1751227740809,"y":43.915},{"x":1751227680670,"y":66.748},{"x":1751227620503,"y":61.31},{"x":1751227560430,"y":45.312},{"x":1751227500183,"y":48.083},{"x":1751227442908,"y":47.248},{"x":1751227382748,"y":42.204},{"x":1751227322607,"y":40.5},{"x":1751227262448,"y":44.403},{"x":1751227202272,"y":37.386},{"x":1751227142112,"y":37.206},{"x":1751227081957,"y":41.909},{"x":1751227021801,"y":40.647},{"x":1751226961658,"y":41.69},{"x":1751226901499,"y":47.109},{"x":1751226841338,"y":58.391},{"x":1751226781198,"y":50.988},{"x":1751226721029,"y":56.706},{"x":1751226660875,"y":55.006},{"x":1751226600759,"y":45.596},{"x":1751226540572,"y":55.963},{"x":1751226480458,"y":43.869},{"x":1751226420256,"y":40.017},{"x":1751226362984,"y":48.036},{"x":1751226302854,"y":43.246},{"x":1751226242680,"y":53.774},{"x":1751226182524,"y":45.208},{"x":1751226122386,"y":65.064},{"x":1751226062228,"y":56.969},{"x":1751226002087,"y":50.8},{"x":1751225941934,"y":52.541},{"x":1751225881798,"y":50.211},{"x":1751225821650,"y":41.122},{"x":1751225761505,"y":45.098},{"x":1751225701357,"y":38.416},{"x":1751225641210,"y":43.84},{"x":1751225581045,"y":44.704},{"x":1751225520886,"y":37.355},{"x":1751225460726,"y":43.716},{"x":1751225400676,"y":52.656},{"x":1751225340320,"y":49.784},{"x":1751225280402,"y":48.887},{"x":1751225222953,"y":54.206},{"x":1751225162808,"y":51.521},{"x":1751225102660,"y":47.876},{"x":1751225042508,"y":44.392},{"x":1751224982355,"y":36.445},{"x":1751224922210,"y":40.156},{"x":1751224862063,"y":41.795},{"x":1751224801901,"y":38.776},{"x":1751224741736,"y":38.318},{"x":1751224681540,"y":52.892},{"x":1751224621317,"y":42.514},{"x":1751224561142,"y":48.851},{"x":1751224500982,"y":61.226},{"x":1751224440818,"y":51.753},{"x":1751224380674,"y":52.754},{"x":1751224320525,"y":51.091},{"x":1751224260324,"y":46.415},{"x":1751224202989,"y":40.008},{"x":1751224142846,"y":38.614},{"x":1751224082698,"y":51.052},{"x":1751224022539,"y":36.265},{"x":1751223962385,"y":36.761},{"x":1751223902237,"y":51.055},{"x":1751223842081,"y":50.666},{"x":1751223781914,"y":52.468},{"x":1751223721760,"y":67.953},{"x":1751223661618,"y":44.107},{"x":1751223601590,"y":47.382},{"x":1751223541291,"y":36.868},{"x":1751223481139,"y":48.351},{"x":1751223420957,"y":35.63},{"x":1751223360819,"y":33.393},{"x":1751223300679,"y":39.164},{"x":1751223240520,"y":38.825},{"x":1751223180358,"y":55.28},{"x":1751223120107,"y":49.407},{"x":1751223062879,"y":49.618},{"x":1751223002723,"y":44.281},{"x":1751222942575,"y":39.974},{"x":1751222882412,"y":29.818},{"x":1751222822278,"y":38.216},{"x":1751222762134,"y":27.542},{"x":1751222701950,"y":25.328},{"x":1751222641812,"y":25.472},{"x":1751222581664,"y":52.413},{"x":1751222521518,"y":46.156},{"x":1751222461346,"y":49.53},{"x":1751222401197,"y":40.926},{"x":1751222341015,"y":38.011},{"x":1751222280863,"y":39.33},{"x":1751222220634,"y":37.448},{"x":1751222160597,"y":31.466},{"x":1751222100328,"y":34.124},{"x":1751222040055,"y":34.896},{"x":1751221982883,"y":27.351},{"x":1751221922727,"y":36.173},{"x":1751221862573,"y":35.338},{"x":1751221802407,"y":34.923},{"x":1751221742257,"y":41.1},{"x":1751221682111,"y":46.033},{"x":1751221621944,"y":32.249},{"x":1751221561802,"y":41.656},{"x":1751221501655,"y":32.921},{"x":1751221441496,"y":36.092},{"x":1751221381330,"y":41.5},{"x":1751221321161,"y":50.981},{"x":1751221261008,"y":33.594},{"x":1751221200868,"y":32.165},{"x":1751221140681,"y":34.23},{"x":1751221080580,"y":27.899},{"x":1751221020458,"y":36.778},{"x":1751220960275,"y":24.036},{"x":1751220902952,"y":30.699},{"x":1751220842793,"y":37.781},{"x":1751220782637,"y":39.887},{"x":1751220722497,"y":35.58},{"x":1751220662343,"y":36.998},{"x":1751220602200,"y":41.197},{"x":1751220542052,"y":33.822},{"x":1751220481891,"y":36.443},{"x":1751220421741,"y":26.428},{"x":1751220361583,"y":29.12},{"x":1751220301454,"y":36.57},{"x":1751220241285,"y":42.458},{"x":1751220181138,"y":40.722},{"x":1751220120982,"y":37.068},{"x":1751220060825,"y":37.089},{"x":1751220000725,"y":25.399},{"x":1751219940506,"y":28.902},{"x":1751219880405,"y":28.134},{"x":1751219820139,"y":30.361},{"x":1751219762893,"y":41.584},{"x":1751219702731,"y":40.447},{"x":1751219642597,"y":35.146},{"x":1751219582436,"y":40.258},{"x":1751219522294,"y":37.186},{"x":1751219462144,"y":25.002},{"x":1751219401983,"y":28.485},{"x":1751219341838,"y":34.336},{"x":1751219281682,"y":31.368},{"x":1751219221515,"y":26.865},{"x":1751219161365,"y":37.072},{"x":1751219101230,"y":41.078},{"x":1751219041063,"y":34.491},{"x":1751218980894,"y":39.672},{"x":1751218920752,"y":32.923},{"x":1751218860612,"y":23.394},{"x":1751218800459,"y":25.267},{"x":1751218740295,"y":28.769},{"x":1751218680119,"y":26.459},{"x":1751218622857,"y":34.283},{"x":1751218562708,"y":34.918},{"x":1751218502562,"y":53.734},{"x":1751218442414,"y":43.434},{"x":1751218382262,"y":39.078},{"x":1751218322109,"y":23.636},{"x":1751218261943,"y":32.212},{"x":1751218201795,"y":30.37},{"x":1751218141634,"y":29.742},{"x":1751218081492,"y":32.012},{"x":1751218021357,"y":36.627},{"x":1751217961204,"y":50.325},{"x":1751217901050,"y":44.679},{"x":1751217840896,"y":27.233},{"x":1751217780740,"y":29.781},{"x":1751217720602,"y":33.525},{"x":1751217660463,"y":32.733},{"x":1751217600383,"y":35.196},{"x":1751217543015,"y":38.771},{"x":1751217482887,"y":40.332},{"x":1751217422691,"y":36.788},{"x":1751217362527,"y":20.837},{"x":1751217302348,"y":20.305},{"x":1751217242198,"y":22.17},{"x":1751217182050,"y":27.93},{"x":1751217121899,"y":47.579},{"x":1751217061747,"y":34.869},{"x":1751217001606,"y":46.515},{"x":1751216941433,"y":37.904},{"x":1751216881299,"y":42.402},{"x":1751216821139,"y":27.806},{"x":1751216760980,"y":42.807},{"x":1751216700838,"y":47.617},{"x":1751216640674,"y":38.258},{"x":1751216580523,"y":38.465},{"x":1751216520363,"y":32.438},{"x":1751216460287,"y":32.663},{"x":1751216402944,"y":36.504},{"x":1751216342765,"y":38.883},{"x":1751216282604,"y":32.157},{"x":1751216222450,"y":37.733},{"x":1751216162283,"y":37.158},{"x":1751216102126,"y":39.009},{"x":1751216041980,"y":66.072},{"x":1751215981828,"y":48.658},{"x":1751215921678,"y":58.161},{"x":1751215861538,"y":57.638},{"x":1751215801377,"y":43.398},{"x":1751215741234,"y":24.665},{"x":1751215681075,"y":39.396},{"x":1751215620889,"y":33.843},{"x":1751215560756,"y":24.25},{"x":1751215500730,"y":33.577},{"x":1751215440445,"y":38.354},{"x":1751215380270,"y":49.482},{"x":1751215322949,"y":43.303},{"x":1751215262801,"y":36.292},{"x":1751215202661,"y":39.684},{"x":1751215142511,"y":25.366},{"x":1751215082329,"y":31.973},{"x":1751215022177,"y":26.387},{"x":1751214962019,"y":39.828},{"x":1751214901867,"y":33.671},{"x":1751214841701,"y":29.856},{"x":1751214781548,"y":36.394},{"x":1751214721406,"y":33.536},{"x":1751214661251,"y":30.883},{"x":1751214601093,"y":31.299},{"x":1751214540928,"y":30.948},{"x":1751214480777,"y":49.854},{"x":1751214420610,"y":35.202},{"x":1751214360484,"y":34.032},{"x":1751214300376,"y":38.94},{"x":1751214240056,"y":46.204},{"x":1751214182877,"y":38.072},{"x":1751214122719,"y":39.621},{"x":1751214062570,"y":33.117},{"x":1751214002419,"y":34.591},{"x":1751213942272,"y":33.541},{"x":1751213882070,"y":34.896},{"x":1751213821879,"y":49.186},{"x":1751213761704,"y":64.722},{"x":1751213701549,"y":28.562},{"x":1751213641399,"y":27.791},{"x":1751213581256,"y":19.63},{"x":1751213521111,"y":24.492},{"x":1751213460938,"y":42.154},{"x":1751213400790,"y":36.767},{"x":1751213340629,"y":44.19},{"x":1751213280493,"y":41.535},{"x":1751213220461,"y":41.782},{"x":1751213160228,"y":33.485},{"x":1751213102950,"y":25.751},{"x":1751213042814,"y":24.897},{"x":1751212982658,"y":45.573},{"x":1751212922503,"y":40.215},{"x":1751212862347,"y":31.944},{"x":1751212802207,"y":32.27},{"x":1751212742033,"y":34.776},{"x":1751212681872,"y":34.577},{"x":1751212621766,"y":31.421},{"x":1751212561568,"y":32.233},{"x":1751212501398,"y":26.964},{"x":1751212441237,"y":47.04},{"x":1751212381060,"y":43.112},{"x":1751212320901,"y":35.034},{"x":1751212260755,"y":42.607},{"x":1751212200621,"y":36.008},{"x":1751212140493,"y":26.648},{"x":1751212080365,"y":26.818},{"x":1751212020076,"y":31.835},{"x":1751211962878,"y":29.3},{"x":1751211902721,"y":27.938},{"x":1751211842564,"y":40.32},{"x":1751211782415,"y":32.235},{"x":1751211722263,"y":49.141},{"x":1751211662120,"y":38.215},{"x":1751211601953,"y":29.617},{"x":1751211541797,"y":41.064},{"x":1751211481648,"y":33.293},{"x":1751211421493,"y":42.901},{"x":1751211361336,"y":46.743},{"x":1751211301189,"y":43.01},{"x":1751211240996,"y":39.534},{"x":1751211180841,"y":32.893},{"x":1751211120707,"y":48.059},{"x":1751211060548,"y":8.663},{"x":1751211000559,"y":35.692},{"x":1751210940207,"y":30.85},{"x":1751210882903,"y":45.952},{"x":1751210822741,"y":34.258},{"x":1751210762577,"y":30.821},{"x":1751210702425,"y":39.279},{"x":1751210642281,"y":36.514},{"x":1751210582128,"y":46.177},{"x":1751210521962,"y":39.526},{"x":1751210461802,"y":29.057},{"x":1751210401682,"y":39.166},{"x":1751210341509,"y":43.119},{"x":1751210281348,"y":38.644},{"x":1751210221135,"y":46.329},{"x":1751210160969,"y":31.878},{"x":1751210100841,"y":27.006},{"x":1751210040662,"y":33.568},{"x":1751209980576,"y":23.2},{"x":1751209920381,"y":28.0},{"x":1751209860140,"y":43.826},{"x":1751209802913,"y":40.56},{"x":1751209742730,"y":46.631},{"x":1751209682573,"y":29.564},{"x":1751209622430,"y":41.713},{"x":1751209562271,"y":25.539},{"x":1751209502115,"y":22.73},{"x":1751209441962,"y":28.055},{"x":1751209381804,"y":52.596},{"x":1751209321669,"y":44.086},{"x":1751209261507,"y":41.258},{"x":1751209201422,"y":38.038},{"x":1751209141163,"y":36.075},{"x":1751209081001,"y":29.85},{"x":1751209020855,"y":21.382},{"x":1751208960717,"y":42.074},{"x":1751208900653,"y":26.454},{"x":1751208840388,"y":48.348},{"x":1751208780210,"y":36.65},{"x":1751208722942,"y":33.296},{"x":1751208662784,"y":37.675},{"x":1751208602635,"y":46.767},{"x":1751208542480,"y":37.66},{"x":1751208482339,"y":29.408},{"x":1751208422183,"y":45.793},{"x":1751208362007,"y":28.811},{"x":1751208301856,"y":33.3},{"x":1751208241702,"y":31.545},{"x":1751208181515,"y":39.656},{"x":1751208121370,"y":37.214},{"x":1751208061226,"y":41.013},{"x":1751208001075,"y":32.322},{"x":1751207940888,"y":29.469},{"x":1751207880750,"y":27.297},{"x":1751207820601,"y":28.427},{"x":1751207760500,"y":41.367},{"x":1751207700429,"y":40.993},{"x":1751207640109,"y":51.873},{"x":1751207582902,"y":33.433},{"x":1751207522763,"y":54.623},{"x":1751207462615,"y":48.349},{"x":1751207402455,"y":26.382},{"x":1751207342304,"y":33.189},{"x":1751207282155,"y":29.223},{"x":1751207221996,"y":52.01},{"x":1751207161843,"y":48.905},{"x":1751207101700,"y":41.472},{"x":1751207041538,"y":35.1},{"x":1751206981404,"y":35.982},{"x":1751206921249,"y":45.198},{"x":1751206861093,"y":39.323},{"x":1751206800939,"y":22.994},{"x":1751206740775,"y":28.202},{"x":1751206680634,"y":36.915},{"x":1751206620439,"y":31.599},{"x":1751206560310,"y":38.775},{"x":1751206503002,"y":48.144},{"x":1751206442859,"y":30.686},{"x":1751206382712,"y":41.897},{"x":1751206322549,"y":29.619},{"x":1751206262398,"y":29.55},{"x":1751206202251,"y":43.208},{"x":1751206142080,"y":39.707},{"x":1751206081924,"y":40.589},{"x":1751206021765,"y":35.05},{"x":1751205961599,"y":35.459},{"x":1751205901460,"y":47.044},{"x":1751205841299,"y":44.64},{"x":1751205781138,"y":31.648},{"x":1751205720955,"y":43.884},{"x":1751205660784,"y":17.163},{"x":1751205600676,"y":34.483},{"x":1751205540407,"y":41.897},{"x":1751205480212,"y":40.792},{"x":1751205422916,"y":29.155},{"x":1751205362775,"y":36.904},{"x":1751205302626,"y":36.531},{"x":1751205242474,"y":25.431},{"x":1751205182326,"y":21.613},{"x":1751205122175,"y":34.972},{"x":1751205061988,"y":33.884},{"x":1751205001841,"y":31.231},{"x":1751204941695,"y":37.51},{"x":1751204881542,"y":50.481},{"x":1751204821402,"y":51.864},{"x":1751204761255,"y":56.017},{"x":1751204701102,"y":23.051},{"x":1751204640942,"y":22.857},{"x":1751204580785,"y":26.935},{"x":1751204520645,"y":27.322},{"x":1751204460492,"y":40.848},{"x":1751204400404,"y":34.904},{"x":1751204340180,"y":44.506},{"x":1751204282922,"y":33.282},{"x":1751204222782,"y":35.085},{"x":1751204162657,"y":18.065},{"x":1751204102464,"y":24.04},{"x":1751204042315,"y":16.148},{"x":1751203982168,"y":42.002},{"x":1751203921999,"y":37.047},{"x":1751203861885,"y":41.375},{"x":1751203801683,"y":34.671},{"x":1751203741533,"y":37.997},{"x":1751203681390,"y":36.189},{"x":1751203621243,"y":25.627},{"x":1751203561093,"y":31.196},{"x":1751203500928,"y":24.485},{"x":1751203440772,"y":41.372},{"x":1751203380622,"y":37.872},{"x":1751203320485,"y":40.947},{"x":1751203260344,"y":49.488},{"x":1751203200246,"y":37.536},{"x":1751203142953,"y":51.522},{"x":1751203082817,"y":34.534},{"x":1751203022631,"y":28.79},{"x":1751202962474,"y":26.226},{"x":1751202902317,"y":29.627},{"x":1751202842174,"y":30.226},{"x":1751202781993,"y":47.735},{"x":1751202721845,"y":48.733},{"x":1751202661696,"y":40.241},{"x":1751202601539,"y":32.557},{"x":1751202541387,"y":26.974},{"x":1751202481231,"y":27.19},{"x":1751202421075,"y":38.597},{"x":1751202360927,"y":25.226},{"x":1751202300777,"y":33.052},{"x":1751202240638,"y":36.672},{"x":1751202180471,"y":30.461},{"x":1751202120382,"y":25.533},{"x":1751202063034,"y":32.254},{"x":1751202002889,"y":22.52},{"x":1751201942716,"y":26.265},{"x":1751201882561,"y":39.625},{"x":1751201822403,"y":53.979},{"x":1751201762254,"y":32.56},{"x":1751201702097,"y":39.339},{"x":1751201641939,"y":33.54},{"x":1751201581790,"y":42.545},{"x":1751201521642,"y":21.299},{"x":1751201461499,"y":32.564},{"x":1751201401345,"y":31.891},{"x":1751201341195,"y":39.738},{"x":1751201281031,"y":34.522},{"x":1751201220878,"y":31.284},{"x":1751201160737,"y":18.86},{"x":1751201100756,"y":28.091},{"x":1751201040472,"y":40.482},{"x":1751200980245,"y":35.633},{"x":1751200922937,"y":33.382},{"x":1751200862815,"y":21.012},{"x":1751200802657,"y":57.903},{"x":1751200742486,"y":25.124},{"x":1751200682323,"y":22.966},{"x":1751200622145,"y":26.805},{"x":1751200561992,"y":49.711},{"x":1751200501817,"y":31.99},{"x":1751200441670,"y":22.419},{"x":1751200381513,"y":27.231},{"x":1751200321374,"y":23.167},{"x":1751200261220,"y":43.065},{"x":1751200201078,"y":38.753},{"x":1751200140886,"y":29.757},{"x":1751200080741,"y":30.792},{"x":1751200020599,"y":32.541},{"x":1751199960467,"y":35.579},{"x":1751199900330,"y":33.821},{"x":1751199843027,"y":34.229},{"x":1751199782868,"y":35.26},{"x":1751199722729,"y":32.936},{"x":1751199662575,"y":32.756},{"x":1751199602420,"y":33.618},{"x":1751199542274,"y":30.154},{"x":1751199482105,"y":36.659},{"x":1751199421907,"y":37.465},{"x":1751199361755,"y":23.031},{"x":1751199301622,"y":34.378},{"x":1751199241447,"y":35.372},{"x":1751199181287,"y":53.36},{"x":1751199121157,"y":37.655},{"x":1751199060982,"y":47.285},{"x":1751199000855,"y":35.444},{"x":1751198940684,"y":29.471},{"x":1751198880548,"y":39.147},{"x":1751198820377,"y":27.323},{"x":1751198760278,"y":29.888},{"x":1751198702982,"y":36.268},{"x":1751198642841,"y":51.718},{"x":1751198582689,"y":54.825},{"x":1751198522542,"y":34.845},{"x":1751198462390,"y":32.961},{"x":1751198402250,"y":29.593},{"x":1751198342101,"y":29.399},{"x":1751198281933,"y":34.181},{"x":1751198221622,"y":43.108},{"x":1751198161448,"y":46.221},{"x":1751198101294,"y":45.223},{"x":1751198041148,"y":35.558},{"x":1751197980989,"y":38.093},{"x":1751197920839,"y":23.931},{"x":1751197860686,"y":21.026},{"x":1751197800658,"y":22.721},{"x":1751197740378,"y":18.161},{"x":1751197680288,"y":40.401},{"x":1751197623007,"y":35.29},{"x":1751197562851,"y":33.937},{"x":1751197502678,"y":50.772},{"x":1751197442557,"y":31.943},{"x":1751197382381,"y":38.065},{"x":1751197322228,"y":27.06},{"x":1751197262075,"y":33.061},{"x":1751197201915,"y":28.049},{"x":1751197141764,"y":34.106},{"x":1751197081602,"y":44.657},{"x":1751197021445,"y":43.292},{"x":1751196961296,"y":30.556},{"x":1751196901144,"y":37.626},{"x":1751196840982,"y":21.388},{"x":1751196780833,"y":17.945},{"x":1751196720690,"y":18.363},{"x":1751196660525,"y":33.625},{"x":1751196600493,"y":22.629},{"x":1751196540200,"y":20.938},{"x":1751196482901,"y":20.395},{"x":1751196422682,"y":34.598},{"x":1751196362514,"y":39.47},{"x":1751196302370,"y":45.511},{"x":1751196242211,"y":27.383},{"x":1751196182055,"y":35.933},{"x":1751196121893,"y":25.649},{"x":1751196061743,"y":30.087},{"x":1751196001599,"y":55.687},{"x":1751195941482,"y":40.02},{"x":1751195881316,"y":40.575},{"x":1751195821106,"y":45.097},{"x":1751195760939,"y":28.197},{"x":1751195700808,"y":21.307},{"x":1751195640622,"y":39.708},{"x":1751195580502,"y":41.885},{"x":1751195520319,"y":48.205},{"x":1751195460065,"y":44.645},{"x":1751195402882,"y":54.064},{"x":1751195342731,"y":32.277},{"x":1751195282596,"y":26.458},{"x":1751195222442,"y":26.677},{"x":1751195162298,"y":30.562},{"x":1751195102149,"y":22.265},{"x":1751195041985,"y":37.768},{"x":1751194981824,"y":34.784},{"x":1751194921667,"y":42.095},{"x":1751194861531,"y":44.871},{"x":1751194801397,"y":47.681},{"x":1751194741189,"y":29.679},{"x":1751194681014,"y":30.852},{"x":1751194620864,"y":28.639},{"x":1751194560706,"y":15.65},{"x":1751194500588,"y":33.219},{"x":1751194440411,"y":28.329},{"x":1751194380279,"y":32.144},{"x":1751194322962,"y":39.74},{"x":1751194262815,"y":33.074},{"x":1751194202664,"y":25.469},{"x":1751194142525,"y":28.588},{"x":1751194082368,"y":30.808},{"x":1751194022217,"y":40.13},{"x":1751193962057,"y":26.708},{"x":1751193901902,"y":45.311},{"x":1751193841755,"y":47.969},{"x":1751193781602,"y":46.308},{"x":1751193721454,"y":30.935},{"x":1751193661295,"y":32.922},{"x":1751193601147,"y":26.043},{"x":1751193540974,"y":25.234},{"x":1751193480837,"y":42.425},{"x":1751193420670,"y":35.803},{"x":1751193360553,"y":46.346},{"x":1751193300376,"y":41.783},{"x":1751193240211,"y":37.182},{"x":1751193182948,"y":20.435},{"x":1751193122803,"y":26.87},{"x":1751193062650,"y":15.283},{"x":1751193002494,"y":35.503},{"x":1751192942340,"y":34.725},{"x":1751192882193,"y":38.925},{"x":1751192822032,"y":45.954},{"x":1751192761876,"y":29.042},{"x":1751192701733,"y":14.78},{"x":1751192641591,"y":29.947},{"x":1751192581426,"y":25.468},{"x":1751192521282,"y":23.664},{"x":1751192461133,"y":34.082},{"x":1751192400948,"y":39.876},{"x":1751192340790,"y":55.325},{"x":1751192280635,"y":41.126},{"x":1751192220448,"y":36.353},{"x":1751192160318,"y":49.041},{"x":1751192103011,"y":26.991},{"x":1751192042848,"y":20.146},{"x":1751191982697,"y":29.089},{"x":1751191922553,"y":47.675},{"x":1751191862393,"y":37.872},{"x":1751191802245,"y":39.535},{"x":1751191742090,"y":40.427},{"x":1751191681934,"y":28.171},{"x":1751191621770,"y":26.73},{"x":1751191561614,"y":23.958},{"x":1751191501455,"y":44.298},{"x":1751191441306,"y":32.922},{"x":1751191381160,"y":37.302},{"x":1751191320987,"y":37.575},{"x":1751191260825,"y":16.75},{"x":1751191200772,"y":35.62},{"x":1751191140500,"y":39.452},{"x":1751191080364,"y":36.281},{"x":1751191020159,"y":24.909},{"x":1751190962920,"y":21.959},{"x":1751190902770,"y":23.281},{"x":1751190842605,"y":35.16},{"x":1751190782450,"y":39.341},{"x":1751190722305,"y":56.173},{"x":1751190662147,"y":36.303},{"x":1751190601978,"y":40.019},{"x":1751190541835,"y":39.589},{"x":1751190481689,"y":24.39},{"x":1751190421518,"y":29.323},{"x":1751190361374,"y":34.54},{"x":1751190301228,"y":33.361},{"x":1751190241064,"y":32.256},{"x":1751190180915,"y":35.153},{"x":1751190120747,"y":45.734},{"x":1751190060570,"y":47.83},{"x":1751190000485,"y":47.056},{"x":1751189940304,"y":35.778},{"x":1751189880118,"y":29.272},{"x":1751189822876,"y":20.576},{"x":1751189762713,"y":30.503},{"x":1751189702568,"y":35.635},{"x":1751189642401,"y":36.327},{"x":1751189582266,"y":47.045},{"x":1751189522103,"y":44.355},{"x":1751189461946,"y":40.921},{"x":1751189401791,"y":23.006},{"x":1751189341634,"y":25.588},{"x":1751189281472,"y":36.273},{"x":1751189221321,"y":33.233},{"x":1751189161152,"y":29.537},{"x":1751189100984,"y":36.49},{"x":1751189040836,"y":36.942},{"x":1751188980698,"y":24.53},{"x":1751188920568,"y":29.838},{"x":1751188860389,"y":39.775},{"x":1751188800258,"y":29.941},{"x":1751188742966,"y":27.526},{"x":1751188682799,"y":34.28},{"x":1751188622608,"y":40.552},{"x":1751188562438,"y":43.3},{"x":1751188502294,"y":42.451},{"x":1751188442124,"y":50.475},{"x":1751188381956,"y":47.805},{"x":1751188321811,"y":52.241},{"x":1751188261652,"y":27.098},{"x":1751188201500,"y":39.374},{"x":1751188141347,"y":34.055},{"x":1751188081204,"y":34.22},{"x":1751188021018,"y":35.424},{"x":1751187960858,"y":46.498},{"x":1751187900700,"y":40.644},{"x":1751187840598,"y":35.442},{"x":1751187780260,"y":35.527},{"x":1751187720035,"y":35.526},{"x":1751187662912,"y":19.91},{"x":1751187602700,"y":34.884},{"x":1751187542536,"y":19.594},{"x":1751187482384,"y":43.405},{"x":1751187422217,"y":39.541},{"x":1751187362058,"y":46.423},{"x":1751187301901,"y":44.505},{"x":1751187241741,"y":32.241},{"x":1751187181596,"y":32.73},{"x":1751187121428,"y":38.819},{"x":1751187061281,"y":45.027},{"x":1751187001104,"y":40.827},{"x":1751186940912,"y":32.434},{"x":1751186880765,"y":43.572},{"x":1751186820584,"y":43.142},{"x":1751186760487,"y":47.655},{"x":1751186700323,"y":44.585},{"x":1751186642977,"y":47.865},{"x":1751186582839,"y":33.213},{"x":1751186522695,"y":44.766},{"x":1751186462536,"y":48.924},{"x":1751186402386,"y":47.31},{"x":1751186342231,"y":68.228},{"x":1751186282082,"y":63.906},{"x":1751186221859,"y":47.673},{"x":1751186161694,"y":44.457},{"x":1751186101536,"y":60.034},{"x":1751186041386,"y":44.022},{"x":1751185981227,"y":42.124},{"x":1751185921071,"y":44.576},{"x":1751185860901,"y":30.941},{"x":1751185800774,"y":50.181},{"x":1751185740596,"y":45.618},{"x":1751185680500,"y":36.718},{"x":1751185620383,"y":43.041},{"x":1751185563021,"y":37.504},{"x":1751185502870,"y":48.355},{"x":1751185442692,"y":31.724},{"x":1751185382549,"y":27.964},{"x":1751185322404,"y":25.232},{"x":1751185262244,"y":27.111},{"x":1751185202077,"y":38.461},{"x":1751185141917,"y":33.403},{"x":1751185081785,"y":38.363},{"x":1751185021586,"y":39.989},{"x":1751184961442,"y":45.604},{"x":1751184901279,"y":43.008},{"x":1751184841125,"y":47.29},{"x":1751184780982,"y":32.248},{"x":1751184720823,"y":26.887},{"x":1751184660676,"y":39.781},{"x":1751184600703,"y":40.918},{"x":1751184540358,"y":48.928},{"x":1751184482999,"y":47.269},{"x":1751184422859,"y":50.704},{"x":1751184362701,"y":49.648},{"x":1751184302539,"y":38.957},{"x":1751184242395,"y":43.916},{"x":1751184182235,"y":66.429},{"x":1751184122105,"y":50.328},{"x":1751184061924,"y":31.096},{"x":1751184001785,"y":47.951},{"x":1751183941562,"y":44.563},{"x":1751183881407,"y":44.285},{"x":1751183821256,"y":50.103},{"x":1751183761107,"y":29.111},{"x":1751183700945,"y":34.429},{"x":1751183640790,"y":35.44},{"x":1751183580640,"y":36.135},{"x":1751183520515,"y":40.359},{"x":1751183460325,"y":46.717},{"x":1751183400212,"y":50.41},{"x":1751183342896,"y":52.513},{"x":1751183282753,"y":46.602},{"x":1751183222594,"y":32.677},{"x":1751183162422,"y":32.217},{"x":1751183102279,"y":30.228},{"x":1751183042132,"y":34.364},{"x":1751182981978,"y":29.107},{"x":1751182921801,"y":44.394},{"x":1751182861657,"y":35.898},{"x":1751182801494,"y":44.753},{"x":1751182741337,"y":45.585},{"x":1751182681186,"y":34.449},{"x":1751182621027,"y":20.87},{"x":1751182560878,"y":21.266},{"x":1751182500749,"y":28.34},{"x":1751182440629,"y":26.135},{"x":1751182380454,"y":33.011},{"x":1751182320277,"y":47.823},{"x":1751182262970,"y":39.139},{"x":1751182202850,"y":50.237},{"x":1751182142664,"y":42.513},{"x":1751182082516,"y":33.896},{"x":1751182022371,"y":30.137},{"x":1751181962219,"y":27.846},{"x":1751181902074,"y":28.106},{"x":1751181841923,"y":31.048},{"x":1751181781767,"y":48.085},{"x":1751181721622,"y":53.119},{"x":1751181661462,"y":47.813},{"x":1751181601319,"y":41.575},{"x":1751181541167,"y":40.799},{"x":1751181481017,"y":28.788},{"x":1751181420812,"y":24.859},{"x":1751181360694,"y":16.172},{"x":1751181300571,"y":36.011},{"x":1751181240324,"y":39.009},{"x":1751181180148,"y":49.162},{"x":1751181122890,"y":44.602},{"x":1751181062739,"y":51.577},{"x":1751181002580,"y":38.847},{"x":1751180942429,"y":28.952},{"x":1751180882249,"y":22.811},{"x":1751180822097,"y":27.112},{"x":1751180761946,"y":31.377},{"x":1751180701787,"y":42.5},{"x":1751180641636,"y":44.211},{"x":1751180581484,"y":38.214},{"x":1751180521334,"y":38.321},{"x":1751180461176,"y":24.861},{"x":1751180401074,"y":22.735},{"x":1751180340801,"y":18.92},{"x":1751180280660,"y":23.322},{"x":1751180220515,"y":23.911},{"x":1751180160411,"y":26.288},{"x":1751180100252,"y":38.827},{"x":1751180042940,"y":36.933},{"x":1751179982797,"y":35.119},{"x":1751179922653,"y":36.229},{"x":1751179862503,"y":31.721},{"x":1751179802353,"y":35.706},{"x":1751179742208,"y":30.338},{"x":1751179682055,"y":24.668},{"x":1751179621892,"y":24.894},{"x":1751179561746,"y":49.047},{"x":1751179501596,"y":47.477},{"x":1751179441443,"y":39.406},{"x":1751179381302,"y":39.903},{"x":1751179321150,"y":39.673},{"x":1751179260983,"y":40.195},{"x":1751179200849,"y":37.048},{"x":1751179140687,"y":35.743},{"x":1751179080568,"y":32.267},{"x":1751179020380,"y":35.784},{"x":1751178960272,"y":55.133},{"x":1751178902967,"y":42.353},{"x":1751178842820,"y":42.789},{"x":1751178782680,"y":44.329},{"x":1751178722523,"y":37.794},{"x":1751178662374,"y":36.577},{"x":1751178602249,"y":39.496},{"x":1751178542078,"y":24.916},{"x":1751178481936,"y":38.236},{"x":1751178421770,"y":30.209},{"x":1751178361598,"y":49.455},{"x":1751178301450,"y":36.606},{"x":1751178241299,"y":54.153},{"x":1751178181154,"y":45.466},{"x":1751178120992,"y":51.832},{"x":1751178060851,"y":39.145},{"x":1751178000694,"y":36.937},{"x":1751177940529,"y":39.425},{"x":1751177880503,"y":60.24},{"x":1751177820227,"y":49.557},{"x":1751177762996,"y":41.412},{"x":1751177702825,"y":40.256},{"x":1751177642672,"y":35.82},{"x":1751177582524,"y":28.87},{"x":1751177522493,"y":30.232},{"x":1751177462242,"y":36.83},{"x":1751177402087,"y":35.616},{"x":1751177341921,"y":33.96},{"x":1751177281771,"y":51.427},{"x":1751177221623,"y":48.967},{"x":1751177161467,"y":42.242},{"x":1751177101320,"y":43.619},{"x":1751177041170,"y":33.037},{"x":1751176981000,"y":24.526},{"x":1751176920857,"y":24.014},{"x":1751176860735,"y":26.33},{"x":1751176800666,"y":29.269},{"x":1751176740412,"y":36.935},{"x":1751176680181,"y":36.342},{"x":1751176622960,"y":36.588},{"x":1751176562807,"y":39.2},{"x":1751176502642,"y":34.621},{"x":1751176442498,"y":29.682},{"x":1751176382345,"y":26.667},{"x":1751176322197,"y":28.993},{"x":1751176262040,"y":28.787},{"x":1751176201896,"y":27.787},{"x":1751176141738,"y":36.286},{"x":1751176081591,"y":43.114},{"x":1751176021438,"y":35.837},{"x":1751175961295,"y":36.434},{"x":1751175901150,"y":42.267},{"x":1751175840961,"y":34.787},{"x":1751175780837,"y":30.639},{"x":1751175720670,"y":31.267},{"x":1751175660536,"y":34.389},{"x":1751175600410,"y":28.543},{"x":1751175540232,"y":38.475},{"x":1751175482931,"y":38.411},{"x":1751175422787,"y":39.78},{"x":1751175362636,"y":40.867},{"x":1751175302489,"y":36.299},{"x":1751175242345,"y":30.109},{"x":1751175182190,"y":28.063},{"x":1751175122038,"y":33.471},{"x":1751175061882,"y":28.95},{"x":1751175001740,"y":42.936},{"x":1751174941570,"y":36.122},{"x":1751174881426,"y":37.177},{"x":1751174821286,"y":38.455},{"x":1751174761127,"y":38.867},{"x":1751174700973,"y":31.038},{"x":1751174640823,"y":33.193},{"x":1751174580685,"y":27.008},{"x":1751174520530,"y":26.097},{"x":1751174460394,"y":27.003},{"x":1751174400356,"y":26.66},{"x":1751174342999,"y":31.661},{"x":1751174282785,"y":33.619},{"x":1751174222568,"y":33.107},{"x":1751174162413,"y":32.782},{"x":1751174102264,"y":32.689},{"x":1751174042095,"y":24.362},{"x":1751173981950,"y":27.709},{"x":1751173921782,"y":26.145},{"x":1751173861602,"y":23.465},{"x":1751173801457,"y":36.222},{"x":1751173741302,"y":38.59},{"x":1751173681133,"y":39.769},{"x":1751173620938,"y":36.233},{"x":1751173560781,"y":36.953},{"x":1751173500658,"y":34.673},{"x":1751173440487,"y":35.467},{"x":1751173380392,"y":35.212},{"x":1751173320209,"y":37.473},{"x":1751173262912,"y":34.527},{"x":1751173202774,"y":36.238},{"x":1751173142613,"y":37.96},{"x":1751173082445,"y":35.159},{"x":1751173022301,"y":35.773},{"x":1751172962156,"y":32.756},{"x":1751172901997,"y":32.908},{"x":1751172841826,"y":34.051},{"x":1751172781677,"y":32.785},{"x":1751172721526,"y":44.203},{"x":1751172661382,"y":50.612},{"x":1751172601242,"y":47.789},{"x":1751172541080,"y":39.837},{"x":1751172480927,"y":29.752},{"x":1751172420781,"y":32.049},{"x":1751172360665,"y":29.605},{"x":1751172300553,"y":29.145},{"x":1751172240391,"y":29.321},{"x":1751172180177,"y":24.49},{"x":1751172122909,"y":24.415},{"x":1751172062757,"y":25.849},{"x":1751172002621,"y":30.651},{"x":1751171942448,"y":31.265},{"x":1751171882296,"y":30.213},{"x":1751171822147,"y":30.108},{"x":1751171761974,"y":30.251},{"x":1751171701816,"y":35.933},{"x":1751171641669,"y":42.725},{"x":1751171581489,"y":35.749},{"x":1751171521346,"y":38.335},{"x":1751171461195,"y":34.668},{"x":1751171401045,"y":31.571},{"x":1751171340879,"y":33.519},{"x":1751171280742,"y":32.166},{"x":1751171220588,"y":30.638},{"x":1751171160478,"y":34.062},{"x":1751171100370,"y":39.165},{"x":1751171040141,"y":28.209},{"x":1751170982893,"y":33.512},{"x":1751170922753,"y":25.006},{"x":1751170862547,"y":25.256},{"x":1751170802391,"y":28.635},{"x":1751170742262,"y":26.448},{"x":1751170682073,"y":29.936},{"x":1751170621907,"y":26.836},{"x":1751170561758,"y":26.848},{"x":1751170501578,"y":29.251},{"x":1751170441432,"y":32.404},{"x":1751170381282,"y":34.908},{"x":1751170321133,"y":36.345},{"x":1751170260977,"y":29.623},{"x":1751170200837,"y":30.619},{"x":1751170140680,"y":28.261},{"x":1751170080575,"y":29.586},{"x":1751170020384,"y":29.08},{"x":1751169960260,"y":29.26},{"x":1751169902993,"y":27.125},{"x":1751169842816,"y":26.099},{"x":1751169782669,"y":26.477},{"x":1751169722523,"y":26.353},{"x":1751169662368,"y":34.158},{"x":1751169602199,"y":34.008},{"x":1751169542010,"y":34.312},{"x":1751169481850,"y":29.45},{"x":1751169421706,"y":31.092},{"x":1751169361551,"y":25.289},{"x":1751169301405,"y":29.512},{"x":1751169241238,"y":29.494},{"x":1751169181087,"y":36.591},{"x":1751169120935,"y":35.768},{"x":1751169060786,"y":38.581},{"x":1751169000680,"y":41.133},{"x":1751168940499,"y":42.265},{"x":1751168880355,"y":32.811},{"x":1751168820277,"y":35.773},{"x":1751168762910,"y":31.027},{"x":1751168702762,"y":29.031},{"x":1751168642613,"y":30.027},{"x":1751168582461,"y":25.43},{"x":1751168522320,"y":27.129},{"x":1751168462164,"y":29.612},{"x":1751168402023,"y":26.677},{"x":1751168341844,"y":29.501},{"x":1751168281706,"y":28.68},{"x":1751168221554,"y":33.005},{"x":1751168161399,"y":29.218},{"x":1751168101263,"y":27.232},{"x":1751168041115,"y":30.293},{"x":1751167980954,"y":29.35},{"x":1751167920812,"y":26.35},{"x":1751167860681,"y":25.138},{"x":1751167800593,"y":26.322},{"x":1751167740377,"y":25.713},{"x":1751167680172,"y":27.514},{"x":1751167622900,"y":28.196},{"x":1751167562765,"y":29.751},{"x":1751167502601,"y":28.909},{"x":1751167442460,"y":28.696},{"x":1751167382306,"y":28.888},{"x":1751167322148,"y":30.273},{"x":1751167261990,"y":27.673},{"x":1751167201831,"y":26.549},{"x":1751167141675,"y":28.137},{"x":1751167081500,"y":26.971},{"x":1751167021369,"y":27.259},{"x":1751166961201,"y":46.741},{"x":1751166901042,"y":31.802},{"x":1751166840854,"y":32.743},{"x":1751166780703,"y":35.141},{"x":1751166720558,"y":30.456},{"x":1751166660414,"y":27.54},{"x":1751166600256,"y":30.95},{"x":1751166541923,"y":30.603},{"x":1751166481687,"y":36.279},{"x":1751166421513,"y":35.719},{"x":1751166361370,"y":35.568},{"x":1751166301207,"y":41.32},{"x":1751166241623,"y":40.038},{"x":1751166182086,"y":43.81},{"x":1751166120049,"y":30.722},{"x":1751166062831,"y":30.09},{"x":1751166000633,"y":29.58},{"x":1751165940301,"y":28.548},{"x":1751165883027,"y":27.294},{"x":1751165822870,"y":27.304},{"x":1751165762757,"y":29.617},{"x":1751165702568,"y":31.12},{"x":1751165642408,"y":39.895},{"x":1751165582267,"y":35.791},{"x":1751165522113,"y":34.167},{"x":1751165461960,"y":31.08},{"x":1751165401805,"y":30.127},{"x":1751165341661,"y":29.468},{"x":1751165281507,"y":28.485},{"x":1751165221354,"y":28.227},{"x":1751165161214,"y":30.768},{"x":1751165101077,"y":29.682},{"x":1751165040870,"y":29.358},{"x":1751164980718,"y":34.78},{"x":1751164920579,"y":29.205},{"x":1751164860414,"y":31.094},{"x":1751164800339,"y":30.684},{"x":1751164743003,"y":27.229},{"x":1751164682856,"y":28.084},{"x":1751164622712,"y":27.234},{"x":1751164562566,"y":29.77},{"x":1751164502412,"y":27.825},{"x":1751164442257,"y":27.328},{"x":1751164382110,"y":27.573},{"x":1751164321957,"y":36.069},{"x":1751164261812,"y":32.686},{"x":1751164201667,"y":29.595},{"x":1751164141508,"y":27.997},{"x":1751164081363,"y":28.888},{"x":1751164021216,"y":27.158},{"x":1751163961063,"y":29.816},{"x":1751163900918,"y":37.519},{"x":1751163840752,"y":34.396},{"x":1751163780600,"y":36.777},{"x":1751163720454,"y":42.226},{"x":1751163660312,"y":37.888},{"x":1751163600125,"y":33.464},{"x":1751163542919,"y":31.589},{"x":1751163482790,"y":32.659},{"x":1751163422584,"y":29.319},{"x":1751163362439,"y":29.324},{"x":1751163302292,"y":35.397},{"x":1751163242127,"y":29.179},{"x":1751163181978,"y":27.189},{"x":1751163121832,"y":26.878},{"x":1751163061660,"y":31.377},{"x":1751163001510,"y":29.03},{"x":1751162941357,"y":31.047},{"x":1751162881208,"y":34.715},{"x":1751162821061,"y":34.549},{"x":1751162760900,"y":32.453},{"x":1751162700767,"y":30.523},{"x":1751162640602,"y":31.717},{"x":1751162580463,"y":28.132},{"x":1751162520341,"y":26.986},{"x":1751162462982,"y":27.201},{"x":1751162402864,"y":29.437},{"x":1751162342668,"y":28.314},{"x":1751162282519,"y":28.453},{"x":1751162222370,"y":30.316},{"x":1751162162190,"y":36.21},{"x":1751162102039,"y":38.107},{"x":1751162041890,"y":37.052},{"x":1751161981742,"y":30.242},{"x":1751161921577,"y":34.462},{"x":1751161861419,"y":31.916},{"x":1751161801265,"y":30.447},{"x":1751161741103,"y":27.541},{"x":1751161680947,"y":27.421},{"x":1751161620786,"y":30.996},{"x":1751161560641,"y":28.749},{"x":1751161500595,"y":33.474},{"x":1751161440257,"y":30.315},{"x":1751161382995,"y":30.152},{"x":1751161322846,"y":33.323},{"x":1751161262692,"y":34.603},{"x":1751161202548,"y":31.284},{"x":1751161142386,"y":27.252},{"x":1751161082240,"y":34.281},{"x":1751161022084,"y":34.14},{"x":1751160961929,"y":39.153},{"x":1751160901753,"y":42.173},{"x":1751160841613,"y":37.534},{"x":1751160781447,"y":31.206},{"x":1751160721301,"y":30.138},{"x":1751160661130,"y":27.977},{"x":1751160600995,"y":31.367},{"x":1751160540808,"y":28.07},{"x":1751160480677,"y":26.356},{"x":1751160420510,"y":25.919},{"x":1751160360370,"y":28.1},{"x":1751160300196,"y":24.801},{"x":1751160242962,"y":28.496},{"x":1751160182810,"y":28.79},{"x":1751160122663,"y":29.566},{"x":1751160062519,"y":30.703},{"x":1751160002354,"y":33.7},{"x":1751159942213,"y":37.969},{"x":1751159882044,"y":33.488},{"x":1751159821859,"y":33.517},{"x":1751159761690,"y":31.62},{"x":1751159701538,"y":29.803},{"x":1751159641384,"y":28.192},{"x":1751159581239,"y":33.744},{"x":1751159521082,"y":26.684},{"x":1751159460931,"y":26.35},{"x":1751159400785,"y":24.783},{"x":1751159340635,"y":27.6},{"x":1751159280489,"y":30.508},{"x":1751159220361,"y":26.339},{"x":1751159160132,"y":31.764},{"x":1751159102924,"y":33.64},{"x":1751159042746,"y":30.62},{"x":1751158982601,"y":31.357},{"x":1751158922468,"y":35.74},{"x":1751158862307,"y":31.826},{"x":1751158802174,"y":30.914},{"x":1751158741957,"y":31.075},{"x":1751158681814,"y":29.451},{"x":1751158621655,"y":28.025},{"x":1751158561514,"y":36.307},{"x":1751158501359,"y":35.499},{"x":1751158441218,"y":34.965},{"x":1751158381061,"y":43.406},{"x":1751158320895,"y":38.806},{"x":1751158260741,"y":29.365},{"x":1751158200646,"y":29.294},{"x":1751158140453,"y":28.402},{"x":1751158080393,"y":28.176},{"x":1751158020112,"y":27.064},{"x":1751157962901,"y":26.888},{"x":1751157902730,"y":26.208},{"x":1751157842579,"y":26.956},{"x":1751157782433,"y":27.3},{"x":1751157722281,"y":35.822},{"x":1751157662127,"y":37.151},{"x":1751157601972,"y":37.198},{"x":1751157541823,"y":32.846},{"x":1751157481672,"y":31.565},{"x":1751157421425,"y":32.635},{"x":1751157361258,"y":31.43},{"x":1751157301105,"y":33.839},{"x":1751157240947,"y":29.054},{"x":1751157180793,"y":29.461},{"x":1751157120656,"y":26.175},{"x":1751157060512,"y":32.522},{"x":1751157000481,"y":27.433},{"x":1751156940212,"y":29.816},{"x":1751156882994,"y":27.562},{"x":1751156822850,"y":26.942},{"x":1751156762705,"y":29.425},{"x":1751156702545,"y":26.513},{"x":1751156642394,"y":33.713},{"x":1751156582253,"y":38.311},{"x":1751156522105,"y":33.798},{"x":1751156461958,"y":29.918},{"x":1751156401811,"y":28.035},{"x":1751156341666,"y":27.677},{"x":1751156281581,"y":30.032},{"x":1751156221349,"y":29.512},{"x":1751156161196,"y":27.643},{"x":1751156101034,"y":27.967},{"x":1751156040887,"y":29.376},{"x":1751155980750,"y":26.701},{"x":1751155920629,"y":33.341},{"x":1751155860511,"y":36.015},{"x":1751155800352,"y":37.785},{"x":1751155740223,"y":37.118},{"x":1751155682915,"y":36.846},{"x":1751155622759,"y":37.736},{"x":1751155562599,"y":25.239},{"x":1751155502440,"y":28.941},{"x":1751155442286,"y":27.97},{"x":1751155382120,"y":28.485},{"x":1751155321959,"y":31.045},{"x":1751155261789,"y":30.854},{"x":1751155201716,"y":31.766},{"x":1751155141467,"y":36.453},{"x":1751155081324,"y":29.752},{"x":1751155021163,"y":28.76},{"x":1751154960998,"y":31.667},{"x":1751154900856,"y":30.467},{"x":1751154840708,"y":29.215},{"x":1751154780557,"y":27.286},{"x":1751154720434,"y":28.62},{"x":1751154660295,"y":24.16},{"x":1751154603018,"y":29.105},{"x":1751154542872,"y":25.303},{"x":1751154482719,"y":35.719},{"x":1751154422557,"y":34.57},{"x":1751154362407,"y":34.537},{"x":1751154302251,"y":36.419},{"x":1751154242106,"y":37.354},{"x":1751154181957,"y":31.116},{"x":1751154121810,"y":28.662},{"x":1751154061671,"y":28.107},{"x":1751154001532,"y":26.913},{"x":1751153941378,"y":30.618},{"x":1751153881231,"y":25.355},{"x":1751153821077,"y":28.751},{"x":1751153760910,"y":29.007},{"x":1751153700765,"y":27.02},{"x":1751153640604,"y":26.184},{"x":1751153580456,"y":27.03},{"x":1751153520393,"y":27.501},{"x":1751153462943,"y":28.803},{"x":1751153402853,"y":33.549},{"x":1751153342659,"y":29.407},{"x":1751153282496,"y":40.916},{"x":1751153222343,"y":35.177},{"x":1751153162186,"y":35.511},{"x":1751153102055,"y":40.743},{"x":1751153041892,"y":39.322},{"x":1751152981744,"y":31.664},{"x":1751152921605,"y":35.89},{"x":1751152861424,"y":31.212},{"x":1751152801280,"y":29.463},{"x":1751152741124,"y":32.151},{"x":1751152680953,"y":33.364},{"x":1751152620744,"y":32.681},{"x":1751152560615,"y":30.217},{"x":1751152500521,"y":32.669},{"x":1751152440277,"y":31.271},{"x":1751152383004,"y":28.481},{"x":1751152322839,"y":31.067},{"x":1751152262687,"y":30.118},{"x":1751152202537,"y":30.262},{"x":1751152142383,"y":30.855},{"x":1751152082228,"y":27.655},{"x":1751152022080,"y":26.595},{"x":1751151961913,"y":31.346},{"x":1751151901756,"y":26.5},{"x":1751151841614,"y":28.133},{"x":1751151781462,"y":36.028},{"x":1751151721312,"y":40.264},{"x":1751151661165,"y":40.444},{"x":1751151601115,"y":39.161},{"x":1751151540814,"y":47.653},{"x":1751151480690,"y":30.456},{"x":1751151420536,"y":28.098},{"x":1751151360365,"y":28.209},{"x":1751151300306,"y":33.662},{"x":1751151242978,"y":27.383},{"x":1751151182835,"y":25.406},{"x":1751151122670,"y":25.815},{"x":1751151062530,"y":25.686},{"x":1751151002390,"y":33.215},{"x":1751150942248,"y":35.031},{"x":1751150882100,"y":34.445},{"x":1751150821939,"y":34.079},{"x":1751150761791,"y":32.42},{"x":1751150701648,"y":32.447},{"x":1751150641493,"y":35.657},{"x":1751150581342,"y":35.981},{"x":1751150521197,"y":35.599},{"x":1751150461056,"y":30.374},{"x":1751150400886,"y":31.247},{"x":1751150340733,"y":27.648},{"x":1751150280600,"y":26.415},{"x":1751150220466,"y":26.393},{"x":1751150160324,"y":34.023},{"x":1751150100187,"y":29.107},{"x":1751150042914,"y":28.603},{"x":1751149982750,"y":41.517},{"x":1751149922603,"y":28.048},{"x":1751149862455,"y":28.37},{"x":1751149802318,"y":29.213},{"x":1751149742153,"y":29.121},{"x":1751149682011,"y":32.625},{"x":1751149621857,"y":25.642},{"x":1751149561711,"y":27.852},{"x":1751149501565,"y":32.417},{"x":1751149441424,"y":31.868},{"x":1751149381266,"y":32.841},{"x":1751149321114,"y":37.656},{"x":1751149260933,"y":33.01},{"x":1751149200830,"y":38.917},{"x":1751149140636,"y":41.623},{"x":1751149080455,"y":35.886},{"x":1751149020313,"y":39.562},{"x":1751148963017,"y":36.341},{"x":1751148902897,"y":37.788},{"x":1751148842722,"y":35.996},{"x":1751148782581,"y":34.329},{"x":1751148722420,"y":39.804},{"x":1751148662275,"y":45.82},{"x":1751148602129,"y":39.815},{"x":1751148541966,"y":39.641},{"x":1751148481817,"y":36.682},{"x":1751148421666,"y":49.531},{"x":1751148361534,"y":39.64},{"x":1751148301375,"y":36.501},{"x":1751148241245,"y":36.251},{"x":1751148181087,"y":39.513},{"x":1751148120909,"y":41.618},{"x":1751148060749,"y":42.651},{"x":1751148000723,"y":39.209},{"x":1751147940295,"y":41.903},{"x":1751147883016,"y":38.334},{"x":1751147822856,"y":35.445},{"x":1751147762710,"y":45.792},{"x":1751147702555,"y":35.066},{"x":1751147642415,"y":35.68},{"x":1751147582263,"y":38.03},{"x":1751147522117,"y":38.979},{"x":1751147461953,"y":38.03},{"x":1751147401795,"y":40.308},{"x":1751147341642,"y":60.206},{"x":1751147281491,"y":48.547},{"x":1751147221342,"y":56.918},{"x":1751147161188,"y":37.974},{"x":1751147101044,"y":39.415},{"x":1751147040880,"y":41.94},{"x":1751146980744,"y":35.402},{"x":1751146920606,"y":46.075},{"x":1751146860470,"y":37.112},{"x":1751146800418,"y":41.775},{"x":1751146743000,"y":41.033},{"x":1751146682856,"y":40.642},{"x":1751146622715,"y":42.787},{"x":1751146562560,"y":53.106},{"x":1751146502412,"y":51.985},{"x":1751146442264,"y":51.619},{"x":1751146382114,"y":67.43},{"x":1751146321968,"y":50.259},{"x":1751146261808,"y":51.461},{"x":1751146201663,"y":50.916},{"x":1751146141508,"y":61.146},{"x":1751146081363,"y":50.85},{"x":1751146021213,"y":60.112},{"x":1751145961065,"y":50.851},{"x":1751145900916,"y":51.023},{"x":1751145840766,"y":49.661},{"x":1751145780619,"y":52.931},{"x":1751145720493,"y":51.454},{"x":1751145660354,"y":47.35},{"x":1751145603032,"y":49.213},{"x":1751145542873,"y":50.212},{"x":1751145482742,"y":49.083},{"x":1751145422544,"y":48.272},{"x":1751145362397,"y":50.939},{"x":1751145302251,"y":53.023},{"x":1751145242082,"y":62.186},{"x":1751145181936,"y":66.314},{"x":1751145121789,"y":51.541},{"x":1751145061645,"y":60.21},{"x":1751145001508,"y":48.336},{"x":1751144941347,"y":47.64},{"x":1751144881195,"y":58.222},{"x":1751144821042,"y":45.762},{"x":1751144760891,"y":41.289},{"x":1751144700753,"y":40.02},{"x":1751144640589,"y":38.388},{"x":1751144580464,"y":43.583},{"x":1751144520332,"y":42.025},{"x":1751144462991,"y":41.759},{"x":1751144402916,"y":42.027},{"x":1751144342689,"y":42.372},{"x":1751144282549,"y":44.396},{"x":1751144222397,"y":38.659},{"x":1751144162256,"y":51.843},{"x":1751144102085,"y":39.482},{"x":1751144041917,"y":41.707},{"x":1751143981772,"y":52.244},{"x":1751143921631,"y":42.348},{"x":1751143861487,"y":43.94},{"x":1751143801336,"y":49.153},{"x":1751143741183,"y":51.231},{"x":1751143681016,"y":51.45},{"x":1751143620859,"y":49.49},{"x":1751143560697,"y":47.606},{"x":1751143500653,"y":44.776},{"x":1751143440436,"y":45.171},{"x":1751143380266,"y":39.951},{"x":1751143322919,"y":35.318},{"x":1751143262777,"y":38.825},{"x":1751143202632,"y":35.832},{"x":1751143142476,"y":41.782},{"x":1751143082332,"y":39.231},{"x":1751143022182,"y":44.08},{"x":1751142962033,"y":53.637},{"x":1751142901884,"y":57.453},{"x":1751142841725,"y":51.013},{"x":1751142781586,"y":47.761},{"x":1751142721427,"y":42.437},{"x":1751142661284,"y":38.483},{"x":1751142601125,"y":34.846},{"x":1751142540956,"y":47.153},{"x":1751142480808,"y":47.764},{"x":1751142420658,"y":48.103},{"x":1751142360516,"y":52.475},{"x":1751142300369,"y":44.666},{"x":1751142240250,"y":49.132},{"x":1751142182910,"y":48.037},{"x":1751142122763,"y":51.517},{"x":1751142062616,"y":43.576},{"x":1751142002472,"y":37.801},{"x":1751141942328,"y":41.969},{"x":1751141882169,"y":53.582},{"x":1751141821943,"y":51.239},{"x":1751141761805,"y":51.112},{"x":1751141701647,"y":69.473},{"x":1751141641500,"y":65.648},{"x":1751141581350,"y":41.118},{"x":1751141521209,"y":48.146},{"x":1751141461050,"y":66.727},{"x":1751141400887,"y":46.571},{"x":1751141340725,"y":50.477},{"x":1751141280618,"y":53.937},{"x":1751141220421,"y":56.224},{"x":1751141160425,"y":71.695},{"x":1751141103005,"y":57.805},{"x":1751141042841,"y":43.709},{"x":1751140982684,"y":51.351},{"x":1751140922515,"y":46.061},{"x":1751140862366,"y":62.675},{"x":1751140802214,"y":53.947},{"x":1751140742050,"y":54.037},{"x":1751140681903,"y":63.042},{"x":1751140621752,"y":69.664},{"x":1751140561598,"y":43.052},{"x":1751140501444,"y":70.68},{"x":1751140441299,"y":43.235},{"x":1751140381146,"y":42.321},{"x":1751140320991,"y":47.628},{"x":1751140260832,"y":53.219},{"x":1751140200716,"y":53.761},{"x":1751140140541,"y":50.226},{"x":1751140080399,"y":47.118},{"x":1751140020184,"y":35.294},{"x":1751139962900,"y":41.69},{"x":1751139902751,"y":28.158},{"x":1751139842634,"y":44.24},{"x":1751139782464,"y":42.598},{"x":1751139722316,"y":51.083},{"x":1751139662161,"y":61.759},{"x":1751139601997,"y":50.636},{"x":1751139541848,"y":41.218},{"x":1751139481694,"y":51.126},{"x":1751139421542,"y":39.049},{"x":1751139361399,"y":34.938},{"x":1751139301248,"y":44.927},{"x":1751139241077,"y":50.027},{"x":1751139180904,"y":45.824},{"x":1751139120746,"y":41.897},{"x":1751139060613,"y":43.21},{"x":1751139000539,"y":37.302},{"x":1751138940285,"y":29.465},{"x":1751138883017,"y":42.211},{"x":1751138822867,"y":31.802},{"x":1751138762710,"y":41.226},{"x":1751138702542,"y":44.368},{"x":1751138642393,"y":41.131},{"x":1751138582232,"y":56.925},{"x":1751138522062,"y":41.393},{"x":1751138461892,"y":68.305},{"x":1751138401736,"y":39.547},{"x":1751138341587,"y":33.284},{"x":1751138281407,"y":34.142},{"x":1751138221232,"y":42.263},{"x":1751138161025,"y":49.939},{"x":1751138100870,"y":54.362},{"x":1751138040697,"y":47.23},{"x":1751137980548,"y":44.047},{"x":1751137920480,"y":53.739},{"x":1751137860280,"y":35.048},{"x":1751137802979,"y":34.671},{"x":1751137742818,"y":31.407},{"x":1751137682661,"y":37.669},{"x":1751137622519,"y":54.81},{"x":1751137562343,"y":52.898},{"x":1751137502198,"y":54.092},{"x":1751137442048,"y":51.639},{"x":1751137381882,"y":42.481},{"x":1751137321719,"y":33.096},{"x":1751137261548,"y":28.193},{"x":1751137201430,"y":34.069},{"x":1751137141196,"y":43.903},{"x":1751137081044,"y":53.751},{"x":1751137020880,"y":45.336},{"x":1751136960725,"y":57.546},{"x":1751136900595,"y":45.451},{"x":1751136840501,"y":40.312},{"x":1751136780165,"y":47.244},{"x":1751136722940,"y":35.581},{"x":1751136662790,"y":35.866},{"x":1751136602629,"y":42.826},{"x":1751136542454,"y":51.846},{"x":1751136482296,"y":63.788},{"x":1751136422144,"y":46.904},{"x":1751136361979,"y":41.851},{"x":1751136301834,"y":56.5},{"x":1751136241672,"y":42.295},{"x":1751136181554,"y":37.864},{"x":1751136121381,"y":61.714},{"x":1751136061227,"y":69.987},{"x":1751136001072,"y":50.496},{"x":1751135940901,"y":48.184},{"x":1751135880753,"y":40.409},{"x":1751135820581,"y":29.132},{"x":1751135760432,"y":28.942},{"x":1751135700349,"y":38.237},{"x":1751135643028,"y":46.227},{"x":1751135582862,"y":40.516},{"x":1751135522714,"y":51.799},{"x":1751135462564,"y":34.726},{"x":1751135402387,"y":42.809},{"x":1751135342267,"y":43.043},{"x":1751135282094,"y":58.325},{"x":1751135221939,"y":33.913},{"x":1751135161752,"y":30.489},{"x":1751135101597,"y":35.569},{"x":1751135041452,"y":48.392},{"x":1751134981302,"y":51.622},{"x":1751134921161,"y":53.454},{"x":1751134860996,"y":53.53},{"x":1751134800866,"y":55.21},{"x":1751134740719,"y":38.58},{"x":1751134680583,"y":32.928},{"x":1751134620437,"y":46.222},{"x":1751134560131,"y":33.624},{"x":1751134502896,"y":41.32},{"x":1751134442738,"y":39.793},{"x":1751134382579,"y":40.593},{"x":1751134322437,"y":51.179},{"x":1751134262298,"y":51.846},{"x":1751134202128,"y":43.223},{"x":1751134141965,"y":36.892},{"x":1751134081819,"y":31.113},{"x":1751134021664,"y":29.195},{"x":1751133961524,"y":48.835},{"x":1751133901374,"y":44.904},{"x":1751133841227,"y":40.842},{"x":1751133781066,"y":38.939},{"x":1751133720909,"y":44.194},{"x":1751133660754,"y":32.252},{"x":1751133600736,"y":35.471},{"x":1751133540411,"y":35.292},{"x":1751133480315,"y":32.617},{"x":1751133422940,"y":44.386},{"x":1751133362790,"y":58.197},{"x":1751133302644,"y":50.995},{"x":1751133242491,"y":58.27},{"x":1751133182348,"y":45.611},{"x":1751133122198,"y":41.477},{"x":1751133062052,"y":34.699},{"x":1751133001923,"y":31.587},{"x":1751132941766,"y":38.724},{"x":1751132881606,"y":57.388},{"x":1751132821465,"y":45.853},{"x":1751132761319,"y":41.076},{"x":1751132701174,"y":46.582},{"x":1751132640979,"y":58.607},{"x":1751132580811,"y":38.306},{"x":1751132520650,"y":33.546},{"x":1751132460530,"y":34.947},{"x":1751132400404,"y":51.013},{"x":1751132340199,"y":35.854},{"x":1751132282955,"y":38.714},{"x":1751132222806,"y":57.235},{"x":1751132162663,"y":43.588},{"x":1751132102500,"y":33.5},{"x":1751132042350,"y":37.332},{"x":1751131982200,"y":31.61},{"x":1751131922049,"y":37.901},{"x":1751131861894,"y":30.976},{"x":1751131801767,"y":38.417},{"x":1751131741611,"y":49.925},{"x":1751131681452,"y":38.582},{"x":1751131621276,"y":37.005},{"x":1751131561124,"y":45.169},{"x":1751131500959,"y":47.446},{"x":1751131440808,"y":26.739},{"x":1751131380649,"y":29.722},{"x":1751131320512,"y":30.161},{"x":1751131260510,"y":47.034},{"x":1751131200204,"y":37.722},{"x":1751131142974,"y":47.385},{"x":1751131082752,"y":40.274},{"x":1751131022569,"y":34.672},{"x":1751130962402,"y":43.666},{"x":1751130902237,"y":38.729},{"x":1751130842121,"y":51.741},{"x":1751130781925,"y":41.22},{"x":1751130721772,"y":53.142},{"x":1751130661627,"y":43.099},{"x":1751130601518,"y":41.454},{"x":1751130541333,"y":33.311},{"x":1751130481182,"y":38.785},{"x":1751130421029,"y":42.121},{"x":1751130360877,"y":33.679},{"x":1751130300757,"y":28.41},{"x":1751130240577,"y":29.201},{"x":1751130180391,"y":30.758},{"x":1751130120262,"y":48.693},{"x":1751130062945,"y":48.799},{"x":1751130002792,"y":33.719},{"x":1751129942643,"y":34.108},{"x":1751129882487,"y":46.339},{"x":1751129822341,"y":38.081},{"x":1751129762180,"y":31.111},{"x":1751129701985,"y":24.674},{"x":1751129641838,"y":28.801},{"x":1751129581683,"y":36.239},{"x":1751129521522,"y":33.668},{"x":1751129461374,"y":44.825},{"x":1751129401220,"y":36.182},{"x":1751129341052,"y":46.922},{"x":1751129280885,"y":38.61},{"x":1751129220739,"y":31.675},{"x":1751129160600,"y":30.991},{"x":1751129100655,"y":23.725},{"x":1751129040428,"y":42.452},{"x":1751128980072,"y":33.798},{"x":1751128922879,"y":41.336},{"x":1751128862730,"y":36.799},{"x":1751128802591,"y":33.248},{"x":1751128742421,"y":29.022},{"x":1751128682265,"y":40.669},{"x":1751128622100,"y":26.066},{"x":1751128561930,"y":28.991},{"x":1751128501784,"y":32.218},{"x":1751128441616,"y":33.556},{"x":1751128381464,"y":33.443},{"x":1751128321314,"y":45.668},{"x":1751128261160,"y":40.322},{"x":1751128201004,"y":40.363},{"x":1751128140797,"y":29.205},{"x":1751128080677,"y":33.767},{"x":1751128020503,"y":25.653},{"x":1751127960347,"y":30.224},{"x":1751127900180,"y":48.106},{"x":1751127842897,"y":33.195},{"x":1751127782736,"y":35.958},{"x":1751127722588,"y":33.251},{"x":1751127662435,"y":33.074},{"x":1751127602282,"y":42.619},{"x":1751127542123,"y":24.938},{"x":1751127481965,"y":28.447},{"x":1751127421770,"y":28.055},{"x":1751127361609,"y":33.278},{"x":1751127301485,"y":48.347},{"x":1751127241308,"y":37.246},{"x":1751127181137,"y":36.659},{"x":1751127120937,"y":45.659},{"x":1751127060777,"y":34.891},{"x":1751127000655,"y":23.859},{"x":1751126940447,"y":38.18},{"x":1751126880290,"y":25.037},{"x":1751126820101,"y":44.1},{"x":1751126762904,"y":33.92},{"x":1751126702704,"y":42.22},{"x":1751126642554,"y":31.484},{"x":1751126582410,"y":36.143},{"x":1751126522255,"y":44.979},{"x":1751126462095,"y":39.738},{"x":1751126401955,"y":29.612},{"x":1751126341657,"y":27.493},{"x":1751126281555,"y":40.977},{"x":1751126221363,"y":37.926},{"x":1751126161215,"y":46.438},{"x":1751126101068,"y":28.105},{"x":1751126040905,"y":29.757},{"x":1751125980773,"y":38.439},{"x":1751125920652,"y":23.55},{"x":1751125860424,"y":26.369},{"x":1751125800319,"y":23.861},{"x":1751125742961,"y":36.127},{"x":1751125682799,"y":29.325},{"x":1751125622652,"y":56.975},{"x":1751125562504,"y":25.764},{"x":1751125502353,"y":47.919},{"x":1751125442191,"y":36.987},{"x":1751125382036,"y":31.224},{"x":1751125321882,"y":37.885},{"x":1751125261730,"y":32.437},{"x":1751125201606,"y":18.77},{"x":1751125141427,"y":29.729},{"x":1751125081279,"y":31.523},{"x":1751125021132,"y":31.777},{"x":1751124960966,"y":27.634},{"x":1751124900821,"y":35.395},{"x":1751124840675,"y":41.362},{"x":1751124780554,"y":23.913},{"x":1751124720392,"y":33.73},{"x":1751124660158,"y":24.453},{"x":1751124602926,"y":36.326},{"x":1751124542756,"y":28.88},{"x":1751124482606,"y":27.477},{"x":1751124422479,"y":26.323},{"x":1751124362312,"y":32.68},{"x":1751124302161,"y":34.34},{"x":1751124242016,"y":41.72},{"x":1751124181830,"y":19.461},{"x":1751124121689,"y":22.716},{"x":1751124061551,"y":25.763},{"x":1751124001400,"y":48.599},{"x":1751123941244,"y":35.735},{"x":1751123881099,"y":35.34},{"x":1751123820911,"y":35.268},{"x":1751123760768,"y":22.312},{"x":1751123700674,"y":37.106},{"x":1751123640438,"y":28.346},{"x":1751123580300,"y":26.931},{"x":1751123523023,"y":34.977},{"x":1751123462863,"y":35.621},{"x":1751123402711,"y":50.285},{"x":1751123342569,"y":42.456},{"x":1751123282408,"y":32.885},{"x":1751123222282,"y":50.132},{"x":1751123162104,"y":47.24},{"x":1751123101935,"y":39.606},{"x":1751123041781,"y":36.18},{"x":1751122981631,"y":34.828},{"x":1751122921466,"y":22.615},{"x":1751122861335,"y":37.05},{"x":1751122801196,"y":26.775},{"x":1751122740988,"y":25.862},{"x":1751122680832,"y":33.918},{"x":1751122620657,"y":34.068},{"x":1751122560576,"y":22.07},{"x":1751122500403,"y":16.897},{"x":1751122440193,"y":28.843},{"x":1751122382935,"y":33.366},{"x":1751122322793,"y":43.027},{"x":1751122262653,"y":41.22},{"x":1751122202489,"y":34.215},{"x":1751122142339,"y":35.989},{"x":1751122082196,"y":37.381},{"x":1751122022071,"y":34.939},{"x":1751121961901,"y":23.507},{"x":1751121901748,"y":31.556},{"x":1751121841603,"y":42.757},{"x":1751121781460,"y":39.816},{"x":1751121721312,"y":35.034},{"x":1751121661135,"y":26.361},{"x":1751121600974,"y":45.814},{"x":1751121540824,"y":33.416},{"x":1751121480666,"y":40.721},{"x":1751121420521,"y":33.645},{"x":1751121360386,"y":31.843},{"x":1751121300223,"y":22.448},{"x":1751121242910,"y":24.363},{"x":1751121182749,"y":33.057},{"x":1751121122578,"y":41.399},{"x":1751121062426,"y":23.509},{"x":1751121002281,"y":27.715},{"x":1751120942125,"y":47.417},{"x":1751120881969,"y":46.126},{"x":1751120821816,"y":34.493},{"x":1751120761664,"y":27.923},{"x":1751120701511,"y":16.053},{"x":1751120641373,"y":35.78},{"x":1751120581224,"y":27.32},{"x":1751120521073,"y":23.629},{"x":1751120460891,"y":33.245},{"x":1751120400755,"y":48.905},{"x":1751120340579,"y":39.748},{"x":1751120280463,"y":50.88},{"x":1751120220268,"y":36.545},{"x":1751120162981,"y":30.674},{"x":1751120102846,"y":39.118},{"x":1751120042693,"y":34.517},{"x":1751119982542,"y":37.619},{"x":1751119922391,"y":61.452},{"x":1751119862251,"y":36.809},{"x":1751119802104,"y":36.965},{"x":1751119741937,"y":33.885},{"x":1751119681792,"y":21.464},{"x":1751119621651,"y":22.681},{"x":1751119561507,"y":22.848},{"x":1751119501350,"y":28.152},{"x":1751119441182,"y":31.934},{"x":1751119381013,"y":35.279},{"x":1751119320865,"y":41.525},{"x":1751119260722,"y":47.623},{"x":1751119200828,"y":51.715},{"x":1751119140358,"y":35.208},{"x":1751119080287,"y":36.138},{"x":1751119022981,"y":40.128},{"x":1751118962839,"y":33.64},{"x":1751118902682,"y":41.358},{"x":1751118842542,"y":37.586},{"x":1751118782383,"y":39.337},{"x":1751118722225,"y":54.246},{"x":1751118662071,"y":43.617},{"x":1751118601935,"y":35.68},{"x":1751118541761,"y":21.852},{"x":1751118481616,"y":30.512},{"x":1751118421469,"y":33.921},{"x":1751118361322,"y":31.462},{"x":1751118301164,"y":35.155},{"x":1751118240998,"y":28.691},{"x":1751118180848,"y":35.727},{"x":1751118120702,"y":34.647},{"x":1751118060555,"y":25.981},{"x":1751118000437,"y":40.847},{"x":1751117940267,"y":23.129},{"x":1751117882961,"y":30.042},{"x":1751117822815,"y":44.03},{"x":1751117762672,"y":39.355},{"x":1751117702528,"y":42.715},{"x":1751117642384,"y":31.351},{"x":1751117582236,"y":32.042},{"x":1751117522083,"y":51.978},{"x":1751117461937,"y":23.998},{"x":1751117401793,"y":23.6},{"x":1751117341631,"y":34.308},{"x":1751117281478,"y":25.37},{"x":1751117221289,"y":29.249},{"x":1751117161134,"y":38.409},{"x":1751117100995,"y":54.24},{"x":1751117040824,"y":40.95},{"x":1751116980680,"y":41.898},{"x":1751116920556,"y":39.697},{"x":1751116860385,"y":29.326},{"x":1751116800256,"y":23.723},{"x":1751116742992,"y":22.865},{"x":1751116682827,"y":27.129},{"x":1751116622644,"y":37.653},{"x":1751116562497,"y":31.084},{"x":1751116502355,"y":33.119},{"x":1751116442197,"y":29.64},{"x":1751116382052,"y":31.23},{"x":1751116321905,"y":21.605},{"x":1751116261733,"y":34.856},{"x":1751116201595,"y":38.78},{"x":1751116141440,"y":33.772},{"x":1751116081295,"y":28.9},{"x":1751116021156,"y":34.567},{"x":1751115960932,"y":29.714},{"x":1751115900801,"y":44.122},{"x":1751115840639,"y":26.195},{"x":1751115780479,"y":54.292},{"x":1751115720388,"y":50.095},{"x":1751115660266,"y":39.43},{"x":1751115602941,"y":36.572},{"x":1751115542764,"y":46.387},{"x":1751115482614,"y":53.036},{"x":1751115422450,"y":42.003},{"x":1751115362307,"y":37.539},{"x":1751115302164,"y":40.702},{"x":1751115242021,"y":41.928},{"x":1751115181859,"y":41.892},{"x":1751115121697,"y":48.005},{"x":1751115061553,"y":42.134},{"x":1751115001405,"y":48.884},{"x":1751114941250,"y":48.112},{"x":1751114881103,"y":41.712},{"x":1751114820923,"y":42.781},{"x":1751114760684,"y":45.388},{"x":1751114700663,"y":44.646},{"x":1751114640419,"y":49.513},{"x":1751114580224,"y":35.885},{"x":1751114522926,"y":37.011},{"x":1751114462780,"y":41.824},{"x":1751114402635,"y":49.855},{"x":1751114342432,"y":53.59},{"x":1751114282293,"y":60.139},{"x":1751114222145,"y":46.53},{"x":1751114161980,"y":51.874},{"x":1751114101833,"y":45.314},{"x":1751114041693,"y":50.074},{"x":1751113981538,"y":70.085},{"x":1751113921359,"y":51.669},{"x":1751113861213,"y":37.189},{"x":1751113801059,"y":43.898},{"x":1751113740890,"y":49.578},{"x":1751113680787,"y":46.315},{"x":1751113620599,"y":21.183},{"x":1751113560510,"y":24.734},{"x":1751113500293,"y":23.562},{"x":1751113442978,"y":51.335},{"x":1751113382839,"y":39.472},{"x":1751113322666,"y":30.363},{"x":1751113262501,"y":52.518},{"x":1751113202347,"y":23.686},{"x":1751113142217,"y":20.989},{"x":1751113082017,"y":21.835},{"x":1751113021818,"y":29.302},{"x":1751112961642,"y":25.046},{"x":1751112901482,"y":27.798},{"x":1751112841317,"y":43.432},{"x":1751112781172,"y":31.653},{"x":1751112721013,"y":20.709},{"x":1751112660895,"y":40.228},{"x":1751112600709,"y":42.021},{"x":1751112540542,"y":18.9},{"x":1751112480443,"y":22.261},{"x":1751112420254,"y":28.547},{"x":1751112362940,"y":38.598},{"x":1751112302781,"y":36.774},{"x":1751112242633,"y":51.057},{"x":1751112182480,"y":48.637},{"x":1751112122314,"y":46.288},{"x":1751112062166,"y":36.173},{"x":1751112002077,"y":19.696},{"x":1751111941850,"y":34.112},{"x":1751111881691,"y":36.196},{"x":1751111821485,"y":36.908},{"x":1751111761334,"y":19.899},{"x":1751111701194,"y":39.857},{"x":1751111641017,"y":43.036},{"x":1751111580869,"y":29.238},{"x":1751111520728,"y":31.735},{"x":1751111460570,"y":28.145},{"x":1751111400455,"y":37.265},{"x":1751111342951,"y":26.366},{"x":1751111282798,"y":29.899},{"x":1751111222631,"y":42.376},{"x":1751111162488,"y":42.696},{"x":1751111102343,"y":37.948},{"x":1751111042183,"y":40.235},{"x":1751110982035,"y":24.139},{"x":1751110921878,"y":39.563},{"x":1751110861720,"y":32.993},{"x":1751110801573,"y":46.058},{"x":1751110741419,"y":31.635},{"x":1751110681271,"y":30.915},{"x":1751110621070,"y":35.598},{"x":1751110560926,"y":27.591},{"x":1751110500759,"y":23.374},{"x":1751110440597,"y":17.504},{"x":1751110380505,"y":20.161},{"x":1751110320328,"y":20.758},{"x":1751110260216,"y":43.696},{"x":1751110202914,"y":65.698},{"x":1751110142755,"y":40.495},{"x":1751110082619,"y":35.238},{"x":1751110022443,"y":37.092},{"x":1751109962300,"y":29.981},{"x":1751109902149,"y":26.729},{"x":1751109841965,"y":24.942},{"x":1751109781864,"y":36.999},{"x":1751109721663,"y":39.008},{"x":1751109661516,"y":44.193},{"x":1751109601357,"y":24.34},{"x":1751109541213,"y":36.191},{"x":1751109481062,"y":29.753},{"x":1751109420828,"y":32.091},{"x":1751109360719,"y":17.742},{"x":1751109300591,"y":33.172},{"x":1751109240377,"y":46.21},{"x":1751109180258,"y":39.837},{"x":1751109122886,"y":43.501},{"x":1751109062739,"y":39.584},{"x":1751109002599,"y":29.958},{"x":1751108942457,"y":28.833},{"x":1751108882315,"y":33.588},{"x":1751108822143,"y":45.687},{"x":1751108761993,"y":53.106},{"x":1751108701838,"y":38.908},{"x":1751108641689,"y":34.706},{"x":1751108581535,"y":33.001},{"x":1751108521367,"y":32.997},{"x":1751108461231,"y":22.025},{"x":1751108401118,"y":31.411},{"x":1751108340861,"y":28.557},{"x":1751108280716,"y":35.554},{"x":1751108220580,"y":47.667},{"x":1751108160528,"y":33.999},{"x":1751108100360,"y":39.907},{"x":1751108042981,"y":56.411},{"x":1751107982857,"y":40.797},{"x":1751107922682,"y":44.221},{"x":1751107862514,"y":42.539},{"x":1751107802367,"y":37.4},{"x":1751107742226,"y":47.829},{"x":1751107682069,"y":70.09},{"x":1751107621914,"y":48.542},{"x":1751107561764,"y":54.527},{"x":1751107501619,"y":35.143},{"x":1751107441465,"y":42.709},{"x":1751107381321,"y":28.611},{"x":1751107321174,"y":32.357},{"x":1751107261011,"y":28.928},{"x":1751107200870,"y":57.492},{"x":1751107140709,"y":35.009},{"x":1751107080568,"y":37.332},{"x":1751107020440,"y":41.936},{"x":1751106960298,"y":45.957},{"x":1751106903014,"y":34.948},{"x":1751106842855,"y":47.449},{"x":1751106782711,"y":37.041},{"x":1751106722569,"y":35.042},{"x":1751106662417,"y":36.182},{"x":1751106602266,"y":50.021},{"x":1751106542122,"y":43.793},{"x":1751106481971,"y":40.061},{"x":1751106421787,"y":45.049},{"x":1751106361637,"y":41.782},{"x":1751106301491,"y":49.182},{"x":1751106241337,"y":42.469},{"x":1751106181200,"y":49.201},{"x":1751106121021,"y":55.729},{"x":1751106060872,"y":66.348},{"x":1751106000751,"y":61.895},{"x":1751105940558,"y":62.712},{"x":1751105880406,"y":57.311},{"x":1751105820250,"y":37.995},{"x":1751105762956,"y":46.651},{"x":1751105702848,"y":45.894},{"x":1751105642645,"y":55.985},{"x":1751105582495,"y":45.413},{"x":1751105522348,"y":51.676},{"x":1751105462208,"y":40.783},{"x":1751105402053,"y":36.644},{"x":1751105341892,"y":41.454},{"x":1751105281734,"y":34.059},{"x":1751105221516,"y":54.867},{"x":1751105161364,"y":51.321},{"x":1751105101206,"y":38.959},{"x":1751105041050,"y":53.744},{"x":1751104980898,"y":43.749},{"x":1751104920749,"y":51.201},{"x":1751104860611,"y":32.969},{"x":1751104800543,"y":26.364},{"x":1751104740289,"y":20.04},{"x":1751104680245,"y":24.871},{"x":1751104622903,"y":34.804},{"x":1751104562749,"y":47.646},{"x":1751104502626,"y":46.543},{"x":1751104442438,"y":51.392},{"x":1751104382268,"y":40.795},{"x":1751104322119,"y":43.74},{"x":1751104261969,"y":35.819},{"x":1751104201803,"y":33.209},{"x":1751104141650,"y":57.103},{"x":1751104081500,"y":37.002},{"x":1751104021348,"y":32.542},{"x":1751103961202,"y":28.663},{"x":1751103901030,"y":50.97},{"x":1751103840815,"y":35.369},{"x":1751103780667,"y":26.342},{"x":1751103720521,"y":37.685},{"x":1751103660384,"y":39.77},{"x":1751103600212,"y":57.986},{"x":1751103542947,"y":43.109},{"x":1751103482803,"y":49.868},{"x":1751103422655,"y":46.86},{"x":1751103362517,"y":45.106},{"x":1751103302356,"y":34.231},{"x":1751103242211,"y":34.164},{"x":1751103182059,"y":30.459},{"x":1751103121899,"y":45.415},{"x":1751103061742,"y":45.281},{"x":1751103001603,"y":51.706},{"x":1751102941404,"y":46.528},{"x":1751102881260,"y":45.868},{"x":1751102821106,"y":32.034},{"x":1751102760941,"y":29.269},{"x":1751102700792,"y":40.481},{"x":1751102640643,"y":37.646},{"x":1751102580489,"y":42.571},{"x":1751102520389,"y":28.537},{"x":1751102460201,"y":32.791},{"x":1751102402901,"y":40.831},{"x":1751102342750,"y":59.355},{"x":1751102282587,"y":54.427},{"x":1751102222387,"y":51.948},{"x":1751102162232,"y":17.255},{"x":1751102102052,"y":46.532},{"x":1751102041903,"y":41.953},{"x":1751101981765,"y":42.043},{"x":1751101921598,"y":42.869},{"x":1751101861439,"y":34.928},{"x":1751101801291,"y":33.835},{"x":1751101741141,"y":32.634},{"x":1751101680976,"y":17.099},{"x":1751101620780,"y":35.012},{"x":1751101560649,"y":31.296},{"x":1751101500514,"y":47.14},{"x":1751101440327,"y":40.514},{"x":1751101380183,"y":47.796},{"x":1751101322899,"y":45.051},{"x":1751101262750,"y":54.115},{"x":1751101202610,"y":34.929},{"x":1751101142450,"y":47.142},{"x":1751101082304,"y":31.874},{"x":1751101022164,"y":51.405},{"x":1751100961991,"y":59.084},{"x":1751100901838,"y":40.062},{"x":1751100841689,"y":36.485},{"x":1751100781536,"y":31.187},{"x":1751100721381,"y":31.347},{"x":1751100661229,"y":32.132},{"x":1751100601073,"y":28.689},{"x":1751100540902,"y":35.59},{"x":1751100480781,"y":35.41},{"x":1751100420597,"y":51.755},{"x":1751100360472,"y":31.064},{"x":1751100300341,"y":44.288},{"x":1751100243019,"y":37.199},{"x":1751100182877,"y":39.424},{"x":1751100122717,"y":36.151},{"x":1751100062563,"y":40.055},{"x":1751100002402,"y":36.687},{"x":1751099942257,"y":49.748},{"x":1751099882106,"y":42.463},{"x":1751099821951,"y":48.647},{"x":1751099761803,"y":50.093},{"x":1751099701648,"y":67.983},{"x":1751099641510,"y":57.863},{"x":1751099581365,"y":42.327},{"x":1751099521228,"y":42.509},{"x":1751099461092,"y":38.153},{"x":1751099400919,"y":59.939},{"x":1751099340746,"y":40.816},{"x":1751099280624,"y":49.217},{"x":1751099220455,"y":55.81},{"x":1751099160335,"y":44.043},{"x":1751099100162,"y":56.064},{"x":1751099042902,"y":44.909},{"x":1751098982761,"y":49.518},{"x":1751098922632,"y":49.466},{"x":1751098862443,"y":48.332},{"x":1751098802287,"y":36.569},{"x":1751098742130,"y":57.953},{"x":1751098681967,"y":56.135},{"x":1751098621804,"y":51.537},{"x":1751098561625,"y":55.771},{"x":1751098501481,"y":47.097},{"x":1751098441311,"y":42.949},{"x":1751098381146,"y":42.323},{"x":1751098320963,"y":38.583},{"x":1751098260810,"y":56.851},{"x":1751098200724,"y":50.085},{"x":1751098140504,"y":48.214},{"x":1751098080378,"y":58.778},{"x":1751098020276,"y":48.832},{"x":1751097962934,"y":46.119},{"x":1751097902798,"y":49.907},{"x":1751097842620,"y":50.977},{"x":1751097782440,"y":51.363},{"x":1751097722280,"y":44.776},{"x":1751097662122,"y":34.985},{"x":1751097601983,"y":41.794},{"x":1751097541756,"y":43.627},{"x":1751097481605,"y":49.742},{"x":1751097421444,"y":50.789},{"x":1751097361295,"y":41.449},{"x":1751097301126,"y":34.702},{"x":1751097240956,"y":40.99},{"x":1751097180811,"y":47.294},{"x":1751097120663,"y":46.844},{"x":1751097060506,"y":42.678},{"x":1751097000373,"y":45.744},{"x":1751096940214,"y":53.301},{"x":1751096882972,"y":44.121},{"x":1751096822784,"y":35.849},{"x":1751096762629,"y":40.257},{"x":1751096702474,"y":34.509},{"x":1751096642317,"y":40.823},{"x":1751096582167,"y":37.314},{"x":1751096521996,"y":32.309},{"x":1751096461849,"y":41.001},{"x":1751096401720,"y":40.197},{"x":1751096341549,"y":27.496},{"x":1751096281406,"y":28.625},{"x":1751096221265,"y":43.597},{"x":1751096161117,"y":36.498},{"x":1751096100943,"y":29.392},{"x":1751096040783,"y":38.987},{"x":1751095980632,"y":25.901},{"x":1751095920492,"y":38.451},{"x":1751095860335,"y":25.927},{"x":1751095803017,"y":23.42},{"x":1751095742865,"y":24.837},{"x":1751095682715,"y":33.503},{"x":1751095622543,"y":41.321},{"x":1751095562407,"y":32.045},{"x":1751095502254,"y":39.125},{"x":1751095442102,"y":25.053},{"x":1751095381926,"y":29.078},{"x":1751095321791,"y":36.244},{"x":1751095261633,"y":29.8},{"x":1751095201487,"y":34.724},{"x":1751095141337,"y":24.349},{"x":1751095081190,"y":32.838},{"x":1751095020963,"y":32.54},{"x":1751094960811,"y":27.017},{"x":1751094900676,"y":32.366},{"x":1751094840505,"y":26.46},{"x":1751094780356,"y":22.386},{"x":1751094720231,"y":26.736},{"x":1751094662921,"y":33.931},{"x":1751094602789,"y":28.304},{"x":1751094542625,"y":34.347},{"x":1751094482470,"y":31.807},{"x":1751094422338,"y":31.17},{"x":1751094362171,"y":35.89},{"x":1751094302016,"y":50.06},{"x":1751094241849,"y":36.244},{"x":1751094181700,"y":44.971},{"x":1751094121557,"y":36.16},{"x":1751094061418,"y":27.475},{"x":1751094001349,"y":39.956},{"x":1751093941015,"y":41.477},{"x":1751093880866,"y":37.053},{"x":1751093820720,"y":35.071},{"x":1751093760609,"y":41.225},{"x":1751093700502,"y":38.189},{"x":1751093640330,"y":38.896},{"x":1751093582980,"y":36.091},{"x":1751093522832,"y":38.338},{"x":1751093462694,"y":33.12},{"x":1751093402504,"y":28.058},{"x":1751093342378,"y":26.134},{"x":1751093282208,"y":26.171},{"x":1751093222059,"y":49.028},{"x":1751093161911,"y":38.591},{"x":1751093101757,"y":30.164},{"x":1751093041591,"y":56.081},{"x":1751092981437,"y":48.166},{"x":1751092921308,"y":35.468},{"x":1751092861154,"y":46.218},{"x":1751092800982,"y":49.861},{"x":1751092740828,"y":35.687},{"x":1751092680683,"y":44.598},{"x":1751092620543,"y":43.148},{"x":1751092560335,"y":54.344},{"x":1751092500195,"y":41.324},{"x":1751092442914,"y":26.816},{"x":1751092382727,"y":33.29},{"x":1751092322561,"y":30.367},{"x":1751092262402,"y":32.864},{"x":1751092202257,"y":30.222},{"x":1751092142083,"y":40.837},{"x":1751092081917,"y":32.787},{"x":1751092021766,"y":53.426},{"x":1751091961623,"y":41.456},{"x":1751091901473,"y":40.347},{"x":1751091841345,"y":33.498},{"x":1751091781155,"y":43.96},{"x":1751091720989,"y":39.444},{"x":1751091660849,"y":28.724},{"x":1751091600770,"y":32.138},{"x":1751091540545,"y":42.819},{"x":1751091480364,"y":27.648},{"x":1751091420229,"y":56.071},{"x":1751091362948,"y":45.262},{"x":1751091302826,"y":33.372},{"x":1751091242650,"y":31.136},{"x":1751091182489,"y":48.248},{"x":1751091122346,"y":37.425},{"x":1751091062200,"y":43.496},{"x":1751091002017,"y":37.267},{"x":1751090941860,"y":41.817},{"x":1751090881713,"y":29.604},{"x":1751090821560,"y":41.191},{"x":1751090761404,"y":38.331},{"x":1751090701271,"y":61.195},{"x":1751090641113,"y":48.075},{"x":1751090580943,"y":49.413},{"x":1751090520787,"y":53.498},{"x":1751090460653,"y":45.846},{"x":1751090400476,"y":37.582},{"x":1751090340262,"y":35.443},{"x":1751090282921,"y":33.89},{"x":1751090222786,"y":31.821},{"x":1751090162634,"y":42.104},{"x":1751090102479,"y":45.002},{"x":1751090042322,"y":39.325},{"x":1751089982173,"y":37.876},{"x":1751089922024,"y":39.315},{"x":1751089861872,"y":29.857},{"x":1751089801717,"y":31.346},{"x":1751089741561,"y":38.497},{"x":1751089681385,"y":40.934},{"x":1751089621177,"y":54.292},{"x":1751089561017,"y":51.47},{"x":1751089500918,"y":50.35},{"x":1751089440708,"y":53.335},{"x":1751089380598,"y":46.148},{"x":1751089320389,"y":27.854},{"x":1751089260333,"y":27.485},{"x":1751089202984,"y":27.939},{"x":1751089142845,"y":31.127},{"x":1751089082695,"y":33.848},{"x":1751089022544,"y":29.877},{"x":1751088962398,"y":32.725},{"x":1751088902232,"y":32.147},{"x":1751088842079,"y":34.718},{"x":1751088781916,"y":29.347},{"x":1751088721762,"y":29.045},{"x":1751088661611,"y":30.926},{"x":1751088601453,"y":29.98},{"x":1751088541305,"y":29.134},{"x":1751088481148,"y":33.362},{"x":1751088420944,"y":27.248},{"x":1751088360795,"y":27.075},{"x":1751088300641,"y":31.068},{"x":1751088240503,"y":32.237},{"x":1751088180356,"y":33.392},{"x":1751088120171,"y":42.016},{"x":1751088062928,"y":53.268},{"x":1751088002774,"y":52.08},{"x":1751087942626,"y":45.967},{"x":1751087882521,"y":46.157},{"x":1751087822233,"y":46.188},{"x":1751087762079,"y":32.632},{"x":1751087701919,"y":22.899},{"x":1751087641776,"y":23.072},{"x":1751087581667,"y":25.089},{"x":1751087521479,"y":21.811},{"x":1751087461334,"y":24.669},{"x":1751087401184,"y":27.505},{"x":1751087341019,"y":25.554},{"x":1751087280909,"y":26.142},{"x":1751087220716,"y":29.591},{"x":1751087160550,"y":25.113},{"x":1751087100492,"y":28.561},{"x":1751087040227,"y":26.5},{"x":1751086982967,"y":24.172},{"x":1751086922822,"y":24.102},{"x":1751086862683,"y":29.667},{"x":1751086802545,"y":34.89},{"x":1751086742365,"y":42.162},{"x":1751086682225,"y":37.531},{"x":1751086622081,"y":33.494},{"x":1751086561936,"y":35.475},{"x":1751086501792,"y":29.307},{"x":1751086441643,"y":26.151},{"x":1751086381501,"y":26.581},{"x":1751086321344,"y":23.717},{"x":1751086261195,"y":23.268},{"x":1751086200980,"y":25.679},{"x":1751086140834,"y":29.137},{"x":1751086080682,"y":26.037},{"x":1751086020534,"y":28.535},{"x":1751085960361,"y":30.024},{"x":1751085900144,"y":25.891},{"x":1751085842939,"y":24.374},{"x":1751085782787,"y":25.431},{"x":1751085722645,"y":31.369},{"x":1751085662491,"y":26.276},{"x":1751085602346,"y":27.833},{"x":1751085542183,"y":28.221},{"x":1751085482042,"y":28.681},{"x":1751085421877,"y":26.862},{"x":1751085361736,"y":30.822},{"x":1751085301591,"y":32.063},{"x":1751085241435,"y":23.752},{"x":1751085181292,"y":38.237},{"x":1751085121121,"y":31.501},{"x":1751085060965,"y":35.563},{"x":1751085000830,"y":31.559},{"x":1751084940661,"y":31.69},{"x":1751084880548,"y":31.25},{"x":1751084820353,"y":32.873},{"x":1751084760090,"y":28.887},{"x":1751084702886,"y":30.1},{"x":1751084642748,"y":26.599},{"x":1751084582569,"y":24.709},{"x":1751084522421,"y":25.096},{"x":1751084462282,"y":29.711},{"x":1751084402130,"y":31.301},{"x":1751084341962,"y":30.13},{"x":1751084281800,"y":31.94},{"x":1751084221635,"y":29.755},{"x":1751084161489,"y":30.787},{"x":1751084101352,"y":27.879},{"x":1751084041193,"y":20.619},{"x":1751083981049,"y":27.822},{"x":1751083920869,"y":30.072},{"x":1751083860730,"y":24.851},{"x":1751083800657,"y":27.816},{"x":1751083740447,"y":28.871},{"x":1751083680478,"y":29.564},{"x":1751083622921,"y":31.657},{"x":1751083562769,"y":31.679},{"x":1751083502632,"y":27.785},{"x":1751083442481,"y":33.246},{"x":1751083382342,"y":26.988},{"x":1751083322203,"y":24.994},{"x":1751083262025,"y":26.996},{"x":1751083201795,"y":28.384},{"x":1751083141627,"y":28.437},{"x":1751083081450,"y":31.986},{"x":1751083021309,"y":30.639},{"x":1751082961158,"y":31.659},{"x":1751082900986,"y":33.319},{"x":1751082840836,"y":24.496},{"x":1751082780689,"y":29.48},{"x":1751082720554,"y":27.213},{"x":1751082660438,"y":23.765},{"x":1751082600298,"y":24.754},{"x":1751082543003,"y":30.281},{"x":1751082482856,"y":26.684},{"x":1751082422699,"y":29.693},{"x":1751082362554,"y":30.148},{"x":1751082302412,"y":29.423},{"x":1751082242266,"y":30.272},{"x":1751082182156,"y":36.059},{"x":1751082121957,"y":28.6},{"x":1751082061816,"y":24.655},{"x":1751082001657,"y":33.958},{"x":1751081941505,"y":44.266},{"x":1751081881343,"y":43.357},{"x":1751081821167,"y":46.351},{"x":1751081761000,"y":49.596},{"x":1751081700848,"y":38.428},{"x":1751081640696,"y":29.533},{"x":1751081580551,"y":29.906},{"x":1751081520474,"y":25.399},{"x":1751081460246,"y":28.179},{"x":1751081402950,"y":29.978},{"x":1751081342738,"y":33.612},{"x":1751081282595,"y":27.006},{"x":1751081222432,"y":28.286},{"x":1751081162293,"y":25.531},{"x":1751081102132,"y":26.736},{"x":1751081041958,"y":28.441},{"x":1751080981769,"y":27.38},{"x":1751080921623,"y":33.791},{"x":1751080861493,"y":33.146},{"x":1751080801362,"y":33.58},{"x":1751080741209,"y":36.419},{"x":1751080681035,"y":39.459},{"x":1751080620872,"y":37.84},{"x":1751080560696,"y":35.978},{"x":1751080500596,"y":31.466},{"x":1751080440342,"y":32.447},{"x":1751080380197,"y":29.826},{"x":1751080322904,"y":30.472},{"x":1751080262733,"y":30.386},{"x":1751080202593,"y":29.405},{"x":1751080142443,"y":30.959},{"x":1751080082297,"y":33.411},{"x":1751080022140,"y":28.722},{"x":1751079961964,"y":31.458},{"x":1751079901815,"y":27.708},{"x":1751079841457,"y":28.448},{"x":1751079781266,"y":34.226},{"x":1751079722255,"y":50.128},{"x":1751079662072,"y":48.425},{"x":1751079602299,"y":48.499},{"x":1751079542099,"y":46.468},{"x":1751079481913,"y":41.893},{"x":1751079421778,"y":35.856},{"x":1751079361612,"y":29.808},{"x":1751079301459,"y":38.352},{"x":1751079241313,"y":32.244},{"x":1751079181162,"y":31.376},{"x":1751079121002,"y":31.853},{"x":1751079060856,"y":34.518},{"x":1751079000723,"y":29.045},{"x":1751078940550,"y":27.38},{"x":1751078880451,"y":30.038},{"x":1751078820263,"y":27.542},{"x":1751078762928,"y":27.335},{"x":1751078702773,"y":30.066},{"x":1751078642630,"y":27.361},{"x":1751078582484,"y":26.741},{"x":1751078522334,"y":31.417},{"x":1751078462188,"y":39.011},{"x":1751078402039,"y":37.262},{"x":1751078341884,"y":34.202},{"x":1751078281731,"y":31.789},{"x":1751078221579,"y":32.02},{"x":1751078161434,"y":36.611},{"x":1751078101273,"y":33.79},{"x":1751078041119,"y":36.936},{"x":1751077980926,"y":36.774},{"x":1751077920778,"y":33.064},{"x":1751077860655,"y":32.614},{"x":1751077800566,"y":33.322},{"x":1751077740389,"y":30.797},{"x":1751077683020,"y":35.831},{"x":1751077622859,"y":34.799},{"x":1751077562697,"y":30.126},{"x":1751077502556,"y":29.75},{"x":1751077442392,"y":31.796},{"x":1751077382251,"y":28.496},{"x":1751077322115,"y":30.768},{"x":1751077261938,"y":32.058},{"x":1751077201788,"y":29.11},{"x":1751077141648,"y":33.445},{"x":1751077081487,"y":34.093},{"x":1751077021310,"y":34.305},{"x":1751076961168,"y":30.513},{"x":1751076901011,"y":32.92},{"x":1751076840864,"y":27.804},{"x":1751076780717,"y":28.267},{"x":1751076720600,"y":32.917},{"x":1751076660387,"y":36.488},{"x":1751076600276,"y":32.725},{"x":1751076542925,"y":40.267},{"x":1751076482771,"y":32.045},{"x":1751076422613,"y":30.131},{"x":1751076362458,"y":28.193},{"x":1751076302297,"y":25.85},{"x":1751076242155,"y":28.312},{"x":1751076181988,"y":39.553},{"x":1751076121839,"y":32.512},{"x":1751076061689,"y":32.709},{"x":1751076001589,"y":46.636},{"x":1751075941350,"y":44.944},{"x":1751075881200,"y":59.083},{"x":1751075821045,"y":50.534},{"x":1751075760882,"y":49.273},{"x":1751075700740,"y":39.158},{"x":1751075640584,"y":38.376},{"x":1751075580463,"y":27.8},{"x":1751075520296,"y":27.624},{"x":1751075460160,"y":33.271},{"x":1751075402927,"y":30.137},{"x":1751075342783,"y":32.139},{"x":1751075282630,"y":29.516},{"x":1751075222455,"y":26.855},{"x":1751075162300,"y":27.759},{"x":1751075102150,"y":26.409},{"x":1751075041994,"y":31.037},{"x":1751074981854,"y":29.238},{"x":1751074921694,"y":28.307},{"x":1751074861549,"y":27.722},{"x":1751074801406,"y":27.87},{"x":1751074741259,"y":31.733},{"x":1751074681107,"y":26.828},{"x":1751074620918,"y":31.818},{"x":1751074560776,"y":30.572},{"x":1751074500673,"y":28.442},{"x":1751074440495,"y":34.776},{"x":1751074380423,"y":34.713},{"x":1751074320235,"y":35.243},{"x":1751074262924,"y":40.144},{"x":1751074202769,"y":35.96},{"x":1751074142608,"y":41.29},{"x":1751074082457,"y":42.174},{"x":1751074022309,"y":40.353},{"x":1751073962160,"y":42.557},{"x":1751073901998,"y":39.205},{"x":1751073841857,"y":31.098},{"x":1751073781705,"y":29.583},{"x":1751073721547,"y":28.201},{"x":1751073661404,"y":29.799},{"x":1751073601247,"y":30.303},{"x":1751073541072,"y":47.343},{"x":1751073480929,"y":51.291},{"x":1751073420758,"y":52.33},{"x":1751073360583,"y":48.373},{"x":1751073300493,"y":48.15},{"x":1751073240326,"y":54.554},{"x":1751073182966,"y":52.388},{"x":1751073122819,"y":31.996},{"x":1751073062665,"y":32.734},{"x":1751073002505,"y":29.587},{"x":1751072942363,"y":33.885},{"x":1751072882201,"y":28.528},{"x":1751072822059,"y":26.289},{"x":1751072761904,"y":25.928},{"x":1751072701752,"y":28.635},{"x":1751072641605,"y":29.043},{"x":1751072581451,"y":33.523},{"x":1751072521310,"y":27.449},{"x":1751072461127,"y":29.321},{"x":1751072400972,"y":27.48},{"x":1751072340746,"y":39.099},{"x":1751072280632,"y":35.506},{"x":1751072220435,"y":35.059},{"x":1751072160368,"y":34.572},{"x":1751072103024,"y":37.917},{"x":1751072042835,"y":31.408},{"x":1751071982676,"y":30.17},{"x":1751071922536,"y":35.305},{"x":1751071862385,"y":32.689},{"x":1751071802240,"y":36.51},{"x":1751071742096,"y":28.408},{"x":1751071681943,"y":27.879},{"x":1751071621799,"y":29.849},{"x":1751071561654,"y":32.129},{"x":1751071501510,"y":27.719},{"x":1751071441348,"y":30.397},{"x":1751071381195,"y":29.93},{"x":1751071321051,"y":27.63},{"x":1751071260873,"y":30.708},{"x":1751071200765,"y":27.194},{"x":1751071140587,"y":25.802},{"x":1751071080454,"y":31.208},{"x":1751071020333,"y":31.104},{"x":1751070960163,"y":29.941},{"x":1751070902888,"y":32.857},{"x":1751070842746,"y":27.486},{"x":1751070782579,"y":26.33},{"x":1751070722434,"y":27.564},{"x":1751070662277,"y":29.512},{"x":1751070602123,"y":28.947},{"x":1751070541975,"y":31.545},{"x":1751070481829,"y":28.415},{"x":1751070421680,"y":26.966},{"x":1751070361523,"y":25.539},{"x":1751070301371,"y":32.442},{"x":1751070241203,"y":29.316},{"x":1751070181030,"y":29.113},{"x":1751070120900,"y":31.114},{"x":1751070060725,"y":27.983},{"x":1751070000573,"y":28.11},{"x":1751069940391,"y":29.984},{"x":1751069880168,"y":41.079},{"x":1751069822810,"y":36.288},{"x":1751069762671,"y":36.619},{"x":1751069702499,"y":36.385},{"x":1751069642349,"y":37.664},{"x":1751069582199,"y":30.121},{"x":1751069522052,"y":37.435},{"x":1751069461898,"y":32.003},{"x":1751069401770,"y":28.857},{"x":1751069341587,"y":27.91},{"x":1751069281443,"y":25.351},{"x":1751069221288,"y":31.254},{"x":1751069161141,"y":29.197},{"x":1751069100985,"y":27.263},{"x":1751069040830,"y":27.752},{"x":1751068980677,"y":29.709},{"x":1751068920539,"y":28.245},{"x":1751068860520,"y":32.053},{"x":1751068800204,"y":31.292},{"x":1751068742934,"y":30.732},{"x":1751068682796,"y":28.358},{"x":1751068622661,"y":30.455},{"x":1751068562487,"y":32.035},{"x":1751068502345,"y":30.33},{"x":1751068442189,"y":28.967},{"x":1751068382033,"y":25.156},{"x":1751068321874,"y":24.908},{"x":1751068261739,"y":25.498},{"x":1751068201587,"y":31.49},{"x":1751068141437,"y":26.801},{"x":1751068081298,"y":26.835},{"x":1751068021112,"y":28.926},{"x":1751067960950,"y":28.639},{"x":1751067900863,"y":28.555},{"x":1751067840627,"y":33.422},{"x":1751067780520,"y":31.447},{"x":1751067720381,"y":36.564},{"x":1751067660213,"y":35.5},{"x":1751067602933,"y":39.992},{"x":1751067542803,"y":40.693},{"x":1751067482628,"y":34.845},{"x":1751067422452,"y":28.433},{"x":1751067362311,"y":29.241},{"x":1751067302160,"y":29.117},{"x":1751067242016,"y":29.084},{"x":1751067181851,"y":35.352},{"x":1751067121702,"y":29.84},{"x":1751067061559,"y":28.049},{"x":1751067001429,"y":29.643},{"x":1751066941250,"y":26.514},{"x":1751066881126,"y":33.907},{"x":1751066820932,"y":34.91},{"x":1751066760783,"y":29.446},{"x":1751066700667,"y":30.623},{"x":1751066640401,"y":29.616},{"x":1751066580303,"y":29.911},{"x":1751066522978,"y":30.848},{"x":1751066462824,"y":30.585},{"x":1751066402684,"y":35.453},{"x":1751066342540,"y":33.297},{"x":1751066282422,"y":29.485},{"x":1751066222229,"y":34.537},{"x":1751066162081,"y":30.946},{"x":1751066101923,"y":27.624},{"x":1751066041772,"y":36.179},{"x":1751065981647,"y":29.693},{"x":1751065921484,"y":38.013},{"x":1751065861326,"y":41.193},{"x":1751065801178,"y":38.469},{"x":1751065740997,"y":38.183},{"x":1751065680851,"y":36.827},{"x":1751065620700,"y":27.102},{"x":1751065560563,"y":26.789},{"x":1751065500518,"y":28.129},{"x":1751065440243,"y":33.763},{"x":1751065383007,"y":30.722},{"x":1751065322876,"y":29.337},{"x":1751065262709,"y":37.378},{"x":1751065202557,"y":37.64},{"x":1751065142402,"y":34.739},{"x":1751065082245,"y":31.293},{"x":1751065022097,"y":29.764},{"x":1751064961929,"y":27.746},{"x":1751064901777,"y":33.506},{"x":1751064841625,"y":30.289},{"x":1751064781480,"y":27.117},{"x":1751064721353,"y":28.426},{"x":1751064661194,"y":30.47},{"x":1751064601033,"y":40.821},{"x":1751064540868,"y":39.802},{"x":1751064480728,"y":44.977},{"x":1751064420590,"y":47.189},{"x":1751064360491,"y":41.99},{"x":1751064300359,"y":36.859},{"x":1751064243026,"y":36.468},{"x":1751064182875,"y":30.84},{"x":1751064122731,"y":28.669},{"x":1751064062560,"y":27.831},{"x":1751064002433,"y":28.38},{"x":1751063942259,"y":31.978},{"x":1751063882114,"y":44.365},{"x":1751063821962,"y":32.756},{"x":1751063761815,"y":31.685},{"x":1751063701669,"y":36.172},{"x":1751063641511,"y":35.714},{"x":1751063581363,"y":30.031},{"x":1751063521215,"y":31.073},{"x":1751063461064,"y":29.643},{"x":1751063400921,"y":29.366},{"x":1751063340768,"y":31.806},{"x":1751063280623,"y":31.886},{"x":1751063220479,"y":35.318},{"x":1751063160329,"y":34.728},{"x":1751063100221,"y":36.07},{"x":1751063042925,"y":36.133},{"x":1751062982790,"y":41.156},{"x":1751062922620,"y":37.24},{"x":1751062862472,"y":31.455},{"x":1751062802327,"y":33.581},{"x":1751062742165,"y":33.253},{"x":1751062682035,"y":39.757},{"x":1751062621820,"y":39.476},{"x":1751062561673,"y":36.449},{"x":1751062501522,"y":35.411},{"x":1751062441358,"y":35.31},{"x":1751062381213,"y":35.193},{"x":1751062321038,"y":32.304},{"x":1751062260858,"y":31.878},{"x":1751062200749,"y":35.857},{"x":1751062140539,"y":33.457},{"x":1751062080461,"y":44.254},{"x":1751062020197,"y":40.972},{"x":1751061962964,"y":34.186},{"x":1751061902825,"y":37.579},{"x":1751061842673,"y":36.263},{"x":1751061782521,"y":34.762},{"x":1751061722367,"y":33.34},{"x":1751061662224,"y":41.349},{"x":1751061602147,"y":29.359},{"x":1751061541871,"y":31.619},{"x":1751061481724,"y":34.113},{"x":1751061421572,"y":37.921},{"x":1751061361407,"y":34.366},{"x":1751061301259,"y":32.843},{"x":1751061241107,"y":48.749},{"x":1751061180938,"y":32.878},{"x":1751061120781,"y":35.042},{"x":1751061060629,"y":41.973},{"x":1751061000487,"y":36.075},{"x":1751060940451,"y":36.251},{"x":1751060883007,"y":43.308},{"x":1751060822859,"y":42.89},{"x":1751060762716,"y":42.378},{"x":1751060702563,"y":41.62},{"x":1751060642419,"y":39.825},{"x":1751060582273,"y":44.411},{"x":1751060522128,"y":42.398},{"x":1751060461964,"y":35.877},{"x":1751060401806,"y":42.452},{"x":1751060341651,"y":55.485},{"x":1751060281519,"y":45.514},{"x":1751060221354,"y":35.272},{"x":1751060161211,"y":40.609},{"x":1751060101065,"y":44.921},{"x":1751060040896,"y":40.706},{"x":1751059980785,"y":40.49},{"x":1751059920577,"y":49.151},{"x":1751059860439,"y":51.779},{"x":1751059800294,"y":45.866},{"x":1751059742994,"y":44.933},{"x":1751059682839,"y":42.975},{"x":1751059622695,"y":51.426},{"x":1751059562554,"y":40.406},{"x":1751059502406,"y":40.25},{"x":1751059442254,"y":36.671},{"x":1751059382107,"y":39.546},{"x":1751059321942,"y":37.711},{"x":1751059261784,"y":43.471},{"x":1751059201643,"y":36.939},{"x":1751059141494,"y":45.901},{"x":1751059081415,"y":45.242},{"x":1751059021139,"y":47.483},{"x":1751058960975,"y":42.695},{"x":1751058900842,"y":37.59},{"x":1751058840639,"y":41.424},{"x":1751058780526,"y":43.261},{"x":1751058720363,"y":40.561},{"x":1751058660291,"y":45.737},{"x":1751058602920,"y":47.283},{"x":1751058542773,"y":51.548},{"x":1751058482631,"y":39.169},{"x":1751058422481,"y":38.903},{"x":1751058362336,"y":36.137},{"x":1751058302182,"y":38.317},{"x":1751058242040,"y":40.189},{"x":1751058181884,"y":38.288},{"x":1751058121739,"y":40.135},{"x":1751058061593,"y":39.821},{"x":1751058001565,"y":38.962},{"x":1751057941266,"y":45.552},{"x":1751057881115,"y":41.332},{"x":1751057820951,"y":50.49},{"x":1751057760801,"y":45.745},{"x":1751057700735,"y":37.558},{"x":1751057640540,"y":46.358},{"x":1751057580320,"y":45.195},{"x":1751057522994,"y":49.301},{"x":1751057462849,"y":49.776},{"x":1751057402693,"y":35.719},{"x":1751057342519,"y":38.829},{"x":1751057282387,"y":38.495},{"x":1751057222209,"y":42.341},{"x":1751057162067,"y":38.983},{"x":1751057101903,"y":38.097},{"x":1751057041751,"y":39.099},{"x":1751056981599,"y":39.007},{"x":1751056921450,"y":42.861},{"x":1751056861295,"y":41.906},{"x":1751056801171,"y":41.559},{"x":1751056740953,"y":37.516},{"x":1751056680813,"y":34.682},{"x":1751056620663,"y":40.355},{"x":1751056560567,"y":38.667},{"x":1751056500458,"y":40.86},{"x":1751056440337,"y":43.681},{"x":1751056380041,"y":52.743},{"x":1751056322881,"y":49.503},{"x":1751056262732,"y":47.817},{"x":1751056202593,"y":50.228},{"x":1751056142440,"y":50.972},{"x":1751056082292,"y":52.049},{"x":1751056022163,"y":41.374},{"x":1751055961992,"y":48.85},{"x":1751055901830,"y":42.325},{"x":1751055841678,"y":41.09},{"x":1751055781530,"y":39.221},{"x":1751055721373,"y":45.627},{"x":1751055661217,"y":42.005},{"x":1751055601065,"y":41.772},{"x":1751055540895,"y":50.456},{"x":1751055480735,"y":44.73},{"x":1751055420557,"y":53.364},{"x":1751055360393,"y":41.762},{"x":1751055300257,"y":49.419},{"x":1751055242950,"y":40.035},{"x":1751055182793,"y":42.46},{"x":1751055122637,"y":43.923},{"x":1751055062494,"y":52.103},{"x":1751055002343,"y":62.724},{"x":1751054942190,"y":71.072},{"x":1751054882015,"y":66.605},{"x":1751054821854,"y":76.383},{"x":1751054761695,"y":75.08},{"x":1751054701545,"y":65.316},{"x":1751054641391,"y":53.559},{"x":1751054581239,"y":55.088},{"x":1751054521067,"y":58.434},{"x":1751054460901,"y":62.872},{"x":1751054401180,"y":54.936},{"x":1751054340559,"y":59.886},{"x":1751054280481,"y":55.533},{"x":1751054220351,"y":50.231},{"x":1751054162958,"y":43.529},{"x":1751054102812,"y":45.679},{"x":1751054042661,"y":50.441},{"x":1751053982513,"y":55.408},{"x":1751053922363,"y":54.128},{"x":1751053862226,"y":57.432},{"x":1751053802053,"y":58.064},{"x":1751053741902,"y":51.441},{"x":1751053681749,"y":57.645},{"x":1751053621603,"y":50.754},{"x":1751053561458,"y":48.466},{"x":1751053501318,"y":57.065},{"x":1751053441142,"y":66.994},{"x":1751053380989,"y":58.976},{"x":1751053320842,"y":57.026},{"x":1751053260695,"y":50.051},{"x":1751053200579,"y":42.491},{"x":1751053140368,"y":50.953},{"x":1751053080356,"y":55.686},{"x":1751053022943,"y":60.134},{"x":1751052962812,"y":48.419},{"x":1751052902649,"y":54.916},{"x":1751052842478,"y":55.028},{"x":1751052782338,"y":39.984},{"x":1751052722198,"y":39.587},{"x":1751052662054,"y":32.749},{"x":1751052601888,"y":40.525},{"x":1751052541741,"y":42.193},{"x":1751052481592,"y":55.51},{"x":1751052421481,"y":43.937},{"x":1751052361300,"y":42.056},{"x":1751052301146,"y":37.377},{"x":1751052240985,"y":36.059},{"x":1751052180837,"y":42.922},{"x":1751052120676,"y":46.811},{"x":1751052060505,"y":51.794},{"x":1751052000483,"y":60.824},{"x":1751051940266,"y":61.835},{"x":1751051882977,"y":62.041},{"x":1751051822780,"y":56.031},{"x":1751051762642,"y":43.639},{"x":1751051702476,"y":44.058},{"x":1751051642326,"y":53.513},{"x":1751051582180,"y":53.92},{"x":1751051522003,"y":51.344},{"x":1751051461854,"y":47.855},{"x":1751051401701,"y":46.594},{"x":1751051341555,"y":49.182},{"x":1751051281405,"y":37.711},{"x":1751051221223,"y":37.525},{"x":1751051161067,"y":46.803},{"x":1751051100920,"y":50.276},{"x":1751051040746,"y":48.24},{"x":1751050980594,"y":46.267},{"x":1751050920453,"y":47.862},{"x":1751050860333,"y":41.966},{"x":1751050802964,"y":46.578},{"x":1751050742786,"y":39.986},{"x":1751050682625,"y":46.167},{"x":1751050622476,"y":49.408},{"x":1751050562331,"y":39.885},{"x":1751050502182,"y":40.392},{"x":1751050442037,"y":50.985},{"x":1751050381886,"y":37.453},{"x":1751050321777,"y":59.918},{"x":1751050261584,"y":65.262},{"x":1751050201440,"y":59.027},{"x":1751050141291,"y":61.137},{"x":1751050081129,"y":62.261},{"x":1751050020979,"y":53.44},{"x":1751049960827,"y":32.583},{"x":1751049900713,"y":45.179},{"x":1751049840490,"y":57.091},{"x":1751049780340,"y":47.818},{"x":1751049720151,"y":56.807},{"x":1751049662921,"y":58.337},{"x":1751049602748,"y":42.043},{"x":1751049542614,"y":38.711},{"x":1751049482435,"y":32.943},{"x":1751049422282,"y":36.285},{"x":1751049362145,"y":33.192},{"x":1751049301979,"y":27.916},{"x":1751049241829,"y":28.387},{"x":1751049181687,"y":29.341},{"x":1751049121534,"y":29.457},{"x":1751049061386,"y":25.5},{"x":1751049001235,"y":32.235},{"x":1751048941061,"y":31.88},{"x":1751048880884,"y":37.597},{"x":1751048820731,"y":45.586},{"x":1751048760504,"y":45.984},{"x":1751048700463,"y":48.714},{"x":1751048640228,"y":48.675},{"x":1751048582902,"y":51.214},{"x":1751048522729,"y":29.72},{"x":1751048462584,"y":34.641},{"x":1751048402435,"y":27.87},{"x":1751048342289,"y":40.76},{"x":1751048282165,"y":41.011},{"x":1751048221941,"y":48.414},{"x":1751048161785,"y":33.007},{"x":1751048101624,"y":43.564},{"x":1751048041472,"y":38.6},{"x":1751047981332,"y":28.543},{"x":1751047921186,"y":29.323},{"x":1751047861027,"y":39.214},{"x":1751047800876,"y":36.814},{"x":1751047740674,"y":37.555},{"x":1751047680581,"y":40.376},{"x":1751047620378,"y":41.333},{"x":1751047560190,"y":28.456},{"x":1751047502963,"y":29.662},{"x":1751047442812,"y":41.119},{"x":1751047382643,"y":32.746},{"x":1751047322496,"y":28.093},{"x":1751047262347,"y":28.763},{"x":1751047202219,"y":31.097},{"x":1751047142032,"y":30.662},{"x":1751047081869,"y":37.873},{"x":1751047021707,"y":37.566},{"x":1751046961545,"y":40.9},{"x":1751046901367,"y":49.051},{"x":1751046841220,"y":52.251},{"x":1751046781061,"y":54.384},{"x":1751046720894,"y":56.293},{"x":1751046660746,"y":50.637},{"x":1751046600607,"y":26.416},{"x":1751046540483,"y":26.199},{"x":1751046480326,"y":27.195},{"x":1751046422999,"y":38.088},{"x":1751046362834,"y":37.852},{"x":1751046302689,"y":39.498},{"x":1751046242515,"y":48.722},{"x":1751046182358,"y":45.997},{"x":1751046122196,"y":30.325},{"x":1751046062039,"y":27.492},{"x":1751046001885,"y":31.441},{"x":1751045941740,"y":24.661},{"x":1751045881599,"y":26.016},{"x":1751045821453,"y":23.41},{"x":1751045761311,"y":24.446},{"x":1751045701158,"y":25.711},{"x":1751045641005,"y":25.034},{"x":1751045580833,"y":34.756},{"x":1751045520704,"y":33.842},{"x":1751045460546,"y":22.9},{"x":1751045400518,"y":54.066},{"x":1751045340412,"y":49.14},{"x":1751045282967,"y":56.43},{"x":1751045222818,"y":51.561},{"x":1751045162672,"y":63.222},{"x":1751045102528,"y":31.493},{"x":1751045042375,"y":37.994},{"x":1751044982233,"y":29.599},{"x":1751044922082,"y":32.366},{"x":1751044861926,"y":41.316},{"x":1751044801803,"y":35.762},{"x":1751044741622,"y":33.87},{"x":1751044681466,"y":43.75},{"x":1751044621283,"y":42.45},{"x":1751044561120,"y":20.146},{"x":1751044500967,"y":23.285},{"x":1751044440773,"y":27.586},{"x":1751044380631,"y":35.527},{"x":1751044320496,"y":34.252},{"x":1751044260367,"y":31.61},{"x":1751044200243,"y":29.305},{"x":1751044142919,"y":29.568},{"x":1751044082765,"y":21.121},{"x":1751044022620,"y":27.962},{"x":1751043962477,"y":24.443},{"x":1751043902320,"y":28.665},{"x":1751043842162,"y":34.665},{"x":1751043782011,"y":21.819},{"x":1751043721859,"y":27.19},{"x":1751043661709,"y":24.17},{"x":1751043601656,"y":20.379},{"x":1751043541275,"y":20.906},{"x":1751043481107,"y":21.364},{"x":1751043420935,"y":17.535},{"x":1751043360800,"y":21.35},{"x":1751043300671,"y":17.284},{"x":1751043240497,"y":36.772},{"x":1751043180367,"y":34.88},{"x":1751043120175,"y":40.935},{"x":1751043062878,"y":42.452},{"x":1751043002732,"y":35.26},{"x":1751042942582,"y":23.531},{"x":1751042882407,"y":27.272},{"x":1751042822264,"y":25.375},{"x":1751042762112,"y":32.459},{"x":1751042701954,"y":30.918},{"x":1751042641809,"y":47.89},{"x":1751042581663,"y":40.109},{"x":1751042521521,"y":49.455},{"x":1751042461367,"y":39.601},{"x":1751042401226,"y":37.173},{"x":1751042341070,"y":32.862},{"x":1751042280903,"y":28.364},{"x":1751042220746,"y":37.473},{"x":1751042160625,"y":27.611},{"x":1751042100544,"y":34.645},{"x":1751042040418,"y":36.267},{"x":1751041982974,"y":31.197},{"x":1751041922823,"y":47.396},{"x":1751041862681,"y":43.722},{"x":1751041802528,"y":51.027},{"x":1751041742379,"y":55.308},{"x":1751041682230,"y":47.524},{"x":1751041622069,"y":32.352},{"x":1751041561917,"y":26.838},{"x":1751041501762,"y":32.253},{"x":1751041441614,"y":21.601},{"x":1751041381477,"y":17.279},{"x":1751041321303,"y":16.113},{"x":1751041261147,"y":23.592},{"x":1751041201023,"y":37.673},{"x":1751041140828,"y":46.281},{"x":1751041080659,"y":30.57},{"x":1751041020500,"y":36.501},{"x":1751040960365,"y":27.92},{"x":1751040903020,"y":19.07},{"x":1751040842890,"y":17.013},{"x":1751040782720,"y":23.405},{"x":1751040722584,"y":17.845},{"x":1751040662430,"y":19.543},{"x":1751040602280,"y":28.316},{"x":1751040542133,"y":25.435},{"x":1751040481969,"y":25.523},{"x":1751040421807,"y":35.434},{"x":1751040361659,"y":18.057},{"x":1751040301525,"y":22.161},{"x":1751040241368,"y":16.709},{"x":1751040181178,"y":21.386},{"x":1751040120996,"y":15.832},{"x":1751040060840,"y":15.133},{"x":1751040000761,"y":14.186},{"x":1751039940497,"y":14.762},{"x":1751039880482,"y":14.559},{"x":1751039820297,"y":10.333},{"x":1751039762892,"y":18.892},{"x":1751039702749,"y":13.904},{"x":1751039642601,"y":14.465},{"x":1751039582456,"y":32.856},{"x":1751039522300,"y":31.829},{"x":1751039462141,"y":32.43},{"x":1751039401962,"y":39.749},{"x":1751039341779,"y":42.776},{"x":1751039281627,"y":34.769},{"x":1751039221492,"y":34.867},{"x":1751039161328,"y":23.427},{"x":1751039101165,"y":19.883},{"x":1751039041001,"y":16.185},{"x":1751038980852,"y":15.355},{"x":1751038920682,"y":16.004},{"x":1751038860503,"y":12.991},{"x":1751038800348,"y":23.224},{"x":1751038742999,"y":25.548},{"x":1751038682861,"y":20.889},{"x":1751038622690,"y":25.915},{"x":1751038562547,"y":24.593},{"x":1751038502362,"y":23.854},{"x":1751038442206,"y":26.003},{"x":1751038382051,"y":26.824},{"x":1751038321890,"y":26.053},{"x":1751038261735,"y":17.59},{"x":1751038201574,"y":34.516},{"x":1751038141401,"y":27.211},{"x":1751038081247,"y":14.158},{"x":1751038021077,"y":11.791},{"x":1751037960907,"y":36.561},{"x":1751037900782,"y":16.403},{"x":1751037840548,"y":26.202},{"x":1751037780370,"y":20.34},{"x":1751037720264,"y":18.984},{"x":1751037662924,"y":25.428},{"x":1751037602751,"y":24.62},{"x":1751037542587,"y":17.651},{"x":1751037482440,"y":19.102},{"x":1751037422227,"y":19.619},{"x":1751037362056,"y":14.145},{"x":1751037301888,"y":15.321},{"x":1751037241738,"y":36.836},{"x":1751037181569,"y":30.167},{"x":1751037121400,"y":29.05},{"x":1751037061239,"y":39.402},{"x":1751037001061,"y":19.452},{"x":1751036940897,"y":22.173},{"x":1751036880731,"y":24.376},{"x":1751036820586,"y":25.252},{"x":1751036760460,"y":17.709},{"x":1751036700257,"y":19.383},{"x":1751036642941,"y":34.948},{"x":1751036582797,"y":25.444},{"x":1751036522645,"y":25.658},{"x":1751036462467,"y":30.446},{"x":1751036402358,"y":44.218},{"x":1751036342113,"y":36.219},{"x":1751036281945,"y":30.937},{"x":1751036221766,"y":34.138},{"x":1751036161556,"y":31.275},{"x":1751036101413,"y":29.063},{"x":1751036041244,"y":36.763},{"x":1751035981069,"y":21.973},{"x":1751035920870,"y":10.654},{"x":1751035860715,"y":8.847},{"x":1751035800623,"y":13.631},{"x":1751035740436,"y":14.143},{"x":1751035680233,"y":13.877},{"x":1751035622924,"y":22.923},{"x":1751035562811,"y":33.314},{"x":1751035502636,"y":25.997},{"x":1751035442481,"y":22.07},{"x":1751035382304,"y":13.981},{"x":1751035322135,"y":21.244},{"x":1751035261959,"y":26.292},{"x":1751035201792,"y":32.526},{"x":1751035141636,"y":26.163},{"x":1751035081441,"y":32.022},{"x":1751035021289,"y":32.753},{"x":1751034961127,"y":20.072},{"x":1751034900953,"y":13.755},{"x":1751034840789,"y":7.55},{"x":1751034780638,"y":20.057},{"x":1751034720533,"y":11.653},{"x":1751034660331,"y":17.846},{"x":1751034603016,"y":13.388},{"x":1751034542858,"y":8.049},{"x":1751034482687,"y":5.201},{"x":1751034422527,"y":12.778},{"x":1751034362376,"y":10.632},{"x":1751034302215,"y":15.202},{"x":1751034242033,"y":23.693},{"x":1751034181874,"y":17.536},{"x":1751034121722,"y":24.368},{"x":1751034061572,"y":13.963},{"x":1751034001421,"y":24.76},{"x":1751033941266,"y":28.361},{"x":1751033881102,"y":39.928},{"x":1751033820869,"y":23.33},{"x":1751033760592,"y":14.633},{"x":1751033700465,"y":23.133},{"x":1751033640300,"y":11.638},{"x":1751033583009,"y":20.334},{"x":1751033522830,"y":20.552},{"x":1751033462667,"y":22.924},{"x":1751033402488,"y":15.155},{"x":1751033342324,"y":9.639},{"x":1751033282178,"y":8.543},{"x":1751033221992,"y":6.568},{"x":1751033161844,"y":3.554},{"x":1751033101670,"y":10.682},{"x":1751033041508,"y":13.214},{"x":1751032981351,"y":14.129},{"x":1751032921166,"y":26.417},{"x":1751032861004,"y":22.203},{"x":1751032800917,"y":20.887},{"x":1751032740594,"y":13.527},{"x":1751032680501,"y":19.0},{"x":1751032620297,"y":15.727},{"x":1751032562913,"y":22.09},{"x":1751032502756,"y":33.638},{"x":1751032442613,"y":25.232},{"x":1751032382467,"y":19.481},{"x":1751032322318,"y":32.427},{"x":1751032262159,"y":34.666},{"x":1751032202012,"y":26.055},{"x":1751032141829,"y":27.095},{"x":1751032081668,"y":35.753},{"x":1751032021515,"y":29.24},{"x":1751031961352,"y":24.126},{"x":1751031901208,"y":38.799},{"x":1751031841040,"y":38.733},{"x":1751031780877,"y":45.05},{"x":1751031720716,"y":24.325},{"x":1751031660567,"y":27.06},{"x":1751031600475,"y":22.315},{"x":1751031540286,"y":40.956},{"x":1751031482929,"y":27.813},{"x":1751031422766,"y":33.579},{"x":1751031362604,"y":30.475},{"x":1751031302446,"y":29.096},{"x":1751031242285,"y":34.564},{"x":1751031182122,"y":53.505},{"x":1751031121954,"y":50.107},{"x":1751031061794,"y":43.102},{"x":1751031001654,"y":55.852},{"x":1751030941481,"y":30.399},{"x":1751030881325,"y":25.472},{"x":1751030821162,"y":13.121},{"x":1751030760988,"y":16.695},{"x":1751030700837,"y":20.973},{"x":1751030640664,"y":14.676},{"x":1751030580477,"y":32.215},{"x":1751030520369,"y":16.781},{"x":1751030460056,"y":23.608},{"x":1751030402882,"y":24.659},{"x":1751030342717,"y":7.479},{"x":1751030282537,"y":12.556},{"x":1751030222348,"y":15.019},{"x":1751030162214,"y":5.907},{"x":1751030102043,"y":9.695},{"x":1751030041866,"y":17.138},{"x":1751029981720,"y":10.877},{"x":1751029921536,"y":18.202},{"x":1751029861379,"y":22.821},{"x":1751029801225,"y":22.202},{"x":1751029741022,"y":25.45},{"x":1751029680867,"y":25.418},{"x":1751029620701,"y":9.844},{"x":1751029560519,"y":16.762},{"x":1751029500387,"y":15.396},{"x":1751029442991,"y":17.626},{"x":1751029382838,"y":23.507},{"x":1751029322665,"y":14.139},{"x":1751029262510,"y":11.985},{"x":1751029202394,"y":3.435},{"x":1751029142123,"y":8.721},{"x":1751029081945,"y":8.657},{"x":1751029021782,"y":13.89},{"x":1751028961622,"y":4.398},{"x":1751028901463,"y":2.07},{"x":1751028841287,"y":5.541},{"x":1751028781132,"y":11.825},{"x":1751028720930,"y":14.615},{"x":1751028660776,"y":13.064},{"x":1751028600664,"y":10.258},{"x":1751028540476,"y":11.174},{"x":1751028480351,"y":15.683},{"x":1751028422966,"y":8.742},{"x":1751028362813,"y":0.668},{"x":1751028302658,"y":10.694},{"x":1751028242479,"y":14.524},{"x":1751028182326,"y":5.492},{"x":1751028122161,"y":3.868},{"x":1751028061984,"y":0.391},{"x":1751028001824,"y":4.546},{"x":1751027941644,"y":4.635},{"x":1751027881466,"y":9.814},{"x":1751027821315,"y":5.436},{"x":1751027761190,"y":5.932},{"x":1751027700995,"y":12.63},{"x":1751027640846,"y":15.102},{"x":1751027580676,"y":19.968},{"x":1751027520543,"y":26.447},{"x":1751027460361,"y":15.589},{"x":1751027400028,"y":3.695},{"x":1751027342861,"y":7.862},{"x":1751027282703,"y":28.214},{"x":1751027222547,"y":11.55},{"x":1751027162358,"y":21.924},{"x":1751027102210,"y":19.107},{"x":1751027042056,"y":1.672},{"x":1751026981899,"y":-0.908},{"x":1751026921637,"y":5.322},{"x":1751026861476,"y":6.203},{"x":1751026801322,"y":7.826},{"x":1751026741080,"y":23.489},{"x":1751026680914,"y":6.716},{"x":1751026620725,"y":8.863},{"x":1751026560604,"y":0.795},{"x":1751026500445,"y":10.812},{"x":1751026440289,"y":13.171},{"x":1751026382966,"y":7.879},{"x":1751026322831,"y":13.928},{"x":1751026262636,"y":5.484},{"x":1751026202476,"y":19.266},{"x":1751026142302,"y":19.089},{"x":1751026082115,"y":13.348},{"x":1751026021941,"y":19.618},{"x":1751025961761,"y":16.155},{"x":1751025901595,"y":7.004},{"x":1751025841425,"y":14.644},{"x":1751025781266,"y":14.585},{"x":1751025721090,"y":20.265},{"x":1751025660912,"y":5.621},{"x":1751025600918,"y":10.673},{"x":1751025540568,"y":15.174},{"x":1751025480419,"y":4.281},{"x":1751025420175,"y":10.263},{"x":1751025362894,"y":8.016},{"x":1751025302727,"y":7.115},{"x":1751025242568,"y":9.505},{"x":1751025182399,"y":14.3},{"x":1751025122264,"y":25.864},{"x":1751025062075,"y":11.146},{"x":1751025001907,"y":16.49},{"x":1751024941747,"y":14.347},{"x":1751024881588,"y":14.22},{"x":1751024821430,"y":8.427},{"x":1751024761244,"y":1.933},{"x":1751024701092,"y":9.585},{"x":1751024640893,"y":13.65},{"x":1751024580756,"y":17.226},{"x":1751024520580,"y":14.84},{"x":1751024460505,"y":30.223},{"x":1751024400346,"y":10.932},{"x":1751024342974,"y":23.373},{"x":1751024282795,"y":21.879},{"x":1751024222632,"y":3.515},{"x":1751024162476,"y":15.718},{"x":1751024102306,"y":15.544},{"x":1751024042106,"y":8.682},{"x":1751023981930,"y":9.564},{"x":1751023921773,"y":26.026},{"x":1751023861579,"y":4.805},{"x":1751023801419,"y":14.975},{"x":1751023741220,"y":19.137},{"x":1751023681053,"y":22.058},{"x":1751023620859,"y":8.279},{"x":1751023560707,"y":14.308},{"x":1751023500679,"y":28.212},{"x":1751023440430,"y":18.634},{"x":1751023380227,"y":30.487},{"x":1751023322806,"y":20.922},{"x":1751023262640,"y":14.496},{"x":1751023202472,"y":8.761},{"x":1751023142309,"y":11.998},{"x":1751023082135,"y":13.508},{"x":1751023021936,"y":19.348},{"x":1751022961779,"y":19.793},{"x":1751022901628,"y":11.757},{"x":1751022841451,"y":9.225},{"x":1751022781295,"y":9.795},{"x":1751022721129,"y":9.98},{"x":1751022660954,"y":12.69},{"x":1751022600804,"y":13.299},{"x":1751022540632,"y":17.413},{"x":1751022480486,"y":12.949},{"x":1751022420316,"y":4.579},{"x":1751022362961,"y":5.267},{"x":1751022302804,"y":6.318},{"x":1751022242641,"y":18.52},{"x":1751022182476,"y":12.942},{"x":1751022122300,"y":36.662},{"x":1751022062137,"y":15.599},{"x":1751022001966,"y":3.361},{"x":1751021941694,"y":9.977},{"x":1751021881516,"y":22.178},{"x":1751021821348,"y":8.706},{"x":1751021761182,"y":3.784},{"x":1751021700988,"y":16.003},{"x":1751021640824,"y":8.693},{"x":1751021580650,"y":14.733},{"x":1751021520549,"y":10.838},{"x":1751021460376,"y":28.555},{"x":1751021402980,"y":18.125},{"x":1751021342839,"y":8.986},{"x":1751021282672,"y":10.973},{"x":1751021222511,"y":7.854},{"x":1751021162354,"y":9.447},{"x":1751021102194,"y":9.967},{"x":1751021042028,"y":19.51},{"x":1751020981862,"y":8.046},{"x":1751020921712,"y":15.481},{"x":1751020861529,"y":7.139},{"x":1751020801368,"y":5.333},{"x":1751020741206,"y":23.821},{"x":1751020681035,"y":15.452},{"x":1751020620861,"y":6.785},{"x":1751020560744,"y":6.477},{"x":1751020500579,"y":6.154},{"x":1751020440339,"y":18.708},{"x":1751020380212,"y":22.155},{"x":1751020322898,"y":14.519},{"x":1751020262727,"y":1.659},{"x":1751020202572,"y":1.547},{"x":1751020142407,"y":13.565},{"x":1751020082251,"y":17.915},{"x":1751020022083,"y":24.243},{"x":1751019961909,"y":15.562},{"x":1751019901747,"y":21.39},{"x":1751019841590,"y":15.77},{"x":1751019781430,"y":14.411},{"x":1751019721253,"y":13.165},{"x":1751019661012,"y":10.168},{"x":1751019600877,"y":12.535},{"x":1751019540689,"y":14.317},{"x":1751019480586,"y":6.7},{"x":1751019420242,"y":12.884},{"x":1751019362936,"y":17.372},{"x":1751019302728,"y":16.269},{"x":1751019242546,"y":11.999},{"x":1751019182388,"y":17.043},{"x":1751019122229,"y":13.825},{"x":1751019062079,"y":15.13},{"x":1751019001893,"y":27.006},{"x":1751018941725,"y":20.806},{"x":1751018881556,"y":29.328},{"x":1751018821389,"y":23.428},{"x":1751018761238,"y":24.375},{"x":1751018701047,"y":25.841},{"x":1751018640859,"y":22.032},{"x":1751018580741,"y":11.547},{"x":1751018520550,"y":9.35},{"x":1751018460324,"y":19.743},{"x":1751018402998,"y":23.472},{"x":1751018342756,"y":20.068},{"x":1751018282592,"y":19.948},{"x":1751018222406,"y":19.985},{"x":1751018162236,"y":18.133},{"x":1751018102071,"y":29.45},{"x":1751018041907,"y":21.312},{"x":1751017981748,"y":17.104},{"x":1751017921588,"y":17.918},{"x":1751017861423,"y":16.27},{"x":1751017801276,"y":27.612},{"x":1751017741072,"y":25.573},{"x":1751017680910,"y":22.837},{"x":1751017620746,"y":26.38},{"x":1751017560601,"y":26.755},{"x":1751017500509,"y":21.965},{"x":1751017440331,"y":21.061},{"x":1751017382994,"y":25.493},{"x":1751017322871,"y":36.338},{"x":1751017262677,"y":26.003},{"x":1751017202502,"y":28.128},{"x":1751017142321,"y":26.854},{"x":1751017082171,"y":20.239},{"x":1751017022024,"y":23.253},{"x":1751016961865,"y":19.317},{"x":1751016901690,"y":18.229},{"x":1751016841503,"y":18.716},{"x":1751016781340,"y":19.396},{"x":1751016721179,"y":13.871},{"x":1751016660999,"y":10.431},{"x":1751016600852,"y":11.523},{"x":1751016540670,"y":9.137},{"x":1751016480571,"y":13.317},{"x":1751016420396,"y":16.53},{"x":1751016360238,"y":18.433},{"x":1751016302919,"y":17.293},{"x":1751016242784,"y":20.421},{"x":1751016182576,"y":9.953},{"x":1751016122411,"y":11.184},{"x":1751016062258,"y":12.909},{"x":1751016002097,"y":8.643},{"x":1751015941941,"y":10.754},{"x":1751015881750,"y":8.985},{"x":1751015821533,"y":10.001},{"x":1751015761315,"y":9.145},{"x":1751015701159,"y":15.561},{"x":1751015640973,"y":21.969},{"x":1751015580801,"y":16.534},{"x":1751015520663,"y":26.624},{"x":1751015460524,"y":20.199},{"x":1751015400355,"y":9.88},{"x":1751015342891,"y":12.775},{"x":1751015282712,"y":17.915},{"x":1751015222559,"y":19.469},{"x":1751015162402,"y":22.136},{"x":1751015102241,"y":23.599},{"x":1751015042023,"y":23.522},{"x":1751014981847,"y":22.26},{"x":1751014921691,"y":18.559},{"x":1751014861540,"y":19.968},{"x":1751014801455,"y":36.296},{"x":1751014741161,"y":19.351},{"x":1751014680962,"y":20.998},{"x":1751014620801,"y":24.03},{"x":1751014560681,"y":20.609},{"x":1751014500422,"y":23.513},{"x":1751014440475,"y":14.03},{"x":1751014380301,"y":19.149},{"x":1751014322999,"y":21.66},{"x":1751014262826,"y":28.389},{"x":1751014202646,"y":22.025},{"x":1751014141784,"y":23.494},{"x":1751014081626,"y":19.715},{"x":1751014020311,"y":23.499},{"x":1751013962999,"y":12.626},{"x":1751013902847,"y":20.721},{"x":1751013842668,"y":19.882},{"x":1751013782516,"y":22.357},{"x":1751013722346,"y":20.684},{"x":1751013662175,"y":20.669},{"x":1751013602025,"y":29.885},{"x":1751013541843,"y":18.738},{"x":1751013481674,"y":20.76},{"x":1751013421517,"y":37.275},{"x":1751013361361,"y":37.133},{"x":1751013301231,"y":37.816},{"x":1751013241031,"y":35.418},{"x":1751013180875,"y":36.58},{"x":1751013120716,"y":25.392},{"x":1751013060535,"y":13.083},{"x":1751013000490,"y":21.46},{"x":1751012940220,"y":30.157},{"x":1751012882890,"y":29.335},{"x":1751012822735,"y":40.345},{"x":1751012762584,"y":46.829},{"x":1751012702416,"y":47.428},{"x":1751012642259,"y":35.273},{"x":1751012582101,"y":33.556},{"x":1751012521933,"y":17.012},{"x":1751012461756,"y":24.265},{"x":1751012401600,"y":29.953},{"x":1751012341429,"y":18.242},{"x":1751012281259,"y":16.934},{"x":1751012221056,"y":26.203},{"x":1751012160886,"y":39.521},{"x":1751012100724,"y":27.86},{"x":1751012040538,"y":26.121},{"x":1751011980389,"y":21.486},{"x":1751011923007,"y":34.238},{"x":1751011862847,"y":26.543},{"x":1751011802684,"y":27.785},{"x":1751011742508,"y":35.286},{"x":1751011682337,"y":28.649},{"x":1751011622182,"y":31.109},{"x":1751011561998,"y":45.234},{"x":1751011501853,"y":43.621},{"x":1751011441646,"y":49.471},{"x":1751011381478,"y":45.617},{"x":1751011321317,"y":50.422},{"x":1751011261152,"y":52.534},{"x":1751011200988,"y":51.452},{"x":1751011140773,"y":37.994},{"x":1751011080629,"y":31.898},{"x":1751011020473,"y":37.724},{"x":1751010960251,"y":33.081},{"x":1751010902968,"y":31.996},{"x":1751010842796,"y":23.368},{"x":1751010782647,"y":27.379},{"x":1751010722473,"y":33.893},{"x":1751010662325,"y":31.303},{"x":1751010602140,"y":34.749},{"x":1751010541972,"y":30.604},{"x":1751010481810,"y":27.007},{"x":1751010421628,"y":27.461},{"x":1751010361468,"y":24.575},{"x":1751010301318,"y":24.36},{"x":1751010241145,"y":28.953},{"x":1751010180996,"y":24.401},{"x":1751010120823,"y":24.182},{"x":1751010060666,"y":25.122},{"x":1751010000508,"y":22.819},{"x":1751009940309,"y":25.173},{"x":1751009880069,"y":25.545},{"x":1751009822870,"y":28.752},{"x":1751009762726,"y":30.193},{"x":1751009702564,"y":25.899},{"x":1751009642400,"y":23.779},{"x":1751009582235,"y":25.433},{"x":1751009522070,"y":24.23},{"x":1751009461899,"y":17.626},{"x":1751009401741,"y":26.484},{"x":1751009341568,"y":27.418},{"x":1751009281411,"y":39.582},{"x":1751009221246,"y":49.065},{"x":1751009161078,"y":48.387},{"x":1751009100906,"y":59.907},{"x":1751009040745,"y":51.327},{"x":1751008980581,"y":42.161},{"x":1751008920440,"y":40.55},{"x":1751008860261,"y":23.6},{"x":1751008802931,"y":28.226},{"x":1751008742799,"y":21.181},{"x":1751008682591,"y":25.631},{"x":1751008622399,"y":19.358},{"x":1751008562250,"y":15.613},{"x":1751008502731,"y":24.872},{"x":1751008441798,"y":35.736},{"x":1751008382469,"y":33.443},{"x":1751008322373,"y":33.861},{"x":1751008262267,"y":34.276},{"x":1751008202166,"y":27.625},{"x":1751008142078,"y":39.522},{"x":1751008082796,"y":29.692},{"x":1751008022416,"y":27.034},{"x":1751007962058,"y":26.328},{"x":1751007901655,"y":24.737},{"x":1751007842462,"y":24.448},{"x":1751007782036,"y":28.393},{"x":1751007721661,"y":24.501},{"x":1751007661283,"y":18.767},{"x":1751007600989,"y":21.203},{"x":1751007542094,"y":25.909},{"x":1751007482257,"y":18.583},{"x":1751007421851,"y":23.366},{"x":1751007361482,"y":23.602},{"x":1751007301113,"y":22.092},{"x":1751007240725,"y":18.764},{"x":1751007180397,"y":15.234},{"x":1751007122872,"y":17.059},{"x":1751007062507,"y":17.933},{"x":1751007002133,"y":18.742},{"x":1751006941758,"y":20.346},{"x":1751006881353,"y":23.631},{"x":1751006820985,"y":22.769},{"x":1751006760637,"y":20.746},{"x":1751006700359,"y":20.776},{"x":1751006642797,"y":25.479},{"x":1751006582436,"y":21.344},{"x":1751006522015,"y":22.713},{"x":1751006461660,"y":44.841},{"x":1751006401261,"y":38.418},{"x":1751006340895,"y":41.845},{"x":1751006280546,"y":42.207},{"x":1751006220163,"y":38.48},{"x":1751006162742,"y":29.016},{"x":1751006102382,"y":27.875},{"x":1751006041999,"y":36.095},{"x":1751005981644,"y":22.728},{"x":1751005921304,"y":21.969},{"x":1751005860956,"y":20.182},{"x":1751005800702,"y":24.452},{"x":1751005740206,"y":26.007},{"x":1751005682718,"y":27.262},{"x":1751005622321,"y":22.3},{"x":1751005561921,"y":24.141},{"x":1751005501491,"y":26.185},{"x":1751005441134,"y":26.207},{"x":1751005380733,"y":26.315},{"x":1751005320379,"y":26.484},{"x":1751005262880,"y":22.389},{"x":1751005202483,"y":50.111},{"x":1751005142123,"y":39.029},{"x":1751005081654,"y":52.435},{"x":1751005021090,"y":52.332},{"x":1751004960723,"y":44.635},{"x":1751004900364,"y":52.959},{"x":1751004842823,"y":59.767},{"x":1751004782434,"y":46.642},{"x":1751004722067,"y":50.271},{"x":1751004661715,"y":35.279},{"x":1751004601342,"y":45.007},{"x":1751004540948,"y":44.666},{"x":1751004480660,"y":39.5},{"x":1751004420595,"y":24.368},{"x":1751004362766,"y":25.199},{"x":1751004302387,"y":28.834},{"x":1751004241978,"y":26.722},{"x":1751004181577,"y":29.846},{"x":1751004121217,"y":28.299},{"x":1751004060848,"y":27.243},{"x":1751004000540,"y":29.968},{"x":1751003943029,"y":29.981},{"x":1751003882642,"y":27.919},{"x":1751003822255,"y":24.924},{"x":1751003761887,"y":36.68},{"x":1751003701499,"y":29.783},{"x":1751003641138,"y":26.033},{"x":1751003580756,"y":24.978},{"x":1751003520362,"y":22.734},{"x":1751003462926,"y":25.672},{"x":1751003402575,"y":22.371},{"x":1751003342216,"y":23.492},{"x":1751003281846,"y":27.765},{"x":1751003221435,"y":27.518},{"x":1751003161084,"y":28.371},{"x":1751003100680,"y":27.95},{"x":1751003040249,"y":29.553},{"x":1751002982821,"y":24.803},{"x":1751002922451,"y":26.263},{"x":1751002862072,"y":25.304},{"x":1751002801686,"y":25.853},{"x":1751002741336,"y":24.324},{"x":1751002680946,"y":25.247},{"x":1751002620597,"y":28.053},{"x":1751002560267,"y":27.386},{"x":1751002502813,"y":32.068},{"x":1751002442432,"y":36.631},{"x":1751002382066,"y":38.423},{"x":1751002321700,"y":34.467},{"x":1751002261326,"y":33.346},{"x":1751002200906,"y":29.941},{"x":1751002140555,"y":29.884},{"x":1751002080156,"y":25.683},{"x":1751002022695,"y":26.103},{"x":1751001962296,"y":24.006},{"x":1751001901938,"y":23.851},{"x":1751001841565,"y":25.959},{"x":1751001781212,"y":36.879},{"x":1751001720804,"y":34.122},{"x":1751001660397,"y":33.166},{"x":1751001602912,"y":37.442},{"x":1751001542527,"y":39.13},{"x":1751001482034,"y":41.935},{"x":1751001421521,"y":54.585},{"x":1751001361156,"y":50.36},{"x":1751001300786,"y":55.012},{"x":1751001240417,"y":47.307},{"x":1751001182920,"y":38.883},{"x":1751001122567,"y":27.326},{"x":1751001062188,"y":28.988},{"x":1751001001788,"y":26.189},{"x":1751000941412,"y":25.841},{"x":1751000881049,"y":25.219},{"x":1751000820685,"y":23.077},{"x":1751000760346,"y":21.127},{"x":1751000702888,"y":31.98},{"x":1751000642544,"y":23.263},{"x":1751000582160,"y":23.984},{"x":1751000521786,"y":24.269},{"x":1751000461426,"y":22.639},{"x":1751000401023,"y":24.866},{"x":1751000340619,"y":27.341},{"x":1751000280229,"y":24.564},{"x":1751000222798,"y":24.537},{"x":1751000162393,"y":25.452},{"x":1751000102027,"y":28.312},{"x":1751000041676,"y":25.944},{"x":1750999981298,"y":32.674},{"x":1750999920916,"y":34.912},{"x":1750999860554,"y":30.021},{"x":1750999800193,"y":32.895},{"x":1750999742727,"y":31.262},{"x":1750999682335,"y":24.694},{"x":1750999621938,"y":30.168},{"x":1750999561467,"y":26.514},{"x":1750999501092,"y":24.407},{"x":1750999440696,"y":26.773},{"x":1750999380289,"y":23.464},{"x":1750999322800,"y":29.305},{"x":1750999262431,"y":25.268},{"x":1750999202018,"y":25.19},{"x":1750999141639,"y":25.954},{"x":1750999081220,"y":25.919},{"x":1750999020848,"y":23.749},{"x":1750998960487,"y":49.485},{"x":1750998903003,"y":48.298},{"x":1750998842621,"y":52.214},{"x":1750998782229,"y":45.29},{"x":1750998721825,"y":38.667},{"x":1750998661469,"y":25.278},{"x":1750998601078,"y":23.882},{"x":1750998540692,"y":23.383},{"x":1750998480365,"y":25.617},{"x":1750998422797,"y":27.225},{"x":1750998362421,"y":24.554},{"x":1750998301994,"y":24.292},{"x":1750998241625,"y":27.603},{"x":1750998181205,"y":33.644},{"x":1750998120797,"y":34.328},{"x":1750998060406,"y":36.786},{"x":1750998002938,"y":33.159},{"x":1750997942558,"y":32.436},{"x":1750997882087,"y":34.2},{"x":1750997821631,"y":28.787},{"x":1750997761225,"y":26.402},{"x":1750997700863,"y":30.565},{"x":1750997640440,"y":31.977},{"x":1750997582995,"y":25.761},{"x":1750997522624,"y":28.071},{"x":1750997462273,"y":26.746},{"x":1750997401848,"y":27.43},{"x":1750997341508,"y":23.673},{"x":1750997281043,"y":25.109},{"x":1750997220666,"y":26.715},{"x":1750997160310,"y":27.138},{"x":1750997102842,"y":23.737},{"x":1750997042426,"y":28.549},{"x":1750996982046,"y":34.333},{"x":1750996921636,"y":33.033},{"x":1750996861159,"y":34.807},{"x":1750996800860,"y":46.648},{"x":1750996743063,"y":37.283},{"x":1750996682654,"y":44.43},{"x":1750996622269,"y":33.638},{"x":1750996561868,"y":34.172},{"x":1750996501461,"y":35.536},{"x":1750996441080,"y":49.337},{"x":1750996380671,"y":46.603},{"x":1750996320338,"y":43.641},{"x":1750996262813,"y":43.915},{"x":1750996202452,"y":33.024},{"x":1750996142087,"y":27.666},{"x":1750996081701,"y":31.211},{"x":1750996021317,"y":30.145},{"x":1750995960887,"y":26.216},{"x":1750995900642,"y":24.136},{"x":1750995842978,"y":24.455},{"x":1750995782577,"y":34.037},{"x":1750995722214,"y":29.174},{"x":1750995661846,"y":23.037},{"x":1750995601433,"y":24.163},{"x":1750995541005,"y":27.318},{"x":1750995480649,"y":29.997},{"x":1750995420288,"y":36.912},{"x":1750995362806,"y":36.545},{"x":1750995302418,"y":37.602},{"x":1750995242052,"y":33.043},{"x":1750995181714,"y":34.428},{"x":1750995121348,"y":32.587},{"x":1750995060966,"y":25.56},{"x":1750995000595,"y":23.972},{"x":1750994940250,"y":29.221},{"x":1750994882721,"y":28.47},{"x":1750994822322,"y":27.716},{"x":1750994761961,"y":28.656},{"x":1750994701544,"y":26.597},{"x":1750994641174,"y":24.331},{"x":1750994580786,"y":22.909},{"x":1750994520418,"y":23.352},{"x":1750994462987,"y":28.148},{"x":1750994402624,"y":26.926},{"x":1750994342218,"y":27.6},{"x":1750994281737,"y":30.327},{"x":1750994221326,"y":29.073},{"x":1750994160915,"y":27.838},{"x":1750994100528,"y":27.77},{"x":1750994040147,"y":23.468},{"x":1750993982736,"y":23.521},{"x":1750993922353,"y":47.146},{"x":1750993861979,"y":45.15},{"x":1750993801589,"y":45.981},{"x":1750993741223,"y":47.594},{"x":1750993680736,"y":40.247},{"x":1750993620379,"y":37.583},{"x":1750993562898,"y":34.464},{"x":1750993502530,"y":35.288},{"x":1750993441652,"y":33.257},{"x":1750993382572,"y":33.155},{"x":1750993322326,"y":24.605},{"x":1750993261729,"y":30.09},{"x":1750993202721,"y":32.416},{"x":1750993142328,"y":36.954},{"x":1750993081957,"y":33.613},{"x":1750993021547,"y":32.448},{"x":1750992961152,"y":31.823},{"x":1750992900767,"y":30.721},{"x":1750992840398,"y":26.041},{"x":1750992783009,"y":26.378},{"x":1750992722663,"y":25.091},{"x":1750992662275,"y":24.507},{"x":1750992601906,"y":26.358},{"x":1750992541535,"y":26.941},{"x":1750992481162,"y":23.707},{"x":1750992420773,"y":35.994},{"x":1750992360343,"y":34.275},{"x":1750992302926,"y":37.026},{"x":1750992242502,"y":39.323},{"x":1750992182146,"y":40.141},{"x":1750992121762,"y":24.814},{"x":1750992061338,"y":27.216},{"x":1750992000941,"y":26.488},{"x":1750991940504,"y":26.843},{"x":1750991883058,"y":32.519},{"x":1750991822652,"y":35.68},{"x":1750991762278,"y":32.893},{"x":1750991701868,"y":31.949},{"x":1750991641505,"y":29.659},{"x":1750991581117,"y":27.947},{"x":1750991520716,"y":26.948},{"x":1750991460260,"y":28.283},{"x":1750991402758,"y":25.334},{"x":1750991342378,"y":28.347},{"x":1750991282010,"y":24.296},{"x":1750991221622,"y":23.89},{"x":1750991161197,"y":23.953},{"x":1750991100770,"y":31.167},{"x":1750991040293,"y":32.219},{"x":1750990982870,"y":30.512},{"x":1750990922436,"y":42.286},{"x":1750990862045,"y":39.175},{"x":1750990801636,"y":32.878},{"x":1750990741245,"y":36.935},{"x":1750990680733,"y":33.963},{"x":1750990620249,"y":26.333},{"x":1750990562797,"y":27.722},{"x":1750990502421,"y":22.944},{"x":1750990442076,"y":22.831},{"x":1750990381633,"y":30.607},{"x":1750990321253,"y":27.382},{"x":1750990260858,"y":27.476},{"x":1750990200494,"y":31.243},{"x":1750990142976,"y":51.126},{"x":1750990082580,"y":48.464},{"x":1750990022195,"y":46.238},{"x":1750989961805,"y":46.271},{"x":1750989901364,"y":46.131},{"x":1750989840935,"y":26.638},{"x":1750989780572,"y":29.708},{"x":1750989720057,"y":27.566},{"x":1750989662607,"y":29.723},{"x":1750989602159,"y":32.656},{"x":1750989541737,"y":30.523},{"x":1750989481308,"y":27.765},{"x":1750989420875,"y":26.843},{"x":1750989360495,"y":30.296},{"x":1750989300075,"y":25.172},{"x":1750989242607,"y":25.03},{"x":1750989182237,"y":33.385},{"x":1750989121847,"y":36.461},{"x":1750989061473,"y":36.531},{"x":1750989001087,"y":42.353},{"x":1750988940685,"y":42.941},{"x":1750988880267,"y":28.886},{"x":1750988822796,"y":29.507},{"x":1750988762356,"y":28.765},{"x":1750988701964,"y":25.439},{"x":1750988641600,"y":25.861},{"x":1750988581174,"y":27.002},{"x":1750988520761,"y":26.395},{"x":1750988460352,"y":24.071},{"x":1750988402860,"y":22.142},{"x":1750988342453,"y":23.099},{"x":1750988282036,"y":26.109},{"x":1750988221593,"y":30.896},{"x":1750988161209,"y":32.297},{"x":1750988100803,"y":35.333},{"x":1750988040411,"y":30.665},{"x":1750987982978,"y":28.224},{"x":1750987922589,"y":29.72},{"x":1750987862197,"y":28.908},{"x":1750987801785,"y":37.474},{"x":1750987741413,"y":35.565},{"x":1750987681005,"y":34.094},{"x":1750987620637,"y":44.438},{"x":1750987560268,"y":47.171},{"x":1750987502814,"y":44.475},{"x":1750987442428,"y":34.735},{"x":1750987382050,"y":36.0},{"x":1750987321650,"y":29.021},{"x":1750987261260,"y":27.781},{"x":1750987200862,"y":25.187},{"x":1750987140500,"y":27.236},{"x":1750987082835,"y":30.178},{"x":1750987022339,"y":23.215},{"x":1750986961919,"y":25.139},{"x":1750986901540,"y":24.231},{"x":1750986841157,"y":27.294},{"x":1750986780754,"y":30.426},{"x":1750986720394,"y":28.045},{"x":1750986662805,"y":30.732},{"x":1750986602419,"y":26.89},{"x":1750986542044,"y":27.943},{"x":1750986481665,"y":26.757},{"x":1750986421251,"y":28.914},{"x":1750986360814,"y":32.856},{"x":1750986300452,"y":34.658},{"x":1750986242908,"y":33.843},{"x":1750986182541,"y":36.252},{"x":1750986122148,"y":35.998},{"x":1750986061777,"y":36.221},{"x":1750986001393,"y":31.306},{"x":1750985940912,"y":28.869},{"x":1750985880507,"y":29.124},{"x":1750985820095,"y":27.474},{"x":1750985762645,"y":30.103},{"x":1750985702278,"y":29.857},{"x":1750985641868,"y":26.122},{"x":1750985581504,"y":26.215},{"x":1750985521139,"y":25.996},{"x":1750985460737,"y":40.127},{"x":1750985400426,"y":42.412},{"x":1750985342745,"y":39.505},{"x":1750985282373,"y":39.077},{"x":1750985221983,"y":35.373},{"x":1750985161617,"y":24.825},{"x":1750985101232,"y":23.733},{"x":1750985040860,"y":29.708},{"x":1750984980515,"y":25.522},{"x":1750984920060,"y":25.574},{"x":1750984862659,"y":26.757},{"x":1750984802276,"y":46.236},{"x":1750984741874,"y":45.448},{"x":1750984681476,"y":53.119},{"x":1750984621120,"y":45.581},{"x":1750984560732,"y":45.329},{"x":1750984500376,"y":26.303},{"x":1750984442879,"y":29.832},{"x":1750984382505,"y":26.894},{"x":1750984322143,"y":29.017},{"x":1750984261748,"y":25.758},{"x":1750984201369,"y":27.031},{"x":1750984140971,"y":23.129},{"x":1750984080606,"y":26.247},{"x":1750984020219,"y":26.542},{"x":1750983962723,"y":29.99},{"x":1750983902318,"y":28.134},{"x":1750983841927,"y":29.012},{"x":1750983781540,"y":27.909},{"x":1750983721179,"y":26.537},{"x":1750983660802,"y":27.997},{"x":1750983600442,"y":29.336},{"x":1750983542914,"y":25.574},{"x":1750983482397,"y":34.05},{"x":1750983421926,"y":30.481},{"x":1750983361543,"y":29.624},{"x":1750983301145,"y":32.554},{"x":1750983240755,"y":33.439},{"x":1750983180367,"y":30.91},{"x":1750983122856,"y":25.887},{"x":1750983062486,"y":25.105},{"x":1750983002108,"y":22.832},{"x":1750982941657,"y":23.925},{"x":1750982881291,"y":23.393},{"x":1750982820908,"y":23.4},{"x":1750982760520,"y":24.814},{"x":1750982700106,"y":24.242},{"x":1750982642656,"y":24.614},{"x":1750982582289,"y":24.331},{"x":1750982521881,"y":25.796},{"x":1750982461433,"y":25.648},{"x":1750982401042,"y":26.616},{"x":1750982340425,"y":23.858},{"x":1750982283007,"y":24.657},{"x":1750982222595,"y":30.753},{"x":1750982162234,"y":27.272},{"x":1750982101829,"y":27.124},{"x":1750982041456,"y":27.428},{"x":1750981981008,"y":30.392},{"x":1750981920641,"y":26.185},{"x":1750981860258,"y":29.498},{"x":1750981802719,"y":27.734},{"x":1750981742342,"y":26.212},{"x":1750981681961,"y":28.223},{"x":1750981621571,"y":24.901},{"x":1750981561194,"y":24.024},{"x":1750981500810,"y":27.589},{"x":1750981440341,"y":34.064},{"x":1750981382878,"y":29.354},{"x":1750981322516,"y":49.98},{"x":1750981262134,"y":49.951},{"x":1750981201766,"y":50.94},{"x":1750981141396,"y":52.489},{"x":1750981081001,"y":46.129},{"x":1750981020641,"y":25.41},{"x":1750980960263,"y":26.354},{"x":1750980902780,"y":28.742},{"x":1750980842399,"y":25.173},{"x":1750980781973,"y":25.189},{"x":1750980721609,"y":38.664},{"x":1750980661213,"y":53.027},{"x":1750980600791,"y":50.302},{"x":1750980540387,"y":48.76},{"x":1750980482953,"y":49.105},{"x":1750980422582,"y":25.151},{"x":1750980362220,"y":27.386},{"x":1750980301823,"y":23.809},{"x":1750980241449,"y":24.356},{"x":1750980181046,"y":26.327},{"x":1750980120643,"y":28.897},{"x":1750980060284,"y":29.997},{"x":1750980002820,"y":28.772},{"x":1750979942452,"y":27.912},{"x":1750979881942,"y":30.242},{"x":1750979821402,"y":25.66},{"x":1750979760979,"y":27.062},{"x":1750979700661,"y":23.506},{"x":1750979640276,"y":22.481},{"x":1750979582765,"y":25.673},{"x":1750979522376,"y":30.897},{"x":1750979461987,"y":31.06},{"x":1750979401596,"y":35.399},{"x":1750979341206,"y":34.492},{"x":1750979280787,"y":32.852},{"x":1750979220417,"y":31.045},{"x":1750979162984,"y":29.907},{"x":1750979102597,"y":29.762},{"x":1750979042234,"y":31.587},{"x":1750978981816,"y":26.867},{"x":1750978921442,"y":26.865},{"x":1750978861064,"y":25.553},{"x":1750978800695,"y":25.97},{"x":1750978740236,"y":24.024},{"x":1750978682752,"y":26.5},{"x":1750978622350,"y":26.832},{"x":1750978561929,"y":29.007},{"x":1750978501549,"y":25.037},{"x":1750978441198,"y":27.193},{"x":1750978380741,"y":25.794},{"x":1750978320390,"y":28.659},{"x":1750978262859,"y":29.478},{"x":1750978202473,"y":26.599},{"x":1750978142124,"y":24.377},{"x":1750978081728,"y":27.223},{"x":1750978021363,"y":28.514},{"x":1750977960953,"y":26.819},{"x":1750977900594,"y":26.396},{"x":1750977840138,"y":29.862},{"x":1750977782688,"y":32.499},{"x":1750977722305,"y":28.294},{"x":1750977661904,"y":26.141},{"x":1750977601486,"y":25.634},{"x":1750977541080,"y":33.183},{"x":1750977480649,"y":43.851},{"x":1750977420335,"y":42.461},{"x":1750977362764,"y":40.651},{"x":1750977302390,"y":42.517},{"x":1750977242015,"y":39.087},{"x":1750977181647,"y":30.191},{"x":1750977121291,"y":26.52},{"x":1750977060869,"y":26.431},{"x":1750977000485,"y":29.686},{"x":1750976942954,"y":33.018},{"x":1750976882585,"y":23.438},{"x":1750976822199,"y":23.913},{"x":1750976761808,"y":32.86},{"x":1750976701425,"y":33.663},{"x":1750976641021,"y":39.493},{"x":1750976580640,"y":37.248},{"x":1750976520287,"y":37.73},{"x":1750976462758,"y":38.356},{"x":1750976402368,"y":49.252},{"x":1750976341931,"y":49.928},{"x":1750976281381,"y":49.977},{"x":1750976220906,"y":53.198},{"x":1750976160637,"y":36.871},{"x":1750976100188,"y":29.7},{"x":1750976042720,"y":26.452},{"x":1750975982306,"y":24.344},{"x":1750975921899,"y":23.528},{"x":1750975861525,"y":32.919},{"x":1750975801114,"y":27.246},{"x":1750975740727,"y":27.911},{"x":1750975680270,"y":25.137},{"x":1750975622754,"y":38.253},{"x":1750975562368,"y":38.358},{"x":1750975501951,"y":44.919},{"x":1750975441591,"y":40.931},{"x":1750975381210,"y":37.487},{"x":1750975320815,"y":27.918},{"x":1750975260437,"y":29.832},{"x":1750975202936,"y":28.983},{"x":1750975142542,"y":30.115},{"x":1750975082136,"y":33.942},{"x":1750975021739,"y":35.162},{"x":1750974961357,"y":34.319},{"x":1750974900947,"y":32.879},{"x":1750974840584,"y":30.992},{"x":1750974780172,"y":29.958},{"x":1750974722732,"y":27.885},{"x":1750974662353,"y":26.817},{"x":1750974601962,"y":26.865},{"x":1750974541556,"y":26.196},{"x":1750974481196,"y":25.551},{"x":1750974420796,"y":25.057},{"x":1750974360423,"y":25.058},{"x":1750974302998,"y":27.439},{"x":1750974242636,"y":30.711},{"x":1750974182205,"y":28.152},{"x":1750974121787,"y":27.705},{"x":1750974061366,"y":29.37},{"x":1750974000962,"y":26.115},{"x":1750973940542,"y":36.782},{"x":1750973880095,"y":34.608},{"x":1750973822691,"y":29.743},{"x":1750973762281,"y":28.852},{"x":1750973701888,"y":30.743},{"x":1750973641501,"y":25.179},{"x":1750973581135,"y":29.092},{"x":1750973520752,"y":25.866},{"x":1750973460367,"y":27.43},{"x":1750973402835,"y":28.917},{"x":1750973342467,"y":29.813},{"x":1750973282013,"y":27.108},{"x":1750973221623,"y":26.486},{"x":1750973161207,"y":29.278},{"x":1750973100811,"y":46.015},{"x":1750973040451,"y":46.679},{"x":1750972982926,"y":50.296},{"x":1750972922496,"y":46.687},{"x":1750972862097,"y":48.424},{"x":1750972801700,"y":26.879},{"x":1750972741312,"y":27.418},{"x":1750972680849,"y":32.307},{"x":1750972620349,"y":26.777},{"x":1750972562912,"y":26.722},{"x":1750972502542,"y":26.219},{"x":1750972442188,"y":27.139},{"x":1750972381748,"y":28.335},{"x":1750972321376,"y":35.894},{"x":1750972260945,"y":35.856},{"x":1750972200606,"y":34.419},{"x":1750972140155,"y":39.536},{"x":1750972082714,"y":37.332},{"x":1750972022352,"y":32.993},{"x":1750971961965,"y":34.9},{"x":1750971901602,"y":31.191},{"x":1750971841212,"y":37.003},{"x":1750971780790,"y":35.821},{"x":1750971720385,"y":40.499},{"x":1750971662840,"y":38.157},{"x":1750971602410,"y":35.715},{"x":1750971541995,"y":40.954},{"x":1750971481585,"y":36.89},{"x":1750971421197,"y":57.634},{"x":1750971360784,"y":55.176},{"x":1750971300409,"y":57.303},{"x":1750971242931,"y":57.814},{"x":1750971182533,"y":48.98},{"x":1750971122137,"y":36.526},{"x":1750971061737,"y":36.281},{"x":1750971001358,"y":39.625},{"x":1750970940982,"y":48.4},{"x":1750970880614,"y":40.531},{"x":1750970820216,"y":40.125},{"x":1750970762757,"y":40.672},{"x":1750970702380,"y":36.098},{"x":1750970642000,"y":38.848},{"x":1750970581625,"y":49.546},{"x":1750970521213,"y":45.707},{"x":1750970460833,"y":45.444},{"x":1750970400443,"y":45.756},{"x":1750970342955,"y":41.623},{"x":1750970282539,"y":37.081},{"x":1750970222162,"y":41.066},{"x":1750970161778,"y":38.986},{"x":1750970101381,"y":38.646},{"x":1750970040977,"y":38.887},{"x":1750969980577,"y":35.595},{"x":1750969920200,"y":44.663},{"x":1750969862692,"y":35.982},{"x":1750969802301,"y":36.775},{"x":1750969741899,"y":35.671},{"x":1750969681503,"y":46.973},{"x":1750969621107,"y":51.396},{"x":1750969560714,"y":48.767},{"x":1750969500345,"y":48.984},{"x":1750969442839,"y":37.984},{"x":1750969382450,"y":41.672},{"x":1750969322074,"y":38.925},{"x":1750969261702,"y":38.956},{"x":1750969201312,"y":36.511},{"x":1750969140895,"y":56.095},{"x":1750969080454,"y":55.267},{"x":1750969022867,"y":54.781},{"x":1750968962445,"y":59.219},{"x":1750968902069,"y":59.519},{"x":1750968841696,"y":58.051},{"x":1750968781276,"y":56.03},{"x":1750968720902,"y":57.089},{"x":1750968660543,"y":60.295},{"x":1750968603122,"y":57.817},{"x":1750968542658,"y":49.077},{"x":1750968482267,"y":39.208},{"x":1750968421879,"y":36.335},{"x":1750968361352,"y":34.945},{"x":1750968300943,"y":38.25},{"x":1750968240570,"y":40.344},{"x":1750968180199,"y":37.59},{"x":1750968122721,"y":40.239},{"x":1750968062345,"y":38.519},{"x":1750968001871,"y":37.027},{"x":1750967941432,"y":35.899},{"x":1750967881017,"y":43.794},{"x":1750967820655,"y":33.74},{"x":1750967760280,"y":34.424},{"x":1750967702796,"y":37.283},{"x":1750967642425,"y":40.211},{"x":1750967582037,"y":37.306},{"x":1750967521662,"y":47.413},{"x":1750967461248,"y":38.428},{"x":1750967400841,"y":37.089},{"x":1750967340478,"y":42.955},{"x":1750967280114,"y":42.576},{"x":1750967222610,"y":44.409},{"x":1750967162223,"y":43.394},{"x":1750967101781,"y":39.611},{"x":1750967041402,"y":41.062},{"x":1750966981026,"y":42.393},{"x":1750966920621,"y":39.584},{"x":1750966860280,"y":38.427},{"x":1750966802730,"y":41.413},{"x":1750966742350,"y":43.694},{"x":1750966681900,"y":37.511},{"x":1750966621474,"y":42.303},{"x":1750966560990,"y":45.631},{"x":1750966500622,"y":42.623},{"x":1750966440299,"y":42.406},{"x":1750966382757,"y":39.933},{"x":1750966322351,"y":38.915},{"x":1750966261940,"y":33.929},{"x":1750966201581,"y":37.28},{"x":1750966141192,"y":38.006},{"x":1750966080782,"y":38.174},{"x":1750966020351,"y":40.757},{"x":1750965962868,"y":39.375},{"x":1750965902469,"y":40.963},{"x":1750965842063,"y":38.176},{"x":1750965781660,"y":37.47},{"x":1750965721261,"y":36.918},{"x":1750965660866,"y":36.257},{"x":1750965600501,"y":39.193},{"x":1750965543020,"y":39.832},{"x":1750965482513,"y":35.728},{"x":1750965422029,"y":36.684},{"x":1750965361642,"y":36.192},{"x":1750965301300,"y":43.96},{"x":1750965240900,"y":39.222},{"x":1750965180543,"y":39.424},{"x":1750965120146,"y":40.391},{"x":1750965062690,"y":34.9},{"x":1750965002314,"y":38.204},{"x":1750964941935,"y":46.999},{"x":1750964881527,"y":48.528},{"x":1750964821147,"y":32.569},{"x":1750964760773,"y":34.281},{"x":1750964700433,"y":38.96},{"x":1750964642930,"y":40.787},{"x":1750964582529,"y":42.104},{"x":1750964522166,"y":39.285},{"x":1750964461807,"y":39.722},{"x":1750964401451,"y":41.06},{"x":1750964340991,"y":38.466},{"x":1750964280607,"y":34.141},{"x":1750964220273,"y":31.532},{"x":1750964162801,"y":34.844},{"x":1750964102374,"y":37.499},{"x":1750964041996,"y":38.118},{"x":1750963981617,"y":37.911},{"x":1750963921249,"y":37.894},{"x":1750963860858,"y":37.448},{"x":1750963800488,"y":41.397},{"x":1750963743037,"y":34.875},{"x":1750963682664,"y":38.519},{"x":1750963622258,"y":44.124},{"x":1750963561874,"y":30.714},{"x":1750963501530,"y":42.172},{"x":1750963441154,"y":46.256},{"x":1750963380783,"y":45.246},{"x":1750963320418,"y":58.615},{"x":1750963262937,"y":46.135},{"x":1750963202547,"y":38.369},{"x":1750963142191,"y":32.706},{"x":1750963081814,"y":31.148},{"x":1750963021465,"y":26.782},{"x":1750962961086,"y":29.511},{"x":1750962900693,"y":26.358},{"x":1750962840402,"y":31.919},{"x":1750962782787,"y":28.138},{"x":1750962722424,"y":34.027},{"x":1750962662070,"y":33.608},{"x":1750962601660,"y":34.211},{"x":1750962541261,"y":38.011},{"x":1750962480885,"y":30.981},{"x":1750962420531,"y":28.171},{"x":1750962360174,"y":28.654},{"x":1750962302691,"y":33.773},{"x":1750962242319,"y":42.129},{"x":1750962181876,"y":34.671},{"x":1750962121477,"y":48.671},{"x":1750962061093,"y":48.232},{"x":1750962000699,"y":49.938},{"x":1750961940310,"y":53.047},{"x":1750961882744,"y":51.924},{"x":1750961822241,"y":33.883},{"x":1750961761881,"y":35.134},{"x":1750961701472,"y":35.771},{"x":1750961641079,"y":37.948},{"x":1750961580662,"y":30.199},{"x":1750961520299,"y":30.892},{"x":1750961462791,"y":40.078},{"x":1750961402407,"y":40.511},{"x":1750961342042,"y":40.473},{"x":1750961281674,"y":46.509},{"x":1750961221311,"y":52.127},{"x":1750961160911,"y":34.272},{"x":1750961100764,"y":34.292},{"x":1750961040127,"y":37.121},{"x":1750960982674,"y":29.135},{"x":1750960922308,"y":29.365},{"x":1750960861922,"y":42.639},{"x":1750960801508,"y":35.313},{"x":1750960741096,"y":45.14},{"x":1750960680720,"y":41.135},{"x":1750960620374,"y":39.908},{"x":1750960562879,"y":46.234},{"x":1750960502517,"y":39.023},{"x":1750960442154,"y":39.569},{"x":1750960381767,"y":32.739},{"x":1750960321418,"y":30.0},{"x":1750960261019,"y":35.745},{"x":1750960200636,"y":33.465},{"x":1750960140243,"y":30.004},{"x":1750960082812,"y":28.667},{"x":1750960022420,"y":33.398},{"x":1750959962041,"y":22.467},{"x":1750959901677,"y":26.885},{"x":1750959841315,"y":26.157},{"x":1750959780921,"y":50.088},{"x":1750959720549,"y":50.693},{"x":1750959660152,"y":43.633},{"x":1750959602714,"y":44.392},{"x":1750959542358,"y":43.224},{"x":1750959481929,"y":36.875},{"x":1750959421581,"y":29.804},{"x":1750959361179,"y":30.765},{"x":1750959300771,"y":24.07},{"x":1750959240430,"y":25.822},{"x":1750959182872,"y":34.347},{"x":1750959122476,"y":29.377},{"x":1750959062144,"y":33.304},{"x":1750959001748,"y":30.458},{"x":1750958941384,"y":30.796},{"x":1750958880964,"y":26.2},{"x":1750958820627,"y":26.532},{"x":1750958760202,"y":39.602},{"x":1750958702721,"y":36.108},{"x":1750958642346,"y":50.184},{"x":1750958581989,"y":34.139},{"x":1750958521626,"y":27.622},{"x":1750958461251,"y":19.434},{"x":1750958400866,"y":23.067},{"x":1750958340455,"y":16.807},{"x":1750958282906,"y":22.992},{"x":1750958222456,"y":19.993},{"x":1750958161996,"y":21.107},{"x":1750958101618,"y":29.882},{"x":1750958041222,"y":24.928},{"x":1750957980822,"y":21.499},{"x":1750957920490,"y":16.152},{"x":1750957862958,"y":31.403},{"x":1750957802574,"y":33.241},{"x":1750957742198,"y":41.474},{"x":1750957681816,"y":40.533},{"x":1750957621427,"y":38.256},{"x":1750957561054,"y":39.728},{"x":1750957500602,"y":34.695},{"x":1750957440167,"y":38.199},{"x":1750957382678,"y":26.679},{"x":1750957322320,"y":25.405},{"x":1750957261871,"y":36.894},{"x":1750957201510,"y":42.868},{"x":1750957141100,"y":42.162},{"x":1750957080702,"y":41.031},{"x":1750957020326,"y":37.98},{"x":1750956962803,"y":45.861},{"x":1750956902420,"y":40.762},{"x":1750956842051,"y":39.438},{"x":1750956781654,"y":44.554},{"x":1750956721316,"y":23.007},{"x":1750956660942,"y":25.448},{"x":1750956600577,"y":26.894},{"x":1750956543189,"y":21.313},{"x":1750956482663,"y":29.92},{"x":1750956422247,"y":20.689},{"x":1750956361856,"y":24.553},{"x":1750956301487,"y":34.541},{"x":1750956241110,"y":29.517},{"x":1750956180732,"y":32.125},{"x":1750956120347,"y":35.526},{"x":1750956062900,"y":38.481},{"x":1750956002519,"y":24.151},{"x":1750955942148,"y":22.537},{"x":1750955881761,"y":26.61},{"x":1750955821394,"y":23.715},{"x":1750955761030,"y":20.548},{"x":1750955700623,"y":33.463},{"x":1750955640235,"y":18.778},{"x":1750955582772,"y":22.94},{"x":1750955522375,"y":25.456},{"x":1750955461992,"y":32.609},{"x":1750955401636,"y":24.392},{"x":1750955341223,"y":26.12},{"x":1750955280840,"y":25.464},{"x":1750955220476,"y":21.94},{"x":1750955163018,"y":23.738},{"x":1750955102624,"y":32.453},{"x":1750955042264,"y":23.436},{"x":1750954981863,"y":24.013},{"x":1750954921501,"y":26.283},{"x":1750954861123,"y":23.349},{"x":1750954800720,"y":21.291},{"x":1750954740323,"y":10.868},{"x":1750954682677,"y":17.599},{"x":1750954622182,"y":15.344},{"x":1750954561776,"y":13.111},{"x":1750954501393,"y":18.059},{"x":1750954440950,"y":19.948},{"x":1750954380580,"y":14.006},{"x":1750954320144,"y":26.536},{"x":1750954262688,"y":26.561},{"x":1750954202308,"y":25.938},{"x":1750954141933,"y":44.427},{"x":1750954081560,"y":26.287},{"x":1750954021201,"y":19.745},{"x":1750953960761,"y":22.998},{"x":1750953900439,"y":15.697},{"x":1750953842869,"y":17.269},{"x":1750953782466,"y":16.007},{"x":1750953722108,"y":27.72},{"x":1750953661686,"y":16.222},{"x":1750953601312,"y":21.376},{"x":1750953540852,"y":21.703},{"x":1750953480494,"y":19.618},{"x":1750953423023,"y":27.722},{"x":1750953362644,"y":19.23},{"x":1750953302228,"y":22.195},{"x":1750953241809,"y":18.683},{"x":1750953181445,"y":25.369},{"x":1750953121040,"y":21.352},{"x":1750953060666,"y":11.539},{"x":1750953000305,"y":29.864},{"x":1750952942841,"y":39.209},{"x":1750952882445,"y":24.019},{"x":1750952822083,"y":31.991},{"x":1750952761700,"y":25.099},{"x":1750952701321,"y":15.899},{"x":1750952640922,"y":8.669},{"x":1750952580539,"y":26.933},{"x":1750952520134,"y":18.374},{"x":1750952462692,"y":20.279},{"x":1750952402333,"y":23.544},{"x":1750952341949,"y":20.313},{"x":1750952281581,"y":16.699},{"x":1750952221146,"y":16.415},{"x":1750952160693,"y":9.861},{"x":1750952100325,"y":26.709},{"x":1750952042827,"y":27.072},{"x":1750951982451,"y":17.242},{"x":1750951922101,"y":20.29},{"x":1750951861759,"y":10.6},{"x":1750951801403,"y":12.621},{"x":1750951740980,"y":22.111},{"x":1750951680612,"y":22.511},{"x":1750951620233,"y":23.327},{"x":1750951562722,"y":23.14},{"x":1750951502354,"y":20.298},{"x":1750951441969,"y":37.525},{"x":1750951381544,"y":30.908},{"x":1750951321147,"y":26.203},{"x":1750951260769,"y":30.528},{"x":1750951200409,"y":22.024},{"x":1750951142931,"y":19.659},{"x":1750951082415,"y":30.715},{"x":1750951021973,"y":18.299},{"x":1750950961618,"y":18.584},{"x":1750950901250,"y":28.927},{"x":1750950840820,"y":29.924},{"x":1750950780486,"y":37.217},{"x":1750950722893,"y":22.912},{"x":1750950662515,"y":14.741},{"x":1750950602122,"y":10.101},{"x":1750950541763,"y":4.892},{"x":1750950481397,"y":3.234},{"x":1750950421032,"y":19.29},{"x":1750950360635,"y":22.853},{"x":1750950300246,"y":17.997},{"x":1750950242759,"y":16.746},{"x":1750950182362,"y":27.724},{"x":1750950121946,"y":27.052},{"x":1750950061565,"y":22.151},{"x":1750950001164,"y":24.326},{"x":1750949940648,"y":26.223},{"x":1750949880292,"y":16.259},{"x":1750949822796,"y":21.924},{"x":1750949762427,"y":20.69},{"x":1750949702064,"y":18.583},{"x":1750949641697,"y":27.023},{"x":1750949581319,"y":32.309},{"x":1750949520963,"y":32.279},{"x":1750949460627,"y":27.463},{"x":1750949400198,"y":20.769},{"x":1750949342714,"y":12.083},{"x":1750949282309,"y":30.918},{"x":1750949221901,"y":25.405},{"x":1750949161506,"y":10.718},{"x":1750949101144,"y":20.418},{"x":1750949040751,"y":12.487},{"x":1750948980364,"y":27.109},{"x":1750948922874,"y":23.311},{"x":1750948862495,"y":10.278},{"x":1750948802063,"y":26.29},{"x":1750948741656,"y":26.622},{"x":1750948681279,"y":17.909},{"x":1750948620881,"y":13.988},{"x":1750948560497,"y":18.294},{"x":1750948503061,"y":27.169},{"x":1750948442644,"y":19.136},{"x":1750948382252,"y":34.227},{"x":1750948321866,"y":10.504},{"x":1750948261518,"y":9.993},{"x":1750948201119,"y":15.536},{"x":1750948140727,"y":5.39},{"x":1750948080315,"y":14.829},{"x":1750948022862,"y":20.338},{"x":1750947962476,"y":17.677},{"x":1750947902052,"y":14.425},{"x":1750947841690,"y":13.257},{"x":1750947781298,"y":22.427},{"x":1750947720925,"y":29.185},{"x":1750947660532,"y":27.932},{"x":1750947600164,"y":30.115},{"x":1750947542690,"y":24.304},{"x":1750947482336,"y":25.52},{"x":1750947421811,"y":23.429},{"x":1750947361429,"y":22.852},{"x":1750947301030,"y":21.436},{"x":1750947240658,"y":30.27},{"x":1750947180289,"y":33.813},{"x":1750947122819,"y":41.16},{"x":1750947062432,"y":33.828},{"x":1750947002034,"y":36.572},{"x":1750946941677,"y":41.056},{"x":1750946881287,"y":29.947},{"x":1750946820861,"y":34.408},{"x":1750946760490,"y":27.283},{"x":1750946703020,"y":24.78},{"x":1750946642615,"y":31.188},{"x":1750946582256,"y":18.022},{"x":1750946521826,"y":19.691},{"x":1750946461449,"y":25.293},{"x":1750946401053,"y":22.641},{"x":1750946340619,"y":25.9},{"x":1750946280192,"y":26.203},{"x":1750946222719,"y":23.93},{"x":1750946162309,"y":19.802},{"x":1750946101926,"y":21.201},{"x":1750946041545,"y":37.805},{"x":1750945981155,"y":26.54},{"x":1750945920741,"y":33.603},{"x":1750945860358,"y":26.595},{"x":1750945802845,"y":23.247},{"x":1750945742465,"y":27.12},{"x":1750945682037,"y":22.945},{"x":1750945621666,"y":27.64},{"x":1750945561278,"y":28.738},{"x":1750945500876,"y":28.197},{"x":1750945440432,"y":32.33},{"x":1750945382915,"y":32.412},{"x":1750945322528,"y":31.543},{"x":1750945262077,"y":42.452},{"x":1750945201676,"y":33.935},{"x":1750945141290,"y":48.128},{"x":1750945080878,"y":36.384},{"x":1750945020433,"y":27.409},{"x":1750944962905,"y":34.697},{"x":1750944902532,"y":45.58},{"x":1750944842187,"y":36.329},{"x":1750944781801,"y":34.619},{"x":1750944721429,"y":31.279},{"x":1750944661071,"y":38.885},{"x":1750944600731,"y":36.512},{"x":1750944540246,"y":31.039},{"x":1750944482723,"y":38.193},{"x":1750944422355,"y":28.584},{"x":1750944361979,"y":19.583},{"x":1750944301614,"y":30.07},{"x":1750944241222,"y":21.869},{"x":1750944180842,"y":17.429},{"x":1750944120394,"y":14.377},{"x":1750944062987,"y":29.562},{"x":1750944002591,"y":35.48},{"x":1750943942243,"y":34.295},{"x":1750943881679,"y":33.097},{"x":1750943821212,"y":39.529},{"x":1750943760787,"y":27.524},{"x":1750943700545,"y":19.762},{"x":1750943642942,"y":24.102},{"x":1750943582593,"y":37.315},{"x":1750943522213,"y":44.058},{"x":1750943461797,"y":34.856},{"x":1750943401412,"y":22.366},{"x":1750943341002,"y":23.267},{"x":1750943280641,"y":22.063},{"x":1750943220257,"y":26.977},{"x":1750943162749,"y":24.681},{"x":1750943102364,"y":28.137},{"x":1750943041991,"y":28.082},{"x":1750942981584,"y":24.955},{"x":1750942921185,"y":34.447},{"x":1750942860757,"y":34.229},{"x":1750942800595,"y":46.854},{"x":1750942742867,"y":42.443},{"x":1750942682503,"y":52.173},{"x":1750942622122,"y":38.283},{"x":1750942561675,"y":35.179},{"x":1750942501306,"y":33.448},{"x":1750942440874,"y":29.989},{"x":1750942380522,"y":26.737},{"x":1750942320190,"y":45.301},{"x":1750942262696,"y":45.285},{"x":1750942202317,"y":45.058},{"x":1750942141933,"y":41.808},{"x":1750942081560,"y":44.508},{"x":1750942021208,"y":48.529},{"x":1750941960816,"y":44.313},{"x":1750941900495,"y":52.913},{"x":1750941842942,"y":47.068},{"x":1750941782578,"y":28.483},{"x":1750941722202,"y":5.546},{"x":1750941661813,"y":9.367},{"x":1750941601444,"y":12.521},{"x":1750941541071,"y":9.233},{"x":1750941480696,"y":22.785},{"x":1750941420363,"y":30.948},{"x":1750941362836,"y":12.958},{"x":1750941302466,"y":13.686},{"x":1750941242120,"y":18.479},{"x":1750941181688,"y":18.728},{"x":1750941121301,"y":19.702},{"x":1750941060918,"y":20.41},{"x":1750941000500,"y":20.32},{"x":1750940943000,"y":18.304},{"x":1750940882633,"y":12.091},{"x":1750940822254,"y":7.032},{"x":1750940761880,"y":12.363},{"x":1750940701509,"y":17.539},{"x":1750940641121,"y":25.692},{"x":1750940580765,"y":22.709},{"x":1750940520332,"y":38.286},{"x":1750940462878,"y":45.203},{"x":1750940402468,"y":43.967},{"x":1750940342120,"y":39.396},{"x":1750940281624,"y":44.352},{"x":1750940221068,"y":50.23},{"x":1750940160617,"y":21.788},{"x":1750940100156,"y":23.256},{"x":1750940042687,"y":16.839},{"x":1750939982305,"y":12.614},{"x":1750939921920,"y":18.815},{"x":1750939861535,"y":12.373},{"x":1750939801146,"y":13.274},{"x":1750939740763,"y":31.652},{"x":1750939680465,"y":21.277},{"x":1750939622854,"y":18.481},{"x":1750939562483,"y":31.561},{"x":1750939502083,"y":20.015},{"x":1750939441686,"y":26.13},{"x":1750939381294,"y":31.288},{"x":1750939320902,"y":32.631},{"x":1750939260493,"y":23.936},{"x":1750939203028,"y":30.49},{"x":1750939142572,"y":19.507},{"x":1750939082190,"y":27.508},{"x":1750939021754,"y":24.393},{"x":1750938961402,"y":6.053},{"x":1750938900931,"y":26.835},{"x":1750938840552,"y":28.806},{"x":1750938780201,"y":24.044},{"x":1750938722734,"y":26.179},{"x":1750938662363,"y":22.335},{"x":1750938601918,"y":27.611},{"x":1750938541547,"y":27.153},{"x":1750938481170,"y":16.248},{"x":1750938420777,"y":17.669},{"x":1750938360407,"y":12.293},{"x":1750938302985,"y":23.88},{"x":1750938242595,"y":14.277},{"x":1750938182198,"y":17.724},{"x":1750938121783,"y":32.748},{"x":1750938061371,"y":22.666},{"x":1750938000971,"y":22.211},{"x":1750937940600,"y":27.306},{"x":1750937880236,"y":16.147},{"x":1750937822671,"y":19.459},{"x":1750937762306,"y":25.885},{"x":1750937701930,"y":27.581},{"x":1750937641554,"y":26.641},{"x":1750937581198,"y":37.755},{"x":1750937520815,"y":35.897},{"x":1750937460409,"y":25.529},{"x":1750937402941,"y":21.862},{"x":1750937342562,"y":24.565},{"x":1750937282139,"y":24.182},{"x":1750937221757,"y":22.307},{"x":1750937161365,"y":21.238},{"x":1750937100989,"y":16.733},{"x":1750937040590,"y":24.423},{"x":1750936980240,"y":25.372},{"x":1750936922772,"y":24.723},{"x":1750936862411,"y":32.611},{"x":1750936802027,"y":14.208},{"x":1750936741643,"y":16.436},{"x":1750936681046,"y":9.085},{"x":1750936620575,"y":12.366},{"x":1750936560183,"y":10.078},{"x":1750936502719,"y":9.107},{"x":1750936442372,"y":19.97},{"x":1750936381973,"y":31.063},{"x":1750936321594,"y":14.148},{"x":1750936261181,"y":19.086},{"x":1750936200812,"y":23.796},{"x":1750936140359,"y":35.217},{"x":1750936082881,"y":50.738},{"x":1750936022452,"y":34.945},{"x":1750935962107,"y":39.354},{"x":1750935901678,"y":39.391},{"x":1750935841346,"y":37.273},{"x":1750935780943,"y":38.959},{"x":1750935720576,"y":17.76},{"x":1750935660157,"y":34.613},{"x":1750935602708,"y":22.238},{"x":1750935542326,"y":23.859},{"x":1750935481954,"y":26.134},{"x":1750935421599,"y":8.254},{"x":1750935361183,"y":10.751},{"x":1750935300804,"y":8.257},{"x":1750935240417,"y":10.07},{"x":1750935182888,"y":21.018},{"x":1750935122490,"y":29.019},{"x":1750935062080,"y":29.342},{"x":1750935001647,"y":24.268},{"x":1750934941279,"y":19.532},{"x":1750934880879,"y":30.911},{"x":1750934820518,"y":9.906},{"x":1750934760121,"y":3.549},{"x":1750934702743,"y":2.896},{"x":1750934642362,"y":6.492},{"x":1750934581985,"y":10.512},{"x":1750934521642,"y":6.98},{"x":1750934461226,"y":9.475},{"x":1750934400799,"y":13.374},{"x":1750934340354,"y":17.097},{"x":1750934282896,"y":15.048},{"x":1750934222494,"y":12.614},{"x":1750934162128,"y":16.707},{"x":1750934101746,"y":21.02},{"x":1750934041357,"y":24.348},{"x":1750933981005,"y":20.874},{"x":1750933920640,"y":25.245},{"x":1750933860285,"y":24.644},{"x":1750933802736,"y":21.404},{"x":1750933742337,"y":27.47},{"x":1750933681954,"y":29.241},{"x":1750933621602,"y":24.125},{"x":1750933561212,"y":26.332},{"x":1750933500801,"y":19.181},{"x":1750933440395,"y":19.67},{"x":1750933382947,"y":21.329},{"x":1750933322532,"y":46.58},{"x":1750933262165,"y":36.078},{"x":1750933201751,"y":20.081},{"x":1750933141383,"y":17.063},{"x":1750933080842,"y":16.721},{"x":1750933020375,"y":13.782},{"x":1750932962794,"y":27.258},{"x":1750932902417,"y":21.794},{"x":1750932842056,"y":23.909},{"x":1750932781654,"y":23.784},{"x":1750932721244,"y":19.178},{"x":1750932660828,"y":25.453},{"x":1750932600460,"y":40.885},{"x":1750932542963,"y":23.499},{"x":1750932482572,"y":31.761},{"x":1750932422179,"y":22.457},{"x":1750932361801,"y":37.279},{"x":1750932301404,"y":30.837},{"x":1750932241019,"y":32.624},{"x":1750932180631,"y":40.889},{"x":1750932120350,"y":22.929},{"x":1750932062801,"y":50.028},{"x":1750932002341,"y":32.081},{"x":1750931941847,"y":24.918},{"x":1750931881312,"y":31.875},{"x":1750931820873,"y":36.563},{"x":1750931760464,"y":43.66},{"x":1750931703143,"y":39.413},{"x":1750931642821,"y":30.487},{"x":1750931582280,"y":32.58},{"x":1750931521844,"y":28.0},{"x":1750931461389,"y":40.625},{"x":1750931400919,"y":31.004},{"x":1750931340511,"y":45.9},{"x":1750931282963,"y":28.443},{"x":1750931222571,"y":47.23},{"x":1750931162182,"y":42.178},{"x":1750931101779,"y":51.809},{"x":1750931041371,"y":59.218},{"x":1750930980961,"y":43.574},{"x":1750930920564,"y":32.995},{"x":1750930860123,"y":33.743},{"x":1750930802677,"y":18.678},{"x":1750930742297,"y":17.558},{"x":1750930681897,"y":15.395},{"x":1750930621499,"y":20.835},{"x":1750930561076,"y":18.426},{"x":1750930500648,"y":27.564},{"x":1750930440232,"y":17.038},{"x":1750930382746,"y":17.89},{"x":1750930322364,"y":33.796},{"x":1750930261994,"y":13.781},{"x":1750930201621,"y":30.374},{"x":1750930141193,"y":27.886},{"x":1750930080776,"y":33.061},{"x":1750930020398,"y":31.442},{"x":1750929962896,"y":33.698},{"x":1750929902502,"y":24.206},{"x":1750929842087,"y":32.224},{"x":1750929781713,"y":20.932},{"x":1750929721265,"y":23.686},{"x":1750929660859,"y":22.567},{"x":1750929600410,"y":19.992},{"x":1750929542843,"y":19.99},{"x":1750929482369,"y":21.278},{"x":1750929421831,"y":30.02},{"x":1750929361438,"y":26.825},{"x":1750929301086,"y":36.402},{"x":1750929240686,"y":27.008},{"x":1750929180329,"y":34.248},{"x":1750929122823,"y":23.164},{"x":1750929062454,"y":23.185},{"x":1750929002065,"y":34.507},{"x":1750928941696,"y":31.0},{"x":1750928881318,"y":25.766},{"x":1750928820935,"y":27.111},{"x":1750928760543,"y":34.745},{"x":1750928700113,"y":32.514},{"x":1750928642680,"y":14.553},{"x":1750928582291,"y":25.101},{"x":1750928521893,"y":31.416},{"x":1750928461497,"y":30.082},{"x":1750928401101,"y":21.646},{"x":1750928340624,"y":24.827},{"x":1750928282909,"y":28.766},{"x":1750928222548,"y":31.872},{"x":1750928162139,"y":34.389},{"x":1750928101772,"y":31.071},{"x":1750928041368,"y":41.501},{"x":1750927980961,"y":30.575},{"x":1750927920570,"y":32.803},{"x":1750927860197,"y":29.973},{"x":1750927802713,"y":45.334},{"x":1750927742357,"y":29.178},{"x":1750927681969,"y":27.376},{"x":1750927621609,"y":25.778},{"x":1750927561201,"y":29.684},{"x":1750927500832,"y":37.139},{"x":1750927440387,"y":31.311},{"x":1750927382913,"y":30.833},{"x":1750927322526,"y":27.998},{"x":1750927262148,"y":30.811},{"x":1750927201763,"y":29.463},{"x":1750927141373,"y":33.756},{"x":1750927081008,"y":32.98},{"x":1750927020606,"y":35.239},{"x":1750926960234,"y":36.915},{"x":1750926902746,"y":31.078},{"x":1750926842388,"y":26.343},{"x":1750926781966,"y":27.189},{"x":1750926721598,"y":29.65},{"x":1750926661209,"y":39.268},{"x":1750926600796,"y":32.313},{"x":1750926540374,"y":26.171},{"x":1750926482906,"y":29.907},{"x":1750926422531,"y":27.148},{"x":1750926362142,"y":27.858},{"x":1750926301780,"y":27.285},{"x":1750926241403,"y":50.936},{"x":1750926181037,"y":51.752},{"x":1750926120654,"y":56.445},{"x":1750926060276,"y":53.996},{"x":1750926002737,"y":50.182},{"x":1750925942342,"y":31.758},{"x":1750925881798,"y":34.254},{"x":1750925821253,"y":29.199},{"x":1750925760837,"y":26.975},{"x":1750925700487,"y":30.882},{"x":1750925642981,"y":29.354},{"x":1750925582612,"y":28.286},{"x":1750925522235,"y":31.494},{"x":1750925461844,"y":36.488},{"x":1750925401435,"y":33.819},{"x":1750925341041,"y":46.117},{"x":1750925280653,"y":37.736},{"x":1750925220256,"y":27.593},{"x":1750925162784,"y":35.579},{"x":1750925102368,"y":36.046},{"x":1750925041991,"y":33.523},{"x":1750924981614,"y":32.344},{"x":1750924921085,"y":39.17},{"x":1750924860683,"y":42.679},{"x":1750924800949,"y":42.463},{"x":1750924742767,"y":33.625},{"x":1750924682399,"y":33.308},{"x":1750924622028,"y":28.064},{"x":1750924561597,"y":28.346},{"x":1750924501230,"y":27.396},{"x":1750924440831,"y":28.444},{"x":1750924380443,"y":33.177},{"x":1750924323011,"y":26.154},{"x":1750924261011,"y":24.882},{"x":1750924203622,"y":27.322},{"x":1750924142646,"y":30.27},{"x":1750924082279,"y":34.115},{"x":1750924021865,"y":33.465},{"x":1750923961489,"y":29.587},{"x":1750923901131,"y":29.244},{"x":1750923840740,"y":25.86},{"x":1750923780356,"y":27.856},{"x":1750923722881,"y":37.341},{"x":1750923662454,"y":30.815},{"x":1750923602090,"y":31.624},{"x":1750923541672,"y":36.812},{"x":1750923481283,"y":31.083},{"x":1750923420891,"y":35.095},{"x":1750923360524,"y":30.702},{"x":1750923300082,"y":31.766},{"x":1750923242639,"y":48.177},{"x":1750923182254,"y":29.089},{"x":1750923121849,"y":32.183},{"x":1750923061464,"y":22.652},{"x":1750923001058,"y":31.268},{"x":1750922940668,"y":35.924},{"x":1750922880342,"y":40.388},{"x":1750922822753,"y":39.258},{"x":1750922762374,"y":30.049},{"x":1750922701977,"y":44.14},{"x":1750922641609,"y":32.71},{"x":1750922581194,"y":40.446},{"x":1750922520786,"y":37.37},{"x":1750922460437,"y":26.414},{"x":1750922402936,"y":41.367},{"x":1750922342515,"y":45.488},{"x":1750922281954,"y":28.903},{"x":1750922221387,"y":39.427},{"x":1750922161006,"y":29.871},{"x":1750922100648,"y":26.558},{"x":1750922040238,"y":26.833},{"x":1750921982726,"y":27.554},{"x":1750921922363,"y":25.871},{"x":1750921861975,"y":34.172},{"x":1750921801594,"y":32.878},{"x":1750921741198,"y":30.089},{"x":1750921680795,"y":30.788},{"x":1750921620409,"y":39.906},{"x":1750921562788,"y":39.362},{"x":1750921502398,"y":41.393},{"x":1750921441986,"y":48.91},{"x":1750921381596,"y":39.711},{"x":1750921321165,"y":34.516},{"x":1750921260786,"y":32.609},{"x":1750921200664,"y":33.511},{"x":1750921142909,"y":35.982},{"x":1750921082514,"y":34.759},{"x":1750921022103,"y":26.937},{"x":1750920961692,"y":35.499},{"x":1750920901316,"y":27.036},{"x":1750920840914,"y":42.07},{"x":1750920780546,"y":35.673},{"x":1750920720131,"y":33.335},{"x":1750920662625,"y":32.489},{"x":1750920602251,"y":61.213},{"x":1750920541853,"y":36.283},{"x":1750920481488,"y":41.049},{"x":1750920421070,"y":60.323},{"x":1750920360642,"y":43.874},{"x":1750920300275,"y":50.465},{"x":1750920242813,"y":54.052},{"x":1750920182406,"y":43.38},{"x":1750920122004,"y":33.392},{"x":1750920061624,"y":35.131},{"x":1750920001202,"y":35.485},{"x":1750919940791,"y":46.692},{"x":1750919880380,"y":43.941},{"x":1750919822928,"y":45.586},{"x":1750919762540,"y":46.347},{"x":1750919702155,"y":47.663},{"x":1750919641688,"y":47.424},{"x":1750919581308,"y":47.514},{"x":1750919520899,"y":38.226},{"x":1750919460506,"y":48.834},{"x":1750919400266,"y":46.549},{"x":1750919342696,"y":42.906},{"x":1750919282303,"y":34.42},{"x":1750919221880,"y":40.848},{"x":1750919161498,"y":49.258},{"x":1750919101088,"y":50.318},{"x":1750919040683,"y":49.31},{"x":1750918980303,"y":43.939},{"x":1750918922829,"y":37.838},{"x":1750918862394,"y":39.728},{"x":1750918802008,"y":33.371},{"x":1750918741622,"y":40.01},{"x":1750918681201,"y":30.248},{"x":1750918620683,"y":39.692},{"x":1750918560266,"y":24.672},{"x":1750918502827,"y":43.422},{"x":1750918442415,"y":28.641},{"x":1750918382033,"y":39.339},{"x":1750918321632,"y":33.539},{"x":1750918261240,"y":44.123},{"x":1750918200825,"y":48.802},{"x":1750918140413,"y":33.336},{"x":1750918082901,"y":44.529},{"x":1750918022543,"y":45.093},{"x":1750917962151,"y":39.28},{"x":1750917901781,"y":27.446},{"x":1750917841351,"y":27.011},{"x":1750917780955,"y":27.015},{"x":1750917720586,"y":25.075},{"x":1750917660198,"y":24.107},{"x":1750917602652,"y":27.408},{"x":1750917542230,"y":31.049},{"x":1750917481811,"y":30.153},{"x":1750917421439,"y":29.253},{"x":1750917361031,"y":30.85},{"x":1750917300642,"y":26.155},{"x":1750917240169,"y":25.36},{"x":1750917182712,"y":24.261},{"x":1750917122310,"y":28.765},{"x":1750917061887,"y":21.419},{"x":1750917001493,"y":22.514},{"x":1750916941078,"y":22.455},{"x":1750916880687,"y":27.532},{"x":1750916820305,"y":25.63},{"x":1750916762826,"y":24.486},{"x":1750916702456,"y":27.749},{"x":1750916642060,"y":28.103},{"x":1750916581675,"y":26.944},{"x":1750916521294,"y":26.444},{"x":1750916460889,"y":30.854},{"x":1750916400503,"y":24.001},{"x":1750916343025,"y":24.232},{"x":1750916282612,"y":24.951},{"x":1750916222238,"y":23.037},{"x":1750916161781,"y":32.388},{"x":1750916101416,"y":27.64},{"x":1750916040994,"y":27.131},{"x":1750915980610,"y":28.856},{"x":1750915920291,"y":26.486},{"x":1750915862759,"y":20.851},{"x":1750915802389,"y":21.087},{"x":1750915741994,"y":24.874},{"x":1750915681643,"y":22.759},{"x":1750915621232,"y":22.887},{"x":1750915560811,"y":25.004},{"x":1750915500416,"y":30.964},{"x":1750915442913,"y":26.206},{"x":1750915382520,"y":25.773},{"x":1750915322154,"y":28.187},{"x":1750915261737,"y":24.615},{"x":1750915201343,"y":26.512},{"x":1750915140956,"y":22.768},{"x":1750915080444,"y":25.694},{"x":1750915022860,"y":25.142},{"x":1750914962487,"y":20.773},{"x":1750914902120,"y":22.898},{"x":1750914841709,"y":29.284},{"x":1750914781337,"y":43.321},{"x":1750914720925,"y":43.363},{"x":1750914660523,"y":47.102},{"x":1750914600077,"y":47.107},{"x":1750914542676,"y":45.243},{"x":1750914482301,"y":32.315},{"x":1750914421897,"y":34.614},{"x":1750914361502,"y":31.22},{"x":1750914301129,"y":31.19},{"x":1750914240738,"y":28.354},{"x":1750914180407,"y":25.096},{"x":1750914122898,"y":45.734},{"x":1750914062482,"y":46.133},{"x":1750914002105,"y":49.142},{"x":1750913941694,"y":47.349},{"x":1750913881329,"y":49.719},{"x":1750913820927,"y":22.803},{"x":1750913760581,"y":26.245},{"x":1750913700203,"y":25.69},{"x":1750913642734,"y":25.593},{"x":1750913582355,"y":26.077},{"x":1750913521949,"y":28.886},{"x":1750913461554,"y":26.133},{"x":1750913401171,"y":25.738},{"x":1750913340776,"y":28.407},{"x":1750913280383,"y":23.399},{"x":1750913222937,"y":26.245},{"x":1750913162531,"y":23.746},{"x":1750913102143,"y":29.446},{"x":1750913041746,"y":24.912},{"x":1750912981377,"y":27.445},{"x":1750912920961,"y":29.833},{"x":1750912860611,"y":24.916},{"x":1750912800228,"y":28.735},{"x":1750912742740,"y":34.72},{"x":1750912682335,"y":36.047},{"x":1750912621955,"y":37.574},{"x":1750912561585,"y":37.844},{"x":1750912501207,"y":34.316},{"x":1750912440829,"y":27.575},{"x":1750912380415,"y":25.285},{"x":1750912322971,"y":31.585},{"x":1750912262578,"y":32.963},{"x":1750912202209,"y":30.818},{"x":1750912141783,"y":28.68},{"x":1750912081396,"y":25.837},{"x":1750912020985,"y":27.863},{"x":1750911960619,"y":31.29},{"x":1750911900287,"y":26.847},{"x":1750911842824,"y":28.855},{"x":1750911782444,"y":31.5},{"x":1750911722050,"y":24.834},{"x":1750911661644,"y":24.969},{"x":1750911601265,"y":28.34},{"x":1750911540895,"y":30.349},{"x":1750911480400,"y":26.606},{"x":1750911422823,"y":28.639},{"x":1750911362441,"y":25.586},{"x":1750911302072,"y":38.046},{"x":1750911241683,"y":37.939},{"x":1750911181295,"y":35.658},{"x":1750911120877,"y":37.929},{"x":1750911060529,"y":34.914},{"x":1750911000123,"y":27.455},{"x":1750910942674,"y":26.0},{"x":1750910882274,"y":29.241},{"x":1750910821881,"y":25.554},{"x":1750910761498,"y":26.188},{"x":1750910701105,"y":25.156},{"x":1750910640709,"y":25.608},{"x":1750910580366,"y":27.273},{"x":1750910522835,"y":26.495},{"x":1750910462381,"y":24.695},{"x":1750910401784,"y":26.299},{"x":1750910341285,"y":25.807},{"x":1750910280900,"y":26.305},{"x":1750910220531,"y":28.671},{"x":1750910160107,"y":34.858},{"x":1750910102677,"y":31.867},{"x":1750910042292,"y":30.845},{"x":1750909981929,"y":28.64},{"x":1750909921516,"y":31.29},{"x":1750909861108,"y":29.702},{"x":1750909800647,"y":27.964},{"x":1750909740264,"y":27.592},{"x":1750909682761,"y":26.962},{"x":1750909622386,"y":27.666},{"x":1750909562015,"y":25.785},{"x":1750909501602,"y":26.718},{"x":1750909441221,"y":23.6},{"x":1750909380806,"y":25.267},{"x":1750909320430,"y":27.335},{"x":1750909262968,"y":31.605},{"x":1750909202521,"y":26.916},{"x":1750909142134,"y":31.488},{"x":1750909081754,"y":28.517},{"x":1750909021330,"y":33.509},{"x":1750908960946,"y":35.281},{"x":1750908900547,"y":37.692},{"x":1750908840129,"y":33.699},{"x":1750908782690,"y":31.277},{"x":1750908722303,"y":25.541},{"x":1750908661919,"y":26.822},{"x":1750908601558,"y":30.61},{"x":1750908541151,"y":24.252},{"x":1750908480725,"y":26.285},{"x":1750908420315,"y":26.35},{"x":1750908362820,"y":25.784},{"x":1750908302428,"y":26.459},{"x":1750908242009,"y":24.81},{"x":1750908181660,"y":24.199},{"x":1750908121252,"y":28.06},{"x":1750908060855,"y":27.81},{"x":1750908000483,"y":26.045},{"x":1750907942974,"y":37.125},{"x":1750907882438,"y":30.449},{"x":1750907822032,"y":29.39},{"x":1750907761628,"y":29.675},{"x":1750907701239,"y":29.764},{"x":1750907640807,"y":32.661},{"x":1750907580426,"y":27.967},{"x":1750907522970,"y":29.112},{"x":1750907462569,"y":26.888},{"x":1750907402173,"y":27.078},{"x":1750907341774,"y":28.984},{"x":1750907281385,"y":25.121},{"x":1750907222464,"y":25.712},{"x":1750907162064,"y":26.665},{"x":1750907101652,"y":27.42},{"x":1750907040605,"y":27.073},{"x":1750906980772,"y":30.852},{"x":1750906921367,"y":24.886},{"x":1750906802287,"y":23.928},{"x":1750906741816,"y":43.75},{"x":1750906681396,"y":44.488},{"x":1750906620990,"y":44.199},{"x":1750906560588,"y":48.203},{"x":1750906500206,"y":44.982},{"x":1750906442731,"y":25.712},{"x":1750906382321,"y":28.354},{"x":1750906321921,"y":28.793},{"x":1750906261504,"y":24.389},{"x":1750906201118,"y":26.834},{"x":1750906140722,"y":37.235},{"x":1750906080381,"y":47.564},{"x":1750906022850,"y":50.888},{"x":1750905962440,"y":48.679},{"x":1750905902029,"y":47.361},{"x":1750905841640,"y":25.5},{"x":1750905781238,"y":28.897},{"x":1750905720847,"y":27.105},{"x":1750905660423,"y":28.955},{"x":1750905603023,"y":29.253},{"x":1750905542614,"y":27.927},{"x":1750905482221,"y":28.381},{"x":1750905421839,"y":28.78},{"x":1750905361447,"y":32.388},{"x":1750905301037,"y":25.258},{"x":1750905240643,"y":25.84},{"x":1750905180283,"y":23.923},{"x":1750905122804,"y":24.161},{"x":1750905062430,"y":28.683},{"x":1750905002031,"y":24.837},{"x":1750904941641,"y":25.885},{"x":1750904881223,"y":27.793},{"x":1750904820840,"y":29.057},{"x":1750904760471,"y":33.453},{"x":1750904702981,"y":31.95},{"x":1750904642612,"y":31.174},{"x":1750904582205,"y":29.346},{"x":1750904521798,"y":24.541},{"x":1750904461370,"y":23.252},{"x":1750904400999,"y":28.388},{"x":1750904340631,"y":23.031},{"x":1750904280244,"y":23.2},{"x":1750904222601,"y":24.195},{"x":1750904162210,"y":27.618},{"x":1750904101807,"y":24.037},{"x":1750904041404,"y":30.354},{"x":1750903981012,"y":33.443},{"x":1750903920648,"y":27.332},{"x":1750903860237,"y":29.048},{"x":1750903802767,"y":30.675},{"x":1750903742368,"y":31.023},{"x":1750903681955,"y":27.248},{"x":1750903621568,"y":26.406},{"x":1750903561153,"y":26.934},{"x":1750903500761,"y":26.146},{"x":1750903440382,"y":26.795},{"x":1750903382880,"y":29.229},{"x":1750903322462,"y":25.507},{"x":1750903262075,"y":23.621},{"x":1750903201712,"y":28.446},{"x":1750903141215,"y":25.087},{"x":1750903080768,"y":28.331},{"x":1750903020375,"y":24.555},{"x":1750902962810,"y":24.437},{"x":1750902902435,"y":27.518},{"x":1750902842044,"y":26.74},{"x":1750902781668,"y":31.925},{"x":1750902721283,"y":26.684},{"x":1750902660866,"y":26.581},{"x":1750902600509,"y":23.022},{"x":1750902543034,"y":26.438},{"x":1750902482638,"y":26.16},{"x":1750902422216,"y":25.32},{"x":1750902361816,"y":25.0},{"x":1750902301383,"y":26.838},{"x":1750902240999,"y":26.927},{"x":1750902180611,"y":27.028},{"x":1750902120242,"y":30.479},{"x":1750902062789,"y":25.416},{"x":1750902002404,"y":27.46},{"x":1750901942034,"y":24.147},{"x":1750901881637,"y":24.507},{"x":1750901821261,"y":31.39},{"x":1750901760842,"y":28.811},{"x":1750901700487,"y":26.25},{"x":1750901642954,"y":29.415},{"x":1750901582560,"y":28.929},{"x":1750901522136,"y":30.706},{"x":1750901461773,"y":33.135},{"x":1750901401380,"y":26.976},{"x":1750901340953,"y":27.498},{"x":1750901280572,"y":28.345},{"x":1750901220196,"y":26.043},{"x":1750901162686,"y":26.854},{"x":1750901102299,"y":23.357},{"x":1750901041860,"y":26.566},{"x":1750900981495,"y":22.402},{"x":1750900921113,"y":26.544},{"x":1750900860723,"y":31.987},{"x":1750900800365,"y":46.267},{"x":1750900742836,"y":45.439},{"x":1750900682328,"y":44.732},{"x":1750900621832,"y":43.997},{"x":1750900561429,"y":34.558},{"x":1750900501007,"y":30.049},{"x":1750900440630,"y":27.558},{"x":1750900380219,"y":24.786},{"x":1750900322703,"y":24.489},{"x":1750900262309,"y":27.219},{"x":1750900201901,"y":30.268},{"x":1750900141504,"y":27.059},{"x":1750900081115,"y":27.604},{"x":1750900020722,"y":36.116},{"x":1750899960330,"y":27.112},{"x":1750899902856,"y":25.462},{"x":1750899842442,"y":29.049},{"x":1750899782042,"y":25.198},{"x":1750899721651,"y":26.567},{"x":1750899661224,"y":25.498},{"x":1750899600762,"y":29.906},{"x":1750899540362,"y":46.897},{"x":1750899482785,"y":43.014},{"x":1750899422388,"y":53.866},{"x":1750899361975,"y":47.987},{"x":1750899301599,"y":49.716},{"x":1750899241222,"y":28.629},{"x":1750899180818,"y":27.936},{"x":1750899120405,"y":36.839},{"x":1750899062886,"y":36.591},{"x":1750899002501,"y":35.861},{"x":1750898942122,"y":33.117},{"x":1750898881715,"y":36.664},{"x":1750898821306,"y":23.691},{"x":1750898760909,"y":26.62},{"x":1750898700504,"y":22.93},{"x":1750898642880,"y":22.783},{"x":1750898582504,"y":28.85},{"x":1750898522138,"y":24.962},{"x":1750898461713,"y":28.007},{"x":1750898401351,"y":28.208},{"x":1750898340909,"y":26.028},{"x":1750898280569,"y":26.727},{"x":1750898223009,"y":25.582},{"x":1750898162614,"y":29.848},{"x":1750898102240,"y":26.246},{"x":1750898041816,"y":26.986},{"x":1750897981440,"y":31.022},{"x":1750897921079,"y":34.468},{"x":1750897860687,"y":27.28},{"x":1750897800291,"y":32.052},{"x":1750897742755,"y":36.613},{"x":1750897682334,"y":37.791},{"x":1750897621930,"y":37.461},{"x":1750897561554,"y":37.496},{"x":1750897501181,"y":35.972},{"x":1750897440794,"y":22.85},{"x":1750897380434,"y":25.463},{"x":1750897322992,"y":22.869},{"x":1750897262593,"y":32.352},{"x":1750897202226,"y":31.67},{"x":1750897141852,"y":28.646},{"x":1750897081357,"y":26.25},{"x":1750897020845,"y":27.196},{"x":1750896960486,"y":28.048},{"x":1750896902973,"y":25.954},{"x":1750896842560,"y":23.412},{"x":1750896782140,"y":26.358},{"x":1750896721756,"y":23.645},{"x":1750896661362,"y":22.86},{"x":1750896600978,"y":29.067},{"x":1750896540557,"y":22.57},{"x":1750896480192,"y":28.41},{"x":1750896422764,"y":29.496},{"x":1750896362359,"y":31.394},{"x":1750896301986,"y":32.372},{"x":1750896241611,"y":24.603},{"x":1750896181241,"y":27.69},{"x":1750896120819,"y":25.527},{"x":1750896060459,"y":24.359},{"x":1750896002868,"y":23.933},{"x":1750895942479,"y":30.6},{"x":1750895882040,"y":26.675},{"x":1750895821676,"y":27.199},{"x":1750895761274,"y":25.135},{"x":1750895700866,"y":27.652},{"x":1750895640462,"y":29.093},{"x":1750895582965,"y":31.234},{"x":1750895522588,"y":25.582},{"x":1750895462210,"y":24.635},{"x":1750895401835,"y":24.433},{"x":1750895341444,"y":24.553},{"x":1750895281047,"y":24.348},{"x":1750895220657,"y":24.203},{"x":1750895160334,"y":31.02},{"x":1750895102801,"y":32.394},{"x":1750895042413,"y":32.203},{"x":1750894982067,"y":35.965},{"x":1750894921695,"y":27.591},{"x":1750894861313,"y":25.505},{"x":1750894800920,"y":28.454},{"x":1750894740546,"y":24.255},{"x":1750894680180,"y":34.794},{"x":1750894622731,"y":41.202},{"x":1750894562331,"y":40.995},{"x":1750894501934,"y":40.59},{"x":1750894441536,"y":40.02},{"x":1750894381148,"y":39.659},{"x":1750894320752,"y":29.499},{"x":1750894260393,"y":31.279},{"x":1750894202950,"y":29.05},{"x":1750894142587,"y":25.159},{"x":1750894082205,"y":24.871},{"x":1750894021822,"y":28.195},{"x":1750893961441,"y":27.99},{"x":1750893901054,"y":25.516},{"x":1750893840659,"y":25.157},{"x":1750893780277,"y":29.904},{"x":1750893722789,"y":28.737},{"x":1750893662406,"y":27.603},{"x":1750893602030,"y":27.54},{"x":1750893541638,"y":26.729},{"x":1750893481172,"y":24.292},{"x":1750893420619,"y":24.252},{"x":1750893360190,"y":29.644},{"x":1750893302688,"y":25.578},{"x":1750893242318,"y":32.591},{"x":1750893181953,"y":35.661},{"x":1750893121570,"y":35.031},{"x":1750893061151,"y":35.677},{"x":1750893000776,"y":36.335},{"x":1750892940380,"y":32.43},{"x":1750892882846,"y":28.026},{"x":1750892822464,"y":28.274},{"x":1750892762118,"y":29.198},{"x":1750892701737,"y":30.035},{"x":1750892641342,"y":27.178},{"x":1750892580930,"y":26.612},{"x":1750892520560,"y":28.715},{"x":1750892460220,"y":29.362},{"x":1750892402675,"y":32.782},{"x":1750892342300,"y":25.838},{"x":1750892281914,"y":38.566},{"x":1750892221528,"y":44.513},{"x":1750892161143,"y":48.001},{"x":1750892100766,"y":47.568},{"x":1750892040352,"y":44.363},{"x":1750891982931,"y":35.973},{"x":1750891922550,"y":25.786},{"x":1750891862154,"y":26.663},{"x":1750891801777,"y":30.538},{"x":1750891741369,"y":30.377},{"x":1750891680960,"y":26.538},{"x":1750891620560,"y":24.199},{"x":1750891560206,"y":26.422},{"x":1750891502751,"y":25.62},{"x":1750891442364,"y":25.592},{"x":1750891381917,"y":29.311},{"x":1750891321545,"y":26.128},{"x":1750891261140,"y":32.345},{"x":1750891200718,"y":33.857},{"x":1750891140352,"y":33.973},{"x":1750891082819,"y":35.245},{"x":1750891022434,"y":33.316},{"x":1750890961997,"y":28.651},{"x":1750890901605,"y":28.994},{"x":1750890841211,"y":26.19},{"x":1750890780800,"y":33.258},{"x":1750890720392,"y":29.986},{"x":1750890662928,"y":30.207},{"x":1750890602548,"y":33.147},{"x":1750890542157,"y":31.879},{"x":1750890481781,"y":34.651},{"x":1750890421400,"y":34.094},{"x":1750890361007,"y":32.619},{"x":1750890300598,"y":28.423},{"x":1750890240210,"y":26.972},{"x":1750890182686,"y":26.106},{"x":1750890122302,"y":29.228},{"x":1750890061903,"y":25.806},{"x":1750890001521,"y":23.542},{"x":1750889941100,"y":29.268},{"x":1750889880652,"y":28.451},{"x":1750889820234,"y":29.951},{"x":1750889762752,"y":28.765},{"x":1750889702348,"y":36.683},{"x":1750889641968,"y":35.204},{"x":1750889581603,"y":33.495},{"x":1750889521210,"y":36.807},{"x":1750889460807,"y":40.184},{"x":1750889400433,"y":29.666},{"x":1750889342859,"y":29.727},{"x":1750889282405,"y":28.774},{"x":1750889222051,"y":26.264},{"x":1750889161668,"y":27.959},{"x":1750889101287,"y":27.175},{"x":1750889040876,"y":25.74},{"x":1750888980495,"y":24.209},{"x":1750888920105,"y":32.602},{"x":1750888862650,"y":29.751},{"x":1750888802238,"y":27.566},{"x":1752098342882,"y":38.198},{"x":1752098282738,"y":43.373},{"x":1752098222595,"y":55.545},{"x":1752098162430,"y":38.193},{"x":1752098102280,"y":32.361},{"x":1752098042124,"y":31.386},{"x":1752097981964,"y":37.157},{"x":1752097921818,"y":32.552},{"x":1752097861676,"y":42.639},{"x":1752097801516,"y":57.597},{"x":1752097741371,"y":46.62},{"x":1752097681224,"y":40.978},{"x":1752097621073,"y":44.688},{"x":1752097560912,"y":44.077},{"x":1752097500822,"y":45.665},{"x":1752097440577,"y":52.613},{"x":1752097380447,"y":60.215},{"x":1752097320258,"y":44.655},{"x":1752097262874,"y":39.115},{"x":1752097202715,"y":33.979},{"x":1752097142569,"y":30.441},{"x":1752097082415,"y":30.672},{"x":1752097022250,"y":31.395},{"x":1752096962108,"y":32.665},{"x":1752096901946,"y":46.595},{"x":1752096841794,"y":42.091},{"x":1752096781663,"y":53.729},{"x":1752096721522,"y":52.806},{"x":1752096661362,"y":60.391},{"x":1752096601233,"y":49.017},{"x":1752096541058,"y":57.936},{"x":1752096480903,"y":36.716},{"x":1752096420760,"y":28.7},{"x":1752096360615,"y":30.805},{"x":1752096300490,"y":46.038},{"x":1752096240296,"y":52.475},{"x":1752096182949,"y":57.863},{"x":1752096122803,"y":58.748},{"x":1752096062646,"y":43.811},{"x":1752096002488,"y":41.578},{"x":1752095942326,"y":40.275},{"x":1752095882153,"y":42.237},{"x":1752095821973,"y":51.064},{"x":1752095761827,"y":54.135},{"x":1752095701679,"y":61.732},{"x":1752095641539,"y":65.458},{"x":1752095581384,"y":64.272},{"x":1752095521233,"y":50.972},{"x":1752095461085,"y":52.274},{"x":1752095400942,"y":41.595},{"x":1752095340783,"y":39.785},{"x":1752095280638,"y":40.389},{"x":1752095220475,"y":40.457},{"x":1752095160336,"y":40.148},{"x":1752095100251,"y":39.929},{"x":1752095042908,"y":45.698},{"x":1752094982770,"y":37.671},{"x":1752094922623,"y":50.627},{"x":1752094862482,"y":39.261},{"x":1752094802343,"y":54.776},{"x":1752094742189,"y":53.411},{"x":1752094682039,"y":62.826},{"x":1752094621863,"y":60.882},{"x":1752094561718,"y":56.491},{"x":1752094501574,"y":52.978},{"x":1752094441426,"y":53.667},{"x":1752094381279,"y":43.788},{"x":1752094321129,"y":43.028},{"x":1752094260980,"y":42.191},{"x":1752094200856,"y":45.079},{"x":1752094140691,"y":39.55},{"x":1752094080601,"y":51.738},{"x":1752094020385,"y":41.121},{"x":1752093960175,"y":43.336},{"x":1752093902890,"y":41.655},{"x":1752093842728,"y":42.05},{"x":1752093782579,"y":41.557},{"x":1752093722421,"y":39.79},{"x":1752093662277,"y":40.816},{"x":1752093602119,"y":42.763},{"x":1752093541960,"y":42.602},{"x":1752093481812,"y":45.342},{"x":1752093421658,"y":46.552},{"x":1752093361509,"y":43.783},{"x":1752093301359,"y":57.43},{"x":1752093241199,"y":41.282},{"x":1752093181032,"y":43.676},{"x":1752093120900,"y":43.944},{"x":1752093060732,"y":47.512},{"x":1752093000626,"y":41.709},{"x":1752092940422,"y":37.779},{"x":1752092880327,"y":41.925},{"x":1752092820095,"y":63.376},{"x":1752092762890,"y":61.232},{"x":1752092702743,"y":62.922},{"x":1752092642589,"y":66.123},{"x":1752092582442,"y":63.341},{"x":1752092522298,"y":55.812},{"x":1752092462111,"y":39.621},{"x":1752092401954,"y":39.943},{"x":1752092341776,"y":53.022},{"x":1752092281549,"y":42.846},{"x":1752092221334,"y":43.384},{"x":1752092161185,"y":42.661},{"x":1752092101026,"y":42.123},{"x":1752092040855,"y":58.416},{"x":1752091980710,"y":59.909},{"x":1752091920619,"y":59.75},{"x":1752091860471,"y":61.317},{"x":1752091800314,"y":61.601},{"x":1752091742942,"y":46.804},{"x":1752091682790,"y":40.939},{"x":1752091622649,"y":40.733},{"x":1752091562512,"y":42.022},{"x":1752091502369,"y":46.242},{"x":1752091442196,"y":48.02},{"x":1752091382040,"y":45.121},{"x":1752091321859,"y":47.356},{"x":1752091261706,"y":49.278},{"x":1752091201577,"y":52.607},{"x":1752091141355,"y":65.931},{"x":1752091081206,"y":54.006},{"x":1752091021046,"y":56.491},{"x":1752090960873,"y":60.816},{"x":1752090900730,"y":53.498},{"x":1752090840565,"y":48.169},{"x":1752090780500,"y":47.807},{"x":1752090720262,"y":53.526},{"x":1752090662950,"y":50.926},{"x":1752090602800,"y":47.645},{"x":1752090542656,"y":54.127},{"x":1752090482485,"y":41.307},{"x":1752090422342,"y":42.83},{"x":1752090362196,"y":44.264},{"x":1752090302035,"y":37.413},{"x":1752090241869,"y":50.879},{"x":1752090181708,"y":43.118},{"x":1752090121546,"y":53.901},{"x":1752090061392,"y":58.553},{"x":1752090001230,"y":52.783},{"x":1752089941063,"y":53.987},{"x":1752089880908,"y":46.806},{"x":1752089820760,"y":45.468},{"x":1752089760623,"y":43.043},{"x":1752089700457,"y":56.4},{"x":1752089640337,"y":34.804},{"x":1752089582953,"y":37.988},{"x":1752089522779,"y":42.844},{"x":1752089462672,"y":45.119},{"x":1752089402480,"y":47.17},{"x":1752089342330,"y":43.092},{"x":1752089282184,"y":43.593},{"x":1752089222032,"y":38.633},{"x":1752089161886,"y":51.642},{"x":1752089101735,"y":36.834},{"x":1752089041569,"y":41.161},{"x":1752088981408,"y":38.408},{"x":1752088921256,"y":35.325},{"x":1752088861076,"y":34.927},{"x":1752088800921,"y":48.456},{"x":1752088740751,"y":37.013},{"x":1752088680613,"y":38.764},{"x":1752088620453,"y":33.752},{"x":1752088560297,"y":25.275},{"x":1752088502995,"y":32.152},{"x":1752088442841,"y":37.915},{"x":1752088382688,"y":29.782},{"x":1752088322544,"y":28.558},{"x":1752088262391,"y":28.481},{"x":1752088202239,"y":31.816},{"x":1752088142082,"y":30.844},{"x":1752088081935,"y":40.138},{"x":1752088021777,"y":36.933},{"x":1752087961629,"y":46.041},{"x":1752087901474,"y":56.15},{"x":1752087841328,"y":65.428},{"x":1752087781171,"y":51.332},{"x":1752087720999,"y":50.964},{"x":1752087660847,"y":44.669},{"x":1752087600895,"y":34.298},{"x":1752087540418,"y":29.499},{"x":1752087480293,"y":31.377},{"x":1752087422985,"y":40.235},{"x":1752087362844,"y":31.859},{"x":1752087302694,"y":37.12},{"x":1752087242534,"y":54.754},{"x":1752087182385,"y":57.632},{"x":1752087122241,"y":38.739},{"x":1752087062087,"y":41.239},{"x":1752087001925,"y":42.816},{"x":1752086941775,"y":29.147},{"x":1752086881627,"y":27.143},{"x":1752086821452,"y":34.609},{"x":1752086761328,"y":31.914},{"x":1752086701147,"y":27.6},{"x":1752086640985,"y":30.198},{"x":1752086580822,"y":36.526},{"x":1752086520670,"y":36.132},{"x":1752086460525,"y":38.59},{"x":1752086400435,"y":32.965},{"x":1752086340214,"y":43.72},{"x":1752086282914,"y":30.455},{"x":1752086222770,"y":26.844},{"x":1752086162626,"y":34.338},{"x":1752086102482,"y":27.602},{"x":1752086042322,"y":29.47},{"x":1752085982179,"y":32.988},{"x":1752085922026,"y":34.265},{"x":1752085861872,"y":36.656},{"x":1752085801706,"y":44.11},{"x":1752085741556,"y":32.704},{"x":1752085681402,"y":31.583},{"x":1752085621255,"y":37.89},{"x":1752085561087,"y":31.22},{"x":1752085500935,"y":30.09},{"x":1752085440779,"y":25.511},{"x":1752085380625,"y":28.869},{"x":1752085320488,"y":32.26},{"x":1752085260345,"y":28.213},{"x":1752085200184,"y":33.056},{"x":1752085142900,"y":36.014},{"x":1752085082764,"y":34.986},{"x":1752085022572,"y":31.717},{"x":1752084962414,"y":28.732},{"x":1752084902273,"y":29.608},{"x":1752084842115,"y":33.742},{"x":1752084781959,"y":30.596},{"x":1752084721812,"y":33.807},{"x":1752084661672,"y":28.147},{"x":1752084601527,"y":26.411},{"x":1752084541373,"y":47.994},{"x":1752084481213,"y":29.09},{"x":1752084421049,"y":42.111},{"x":1752084360886,"y":44.79},{"x":1752084300741,"y":41.623},{"x":1752084240625,"y":54.496},{"x":1752084180516,"y":42.927},{"x":1752084120295,"y":26.66},{"x":1752084062967,"y":27.682},{"x":1752084002817,"y":27.633},{"x":1752083942634,"y":38.936},{"x":1752083882500,"y":38.417},{"x":1752083822317,"y":34.019},{"x":1752083762149,"y":47.007},{"x":1752083702000,"y":35.106},{"x":1752083641845,"y":31.077},{"x":1752083581729,"y":35.769},{"x":1752083521531,"y":43.463},{"x":1752083461381,"y":37.978},{"x":1752083401221,"y":37.06},{"x":1752083341066,"y":37.73},{"x":1752083280907,"y":34.703},{"x":1752083220740,"y":30.425},{"x":1752083160604,"y":20.04},{"x":1752083100536,"y":28.503},{"x":1752083040281,"y":27.27},{"x":1752082982995,"y":28.598},{"x":1752082922854,"y":23.797},{"x":1752082862724,"y":23.59},{"x":1752082802470,"y":25.96},{"x":1752082742313,"y":29.864},{"x":1752082682166,"y":36.932},{"x":1752082621970,"y":36.745},{"x":1752082561843,"y":35.639},{"x":1752082501677,"y":35.777},{"x":1752082441524,"y":29.045},{"x":1752082381360,"y":29.285},{"x":1752082321217,"y":27.027},{"x":1752082261029,"y":25.423},{"x":1752082200917,"y":27.429},{"x":1752082140739,"y":28.683},{"x":1752082080609,"y":22.516},{"x":1752082020508,"y":27.469},{"x":1752081960343,"y":23.664},{"x":1752081900056,"y":25.344},{"x":1752081842851,"y":25.799},{"x":1752081782706,"y":24.121},{"x":1752081722552,"y":26.949},{"x":1752081662419,"y":23.544},{"x":1752081602210,"y":29.021},{"x":1752081542028,"y":23.734},{"x":1752081481849,"y":23.526},{"x":1752081421665,"y":25.201},{"x":1752081361497,"y":20.014},{"x":1752081301351,"y":31.279},{"x":1752081241206,"y":25.323},{"x":1752081181014,"y":25.454},{"x":1752081120853,"y":26.402},{"x":1752081060706,"y":21.908},{"x":1752081000571,"y":30.039},{"x":1752080940382,"y":18.42},{"x":1752080880301,"y":28.296},{"x":1752080822933,"y":19.939},{"x":1752080762773,"y":19.214},{"x":1752080702649,"y":27.668},{"x":1752080642471,"y":18.169},{"x":1752080582316,"y":24.904},{"x":1752080522174,"y":21.514},{"x":1752080461997,"y":20.991},{"x":1752080401850,"y":27.4},{"x":1752080341681,"y":24.021},{"x":1752080281534,"y":20.17},{"x":1752080221381,"y":20.126},{"x":1752080161221,"y":24.879},{"x":1752080101058,"y":25.48},{"x":1752080040897,"y":23.155},{"x":1752079980738,"y":17.13},{"x":1752079920613,"y":34.365},{"x":1752079860458,"y":18.122},{"x":1752079800431,"y":19.734},{"x":1752079742926,"y":16.103},{"x":1752079682747,"y":26.922},{"x":1752079622611,"y":18.697},{"x":1752079562472,"y":16.8},{"x":1752079502324,"y":22.687},{"x":1752079442176,"y":16.601},{"x":1752079382011,"y":21.61},{"x":1752079321864,"y":27.136},{"x":1752079261708,"y":26.097},{"x":1752079201549,"y":40.631},{"x":1752079141395,"y":49.232},{"x":1752079081254,"y":56.06},{"x":1752079021099,"y":49.005},{"x":1752078960935,"y":42.059},{"x":1752078900788,"y":42.861},{"x":1752078840641,"y":29.769},{"x":1752078780405,"y":24.977},{"x":1752078720262,"y":36.09},{"x":1752078662966,"y":14.151},{"x":1752078602802,"y":20.158},{"x":1752078542646,"y":16.785},{"x":1752078482467,"y":16.029},{"x":1752078422319,"y":22.847},{"x":1752078362170,"y":22.334},{"x":1752078302006,"y":23.249},{"x":1752078241848,"y":30.724},{"x":1752078181705,"y":33.378},{"x":1752078121568,"y":37.181},{"x":1752078061401,"y":34.655},{"x":1752078001261,"y":31.067},{"x":1752077941089,"y":25.933},{"x":1752077880875,"y":22.228},{"x":1752077820706,"y":18.214},{"x":1752077760574,"y":13.302},{"x":1752077700465,"y":22.62},{"x":1752077640207,"y":33.849},{"x":1752077582905,"y":27.154},{"x":1752077522754,"y":17.747},{"x":1752077462599,"y":32.572},{"x":1752077402446,"y":31.161},{"x":1752077342294,"y":27.832},{"x":1752077282147,"y":29.193},{"x":1752077221973,"y":23.943},{"x":1752077161835,"y":16.613},{"x":1752077101654,"y":17.17},{"x":1752077041492,"y":20.275},{"x":1752076981351,"y":19.5},{"x":1752076921193,"y":23.584},{"x":1752076861029,"y":19.749},{"x":1752076800913,"y":17.052},{"x":1752076740664,"y":41.253},{"x":1752076680556,"y":36.211},{"x":1752076620369,"y":45.011},{"x":1752076560185,"y":41.81},{"x":1752076502924,"y":29.517},{"x":1752076442762,"y":25.622},{"x":1752076382612,"y":28.554},{"x":1752076322446,"y":19.591},{"x":1752076262317,"y":25.551},{"x":1752076202135,"y":23.311},{"x":1752076141979,"y":28.658},{"x":1752076081827,"y":21.952},{"x":1752076021658,"y":35.63},{"x":1752075961480,"y":15.356},{"x":1752075901351,"y":27.946},{"x":1752075841174,"y":32.912},{"x":1752075781005,"y":31.736},{"x":1752075720836,"y":27.178},{"x":1752075660694,"y":43.214},{"x":1752075600601,"y":14.37},{"x":1752075540396,"y":17.505},{"x":1752075480141,"y":14.384},{"x":1752075422880,"y":17.025},{"x":1752075362743,"y":15.872},{"x":1752075302576,"y":14.367},{"x":1752075242415,"y":12.655},{"x":1752075182269,"y":16.738},{"x":1752075122110,"y":13.64},{"x":1752075061952,"y":5.724},{"x":1752075001804,"y":14.866},{"x":1752074941654,"y":11.512},{"x":1752074881494,"y":19.961},{"x":1752074821347,"y":38.934},{"x":1752074761194,"y":38.4},{"x":1752074701019,"y":33.825},{"x":1752074640864,"y":36.249},{"x":1752074580706,"y":44.256},{"x":1752074520549,"y":13.672},{"x":1752074460439,"y":27.382},{"x":1752074400408,"y":30.661},{"x":1752074342925,"y":26.391},{"x":1752074282775,"y":25.175},{"x":1752074222582,"y":21.326},{"x":1752074162423,"y":12.595},{"x":1752074102279,"y":26.234},{"x":1752074042130,"y":39.298},{"x":1752073981973,"y":32.347},{"x":1752073921827,"y":32.914},{"x":1752073861674,"y":29.473},{"x":1752073801532,"y":21.573},{"x":1752073741370,"y":22.775},{"x":1752073681224,"y":22.441},{"x":1752073621074,"y":20.025},{"x":1752073560936,"y":10.608},{"x":1752073500803,"y":15.456},{"x":1752073440632,"y":21.4},{"x":1752073380454,"y":18.741},{"x":1752073320344,"y":28.183},{"x":1752073262992,"y":26.522},{"x":1752073202901,"y":50.591},{"x":1752073142674,"y":23.364},{"x":1752073082523,"y":13.425},{"x":1752073022361,"y":17.787},{"x":1752072962198,"y":35.227},{"x":1752072902045,"y":17.269},{"x":1752072841881,"y":15.43},{"x":1752072781729,"y":22.671},{"x":1752072721547,"y":19.767},{"x":1752072661396,"y":11.381},{"x":1752072601243,"y":11.908},{"x":1752072541081,"y":16.089},{"x":1752072480917,"y":24.263},{"x":1752072420759,"y":14.62},{"x":1752072360613,"y":9.638},{"x":1752072300531,"y":10.616},{"x":1752072240296,"y":23.489},{"x":1752072182973,"y":8.963},{"x":1752072122822,"y":13.639},{"x":1752072062675,"y":20.297},{"x":1752072002532,"y":11.082},{"x":1752071942384,"y":23.573},{"x":1752071882242,"y":14.553},{"x":1752071822084,"y":13.825},{"x":1752071761905,"y":12.232},{"x":1752071701756,"y":16.148},{"x":1752071641603,"y":10.051},{"x":1752071581460,"y":20.879},{"x":1752071521330,"y":14.077},{"x":1752071461174,"y":15.096},{"x":1752071401039,"y":18.587},{"x":1752071340849,"y":14.364},{"x":1752071280693,"y":10.845},{"x":1752071220561,"y":22.015},{"x":1752071160370,"y":38.084},{"x":1752071100146,"y":33.304},{"x":1752071042900,"y":36.856},{"x":1752070982745,"y":30.458},{"x":1752070922606,"y":28.737},{"x":1752070862455,"y":7.799},{"x":1752070802303,"y":29.977},{"x":1752070742126,"y":9.884},{"x":1752070681945,"y":14.541},{"x":1752070621777,"y":12.581},{"x":1752070561619,"y":25.603},{"x":1752070501458,"y":28.646},{"x":1752070441308,"y":45.417},{"x":1752070381156,"y":25.812},{"x":1752070321011,"y":25.172},{"x":1752070260854,"y":26.678},{"x":1752070200729,"y":27.362},{"x":1752070140574,"y":29.747},{"x":1752070080394,"y":21.243},{"x":1752070020165,"y":18.333},{"x":1752069962891,"y":19.156},{"x":1752069902735,"y":31.16},{"x":1752069842616,"y":28.959},{"x":1752069782443,"y":29.209},{"x":1752069722303,"y":19.852},{"x":1752069662146,"y":14.187},{"x":1752069601992,"y":13.97},{"x":1752069541796,"y":16.636},{"x":1752069481651,"y":11.642},{"x":1752069421497,"y":13.239},{"x":1752069361346,"y":6.644},{"x":1752069301182,"y":17.512},{"x":1752069241019,"y":12.973},{"x":1752069180867,"y":26.872},{"x":1752069120727,"y":16.063},{"x":1752069060588,"y":14.099},{"x":1752069000512,"y":14.738},{"x":1752068940272,"y":16.486},{"x":1752068880208,"y":12.336},{"x":1752068822873,"y":10.371},{"x":1752068762703,"y":10.731},{"x":1752068702545,"y":6.411},{"x":1752068642417,"y":18.762},{"x":1752068582259,"y":19.729},{"x":1752068522108,"y":28.936},{"x":1752068461948,"y":11.504},{"x":1752068401808,"y":9.449},{"x":1752068341667,"y":17.965},{"x":1752068281519,"y":7.957},{"x":1752068221369,"y":15.193},{"x":1752068161222,"y":14.107},{"x":1752068101067,"y":11.941},{"x":1752068040903,"y":17.717},{"x":1752067980757,"y":22.409},{"x":1752067920635,"y":25.037},{"x":1752067860476,"y":14.271},{"x":1752067800397,"y":21.521},{"x":1752067743050,"y":27.226},{"x":1752067682870,"y":34.143},{"x":1752067622722,"y":31.838},{"x":1752067562578,"y":39.307},{"x":1752067502421,"y":17.039},{"x":1752067442277,"y":32.292},{"x":1752067382128,"y":7.312},{"x":1752067321974,"y":23.731},{"x":1752067261822,"y":20.164},{"x":1752067201603,"y":21.857},{"x":1752067141409,"y":13.34},{"x":1752067081212,"y":29.19},{"x":1752067020977,"y":16.707},{"x":1752066960818,"y":12.426},{"x":1752066900717,"y":13.985},{"x":1752066840579,"y":35.512},{"x":1752066780387,"y":15.525},{"x":1752066720253,"y":14.914},{"x":1752066662937,"y":29.467},{"x":1752066602802,"y":31.604},{"x":1752066542646,"y":2.926},{"x":1752066482496,"y":20.021},{"x":1752066422346,"y":11.712},{"x":1752066362196,"y":22.699},{"x":1752066302030,"y":19.482},{"x":1752066241880,"y":15.869},{"x":1752066181740,"y":21.116},{"x":1752066121578,"y":16.787},{"x":1752066061445,"y":20.485},{"x":1752066001355,"y":19.504},{"x":1752065941055,"y":30.403},{"x":1752065880879,"y":23.462},{"x":1752065820723,"y":23.662},{"x":1752065760576,"y":18.746},{"x":1752065700421,"y":27.357},{"x":1752065640212,"y":15.435},{"x":1752065582909,"y":14.737},{"x":1752065522754,"y":18.612},{"x":1752065462599,"y":10.393},{"x":1752065402443,"y":15.006},{"x":1752065342311,"y":25.493},{"x":1752065282155,"y":19.065},{"x":1752065222009,"y":22.714},{"x":1752065161834,"y":36.589},{"x":1752065101681,"y":30.456},{"x":1752065041530,"y":21.878},{"x":1752064981378,"y":22.392},{"x":1752064921235,"y":13.938},{"x":1752064861060,"y":16.476},{"x":1752064800900,"y":22.484},{"x":1752064740742,"y":13.946},{"x":1752064680593,"y":29.09},{"x":1752064620496,"y":10.207},{"x":1752064560332,"y":11.789},{"x":1752064502988,"y":12.612},{"x":1752064442848,"y":10.675},{"x":1752064382700,"y":20.231},{"x":1752064322544,"y":22.978},{"x":1752064262392,"y":7.31},{"x":1752064202243,"y":23.336},{"x":1752064142084,"y":17.88},{"x":1752064081912,"y":20.563},{"x":1752064021763,"y":18.377},{"x":1752063961603,"y":5.558},{"x":1752063901455,"y":6.58},{"x":1752063841295,"y":6.534},{"x":1752063781136,"y":6.061},{"x":1752063720971,"y":18.722},{"x":1752063660836,"y":10.321},{"x":1752063600710,"y":16.879},{"x":1752063540530,"y":8.265},{"x":1752063480391,"y":7.93},{"x":1752063422969,"y":30.124},{"x":1752063362804,"y":35.636},{"x":1752063302654,"y":29.417},{"x":1752063242506,"y":35.589},{"x":1752063182355,"y":40.469},{"x":1752063122202,"y":33.815},{"x":1752063062051,"y":24.296},{"x":1752063001888,"y":14.362},{"x":1752062941721,"y":12.351},{"x":1752062881570,"y":16.411},{"x":1752062821412,"y":10.043},{"x":1752062761267,"y":11.117},{"x":1752062701108,"y":25.876},{"x":1752062640934,"y":15.994},{"x":1752062580782,"y":7.45},{"x":1752062520664,"y":9.115},{"x":1752062460519,"y":2.953},{"x":1752062400459,"y":23.591},{"x":1752062342991,"y":25.216},{"x":1752062282848,"y":16.059},{"x":1752062222721,"y":10.566},{"x":1752062162562,"y":14.381},{"x":1752062102410,"y":8.773},{"x":1752062042261,"y":15.806},{"x":1752061982085,"y":20.341},{"x":1752061921919,"y":29.927},{"x":1752061861767,"y":19.317},{"x":1752061801625,"y":23.811},{"x":1752061741473,"y":21.731},{"x":1752061681325,"y":27.663},{"x":1752061621166,"y":20.912},{"x":1752061560993,"y":28.981},{"x":1752061500860,"y":28.473},{"x":1752061440645,"y":23.523},{"x":1752061380476,"y":26.917},{"x":1752061320301,"y":34.676},{"x":1752061260216,"y":17.66},{"x":1752061202895,"y":15.875},{"x":1752061142728,"y":20.132},{"x":1752061082584,"y":27.665},{"x":1752061022414,"y":11.567},{"x":1752060962280,"y":13.827},{"x":1752060902108,"y":19.644},{"x":1752060841938,"y":8.735},{"x":1752060781765,"y":4.495},{"x":1752060721588,"y":14.322},{"x":1752060661434,"y":10.547},{"x":1752060601286,"y":29.533},{"x":1752060541122,"y":20.28},{"x":1752060480934,"y":27.937},{"x":1752060420769,"y":18.738},{"x":1752060360629,"y":14.145},{"x":1752060300645,"y":15.849},{"x":1752060240318,"y":20.253},{"x":1752060182921,"y":8.85},{"x":1752060122765,"y":14.328},{"x":1752060062617,"y":12.519},{"x":1752060002472,"y":5.316},{"x":1752059942315,"y":13.467},{"x":1752059882156,"y":9.401},{"x":1752059821949,"y":13.214},{"x":1752059761801,"y":4.819},{"x":1752059701659,"y":4.949},{"x":1752059641507,"y":11.065},{"x":1752059581344,"y":9.353},{"x":1752059521195,"y":13.806},{"x":1752059461023,"y":11.604},{"x":1752059400895,"y":11.957},{"x":1752059340713,"y":10.184},{"x":1752059280578,"y":17.682},{"x":1752059220436,"y":15.469},{"x":1752059160253,"y":17.143},{"x":1752059103006,"y":15.085},{"x":1752059042832,"y":21.369},{"x":1752058982688,"y":41.834},{"x":1752058922539,"y":42.502},{"x":1752058862389,"y":38.942},{"x":1752058802305,"y":38.265},{"x":1752058742038,"y":26.593},{"x":1752058681890,"y":24.194},{"x":1752058621726,"y":18.696},{"x":1752058561581,"y":26.502},{"x":1752058501438,"y":9.543},{"x":1752058441296,"y":22.415},{"x":1752058381132,"y":14.077},{"x":1752058320953,"y":14.809},{"x":1752058260799,"y":38.989},{"x":1752058200717,"y":32.486},{"x":1752058140459,"y":34.093},{"x":1752058080281,"y":27.434},{"x":1752058022992,"y":34.775},{"x":1752057962839,"y":23.343},{"x":1752057902684,"y":21.806},{"x":1752057842529,"y":12.766},{"x":1752057782365,"y":23.036},{"x":1752057722201,"y":23.237},{"x":1752057662019,"y":19.56},{"x":1752057601850,"y":25.728},{"x":1752057541703,"y":19.843},{"x":1752057481576,"y":19.639},{"x":1752057421407,"y":15.818},{"x":1752057361282,"y":12.159},{"x":1752057301107,"y":14.666},{"x":1752057240934,"y":31.418},{"x":1752057180780,"y":40.702},{"x":1752057120672,"y":40.665},{"x":1752057060509,"y":35.195},{"x":1752057000467,"y":43.876},{"x":1752056942985,"y":35.733},{"x":1752056882820,"y":30.028},{"x":1752056822682,"y":27.653},{"x":1752056762527,"y":33.32},{"x":1752056702382,"y":35.442},{"x":1752056642232,"y":26.421},{"x":1752056582077,"y":25.905},{"x":1752056521894,"y":21.734},{"x":1752056461750,"y":31.179},{"x":1752056401596,"y":41.48},{"x":1752056341430,"y":30.697},{"x":1752056281249,"y":33.792},{"x":1752056221046,"y":27.769},{"x":1752056160882,"y":11.68},{"x":1752056100757,"y":24.739},{"x":1752056040570,"y":23.675},{"x":1752055980467,"y":36.896},{"x":1752055920537,"y":42.557},{"x":1752055862938,"y":47.386},{"x":1752055802777,"y":52.452},{"x":1752055742628,"y":49.239},{"x":1752055682479,"y":45.185},{"x":1752055622329,"y":29.016},{"x":1752055562179,"y":32.434},{"x":1752055502016,"y":21.856},{"x":1752055441862,"y":25.806},{"x":1752055381706,"y":27.79},{"x":1752055321548,"y":22.695},{"x":1752055261410,"y":28.037},{"x":1752055201314,"y":31.266},{"x":1752055141064,"y":26.526},{"x":1752055080901,"y":30.71},{"x":1752055020764,"y":28.764},{"x":1752054960674,"y":28.819},{"x":1752054900479,"y":33.045},{"x":1752054840341,"y":28.421},{"x":1752054780069,"y":33.189},{"x":1752054722887,"y":34.823},{"x":1752054662728,"y":32.416},{"x":1752054602578,"y":18.029},{"x":1752054542431,"y":29.092},{"x":1752054482274,"y":32.535},{"x":1752054422102,"y":34.406},{"x":1752054361936,"y":16.577},{"x":1752054301792,"y":20.023},{"x":1752054241633,"y":24.486},{"x":1752054181486,"y":25.957},{"x":1752054121341,"y":14.346},{"x":1752054061190,"y":36.54},{"x":1752054001035,"y":35.2},{"x":1752053940848,"y":34.786},{"x":1752053880710,"y":32.556},{"x":1752053820566,"y":37.217},{"x":1752053760451,"y":35.303},{"x":1752053700272,"y":46.754},{"x":1752053642949,"y":60.169},{"x":1752053582802,"y":30.287},{"x":1752053522647,"y":29.199},{"x":1752053462468,"y":21.317},{"x":1752053402316,"y":23.0},{"x":1752053342066,"y":23.313},{"x":1752053281906,"y":23.221},{"x":1752053221751,"y":37.026},{"x":1752053161603,"y":41.122},{"x":1752053101456,"y":37.924},{"x":1752053041320,"y":29.266},{"x":1752052981175,"y":34.361},{"x":1752052921026,"y":45.297},{"x":1752052860863,"y":38.507},{"x":1752052800819,"y":34.949},{"x":1752052740465,"y":33.025},{"x":1752052680276,"y":34.347},{"x":1752052622989,"y":32.848},{"x":1752052562843,"y":22.511},{"x":1752052502685,"y":23.918},{"x":1752052442541,"y":23.107},{"x":1752052382396,"y":33.297},{"x":1752052322248,"y":33.746},{"x":1752052262090,"y":30.688},{"x":1752052201906,"y":30.225},{"x":1752052141754,"y":30.674},{"x":1752052081601,"y":38.392},{"x":1752052021455,"y":51.525},{"x":1752051961295,"y":46.499},{"x":1752051901135,"y":40.883},{"x":1752051840956,"y":38.372},{"x":1752051780793,"y":30.368},{"x":1752051720644,"y":34.828},{"x":1752051660542,"y":29.324},{"x":1752051600496,"y":23.436},{"x":1752051540078,"y":31.828},{"x":1752051482879,"y":19.128},{"x":1752051422715,"y":23.71},{"x":1752051362553,"y":24.641},{"x":1752051302401,"y":17.044},{"x":1752051242259,"y":16.509},{"x":1752051182084,"y":21.066},{"x":1752051121917,"y":14.932},{"x":1752051061772,"y":21.466},{"x":1752051001614,"y":16.854},{"x":1752050941448,"y":17.997},{"x":1752050881297,"y":26.176},{"x":1752050821140,"y":32.64},{"x":1752050760972,"y":26.121},{"x":1752050700820,"y":34.731},{"x":1752050640597,"y":32.338},{"x":1752050580445,"y":32.691},{"x":1752050520270,"y":23.437},{"x":1752050462933,"y":21.341},{"x":1752050402786,"y":19.541},{"x":1752050342623,"y":29.706},{"x":1752050282469,"y":21.852},{"x":1752050222315,"y":31.485},{"x":1752050162165,"y":18.828},{"x":1752050102000,"y":11.581},{"x":1752050041845,"y":18.88},{"x":1752049981683,"y":25.54},{"x":1752049921536,"y":27.15},{"x":1752049861364,"y":29.37},{"x":1752049801291,"y":22.51},{"x":1752049741018,"y":20.411},{"x":1752049680865,"y":23.249},{"x":1752049620723,"y":19.556},{"x":1752049560583,"y":19.436},{"x":1752049500465,"y":13.401},{"x":1752049440271,"y":17.751},{"x":1752049382981,"y":18.689},{"x":1752049322821,"y":24.304},{"x":1752049262678,"y":18.942},{"x":1752049202520,"y":22.887},{"x":1752049142359,"y":25.12},{"x":1752049082215,"y":28.61},{"x":1752049021971,"y":42.264},{"x":1752048961822,"y":38.38},{"x":1752048901645,"y":40.024},{"x":1752048841485,"y":30.387},{"x":1752048781343,"y":31.235},{"x":1752048721188,"y":14.836},{"x":1752048661038,"y":22.761},{"x":1752048600864,"y":23.263},{"x":1752048540708,"y":23.434},{"x":1752048480607,"y":29.004},{"x":1752048420408,"y":33.595},{"x":1752048360238,"y":29.806},{"x":1752048302937,"y":23.759},{"x":1752048242779,"y":23.317},{"x":1752048182628,"y":27.925},{"x":1752048122485,"y":31.878},{"x":1752048062338,"y":20.748},{"x":1752048002191,"y":20.31},{"x":1752047941990,"y":28.733},{"x":1752047881843,"y":30.057},{"x":1752047821682,"y":20.583},{"x":1752047761530,"y":18.233},{"x":1752047701390,"y":34.035},{"x":1752047641228,"y":34.31},{"x":1752047581080,"y":21.717},{"x":1752047520912,"y":22.672},{"x":1752047460769,"y":23.028},{"x":1752047400735,"y":24.887},{"x":1752047340490,"y":36.448},{"x":1752047280360,"y":33.611},{"x":1752047222986,"y":26.445},{"x":1752047162838,"y":29.239},{"x":1752047102683,"y":36.103},{"x":1752047042528,"y":20.525},{"x":1752046982388,"y":17.879},{"x":1752046922242,"y":19.781},{"x":1752046862086,"y":19.226},{"x":1752046801915,"y":27.683},{"x":1752046741771,"y":28.317},{"x":1752046681617,"y":29.488},{"x":1752046621465,"y":16.88},{"x":1752046561306,"y":15.573},{"x":1752046501149,"y":15.376},{"x":1752046440973,"y":13.442},{"x":1752046380822,"y":13.889},{"x":1752046320694,"y":11.151},{"x":1752046260545,"y":8.139},{"x":1752046200447,"y":21.742},{"x":1752046140220,"y":28.132},{"x":1752046082944,"y":15.369},{"x":1752046022793,"y":17.279},{"x":1752045962637,"y":18.311},{"x":1752045902495,"y":13.925},{"x":1752045842341,"y":15.563},{"x":1752045782210,"y":14.878},{"x":1752045722036,"y":25.553},{"x":1752045661829,"y":36.348},{"x":1752045601671,"y":37.435},{"x":1752045541525,"y":21.862},{"x":1752045481405,"y":18.074},{"x":1752045421183,"y":18.835},{"x":1752045361017,"y":13.774},{"x":1752045300858,"y":26.007},{"x":1752045240699,"y":21.543},{"x":1752045180610,"y":23.115},{"x":1752045120397,"y":31.228},{"x":1752045060283,"y":50.511},{"x":1752045002883,"y":44.174},{"x":1752044942728,"y":40.475},{"x":1752044882583,"y":38.882},{"x":1752044822437,"y":35.227},{"x":1752044762270,"y":27.332},{"x":1752044702145,"y":23.755},{"x":1752044641928,"y":38.115},{"x":1752044581765,"y":26.22},{"x":1752044521621,"y":30.206},{"x":1752044461476,"y":30.538},{"x":1752044401323,"y":26.014},{"x":1752044341053,"y":29.933},{"x":1752044280897,"y":19.367},{"x":1752044220746,"y":26.317},{"x":1752044160706,"y":26.855},{"x":1752044100568,"y":28.837},{"x":1752044040316,"y":32.168},{"x":1752043982988,"y":37.123},{"x":1752043922832,"y":44.256},{"x":1752043862654,"y":29.76},{"x":1752043802502,"y":24.113},{"x":1752043742347,"y":25.384},{"x":1752043682182,"y":30.212},{"x":1752043622019,"y":19.814},{"x":1752043561860,"y":30.846},{"x":1752043501716,"y":28.681},{"x":1752043441566,"y":25.066},{"x":1752043381400,"y":25.532},{"x":1752043321255,"y":28.4},{"x":1752043261042,"y":39.112},{"x":1752043200895,"y":30.112},{"x":1752043140695,"y":28.378},{"x":1752043080576,"y":29.412},{"x":1752043020428,"y":29.471},{"x":1752042960230,"y":31.1},{"x":1752042902922,"y":39.147},{"x":1752042842767,"y":39.095},{"x":1752042782621,"y":33.953},{"x":1752042722467,"y":30.354},{"x":1752042662325,"y":34.79},{"x":1752042602166,"y":26.009},{"x":1752042542023,"y":27.7},{"x":1752042481840,"y":25.409},{"x":1752042421684,"y":24.408},{"x":1752042361541,"y":32.051},{"x":1752042301396,"y":44.646},{"x":1752042241245,"y":43.351},{"x":1752042181084,"y":55.003},{"x":1752042120924,"y":39.612},{"x":1752042060772,"y":55.852},{"x":1752042000679,"y":26.445},{"x":1752041940398,"y":34.72},{"x":1752041880161,"y":42.835},{"x":1752041822914,"y":44.923},{"x":1752041762759,"y":24.454},{"x":1752041702615,"y":40.806},{"x":1752041642445,"y":46.204},{"x":1752041582298,"y":35.319},{"x":1752041522155,"y":45.7},{"x":1752041461952,"y":55.849},{"x":1752041401759,"y":41.652},{"x":1752041341596,"y":36.884},{"x":1752041281471,"y":36.052},{"x":1752041221306,"y":35.058},{"x":1752041161152,"y":47.193},{"x":1752041100995,"y":38.153},{"x":1752041040829,"y":38.015},{"x":1752040980687,"y":45.448},{"x":1752040920558,"y":40.581},{"x":1752040860435,"y":44.362},{"x":1752040800335,"y":28.182},{"x":1752040742893,"y":28.525},{"x":1752040682738,"y":26.78},{"x":1752040622576,"y":27.886},{"x":1752040562427,"y":31.08},{"x":1752040502280,"y":24.352},{"x":1752040442123,"y":23.41},{"x":1752040381963,"y":27.563},{"x":1752040321812,"y":24.6},{"x":1752040261657,"y":24.175},{"x":1752040201458,"y":27.814},{"x":1752040141296,"y":21.879},{"x":1752040081148,"y":25.441},{"x":1752040020971,"y":23.806},{"x":1752039960824,"y":25.522},{"x":1752039900784,"y":25.81},{"x":1752039840524,"y":24.489},{"x":1752039780398,"y":20.709},{"x":1752039720256,"y":22.722},{"x":1752039662919,"y":19.664},{"x":1752039602766,"y":23.09},{"x":1752039542617,"y":25.475},{"x":1752039482467,"y":22.354},{"x":1752039422314,"y":32.352},{"x":1752039362159,"y":20.594},{"x":1752039301995,"y":20.893},{"x":1752039241846,"y":22.202},{"x":1752039181700,"y":23.067},{"x":1752039121553,"y":33.788},{"x":1752039061399,"y":37.057},{"x":1752039001256,"y":33.188},{"x":1752038941071,"y":41.618},{"x":1752038880904,"y":40.628},{"x":1752038820747,"y":30.757},{"x":1752038760614,"y":38.869},{"x":1752038700581,"y":43.178},{"x":1752038640292,"y":41.274},{"x":1752038580152,"y":48.209},{"x":1752038522863,"y":47.006},{"x":1752038462717,"y":44.405},{"x":1752038402568,"y":51.454},{"x":1752038342410,"y":30.978},{"x":1752038282266,"y":26.33},{"x":1752038222086,"y":28.733},{"x":1752038161929,"y":22.73},{"x":1752038101812,"y":24.315},{"x":1752038041680,"y":24.466},{"x":1752037981496,"y":26.646},{"x":1752037921347,"y":25.944},{"x":1752037861191,"y":25.606},{"x":1752037801022,"y":23.848},{"x":1752037740866,"y":21.935},{"x":1752037680760,"y":21.087},{"x":1752037620590,"y":24.667},{"x":1752037560527,"y":27.854},{"x":1752037500228,"y":25.099},{"x":1752037443003,"y":26.203},{"x":1752037382836,"y":26.624},{"x":1752037322686,"y":31.864},{"x":1752037262527,"y":24.818},{"x":1752037202374,"y":28.187},{"x":1752037142209,"y":24.613},{"x":1752037082056,"y":23.927},{"x":1752037021919,"y":22.729},{"x":1752036961758,"y":26.806},{"x":1752036901606,"y":26.695},{"x":1752036841443,"y":29.183},{"x":1752036781299,"y":26.703},{"x":1752036721146,"y":29.303},{"x":1752036660983,"y":32.161},{"x":1752036600832,"y":27.699},{"x":1752036540677,"y":27.82},{"x":1752036480511,"y":27.938},{"x":1752036420352,"y":26.357},{"x":1752036360284,"y":24.658},{"x":1752036302931,"y":27.853},{"x":1752036242752,"y":25.068},{"x":1752036182603,"y":27.995},{"x":1752036122430,"y":23.944},{"x":1752036062293,"y":23.453},{"x":1752036002116,"y":48.491},{"x":1752035941954,"y":45.426},{"x":1752035881783,"y":47.139},{"x":1752035821638,"y":45.44},{"x":1752035761479,"y":44.955},{"x":1752035701333,"y":24.56},{"x":1752035641187,"y":23.402},{"x":1752035581033,"y":27.787},{"x":1752035520885,"y":29.601},{"x":1752035460700,"y":27.621},{"x":1752035400713,"y":25.705},{"x":1752035340460,"y":25.417},{"x":1752035280260,"y":26.662},{"x":1752035222985,"y":27.553},{"x":1752035162844,"y":29.671},{"x":1752035102692,"y":26.799},{"x":1752035042545,"y":24.808},{"x":1752034982389,"y":22.449},{"x":1752034922245,"y":24.998},{"x":1752034862098,"y":24.961},{"x":1752034801943,"y":25.064},{"x":1752034741787,"y":25.997},{"x":1752034681620,"y":29.542},{"x":1752034621472,"y":26.641},{"x":1752034561321,"y":30.156},{"x":1752034501168,"y":32.602},{"x":1752034440991,"y":32.747},{"x":1752034380849,"y":32.782},{"x":1752034320724,"y":30.274},{"x":1752034260561,"y":28.709},{"x":1752034200562,"y":31.555},{"x":1752034140432,"y":29.948},{"x":1752034082956,"y":26.613},{"x":1752034022824,"y":27.45},{"x":1752033962645,"y":35.535},{"x":1752033902470,"y":31.263},{"x":1752033842343,"y":37.666},{"x":1752033782174,"y":27.825},{"x":1752033722004,"y":31.155},{"x":1752033661857,"y":28.249},{"x":1752033601666,"y":29.285},{"x":1752033541496,"y":24.65},{"x":1752033481349,"y":29.345},{"x":1752033421201,"y":28.398},{"x":1752033361041,"y":26.069},{"x":1752033300891,"y":35.214},{"x":1752033240732,"y":38.137},{"x":1752033180592,"y":33.544},{"x":1752033120512,"y":45.707},{"x":1752033060366,"y":45.458},{"x":1752033003023,"y":39.574},{"x":1752032942858,"y":40.204},{"x":1752032882714,"y":37.301},{"x":1752032822573,"y":29.565},{"x":1752032762400,"y":31.055},{"x":1752032702253,"y":33.777},{"x":1752032642092,"y":27.54},{"x":1752032581921,"y":31.374},{"x":1752032521751,"y":40.299},{"x":1752032461613,"y":48.008},{"x":1752032401450,"y":49.842},{"x":1752032341295,"y":49.074},{"x":1752032281144,"y":51.444},{"x":1752032220961,"y":38.25},{"x":1752032160786,"y":28.116},{"x":1752032100642,"y":27.782},{"x":1752032040472,"y":29.328},{"x":1752031980279,"y":28.249},{"x":1752031922963,"y":35.0},{"x":1752031862807,"y":26.033},{"x":1752031802629,"y":28.021},{"x":1752031742474,"y":27.25},{"x":1752031682319,"y":29.106},{"x":1752031622158,"y":29.051},{"x":1752031561993,"y":31.342},{"x":1752031501845,"y":26.97},{"x":1752031441695,"y":28.795},{"x":1752031381545,"y":31.389},{"x":1752031321384,"y":37.268},{"x":1752031261230,"y":35.235},{"x":1752031201076,"y":35.926},{"x":1752031140903,"y":34.846},{"x":1752031080727,"y":37.322},{"x":1752031020621,"y":27.831},{"x":1752030960420,"y":28.581},{"x":1752030900265,"y":28.766},{"x":1752030842960,"y":28.315},{"x":1752030782809,"y":26.602},{"x":1752030722668,"y":28.167},{"x":1752030662516,"y":27.607},{"x":1752030602303,"y":30.285},{"x":1752030542136,"y":28.251},{"x":1752030481975,"y":25.083},{"x":1752030421824,"y":27.009},{"x":1752030360544,"y":25.449},{"x":1752030300856,"y":24.167},{"x":1752030242730,"y":29.626},{"x":1752030182520,"y":31.688},{"x":1752030122351,"y":40.841},{"x":1752030062150,"y":50.586},{"x":1752030002165,"y":50.192},{"x":1752029941947,"y":58.649},{"x":1752029881806,"y":48.278},{"x":1752029821659,"y":50.887},{"x":1752029761509,"y":36.884},{"x":1752029701368,"y":46.903},{"x":1752029641224,"y":43.214},{"x":1752029581072,"y":46.27},{"x":1752029520905,"y":33.865},{"x":1752029460760,"y":29.001},{"x":1752029400653,"y":29.652},{"x":1752029340464,"y":27.05},{"x":1752029280348,"y":26.774},{"x":1752029222989,"y":30.191},{"x":1752029162836,"y":28.768},{"x":1752029102686,"y":27.891},{"x":1752029042535,"y":28.859},{"x":1752028982392,"y":30.11},{"x":1752028922247,"y":27.489},{"x":1752028862111,"y":29.029},{"x":1752028801925,"y":29.153},{"x":1752028741774,"y":30.865},{"x":1752028681632,"y":26.735},{"x":1752028621480,"y":27.849},{"x":1752028561338,"y":28.642},{"x":1752028501207,"y":27.999},{"x":1752028441019,"y":31.222},{"x":1752028380867,"y":27.604},{"x":1752028320744,"y":28.012},{"x":1752028260594,"y":31.755},{"x":1752028200580,"y":27.422},{"x":1752028140223,"y":28.029},{"x":1752028082985,"y":34.257},{"x":1752028022842,"y":31.104},{"x":1752027962701,"y":27.919},{"x":1752027902541,"y":30.729},{"x":1752027842381,"y":29.999},{"x":1752027782235,"y":30.272},{"x":1752027722074,"y":29.834},{"x":1752027661924,"y":30.897},{"x":1752027601783,"y":28.416},{"x":1752027541625,"y":25.143},{"x":1752027481430,"y":24.835},{"x":1752027421246,"y":27.488},{"x":1752027361097,"y":27.669},{"x":1752027300939,"y":28.436},{"x":1752027240781,"y":32.26},{"x":1752027180641,"y":27.979},{"x":1752027120554,"y":33.006},{"x":1752027060306,"y":39.592},{"x":1752027002964,"y":37.758},{"x":1752026942817,"y":35.335},{"x":1752026882680,"y":41.852},{"x":1752026822524,"y":44.625},{"x":1752026762355,"y":38.8},{"x":1752026702195,"y":33.696},{"x":1752026642041,"y":38.406},{"x":1752026581896,"y":33.222},{"x":1752026521752,"y":29.226},{"x":1752026461614,"y":30.532},{"x":1752026401454,"y":53.7},{"x":1752026341268,"y":49.751},{"x":1752026281132,"y":49.392},{"x":1752026220946,"y":51.535},{"x":1752026160790,"y":46.65},{"x":1752026100653,"y":29.801},{"x":1752026040476,"y":28.596},{"x":1752025980347,"y":26.47},{"x":1752025920154,"y":31.65},{"x":1752025862902,"y":30.702},{"x":1752025802761,"y":38.343},{"x":1752025742720,"y":44.83},{"x":1752025682512,"y":40.192},{"x":1752025622294,"y":38.86},{"x":1752025562142,"y":42.22},{"x":1752025501974,"y":27.477},{"x":1752025441823,"y":27.523},{"x":1752025381657,"y":30.243},{"x":1752025321514,"y":26.953},{"x":1752025261373,"y":26.774},{"x":1752025201224,"y":25.736},{"x":1752025141059,"y":26.099},{"x":1752025080902,"y":25.883},{"x":1752025020753,"y":41.01},{"x":1752024960621,"y":37.368},{"x":1752024900493,"y":37.254},{"x":1752024840294,"y":38.659},{"x":1752024780219,"y":34.274},{"x":1752024722925,"y":24.023},{"x":1752024662777,"y":23.638},{"x":1752024602621,"y":24.953},{"x":1752024542455,"y":24.721},{"x":1752024482317,"y":29.857},{"x":1752024422174,"y":26.614},{"x":1752024361992,"y":25.546},{"x":1752024301845,"y":31.401},{"x":1752024241713,"y":31.486},{"x":1752024181547,"y":30.632},{"x":1752024121397,"y":32.771},{"x":1752024061255,"y":28.238},{"x":1752024001098,"y":26.979},{"x":1752023940956,"y":25.969},{"x":1752023880747,"y":28.63},{"x":1752023820552,"y":27.836},{"x":1752023760432,"y":48.97},{"x":1752023700307,"y":50.111},{"x":1752023642982,"y":47.733},{"x":1752023582835,"y":50.46},{"x":1752023522685,"y":49.254},{"x":1752023462543,"y":31.348},{"x":1752023402397,"y":29.23},{"x":1752023342255,"y":27.955},{"x":1752023282092,"y":29.846},{"x":1752023221962,"y":27.428},{"x":1752023161774,"y":26.505},{"x":1752023101594,"y":30.234},{"x":1752023041449,"y":28.975},{"x":1752022981301,"y":38.645},{"x":1752022921163,"y":35.437},{"x":1752022860998,"y":35.943},{"x":1752022801040,"y":42.625},{"x":1752022740650,"y":39.214},{"x":1752022680510,"y":46.437},{"x":1752022620431,"y":47.889},{"x":1752022562977,"y":40.806},{"x":1752022502850,"y":35.99},{"x":1752022442682,"y":40.122},{"x":1752022382481,"y":28.778},{"x":1752022322332,"y":28.618},{"x":1752022262182,"y":27.937},{"x":1752022202036,"y":30.996},{"x":1752022141885,"y":33.742},{"x":1752022081743,"y":35.011},{"x":1752022021594,"y":29.471},{"x":1752021961437,"y":26.82},{"x":1752021901283,"y":24.54},{"x":1752021841121,"y":26.401},{"x":1752021780944,"y":26.158},{"x":1752021720798,"y":26.825},{"x":1752021660644,"y":24.867},{"x":1752021600531,"y":33.177},{"x":1752021540335,"y":39.39},{"x":1752021480224,"y":39.916},{"x":1752021422893,"y":52.942},{"x":1752021362748,"y":48.062},{"x":1752021302604,"y":45.958},{"x":1752021242450,"y":34.082},{"x":1752021182302,"y":23.404},{"x":1752021122148,"y":23.896},{"x":1752021061986,"y":25.512},{"x":1752021001845,"y":28.044},{"x":1752020941678,"y":28.473},{"x":1752020881541,"y":35.634},{"x":1752020821398,"y":34.604},{"x":1752020761232,"y":35.361},{"x":1752020701084,"y":35.451},{"x":1752020640924,"y":33.782},{"x":1752020580771,"y":30.13},{"x":1752020520659,"y":26.417},{"x":1752020460481,"y":26.641},{"x":1752020400341,"y":30.527},{"x":1752020342997,"y":34.009},{"x":1752020282802,"y":35.333},{"x":1752020222615,"y":33.899},{"x":1752020162467,"y":39.713},{"x":1752020102317,"y":49.294},{"x":1752020042174,"y":49.135},{"x":1752019981987,"y":48.743},{"x":1752019921806,"y":47.213},{"x":1752019861633,"y":32.985},{"x":1752019801482,"y":25.762},{"x":1752019741323,"y":26.539},{"x":1752019681157,"y":25.833},{"x":1752019621006,"y":28.155},{"x":1752019560854,"y":29.547},{"x":1752019500717,"y":28.916},{"x":1752019440573,"y":29.267},{"x":1752019380472,"y":31.55},{"x":1752019320342,"y":28.833},{"x":1752019262993,"y":27.316},{"x":1752019202847,"y":26.736},{"x":1752019142677,"y":25.462},{"x":1752019082527,"y":34.11},{"x":1752019022374,"y":33.932},{"x":1752018962226,"y":35.889},{"x":1752018902079,"y":34.683},{"x":1752018841902,"y":38.136},{"x":1752018781742,"y":27.534},{"x":1752018721596,"y":28.625},{"x":1752018661441,"y":31.045},{"x":1752018601293,"y":29.568},{"x":1752018541146,"y":27.902},{"x":1752018480992,"y":25.853},{"x":1752018420844,"y":25.732},{"x":1752018360703,"y":29.26},{"x":1752018300593,"y":31.248},{"x":1752018240516,"y":27.95},{"x":1752018180280,"y":28.292},{"x":1752018122972,"y":31.989},{"x":1752018062818,"y":25.69},{"x":1752018002663,"y":24.178},{"x":1752017942510,"y":31.078},{"x":1752017882364,"y":28.078},{"x":1752017822209,"y":31.507},{"x":1752017762049,"y":31.784},{"x":1752017701874,"y":25.02},{"x":1752017641725,"y":25.676},{"x":1752017581568,"y":27.593},{"x":1752017521424,"y":26.482},{"x":1752017461270,"y":36.671},{"x":1752017401106,"y":33.906},{"x":1752017340919,"y":35.139},{"x":1752017280784,"y":30.86},{"x":1752017220634,"y":47.175},{"x":1752017160479,"y":46.566},{"x":1752017100384,"y":51.243},{"x":1752017040069,"y":45.564},{"x":1752016982877,"y":41.805},{"x":1752016922728,"y":28.937},{"x":1752016862581,"y":25.187},{"x":1752016802421,"y":25.891},{"x":1752016742261,"y":29.796},{"x":1752016682079,"y":28.159},{"x":1752016621897,"y":30.729},{"x":1752016561752,"y":51.43},{"x":1752016501608,"y":50.055},{"x":1752016441447,"y":52.483},{"x":1752016381292,"y":49.081},{"x":1752016321145,"y":38.1},{"x":1752016260981,"y":28.879},{"x":1752016200847,"y":29.219},{"x":1752016140689,"y":27.602},{"x":1752016080584,"y":28.471},{"x":1752016020396,"y":27.276},{"x":1752015960288,"y":30.341},{"x":1752015902985,"y":27.922},{"x":1752015842840,"y":29.506},{"x":1752015782698,"y":26.358},{"x":1752015722541,"y":25.883},{"x":1752015662382,"y":31.099},{"x":1752015602253,"y":34.233},{"x":1752015542078,"y":33.601},{"x":1752015481933,"y":38.435},{"x":1752015421764,"y":38.217},{"x":1752015361624,"y":35.679},{"x":1752015301474,"y":27.85},{"x":1752015241316,"y":25.407},{"x":1752015181171,"y":30.742},{"x":1752015121009,"y":29.625},{"x":1752015060847,"y":29.974},{"x":1752015000746,"y":32.117},{"x":1752014940541,"y":28.298},{"x":1752014880414,"y":26.062},{"x":1752014820289,"y":28.105},{"x":1752014762944,"y":29.386},{"x":1752014702774,"y":29.313},{"x":1752014642628,"y":33.564},{"x":1752014582485,"y":30.168},{"x":1752014522351,"y":28.673},{"x":1752014462188,"y":53.639},{"x":1752014402046,"y":49.611},{"x":1752014341883,"y":43.413},{"x":1752014281737,"y":46.624},{"x":1752014221581,"y":37.231},{"x":1752014161432,"y":25.744},{"x":1752014101295,"y":26.502},{"x":1752014041170,"y":27.814},{"x":1752013980987,"y":32.316},{"x":1752013920850,"y":30.803},{"x":1752013860708,"y":50.577},{"x":1752013800605,"y":51.518},{"x":1752013740298,"y":54.354},{"x":1752013683001,"y":53.885},{"x":1752013622847,"y":52.377},{"x":1752013562699,"y":28.474},{"x":1752013502525,"y":31.884},{"x":1752013442398,"y":27.419},{"x":1752013382232,"y":28.038},{"x":1752013322077,"y":31.996},{"x":1752013261922,"y":27.143},{"x":1752013201758,"y":29.857},{"x":1752013141600,"y":28.855},{"x":1752013081394,"y":28.826},{"x":1752013021220,"y":24.163},{"x":1752012961063,"y":27.328},{"x":1752012900903,"y":27.697},{"x":1752012840746,"y":38.551},{"x":1752012780611,"y":41.126},{"x":1752012720484,"y":38.035},{"x":1752012660313,"y":36.253},{"x":1752012600128,"y":36.216},{"x":1752012542883,"y":31.188},{"x":1752012482735,"y":28.223},{"x":1752012422588,"y":32.29},{"x":1752012362441,"y":26.559},{"x":1752012302303,"y":29.268},{"x":1752012242158,"y":31.576},{"x":1752012181995,"y":27.29},{"x":1752012121841,"y":27.052},{"x":1752012061710,"y":31.284},{"x":1752012001587,"y":28.262},{"x":1752011941386,"y":29.849},{"x":1752011881222,"y":36.814},{"x":1752011821068,"y":33.452},{"x":1752011760914,"y":32.363},{"x":1752011700759,"y":33.747},{"x":1752011640598,"y":32.011},{"x":1752011580488,"y":33.449},{"x":1752011520359,"y":32.551},{"x":1752011460040,"y":29.975},{"x":1752011402891,"y":30.928},{"x":1752011342750,"y":29.284},{"x":1752011282591,"y":26.649},{"x":1752011222445,"y":26.677},{"x":1752011162299,"y":28.128},{"x":1752011102144,"y":30.067},{"x":1752011041981,"y":28.634},{"x":1752010981840,"y":29.143},{"x":1752010921714,"y":35.982},{"x":1752010861522,"y":48.527},{"x":1752010801377,"y":46.208},{"x":1752010741229,"y":45.863},{"x":1752010681074,"y":43.736},{"x":1752010620939,"y":43.03},{"x":1752010560769,"y":25.835},{"x":1752010500634,"y":30.227},{"x":1752010440487,"y":29.302},{"x":1752010380281,"y":31.82},{"x":1752010320128,"y":30.484},{"x":1752010262878,"y":27.647},{"x":1752010202613,"y":49.893},{"x":1752010142472,"y":50.105},{"x":1752010082327,"y":50.468},{"x":1752010022173,"y":52.202},{"x":1752009962032,"y":48.995},{"x":1752009901880,"y":25.15},{"x":1752009841734,"y":26.71},{"x":1752009781593,"y":28.544},{"x":1752009721451,"y":31.146},{"x":1752009661289,"y":29.968},{"x":1752009601132,"y":30.678},{"x":1752009540964,"y":37.096},{"x":1752009480818,"y":34.293},{"x":1752009420648,"y":38.604},{"x":1752009360537,"y":41.217},{"x":1752009300392,"y":40.789},{"x":1752009240078,"y":29.766},{"x":1752009182917,"y":30.621},{"x":1752009122764,"y":29.999},{"x":1752009062616,"y":30.955},{"x":1752009002455,"y":30.298},{"x":1752008942300,"y":30.869},{"x":1752008882149,"y":30.59},{"x":1752008821986,"y":30.571},{"x":1752008761839,"y":33.347},{"x":1752008701671,"y":30.196},{"x":1752008641526,"y":29.975},{"x":1752008581375,"y":29.935},{"x":1752008521219,"y":27.594},{"x":1752008461063,"y":26.494},{"x":1752008401167,"y":40.286},{"x":1752008340727,"y":41.809},{"x":1752008280575,"y":38.703},{"x":1752008220510,"y":40.61},{"x":1752008160194,"y":44.658},{"x":1752008102903,"y":30.352},{"x":1752008042762,"y":34.982},{"x":1752007982608,"y":31.633},{"x":1752007922448,"y":28.578},{"x":1752007862298,"y":27.807},{"x":1752007802093,"y":28.968},{"x":1752007741921,"y":29.075},{"x":1752007681764,"y":28.145},{"x":1752007621619,"y":29.718},{"x":1752007561459,"y":29.583},{"x":1752007501294,"y":29.799},{"x":1752007441115,"y":31.576},{"x":1752007380958,"y":32.912},{"x":1752007320815,"y":32.279},{"x":1752007260666,"y":31.242},{"x":1752007200623,"y":50.572},{"x":1752007140335,"y":49.458},{"x":1752007080162,"y":46.72},{"x":1752007022918,"y":45.204},{"x":1752006962773,"y":50.796},{"x":1752006902626,"y":32.601},{"x":1752006842479,"y":40.86},{"x":1752006782354,"y":36.937},{"x":1752006722179,"y":34.771},{"x":1752006662016,"y":34.173},{"x":1752006601808,"y":32.179},{"x":1752006541618,"y":53.121},{"x":1752006481511,"y":52.176},{"x":1752006421321,"y":49.584},{"x":1752006361175,"y":52.93},{"x":1752006301015,"y":47.21},{"x":1752006240857,"y":29.39},{"x":1752006180715,"y":28.959},{"x":1752006120572,"y":29.238},{"x":1752006060477,"y":35.517},{"x":1752006000320,"y":30.448},{"x":1752005943003,"y":32.539},{"x":1752005882859,"y":45.202},{"x":1752005822652,"y":35.18},{"x":1752005762509,"y":43.484},{"x":1752005702333,"y":39.144},{"x":1752005642189,"y":36.663},{"x":1752005582035,"y":33.598},{"x":1752005521876,"y":43.736},{"x":1752005461741,"y":38.43},{"x":1752005401501,"y":33.942},{"x":1752005341355,"y":28.768},{"x":1752005281189,"y":45.832},{"x":1752005221023,"y":32.289},{"x":1752005160872,"y":32.173},{"x":1752005100733,"y":33.617},{"x":1752005040580,"y":48.925},{"x":1752004980431,"y":38.913},{"x":1752004920244,"y":44.826},{"x":1752004862968,"y":33.663},{"x":1752004802830,"y":31.871},{"x":1752004742681,"y":38.515},{"x":1752004682526,"y":59.324},{"x":1752004622381,"y":40.069},{"x":1752004562245,"y":44.238},{"x":1752004502075,"y":47.611},{"x":1752004441921,"y":42.144},{"x":1752004381776,"y":45.006},{"x":1752004321638,"y":54.378},{"x":1752004261495,"y":40.757},{"x":1752004201334,"y":54.677},{"x":1752004141183,"y":49.641},{"x":1752004081026,"y":49.556},{"x":1752004020864,"y":48.083},{"x":1752003960715,"y":51.947},{"x":1752003900778,"y":34.97},{"x":1752003840421,"y":34.598},{"x":1752003780283,"y":34.706},{"x":1752003722925,"y":40.85},{"x":1752003662786,"y":38.563},{"x":1752003602622,"y":46.579},{"x":1752003542460,"y":52.839},{"x":1752003482313,"y":52.746},{"x":1752003422171,"y":54.539},{"x":1752003362025,"y":60.381},{"x":1752003301868,"y":37.847},{"x":1752003241725,"y":45.662},{"x":1752003181572,"y":43.903},{"x":1752003121421,"y":64.586},{"x":1752003061273,"y":58.598},{"x":1752003001124,"y":59.627},{"x":1752002940943,"y":50.921},{"x":1752002880799,"y":48.557},{"x":1752002820653,"y":49.955},{"x":1752002760552,"y":44.454},{"x":1752002700544,"y":37.849},{"x":1752002640190,"y":36.875},{"x":1752002582935,"y":36.82},{"x":1752002522759,"y":45.096},{"x":1752002462605,"y":39.743},{"x":1752002402455,"y":34.875},{"x":1752002342334,"y":35.509},{"x":1752002282102,"y":36.126},{"x":1752002221881,"y":34.168},{"x":1752002161722,"y":25.714},{"x":1752002101564,"y":39.743},{"x":1752002041417,"y":38.975},{"x":1752001981275,"y":38.943},{"x":1752001921121,"y":43.71},{"x":1752001860943,"y":39.902},{"x":1752001800785,"y":37.213},{"x":1752001740636,"y":37.925},{"x":1752001680500,"y":38.921},{"x":1752001620307,"y":31.066},{"x":1752001562970,"y":32.885},{"x":1752001502809,"y":32.375},{"x":1752001442660,"y":36.82},{"x":1752001382520,"y":43.986},{"x":1752001322367,"y":50.806},{"x":1752001262219,"y":42.11},{"x":1752001202083,"y":46.568},{"x":1752001141852,"y":39.199},{"x":1752001081711,"y":30.72},{"x":1752001021544,"y":26.684},{"x":1752000961390,"y":31.307},{"x":1752000901252,"y":27.236},{"x":1752000841073,"y":39.158},{"x":1752000780903,"y":39.998},{"x":1752000720777,"y":51.792},{"x":1752000660608,"y":40.558},{"x":1752000600549,"y":33.435},{"x":1752000540425,"y":34.207},{"x":1752000483006,"y":41.123},{"x":1752000422859,"y":35.086},{"x":1752000362704,"y":30.462},{"x":1752000302546,"y":42.044},{"x":1752000242389,"y":33.339},{"x":1752000182237,"y":34.598},{"x":1752000122086,"y":43.546},{"x":1752000061926,"y":34.664},{"x":1752000001799,"y":33.658},{"x":1751999941644,"y":32.676},{"x":1751999881474,"y":32.517},{"x":1751999821319,"y":30.641},{"x":1751999761164,"y":37.913},{"x":1751999700998,"y":34.057},{"x":1751999640849,"y":27.589},{"x":1751999580700,"y":38.229},{"x":1751999520603,"y":36.437},{"x":1751999460416,"y":27.893},{"x":1751999400033,"y":32.417},{"x":1751999342833,"y":42.228},{"x":1751999282679,"y":32.628},{"x":1751999222530,"y":32.101},{"x":1751999162377,"y":36.891},{"x":1751999102234,"y":38.935},{"x":1751999042044,"y":39.618},{"x":1751998981891,"y":45.373},{"x":1751998921740,"y":49.841},{"x":1751998861562,"y":51.802},{"x":1751998801412,"y":50.437},{"x":1751998741253,"y":39.424},{"x":1751998681097,"y":42.277},{"x":1751998620850,"y":48.048},{"x":1751998560701,"y":31.607},{"x":1751998500601,"y":31.826},{"x":1751998440359,"y":35.711},{"x":1751998380078,"y":42.779},{"x":1751998322857,"y":33.108},{"x":1751998262702,"y":36.578},{"x":1751998202550,"y":49.937},{"x":1751998142389,"y":50.241},{"x":1751998082234,"y":38.556},{"x":1751998022080,"y":43.404},{"x":1751997961916,"y":43.721},{"x":1751997901771,"y":45.405},{"x":1751997841617,"y":41.905},{"x":1751997781468,"y":58.356},{"x":1751997721321,"y":52.022},{"x":1751997661160,"y":41.375},{"x":1751997601032,"y":45.335},{"x":1751997540810,"y":44.102},{"x":1751997480666,"y":38.842},{"x":1751997420546,"y":40.583},{"x":1751997360409,"y":41.861},{"x":1751997300268,"y":30.112},{"x":1751997242953,"y":41.197},{"x":1751997182804,"y":36.555},{"x":1751997122653,"y":31.133},{"x":1751997062489,"y":32.412},{"x":1751997002327,"y":29.116},{"x":1751996942169,"y":30.035},{"x":1751996882022,"y":32.332},{"x":1751996821860,"y":31.119},{"x":1751996761711,"y":28.714},{"x":1751996701550,"y":34.86},{"x":1751996641399,"y":38.401},{"x":1751996581250,"y":35.591},{"x":1751996521090,"y":33.509},{"x":1751996460914,"y":27.659},{"x":1751996400817,"y":35.847},{"x":1751996340587,"y":34.731},{"x":1751996280416,"y":29.205},{"x":1751996220282,"y":31.796},{"x":1751996162957,"y":27.453},{"x":1751996102806,"y":26.45},{"x":1751996042612,"y":24.448},{"x":1751995982462,"y":23.204},{"x":1751995922325,"y":23.104},{"x":1751995862165,"y":27.647},{"x":1751995801989,"y":30.651},{"x":1751995741831,"y":26.832},{"x":1751995681676,"y":27.952},{"x":1751995621521,"y":30.238},{"x":1751995561368,"y":31.845},{"x":1751995501217,"y":28.164},{"x":1751995441058,"y":30.611},{"x":1751995380898,"y":27.344},{"x":1751995320747,"y":29.296},{"x":1751995260638,"y":29.443},{"x":1751995200452,"y":35.392},{"x":1751995140206,"y":35.564},{"x":1751995082957,"y":36.96},{"x":1751995022740,"y":43.301},{"x":1751994962578,"y":45.141},{"x":1751994902431,"y":65.754},{"x":1751994842279,"y":51.309},{"x":1751994782127,"y":62.066},{"x":1751994721973,"y":34.78},{"x":1751994661824,"y":29.023},{"x":1751994601675,"y":30.178},{"x":1751994541526,"y":30.063},{"x":1751994481374,"y":31.775},{"x":1751994421231,"y":31.995},{"x":1751994361072,"y":31.06},{"x":1751994300907,"y":27.434},{"x":1751994240747,"y":31.014},{"x":1751994180602,"y":26.499},{"x":1751994120426,"y":20.624},{"x":1751994060272,"y":18.951},{"x":1751994002992,"y":23.887},{"x":1751993942813,"y":29.143},{"x":1751993882672,"y":32.582},{"x":1751993822512,"y":38.19},{"x":1751993762368,"y":33.986},{"x":1751993702208,"y":34.125},{"x":1751993642054,"y":34.423},{"x":1751993581899,"y":44.607},{"x":1751993521756,"y":23.351},{"x":1751993461594,"y":21.793},{"x":1751993401447,"y":21.06},{"x":1751993341270,"y":27.819},{"x":1751993281118,"y":25.11},{"x":1751993220946,"y":35.254},{"x":1751993160805,"y":32.094},{"x":1751993100722,"y":42.236},{"x":1751993040483,"y":34.308},{"x":1751992980460,"y":47.245},{"x":1751992922988,"y":28.394},{"x":1751992862838,"y":26.129},{"x":1751992802688,"y":22.775},{"x":1751992742534,"y":19.03},{"x":1751992682385,"y":21.473},{"x":1751992622234,"y":21.081},{"x":1751992562085,"y":24.55},{"x":1751992501899,"y":19.192},{"x":1751992441749,"y":17.48},{"x":1751992381603,"y":18.645},{"x":1751992321455,"y":27.121},{"x":1751992261298,"y":25.737},{"x":1751992201153,"y":38.611},{"x":1751992140934,"y":41.741},{"x":1751992080787,"y":23.334},{"x":1751992020640,"y":25.826},{"x":1751991960468,"y":28.36},{"x":1751991900328,"y":10.635},{"x":1751991843020,"y":15.877},{"x":1751991782880,"y":9.439},{"x":1751991722727,"y":21.076},{"x":1751991662596,"y":31.011},{"x":1751991602433,"y":12.597},{"x":1751991542266,"y":24.437},{"x":1751991482123,"y":48.475},{"x":1751991421891,"y":35.202},{"x":1751991361713,"y":23.021},{"x":1751991301561,"y":41.157},{"x":1751991241406,"y":34.75},{"x":1751991181259,"y":27.637},{"x":1751991121105,"y":32.708},{"x":1751991060943,"y":32.31},{"x":1751991000806,"y":28.789},{"x":1751990940604,"y":44.683},{"x":1751990880477,"y":38.196},{"x":1751990820244,"y":45.839},{"x":1751990762987,"y":43.571},{"x":1751990702812,"y":47.834},{"x":1751990642689,"y":37.36},{"x":1751990582489,"y":30.534},{"x":1751990522339,"y":44.172},{"x":1751990462192,"y":63.576},{"x":1751990402124,"y":47.919},{"x":1751990341842,"y":58.674},{"x":1751990281689,"y":47.063},{"x":1751990221537,"y":57.264},{"x":1751990161376,"y":31.148},{"x":1751990101220,"y":39.883},{"x":1751990041046,"y":35.405},{"x":1751989980870,"y":35.641},{"x":1751989920721,"y":27.778},{"x":1751989860607,"y":37.234},{"x":1751989800484,"y":32.446},{"x":1751989740260,"y":39.933},{"x":1751989682929,"y":42.458},{"x":1751989622780,"y":38.537},{"x":1751989562633,"y":36.678},{"x":1751989502463,"y":32.611},{"x":1751989442308,"y":39.293},{"x":1751989382160,"y":40.983},{"x":1751989321998,"y":32.107},{"x":1751989261828,"y":30.842},{"x":1751989201681,"y":40.597},{"x":1751989141522,"y":36.156},{"x":1751989081377,"y":43.076},{"x":1751989021220,"y":37.728},{"x":1751988961054,"y":48.034},{"x":1751988900899,"y":36.445},{"x":1751988840748,"y":43.777},{"x":1751988780617,"y":49.419},{"x":1751988720434,"y":47.267},{"x":1751988660255,"y":38.802},{"x":1751988602997,"y":43.881},{"x":1751988542844,"y":41.445},{"x":1751988482682,"y":33.671},{"x":1751988422541,"y":30.43},{"x":1751988362384,"y":33.385},{"x":1751988302228,"y":38.637},{"x":1751988242076,"y":36.337},{"x":1751988181909,"y":36.901},{"x":1751988121764,"y":57.838},{"x":1751988061624,"y":49.108},{"x":1751988001475,"y":46.087},{"x":1751987941296,"y":42.073},{"x":1751987881107,"y":40.374},{"x":1751987820903,"y":49.527},{"x":1751987760756,"y":59.985},{"x":1751987700693,"y":47.017},{"x":1751987640417,"y":44.566},{"x":1751987580190,"y":40.925},{"x":1751987522933,"y":71.384},{"x":1751987462776,"y":52.534},{"x":1751987402604,"y":59.427},{"x":1751987342436,"y":53.861},{"x":1751987282289,"y":59.317},{"x":1751987222129,"y":52.435},{"x":1751987161968,"y":75.629},{"x":1751987101807,"y":58.008},{"x":1751987041660,"y":57.657},{"x":1751986981503,"y":54.249},{"x":1751986921342,"y":64.222},{"x":1751986861201,"y":43.524},{"x":1751986801181,"y":42.248},{"x":1751986740736,"y":42.459},{"x":1751986680604,"y":36.686},{"x":1751986620568,"y":42.476},{"x":1751986560369,"y":41.907},{"x":1751986503031,"y":42.168},{"x":1751986442861,"y":40.29},{"x":1751986382715,"y":26.08},{"x":1751986322562,"y":25.759},{"x":1751986262413,"y":32.821},{"x":1751986202269,"y":40.893},{"x":1751986142115,"y":33.256},{"x":1751986081958,"y":34.064},{"x":1751986021804,"y":35.958},{"x":1751985961626,"y":29.346},{"x":1751985901482,"y":24.864},{"x":1751985841314,"y":27.415},{"x":1751985781162,"y":32.407},{"x":1751985720984,"y":30.35},{"x":1751985660832,"y":34.024},{"x":1751985600749,"y":45.544},{"x":1751985540488,"y":34.043},{"x":1751985480303,"y":34.499},{"x":1751985420052,"y":33.634},{"x":1751985362875,"y":29.095},{"x":1751985302730,"y":30.188},{"x":1751985242565,"y":43.268},{"x":1751985182407,"y":39.013},{"x":1751985122265,"y":35.401},{"x":1751985062104,"y":47.908},{"x":1751985001948,"y":31.78},{"x":1751984941785,"y":31.759},{"x":1751984881630,"y":46.674},{"x":1751984821478,"y":43.131},{"x":1751984761321,"y":63.328},{"x":1751984701149,"y":62.293},{"x":1751984640976,"y":61.095},{"x":1751984580811,"y":61.17},{"x":1751984520673,"y":39.229},{"x":1751984460582,"y":59.767},{"x":1751984400370,"y":46.67},{"x":1751984340185,"y":42.584},{"x":1751984282900,"y":46.457},{"x":1751984222706,"y":40.61},{"x":1751984162547,"y":34.097},{"x":1751984102395,"y":36.67},{"x":1751984042232,"y":34.205},{"x":1751983982087,"y":46.243},{"x":1751983921927,"y":41.691},{"x":1751983861774,"y":41.621},{"x":1751983801635,"y":39.601},{"x":1751983741476,"y":28.464},{"x":1751983681374,"y":31.327},{"x":1751983621182,"y":36.654},{"x":1751983560993,"y":36.138},{"x":1751983500824,"y":35.446},{"x":1751983440664,"y":45.136},{"x":1751983380539,"y":38.562},{"x":1751983320364,"y":45.971},{"x":1751983260259,"y":44.254},{"x":1751983202891,"y":44.72},{"x":1751983142714,"y":28.834},{"x":1751983082563,"y":26.269},{"x":1751983022420,"y":31.698},{"x":1751982962271,"y":41.787},{"x":1751982902117,"y":38.496},{"x":1751982841973,"y":38.658},{"x":1751982781802,"y":41.948},{"x":1751982721657,"y":31.506},{"x":1751982661517,"y":31.047},{"x":1751982601393,"y":26.126},{"x":1751982541214,"y":28.939},{"x":1751982481028,"y":32.527},{"x":1751982420872,"y":29.716},{"x":1751982360735,"y":20.575},{"x":1751982300679,"y":37.122},{"x":1751982240450,"y":39.6},{"x":1751982180298,"y":31.509},{"x":1751982122974,"y":20.686},{"x":1751982062818,"y":21.359},{"x":1751982002678,"y":24.988},{"x":1751981942527,"y":22.647},{"x":1751981882382,"y":24.992},{"x":1751981822222,"y":26.186},{"x":1751981762070,"y":17.453},{"x":1751981701909,"y":20.473},{"x":1751981641766,"y":25.035},{"x":1751981581622,"y":29.519},{"x":1751981521471,"y":42.677},{"x":1751981461315,"y":25.476},{"x":1751981401198,"y":31.719},{"x":1751981340972,"y":35.55},{"x":1751981280826,"y":37.548},{"x":1751981220729,"y":41.252},{"x":1751981160525,"y":22.018},{"x":1751981100461,"y":26.802},{"x":1751981040306,"y":21.239},{"x":1751980982938,"y":19.694},{"x":1751980922775,"y":30.485},{"x":1751980862628,"y":30.336},{"x":1751980802465,"y":40.43},{"x":1751980742309,"y":37.911},{"x":1751980682150,"y":31.646},{"x":1751980621919,"y":36.02},{"x":1751980561771,"y":27.783},{"x":1751980501633,"y":40.279},{"x":1751980441480,"y":34.947},{"x":1751980381305,"y":23.02},{"x":1751980321136,"y":22.234},{"x":1751980260957,"y":42.234},{"x":1751980200830,"y":29.206},{"x":1751980140646,"y":27.163},{"x":1751980080528,"y":27.129},{"x":1751980020451,"y":22.473},{"x":1751979960143,"y":27.04},{"x":1751979902877,"y":20.316},{"x":1751979842724,"y":29.254},{"x":1751979782587,"y":21.311},{"x":1751979722426,"y":15.767},{"x":1751979662283,"y":17.678},{"x":1751979602184,"y":24.708},{"x":1751979541926,"y":23.774},{"x":1751979481783,"y":25.328},{"x":1751979421632,"y":16.522},{"x":1751979361469,"y":18.202},{"x":1751979301307,"y":23.714},{"x":1751979241174,"y":21.275},{"x":1751979180968,"y":23.172},{"x":1751979120822,"y":22.412},{"x":1751979060661,"y":23.859},{"x":1751979000577,"y":31.039},{"x":1751978940378,"y":19.826},{"x":1751978880061,"y":32.436},{"x":1751978822883,"y":30.359},{"x":1751978762738,"y":21.382},{"x":1751978702622,"y":21.369},{"x":1751978642434,"y":36.021},{"x":1751978582278,"y":18.952},{"x":1751978522131,"y":18.287},{"x":1751978461952,"y":19.657},{"x":1751978401799,"y":24.53},{"x":1751978341645,"y":32.489},{"x":1751978281483,"y":49.667},{"x":1751978221332,"y":56.07},{"x":1751978161187,"y":59.828},{"x":1751978101027,"y":57.175},{"x":1751978040873,"y":30.055},{"x":1751977980730,"y":29.808},{"x":1751977920631,"y":24.566},{"x":1751977860448,"y":22.328},{"x":1751977800251,"y":31.508},{"x":1751977742931,"y":25.44},{"x":1751977682771,"y":26.328},{"x":1751977622620,"y":37.047},{"x":1751977562472,"y":42.176},{"x":1751977502321,"y":42.523},{"x":1751977442169,"y":39.926},{"x":1751977382018,"y":45.007},{"x":1751977321852,"y":36.025},{"x":1751977261706,"y":61.187},{"x":1751977201553,"y":46.396},{"x":1751977141378,"y":42.747},{"x":1751977081164,"y":26.599},{"x":1751977020928,"y":45.563},{"x":1751976960765,"y":35.239},{"x":1751976900671,"y":37.795},{"x":1751976840478,"y":34.51},{"x":1751976780263,"y":36.732},{"x":1751976723011,"y":47.287},{"x":1751976662863,"y":42.503},{"x":1751976602708,"y":51.912},{"x":1751976542565,"y":42.079},{"x":1751976482416,"y":38.384},{"x":1751976422284,"y":32.627},{"x":1751976362121,"y":60.139},{"x":1751976301946,"y":34.039},{"x":1751976241803,"y":45.775},{"x":1751976181654,"y":38.911},{"x":1751976121508,"y":40.035},{"x":1751976061347,"y":35.08},{"x":1751976001439,"y":34.87},{"x":1751975940841,"y":23.408},{"x":1751975880690,"y":25.478},{"x":1751975820587,"y":28.882},{"x":1751975760377,"y":30.754},{"x":1751975700163,"y":36.721},{"x":1751975642895,"y":37.329},{"x":1751975582740,"y":31.0},{"x":1751975522580,"y":22.766},{"x":1751975462422,"y":25.582},{"x":1751975402272,"y":21.264},{"x":1751975342092,"y":17.146},{"x":1751975281936,"y":18.736},{"x":1751975221773,"y":51.027},{"x":1751975161624,"y":35.43},{"x":1751975101487,"y":42.706},{"x":1751975041309,"y":33.897},{"x":1751974981161,"y":24.618},{"x":1751974920992,"y":22.563},{"x":1751974860847,"y":19.882},{"x":1751974800628,"y":20.391},{"x":1751974740459,"y":19.158},{"x":1751974680317,"y":41.267},{"x":1751974622991,"y":35.402},{"x":1751974562838,"y":36.251},{"x":1751974502692,"y":45.143},{"x":1751974442529,"y":37.863},{"x":1751974382382,"y":26.563},{"x":1751974322234,"y":41.009},{"x":1751974262073,"y":38.902},{"x":1751974201917,"y":29.192},{"x":1751974141747,"y":30.719},{"x":1751974081603,"y":41.915},{"x":1751974021453,"y":46.869},{"x":1751973961287,"y":43.894},{"x":1751973901137,"y":46.998},{"x":1751973840960,"y":51.695},{"x":1751973780788,"y":40.847},{"x":1751973720642,"y":42.789},{"x":1751973660474,"y":24.853},{"x":1751973600591,"y":39.639},{"x":1751973543018,"y":36.066},{"x":1751973482895,"y":26.291},{"x":1751973422655,"y":22.149},{"x":1751973362504,"y":15.437},{"x":1751973302353,"y":13.676},{"x":1751973242201,"y":19.112},{"x":1751973182076,"y":28.549},{"x":1751973121876,"y":27.276},{"x":1751973061731,"y":24.482},{"x":1751973001581,"y":28.563},{"x":1751972941399,"y":29.1},{"x":1751972881266,"y":37.001},{"x":1751972821089,"y":36.723},{"x":1751972760945,"y":38.342},{"x":1751972700822,"y":36.572},{"x":1751972640674,"y":36.974},{"x":1751972580513,"y":43.016},{"x":1751972520366,"y":44.893},{"x":1751972462989,"y":46.426},{"x":1751972402873,"y":42.966},{"x":1751972342707,"y":38.846},{"x":1751972282526,"y":19.174},{"x":1751972222372,"y":25.968},{"x":1751972162222,"y":19.179},{"x":1751972102062,"y":16.618},{"x":1751972041895,"y":12.306},{"x":1751971981751,"y":13.588},{"x":1751971921601,"y":30.123},{"x":1751971861441,"y":34.321},{"x":1751971801327,"y":31.12},{"x":1751971741131,"y":36.575},{"x":1751971680967,"y":33.925},{"x":1751971620813,"y":45.197},{"x":1751971560662,"y":47.497},{"x":1751971500592,"y":44.15},{"x":1751971440364,"y":47.283},{"x":1751971380087,"y":34.995},{"x":1751971322885,"y":37.469},{"x":1751971262762,"y":36.11},{"x":1751971202589,"y":27.302},{"x":1751971142430,"y":28.772},{"x":1751971082288,"y":35.433},{"x":1751971022130,"y":43.264},{"x":1751970961958,"y":26.007},{"x":1751970901812,"y":17.673},{"x":1751970841643,"y":23.776},{"x":1751970781493,"y":18.225},{"x":1751970721349,"y":15.695},{"x":1751970661189,"y":36.756},{"x":1751970601092,"y":47.252},{"x":1751970540862,"y":40.581},{"x":1751970480730,"y":40.076},{"x":1751970420565,"y":25.99},{"x":1751970360480,"y":15.694},{"x":1751970300352,"y":21.793},{"x":1751970242969,"y":27.239},{"x":1751970182816,"y":21.718},{"x":1751970122673,"y":28.601},{"x":1751970062511,"y":27.106},{"x":1751970002346,"y":33.964},{"x":1751969942212,"y":34.028},{"x":1751969882010,"y":31.222},{"x":1751969821809,"y":34.927},{"x":1751969761667,"y":41.697},{"x":1751969701503,"y":36.877},{"x":1751969641352,"y":46.523},{"x":1751969581200,"y":45.574},{"x":1751969521024,"y":53.3},{"x":1751969460873,"y":55.091},{"x":1751969400725,"y":49.724},{"x":1751969340587,"y":37.481},{"x":1751969280409,"y":38.989},{"x":1751969220228,"y":36.822},{"x":1751969162914,"y":29.894},{"x":1751969102765,"y":20.994},{"x":1751969042620,"y":25.683},{"x":1751968982479,"y":19.993},{"x":1751968922331,"y":14.798},{"x":1751968862191,"y":32.015},{"x":1751968802138,"y":28.642},{"x":1751968741830,"y":32.662},{"x":1751968681677,"y":30.237},{"x":1751968621624,"y":41.004},{"x":1751968561420,"y":44.738},{"x":1751968501232,"y":28.608},{"x":1751968441038,"y":41.998},{"x":1751968380885,"y":37.093},{"x":1751968320854,"y":34.001},{"x":1751968260600,"y":41.838},{"x":1751968200504,"y":42.488},{"x":1751968140328,"y":38.007},{"x":1751968082998,"y":28.366},{"x":1751968022850,"y":37.004},{"x":1751967962692,"y":21.225},{"x":1751967902542,"y":26.539},{"x":1751967842397,"y":24.917},{"x":1751967782225,"y":27.759},{"x":1751967722079,"y":27.702},{"x":1751967661936,"y":39.431},{"x":1751967601753,"y":35.554},{"x":1751967541593,"y":30.798},{"x":1751967481451,"y":25.373},{"x":1751967421296,"y":30.905},{"x":1751967361142,"y":30.187},{"x":1751967300976,"y":27.42},{"x":1751967240824,"y":22.948},{"x":1751967180666,"y":24.162},{"x":1751967120677,"y":28.627},{"x":1751967060416,"y":46.755},{"x":1751967000366,"y":41.32},{"x":1751966942940,"y":45.314},{"x":1751966882778,"y":44.549},{"x":1751966822628,"y":31.019},{"x":1751966762487,"y":26.928},{"x":1751966702340,"y":23.012},{"x":1751966642178,"y":21.875},{"x":1751966582023,"y":16.406},{"x":1751966521856,"y":21.931},{"x":1751966461697,"y":25.894},{"x":1751966401536,"y":31.963},{"x":1751966341400,"y":49.995},{"x":1751966281177,"y":40.402},{"x":1751966220950,"y":65.846},{"x":1751966160788,"y":42.47},{"x":1751966100666,"y":41.557},{"x":1751966040466,"y":30.179},{"x":1751965980343,"y":32.791},{"x":1751965920048,"y":29.608},{"x":1751965862885,"y":22.024},{"x":1751965802730,"y":26.133},{"x":1751965742579,"y":27.529},{"x":1751965682418,"y":32.754},{"x":1751965622279,"y":25.013},{"x":1751965562131,"y":36.113},{"x":1751965502010,"y":49.751},{"x":1751965441822,"y":46.38},{"x":1751965381657,"y":48.602},{"x":1751965321512,"y":42.177},{"x":1751965261366,"y":41.401},{"x":1751965201469,"y":44.226},{"x":1751965140894,"y":19.229},{"x":1751965080733,"y":21.511},{"x":1751965020604,"y":28.414},{"x":1751964960486,"y":31.706},{"x":1751964900269,"y":22.737},{"x":1751964842981,"y":32.733},{"x":1751964782828,"y":28.705},{"x":1751964722668,"y":28.296},{"x":1751964662499,"y":29.116},{"x":1751964602353,"y":23.025},{"x":1751964542196,"y":26.164},{"x":1751964482035,"y":24.207},{"x":1751964421884,"y":34.567},{"x":1751964361722,"y":31.378},{"x":1751964301587,"y":37.128},{"x":1751964241414,"y":28.673},{"x":1751964181230,"y":26.656},{"x":1751964121099,"y":35.058},{"x":1751964060899,"y":27.417},{"x":1751964000769,"y":24.089},{"x":1751963940610,"y":27.785},{"x":1751963880598,"y":46.882},{"x":1751963820266,"y":41.226},{"x":1751963762926,"y":39.126},{"x":1751963702747,"y":58.721},{"x":1751963642595,"y":48.361},{"x":1751963582444,"y":47.554},{"x":1751963522297,"y":40.311},{"x":1751963462136,"y":30.464},{"x":1751963401958,"y":30.813},{"x":1751963341818,"y":38.825},{"x":1751963281647,"y":25.798},{"x":1751963221480,"y":27.066},{"x":1751963161319,"y":38.024},{"x":1751963101143,"y":33.216},{"x":1751963040937,"y":29.75},{"x":1751962980784,"y":33.513},{"x":1751962920642,"y":20.888},{"x":1751962860521,"y":24.434},{"x":1751962800255,"y":28.788},{"x":1751962743023,"y":29.929},{"x":1751962682886,"y":27.009},{"x":1751962622661,"y":39.201},{"x":1751962562496,"y":41.697},{"x":1751962502339,"y":29.01},{"x":1751962442193,"y":30.308},{"x":1751962382021,"y":36.015},{"x":1751962321867,"y":38.373},{"x":1751962261728,"y":54.404},{"x":1751962201574,"y":38.906},{"x":1751962141418,"y":42.853},{"x":1751962081274,"y":36.706},{"x":1751962021093,"y":63.578},{"x":1751961960931,"y":43.233},{"x":1751961900800,"y":33.458},{"x":1751961840699,"y":24.35},{"x":1751961780475,"y":27.866},{"x":1751961720366,"y":26.165},{"x":1751961662948,"y":25.575},{"x":1751961602795,"y":24.322},{"x":1751961542619,"y":30.471},{"x":1751961482456,"y":33.706},{"x":1751961422303,"y":38.18},{"x":1751961362142,"y":43.55},{"x":1751961301992,"y":42.648},{"x":1751961241822,"y":42.114},{"x":1751961181672,"y":37.062},{"x":1751961121519,"y":31.39},{"x":1751961061374,"y":32.856},{"x":1751961001214,"y":38.753},{"x":1751960941026,"y":37.673},{"x":1751960880877,"y":31.108},{"x":1751960820733,"y":34.237},{"x":1751960760629,"y":36.796},{"x":1751960700528,"y":28.471},{"x":1751960640171,"y":38.16},{"x":1751960582963,"y":63.038},{"x":1751960522825,"y":67.791},{"x":1751960462653,"y":61.927},{"x":1751960402507,"y":54.4},{"x":1751960342364,"y":70.379},{"x":1751960282225,"y":48.147},{"x":1751960222072,"y":32.746},{"x":1751960161887,"y":49.373},{"x":1751960101742,"y":35.441},{"x":1751960041589,"y":37.219},{"x":1751959981445,"y":38.069},{"x":1751959921297,"y":41.934},{"x":1751959861127,"y":35.446},{"x":1751959800941,"y":37.182},{"x":1751959740769,"y":32.583},{"x":1751959680650,"y":35.014},{"x":1751959620496,"y":32.63},{"x":1751959560353,"y":34.964},{"x":1751959500131,"y":34.266},{"x":1751959442816,"y":31.869},{"x":1751959382666,"y":35.552},{"x":1751959322515,"y":45.491},{"x":1751959262369,"y":49.863},{"x":1751959202216,"y":45.001},{"x":1751959142072,"y":51.894},{"x":1751959081908,"y":44.628},{"x":1751959021696,"y":36.344},{"x":1751958961473,"y":27.638},{"x":1751958901286,"y":25.582},{"x":1751958841113,"y":22.615},{"x":1751958780927,"y":21.159},{"x":1751958720784,"y":33.12},{"x":1751958660620,"y":31.287},{"x":1751958600508,"y":31.075},{"x":1751958540241,"y":38.429},{"x":1751958482932,"y":39.423},{"x":1751958422768,"y":41.016},{"x":1751958362628,"y":38.844},{"x":1751958302463,"y":40.593},{"x":1751958242308,"y":38.713},{"x":1751958182150,"y":39.225},{"x":1751958121960,"y":43.581},{"x":1751958061834,"y":42.427},{"x":1751958001714,"y":43.947},{"x":1751957941468,"y":42.188},{"x":1751957881314,"y":40.272},{"x":1751957821161,"y":31.873},{"x":1751957760976,"y":34.223},{"x":1751957700829,"y":46.26},{"x":1751957640669,"y":40.394},{"x":1751957580520,"y":37.108},{"x":1751957520316,"y":34.916},{"x":1751957462984,"y":40.165},{"x":1751957402824,"y":37.329},{"x":1751957342676,"y":35.242},{"x":1751957282525,"y":47.412},{"x":1751957222368,"y":40.819},{"x":1751957162227,"y":37.52},{"x":1751957102057,"y":36.238},{"x":1751957041878,"y":37.666},{"x":1751956981724,"y":28.91},{"x":1751956921576,"y":30.704},{"x":1751956861453,"y":35.333},{"x":1751956801295,"y":33.578},{"x":1751956741102,"y":34.437},{"x":1751956680940,"y":40.74},{"x":1751956620751,"y":35.726},{"x":1751956560793,"y":36.28},{"x":1751956500839,"y":36.835},{"x":1751956440655,"y":38.066},{"x":1751956382957,"y":35.833},{"x":1751956322815,"y":35.808},{"x":1751956262653,"y":34.834},{"x":1751956202393,"y":36.697},{"x":1751956142224,"y":36.184},{"x":1751956082078,"y":44.309},{"x":1751956021917,"y":47.839},{"x":1751955961766,"y":57.697},{"x":1751955901622,"y":63.733},{"x":1751955841460,"y":54.567},{"x":1751955781315,"y":41.417},{"x":1751955721157,"y":37.204},{"x":1751955660959,"y":32.023},{"x":1751955600928,"y":48.862},{"x":1751955540624,"y":32.051},{"x":1751955480492,"y":48.747},{"x":1751955420284,"y":42.973},{"x":1751955362972,"y":59.647},{"x":1751955302831,"y":76.047},{"x":1751955242671,"y":69.504},{"x":1751955182517,"y":74.84},{"x":1751955122370,"y":61.237},{"x":1751955062208,"y":37.53},{"x":1751955002019,"y":38.552},{"x":1751954941863,"y":37.749},{"x":1751954881706,"y":45.599},{"x":1751954821561,"y":33.281},{"x":1751954761400,"y":50.218},{"x":1751954701240,"y":55.044},{"x":1751954641065,"y":64.599},{"x":1751954580906,"y":50.088},{"x":1751954520751,"y":57.421},{"x":1751954460610,"y":46.007},{"x":1751954400536,"y":45.673},{"x":1751954342961,"y":32.477},{"x":1751954282814,"y":33.431},{"x":1751954222663,"y":35.104},{"x":1751954162518,"y":31.012},{"x":1751954102371,"y":34.02},{"x":1751954042215,"y":31.188},{"x":1751953982054,"y":47.332},{"x":1751953921890,"y":47.721},{"x":1751953861727,"y":50.208},{"x":1751953801589,"y":48.361},{"x":1751953741409,"y":51.058},{"x":1751953681245,"y":34.287},{"x":1751953621076,"y":37.034},{"x":1751953560880,"y":39.212},{"x":1751953500896,"y":36.967},{"x":1751953440570,"y":34.202},{"x":1751953380423,"y":34.497},{"x":1751953320107,"y":36.203},{"x":1751953262898,"y":35.477},{"x":1751953202732,"y":46.402},{"x":1751953142556,"y":48.941},{"x":1751953082414,"y":48.909},{"x":1751953022264,"y":52.348},{"x":1751952962110,"y":54.433},{"x":1751952901945,"y":43.579},{"x":1751952841790,"y":42.915},{"x":1751952781635,"y":41.205},{"x":1751952721469,"y":32.567},{"x":1751952661318,"y":38.576},{"x":1751952601197,"y":37.683},{"x":1751952540959,"y":48.92},{"x":1751952480805,"y":48.651},{"x":1751952420666,"y":48.182},{"x":1751952360516,"y":45.25},{"x":1751952300409,"y":43.895},{"x":1751952240211,"y":34.587},{"x":1751952182891,"y":33.349},{"x":1751952122751,"y":32.957},{"x":1751952062594,"y":33.483},{"x":1751952002444,"y":34.439},{"x":1751951942262,"y":38.659},{"x":1751951882110,"y":41.096},{"x":1751951821883,"y":36.929},{"x":1751951761664,"y":40.192},{"x":1751951701530,"y":23.833},{"x":1751951641363,"y":25.966},{"x":1751951581207,"y":37.305},{"x":1751951521054,"y":23.506},{"x":1751951460885,"y":23.825},{"x":1751951400732,"y":33.709},{"x":1751951340581,"y":35.96},{"x":1751951280470,"y":37.288},{"x":1751951220427,"y":37.479},{"x":1751951162890,"y":36.991},{"x":1751951102734,"y":30.074},{"x":1751951042582,"y":24.333},{"x":1751950982430,"y":23.776},{"x":1751950922277,"y":44.752},{"x":1751950862118,"y":37.206},{"x":1751950802002,"y":33.494},{"x":1751950741752,"y":33.086},{"x":1751950681604,"y":33.059},{"x":1751950621462,"y":28.354},{"x":1751950561301,"y":24.866},{"x":1751950501137,"y":26.625},{"x":1751950440932,"y":24.994},{"x":1751950380789,"y":25.134},{"x":1751950320656,"y":29.09},{"x":1751950260533,"y":25.424},{"x":1751950200438,"y":26.487},{"x":1751950140163,"y":30.824},{"x":1751950082902,"y":26.173},{"x":1751950022756,"y":23.08},{"x":1751949962602,"y":23.142},{"x":1751949902438,"y":25.704},{"x":1751949842295,"y":24.771},{"x":1751949782146,"y":24.113},{"x":1751949721993,"y":36.118},{"x":1751949661828,"y":40.015},{"x":1751949601677,"y":46.407},{"x":1751949541526,"y":45.369},{"x":1751949481379,"y":47.577},{"x":1751949421231,"y":35.289},{"x":1751949361072,"y":37.822},{"x":1751949300922,"y":24.556},{"x":1751949240764,"y":24.44},{"x":1751949180616,"y":25.808},{"x":1751949120476,"y":25.161},{"x":1751949060336,"y":24.82},{"x":1751949000197,"y":27.309},{"x":1751948942889,"y":22.729},{"x":1751948882741,"y":22.482},{"x":1751948822615,"y":22.23},{"x":1751948762441,"y":22.925},{"x":1751948702299,"y":26.191},{"x":1751948642142,"y":25.242},{"x":1751948581974,"y":36.597},{"x":1751948521828,"y":53.355},{"x":1751948461681,"y":52.18},{"x":1751948401532,"y":54.505},{"x":1751948341381,"y":52.606},{"x":1751948281218,"y":36.218},{"x":1751948221057,"y":24.628},{"x":1751948160879,"y":23.613},{"x":1751948100753,"y":23.499},{"x":1751948040576,"y":25.589},{"x":1751947980412,"y":24.242},{"x":1751947920328,"y":25.909},{"x":1751947860053,"y":28.527},{"x":1751947802876,"y":27.675},{"x":1751947742725,"y":45.142},{"x":1751947682570,"y":52.348},{"x":1751947622416,"y":55.256},{"x":1751947562269,"y":53.068},{"x":1751947502121,"y":52.239},{"x":1751947441966,"y":32.273},{"x":1751947381816,"y":27.059},{"x":1751947321672,"y":26.944},{"x":1751947261496,"y":27.277},{"x":1751947201308,"y":29.545},{"x":1751947140988,"y":25.339},{"x":1751947080842,"y":29.363},{"x":1751947020700,"y":29.034},{"x":1751946960608,"y":30.606},{"x":1751946900516,"y":31.937},{"x":1751946840194,"y":42.131},{"x":1751946782939,"y":46.357},{"x":1751946722783,"y":38.294},{"x":1751946662642,"y":44.402},{"x":1751946602488,"y":34.691},{"x":1751946542343,"y":26.486},{"x":1751946482212,"y":28.01},{"x":1751946422051,"y":25.126},{"x":1751946361903,"y":27.32},{"x":1751946301748,"y":27.759},{"x":1751946241605,"y":26.36},{"x":1751946181454,"y":38.309},{"x":1751946121296,"y":40.037},{"x":1751946061148,"y":44.064},{"x":1751946000941,"y":43.187},{"x":1751945940780,"y":41.951},{"x":1751945880637,"y":29.77},{"x":1751945820500,"y":26.894},{"x":1751945760401,"y":25.46},{"x":1751945700164,"y":24.72},{"x":1751945642862,"y":26.685},{"x":1751945582702,"y":24.154},{"x":1751945522557,"y":27.385},{"x":1751945462399,"y":26.433},{"x":1751945402249,"y":39.658},{"x":1751945342098,"y":42.538},{"x":1751945281922,"y":38.396},{"x":1751945221772,"y":43.465},{"x":1751945161634,"y":41.45},{"x":1751945101491,"y":26.297},{"x":1751945041335,"y":23.816},{"x":1751944981152,"y":23.535},{"x":1751944920948,"y":23.841},{"x":1751944860798,"y":25.563},{"x":1751944800730,"y":25.202},{"x":1751944740434,"y":26.042},{"x":1751944680218,"y":30.007},{"x":1751944622918,"y":53.522},{"x":1751944562768,"y":49.33},{"x":1751944502604,"y":52.497},{"x":1751944442469,"y":49.462},{"x":1751944382314,"y":37.666},{"x":1751944322165,"y":24.144},{"x":1751944262013,"y":23.532},{"x":1751944201859,"y":30.103},{"x":1751944141711,"y":26.599},{"x":1751944081564,"y":24.354},{"x":1751944021416,"y":38.837},{"x":1751943961251,"y":41.692},{"x":1751943900509,"y":38.885},{"x":1751943841437,"y":38.835},{"x":1751943780939,"y":38.807},{"x":1751943720565,"y":27.935},{"x":1751943672331,"y":27.147},{"x":1751943600790,"y":26.449},{"x":1751943540221,"y":28.961},{"x":1751943482963,"y":24.107},{"x":1751943422777,"y":26.001},{"x":1751943362634,"y":37.471},{"x":1751943302442,"y":38.789},{"x":1751943242302,"y":41.297},{"x":1751943182152,"y":36.707},{"x":1751943121996,"y":38.903},{"x":1751943061840,"y":23.957},{"x":1751943001698,"y":24.917},{"x":1751942941509,"y":32.333},{"x":1751942881363,"y":26.505},{"x":1751942821215,"y":28.231},{"x":1751942761047,"y":27.11},{"x":1751942700926,"y":27.273},{"x":1751942640724,"y":34.09},{"x":1751942580574,"y":33.29},{"x":1751942520420,"y":33.559},{"x":1751942460276,"y":37.316},{"x":1751942403017,"y":32.652},{"x":1751942342867,"y":25.76},{"x":1751942282722,"y":29.872},{"x":1751942222568,"y":27.636},{"x":1751942162417,"y":25.606},{"x":1751942102276,"y":28.824},{"x":1751942042114,"y":31.06},{"x":1751941981962,"y":42.245},{"x":1751941921809,"y":37.638},{"x":1751941861640,"y":48.975},{"x":1751941801494,"y":50.757},{"x":1751941741340,"y":50.319},{"x":1751941681194,"y":38.784},{"x":1751941621027,"y":41.785},{"x":1751941560872,"y":29.662},{"x":1751941500740,"y":29.905},{"x":1751941440622,"y":33.615},{"x":1751941380445,"y":32.43},{"x":1751941320316,"y":38.197},{"x":1751941263012,"y":32.175},{"x":1751941202858,"y":31.381},{"x":1751941142654,"y":33.329},{"x":1751941082516,"y":30.156},{"x":1751941022296,"y":33.119},{"x":1751940962123,"y":33.383},{"x":1751940901965,"y":33.284},{"x":1751940841818,"y":32.34},{"x":1751940781701,"y":33.47},{"x":1751940721503,"y":33.339},{"x":1751940661347,"y":27.975},{"x":1751940601207,"y":27.426},{"x":1751940541034,"y":28.835},{"x":1751940480880,"y":44.811},{"x":1751940420707,"y":58.364},{"x":1751940360566,"y":60.423},{"x":1751940300491,"y":58.192},{"x":1751940240306,"y":54.762},{"x":1751940182982,"y":43.517},{"x":1751940122842,"y":32.153},{"x":1751940062693,"y":33.079},{"x":1751940002565,"y":28.641},{"x":1751939942385,"y":28.732},{"x":1751939882240,"y":28.547},{"x":1751939822091,"y":24.893},{"x":1751939761949,"y":28.637},{"x":1751939701759,"y":37.03},{"x":1751939641592,"y":37.779},{"x":1751939581448,"y":39.684},{"x":1751939521289,"y":40.099},{"x":1751939461139,"y":41.798},{"x":1751939400928,"y":29.706},{"x":1751939340779,"y":30.461},{"x":1751939280643,"y":30.109},{"x":1751939220503,"y":29.403},{"x":1751939160434,"y":27.222},{"x":1751939102989,"y":29.312},{"x":1751939042845,"y":25.433},{"x":1751938982682,"y":25.566},{"x":1751938922542,"y":26.969},{"x":1751938862385,"y":22.915},{"x":1751938802249,"y":28.653},{"x":1751938742107,"y":28.625},{"x":1751938681944,"y":27.827},{"x":1751938621789,"y":27.828},{"x":1751938561648,"y":27.54},{"x":1751938501506,"y":23.814},{"x":1751938441352,"y":26.671},{"x":1751938381193,"y":23.785},{"x":1751938320942,"y":37.161},{"x":1751938260779,"y":54.679},{"x":1751938200696,"y":49.666},{"x":1751938140492,"y":52.395},{"x":1751938080425,"y":41.159},{"x":1751938020163,"y":39.952},{"x":1751937962881,"y":29.745},{"x":1751937902725,"y":33.225},{"x":1751937842581,"y":32.596},{"x":1751937782436,"y":31.875},{"x":1751937722293,"y":28.79},{"x":1751937662139,"y":28.176},{"x":1751937601980,"y":25.012},{"x":1751937541827,"y":23.415},{"x":1751937481660,"y":23.372},{"x":1751937421465,"y":23.53},{"x":1751937361315,"y":24.409},{"x":1751937301176,"y":26.719},{"x":1751937240982,"y":31.099},{"x":1751937180832,"y":29.755},{"x":1751937120697,"y":26.398},{"x":1751937060588,"y":23.883},{"x":1751937000393,"y":26.487},{"x":1751936940171,"y":27.255},{"x":1751936882899,"y":57.525},{"x":1751936822741,"y":49.833},{"x":1751936762584,"y":47.948},{"x":1751936702432,"y":48.091},{"x":1751936642270,"y":46.99},{"x":1751936582112,"y":27.484},{"x":1751936521946,"y":29.637},{"x":1751936461783,"y":27.288},{"x":1751936401761,"y":26.929},{"x":1751936341467,"y":30.417},{"x":1751936281308,"y":25.594},{"x":1751936221147,"y":27.216},{"x":1751936160977,"y":29.357},{"x":1751936100832,"y":25.971},{"x":1751936040678,"y":26.549},{"x":1751935980549,"y":29.75},{"x":1751935920464,"y":30.928},{"x":1751935863018,"y":24.553},{"x":1751935802856,"y":29.745},{"x":1751935742711,"y":26.615},{"x":1751935682567,"y":34.531},{"x":1751935622415,"y":35.244},{"x":1751935562257,"y":32.93},{"x":1751935502097,"y":32.12},{"x":1751935441930,"y":30.894},{"x":1751935381774,"y":26.547},{"x":1751935321630,"y":25.799},{"x":1751935261456,"y":53.815},{"x":1751935201307,"y":49.98},{"x":1751935141138,"y":52.092},{"x":1751935080966,"y":52.117},{"x":1751935020810,"y":51.559},{"x":1751934960671,"y":33.794},{"x":1751934900564,"y":26.519},{"x":1751934840357,"y":25.956},{"x":1751934780202,"y":25.216},{"x":1751934722908,"y":25.232},{"x":1751934662754,"y":28.69},{"x":1751934602585,"y":24.585},{"x":1751934542439,"y":26.394},{"x":1751934482296,"y":25.678},{"x":1751934422136,"y":28.659},{"x":1751934361952,"y":29.127},{"x":1751934301813,"y":28.114},{"x":1751934241662,"y":31.707},{"x":1751934181548,"y":26.013},{"x":1751934121359,"y":24.851},{"x":1751934061220,"y":26.826},{"x":1751934001048,"y":24.529},{"x":1751933940892,"y":26.544},{"x":1751933880750,"y":31.226},{"x":1751933820570,"y":27.673},{"x":1751933760434,"y":26.981},{"x":1751933700261,"y":29.927},{"x":1751933642935,"y":28.438},{"x":1751933582789,"y":27.289},{"x":1751933522639,"y":52.801},{"x":1751933462480,"y":59.045},{"x":1751933402324,"y":61.869},{"x":1751933342189,"y":58.324},{"x":1751933282011,"y":38.736},{"x":1751933221862,"y":26.216},{"x":1751933161690,"y":30.793},{"x":1751933101537,"y":26.809},{"x":1751933041384,"y":26.696},{"x":1751932981227,"y":27.329},{"x":1751932921070,"y":26.384},{"x":1751932860864,"y":24.438},{"x":1751932800880,"y":27.554},{"x":1751932740540,"y":25.013},{"x":1751932680398,"y":26.93},{"x":1751932620203,"y":29.623},{"x":1751932562931,"y":26.717},{"x":1751932502786,"y":25.96},{"x":1751932442625,"y":28.237},{"x":1751932382486,"y":31.69},{"x":1751932322347,"y":29.093},{"x":1751932262183,"y":31.79},{"x":1751932202033,"y":28.733},{"x":1751932141877,"y":30.232},{"x":1751932081731,"y":30.77},{"x":1751932021575,"y":26.406},{"x":1751931961437,"y":26.72},{"x":1751931901297,"y":32.099},{"x":1751931841101,"y":30.472},{"x":1751931780926,"y":37.606},{"x":1751931720779,"y":49.956},{"x":1751931660639,"y":48.7},{"x":1751931600508,"y":50.71},{"x":1751931540339,"y":57.03},{"x":1751931482970,"y":41.975},{"x":1751931422805,"y":32.042},{"x":1751931362657,"y":26.388},{"x":1751931302506,"y":24.99},{"x":1751931242351,"y":24.518},{"x":1751931182195,"y":23.817},{"x":1751931122045,"y":28.265},{"x":1751931061889,"y":25.189},{"x":1751931001739,"y":24.982},{"x":1751930941588,"y":28.183},{"x":1751930881442,"y":26.543},{"x":1751930821246,"y":28.789},{"x":1751930761088,"y":25.763},{"x":1751930700914,"y":49.027},{"x":1751930640712,"y":49.381},{"x":1751930580550,"y":54.062},{"x":1751930520383,"y":54.346},{"x":1751930460244,"y":52.018},{"x":1751930402911,"y":28.968},{"x":1751930342636,"y":27.864},{"x":1751930282445,"y":29.53},{"x":1751930222256,"y":29.178},{"x":1751930162101,"y":29.051},{"x":1751930101937,"y":25.008},{"x":1751930041789,"y":31.595},{"x":1751929981627,"y":43.785},{"x":1751929921469,"y":42.357},{"x":1751929861315,"y":45.233},{"x":1751929801162,"y":37.908},{"x":1751929740976,"y":41.982},{"x":1751929680820,"y":49.43},{"x":1751929620678,"y":54.753},{"x":1751929560555,"y":56.503},{"x":1751929500378,"y":50.396},{"x":1751929440234,"y":41.803},{"x":1751929382930,"y":25.758},{"x":1751929322784,"y":24.103},{"x":1751929262655,"y":24.277},{"x":1751929202481,"y":25.314},{"x":1751929142296,"y":28.958},{"x":1751929082135,"y":31.346},{"x":1751929021934,"y":31.087},{"x":1751928961769,"y":29.799},{"x":1751928901603,"y":32.522},{"x":1751928841437,"y":27.043},{"x":1751928781291,"y":26.596},{"x":1751928721144,"y":27.402},{"x":1751928660958,"y":36.486},{"x":1751928600816,"y":52.688},{"x":1751928540654,"y":52.352},{"x":1751928480567,"y":48.426},{"x":1751928420359,"y":49.457},{"x":1751928360195,"y":34.901},{"x":1751928302910,"y":41.626},{"x":1751928242745,"y":36.449},{"x":1751928182589,"y":35.352},{"x":1751928122440,"y":35.949},{"x":1751928062290,"y":27.804},{"x":1751928002089,"y":29.904},{"x":1751927941908,"y":26.375},{"x":1751927881781,"y":26.097},{"x":1751927821610,"y":29.129},{"x":1751927761458,"y":26.423},{"x":1751927701313,"y":26.394},{"x":1751927641154,"y":27.689},{"x":1751927580985,"y":30.372},{"x":1751927520833,"y":30.534},{"x":1751927460682,"y":30.859},{"x":1751927400612,"y":56.258},{"x":1751927340388,"y":56.799},{"x":1751927280175,"y":52.779},{"x":1751927222934,"y":52.253},{"x":1751927162793,"y":54.751},{"x":1751927102622,"y":28.894},{"x":1751927042487,"y":32.144},{"x":1751926982337,"y":29.438},{"x":1751926922188,"y":40.61},{"x":1751926862044,"y":42.207},{"x":1751926801844,"y":42.483},{"x":1751926741698,"y":44.758},{"x":1751926681554,"y":39.124},{"x":1751926621360,"y":25.62},{"x":1751926561207,"y":25.388},{"x":1751926501053,"y":28.356},{"x":1751926440885,"y":46.517},{"x":1751926380739,"y":40.212},{"x":1751926320620,"y":43.982},{"x":1751926260466,"y":44.232},{"x":1751926200384,"y":41.314},{"x":1751926142973,"y":34.166},{"x":1751926082839,"y":42.519},{"x":1751926022698,"y":42.453},{"x":1751925962526,"y":30.916},{"x":1751925902376,"y":32.241},{"x":1751925842232,"y":28.305},{"x":1751925782081,"y":31.047},{"x":1751925721924,"y":44.093},{"x":1751925661778,"y":39.201},{"x":1751925601721,"y":51.27},{"x":1751925541345,"y":57.255},{"x":1751925481203,"y":56.244},{"x":1751925421047,"y":54.827},{"x":1751925360895,"y":61.351},{"x":1751925300758,"y":54.417},{"x":1751925240582,"y":55.833},{"x":1751925180475,"y":45.093},{"x":1751925120314,"y":52.051},{"x":1751925062997,"y":50.272},{"x":1751925002858,"y":53.488},{"x":1751924942714,"y":48.003},{"x":1751924882580,"y":50.181},{"x":1751924822424,"y":67.594},{"x":1751924762290,"y":49.771},{"x":1751924702112,"y":52.186},{"x":1751924641952,"y":51.691},{"x":1751924581800,"y":54.504},{"x":1751924521656,"y":29.996},{"x":1751924461532,"y":27.754},{"x":1751924401264,"y":28.014},{"x":1751924341107,"y":28.36},{"x":1751924280940,"y":33.499},{"x":1751924220798,"y":25.87},{"x":1751924160723,"y":27.223},{"x":1751924100576,"y":28.275},{"x":1751924040305,"y":40.381},{"x":1751923980111,"y":41.933},{"x":1751923922896,"y":36.005},{"x":1751923862753,"y":36.152},{"x":1751923802599,"y":34.185},{"x":1751923742450,"y":24.971},{"x":1751923682305,"y":28.879},{"x":1751923622170,"y":25.468},{"x":1751923562026,"y":30.207},{"x":1751923501844,"y":29.669},{"x":1751923441689,"y":27.753},{"x":1751923381548,"y":30.577},{"x":1751923321397,"y":40.362},{"x":1751923261253,"y":45.723},{"x":1751923201070,"y":45.442},{"x":1751923140909,"y":44.685},{"x":1751923080775,"y":48.846},{"x":1751923020646,"y":28.991},{"x":1751922960450,"y":30.261},{"x":1751922900340,"y":27.38},{"x":1751922840129,"y":30.178},{"x":1751922782874,"y":27.74},{"x":1751922722712,"y":38.636},{"x":1751922662556,"y":51.777},{"x":1751922602409,"y":52.273},{"x":1751922542272,"y":53.09},{"x":1751922482085,"y":52.394},{"x":1751922421928,"y":38.349},{"x":1751922361786,"y":30.696},{"x":1751922301638,"y":30.757},{"x":1751922241493,"y":30.681},{"x":1751922181343,"y":25.597},{"x":1751922121202,"y":30.196},{"x":1751922061033,"y":33.608},{"x":1751922001019,"y":30.807},{"x":1751921940678,"y":32.349},{"x":1751921880529,"y":34.365},{"x":1751921820420,"y":30.083},{"x":1751921760199,"y":30.121},{"x":1751921702900,"y":30.234},{"x":1751921642760,"y":28.242},{"x":1751921582616,"y":27.34},{"x":1751921522442,"y":31.777},{"x":1751921462283,"y":26.884},{"x":1751921402129,"y":27.168},{"x":1751921341952,"y":26.947},{"x":1751921281795,"y":26.066},{"x":1751921221658,"y":33.325},{"x":1751921161519,"y":31.573},{"x":1751921101383,"y":36.748},{"x":1751921041208,"y":33.158},{"x":1751920981063,"y":41.85},{"x":1751920920903,"y":44.559},{"x":1751920860749,"y":40.596},{"x":1751920800751,"y":34.687},{"x":1751920740457,"y":28.32},{"x":1751920680318,"y":31.232},{"x":1751920623019,"y":39.326},{"x":1751920562871,"y":33.83},{"x":1751920502726,"y":30.033},{"x":1751920442556,"y":39.318},{"x":1751920382402,"y":36.242},{"x":1751920322236,"y":37.96},{"x":1751920262083,"y":34.253},{"x":1751920201942,"y":35.166},{"x":1751920141779,"y":32.311},{"x":1751920081639,"y":33.574},{"x":1751920021484,"y":34.691},{"x":1751919961329,"y":37.183},{"x":1751919901180,"y":36.776},{"x":1751919841043,"y":28.81},{"x":1751919780877,"y":26.866},{"x":1751919720729,"y":26.589},{"x":1751919660596,"y":25.113},{"x":1751919600462,"y":32.636},{"x":1751919540318,"y":35.629},{"x":1751919483032,"y":34.148},{"x":1751919422806,"y":35.572},{"x":1751919362654,"y":39.296},{"x":1751919302509,"y":27.866},{"x":1751919242359,"y":28.374},{"x":1751919182215,"y":32.547},{"x":1751919122068,"y":31.15},{"x":1751919061909,"y":32.204},{"x":1751919001768,"y":28.653},{"x":1751918941621,"y":30.37},{"x":1751918881474,"y":26.951},{"x":1751918821312,"y":26.342},{"x":1751918761174,"y":32.322},{"x":1751918701013,"y":48.981},{"x":1751918640862,"y":48.571},{"x":1751918580701,"y":51.018},{"x":1751918520613,"y":58.07},{"x":1751918460413,"y":60.059},{"x":1751918400193,"y":35.694},{"x":1751918342922,"y":36.268},{"x":1751918282781,"y":39.05},{"x":1751918222630,"y":35.273},{"x":1751918162482,"y":44.609},{"x":1751918102330,"y":38.56},{"x":1751918042180,"y":38.91},{"x":1751917982026,"y":40.913},{"x":1751917921878,"y":39.922},{"x":1751917861731,"y":43.488},{"x":1751917801593,"y":42.737},{"x":1751917741427,"y":41.496},{"x":1751917681281,"y":59.314},{"x":1751917621126,"y":53.943},{"x":1751917560963,"y":56.708},{"x":1751917500851,"y":50.258},{"x":1751917440631,"y":54.905},{"x":1751917380502,"y":38.151},{"x":1751917320366,"y":51.63},{"x":1751917260249,"y":38.166},{"x":1751917202879,"y":41.637},{"x":1751917142713,"y":35.77},{"x":1751917082569,"y":35.966},{"x":1751917022426,"y":37.447},{"x":1751916962279,"y":47.274},{"x":1751916902122,"y":38.381},{"x":1751916841974,"y":34.07},{"x":1751916781814,"y":36.659},{"x":1751916721672,"y":50.272},{"x":1751916661513,"y":37.785},{"x":1751916601365,"y":46.619},{"x":1751916541196,"y":54.853},{"x":1751916481009,"y":53.357},{"x":1751916420867,"y":75.661},{"x":1751916360728,"y":58.352},{"x":1751916300588,"y":55.409},{"x":1751916240447,"y":48.798},{"x":1751916180284,"y":54.343},{"x":1751916122941,"y":45.857},{"x":1751916062802,"y":44.781},{"x":1751916002644,"y":43.781},{"x":1751915942507,"y":48.167},{"x":1751915882295,"y":36.842},{"x":1751915822091,"y":32.225},{"x":1751915761918,"y":28.443},{"x":1751915701768,"y":51.46},{"x":1751915641627,"y":56.154},{"x":1751915581489,"y":51.05},{"x":1751915521338,"y":60.411},{"x":1751915461173,"y":60.305},{"x":1751915401024,"y":40.866},{"x":1751915340846,"y":35.955},{"x":1751915280704,"y":39.332},{"x":1751915220590,"y":39.769},{"x":1751915160483,"y":46.496},{"x":1751915100217,"y":56.989},{"x":1751915042939,"y":62.085},{"x":1751914982793,"y":55.835},{"x":1751914922638,"y":55.628},{"x":1751914862492,"y":53.094},{"x":1751914802341,"y":30.732},{"x":1751914742175,"y":36.311},{"x":1751914682025,"y":27.67},{"x":1751914621868,"y":28.143},{"x":1751914561725,"y":27.523},{"x":1751914501581,"y":40.742},{"x":1751914441433,"y":36.968},{"x":1751914381291,"y":35.654},{"x":1751914321146,"y":42.166},{"x":1751914260937,"y":38.346},{"x":1751914200852,"y":33.045},{"x":1751914140626,"y":33.218},{"x":1751914080539,"y":32.636},{"x":1751914020407,"y":35.962},{"x":1751913960160,"y":24.926},{"x":1751913902951,"y":29.729},{"x":1751913842779,"y":32.381},{"x":1751913782637,"y":27.653},{"x":1751913722485,"y":35.283},{"x":1751913662366,"y":31.112},{"x":1751913602196,"y":30.509},{"x":1751913542070,"y":34.714},{"x":1751913481839,"y":45.344},{"x":1751913421694,"y":42.585},{"x":1751913361548,"y":31.271},{"x":1751913301405,"y":32.933},{"x":1751913241257,"y":28.209},{"x":1751913181112,"y":37.105},{"x":1751913120929,"y":28.589},{"x":1751913060752,"y":26.211},{"x":1751913000700,"y":34.982},{"x":1751912940423,"y":34.716},{"x":1751912880297,"y":35.505},{"x":1751912822987,"y":32.795},{"x":1751912762838,"y":47.983},{"x":1751912702691,"y":50.433},{"x":1751912642532,"y":51.766},{"x":1751912582365,"y":47.786},{"x":1751912522211,"y":46.364},{"x":1751912462032,"y":28.229},{"x":1751912401814,"y":26.777},{"x":1751912341650,"y":29.234},{"x":1751912281477,"y":30.956},{"x":1751912221266,"y":30.85},{"x":1751912161110,"y":38.925},{"x":1751912100941,"y":45.609},{"x":1751912040785,"y":42.034},{"x":1751911980644,"y":53.905},{"x":1751911920554,"y":31.651},{"x":1751911860351,"y":27.592},{"x":1751911800046,"y":33.363},{"x":1751911742879,"y":33.063},{"x":1751911682732,"y":28.174},{"x":1751911622583,"y":31.92},{"x":1751911562430,"y":31.19},{"x":1751911502281,"y":31.662},{"x":1751911442125,"y":28.126},{"x":1751911381939,"y":36.834},{"x":1751911321784,"y":36.259},{"x":1751911261628,"y":23.475},{"x":1751911201531,"y":32.048},{"x":1751911141248,"y":33.369},{"x":1751911081060,"y":32.42},{"x":1751911020890,"y":25.733},{"x":1751910960742,"y":28.733},{"x":1751910900662,"y":36.059},{"x":1751910840419,"y":36.8},{"x":1751910780229,"y":28.079},{"x":1751910722953,"y":27.065},{"x":1751910662834,"y":27.31},{"x":1751910602649,"y":33.347},{"x":1751910542493,"y":30.379},{"x":1751910482345,"y":30.8},{"x":1751910422190,"y":29.829},{"x":1751910362019,"y":28.772},{"x":1751910301860,"y":32.06},{"x":1751910241671,"y":30.933},{"x":1751910181522,"y":34.573},{"x":1751910121381,"y":28.266},{"x":1751910061228,"y":27.769},{"x":1751910001017,"y":30.833},{"x":1751909940845,"y":30.523},{"x":1751909880702,"y":34.329},{"x":1751909820565,"y":27.482},{"x":1751909760404,"y":31.999},{"x":1751909700196,"y":30.877},{"x":1751909642957,"y":40.964},{"x":1751909582817,"y":41.872},{"x":1751909522672,"y":48.414},{"x":1751909462515,"y":49.15},{"x":1751909402345,"y":46.266},{"x":1751909342203,"y":45.946},{"x":1751909282052,"y":38.035},{"x":1751909221904,"y":29.844},{"x":1751909161743,"y":27.243},{"x":1751909101599,"y":33.046},{"x":1751909041440,"y":37.757},{"x":1751908981291,"y":29.008},{"x":1751908921164,"y":26.689},{"x":1751908860936,"y":26.073},{"x":1751908800811,"y":28.766},{"x":1751908740601,"y":42.758},{"x":1751908680409,"y":41.75},{"x":1751908620258,"y":49.453},{"x":1751908562972,"y":48.292},{"x":1751908502785,"y":52.266},{"x":1751908442642,"y":50.038},{"x":1751908382501,"y":42.967},{"x":1751908322357,"y":35.806},{"x":1751908262195,"y":45.773},{"x":1751908202042,"y":40.297},{"x":1751908141892,"y":38.893},{"x":1751908081737,"y":37.726},{"x":1751908021600,"y":35.637},{"x":1751907961426,"y":49.066},{"x":1751907901274,"y":45.586},{"x":1751907841129,"y":49.122},{"x":1751907780931,"y":45.827},{"x":1751907720777,"y":45.815},{"x":1751907660627,"y":34.008},{"x":1751907600366,"y":37.709},{"x":1751907540178,"y":37.886},{"x":1751907482896,"y":37.323},{"x":1751907422743,"y":41.414},{"x":1751907362564,"y":35.776},{"x":1751907302419,"y":34.828},{"x":1751907242273,"y":38.936},{"x":1751907182114,"y":40.933},{"x":1751907121940,"y":35.743},{"x":1751907061781,"y":35.035},{"x":1751907001639,"y":35.102},{"x":1751906941458,"y":36.361},{"x":1751906881318,"y":49.084},{"x":1751906821171,"y":28.409},{"x":1751906760989,"y":37.607},{"x":1751906700955,"y":32.665},{"x":1751906640679,"y":39.076},{"x":1751906580540,"y":34.24},{"x":1751906520420,"y":35.225},{"x":1751906460269,"y":34.382},{"x":1751906402888,"y":34.428},{"x":1751906342732,"y":34.594},{"x":1751906282591,"y":40.194},{"x":1751906222432,"y":32.564},{"x":1751906162285,"y":41.912},{"x":1751906102136,"y":38.532},{"x":1751906041953,"y":37.312},{"x":1751905981806,"y":30.907},{"x":1751905921653,"y":19.347},{"x":1751905861500,"y":25.936},{"x":1751905801362,"y":25.45},{"x":1751905741199,"y":20.859},{"x":1751905681037,"y":13.732},{"x":1751905620883,"y":13.621},{"x":1751905560728,"y":26.625},{"x":1751905500626,"y":25.959},{"x":1751905440511,"y":24.75},{"x":1751905380300,"y":25.827},{"x":1751905322937,"y":27.697},{"x":1751905262785,"y":28.962},{"x":1751905202630,"y":33.969},{"x":1751905142483,"y":35.862},{"x":1751905082328,"y":33.801},{"x":1751905022163,"y":47.818},{"x":1751904961991,"y":45.194},{"x":1751904901843,"y":53.373},{"x":1751904841694,"y":41.236},{"x":1751904781552,"y":37.932},{"x":1751904721389,"y":41.748},{"x":1751904661231,"y":35.152},{"x":1751904601074,"y":23.779},{"x":1751904540901,"y":25.974},{"x":1751904480763,"y":25.095},{"x":1751904420616,"y":21.424},{"x":1751904360486,"y":21.734},{"x":1751904300513,"y":22.363},{"x":1751904242983,"y":26.203},{"x":1751904182829,"y":22.915},{"x":1751904122676,"y":24.613},{"x":1751904062510,"y":15.48},{"x":1751904002364,"y":30.126},{"x":1751903942215,"y":31.459},{"x":1751903882074,"y":32.007},{"x":1751903821911,"y":41.803},{"x":1751903761764,"y":41.683},{"x":1751903701613,"y":19.997},{"x":1751903641471,"y":22.61},{"x":1751903581310,"y":32.596},{"x":1751903521170,"y":17.506},{"x":1751903461030,"y":24.682},{"x":1751903400820,"y":31.682},{"x":1751903340671,"y":22.35},{"x":1751903280633,"y":18.947},{"x":1751903220378,"y":38.191},{"x":1751903160205,"y":28.854},{"x":1751903102907,"y":30.287},{"x":1751903042748,"y":45.042},{"x":1751902982581,"y":31.874},{"x":1751902922441,"y":29.445},{"x":1751902862277,"y":23.66},{"x":1751902802133,"y":17.938},{"x":1751902741968,"y":17.907},{"x":1751902681812,"y":19.565},{"x":1751902621670,"y":16.834},{"x":1751902561507,"y":17.154},{"x":1751902501366,"y":24.46},{"x":1751902441207,"y":35.402},{"x":1751902381008,"y":38.671},{"x":1751902320859,"y":42.41},{"x":1751902260704,"y":51.136},{"x":1751902200590,"y":35.593},{"x":1751902140472,"y":19.48},{"x":1751902080221,"y":14.156},{"x":1751902022946,"y":19.523},{"x":1751901962802,"y":32.428},{"x":1751901902648,"y":39.745},{"x":1751901842487,"y":41.753},{"x":1751901782339,"y":40.007},{"x":1751901722198,"y":46.787},{"x":1751901662056,"y":29.405},{"x":1751901601890,"y":24.485},{"x":1751901541760,"y":27.171},{"x":1751901481580,"y":29.874},{"x":1751901421379,"y":19.147},{"x":1751901361209,"y":11.599},{"x":1751901301072,"y":9.55},{"x":1751901240868,"y":22.176},{"x":1751901180719,"y":31.079},{"x":1751901120593,"y":15.211},{"x":1751901060437,"y":11.783},{"x":1751901000182,"y":22.9},{"x":1751900942954,"y":35.166},{"x":1751900882811,"y":37.073},{"x":1751900822664,"y":18.147},{"x":1751900762519,"y":28.848},{"x":1751900702371,"y":32.513},{"x":1751900642221,"y":28.594},{"x":1751900582074,"y":23.729},{"x":1751900521959,"y":21.911},{"x":1751900461794,"y":31.537},{"x":1751900401916,"y":22.159},{"x":1751900341447,"y":42.24},{"x":1751900281284,"y":21.74},{"x":1751900221137,"y":18.192},{"x":1751900160970,"y":21.915},{"x":1751900100820,"y":38.284},{"x":1751900040668,"y":25.36},{"x":1751899980561,"y":20.083},{"x":1751899920432,"y":24.218},{"x":1751899860260,"y":24.767},{"x":1751899802937,"y":30.719},{"x":1751899742792,"y":39.305},{"x":1751899682645,"y":10.875},{"x":1751899622478,"y":10.293},{"x":1751899562325,"y":7.793},{"x":1751899502157,"y":29.251},{"x":1751899441999,"y":4.584},{"x":1751899381846,"y":23.586},{"x":1751899321691,"y":13.95},{"x":1751899261546,"y":11.78},{"x":1751899201400,"y":25.393},{"x":1751899141245,"y":19.727},{"x":1751899081093,"y":15.775},{"x":1751899020933,"y":22.164},{"x":1751898960782,"y":29.879},{"x":1751898900643,"y":35.479},{"x":1751898840514,"y":49.976},{"x":1751898780342,"y":45.511},{"x":1751898722996,"y":36.811},{"x":1751898662821,"y":31.429},{"x":1751898602651,"y":21.303},{"x":1751898542500,"y":15.157},{"x":1751898482359,"y":16.646},{"x":1751898422215,"y":6.286},{"x":1751898362064,"y":5.898},{"x":1751898301899,"y":0.714},{"x":1751898241754,"y":27.506},{"x":1751898181598,"y":22.004},{"x":1751898121449,"y":25.2},{"x":1751898061304,"y":23.86},{"x":1751898001160,"y":24.682},{"x":1751897940978,"y":32.458},{"x":1751897880809,"y":36.559},{"x":1751897820641,"y":13.169},{"x":1751897760541,"y":0.31},{"x":1751897700172,"y":20.525},{"x":1751897642906,"y":22.817},{"x":1751897582771,"y":11.921},{"x":1751897522609,"y":3.481},{"x":1751897462459,"y":17.903},{"x":1751897402315,"y":8.304},{"x":1751897342167,"y":10.787},{"x":1751897282007,"y":27.222},{"x":1751897221852,"y":20.291},{"x":1751897161707,"y":22.527},{"x":1751897101545,"y":33.121},{"x":1751897041360,"y":8.534},{"x":1751896981210,"y":1.204},{"x":1751896921050,"y":17.162},{"x":1751896860889,"y":30.693},{"x":1751896800798,"y":17.13},{"x":1751896740581,"y":5.518},{"x":1751896680497,"y":17.669},{"x":1751896620311,"y":20.702},{"x":1751896563012,"y":22.429},{"x":1751896502860,"y":40.319},{"x":1751896442710,"y":42.991},{"x":1751896382561,"y":12.226},{"x":1751896322409,"y":24.229},{"x":1751896262258,"y":15.837},{"x":1751896202096,"y":5.653},{"x":1751896141925,"y":22.562},{"x":1751896081781,"y":-2.002},{"x":1751896021630,"y":0.561},{"x":1751895961486,"y":16.683},{"x":1751895901358,"y":15.827},{"x":1751895841172,"y":15.715},{"x":1751895781005,"y":16.165},{"x":1751895720854,"y":13.716},{"x":1751895660711,"y":3.15},{"x":1751895600586,"y":4.512},{"x":1751895540437,"y":20.242},{"x":1751895482993,"y":-1.292},{"x":1751895422847,"y":10.089},{"x":1751895362695,"y":18.252},{"x":1751895302556,"y":18.662},{"x":1751895242400,"y":10.507},{"x":1751895182259,"y":12.862},{"x":1751895122109,"y":13.658},{"x":1751895061948,"y":14.411},{"x":1751895001804,"y":18.559},{"x":1751894941649,"y":12.223},{"x":1751894881425,"y":33.08},{"x":1751894821279,"y":21.05},{"x":1751894761121,"y":19.024},{"x":1751894700967,"y":15.79},{"x":1751894640837,"y":17.084},{"x":1751894580689,"y":9.93},{"x":1751894520523,"y":3.834},{"x":1751894460368,"y":7.93},{"x":1751894400259,"y":3.787},{"x":1751894342960,"y":12.228},{"x":1751894282697,"y":5.444},{"x":1751894222529,"y":11.906},{"x":1751894162377,"y":22.329},{"x":1751894102179,"y":19.851},{"x":1751894042016,"y":18.1},{"x":1751893981822,"y":20.677},{"x":1751893921679,"y":14.815},{"x":1751893861533,"y":15.169},{"x":1751893801385,"y":27.415},{"x":1751893741235,"y":31.924},{"x":1751893681070,"y":43.393},{"x":1751893620873,"y":-0.116},{"x":1751893560733,"y":1.517},{"x":1751893500633,"y":1.028},{"x":1751893440356,"y":6.067},{"x":1751893380209,"y":26.708},{"x":1751893322876,"y":9.846},{"x":1751893262712,"y":0.744},{"x":1751893202602,"y":14.049},{"x":1751893142390,"y":1.561},{"x":1751893082246,"y":0.705},{"x":1751893022106,"y":8.631},{"x":1751892961927,"y":14.132},{"x":1751892901791,"y":29.702},{"x":1751892841627,"y":22.03},{"x":1751892781478,"y":40.738},{"x":1751892721339,"y":15.661},{"x":1751892661146,"y":30.009},{"x":1751892600977,"y":36.306},{"x":1751892540814,"y":18.906},{"x":1751892480675,"y":16.861},{"x":1751892420587,"y":22.045},{"x":1751892360346,"y":18.035},{"x":1751892302979,"y":46.357},{"x":1751892242822,"y":38.953},{"x":1751892182685,"y":41.41},{"x":1751892122521,"y":43.746},{"x":1751892062363,"y":18.321},{"x":1751892002201,"y":21.988},{"x":1751891942049,"y":10.951},{"x":1751891881888,"y":33.631},{"x":1751891821738,"y":17.061},{"x":1751891761588,"y":16.148},{"x":1751891701440,"y":31.75},{"x":1751891641291,"y":7.758},{"x":1751891581125,"y":16.989},{"x":1751891520943,"y":11.095},{"x":1751891460792,"y":13.709},{"x":1751891400688,"y":19.006},{"x":1751891340473,"y":34.106},{"x":1751891280394,"y":18.261},{"x":1751891220240,"y":19.599},{"x":1751891162935,"y":10.768},{"x":1751891102783,"y":18.902},{"x":1751891042634,"y":18.279},{"x":1751890982493,"y":30.555},{"x":1751890922379,"y":25.241},{"x":1751890862204,"y":21.383},{"x":1751890802043,"y":8.091},{"x":1751890741896,"y":30.528},{"x":1751890681675,"y":24.959},{"x":1751890621484,"y":16.227},{"x":1751890561338,"y":17.387},{"x":1751890501195,"y":15.549},{"x":1751890441021,"y":18.882},{"x":1751890380874,"y":27.425},{"x":1751890320730,"y":12.399},{"x":1751890260582,"y":23.126},{"x":1751890200561,"y":33.564},{"x":1751890140306,"y":9.799},{"x":1751890082943,"y":14.933},{"x":1751890022787,"y":10.655},{"x":1751889962643,"y":27.436},{"x":1751889902495,"y":26.748},{"x":1751889842330,"y":23.311},{"x":1751889782157,"y":24.683},{"x":1751889721992,"y":12.316},{"x":1751889661846,"y":20.4},{"x":1751889601773,"y":23.68},{"x":1751889541503,"y":44.889},{"x":1751889481358,"y":41.002},{"x":1751889421208,"y":53.386},{"x":1751889361050,"y":22.53},{"x":1751889300897,"y":16.787},{"x":1751889240748,"y":21.402},{"x":1751889180600,"y":27.655},{"x":1751889120389,"y":23.051},{"x":1751889060259,"y":42.437},{"x":1751889002949,"y":12.717},{"x":1751888942800,"y":25.488},{"x":1751888882625,"y":10.087},{"x":1751888822477,"y":15.044},{"x":1751888762328,"y":8.751},{"x":1751888702181,"y":47.528},{"x":1751888642030,"y":19.932},{"x":1751888581869,"y":34.579},{"x":1751888521727,"y":28.887},{"x":1751888461577,"y":19.432},{"x":1751888401414,"y":7.55},{"x":1751888341258,"y":17.195},{"x":1751888281104,"y":11.115},{"x":1751888220926,"y":4.558},{"x":1751888160769,"y":16.487},{"x":1751888100664,"y":25.851},{"x":1751888040469,"y":18.47},{"x":1751887980372,"y":29.8},{"x":1751887922981,"y":49.117},{"x":1751887862825,"y":15.221},{"x":1751887802689,"y":19.896},{"x":1751887742530,"y":19.171},{"x":1751887682377,"y":19.419},{"x":1751887622222,"y":16.928},{"x":1751887562010,"y":30.135},{"x":1751887501820,"y":27.947},{"x":1751887441670,"y":18.426},{"x":1751887381520,"y":24.155},{"x":1751887321327,"y":10.94},{"x":1751887261179,"y":18.118},{"x":1751887200984,"y":30.877},{"x":1751887140816,"y":27.938},{"x":1751887080640,"y":18.112},{"x":1751887020467,"y":25.079},{"x":1751886960284,"y":21.959},{"x":1751886902958,"y":8.375},{"x":1751886842803,"y":15.398},{"x":1751886782670,"y":30.322},{"x":1751886722502,"y":29.524},{"x":1751886662356,"y":5.241},{"x":1751886602191,"y":6.987},{"x":1751886542035,"y":25.616},{"x":1751886481936,"y":37.481},{"x":1751886421715,"y":28.429},{"x":1751886361565,"y":22.063},{"x":1751886301373,"y":25.034},{"x":1751886241200,"y":31.094},{"x":1751886181044,"y":23.66},{"x":1751886120873,"y":30.978},{"x":1751886060731,"y":45.824},{"x":1751886000750,"y":13.817},{"x":1751885940414,"y":15.299},{"x":1751885880117,"y":16.578},{"x":1751885822883,"y":13.77},{"x":1751885762740,"y":35.38},{"x":1751885702596,"y":27.374},{"x":1751885642430,"y":34.278},{"x":1751885582256,"y":42.805},{"x":1751885522094,"y":41.506},{"x":1751885461925,"y":51.94},{"x":1751885401779,"y":46.24},{"x":1751885341622,"y":32.041},{"x":1751885281475,"y":37.014},{"x":1751885221311,"y":32.546},{"x":1751885161140,"y":23.147},{"x":1751885101009,"y":13.189},{"x":1751885040821,"y":8.987},{"x":1751884980687,"y":31.273},{"x":1751884920537,"y":29.732},{"x":1751884860380,"y":24.733},{"x":1751884800193,"y":28.469},{"x":1751884742928,"y":30.72},{"x":1751884682783,"y":22.295},{"x":1751884622634,"y":41.355},{"x":1751884562501,"y":24.824},{"x":1751884502303,"y":17.135},{"x":1751884442155,"y":25.448},{"x":1751884382005,"y":18.469},{"x":1751884321856,"y":24.808},{"x":1751884261700,"y":30.568},{"x":1751884201541,"y":61.696},{"x":1751884141386,"y":49.069},{"x":1751884081278,"y":63.267},{"x":1751884021085,"y":45.904},{"x":1751883960941,"y":23.24},{"x":1751883900770,"y":20.529},{"x":1751883840620,"y":5.759},{"x":1751883780472,"y":6.121},{"x":1751883720283,"y":3.902},{"x":1751883662992,"y":14.7},{"x":1751883602828,"y":5.327},{"x":1751883542658,"y":14.213},{"x":1751883482482,"y":24.037},{"x":1751883422286,"y":19.384},{"x":1751883362132,"y":11.862},{"x":1751883301974,"y":21.538},{"x":1751883241829,"y":22.361},{"x":1751883181683,"y":10.066},{"x":1751883121545,"y":15.87},{"x":1751883061387,"y":27.79},{"x":1751883001226,"y":29.385},{"x":1751882941067,"y":19.216},{"x":1751882880862,"y":28.755},{"x":1751882820711,"y":15.011},{"x":1751882760561,"y":12.279},{"x":1751882700344,"y":23.377},{"x":1751882640073,"y":28.18},{"x":1751882582884,"y":44.344},{"x":1751882522725,"y":39.164},{"x":1751882462611,"y":38.572},{"x":1751882402435,"y":23.594},{"x":1751882342274,"y":22.373},{"x":1751882282131,"y":12.863},{"x":1751882221958,"y":7.262},{"x":1751882161826,"y":8.422},{"x":1751882101683,"y":8.702},{"x":1751882041539,"y":6.174},{"x":1751881981393,"y":24.771},{"x":1751881921264,"y":21.019},{"x":1751881861085,"y":21.447},{"x":1751881800917,"y":30.013},{"x":1751881740764,"y":27.223},{"x":1751881680648,"y":11.164},{"x":1751881620463,"y":24.374},{"x":1751881560332,"y":20.908},{"x":1751881503022,"y":21.055},{"x":1751881442860,"y":33.055},{"x":1751881382727,"y":25.095},{"x":1751881322541,"y":63.948},{"x":1751881262398,"y":40.516},{"x":1751881202235,"y":38.441},{"x":1751881142086,"y":60.901},{"x":1751881081930,"y":24.732},{"x":1751881021775,"y":30.889},{"x":1751880961616,"y":39.677},{"x":1751880901476,"y":27.941},{"x":1751880841311,"y":25.822},{"x":1751880781144,"y":20.82},{"x":1751880720979,"y":9.464},{"x":1751880660831,"y":16.713},{"x":1751880600714,"y":15.599},{"x":1751880540525,"y":27.749},{"x":1751880480381,"y":34.013},{"x":1751880422974,"y":37.475},{"x":1751880362820,"y":38.502},{"x":1751880302662,"y":32.672},{"x":1751880242509,"y":35.061},{"x":1751880182362,"y":36.96},{"x":1751880122216,"y":39.426},{"x":1751880062058,"y":40.366},{"x":1751880001888,"y":40.098},{"x":1751879941737,"y":36.466},{"x":1751879881527,"y":28.257},{"x":1751879821379,"y":44.535},{"x":1751879761229,"y":50.123},{"x":1751879701088,"y":32.523},{"x":1751879640915,"y":43.927},{"x":1751879580762,"y":37.24},{"x":1751879520671,"y":33.91},{"x":1751879460434,"y":23.532},{"x":1751879400420,"y":25.463},{"x":1751879343002,"y":31.119},{"x":1751879282848,"y":32.045},{"x":1751879222699,"y":33.027},{"x":1751879162541,"y":27.948},{"x":1751879102391,"y":34.026},{"x":1751879042248,"y":39.289},{"x":1751878982073,"y":25.781},{"x":1751878921895,"y":38.987},{"x":1751878861803,"y":23.904},{"x":1751878801597,"y":21.57},{"x":1751878741394,"y":31.823},{"x":1751878681243,"y":43.244},{"x":1751878621089,"y":42.76},{"x":1751878560923,"y":38.102},{"x":1751878500795,"y":36.967},{"x":1751878440613,"y":32.952},{"x":1751878380430,"y":37.527},{"x":1751878320320,"y":26.846},{"x":1751878262997,"y":24.889},{"x":1751878202754,"y":36.184},{"x":1751878142595,"y":38.377},{"x":1751878082408,"y":62.968},{"x":1751878022215,"y":57.948},{"x":1751877962049,"y":47.403},{"x":1751877901886,"y":49.638},{"x":1751877841709,"y":36.726},{"x":1751877781565,"y":30.864},{"x":1751877721427,"y":27.146},{"x":1751877661267,"y":26.17},{"x":1751877601119,"y":22.985},{"x":1751877540937,"y":25.596},{"x":1751877480810,"y":19.921},{"x":1751877420629,"y":20.277},{"x":1751877360565,"y":39.174},{"x":1751877300457,"y":42.25},{"x":1751877240206,"y":32.5},{"x":1751877182916,"y":36.787},{"x":1751877122770,"y":41.411},{"x":1751877062618,"y":43.348},{"x":1751877002466,"y":33.219},{"x":1751876942316,"y":36.37},{"x":1751876882167,"y":27.358},{"x":1751876822017,"y":23.246},{"x":1751876761866,"y":21.474},{"x":1751876701727,"y":35.377},{"x":1751876641582,"y":34.823},{"x":1751876581432,"y":36.59},{"x":1751876521266,"y":29.005},{"x":1751876461115,"y":48.42},{"x":1751876400966,"y":39.697},{"x":1751876340785,"y":36.707},{"x":1751876280653,"y":37.293},{"x":1751876220555,"y":34.393},{"x":1751876160317,"y":40.401},{"x":1751876102997,"y":31.955},{"x":1751876042836,"y":27.924},{"x":1751875982693,"y":25.18},{"x":1751875922524,"y":28.275},{"x":1751875862372,"y":34.027},{"x":1751875802234,"y":33.949},{"x":1751875742087,"y":31.877},{"x":1751875681932,"y":22.952},{"x":1751875621781,"y":34.77},{"x":1751875561613,"y":35.015},{"x":1751875501454,"y":26.687},{"x":1751875441310,"y":30.333},{"x":1751875381148,"y":33.503},{"x":1751875320970,"y":52.753},{"x":1751875260822,"y":28.666},{"x":1751875200734,"y":33.835},{"x":1751875140463,"y":26.787},{"x":1751875080424,"y":41.075},{"x":1751875023018,"y":20.809},{"x":1751874962884,"y":36.555},{"x":1751874902719,"y":25.74},{"x":1751874842559,"y":50.349},{"x":1751874782409,"y":54.53},{"x":1751874722258,"y":45.083},{"x":1751874662097,"y":33.265},{"x":1751874601936,"y":29.674},{"x":1751874541783,"y":29.639},{"x":1751874481618,"y":37.328},{"x":1751874421466,"y":52.342},{"x":1751874361311,"y":29.838},{"x":1751874301194,"y":41.916},{"x":1751874240977,"y":47.005},{"x":1751874180808,"y":22.828},{"x":1751874120660,"y":26.002},{"x":1751874060511,"y":28.992},{"x":1751874000542,"y":34.058},{"x":1751873940223,"y":29.433},{"x":1751873882907,"y":36.139},{"x":1751873822743,"y":42.675},{"x":1751873762589,"y":53.3},{"x":1751873702439,"y":49.677},{"x":1751873642270,"y":25.378},{"x":1751873582127,"y":36.897},{"x":1751873521960,"y":28.968},{"x":1751873461802,"y":27.413},{"x":1751873401653,"y":33.56},{"x":1751873341489,"y":30.275},{"x":1751873281344,"y":27.232},{"x":1751873221188,"y":28.869},{"x":1751873161028,"y":31.699},{"x":1751873100886,"y":41.012},{"x":1751873040737,"y":45.609},{"x":1751872980615,"y":48.566},{"x":1751872920462,"y":38.787},{"x":1751872860358,"y":43.033},{"x":1751872802973,"y":44.31},{"x":1751872742838,"y":45.285},{"x":1751872682659,"y":28.1},{"x":1751872622461,"y":23.116},{"x":1751872562311,"y":36.28},{"x":1751872502166,"y":25.767},{"x":1751872441997,"y":36.537},{"x":1751872381845,"y":22.105},{"x":1751872321700,"y":22.645},{"x":1751872261529,"y":27.626},{"x":1751872201377,"y":33.252},{"x":1751872141232,"y":28.35},{"x":1751872081069,"y":35.092},{"x":1751872020914,"y":24.448},{"x":1751871960773,"y":24.432},{"x":1751871900700,"y":35.129},{"x":1751871840527,"y":35.717},{"x":1751871780309,"y":52.644},{"x":1751871720256,"y":36.962},{"x":1751871662934,"y":33.651},{"x":1751871602773,"y":26.619},{"x":1751871542626,"y":21.676},{"x":1751871482501,"y":26.294},{"x":1751871422294,"y":33.337},{"x":1751871362129,"y":30.242},{"x":1751871301976,"y":27.285},{"x":1751871241820,"y":30.081},{"x":1751871181669,"y":26.063},{"x":1751871121522,"y":29.439},{"x":1751871061381,"y":27.985},{"x":1751871001235,"y":39.712},{"x":1751870941065,"y":42.937},{"x":1751870880883,"y":40.364},{"x":1751870820725,"y":38.991},{"x":1751870760590,"y":44.017},{"x":1751870700616,"y":27.817},{"x":1751870640271,"y":32.595},{"x":1751870582980,"y":26.209},{"x":1751870522830,"y":41.673},{"x":1751870462677,"y":25.174},{"x":1751870402544,"y":23.005},{"x":1751870342371,"y":31.737},{"x":1751870282258,"y":36.444},{"x":1751870222080,"y":50.114},{"x":1751870161918,"y":28.266},{"x":1751870101776,"y":30.436},{"x":1751870041631,"y":20.905},{"x":1751869981491,"y":34.006},{"x":1751869921341,"y":39.356},{"x":1751869861193,"y":35.866},{"x":1751869801025,"y":47.516},{"x":1751869740849,"y":38.968},{"x":1751869680701,"y":30.806},{"x":1751869620568,"y":32.213},{"x":1751869560353,"y":27.86},{"x":1751869500218,"y":32.573},{"x":1751869442885,"y":29.78},{"x":1751869382731,"y":32.502},{"x":1751869322592,"y":44.698},{"x":1751869262444,"y":35.998},{"x":1751869202299,"y":44.826},{"x":1751869142130,"y":39.477},{"x":1751869081934,"y":62.134},{"x":1751869021750,"y":55.298},{"x":1751868961606,"y":55.988},{"x":1751868901463,"y":38.741},{"x":1751868841322,"y":54.003},{"x":1751868781154,"y":62.841},{"x":1751868720992,"y":57.589},{"x":1751868660852,"y":69.58},{"x":1751868600701,"y":43.607},{"x":1751868540551,"y":31.235},{"x":1751868480374,"y":41.915},{"x":1751868420170,"y":44.023},{"x":1751868362942,"y":25.189},{"x":1751868302828,"y":26.115},{"x":1751868242638,"y":19.984},{"x":1751868182480,"y":26.366},{"x":1751868122319,"y":21.556},{"x":1751868062185,"y":23.076},{"x":1751868002056,"y":24.524},{"x":1751867941804,"y":26.517},{"x":1751867881655,"y":27.965},{"x":1751867821508,"y":25.838},{"x":1751867761390,"y":25.152},{"x":1751867701216,"y":23.747},{"x":1751867641052,"y":22.762},{"x":1751867580884,"y":24.732},{"x":1751867520734,"y":23.391},{"x":1751867460578,"y":22.923},{"x":1751867400428,"y":22.426},{"x":1751867340231,"y":22.139},{"x":1751867282951,"y":30.0},{"x":1751867222798,"y":28.802},{"x":1751867162642,"y":36.894},{"x":1751867102487,"y":31.674},{"x":1751867042343,"y":28.785},{"x":1751866982230,"y":26.549},{"x":1751866922042,"y":26.693},{"x":1751866861891,"y":25.912},{"x":1751866801741,"y":28.798},{"x":1751866741540,"y":22.537},{"x":1751866681378,"y":34.558},{"x":1751866621228,"y":39.688},{"x":1751866561072,"y":53.392},{"x":1751866500907,"y":49.203},{"x":1751866440753,"y":50.437},{"x":1751866380616,"y":36.438},{"x":1751866320470,"y":39.039},{"x":1751866260362,"y":30.284},{"x":1751866202994,"y":24.39},{"x":1751866142826,"y":27.124},{"x":1751866082687,"y":26.439},{"x":1751866022542,"y":25.828},{"x":1751865962396,"y":27.029},{"x":1751865902251,"y":25.737},{"x":1751865842105,"y":36.415},{"x":1751865781932,"y":36.148},{"x":1751865721776,"y":35.662},{"x":1751865661629,"y":37.886},{"x":1751865601487,"y":39.398},{"x":1751865541344,"y":24.116},{"x":1751865481165,"y":26.181},{"x":1751865420932,"y":26.825},{"x":1751865360776,"y":26.055},{"x":1751865300686,"y":25.868},{"x":1751865240542,"y":40.491},{"x":1751865180298,"y":39.473},{"x":1751865123022,"y":36.563},{"x":1751865062874,"y":35.948},{"x":1751865002724,"y":34.306},{"x":1751864942582,"y":47.19},{"x":1751864882436,"y":33.68},{"x":1751864822270,"y":31.115},{"x":1751864762104,"y":33.51},{"x":1751864701938,"y":33.702},{"x":1751864641785,"y":28.518},{"x":1751864581609,"y":32.174},{"x":1751864521454,"y":28.748},{"x":1751864461295,"y":27.829},{"x":1751864401220,"y":23.275},{"x":1751864340948,"y":24.77},{"x":1751864280801,"y":24.821},{"x":1751864220646,"y":29.005},{"x":1751864160529,"y":24.187},{"x":1751864100447,"y":26.377},{"x":1751864040292,"y":29.506},{"x":1751863982896,"y":29.533},{"x":1751863922759,"y":29.265},{"x":1751863862591,"y":28.068},{"x":1751863802436,"y":30.166},{"x":1751863742283,"y":25.569},{"x":1751863682139,"y":26.91},{"x":1751863621976,"y":24.575},{"x":1751863561831,"y":23.969},{"x":1751863501690,"y":21.593},{"x":1751863441562,"y":23.314},{"x":1751863381393,"y":23.873},{"x":1751863321246,"y":26.321},{"x":1751863261092,"y":24.601},{"x":1751863200875,"y":25.717},{"x":1751863140715,"y":24.247},{"x":1751863080576,"y":26.156},{"x":1751863020564,"y":24.19},{"x":1751862960212,"y":23.758},{"x":1751862902893,"y":37.106},{"x":1751862842730,"y":49.865},{"x":1751862782594,"y":47.57},{"x":1751862722454,"y":47.92},{"x":1751862662314,"y":47.303},{"x":1751862602159,"y":39.51},{"x":1751862541993,"y":34.852},{"x":1751862481854,"y":26.382},{"x":1751862421711,"y":26.106},{"x":1751862361564,"y":29.919},{"x":1751862301424,"y":29.55},{"x":1751862241294,"y":29.707},{"x":1751862181125,"y":35.619},{"x":1751862120957,"y":37.401},{"x":1751862060813,"y":29.905},{"x":1751862000704,"y":27.812},{"x":1751861940544,"y":41.346},{"x":1751861880379,"y":37.9},{"x":1751861820140,"y":36.918},{"x":1751861762897,"y":37.313},{"x":1751861702756,"y":37.769},{"x":1751861642608,"y":27.368},{"x":1751861582472,"y":24.253},{"x":1751861522325,"y":26.657},{"x":1751861462184,"y":33.098},{"x":1751861402039,"y":32.578},{"x":1751861341893,"y":29.73},{"x":1751861281745,"y":31.138},{"x":1751861221592,"y":27.759},{"x":1751861161434,"y":28.336},{"x":1751861101295,"y":31.558},{"x":1751861041132,"y":25.058},{"x":1751860980973,"y":25.352},{"x":1751860920827,"y":27.939},{"x":1751860860663,"y":24.618},{"x":1751860800702,"y":27.78},{"x":1751860740322,"y":28.706},{"x":1751860680013,"y":44.55},{"x":1751860622877,"y":40.172},{"x":1751860562688,"y":38.97},{"x":1751860502556,"y":38.344},{"x":1751860442378,"y":42.772},{"x":1751860382236,"y":23.666},{"x":1751860322091,"y":23.985},{"x":1751860261928,"y":24.855},{"x":1751860201679,"y":27.343},{"x":1751860141533,"y":31.358},{"x":1751860081391,"y":35.033},{"x":1751860021241,"y":34.41},{"x":1751859961078,"y":35.517},{"x":1751859900928,"y":35.35},{"x":1751859840766,"y":33.916},{"x":1751859780601,"y":35.253},{"x":1751859720472,"y":32.267},{"x":1751859660315,"y":28.276},{"x":1751859600087,"y":26.82},{"x":1751859542887,"y":31.657},{"x":1751859482682,"y":30.207},{"x":1751859422528,"y":32.678},{"x":1751859362390,"y":29.517},{"x":1751859302252,"y":30.423},{"x":1751859242103,"y":38.432},{"x":1751859181940,"y":38.76},{"x":1751859121800,"y":40.949},{"x":1751859061647,"y":43.505},{"x":1751859001504,"y":41.378},{"x":1751858941334,"y":29.97},{"x":1751858881191,"y":29.462},{"x":1751858821033,"y":30.291},{"x":1751858760890,"y":33.696},{"x":1751858700729,"y":31.495},{"x":1751858640603,"y":31.39},{"x":1751858583417,"y":29.217},{"x":1751858521722,"y":29.787},{"x":1751858461579,"y":27.042},{"x":1751858401433,"y":33.761},{"x":1751858341290,"y":34.035},{"x":1751858281154,"y":35.469},{"x":1751858220991,"y":48.262},{"x":1751858160758,"y":54.358},{"x":1751858100610,"y":48.522},{"x":1751858040429,"y":46.258},{"x":1751857980278,"y":42.144},{"x":1751857922951,"y":26.315},{"x":1751857862808,"y":28.972},{"x":1751857802657,"y":27.953},{"x":1751857742510,"y":30.599},{"x":1751857682334,"y":25.561},{"x":1751857622194,"y":27.921},{"x":1751857562042,"y":28.143},{"x":1751857501120,"y":28.018},{"x":1751857441129,"y":26.556},{"x":1751857381751,"y":32.531},{"x":1751857322334,"y":28.259},{"x":1751857262091,"y":28.648},{"x":1751857202812,"y":30.636},{"x":1751857142652,"y":29.187},{"x":1751857082503,"y":28.407},{"x":1751857022341,"y":28.506},{"x":1751856962205,"y":24.983},{"x":1751856902040,"y":30.176},{"x":1751856841881,"y":27.635},{"x":1751856781732,"y":27.961},{"x":1751856721585,"y":31.991},{"x":1751856661428,"y":31.557},{"x":1751856601228,"y":32.083},{"x":1751856541059,"y":29.048},{"x":1751856480897,"y":27.406},{"x":1751856420734,"y":27.522},{"x":1751856360590,"y":29.139},{"x":1751856300509,"y":25.813},{"x":1751856240339,"y":27.244},{"x":1751856182961,"y":29.168},{"x":1751856122799,"y":26.071},{"x":1751856062657,"y":25.593},{"x":1751856002517,"y":25.046},{"x":1751855942372,"y":28.219},{"x":1751855882220,"y":27.687},{"x":1751855822077,"y":26.999},{"x":1751855761909,"y":26.391},{"x":1751855701760,"y":32.519},{"x":1751855641619,"y":27.054},{"x":1751855581498,"y":27.823},{"x":1751855521329,"y":28.373},{"x":1751855461185,"y":30.471},{"x":1751855400994,"y":26.013},{"x":1751855340847,"y":28.552},{"x":1751855280702,"y":25.956},{"x":1751855220578,"y":26.16},{"x":1751855160496,"y":28.043},{"x":1751855100245,"y":30.676},{"x":1751855042951,"y":28.111},{"x":1751854982808,"y":31.438},{"x":1751854922654,"y":29.027},{"x":1751854862499,"y":41.4},{"x":1751854802337,"y":40.787},{"x":1751854742191,"y":37.131},{"x":1751854682026,"y":54.64},{"x":1751854621843,"y":48.519},{"x":1751854561696,"y":39.127},{"x":1751854501552,"y":36.731},{"x":1751854441406,"y":35.965},{"x":1751854381260,"y":28.086},{"x":1751854321109,"y":37.597},{"x":1751854260953,"y":38.954},{"x":1751854200826,"y":39.117},{"x":1751854140643,"y":35.609},{"x":1751854080575,"y":38.913},{"x":1751854020357,"y":32.011},{"x":1751853960124,"y":24.844},{"x":1751853902888,"y":37.626},{"x":1751853842725,"y":40.607},{"x":1751853782568,"y":38.015},{"x":1751853722435,"y":39.202},{"x":1751853662274,"y":44.632},{"x":1751853602185,"y":31.856},{"x":1751853541907,"y":32.348},{"x":1751853481759,"y":29.44},{"x":1751853421621,"y":28.521},{"x":1751853361478,"y":29.7},{"x":1751853301333,"y":25.769},{"x":1751853241186,"y":24.594},{"x":1751853181012,"y":24.821},{"x":1751853120851,"y":28.627},{"x":1751853060711,"y":31.202},{"x":1751853000576,"y":30.115},{"x":1751852940465,"y":30.017},{"x":1751852880289,"y":31.211},{"x":1751852823014,"y":27.873},{"x":1751852762840,"y":26.734},{"x":1751852702689,"y":27.248},{"x":1751852642546,"y":30.769},{"x":1751852582406,"y":25.129},{"x":1751852522259,"y":25.92},{"x":1751852462102,"y":25.311},{"x":1751852401952,"y":30.875},{"x":1751852341794,"y":31.751},{"x":1751852281651,"y":27.784},{"x":1751852221504,"y":27.219},{"x":1751852161354,"y":29.056},{"x":1751852101220,"y":27.602},{"x":1751852041057,"y":27.921},{"x":1751851980882,"y":31.657},{"x":1751851920725,"y":28.397},{"x":1751851860570,"y":34.392},{"x":1751851800442,"y":35.623},{"x":1751851740288,"y":34.832},{"x":1751851682972,"y":38.458},{"x":1751851622827,"y":41.081},{"x":1751851562678,"y":34.844},{"x":1751851502523,"y":33.203},{"x":1751851442373,"y":32.268},{"x":1751851382238,"y":34.603},{"x":1751851322057,"y":35.042},{"x":1751851261928,"y":34.573},{"x":1751851201753,"y":37.916},{"x":1751851141590,"y":35.138},{"x":1751851081413,"y":35.175},{"x":1751851021231,"y":32.968},{"x":1751850961060,"y":41.001},{"x":1751850900895,"y":35.732},{"x":1751850840742,"y":35.756},{"x":1751850780571,"y":36.159},{"x":1751850720526,"y":37.993},{"x":1751850660265,"y":33.087},{"x":1751850603014,"y":32.446},{"x":1751850542809,"y":35.646},{"x":1751850482660,"y":37.545},{"x":1751850422516,"y":36.121},{"x":1751850362370,"y":34.539},{"x":1751850302222,"y":35.364},{"x":1751850242075,"y":34.92},{"x":1751850181913,"y":31.463},{"x":1751850121771,"y":32.615},{"x":1751850061617,"y":33.903},{"x":1751850001482,"y":34.321},{"x":1751849941280,"y":38.981},{"x":1751849881130,"y":38.118},{"x":1751849820943,"y":36.373},{"x":1751849760799,"y":36.319},{"x":1751849700679,"y":40.868},{"x":1751849640533,"y":35.666},{"x":1751849580378,"y":33.458},{"x":1751849520160,"y":35.445},{"x":1751849462902,"y":38.485},{"x":1751849402754,"y":34.914},{"x":1751849342607,"y":35.094},{"x":1751849282457,"y":38.293},{"x":1751849222311,"y":35.214},{"x":1751849162164,"y":30.918},{"x":1751849102006,"y":48.109},{"x":1751849041850,"y":58.112},{"x":1751848981698,"y":61.628},{"x":1751848921522,"y":60.407},{"x":1751848861367,"y":58.501},{"x":1751848801213,"y":34.161},{"x":1751848741044,"y":36.722},{"x":1751848680882,"y":33.49},{"x":1751848620750,"y":35.76},{"x":1751848560598,"y":35.496},{"x":1751848500505,"y":32.539},{"x":1751848440427,"y":31.212},{"x":1751848382983,"y":31.649},{"x":1751848322829,"y":33.893},{"x":1751848262651,"y":41.342},{"x":1751848202501,"y":39.483},{"x":1751848142330,"y":37.083},{"x":1751848082155,"y":47.026},{"x":1751848021992,"y":59.409},{"x":1751847961829,"y":60.745},{"x":1751847901704,"y":56.064},{"x":1751847841543,"y":57.772},{"x":1751847781397,"y":57.355},{"x":1751847721253,"y":57.16},{"x":1751847661056,"y":55.741},{"x":1751847600931,"y":60.84},{"x":1751847540713,"y":61.206},{"x":1751847480512,"y":59.064},{"x":1751847420347,"y":58.617},{"x":1751847360049,"y":36.904},{"x":1751847302878,"y":36.202},{"x":1751847242711,"y":38.606},{"x":1751847182572,"y":32.756},{"x":1751847122420,"y":33.164},{"x":1751847062281,"y":33.603},{"x":1751847002145,"y":33.385},{"x":1751846941933,"y":33.263},{"x":1751846881778,"y":36.031},{"x":1751846821634,"y":38.589},{"x":1751846761491,"y":39.496},{"x":1751846701347,"y":37.169},{"x":1751846641200,"y":36.559},{"x":1751846581033,"y":37.802},{"x":1751846520839,"y":36.075},{"x":1751846460670,"y":32.709},{"x":1751846400604,"y":33.46},{"x":1751846340368,"y":35.819},{"x":1751846280163,"y":43.573},{"x":1751846222886,"y":39.086},{"x":1751846162745,"y":37.041},{"x":1751846102595,"y":38.83},{"x":1751846042468,"y":34.993},{"x":1751845982310,"y":35.174},{"x":1751845922151,"y":34.893},{"x":1751845861980,"y":34.904},{"x":1751845801853,"y":33.722},{"x":1751845741598,"y":36.309},{"x":1751845681432,"y":33.344},{"x":1751845621281,"y":33.804},{"x":1751845561114,"y":40.067},{"x":1751845500964,"y":41.8},{"x":1751845440785,"y":39.886},{"x":1751845380638,"y":37.959},{"x":1751845320511,"y":35.993},{"x":1751845260375,"y":33.555},{"x":1751845200249,"y":38.114},{"x":1751845142939,"y":34.029},{"x":1751845082791,"y":33.158},{"x":1751845022637,"y":32.177},{"x":1751844962492,"y":33.448},{"x":1751844902343,"y":37.36},{"x":1751844842197,"y":34.084},{"x":1751844782046,"y":36.469},{"x":1751844721893,"y":38.62},{"x":1751844661736,"y":37.18},{"x":1751844601601,"y":37.489},{"x":1751844541439,"y":34.802},{"x":1751844481296,"y":37.132},{"x":1751844421142,"y":37.871},{"x":1751844360988,"y":34.497},{"x":1751844300847,"y":33.245},{"x":1751844240691,"y":39.197},{"x":1751844180603,"y":37.601},{"x":1751844120394,"y":37.261},{"x":1751844060154,"y":34.757},{"x":1751844002919,"y":35.293},{"x":1751843942763,"y":37.959},{"x":1751843882567,"y":37.971},{"x":1751843822382,"y":34.378},{"x":1751843762241,"y":33.864},{"x":1751843702081,"y":34.848},{"x":1751843641922,"y":39.529},{"x":1751843581771,"y":38.546},{"x":1751843521625,"y":37.641},{"x":1751843461466,"y":36.711},{"x":1751843401344,"y":39.953},{"x":1751843341171,"y":34.376},{"x":1751843281018,"y":33.742},{"x":1751843220821,"y":36.819},{"x":1751843160665,"y":33.518},{"x":1751843100566,"y":33.106},{"x":1751843040397,"y":35.551},{"x":1751842980217,"y":36.937},{"x":1751842922922,"y":37.86},{"x":1751842862753,"y":38.17},{"x":1751842802612,"y":38.683},{"x":1751842742456,"y":34.777},{"x":1751842682307,"y":34.056},{"x":1751842622136,"y":33.559},{"x":1751842561984,"y":36.449},{"x":1751842501829,"y":35.037},{"x":1751842441680,"y":25.634},{"x":1751842381519,"y":28.248},{"x":1751842321362,"y":31.461},{"x":1751842261203,"y":29.865},{"x":1751842201054,"y":30.897},{"x":1751842140841,"y":31.604},{"x":1751842080690,"y":31.024},{"x":1751842020559,"y":28.792},{"x":1751841960426,"y":25.966},{"x":1751841900247,"y":27.558},{"x":1751841842897,"y":29.078},{"x":1751841782750,"y":27.259},{"x":1751841722592,"y":24.855},{"x":1751841662446,"y":27.613},{"x":1751841602299,"y":28.067},{"x":1751841542140,"y":30.322},{"x":1751841481968,"y":35.52},{"x":1751841421820,"y":29.695},{"x":1751841361654,"y":26.924},{"x":1751841301537,"y":28.304},{"x":1751841241365,"y":25.071},{"x":1751841181214,"y":26.1},{"x":1751841121066,"y":26.257},{"x":1751841060892,"y":26.063},{"x":1751841000865,"y":25.911},{"x":1751840940560,"y":27.78},{"x":1751840880424,"y":31.456},{"x":1751840820241,"y":38.05},{"x":1751840762913,"y":37.414},{"x":1751840702773,"y":33.929},{"x":1751840642609,"y":30.652},{"x":1751840582458,"y":28.391},{"x":1751840522312,"y":30.348},{"x":1751840462177,"y":27.447},{"x":1751840401995,"y":28.402},{"x":1751840341832,"y":26.158},{"x":1751840281697,"y":28.81},{"x":1751840221480,"y":28.696},{"x":1751840161332,"y":31.991},{"x":1751840101186,"y":28.043},{"x":1751840041009,"y":29.754},{"x":1751839980852,"y":31.545},{"x":1751839920711,"y":28.717},{"x":1751839860533,"y":27.559},{"x":1751839800451,"y":30.045},{"x":1751839740278,"y":24.043},{"x":1751839682934,"y":24.24},{"x":1751839622790,"y":25.398},{"x":1751839562624,"y":28.736},{"x":1751839502458,"y":32.528},{"x":1751839442317,"y":33.17},{"x":1751839382178,"y":30.318},{"x":1751839322019,"y":31.432},{"x":1751839261893,"y":34.244},{"x":1751839201739,"y":35.013},{"x":1751839141569,"y":38.458},{"x":1751839081419,"y":31.767},{"x":1751839021264,"y":32.881},{"x":1751838961114,"y":29.152},{"x":1751838900949,"y":35.035},{"x":1751838840798,"y":32.765},{"x":1751838780660,"y":32.389},{"x":1751838720516,"y":31.727},{"x":1751838660377,"y":33.105},{"x":1751838600043,"y":29.556},{"x":1751838542864,"y":29.029},{"x":1751838482713,"y":33.716},{"x":1751838422558,"y":31.748},{"x":1751838362410,"y":34.545},{"x":1751838302270,"y":32.575},{"x":1751838242124,"y":32.849},{"x":1751838181975,"y":35.086},{"x":1751838121832,"y":32.741},{"x":1751838061676,"y":35.825},{"x":1751838001514,"y":31.406},{"x":1751837941371,"y":31.332},{"x":1751837881211,"y":31.272},{"x":1751837821050,"y":38.475},{"x":1751837760890,"y":35.063},{"x":1751837700741,"y":34.062},{"x":1751837640602,"y":33.622},{"x":1751837580451,"y":36.785},{"x":1751837520332,"y":34.248},{"x":1751837460023,"y":32.212},{"x":1751837402887,"y":33.922},{"x":1751837342737,"y":33.55},{"x":1751837282562,"y":31.963},{"x":1751837222414,"y":34.795},{"x":1751837162266,"y":36.297},{"x":1751837102091,"y":34.493},{"x":1751837041937,"y":31.332},{"x":1751836981784,"y":34.032},{"x":1751836921637,"y":36.002},{"x":1751836861492,"y":35.757},{"x":1751836801337,"y":33.934},{"x":1751836741182,"y":33.048},{"x":1751836680953,"y":35.451},{"x":1751836620762,"y":35.633},{"x":1751836560575,"y":31.743},{"x":1751836500511,"y":36.762},{"x":1751836440235,"y":31.898},{"x":1751836382999,"y":30.423},{"x":1751836322845,"y":30.545},{"x":1751836262692,"y":34.387},{"x":1751836202543,"y":38.639},{"x":1751836142396,"y":40.294},{"x":1751836082250,"y":36.242},{"x":1751836022083,"y":34.491},{"x":1751835961929,"y":32.214},{"x":1751835901807,"y":34.516},{"x":1751835841625,"y":40.285},{"x":1751835781458,"y":33.235},{"x":1751835721307,"y":30.183},{"x":1751835661158,"y":31.139},{"x":1751835601030,"y":34.338},{"x":1751835540733,"y":35.056},{"x":1751835480601,"y":34.655},{"x":1751835420442,"y":36.778},{"x":1751835360300,"y":54.734},{"x":1751835302966,"y":55.907},{"x":1751835242809,"y":51.876},{"x":1751835182678,"y":54.686},{"x":1751835122512,"y":46.764},{"x":1751835062339,"y":41.545},{"x":1751835002186,"y":32.873},{"x":1751834942029,"y":31.497},{"x":1751834881870,"y":32.437},{"x":1751834821718,"y":34.671},{"x":1751834761575,"y":32.234},{"x":1751834701426,"y":33.646},{"x":1751834641263,"y":31.844},{"x":1751834581099,"y":34.349},{"x":1751834520944,"y":39.207},{"x":1751834460788,"y":33.008},{"x":1751834400674,"y":34.965},{"x":1751834340498,"y":34.107},{"x":1751834280381,"y":32.693},{"x":1751834220198,"y":37.066},{"x":1751834162927,"y":33.025},{"x":1751834102774,"y":32.532},{"x":1751834042625,"y":39.494},{"x":1751833982481,"y":31.075},{"x":1751833922332,"y":43.522},{"x":1751833862214,"y":43.909},{"x":1751833802040,"y":40.955},{"x":1751833741883,"y":42.156},{"x":1751833681728,"y":42.247},{"x":1751833621575,"y":36.3},{"x":1751833561420,"y":36.693},{"x":1751833501265,"y":34.549},{"x":1751833441116,"y":34.042},{"x":1751833380949,"y":35.485},{"x":1751833320834,"y":33.654},{"x":1751833260666,"y":34.007},{"x":1751833200583,"y":36.406},{"x":1751833140452,"y":33.864},{"x":1751833080339,"y":34.651},{"x":1751833022919,"y":37.953},{"x":1751832962760,"y":36.993},{"x":1751832902600,"y":39.954},{"x":1751832842445,"y":39.479},{"x":1751832782304,"y":40.232},{"x":1751832722152,"y":41.44},{"x":1751832661984,"y":38.184},{"x":1751832601836,"y":34.218},{"x":1751832541687,"y":30.238},{"x":1751832481529,"y":35.837},{"x":1751832421357,"y":35.959},{"x":1751832361185,"y":43.379},{"x":1751832301022,"y":43.027},{"x":1751832240857,"y":48.424},{"x":1751832180726,"y":45.817},{"x":1751832120549,"y":46.592},{"x":1751832060463,"y":37.501},{"x":1751832000326,"y":37.373},{"x":1751831942939,"y":38.286},{"x":1751831882746,"y":32.742},{"x":1751831822601,"y":33.062},{"x":1751831762453,"y":38.367},{"x":1751831702310,"y":31.73},{"x":1751831642168,"y":32.867},{"x":1751831582017,"y":37.194},{"x":1751831521875,"y":38.133},{"x":1751831461734,"y":44.178},{"x":1751831401590,"y":41.443},{"x":1751831341450,"y":38.603},{"x":1751831281295,"y":48.432},{"x":1751831221144,"y":48.499},{"x":1751831160986,"y":45.478},{"x":1751831100857,"y":48.74},{"x":1751831040665,"y":42.17},{"x":1751830980486,"y":36.164},{"x":1751830920331,"y":35.144},{"x":1751830860032,"y":38.679},{"x":1751830802865,"y":38.123},{"x":1751830742720,"y":40.519},{"x":1751830682575,"y":36.517},{"x":1751830622422,"y":37.929},{"x":1751830562278,"y":34.962},{"x":1751830502118,"y":35.252},{"x":1751830441969,"y":44.153},{"x":1751830381813,"y":46.532},{"x":1751830321655,"y":46.152},{"x":1751830261499,"y":42.717},{"x":1751830201382,"y":47.674},{"x":1751830141174,"y":42.17},{"x":1751830080986,"y":40.82},{"x":1751830020838,"y":43.507},{"x":1751829960703,"y":36.93},{"x":1751829900652,"y":35.333},{"x":1751829840731,"y":34.483},{"x":1751829780216,"y":35.979},{"x":1751829722939,"y":35.892},{"x":1751829662783,"y":37.639},{"x":1751829602613,"y":38.194},{"x":1751829542471,"y":35.827},{"x":1751829482300,"y":37.675},{"x":1751829422111,"y":38.373},{"x":1751829361941,"y":42.767},{"x":1751829301800,"y":49.39},{"x":1751829241631,"y":49.031},{"x":1751829181473,"y":50.911},{"x":1751829121321,"y":48.103},{"x":1751829061162,"y":42.624},{"x":1751829001011,"y":42.166},{"x":1751828940832,"y":41.727},{"x":1751828880657,"y":45.564},{"x":1751828820455,"y":42.171},{"x":1751828760312,"y":42.499},{"x":1751828702985,"y":42.494},{"x":1751828642836,"y":48.298},{"x":1751828582676,"y":44.15},{"x":1751828522522,"y":45.959},{"x":1751828462380,"y":41.527},{"x":1751828402252,"y":45.328},{"x":1751828342070,"y":31.434},{"x":1751828281912,"y":31.217},{"x":1751828221749,"y":31.565},{"x":1751828161611,"y":36.947},{"x":1751828101460,"y":42.109},{"x":1751828041300,"y":36.943},{"x":1751827981151,"y":37.358},{"x":1751827920989,"y":36.94},{"x":1751827860845,"y":34.575},{"x":1751827800708,"y":41.577},{"x":1751827740549,"y":34.383},{"x":1751827680462,"y":38.251},{"x":1751827620098,"y":33.156},{"x":1751827562880,"y":32.082},{"x":1751827502727,"y":38.771},{"x":1751827442574,"y":35.844},{"x":1751827382412,"y":37.916},{"x":1751827322261,"y":38.283},{"x":1751827262083,"y":38.082},{"x":1751827201921,"y":38.723},{"x":1751827141770,"y":34.14},{"x":1751827081624,"y":34.24},{"x":1751827021478,"y":48.35},{"x":1751826961320,"y":40.521},{"x":1751826901166,"y":41.163},{"x":1751826840997,"y":37.637},{"x":1751826780853,"y":36.663},{"x":1751826720712,"y":48.647},{"x":1751826660579,"y":43.804},{"x":1751826600493,"y":43.694},{"x":1751826540339,"y":41.107},{"x":1751826482947,"y":37.605},{"x":1751826422798,"y":52.082},{"x":1751826362657,"y":36.964},{"x":1751826302497,"y":52.237},{"x":1751826242339,"y":38.496},{"x":1751826182184,"y":39.113},{"x":1751826122031,"y":38.409},{"x":1751826061866,"y":37.395},{"x":1751826001717,"y":40.318},{"x":1751825941529,"y":36.831},{"x":1751825881337,"y":47.749},{"x":1751825821141,"y":58.668},{"x":1751825760961,"y":69.997},{"x":1751825700828,"y":61.861},{"x":1751825640656,"y":71.385},{"x":1751825580534,"y":59.649},{"x":1751825520408,"y":40.019},{"x":1751825463018,"y":57.856},{"x":1751825402861,"y":43.861},{"x":1751825342712,"y":43.802},{"x":1751825282549,"y":45.029},{"x":1751825222384,"y":40.821},{"x":1751825162231,"y":46.427},{"x":1751825102080,"y":47.23},{"x":1751825041917,"y":41.702},{"x":1751824981765,"y":38.62},{"x":1751824921622,"y":47.997},{"x":1751824861453,"y":43.22},{"x":1751824801399,"y":45.886},{"x":1751824741089,"y":47.76},{"x":1751824680936,"y":45.982},{"x":1751824620787,"y":40.922},{"x":1751824560659,"y":37.075},{"x":1751824500540,"y":37.378},{"x":1751824440290,"y":39.252},{"x":1751824380144,"y":32.739},{"x":1751824322890,"y":32.518},{"x":1751824262747,"y":36.166},{"x":1751824202606,"y":41.271},{"x":1751824142454,"y":44.928},{"x":1751824082308,"y":49.983},{"x":1751824022167,"y":46.705},{"x":1751823962003,"y":47.833},{"x":1751823901860,"y":38.768},{"x":1751823841707,"y":39.785},{"x":1751823781537,"y":35.686},{"x":1751823721379,"y":35.642},{"x":1751823661241,"y":35.248},{"x":1751823601089,"y":38.521},{"x":1751823540944,"y":38.798},{"x":1751823480789,"y":36.974},{"x":1751823420649,"y":48.625},{"x":1751823360576,"y":36.197},{"x":1751823300379,"y":38.143},{"x":1751823240197,"y":36.011},{"x":1751823182897,"y":37.556},{"x":1751823122747,"y":35.8},{"x":1751823062597,"y":39.242},{"x":1751823002429,"y":33.648},{"x":1751822942286,"y":30.095},{"x":1751822882141,"y":31.108},{"x":1751822821973,"y":28.982},{"x":1751822761820,"y":30.394},{"x":1751822701675,"y":34.517},{"x":1751822641517,"y":32.664},{"x":1751822581372,"y":35.336},{"x":1751822521197,"y":34.856},{"x":1751822461021,"y":31.881},{"x":1751822400889,"y":34.957},{"x":1751822340705,"y":38.306},{"x":1751822280532,"y":38.257},{"x":1751822220337,"y":37.697},{"x":1751822160027,"y":31.765},{"x":1751822102886,"y":30.175},{"x":1751822042713,"y":27.485},{"x":1751821982564,"y":45.339},{"x":1751821922412,"y":43.734},{"x":1751821862269,"y":43.404},{"x":1751821802083,"y":43.075},{"x":1751821741922,"y":45.44},{"x":1751821681783,"y":24.067},{"x":1751821621641,"y":24.173},{"x":1751821561499,"y":32.863},{"x":1751821501332,"y":35.472},{"x":1751821441187,"y":35.571},{"x":1751821381016,"y":34.339},{"x":1751821320866,"y":26.154},{"x":1751821260713,"y":27.427},{"x":1751821200614,"y":21.663},{"x":1751821140462,"y":28.439},{"x":1751821080205,"y":35.479},{"x":1751821022930,"y":33.864},{"x":1751820962773,"y":32.845},{"x":1751820902599,"y":38.604},{"x":1751820842440,"y":39.613},{"x":1751820782295,"y":32.577},{"x":1751820722174,"y":30.143},{"x":1751820661989,"y":34.052},{"x":1751820601845,"y":25.634},{"x":1751820541694,"y":26.481},{"x":1751820481552,"y":27.037},{"x":1751820421396,"y":31.562},{"x":1751820361246,"y":28.081},{"x":1751820301107,"y":57.014},{"x":1751820240930,"y":39.009},{"x":1751820180779,"y":56.932},{"x":1751820120642,"y":40.242},{"x":1751820060507,"y":32.751},{"x":1751820000366,"y":29.38},{"x":1751819940243,"y":27.193},{"x":1751819882943,"y":31.712},{"x":1751819822788,"y":32.253},{"x":1751819762650,"y":31.636},{"x":1751819702497,"y":31.025},{"x":1751819642351,"y":30.502},{"x":1751819582207,"y":36.147},{"x":1751819522070,"y":44.422},{"x":1751819461906,"y":40.599},{"x":1751819401750,"y":43.05},{"x":1751819341599,"y":43.114},{"x":1751819281440,"y":39.494},{"x":1751819221261,"y":36.033},{"x":1751819161118,"y":40.332},{"x":1751819100954,"y":36.458},{"x":1751819040804,"y":33.77},{"x":1751818980666,"y":32.17},{"x":1751818920511,"y":37.889},{"x":1751818860396,"y":33.533},{"x":1751818803019,"y":36.923},{"x":1751818742865,"y":36.025},{"x":1751818682694,"y":38.057},{"x":1751818622481,"y":42.017},{"x":1751818562308,"y":32.182},{"x":1751818502153,"y":32.48},{"x":1751818441986,"y":34.55},{"x":1751818381822,"y":28.809},{"x":1751818321694,"y":31.141},{"x":1751818261530,"y":25.27},{"x":1751818201362,"y":25.653},{"x":1751818141199,"y":25.722},{"x":1751818081021,"y":27.431},{"x":1751818020870,"y":33.452},{"x":1751817960722,"y":28.74},{"x":1751817900596,"y":38.293},{"x":1751817840437,"y":39.573},{"x":1751817780277,"y":43.569},{"x":1751817722954,"y":36.351},{"x":1751817662798,"y":42.99},{"x":1751817602645,"y":46.01},{"x":1751817542486,"y":50.712},{"x":1751817482348,"y":48.372},{"x":1751817422177,"y":46.332},{"x":1751817362107,"y":54.008},{"x":1751817301930,"y":52.309},{"x":1751817241736,"y":51.032},{"x":1751817181567,"y":64.464},{"x":1751817121403,"y":51.629},{"x":1751817061264,"y":46.151},{"x":1751817001126,"y":48.419},{"x":1751816940944,"y":46.841},{"x":1751816880787,"y":42.449},{"x":1751816820646,"y":38.78},{"x":1751816760500,"y":48.686},{"x":1751816700349,"y":49.77},{"x":1751816642983,"y":46.976},{"x":1751816582839,"y":46.11},{"x":1751816522674,"y":46.437},{"x":1751816462528,"y":30.881},{"x":1751816402374,"y":33.024},{"x":1751816342229,"y":31.084},{"x":1751816282075,"y":31.207},{"x":1751816221935,"y":34.256},{"x":1751816161760,"y":48.73},{"x":1751816101617,"y":45.569},{"x":1751816041478,"y":48.283},{"x":1751815981325,"y":65.723},{"x":1751815921184,"y":50.921},{"x":1751815861030,"y":36.057},{"x":1751815800893,"y":56.103},{"x":1751815740737,"y":39.171},{"x":1751815680620,"y":39.628},{"x":1751815620441,"y":31.958},{"x":1751815560271,"y":31.68},{"x":1751815502934,"y":36.64},{"x":1751815442788,"y":40.151},{"x":1751815382618,"y":36.059},{"x":1751815322465,"y":39.748},{"x":1751815262318,"y":41.048},{"x":1751815202178,"y":36.229},{"x":1751815142026,"y":43.023},{"x":1751815081839,"y":49.723},{"x":1751815021626,"y":39.485},{"x":1751814961475,"y":47.755},{"x":1751814901320,"y":43.935},{"x":1751814841171,"y":45.949},{"x":1751814780993,"y":44.575},{"x":1751814720845,"y":46.455},{"x":1751814660693,"y":58.415},{"x":1751814600611,"y":30.809},{"x":1751814540422,"y":32.97},{"x":1751814480223,"y":34.042},{"x":1751814422919,"y":39.726},{"x":1751814362745,"y":36.977},{"x":1751814302601,"y":54.706},{"x":1751814242444,"y":66.322},{"x":1751814182300,"y":63.15},{"x":1751814122138,"y":65.415},{"x":1751814061973,"y":58.663},{"x":1751814001903,"y":59.985},{"x":1751813941619,"y":38.019},{"x":1751813881460,"y":52.182},{"x":1751813821313,"y":51.241},{"x":1751813761157,"y":35.613},{"x":1751813700996,"y":37.468},{"x":1751813640835,"y":41.009},{"x":1751813580684,"y":31.239},{"x":1751813520573,"y":36.162},{"x":1751813460427,"y":47.716},{"x":1751813400242,"y":44.097},{"x":1751813342834,"y":49.043},{"x":1751813282690,"y":57.01},{"x":1751813222541,"y":45.66},{"x":1751813162381,"y":41.323},{"x":1751813102226,"y":47.71},{"x":1751813042082,"y":44.049},{"x":1751812981911,"y":40.97},{"x":1751812921769,"y":52.377},{"x":1751812861624,"y":44.919},{"x":1751812801484,"y":56.598},{"x":1751812741317,"y":54.776},{"x":1751812681174,"y":54.687},{"x":1751812621035,"y":51.546},{"x":1751812560845,"y":52.755},{"x":1751812500703,"y":53.736},{"x":1751812440546,"y":39.854},{"x":1751812380422,"y":49.32},{"x":1751812320267,"y":51.685},{"x":1751812262997,"y":38.069},{"x":1751812202861,"y":35.778},{"x":1751812142584,"y":34.183},{"x":1751812082433,"y":38.308},{"x":1751812022287,"y":48.207},{"x":1751811962124,"y":48.053},{"x":1751811901972,"y":47.109},{"x":1751811841828,"y":47.251},{"x":1751811781656,"y":40.444},{"x":1751811721513,"y":43.771},{"x":1751811661373,"y":33.942},{"x":1751811601227,"y":35.803},{"x":1751811541073,"y":39.629},{"x":1751811480927,"y":39.89},{"x":1751811420752,"y":41.908},{"x":1751811360586,"y":41.058},{"x":1751811300485,"y":45.796},{"x":1751811240269,"y":43.933},{"x":1751811180050,"y":52.64},{"x":1751811122874,"y":46.941},{"x":1751811062729,"y":34.637},{"x":1751811002585,"y":34.471},{"x":1751810942397,"y":34.008},{"x":1751810882227,"y":40.555},{"x":1751810822096,"y":38.331},{"x":1751810761909,"y":49.9},{"x":1751810701760,"y":56.157},{"x":1751810641614,"y":50.133},{"x":1751810581467,"y":59.277},{"x":1751810521319,"y":62.562},{"x":1751810461163,"y":49.338},{"x":1751810401073,"y":61.847},{"x":1751810340771,"y":61.865},{"x":1751810280642,"y":38.384},{"x":1751810220500,"y":45.592},{"x":1751810160400,"y":51.995},{"x":1751810100322,"y":60.448},{"x":1751810042924,"y":44.051},{"x":1751809982787,"y":43.214},{"x":1751809922639,"y":37.53},{"x":1751809862500,"y":41.123},{"x":1751809802349,"y":56.567},{"x":1751809742201,"y":66.32},{"x":1751809682051,"y":67.473},{"x":1751809621909,"y":57.763},{"x":1751809561770,"y":58.651},{"x":1751809501624,"y":57.807},{"x":1751809441465,"y":45.57},{"x":1751809381313,"y":41.22},{"x":1751809321159,"y":48.194},{"x":1751809260997,"y":47.913},{"x":1751809200849,"y":72.332},{"x":1751809140688,"y":57.523},{"x":1751809080561,"y":67.514},{"x":1751809020375,"y":66.35},{"x":1751808960309,"y":56.273},{"x":1751808903009,"y":52.509},{"x":1751808842863,"y":70.286},{"x":1751808782719,"y":45.521},{"x":1751808722565,"y":59.901},{"x":1751808662418,"y":33.158},{"x":1751808602252,"y":44.59},{"x":1751808542105,"y":44.065},{"x":1751808481946,"y":44.329},{"x":1751808421814,"y":35.726},{"x":1751808361653,"y":37.015},{"x":1751808301518,"y":39.434},{"x":1751808241373,"y":52.993},{"x":1751808181208,"y":39.349},{"x":1751808121060,"y":55.349},{"x":1751808060897,"y":46.347},{"x":1751808000833,"y":42.01},{"x":1751807940608,"y":45.402},{"x":1751807880375,"y":47.88},{"x":1751807820298,"y":41.807},{"x":1751807762943,"y":33.404},{"x":1751807702804,"y":29.384},{"x":1751807642637,"y":54.082},{"x":1751807582487,"y":56.463},{"x":1751807522338,"y":40.328},{"x":1751807462196,"y":49.29},{"x":1751807402019,"y":54.488},{"x":1751807341849,"y":61.039},{"x":1751807281703,"y":54.428},{"x":1751807221573,"y":55.568},{"x":1751807161402,"y":50.729},{"x":1751807101250,"y":48.119},{"x":1751807041105,"y":49.013},{"x":1751806980936,"y":50.063},{"x":1751806920765,"y":52.096},{"x":1751806860625,"y":41.065},{"x":1751806800630,"y":59.367},{"x":1751806740328,"y":48.531},{"x":1751806680256,"y":49.127},{"x":1751806622913,"y":43.88},{"x":1751806562775,"y":37.489},{"x":1751806502611,"y":41.317},{"x":1751806442470,"y":41.06},{"x":1751806382319,"y":33.237},{"x":1751806322180,"y":28.917},{"x":1751806262036,"y":36.009},{"x":1751806201859,"y":34.962},{"x":1751806141691,"y":44.49},{"x":1751806081525,"y":46.363},{"x":1751806021384,"y":40.104},{"x":1751805961226,"y":56.855},{"x":1751805901068,"y":50.532},{"x":1751805840902,"y":49.265},{"x":1751805780772,"y":62.947},{"x":1751805720608,"y":52.479},{"x":1751805660508,"y":54.502},{"x":1751805600396,"y":33.465},{"x":1751805542985,"y":34.183},{"x":1751805482840,"y":51.589},{"x":1751805422693,"y":52.793},{"x":1751805362550,"y":58.022},{"x":1751805302396,"y":67.478},{"x":1751805242240,"y":50.583},{"x":1751805182079,"y":45.544},{"x":1751805121932,"y":36.856},{"x":1751805061785,"y":42.505},{"x":1751805001646,"y":35.192},{"x":1751804941500,"y":45.62},{"x":1751804881354,"y":53.031},{"x":1751804821213,"y":49.839},{"x":1751804761062,"y":54.758},{"x":1751804700905,"y":66.167},{"x":1751804640755,"y":59.469},{"x":1751804580605,"y":49.393},{"x":1751804520466,"y":35.322},{"x":1751804460332,"y":45.69},{"x":1751804402994,"y":57.906},{"x":1751804342856,"y":54.048},{"x":1751804282653,"y":51.712},{"x":1751804222471,"y":69.697},{"x":1751804162305,"y":47.637},{"x":1751804102161,"y":50.705},{"x":1751804041981,"y":46.196},{"x":1751803981833,"y":44.545},{"x":1751803921682,"y":44.302},{"x":1751803861540,"y":54.774},{"x":1751803801386,"y":34.63},{"x":1751803741241,"y":48.724},{"x":1751803681086,"y":49.452},{"x":1751803620928,"y":34.307},{"x":1751803560782,"y":37.742},{"x":1751803500693,"y":27.503},{"x":1751803440533,"y":38.136},{"x":1751803380343,"y":45.639},{"x":1751803322940,"y":41.783},{"x":1751803262820,"y":33.451},{"x":1751803202662,"y":50.805},{"x":1751803142498,"y":36.46},{"x":1751803082349,"y":45.101},{"x":1751803022199,"y":42.166},{"x":1751802962049,"y":48.786},{"x":1751802901899,"y":33.274},{"x":1751802841760,"y":40.318},{"x":1751802781616,"y":43.238},{"x":1751802721465,"y":44.535},{"x":1751802661326,"y":54.174},{"x":1751802601181,"y":39.999},{"x":1751802541027,"y":39.728},{"x":1751802480870,"y":39.355},{"x":1751802420727,"y":42.983},{"x":1751802360591,"y":35.45},{"x":1751802300477,"y":38.182},{"x":1751802240344,"y":49.712},{"x":1751802183014,"y":44.276},{"x":1751802122868,"y":51.093},{"x":1751802062712,"y":54.652},{"x":1751802002562,"y":48.912},{"x":1751801942415,"y":54.051},{"x":1751801882262,"y":55.077},{"x":1751801822113,"y":48.086},{"x":1751801761954,"y":49.209},{"x":1751801701809,"y":65.187},{"x":1751801641663,"y":54.887},{"x":1751801581497,"y":61.762},{"x":1751801521358,"y":69.811},{"x":1751801461205,"y":68.701},{"x":1751801401100,"y":59.108},{"x":1751801340891,"y":45.469},{"x":1751801280718,"y":42.291},{"x":1751801220569,"y":40.44},{"x":1751801160422,"y":47.203},{"x":1751801100392,"y":42.596},{"x":1751801040052,"y":57.514},{"x":1751800982889,"y":68.26},{"x":1751800922734,"y":78.889},{"x":1751800862574,"y":66.56},{"x":1751800802424,"y":73.86},{"x":1751800742283,"y":57.851},{"x":1751800682127,"y":54.903},{"x":1751800621873,"y":58.722},{"x":1751800561728,"y":56.667},{"x":1751800501589,"y":61.394},{"x":1751800441431,"y":59.764},{"x":1751800381291,"y":56.341},{"x":1751800321138,"y":58.292},{"x":1751800260976,"y":51.803},{"x":1751800200850,"y":53.082},{"x":1751800140671,"y":55.181},{"x":1751800080577,"y":45.439},{"x":1751800020391,"y":48.187},{"x":1751799960212,"y":51.52},{"x":1751799902884,"y":41.675},{"x":1751799842727,"y":44.571},{"x":1751799782574,"y":40.883},{"x":1751799722428,"y":53.442},{"x":1751799662248,"y":55.256},{"x":1751799602102,"y":43.284},{"x":1751799541884,"y":61.724},{"x":1751799481734,"y":60.821},{"x":1751799421576,"y":52.998},{"x":1751799361485,"y":46.174},{"x":1751799301290,"y":58.079},{"x":1751799241133,"y":58.33},{"x":1751799180972,"y":61.856},{"x":1751799120820,"y":68.974},{"x":1751799060674,"y":48.675},{"x":1751799000602,"y":54.233},{"x":1751798940388,"y":62.711},{"x":1751798880197,"y":46.681},{"x":1751798822939,"y":61.07},{"x":1751798762754,"y":41.749},{"x":1751798702608,"y":55.039},{"x":1751798642465,"y":75.939},{"x":1751798582337,"y":65.908},{"x":1751798522179,"y":64.354},{"x":1751798462018,"y":47.562},{"x":1751798401873,"y":46.451},{"x":1751798341717,"y":68.902},{"x":1751798281572,"y":46.863},{"x":1751798221434,"y":44.12},{"x":1751798161289,"y":44.652},{"x":1751798101143,"y":56.678},{"x":1751798040979,"y":54.291},{"x":1751797980805,"y":50.968},{"x":1751797920658,"y":38.194},{"x":1751797860501,"y":45.273},{"x":1751797800368,"y":42.756},{"x":1751797740104,"y":59.361},{"x":1751797682894,"y":43.433},{"x":1751797622754,"y":51.112},{"x":1751797562639,"y":53.096},{"x":1751797502467,"y":48.747},{"x":1751797442303,"y":47.294},{"x":1751797382149,"y":60.015},{"x":1751797321990,"y":51.994},{"x":1751797261851,"y":74.672},{"x":1751797201690,"y":64.824},{"x":1751797141520,"y":70.686},{"x":1751797081351,"y":69.365},{"x":1751797021152,"y":62.295},{"x":1751796960987,"y":52.519},{"x":1751796900822,"y":49.863},{"x":1751796840633,"y":41.093},{"x":1751796780532,"y":37.32},{"x":1751796720310,"y":50.795},{"x":1751796662972,"y":38.838},{"x":1751796602831,"y":53.277},{"x":1751796542674,"y":57.412},{"x":1751796482527,"y":50.625},{"x":1751796422383,"y":60.191},{"x":1751796362242,"y":55.654},{"x":1751796302091,"y":41.743},{"x":1751796241925,"y":36.079},{"x":1751796181785,"y":43.407},{"x":1751796121633,"y":42.089},{"x":1751796061483,"y":46.296},{"x":1751796001440,"y":39.807},{"x":1751795941131,"y":34.375},{"x":1751795880965,"y":49.504},{"x":1751795820804,"y":58.137},{"x":1751795760668,"y":65.933},{"x":1751795700542,"y":64.44},{"x":1751795640302,"y":46.195},{"x":1751795580166,"y":47.88},{"x":1751795522902,"y":60.313},{"x":1751795462758,"y":34.88},{"x":1751795402603,"y":41.039},{"x":1751795342458,"y":33.377},{"x":1751795282299,"y":40.825},{"x":1751795222158,"y":49.431},{"x":1751795162004,"y":38.327},{"x":1751795101847,"y":33.435},{"x":1751795041680,"y":53.735},{"x":1751794981532,"y":58.942},{"x":1751794921377,"y":64.851},{"x":1751794861218,"y":57.785},{"x":1751794801051,"y":59.806},{"x":1751794740878,"y":57.328},{"x":1751794680729,"y":41.386},{"x":1751794620589,"y":48.183},{"x":1751794560531,"y":43.137},{"x":1751794500403,"y":46.704},{"x":1751794442930,"y":44.781},{"x":1751794382807,"y":36.431},{"x":1751794322637,"y":45.615},{"x":1751794262498,"y":27.856},{"x":1751794202342,"y":49.852},{"x":1751794142193,"y":47.616},{"x":1751794082040,"y":45.126},{"x":1751794021881,"y":58.927},{"x":1751793961736,"y":56.081},{"x":1751793901590,"y":59.856},{"x":1751793841442,"y":64.27},{"x":1751793781290,"y":50.088},{"x":1751793721141,"y":39.411},{"x":1751793660966,"y":45.304},{"x":1751793600819,"y":51.084},{"x":1751793540652,"y":51.808},{"x":1751793480464,"y":63.694},{"x":1751793420277,"y":51.269},{"x":1751793363017,"y":49.988},{"x":1751793302865,"y":54.335},{"x":1751793242703,"y":49.16},{"x":1751793182558,"y":38.107},{"x":1751793122410,"y":36.313},{"x":1751793062264,"y":39.769},{"x":1751793002097,"y":40.068},{"x":1751792941941,"y":46.925},{"x":1751792881795,"y":43.283},{"x":1751792821635,"y":51.379},{"x":1751792761490,"y":54.114},{"x":1751792701341,"y":54.349},{"x":1751792641173,"y":51.782},{"x":1751792580996,"y":42.095},{"x":1751792520854,"y":46.148},{"x":1751792460696,"y":42.781},{"x":1751792400804,"y":41.941},{"x":1751792340346,"y":32.61},{"x":1751792280183,"y":34.827},{"x":1751792222916,"y":32.867},{"x":1751792162739,"y":31.824},{"x":1751792102568,"y":37.756},{"x":1751792042396,"y":41.655},{"x":1751791982252,"y":34.867},{"x":1751791922107,"y":31.725},{"x":1751791861952,"y":41.966},{"x":1751791801776,"y":44.302},{"x":1751791741618,"y":53.058},{"x":1751791681457,"y":54.597},{"x":1751791621305,"y":42.774},{"x":1751791561191,"y":44.136},{"x":1751791500987,"y":45.231},{"x":1751791440815,"y":35.545},{"x":1751791380672,"y":36.783},{"x":1751791320535,"y":38.466},{"x":1751791260381,"y":45.735},{"x":1751791200231,"y":36.273},{"x":1751791142958,"y":33.041},{"x":1751791082809,"y":37.538},{"x":1751791022646,"y":31.625},{"x":1751790962486,"y":29.64},{"x":1751790902334,"y":29.802},{"x":1751790842180,"y":34.145},{"x":1751790781996,"y":31.669},{"x":1751790721890,"y":36.126},{"x":1751790661679,"y":36.435},{"x":1751790601557,"y":57.497},{"x":1751790541378,"y":56.464},{"x":1751790481235,"y":49.325},{"x":1751790421088,"y":52.521},{"x":1751790360924,"y":49.256},{"x":1751790300819,"y":56.192},{"x":1751790240657,"y":53.883},{"x":1751790180446,"y":55.033},{"x":1751790120338,"y":63.752},{"x":1751790060166,"y":43.49},{"x":1751790002899,"y":33.231},{"x":1751789942752,"y":29.185},{"x":1751789882553,"y":39.921},{"x":1751789822362,"y":44.011},{"x":1751789762192,"y":30.74},{"x":1751789702021,"y":38.54},{"x":1751789641869,"y":37.002},{"x":1751789581721,"y":38.794},{"x":1751789521569,"y":34.681},{"x":1751789461428,"y":36.19},{"x":1751789401279,"y":33.49},{"x":1751789341125,"y":50.418},{"x":1751789280946,"y":61.324},{"x":1751789220801,"y":48.769},{"x":1751789160675,"y":44.826},{"x":1751789100529,"y":58.312},{"x":1751789040399,"y":30.366},{"x":1751788980215,"y":47.484},{"x":1751788922936,"y":46.889},{"x":1751788862782,"y":50.782},{"x":1751788802642,"y":51.363},{"x":1751788742487,"y":41.446},{"x":1751788682343,"y":35.361},{"x":1751788622194,"y":51.141},{"x":1751788562042,"y":41.937},{"x":1751788501888,"y":46.932},{"x":1751788441742,"y":30.071},{"x":1751788381592,"y":29.784},{"x":1751788321435,"y":42.316},{"x":1751788261310,"y":41.448},{"x":1751788201117,"y":42.688},{"x":1751788140937,"y":38.786},{"x":1751788080791,"y":27.095},{"x":1751788020646,"y":51.16},{"x":1751787960493,"y":38.591},{"x":1751787900242,"y":46.676},{"x":1751787842974,"y":47.281},{"x":1751787782819,"y":50.871},{"x":1751787722677,"y":52.51},{"x":1751787662526,"y":45.666},{"x":1751787602378,"y":46.909},{"x":1751787542231,"y":45.541},{"x":1751787482051,"y":43.461},{"x":1751787421896,"y":30.639},{"x":1751787361747,"y":38.903},{"x":1751787301609,"y":42.056},{"x":1751787241454,"y":29.673},{"x":1751787181312,"y":29.725},{"x":1751787121155,"y":30.294},{"x":1751787060996,"y":26.849},{"x":1751787000863,"y":35.767},{"x":1751786940653,"y":49.767},{"x":1751786880560,"y":55.33},{"x":1751786820529,"y":53.287},{"x":1751786760155,"y":57.929},{"x":1751786702922,"y":48.669},{"x":1751786642746,"y":29.595},{"x":1751786582589,"y":25.878},{"x":1751786522405,"y":27.427},{"x":1751786462242,"y":37.763},{"x":1751786402087,"y":37.207},{"x":1751786341920,"y":38.022},{"x":1751786281714,"y":35.752},{"x":1751786221514,"y":30.922},{"x":1751786161362,"y":47.501},{"x":1751786101206,"y":38.162},{"x":1751786041045,"y":31.344},{"x":1751785980884,"y":37.239},{"x":1751785920734,"y":40.024},{"x":1751785860603,"y":43.49},{"x":1751785800483,"y":56.712},{"x":1751785740249,"y":34.806},{"x":1751785682944,"y":35.179},{"x":1751785622785,"y":40.386},{"x":1751785562640,"y":40.57},{"x":1751785502478,"y":37.841},{"x":1751785442332,"y":30.244},{"x":1751785382182,"y":43.39},{"x":1751785322071,"y":36.557},{"x":1751785261877,"y":45.871},{"x":1751785201704,"y":46.644},{"x":1751785141521,"y":33.792},{"x":1751785081369,"y":30.382},{"x":1751785021234,"y":34.265},{"x":1751784961070,"y":44.815},{"x":1751784900910,"y":45.48},{"x":1751784840748,"y":35.063},{"x":1751784780606,"y":33.9},{"x":1751784720510,"y":39.958},{"x":1751784660331,"y":40.316},{"x":1751784600028,"y":52.967},{"x":1751784542874,"y":38.958},{"x":1751784482731,"y":39.909},{"x":1751784422575,"y":46.677},{"x":1751784362429,"y":66.587},{"x":1751784302305,"y":53.186},{"x":1751784242121,"y":52.971},{"x":1751784181941,"y":40.322},{"x":1751784121795,"y":42.219},{"x":1751784061645,"y":58.032},{"x":1751784001482,"y":49.699},{"x":1751783941329,"y":61.269},{"x":1751783881168,"y":46.954},{"x":1751783820992,"y":58.106},{"x":1751783760848,"y":59.788},{"x":1751783700706,"y":59.125},{"x":1751783640536,"y":58.606},{"x":1751783580381,"y":59.358},{"x":1751783520315,"y":55.426},{"x":1751783462990,"y":38.665},{"x":1751783402835,"y":49.317},{"x":1751783342681,"y":46.129},{"x":1751783282548,"y":45.615},{"x":1751783222372,"y":50.94},{"x":1751783162229,"y":50.367},{"x":1751783102082,"y":39.534},{"x":1751783041917,"y":46.117},{"x":1751782981766,"y":41.624},{"x":1751782921604,"y":32.864},{"x":1751782861453,"y":36.572},{"x":1751782801306,"y":36.135},{"x":1751782741149,"y":32.025},{"x":1751782681021,"y":46.582},{"x":1751782620758,"y":58.271},{"x":1751782560605,"y":54.158},{"x":1751782500509,"y":57.01},{"x":1751782440284,"y":54.845},{"x":1751782383014,"y":38.456},{"x":1751782322861,"y":43.764},{"x":1751782262709,"y":29.681},{"x":1751782202575,"y":33.53},{"x":1751782142426,"y":36.381},{"x":1751782082266,"y":44.006},{"x":1751782022114,"y":46.76},{"x":1751781961965,"y":41.287},{"x":1751781901767,"y":38.548},{"x":1751781841616,"y":27.133},{"x":1751781781459,"y":25.492},{"x":1751781721308,"y":34.673},{"x":1751781661159,"y":48.994},{"x":1751781601155,"y":48.843},{"x":1751781540812,"y":54.347},{"x":1751781480668,"y":47.354},{"x":1751781420525,"y":40.423},{"x":1751781360386,"y":31.557},{"x":1751781300262,"y":25.821},{"x":1751781242937,"y":30.013},{"x":1751781182787,"y":27.681},{"x":1751781122643,"y":28.158},{"x":1751781062494,"y":25.006},{"x":1751781002348,"y":27.347},{"x":1751780942198,"y":28.134},{"x":1751780882046,"y":43.58},{"x":1751780821877,"y":41.409},{"x":1751780761727,"y":40.767},{"x":1751780701588,"y":41.113},{"x":1751780641432,"y":48.359},{"x":1751780581287,"y":38.308},{"x":1751780521123,"y":36.425},{"x":1751780460950,"y":35.469},{"x":1751780400827,"y":29.056},{"x":1751780340601,"y":35.543},{"x":1751780280457,"y":34.252},{"x":1751780220271,"y":41.104},{"x":1751780160039,"y":43.251},{"x":1751780102884,"y":42.835},{"x":1751780042731,"y":40.973},{"x":1751779982583,"y":40.32},{"x":1751779922414,"y":42.427},{"x":1751779862309,"y":44.954},{"x":1751779802107,"y":33.925},{"x":1751779741925,"y":33.191},{"x":1751779681778,"y":29.631},{"x":1751779621634,"y":26.364},{"x":1751779561476,"y":30.779},{"x":1751779501335,"y":26.417},{"x":1751779441180,"y":26.048},{"x":1751779381019,"y":41.566},{"x":1751779320870,"y":41.619},{"x":1751779260723,"y":39.218},{"x":1751779200716,"y":39.944},{"x":1751779140500,"y":41.165},{"x":1751779083011,"y":29.521},{"x":1751779022832,"y":31.346},{"x":1751778962662,"y":28.23},{"x":1751778902503,"y":30.593},{"x":1751778842338,"y":27.374},{"x":1751778782181,"y":26.58},{"x":1751778722036,"y":29.094},{"x":1751778661879,"y":27.316},{"x":1751778601737,"y":22.985},{"x":1751778541586,"y":33.987},{"x":1751778481444,"y":34.278},{"x":1751778421265,"y":37.048},{"x":1751778361081,"y":34.378},{"x":1751778300907,"y":43.747},{"x":1751778240763,"y":38.775},{"x":1751778180616,"y":36.041},{"x":1751778120492,"y":39.011},{"x":1751778060360,"y":30.155},{"x":1751778003015,"y":27.031},{"x":1751777942861,"y":25.885},{"x":1751777882707,"y":37.808},{"x":1751777822559,"y":36.886},{"x":1751777762419,"y":40.689},{"x":1751777702277,"y":38.467},{"x":1751777642127,"y":52.583},{"x":1751777581970,"y":43.971},{"x":1751777521841,"y":39.96},{"x":1751777461676,"y":41.239},{"x":1751777401526,"y":36.864},{"x":1751777341377,"y":28.502},{"x":1751777281216,"y":29.63},{"x":1751777221094,"y":31.372},{"x":1751777160905,"y":34.129},{"x":1751777100795,"y":33.821},{"x":1751777040663,"y":30.117},{"x":1751776980479,"y":31.824},{"x":1751776920335,"y":35.957},{"x":1751776860153,"y":35.695},{"x":1751776802886,"y":34.647},{"x":1751776742712,"y":31.629},{"x":1751776682572,"y":29.027},{"x":1751776622446,"y":27.016},{"x":1751776562267,"y":29.696},{"x":1751776502127,"y":29.657},{"x":1751776442012,"y":27.618},{"x":1751776381823,"y":26.653},{"x":1751776321672,"y":28.161},{"x":1751776261527,"y":31.571},{"x":1751776201375,"y":47.163},{"x":1751776141223,"y":47.32},{"x":1751776081074,"y":46.467},{"x":1751776020908,"y":43.834},{"x":1751775960761,"y":40.475},{"x":1751775900649,"y":34.04},{"x":1751775840517,"y":26.767},{"x":1751775782379,"y":30.067},{"x":1751775722224,"y":29.402},{"x":1751775662076,"y":29.704},{"x":1751775601924,"y":34.071},{"x":1751775541764,"y":27.452},{"x":1751775481581,"y":38.94},{"x":1751775421324,"y":39.385},{"x":1751775361177,"y":36.243},{"x":1751775301015,"y":46.522},{"x":1751775240860,"y":48.05},{"x":1751775180704,"y":49.204},{"x":1751775120563,"y":49.737},{"x":1751775060398,"y":50.608},{"x":1751775000264,"y":52.007},{"x":1751774942979,"y":54.744},{"x":1751774882834,"y":59.957},{"x":1751774822682,"y":30.928},{"x":1751774762532,"y":27.749},{"x":1751774702378,"y":30.166},{"x":1751774642229,"y":32.967},{"x":1751774582077,"y":30.482},{"x":1751774521926,"y":28.639},{"x":1751774461777,"y":26.247},{"x":1751774401632,"y":25.567},{"x":1751774341400,"y":25.498},{"x":1751774281227,"y":33.765},{"x":1751774221073,"y":30.188},{"x":1751774160904,"y":27.215},{"x":1751774100761,"y":31.688},{"x":1751774040617,"y":31.898},{"x":1751773980478,"y":29.755},{"x":1751773920426,"y":34.226},{"x":1751773863030,"y":33.747},{"x":1751773802841,"y":31.723},{"x":1751773742693,"y":28.967},{"x":1751773682545,"y":27.02},{"x":1751773622394,"y":40.732},{"x":1751773562246,"y":41.247},{"x":1751773502091,"y":38.666},{"x":1751773441925,"y":40.371},{"x":1751773381756,"y":37.458},{"x":1751773321609,"y":24.86},{"x":1751773261449,"y":27.014},{"x":1751773201309,"y":27.639},{"x":1751773141159,"y":28.212},{"x":1751773080986,"y":29.842},{"x":1751773020844,"y":29.106},{"x":1751772960696,"y":27.955},{"x":1751772900546,"y":33.182},{"x":1751772840384,"y":29.599},{"x":1751772780297,"y":24.851},{"x":1751772722948,"y":28.353},{"x":1751772662796,"y":28.205},{"x":1751772602630,"y":29.841},{"x":1751772542479,"y":30.448},{"x":1751772482334,"y":29.098},{"x":1751772422188,"y":29.106},{"x":1751772362041,"y":30.087},{"x":1751772301876,"y":27.916},{"x":1751772241723,"y":33.242},{"x":1751772181575,"y":29.989},{"x":1751772121424,"y":32.118},{"x":1751772061284,"y":31.885},{"x":1751772001130,"y":32.73},{"x":1751771940972,"y":30.666},{"x":1751771880768,"y":42.653},{"x":1751771820656,"y":45.275},{"x":1751771760423,"y":45.5},{"x":1751771700451,"y":47.699},{"x":1751771643015,"y":45.438},{"x":1751771582878,"y":39.235},{"x":1751771522716,"y":35.773},{"x":1751771462554,"y":37.678},{"x":1751771402401,"y":41.867},{"x":1751771342250,"y":39.207},{"x":1751771282096,"y":36.055},{"x":1751771221940,"y":33.806},{"x":1751771161783,"y":33.67},{"x":1751771101628,"y":36.621},{"x":1751771041811,"y":26.068},{"x":1751770981656,"y":25.716},{"x":1751770922751,"y":29.844},{"x":1751770862549,"y":25.773},{"x":1751770800768,"y":29.048},{"x":1751770740419,"y":28.861},{"x":1751770680259,"y":38.309},{"x":1751770622953,"y":42.12},{"x":1751770562810,"y":37.578},{"x":1751770502652,"y":36.135},{"x":1751770442502,"y":41.069},{"x":1751770382357,"y":28.189},{"x":1751770322219,"y":30.813},{"x":1751770262049,"y":32.617},{"x":1751770201896,"y":41.862},{"x":1751770141753,"y":43.439},{"x":1751770081588,"y":39.165},{"x":1751770021467,"y":38.359},{"x":1751769961298,"y":40.253},{"x":1751769901151,"y":26.644},{"x":1751769840964,"y":28.985},{"x":1751769780816,"y":27.959},{"x":1751769720684,"y":30.35},{"x":1751769660534,"y":28.304},{"x":1751769600470,"y":34.075},{"x":1751769540299,"y":31.726},{"x":1751769482972,"y":28.025},{"x":1751769422819,"y":26.461},{"x":1751769362667,"y":26.32},{"x":1751769302515,"y":29.837},{"x":1751769242377,"y":26.346},{"x":1751769182232,"y":29.285},{"x":1751769122076,"y":30.399},{"x":1751769061912,"y":28.256},{"x":1751769001753,"y":32.298},{"x":1751768941605,"y":28.554},{"x":1751768881457,"y":31.728},{"x":1751768821290,"y":28.037},{"x":1751768761148,"y":27.007},{"x":1751768701000,"y":25.718},{"x":1751768640844,"y":28.99},{"x":1751768580693,"y":39.778},{"x":1751768520560,"y":44.181},{"x":1751768460475,"y":40.333},{"x":1751768400305,"y":43.68},{"x":1751768342967,"y":36.603},{"x":1751768282831,"y":27.729},{"x":1751768222646,"y":30.041},{"x":1751768162492,"y":25.691},{"x":1751768102349,"y":27.426},{"x":1751768042196,"y":26.74},{"x":1751767982040,"y":29.879},{"x":1751767921876,"y":30.817},{"x":1751767861729,"y":30.774},{"x":1751767801578,"y":38.916},{"x":1751767741427,"y":45.612},{"x":1751767681288,"y":44.247},{"x":1751767621138,"y":43.786},{"x":1751767560940,"y":46.682},{"x":1751767500795,"y":27.171},{"x":1751767440640,"y":25.428},{"x":1751767380479,"y":24.869},{"x":1751767320346,"y":29.762},{"x":1751767263021,"y":27.077},{"x":1751767202883,"y":39.986},{"x":1751767142701,"y":39.099},{"x":1751767082549,"y":41.615},{"x":1751767022399,"y":46.709},{"x":1751766962250,"y":42.44},{"x":1751766902103,"y":35.059},{"x":1751766841937,"y":33.636},{"x":1751766781787,"y":30.213},{"x":1751766721629,"y":27.766},{"x":1751766661483,"y":33.721},{"x":1751766601343,"y":26.252},{"x":1751766541182,"y":26.75},{"x":1751766481021,"y":26.885},{"x":1751766420870,"y":27.075},{"x":1751766360716,"y":30.092},{"x":1751766300637,"y":31.95},{"x":1751766240416,"y":29.548},{"x":1751766180294,"y":33.088},{"x":1751766122960,"y":30.677},{"x":1751766062798,"y":28.995},{"x":1751766002633,"y":34.167},{"x":1751765942486,"y":31.168},{"x":1751765882344,"y":28.87},{"x":1751765822199,"y":27.99},{"x":1751765762049,"y":32.999},{"x":1751765701886,"y":36.75},{"x":1751765641725,"y":28.255},{"x":1751765581583,"y":30.289},{"x":1751765521433,"y":29.121},{"x":1751765461284,"y":27.948},{"x":1751765401143,"y":27.75},{"x":1751765340958,"y":31.894},{"x":1751765280808,"y":27.337},{"x":1751765220659,"y":26.128},{"x":1751765160541,"y":37.667},{"x":1751765100484,"y":40.521},{"x":1751765040151,"y":55.877},{"x":1751764982896,"y":53.701},{"x":1751764922736,"y":53.249},{"x":1751764862593,"y":40.575},{"x":1751764802443,"y":38.655},{"x":1751764742268,"y":24.825},{"x":1751764682066,"y":25.063},{"x":1751764621894,"y":25.281},{"x":1751764561745,"y":27.468},{"x":1751764501604,"y":27.279},{"x":1751764441460,"y":28.998},{"x":1751764381319,"y":32.444},{"x":1751764321172,"y":28.913},{"x":1751764261021,"y":30.944},{"x":1751764200878,"y":32.63},{"x":1751764140719,"y":28.493},{"x":1751764080707,"y":28.479},{"x":1751764020612,"y":25.434},{"x":1751763960320,"y":26.364},{"x":1751763902913,"y":29.022},{"x":1751763842759,"y":29.121},{"x":1751763782635,"y":42.193},{"x":1751763722452,"y":42.44},{"x":1751763662301,"y":41.12},{"x":1751763602141,"y":46.328},{"x":1751763541958,"y":47.395},{"x":1751763481811,"y":33.291},{"x":1751763421657,"y":39.521},{"x":1751763361512,"y":30.886},{"x":1751763301370,"y":30.131},{"x":1751763241229,"y":27.855},{"x":1751763181066,"y":28.362},{"x":1751763120898,"y":25.815},{"x":1751763060780,"y":26.083},{"x":1751763000652,"y":25.132},{"x":1751762940460,"y":24.627},{"x":1751762880361,"y":27.49},{"x":1751762820056,"y":27.466},{"x":1751762762881,"y":32.943},{"x":1751762702728,"y":28.748},{"x":1751762642575,"y":28.071},{"x":1751762582431,"y":36.837},{"x":1751762522286,"y":43.279},{"x":1751762462135,"y":47.282},{"x":1751762401966,"y":46.998},{"x":1751762341815,"y":45.519},{"x":1751762281664,"y":34.81},{"x":1751762221521,"y":35.034},{"x":1751762161376,"y":37.436},{"x":1751762101228,"y":38.04},{"x":1751762041071,"y":38.849},{"x":1751761980915,"y":36.505},{"x":1751761920767,"y":34.494},{"x":1751761860624,"y":45.28},{"x":1751761800550,"y":50.97},{"x":1751761740343,"y":44.711},{"x":1751761682949,"y":47.653},{"x":1751761622797,"y":50.453},{"x":1751761562649,"y":38.333},{"x":1751761502507,"y":36.327},{"x":1751761442364,"y":39.499},{"x":1751761382223,"y":34.238},{"x":1751761322064,"y":33.389},{"x":1751761261915,"y":34.735},{"x":1751761201769,"y":34.629},{"x":1751761141638,"y":39.373},{"x":1751761081426,"y":33.898},{"x":1751761021222,"y":34.224},{"x":1751760961107,"y":36.128},{"x":1751760900909,"y":36.976},{"x":1751760840743,"y":41.654},{"x":1751760780596,"y":34.436},{"x":1751760720433,"y":32.454},{"x":1751760660284,"y":32.661},{"x":1751760602997,"y":33.39},{"x":1751760542861,"y":34.04},{"x":1751760482715,"y":37.356},{"x":1751760422542,"y":35.002},{"x":1751760362393,"y":35.834},{"x":1751760302238,"y":37.802},{"x":1751760242082,"y":36.927},{"x":1751760181912,"y":42.348},{"x":1751760121766,"y":36.415},{"x":1751760061617,"y":35.5},{"x":1751760001660,"y":32.733},{"x":1751759941254,"y":32.935},{"x":1751759881088,"y":36.237},{"x":1751759820924,"y":35.898},{"x":1751759760778,"y":33.415},{"x":1751759700657,"y":35.969},{"x":1751759640488,"y":34.99},{"x":1751759580451,"y":34.823},{"x":1751759523001,"y":35.342},{"x":1751759462856,"y":40.747},{"x":1751759402713,"y":37.744},{"x":1751759342557,"y":35.672},{"x":1751759282415,"y":35.117},{"x":1751759222265,"y":32.935},{"x":1751759162143,"y":36.174},{"x":1751759101962,"y":45.547},{"x":1751759041816,"y":50.593},{"x":1751758981664,"y":55.188},{"x":1751758921516,"y":54.582},{"x":1751758861366,"y":54.095},{"x":1751758801220,"y":43.193},{"x":1751758741068,"y":32.965},{"x":1751758680891,"y":37.527},{"x":1751758620749,"y":38.364},{"x":1751758560603,"y":35.709},{"x":1751758500449,"y":47.199},{"x":1751758440313,"y":53.106},{"x":1751758382976,"y":56.108},{"x":1751758322827,"y":58.279},{"x":1751758262678,"y":57.739},{"x":1751758202523,"y":57.688},{"x":1751758142380,"y":51.684},{"x":1751758082235,"y":44.252},{"x":1751758022093,"y":33.588},{"x":1751757961935,"y":32.558},{"x":1751757901788,"y":37.211},{"x":1751757841647,"y":51.781},{"x":1751757781513,"y":47.987},{"x":1751757721357,"y":58.693},{"x":1751757661214,"y":58.018},{"x":1751757601063,"y":61.57},{"x":1751757540892,"y":48.581},{"x":1751757480709,"y":47.591},{"x":1751757420512,"y":35.656},{"x":1751757360398,"y":33.572},{"x":1751757300298,"y":42.841},{"x":1751757242931,"y":57.019},{"x":1751757182775,"y":57.151},{"x":1751757122627,"y":54.516},{"x":1751757062477,"y":58.428},{"x":1751757002364,"y":57.744},{"x":1751756942187,"y":60.016},{"x":1751756882025,"y":56.107},{"x":1751756821875,"y":44.424},{"x":1751756761741,"y":35.297},{"x":1751756701587,"y":35.13},{"x":1751756641437,"y":33.998},{"x":1751756581283,"y":34.437},{"x":1751756521129,"y":37.222},{"x":1751756460959,"y":34.838},{"x":1751756400930,"y":36.286},{"x":1751756340638,"y":39.52},{"x":1751756280476,"y":43.037},{"x":1751756220355,"y":35.65},{"x":1751756160079,"y":34.212},{"x":1751756102875,"y":32.667},{"x":1751756042721,"y":46.371},{"x":1751755982569,"y":50.06},{"x":1751755922421,"y":46.499},{"x":1751755862280,"y":49.67},{"x":1751755802134,"y":47.707},{"x":1751755741938,"y":38.024},{"x":1751755681788,"y":37.153},{"x":1751755621655,"y":37.529},{"x":1751755561504,"y":35.548},{"x":1751755501365,"y":36.368},{"x":1751755441184,"y":33.333},{"x":1751755381031,"y":33.136},{"x":1751755320883,"y":32.954},{"x":1751755260738,"y":34.144},{"x":1751755200614,"y":42.71},{"x":1751755140570,"y":38.243},{"x":1751755080324,"y":38.165},{"x":1751755022959,"y":42.015},{"x":1751754962837,"y":36.206},{"x":1751754902679,"y":35.433},{"x":1751754842525,"y":40.605},{"x":1751754782379,"y":35.147},{"x":1751754722237,"y":37.531},{"x":1751754662069,"y":35.868},{"x":1751754601914,"y":36.218},{"x":1751754541762,"y":37.426},{"x":1751754481628,"y":39.571},{"x":1751754421471,"y":35.604},{"x":1751754361315,"y":45.375},{"x":1751754301172,"y":44.666},{"x":1751754241013,"y":41.596},{"x":1751754180875,"y":48.275},{"x":1751754120699,"y":31.483},{"x":1751754060554,"y":30.908},{"x":1751754000496,"y":25.748},{"x":1751753940260,"y":26.54},{"x":1751753882931,"y":30.48},{"x":1751753822735,"y":30.346},{"x":1751753762575,"y":31.481},{"x":1751753702427,"y":30.235},{"x":1751753642285,"y":35.027},{"x":1751753582126,"y":34.957},{"x":1751753521960,"y":36.057},{"x":1751753461812,"y":33.364},{"x":1751753401671,"y":29.278},{"x":1751753341515,"y":28.177},{"x":1751753281362,"y":28.074},{"x":1751753221219,"y":28.904},{"x":1751753161036,"y":25.625},{"x":1751753100885,"y":25.555},{"x":1751753040731,"y":26.622},{"x":1751752980591,"y":28.992},{"x":1751752920437,"y":29.698},{"x":1751752860301,"y":35.013},{"x":1751752802973,"y":47.875},{"x":1751752742769,"y":42.408},{"x":1751752682614,"y":40.318},{"x":1751752622462,"y":40.832},{"x":1751752562312,"y":39.227},{"x":1751752502156,"y":31.733},{"x":1751752441991,"y":26.185},{"x":1751752381836,"y":26.087},{"x":1751752321683,"y":28.288},{"x":1751752261545,"y":34.936},{"x":1751752201398,"y":34.72},{"x":1751752141250,"y":35.873},{"x":1751752081025,"y":34.802},{"x":1751752020872,"y":30.706},{"x":1751751960721,"y":31.41},{"x":1751751900627,"y":27.309},{"x":1751751840494,"y":27.479},{"x":1751751780306,"y":27.358},{"x":1751751722946,"y":28.428},{"x":1751751662798,"y":30.522},{"x":1751751602651,"y":33.806},{"x":1751751542497,"y":32.416},{"x":1751751482351,"y":35.495},{"x":1751751422208,"y":36.963},{"x":1751751362056,"y":41.905},{"x":1751751301899,"y":41.203},{"x":1751751241747,"y":46.433},{"x":1751751181598,"y":37.747},{"x":1751751121455,"y":37.005},{"x":1751751061308,"y":26.534},{"x":1751751001204,"y":28.526},{"x":1751750940974,"y":33.328},{"x":1751750880832,"y":29.043},{"x":1751750820688,"y":31.353},{"x":1751750760556,"y":25.93},{"x":1751750700425,"y":29.299},{"x":1751750640257,"y":36.837},{"x":1751750582959,"y":27.777},{"x":1751750522815,"y":28.051},{"x":1751750462672,"y":27.486},{"x":1751750402519,"y":30.463},{"x":1751750342362,"y":33.806},{"x":1751750282144,"y":28.091},{"x":1751750221974,"y":27.105},{"x":1751750161833,"y":28.644},{"x":1751750101687,"y":25.763},{"x":1751750041512,"y":42.884},{"x":1751749981368,"y":40.812},{"x":1751749921228,"y":40.098},{"x":1751749861010,"y":39.863},{"x":1751749800879,"y":40.429},{"x":1751749740712,"y":30.967},{"x":1751749680571,"y":27.333},{"x":1751749620426,"y":28.453},{"x":1751749560299,"y":29.488},{"x":1751749503029,"y":27.211},{"x":1751749442876,"y":27.544},{"x":1751749382731,"y":33.668},{"x":1751749322581,"y":29.592},{"x":1751749262454,"y":29.266},{"x":1751749202281,"y":31.695},{"x":1751749142125,"y":31.981},{"x":1751749081974,"y":39.225},{"x":1751749021826,"y":30.18},{"x":1751748961681,"y":30.56},{"x":1751748901539,"y":25.521},{"x":1751748841392,"y":26.262},{"x":1751748781252,"y":32.756},{"x":1751748721100,"y":30.483},{"x":1751748660946,"y":25.747},{"x":1751748600797,"y":28.993},{"x":1751748540619,"y":31.489},{"x":1751748480519,"y":37.729},{"x":1751748420336,"y":32.772},{"x":1751748363012,"y":33.533},{"x":1751748302877,"y":27.917},{"x":1751748242717,"y":28.845},{"x":1751748182564,"y":32.126},{"x":1751748122413,"y":30.639},{"x":1751748062269,"y":31.213},{"x":1751748002117,"y":29.019},{"x":1751747941969,"y":29.894},{"x":1751747881819,"y":33.471},{"x":1751747821667,"y":32.158},{"x":1751747761495,"y":34.32},{"x":1751747701344,"y":31.937},{"x":1751747641202,"y":30.732},{"x":1751747581047,"y":32.267},{"x":1751747520895,"y":27.892},{"x":1751747460748,"y":30.902},{"x":1751747400711,"y":27.627},{"x":1751747340323,"y":53.392},{"x":1751747280227,"y":60.339},{"x":1751747222905,"y":58.202},{"x":1751747162764,"y":57.044},{"x":1751747102624,"y":62.998},{"x":1751747042475,"y":33.685},{"x":1751746982397,"y":35.518},{"x":1751746922167,"y":49.731},{"x":1751746862033,"y":52.039},{"x":1751746801862,"y":49.675},{"x":1751746741704,"y":53.052},{"x":1751746681466,"y":52.251},{"x":1751746621288,"y":51.842},{"x":1751746561142,"y":37.886},{"x":1751746501038,"y":34.082},{"x":1751746440815,"y":34.159},{"x":1751746380629,"y":36.714},{"x":1751746320503,"y":33.243},{"x":1751746260359,"y":35.356},{"x":1751746200186,"y":34.437},{"x":1751746142882,"y":29.744},{"x":1751746082681,"y":37.364},{"x":1751746022518,"y":31.076},{"x":1751745962326,"y":31.586},{"x":1751745902166,"y":33.744},{"x":1751745841992,"y":34.414},{"x":1751745781844,"y":47.846},{"x":1751745721682,"y":44.32},{"x":1751745661533,"y":43.931},{"x":1751745601479,"y":42.607},{"x":1751745541179,"y":33.927},{"x":1751745480998,"y":48.197},{"x":1751745420850,"y":37.746},{"x":1751745360703,"y":34.512},{"x":1751745300643,"y":36.028},{"x":1751745240377,"y":31.629},{"x":1751745180259,"y":32.056},{"x":1751745122950,"y":32.888},{"x":1751745062805,"y":30.529},{"x":1751745002655,"y":40.601},{"x":1751744942502,"y":40.382},{"x":1751744882356,"y":39.179},{"x":1751744822201,"y":38.133},{"x":1751744762054,"y":51.219},{"x":1751744701903,"y":47.237},{"x":1751744641753,"y":46.788},{"x":1751744581604,"y":48.195},{"x":1751744521443,"y":42.123},{"x":1751744461299,"y":35.828},{"x":1751744401140,"y":42.331},{"x":1751744340961,"y":47.315},{"x":1751744280819,"y":49.163},{"x":1751744220671,"y":45.5},{"x":1751744160516,"y":48.157},{"x":1751744100357,"y":31.022},{"x":1751744040140,"y":53.583},{"x":1751743982895,"y":50.136},{"x":1751743922754,"y":59.307},{"x":1751743862611,"y":47.266},{"x":1751743802446,"y":58.632},{"x":1751743742302,"y":39.965},{"x":1751743682177,"y":39.081},{"x":1751743622007,"y":38.562},{"x":1751743561826,"y":39.545},{"x":1751743501681,"y":41.408},{"x":1751743441509,"y":37.321},{"x":1751743381359,"y":33.927},{"x":1751743321220,"y":35.15},{"x":1751743261060,"y":35.656},{"x":1751743200893,"y":40.804},{"x":1751743140721,"y":41.177},{"x":1751743080594,"y":35.187},{"x":1751743020327,"y":31.934},{"x":1751742960191,"y":31.99},{"x":1751742902937,"y":45.423},{"x":1751742842753,"y":41.691},{"x":1751742782580,"y":42.167},{"x":1751742722428,"y":42.418},{"x":1751742662280,"y":45.833},{"x":1751742602133,"y":33.972},{"x":1751742541972,"y":31.117},{"x":1751742481806,"y":43.926},{"x":1751742421645,"y":36.528},{"x":1751742361467,"y":43.385},{"x":1751742301300,"y":52.227},{"x":1751742241137,"y":55.463},{"x":1751742180977,"y":55.207},{"x":1751742120814,"y":46.869},{"x":1751742060707,"y":51.463},{"x":1751742000589,"y":46.616},{"x":1751741940281,"y":44.633},{"x":1751741882980,"y":35.19},{"x":1751741822839,"y":54.575},{"x":1751741762673,"y":32.126},{"x":1751741702526,"y":37.041},{"x":1751741642416,"y":42.305},{"x":1751741582234,"y":47.038},{"x":1751741522106,"y":44.73},{"x":1751741461908,"y":48.667},{"x":1751741401746,"y":42.042},{"x":1751741341613,"y":35.383},{"x":1751741281443,"y":36.14},{"x":1751741221303,"y":34.126},{"x":1751741161147,"y":31.422},{"x":1751741101000,"y":37.079},{"x":1751741040826,"y":40.002},{"x":1751740980669,"y":36.248},{"x":1751740920527,"y":35.298},{"x":1751740860397,"y":55.209},{"x":1751740800261,"y":52.899},{"x":1751740742989,"y":38.227},{"x":1751740682843,"y":37.436},{"x":1751740622679,"y":38.675},{"x":1751740562533,"y":40.544},{"x":1751740502385,"y":39.762},{"x":1751740442228,"y":41.855},{"x":1751740382085,"y":42.469},{"x":1751740321928,"y":42.147},{"x":1751740261777,"y":31.031},{"x":1751740201631,"y":33.499},{"x":1751740141478,"y":41.823},{"x":1751740081329,"y":40.661},{"x":1751740021190,"y":42.587},{"x":1751739961003,"y":48.339},{"x":1751739900861,"y":54.296},{"x":1751739840712,"y":51.708},{"x":1751739780556,"y":59.222},{"x":1751739720472,"y":46.902},{"x":1751739660262,"y":40.452},{"x":1751739603021,"y":30.749},{"x":1751739542847,"y":31.951},{"x":1751739482653,"y":30.998},{"x":1751739422473,"y":35.242},{"x":1751739362323,"y":34.526},{"x":1751739302177,"y":32.789},{"x":1751739242021,"y":37.822},{"x":1751739181874,"y":57.988},{"x":1751739121730,"y":46.459},{"x":1751739061582,"y":55.903},{"x":1751739001443,"y":62.491},{"x":1751738941276,"y":53.47},{"x":1751738881126,"y":45.737},{"x":1751738820960,"y":66.686},{"x":1751738760815,"y":52.39},{"x":1751738700686,"y":39.337},{"x":1751738640511,"y":44.419},{"x":1751738580434,"y":38.752},{"x":1751738520222,"y":33.166},{"x":1751738462936,"y":35.289},{"x":1751738402793,"y":40.011},{"x":1751738342619,"y":35.616},{"x":1751738282464,"y":43.929},{"x":1751738222321,"y":47.469},{"x":1751738162167,"y":56.007},{"x":1751738102032,"y":62.546},{"x":1751738041857,"y":57.211},{"x":1751737981706,"y":57.754},{"x":1751737921552,"y":62.771},{"x":1751737861403,"y":57.813},{"x":1751737801232,"y":56.357},{"x":1751737741079,"y":65.061},{"x":1751737680923,"y":48.74},{"x":1751737620773,"y":45.412},{"x":1751737560665,"y":66.448},{"x":1751737500708,"y":75.779},{"x":1751737440327,"y":71.803},{"x":1751737380255,"y":75.081},{"x":1751737322913,"y":66.893},{"x":1751737262766,"y":71.088},{"x":1751737202622,"y":58.553},{"x":1751737142473,"y":52.598},{"x":1751737082329,"y":58.322},{"x":1751737022188,"y":61.322},{"x":1751736962024,"y":45.332},{"x":1751736901879,"y":44.883},{"x":1751736841735,"y":40.31},{"x":1751736781594,"y":43.159},{"x":1751736721468,"y":48.713},{"x":1751736661297,"y":30.709},{"x":1751736601151,"y":39.831},{"x":1751736540976,"y":44.054},{"x":1751736480834,"y":34.57},{"x":1751736420674,"y":40.096},{"x":1751736360520,"y":44.369},{"x":1751736300391,"y":33.958},{"x":1751736240347,"y":46.869},{"x":1751736182900,"y":44.818},{"x":1751736122756,"y":39.541},{"x":1751736062603,"y":41.349},{"x":1751736002459,"y":40.592},{"x":1751735942287,"y":40.628},{"x":1751735882122,"y":34.705},{"x":1751735821919,"y":41.127},{"x":1751735761763,"y":45.308},{"x":1751735701614,"y":33.667},{"x":1751735641461,"y":47.347},{"x":1751735581316,"y":44.279},{"x":1751735521158,"y":57.363},{"x":1751735461001,"y":65.214},{"x":1751735400860,"y":57.889},{"x":1751735340622,"y":60.522},{"x":1751735280497,"y":53.163},{"x":1751735220478,"y":42.538},{"x":1751735160191,"y":38.279},{"x":1751735102917,"y":38.235},{"x":1751735042769,"y":39.809},{"x":1751734982627,"y":39.694},{"x":1751734922476,"y":35.99},{"x":1751734862332,"y":38.209},{"x":1751734802298,"y":47.317},{"x":1751734742032,"y":51.602},{"x":1751734681877,"y":61.689},{"x":1751734621724,"y":48.612},{"x":1751734561569,"y":41.858},{"x":1751734501426,"y":39.705},{"x":1751734441267,"y":40.358},{"x":1751734381114,"y":38.44},{"x":1751734320915,"y":37.211},{"x":1751734260770,"y":41.724},{"x":1751734200642,"y":37.106},{"x":1751734140446,"y":48.466},{"x":1751734080355,"y":42.34},{"x":1751734020080,"y":45.248},{"x":1751733962885,"y":43.023},{"x":1751733902707,"y":47.784},{"x":1751733842547,"y":48.285},{"x":1751733782389,"y":35.614},{"x":1751733722244,"y":35.121},{"x":1751733662075,"y":34.832},{"x":1751733601916,"y":34.38},{"x":1751733541758,"y":38.885},{"x":1751733481621,"y":35.923},{"x":1751733421469,"y":46.188},{"x":1751733361375,"y":43.295},{"x":1751733301187,"y":41.404},{"x":1751733241032,"y":40.462},{"x":1751733180867,"y":36.662},{"x":1751733120786,"y":32.192},{"x":1751733060582,"y":29.174},{"x":1751733000503,"y":38.986},{"x":1751732940252,"y":37.452},{"x":1751732882930,"y":38.034},{"x":1751732822786,"y":40.402},{"x":1751732762626,"y":37.942},{"x":1751732702481,"y":41.629},{"x":1751732642313,"y":34.958},{"x":1751732582168,"y":35.444},{"x":1751732522022,"y":34.203},{"x":1751732461874,"y":34.065},{"x":1751732401725,"y":39.357},{"x":1751732341573,"y":38.014},{"x":1751732281385,"y":39.56},{"x":1751732221211,"y":37.424},{"x":1751732161025,"y":38.044},{"x":1751732100878,"y":41.649},{"x":1751732040693,"y":44.795},{"x":1751731980590,"y":35.773},{"x":1751731920437,"y":38.305},{"x":1751731860254,"y":46.16},{"x":1751731800041,"y":51.219},{"x":1751731742881,"y":61.25},{"x":1751731682715,"y":57.408},{"x":1751731622569,"y":75.284},{"x":1751731562431,"y":48.766},{"x":1751731502293,"y":54.769},{"x":1751731442135,"y":41.032},{"x":1751731381973,"y":38.57},{"x":1751731321826,"y":43.168},{"x":1751731261677,"y":41.247},{"x":1751731201579,"y":37.487},{"x":1751731141337,"y":46.857},{"x":1751731081185,"y":43.648},{"x":1751731021006,"y":54.571},{"x":1751730960852,"y":49.197},{"x":1751730900746,"y":52.356},{"x":1751730840563,"y":52.726},{"x":1751730780393,"y":45.0},{"x":1751730720248,"y":55.707},{"x":1751730662945,"y":42.482},{"x":1751730602790,"y":45.659},{"x":1751730542590,"y":42.178},{"x":1751730482428,"y":42.608},{"x":1751730422289,"y":36.238},{"x":1751730362134,"y":50.036},{"x":1751730301974,"y":49.591},{"x":1751730241829,"y":40.606},{"x":1751730181684,"y":50.939},{"x":1751730121536,"y":45.529},{"x":1751730061377,"y":31.545},{"x":1751730001234,"y":40.788},{"x":1751729941075,"y":37.903},{"x":1751729880899,"y":43.34},{"x":1751729820752,"y":37.768},{"x":1751729760646,"y":31.25},{"x":1751729700480,"y":33.561},{"x":1751729640316,"y":30.23},{"x":1751729582984,"y":25.132},{"x":1751729522826,"y":38.861},{"x":1751729462672,"y":30.978},{"x":1751729402511,"y":28.505},{"x":1751729342315,"y":28.982},{"x":1751729282156,"y":44.773},{"x":1751729221996,"y":36.008},{"x":1751729161851,"y":40.558},{"x":1751729101699,"y":40.207},{"x":1751729041551,"y":52.757},{"x":1751728981398,"y":50.624},{"x":1751728921245,"y":50.34},{"x":1751728861073,"y":47.944},{"x":1751728800938,"y":39.078},{"x":1751728740804,"y":40.004},{"x":1751728680564,"y":36.47},{"x":1751728620459,"y":48.304},{"x":1751728560236,"y":31.198},{"x":1751728502979,"y":32.295},{"x":1751728442836,"y":39.986},{"x":1751728382692,"y":40.409},{"x":1751728322547,"y":39.566},{"x":1751728262404,"y":41.72},{"x":1751728202258,"y":42.124},{"x":1751728141995,"y":45.71},{"x":1751728081845,"y":55.197},{"x":1751728021690,"y":34.146},{"x":1751727961553,"y":32.501},{"x":1751727901386,"y":30.593},{"x":1751727841244,"y":17.224},{"x":1751727781066,"y":26.482},{"x":1751727720896,"y":38.631},{"x":1751727660736,"y":31.52},{"x":1751727600679,"y":29.807},{"x":1751727540416,"y":32.738},{"x":1751727480265,"y":37.683},{"x":1751727422888,"y":32.363},{"x":1751727362734,"y":32.778},{"x":1751727302597,"y":42.681},{"x":1751727242440,"y":30.487},{"x":1751727182289,"y":31.924},{"x":1751727122128,"y":21.011},{"x":1751727061971,"y":24.563},{"x":1751727001818,"y":34.02},{"x":1751726941662,"y":37.124},{"x":1751726881513,"y":59.806},{"x":1751726821361,"y":72.925},{"x":1751726761198,"y":38.477},{"x":1751726701055,"y":49.868},{"x":1751726640870,"y":57.109},{"x":1751726580711,"y":30.2},{"x":1751726520572,"y":35.031},{"x":1751726460478,"y":32.543},{"x":1751726400348,"y":34.703},{"x":1751726342990,"y":33.777},{"x":1751726282849,"y":40.993},{"x":1751726222703,"y":47.79},{"x":1751726162553,"y":43.332},{"x":1751726102405,"y":47.851},{"x":1751726042268,"y":48.717},{"x":1751725982116,"y":36.992},{"x":1751725921980,"y":36.249},{"x":1751725861810,"y":32.032},{"x":1751725801661,"y":34.516},{"x":1751725741514,"y":45.977},{"x":1751725681369,"y":48.582},{"x":1751725621208,"y":55.507},{"x":1751725561029,"y":50.919},{"x":1751725500873,"y":43.111},{"x":1751725440722,"y":75.086},{"x":1751725380550,"y":33.914},{"x":1751725320388,"y":46.159},{"x":1751725260236,"y":23.755},{"x":1751725202971,"y":34.881},{"x":1751725142827,"y":22.719},{"x":1751725082656,"y":34.675},{"x":1751725022476,"y":34.536},{"x":1751724962315,"y":30.7},{"x":1751724902169,"y":42.261},{"x":1751724841997,"y":29.706},{"x":1751724781860,"y":26.029},{"x":1751724721711,"y":27.647},{"x":1751724661555,"y":28.259},{"x":1751724601410,"y":28.199},{"x":1751724541191,"y":38.656},{"x":1751724481033,"y":31.987},{"x":1751724420879,"y":28.865},{"x":1751724360728,"y":31.814},{"x":1751724300588,"y":37.254},{"x":1751724240508,"y":25.954},{"x":1751724180285,"y":28.278},{"x":1751724122977,"y":39.707},{"x":1751724062835,"y":36.164},{"x":1751724002681,"y":31.959},{"x":1751723942528,"y":33.452},{"x":1751723882382,"y":28.756},{"x":1751723822231,"y":26.679},{"x":1751723762086,"y":29.457},{"x":1751723701931,"y":33.987},{"x":1751723641786,"y":61.649},{"x":1751723581635,"y":46.653},{"x":1751723521484,"y":60.959},{"x":1751723461325,"y":51.457},{"x":1751723401166,"y":41.345},{"x":1751723340934,"y":38.261},{"x":1751723280777,"y":34.583},{"x":1751723220667,"y":32.26},{"x":1751723160494,"y":25.426},{"x":1751723100452,"y":28.809},{"x":1751723040218,"y":45.434},{"x":1751722982906,"y":45.192},{"x":1751722922761,"y":36.498},{"x":1751722862602,"y":48.133},{"x":1751722802456,"y":40.476},{"x":1751722742299,"y":29.443},{"x":1751722682161,"y":53.493},{"x":1751722621974,"y":28.276},{"x":1751722561825,"y":38.671},{"x":1751722501677,"y":34.681},{"x":1751722441529,"y":37.713},{"x":1751722381378,"y":46.662},{"x":1751722321232,"y":29.865},{"x":1751722261091,"y":30.652},{"x":1751722200915,"y":39.611},{"x":1751722140761,"y":14.176},{"x":1751722080631,"y":10.099},{"x":1751722020474,"y":15.577},{"x":1751721960260,"y":29.529},{"x":1751721903003,"y":30.843},{"x":1751721842839,"y":23.339},{"x":1751721782681,"y":32.44},{"x":1751721722528,"y":34.709},{"x":1751721662382,"y":17.656},{"x":1751721602231,"y":12.182},{"x":1751721542085,"y":17.601},{"x":1751721481918,"y":17.715},{"x":1751721421723,"y":16.304},{"x":1751721361570,"y":21.527},{"x":1751721301428,"y":17.936},{"x":1751721241271,"y":24.603},{"x":1751721181112,"y":15.827},{"x":1751721120942,"y":19.459},{"x":1751721060794,"y":23.812},{"x":1751721000718,"y":34.314},{"x":1751720940506,"y":18.604},{"x":1751720880290,"y":9.646},{"x":1751720822974,"y":28.685},{"x":1751720762829,"y":31.083},{"x":1751720702679,"y":21.897},{"x":1751720642532,"y":22.434},{"x":1751720582379,"y":16.613},{"x":1751720522233,"y":30.239},{"x":1751720462091,"y":18.971},{"x":1751720401912,"y":26.982},{"x":1751720341733,"y":39.483},{"x":1751720281573,"y":28.955},{"x":1751720221430,"y":19.089},{"x":1751720161272,"y":27.018},{"x":1751720101125,"y":25.691},{"x":1751720040953,"y":31.941},{"x":1751719980810,"y":25.668},{"x":1751719920672,"y":23.724},{"x":1751719860568,"y":30.401},{"x":1751719800448,"y":29.126},{"x":1751719740112,"y":25.564},{"x":1751719682896,"y":22.473},{"x":1751719622743,"y":33.168},{"x":1751719562587,"y":23.096},{"x":1751719502448,"y":44.114},{"x":1751719442302,"y":45.923},{"x":1751719382150,"y":47.166},{"x":1751719321996,"y":52.096},{"x":1751719261846,"y":54.197},{"x":1751719201706,"y":33.772},{"x":1751719141563,"y":31.428},{"x":1751719081411,"y":44.556},{"x":1751719021246,"y":39.203},{"x":1751718961084,"y":46.918},{"x":1751718900930,"y":44.688},{"x":1751718840780,"y":60.584},{"x":1751718780640,"y":51.249},{"x":1751718720581,"y":35.637},{"x":1751718660322,"y":47.121},{"x":1751718600255,"y":53.877},{"x":1751718542910,"y":57.89},{"x":1751718482737,"y":47.087},{"x":1751718422597,"y":39.135},{"x":1751718362447,"y":45.589},{"x":1751718302312,"y":28.061},{"x":1751718242161,"y":29.773},{"x":1751718181993,"y":36.96},{"x":1751718121846,"y":31.478},{"x":1751718061683,"y":37.873},{"x":1751718001533,"y":36.366},{"x":1751717941388,"y":25.364},{"x":1751717881224,"y":20.641},{"x":1751717821005,"y":40.922},{"x":1751717760847,"y":19.843},{"x":1751717700711,"y":29.865},{"x":1751717640542,"y":41.132},{"x":1751717580419,"y":48.568},{"x":1751717520282,"y":50.095},{"x":1751717462928,"y":45.592},{"x":1751717402787,"y":27.714},{"x":1751717342594,"y":33.292},{"x":1751717282445,"y":40.716},{"x":1751717222302,"y":38.021},{"x":1751717162177,"y":21.726},{"x":1751717101985,"y":39.388},{"x":1751717041825,"y":40.4},{"x":1751716981656,"y":39.048},{"x":1751716921517,"y":45.331},{"x":1751716861368,"y":35.115},{"x":1751716801300,"y":37.43},{"x":1751716741004,"y":26.001},{"x":1751716680855,"y":29.212},{"x":1751716620720,"y":23.994},{"x":1751716560591,"y":29.884},{"x":1751716500420,"y":23.95},{"x":1751716440350,"y":27.008},{"x":1751716383029,"y":27.345},{"x":1751716322894,"y":27.829},{"x":1751716262697,"y":41.985},{"x":1751716202554,"y":29.194},{"x":1751716142269,"y":18.865},{"x":1751716082118,"y":21.69},{"x":1751716021958,"y":21.298},{"x":1751715961813,"y":25.941},{"x":1751715901669,"y":27.247},{"x":1751715841534,"y":18.914},{"x":1751715781388,"y":21.055},{"x":1751715721231,"y":21.192},{"x":1751715661065,"y":17.308},{"x":1751715600910,"y":28.8},{"x":1751715540704,"y":27.639},{"x":1751715480561,"y":48.039},{"x":1751715420457,"y":35.672},{"x":1751715360307,"y":36.643},{"x":1751715303007,"y":43.88},{"x":1751715242847,"y":22.226},{"x":1751715182702,"y":27.853},{"x":1751715122553,"y":33.861},{"x":1751715062405,"y":31.76},{"x":1751715002256,"y":30.156},{"x":1751714941970,"y":22.578},{"x":1751714881823,"y":40.384},{"x":1751714821675,"y":44.091},{"x":1751714761511,"y":67.415},{"x":1751714701366,"y":43.782},{"x":1751714641211,"y":31.524},{"x":1751714581065,"y":28.317},{"x":1751714520906,"y":18.067},{"x":1751714460751,"y":14.816},{"x":1751714400644,"y":17.653},{"x":1751714340436,"y":13.211},{"x":1751714280283,"y":21.763},{"x":1751714223014,"y":29.397},{"x":1751714162854,"y":29.692},{"x":1751714102702,"y":40.135},{"x":1751714042551,"y":34.064},{"x":1751713982415,"y":25.398},{"x":1751713922266,"y":27.686},{"x":1751713862119,"y":11.048},{"x":1751713801963,"y":18.443},{"x":1751713741818,"y":31.137},{"x":1751713681667,"y":18.558},{"x":1751713621516,"y":33.493},{"x":1751713561382,"y":29.98},{"x":1751713501230,"y":29.408},{"x":1751713441094,"y":27.321},{"x":1751713380893,"y":11.581},{"x":1751713320748,"y":20.098},{"x":1751713260606,"y":38.69},{"x":1751713200495,"y":20.12},{"x":1751713140176,"y":27.448},{"x":1751713082941,"y":19.909},{"x":1751713022796,"y":9.778},{"x":1751712962647,"y":12.794},{"x":1751712902504,"y":14.199},{"x":1751712842346,"y":11.089},{"x":1751712782184,"y":14.23},{"x":1751712722024,"y":21.549},{"x":1751712661871,"y":14.61},{"x":1751712601717,"y":25.634},{"x":1751712541505,"y":19.276},{"x":1751712481374,"y":23.899},{"x":1751712421196,"y":27.174},{"x":1751712361023,"y":18.3},{"x":1751712300907,"y":36.405},{"x":1751712240729,"y":21.156},{"x":1751712180582,"y":21.867},{"x":1751712120471,"y":19.413},{"x":1751712060232,"y":20.847},{"x":1751712002983,"y":28.347},{"x":1751711942835,"y":12.314},{"x":1751711882685,"y":24.516},{"x":1751711822524,"y":36.047},{"x":1751711762381,"y":35.231},{"x":1751711702231,"y":17.603},{"x":1751711642083,"y":16.241},{"x":1751711581917,"y":15.477},{"x":1751711521771,"y":25.35},{"x":1751711461624,"y":27.051},{"x":1751711401496,"y":10.926},{"x":1751711341312,"y":32.016},{"x":1751711281170,"y":21.441},{"x":1751711221006,"y":15.45},{"x":1751711160859,"y":33.375},{"x":1751711100727,"y":28.476},{"x":1751711040606,"y":29.1},{"x":1751710980457,"y":22.34},{"x":1751710920349,"y":12.286},{"x":1751710862971,"y":37.044},{"x":1751710802820,"y":37.772},{"x":1751710742678,"y":34.952},{"x":1751710682509,"y":36.106},{"x":1751710622338,"y":31.927},{"x":1751710562188,"y":18.895},{"x":1751710502043,"y":33.619},{"x":1751710441890,"y":33.837},{"x":1751710381780,"y":25.367},{"x":1751710321600,"y":26.366},{"x":1751710261452,"y":27.353},{"x":1751710201308,"y":25.651},{"x":1751710141154,"y":24.073},{"x":1751710080997,"y":28.295},{"x":1751710020849,"y":31.507},{"x":1751709960697,"y":29.037},{"x":1751709900590,"y":40.024},{"x":1751709840383,"y":26.994},{"x":1751709780276,"y":36.585},{"x":1751709722908,"y":40.694},{"x":1751709662761,"y":48.588},{"x":1751709602610,"y":35.525},{"x":1751709542435,"y":36.777},{"x":1751709482296,"y":38.868},{"x":1751709422143,"y":38.585},{"x":1751709362008,"y":43.288},{"x":1751709301840,"y":39.742},{"x":1751709241694,"y":35.739},{"x":1751709181546,"y":31.688},{"x":1751709121391,"y":26.93},{"x":1751709061249,"y":38.927},{"x":1751709001108,"y":41.428},{"x":1751708940916,"y":30.139},{"x":1751708880776,"y":22.909},{"x":1751708820638,"y":21.835},{"x":1751708760544,"y":22.674},{"x":1751708700331,"y":16.58},{"x":1751708640052,"y":27.668},{"x":1751708582877,"y":26.91},{"x":1751708522730,"y":19.102},{"x":1751708462590,"y":19.09},{"x":1751708402456,"y":31.751},{"x":1751708342309,"y":25.604},{"x":1751708282159,"y":29.566},{"x":1751708221992,"y":33.466},{"x":1751708161839,"y":27.742},{"x":1751708101683,"y":31.641},{"x":1751708041541,"y":28.817},{"x":1751707981395,"y":26.039},{"x":1751707921242,"y":40.806},{"x":1751707861088,"y":50.514},{"x":1751707800929,"y":35.836},{"x":1751707740770,"y":30.634},{"x":1751707680656,"y":28.204},{"x":1751707620533,"y":30.235},{"x":1751707560381,"y":27.971},{"x":1751707500117,"y":24.799},{"x":1751707442861,"y":23.127},{"x":1751707382714,"y":29.927},{"x":1751707322579,"y":31.487},{"x":1751707262424,"y":39.87},{"x":1751707202273,"y":34.924},{"x":1751707142134,"y":31.421},{"x":1751707081919,"y":24.106},{"x":1751707021712,"y":25.319},{"x":1751706961554,"y":31.557},{"x":1751706901398,"y":25.001},{"x":1751706841248,"y":23.413},{"x":1751706781097,"y":33.3},{"x":1751706720926,"y":45.202},{"x":1751706660776,"y":44.085},{"x":1751706600632,"y":48.714},{"x":1751706540494,"y":45.042},{"x":1751706480556,"y":43.224},{"x":1751706420241,"y":40.882},{"x":1751706362927,"y":38.079},{"x":1751706302786,"y":42.18},{"x":1751706242628,"y":45.809},{"x":1751706182484,"y":43.656},{"x":1751706122352,"y":44.106},{"x":1751706062203,"y":57.757},{"x":1751706002115,"y":49.847},{"x":1751705941895,"y":52.137},{"x":1751705881746,"y":67.306},{"x":1751705821597,"y":53.62},{"x":1751705761449,"y":38.256},{"x":1751705701343,"y":31.929},{"x":1751705641148,"y":30.355},{"x":1751705580969,"y":43.739},{"x":1751705520826,"y":42.127},{"x":1751705460675,"y":41.133},{"x":1751705400544,"y":47.551},{"x":1751705340392,"y":44.61},{"x":1751705280259,"y":36.826},{"x":1751705222924,"y":30.684},{"x":1751705162761,"y":31.221},{"x":1751705102616,"y":38.04},{"x":1751705042467,"y":31.786},{"x":1751704982291,"y":49.259},{"x":1751704922119,"y":43.555},{"x":1751704861960,"y":42.308},{"x":1751704801805,"y":40.097},{"x":1751704741640,"y":44.102},{"x":1751704681488,"y":38.227},{"x":1751704621345,"y":42.968},{"x":1751704561200,"y":37.254},{"x":1751704501045,"y":32.502},{"x":1751704440893,"y":32.708},{"x":1751704380746,"y":40.524},{"x":1751704320625,"y":43.62},{"x":1751704260470,"y":32.451},{"x":1751704200455,"y":46.433},{"x":1751704140139,"y":32.888},{"x":1751704082908,"y":29.936},{"x":1751704022745,"y":31.965},{"x":1751703962599,"y":34.321},{"x":1751703902454,"y":35.339},{"x":1751703842313,"y":39.924},{"x":1751703782168,"y":37.575},{"x":1751703722015,"y":35.284},{"x":1751703661845,"y":39.158},{"x":1751703601697,"y":52.324},{"x":1751703541567,"y":36.842},{"x":1751703481398,"y":40.227},{"x":1751703421216,"y":62.081},{"x":1751703361035,"y":36.68},{"x":1751703300879,"y":49.339},{"x":1751703240724,"y":45.723},{"x":1751703180567,"y":30.835},{"x":1751703120443,"y":43.814},{"x":1751703060523,"y":28.693},{"x":1751703000538,"y":32.711},{"x":1751702942866,"y":38.548},{"x":1751702882717,"y":49.517},{"x":1751702822568,"y":34.501},{"x":1751702762413,"y":30.843},{"x":1751702702260,"y":37.185},{"x":1751702642122,"y":39.0},{"x":1751702581970,"y":29.806},{"x":1751702521823,"y":28.292},{"x":1751702461639,"y":30.001},{"x":1751702401537,"y":52.032},{"x":1751702341297,"y":39.511},{"x":1751702281151,"y":30.853},{"x":1751702221000,"y":31.813},{"x":1751702160837,"y":36.147},{"x":1751702100715,"y":30.704},{"x":1751702040514,"y":24.948},{"x":1751701980403,"y":32.876},{"x":1751701920254,"y":26.481},{"x":1751701862922,"y":25.222},{"x":1751701802775,"y":22.604},{"x":1751701742645,"y":32.219},{"x":1751701682480,"y":25.429},{"x":1751701622343,"y":29.427},{"x":1751701562206,"y":49.064},{"x":1751701502038,"y":37.111},{"x":1751701441893,"y":31.406},{"x":1751701381751,"y":34.293},{"x":1751701321606,"y":26.846},{"x":1751701261460,"y":35.917},{"x":1751701201312,"y":26.264},{"x":1751701141155,"y":25.821},{"x":1751701080995,"y":52.411},{"x":1751701020837,"y":55.898},{"x":1751700960680,"y":47.03},{"x":1751700900492,"y":49.872},{"x":1751700840292,"y":40.276},{"x":1751700782938,"y":30.729},{"x":1751700722796,"y":28.475},{"x":1751700662636,"y":24.857},{"x":1751700602484,"y":33.561},{"x":1751700542334,"y":33.935},{"x":1751700482111,"y":38.587},{"x":1751700421939,"y":27.588},{"x":1751700361786,"y":40.926},{"x":1751700301633,"y":28.706},{"x":1751700241482,"y":34.484},{"x":1751700181327,"y":23.392},{"x":1751700121180,"y":25.961},{"x":1751700061012,"y":29.195},{"x":1751700000859,"y":50.218},{"x":1751699940700,"y":40.547},{"x":1751699880514,"y":48.332},{"x":1751699820336,"y":53.412},{"x":1751699760163,"y":49.172},{"x":1751699702890,"y":59.846},{"x":1751699642721,"y":48.768},{"x":1751699582585,"y":39.494},{"x":1751699522401,"y":37.793},{"x":1751699462245,"y":39.929},{"x":1751699402133,"y":43.466},{"x":1751699341921,"y":44.229},{"x":1751699281742,"y":37.202},{"x":1751699221590,"y":52.907},{"x":1751699161448,"y":36.22},{"x":1751699101299,"y":33.793},{"x":1751699041146,"y":30.907},{"x":1751698980968,"y":34.352},{"x":1751698920799,"y":32.803},{"x":1751698860690,"y":27.058},{"x":1751698800522,"y":38.248},{"x":1751698740189,"y":37.283},{"x":1751698682904,"y":32.373},{"x":1751698622764,"y":27.316},{"x":1751698562619,"y":26.918},{"x":1751698502476,"y":37.403},{"x":1751698442318,"y":28.408},{"x":1751698382149,"y":27.308},{"x":1751698321993,"y":31.998},{"x":1751698261841,"y":44.784},{"x":1751698201680,"y":43.361},{"x":1751698141537,"y":39.074},{"x":1751698081392,"y":36.723},{"x":1751698021248,"y":33.915},{"x":1751697961093,"y":29.98},{"x":1751697900934,"y":33.923},{"x":1751697840749,"y":32.695},{"x":1751697780644,"y":41.224},{"x":1751697720505,"y":40.556},{"x":1751697660335,"y":25.443},{"x":1751697603003,"y":28.525},{"x":1751697542857,"y":25.676},{"x":1751697482706,"y":30.114},{"x":1751697422565,"y":36.226},{"x":1751697362403,"y":36.044},{"x":1751697302255,"y":44.568},{"x":1751697242088,"y":41.737},{"x":1751697181917,"y":34.924},{"x":1751697121740,"y":33.145},{"x":1751697061601,"y":23.514},{"x":1751697001450,"y":35.345},{"x":1751696941289,"y":35.282},{"x":1751696881128,"y":32.049},{"x":1751696820948,"y":37.11},{"x":1751696760784,"y":61.06},{"x":1751696700651,"y":35.603},{"x":1751696640463,"y":56.608},{"x":1751696580359,"y":46.975},{"x":1751696520193,"y":51.458},{"x":1751696462911,"y":39.498},{"x":1751696402763,"y":51.144},{"x":1751696342660,"y":35.084},{"x":1751696282390,"y":44.504},{"x":1751696222195,"y":29.589},{"x":1751696162017,"y":29.294},{"x":1751696101864,"y":44.392},{"x":1751696041743,"y":45.002},{"x":1751695981563,"y":31.082},{"x":1751695921417,"y":42.269},{"x":1751695861264,"y":41.329},{"x":1751695801124,"y":45.747},{"x":1751695740922,"y":29.941},{"x":1751695680770,"y":39.341},{"x":1751695620638,"y":42.101},{"x":1751695560483,"y":50.559},{"x":1751695500241,"y":50.567},{"x":1751695442951,"y":46.896},{"x":1751695382797,"y":42.373},{"x":1751695322629,"y":38.924},{"x":1751695262470,"y":34.728},{"x":1751695202383,"y":35.502},{"x":1751695142162,"y":35.342},{"x":1751695082013,"y":31.681},{"x":1751695021861,"y":34.513},{"x":1751694961700,"y":47.099},{"x":1751694901554,"y":45.98},{"x":1751694841398,"y":45.538},{"x":1751694781246,"y":40.662},{"x":1751694721095,"y":40.537},{"x":1751694660927,"y":30.627},{"x":1751694600779,"y":31.079},{"x":1751694540629,"y":31.524},{"x":1751694480531,"y":28.435},{"x":1751694420358,"y":27.131},{"x":1751694360268,"y":27.73},{"x":1751694302940,"y":38.032},{"x":1751694242804,"y":36.387},{"x":1751694182607,"y":41.746},{"x":1751694122461,"y":37.506},{"x":1751694062313,"y":37.451},{"x":1751694002155,"y":29.935},{"x":1751693941988,"y":29.349},{"x":1751693881838,"y":31.076},{"x":1751693821681,"y":25.957},{"x":1751693761535,"y":24.32},{"x":1751693701386,"y":23.305},{"x":1751693641229,"y":24.432},{"x":1751693581068,"y":22.684},{"x":1751693520905,"y":26.071},{"x":1751693460718,"y":25.396},{"x":1751693400667,"y":32.816},{"x":1751693340448,"y":30.513},{"x":1751693280260,"y":30.176},{"x":1751693222983,"y":28.221},{"x":1751693162831,"y":28.117},{"x":1751693102681,"y":26.563},{"x":1751693042535,"y":28.754},{"x":1751692982390,"y":26.816},{"x":1751692922247,"y":21.226},{"x":1751692862085,"y":24.629},{"x":1751692801933,"y":21.013},{"x":1751692741774,"y":24.758},{"x":1751692681574,"y":30.482},{"x":1751692621404,"y":24.055},{"x":1751692561249,"y":23.551},{"x":1751692501101,"y":23.796},{"x":1751692440930,"y":24.347},{"x":1751692380777,"y":27.964},{"x":1751692320642,"y":37.307},{"x":1751692260505,"y":42.132},{"x":1751692200443,"y":44.474},{"x":1751692142965,"y":45.023},{"x":1751692082801,"y":37.219},{"x":1751692022653,"y":30.738},{"x":1751691962509,"y":28.979},{"x":1751691902358,"y":25.989},{"x":1751691842208,"y":37.489},{"x":1751691782065,"y":36.431},{"x":1751691721904,"y":34.2},{"x":1751691661760,"y":33.84},{"x":1751691601642,"y":33.129},{"x":1751691541372,"y":30.342},{"x":1751691481227,"y":31.683},{"x":1751691421076,"y":27.799},{"x":1751691360917,"y":26.891},{"x":1751691300771,"y":24.821},{"x":1751691240607,"y":27.115},{"x":1751691180519,"y":31.768},{"x":1751691120297,"y":25.726},{"x":1751691062985,"y":34.046},{"x":1751691002821,"y":38.836},{"x":1751690942670,"y":39.859},{"x":1751690882524,"y":39.696},{"x":1751690822372,"y":37.127},{"x":1751690762229,"y":27.289},{"x":1751690702075,"y":27.975},{"x":1751690641906,"y":30.609},{"x":1751690581767,"y":28.372},{"x":1751690521620,"y":24.652},{"x":1751690461485,"y":27.287},{"x":1751690401338,"y":26.567},{"x":1751690341197,"y":37.626},{"x":1751690281039,"y":37.57},{"x":1751690220889,"y":38.954},{"x":1751690160761,"y":35.437},{"x":1751690100619,"y":38.512},{"x":1751690040497,"y":26.449},{"x":1751689980269,"y":24.466},{"x":1751689922988,"y":24.722},{"x":1751689862846,"y":30.636},{"x":1751689802701,"y":31.387},{"x":1751689742479,"y":29.463},{"x":1751689682328,"y":41.008},{"x":1751689622188,"y":35.099},{"x":1751689561991,"y":38.436},{"x":1751689501849,"y":43.018},{"x":1751689441702,"y":38.363},{"x":1751689381546,"y":29.39},{"x":1751689321402,"y":30.954},{"x":1751689261251,"y":29.954},{"x":1751689201102,"y":30.302},{"x":1751689140944,"y":31.071},{"x":1751689080767,"y":46.652},{"x":1751689020569,"y":48.389},{"x":1751688960405,"y":43.416},{"x":1751688900267,"y":43.878},{"x":1751688842942,"y":43.972},{"x":1751688782794,"y":46.194},{"x":1751688722632,"y":47.831},{"x":1751688662483,"y":34.857},{"x":1751688602341,"y":30.931},{"x":1751688542207,"y":29.053},{"x":1751688482064,"y":32.501},{"x":1751688421898,"y":38.827},{"x":1751688361740,"y":38.781},{"x":1751688301585,"y":36.428},{"x":1751688241443,"y":37.116},{"x":1751688181288,"y":33.454},{"x":1751688121139,"y":36.879},{"x":1751688060981,"y":40.417},{"x":1751688000957,"y":42.076},{"x":1751687940619,"y":35.885},{"x":1751687880551,"y":35.95},{"x":1751687820327,"y":37.916},{"x":1751687760183,"y":35.916},{"x":1751687702929,"y":43.117},{"x":1751687642789,"y":38.621},{"x":1751687582628,"y":38.693},{"x":1751687522485,"y":37.216},{"x":1751687462340,"y":37.29},{"x":1751687402196,"y":34.701},{"x":1751687342014,"y":36.093},{"x":1751687281843,"y":35.668},{"x":1751687221701,"y":38.808},{"x":1751687161560,"y":34.285},{"x":1751687101421,"y":26.998},{"x":1751687041252,"y":27.124},{"x":1751686981107,"y":31.564},{"x":1751686920907,"y":31.841},{"x":1751686860760,"y":29.263},{"x":1751686800649,"y":28.789},{"x":1751686740475,"y":26.18},{"x":1751686680317,"y":29.073},{"x":1751686622987,"y":28.364},{"x":1751686562850,"y":28.079},{"x":1751686502698,"y":30.064},{"x":1751686442563,"y":28.516},{"x":1751686382392,"y":31.062},{"x":1751686322258,"y":30.419},{"x":1751686262122,"y":27.997},{"x":1751686201942,"y":27.652},{"x":1751686141743,"y":33.469},{"x":1751686081590,"y":27.03},{"x":1751686021447,"y":26.612},{"x":1751685961307,"y":29.587},{"x":1751685901153,"y":29.192},{"x":1751685840981,"y":26.399},{"x":1751685780837,"y":28.661},{"x":1751685720692,"y":29.375},{"x":1751685660560,"y":29.126},{"x":1751685600458,"y":35.951},{"x":1751685540285,"y":31.173},{"x":1751685482906,"y":31.365},{"x":1751685422761,"y":30.873},{"x":1751685362603,"y":29.897},{"x":1751685302444,"y":32.254},{"x":1751685242281,"y":32.313},{"x":1751685182131,"y":28.207},{"x":1751685121984,"y":33.207},{"x":1751685061827,"y":28.774},{"x":1751685001695,"y":27.534},{"x":1751684941506,"y":28.188},{"x":1751684881361,"y":31.726},{"x":1751684821228,"y":29.366},{"x":1751684761070,"y":26.11},{"x":1751684700612,"y":25.563},{"x":1751684642247,"y":33.561},{"x":1751684582070,"y":30.183},{"x":1751684520819,"y":29.174},{"x":1751684460643,"y":28.856},{"x":1751684403025,"y":32.184},{"x":1751684342712,"y":28.889},{"x":1751684282572,"y":28.603},{"x":1751684222425,"y":31.727},{"x":1751684162285,"y":28.679},{"x":1751684102147,"y":34.122},{"x":1751684041994,"y":29.306},{"x":1751683981840,"y":27.775},{"x":1751683921698,"y":29.513},{"x":1751683861557,"y":34.711},{"x":1751683801408,"y":24.231},{"x":1751683741209,"y":25.611},{"x":1751683681046,"y":26.814},{"x":1751683620880,"y":30.123},{"x":1751683560729,"y":29.911},{"x":1751683500625,"y":32.849},{"x":1751683440435,"y":27.187},{"x":1751683380296,"y":26.625},{"x":1751683322983,"y":31.164},{"x":1751683262838,"y":29.445},{"x":1751683202679,"y":27.951},{"x":1751683142524,"y":28.395},{"x":1751683082379,"y":28.367},{"x":1751683022223,"y":32.065},{"x":1751682962079,"y":31.342},{"x":1751682901922,"y":33.506},{"x":1751682841764,"y":32.657},{"x":1751682781611,"y":33.335},{"x":1751682721464,"y":27.555},{"x":1751682661307,"y":25.084},{"x":1751682601150,"y":27.862},{"x":1751682540893,"y":29.128},{"x":1751682480756,"y":32.703},{"x":1751682420610,"y":27.121},{"x":1751682360523,"y":26.99},{"x":1751682300294,"y":31.333},{"x":1751682240149,"y":33.094},{"x":1751682182916,"y":30.106},{"x":1751682122762,"y":32.561},{"x":1751682062593,"y":26.816},{"x":1751682002427,"y":24.07},{"x":1751681942285,"y":24.351},{"x":1751681882145,"y":26.391},{"x":1751681821942,"y":26.749},{"x":1751681761796,"y":32.825},{"x":1751681701665,"y":35.16},{"x":1751681641497,"y":28.547},{"x":1751681581345,"y":24.923},{"x":1751681521192,"y":27.716},{"x":1751681461033,"y":30.021},{"x":1751681400869,"y":28.047},{"x":1751681340666,"y":28.567},{"x":1751681280538,"y":27.338},{"x":1751681220379,"y":25.849},{"x":1751681160306,"y":32.028},{"x":1751681102981,"y":31.369},{"x":1751681042856,"y":38.501},{"x":1751680982681,"y":38.764},{"x":1751680922535,"y":37.979},{"x":1751680862389,"y":40.012},{"x":1751680802260,"y":37.846},{"x":1751680742089,"y":31.334},{"x":1751680681941,"y":27.446},{"x":1751680621794,"y":30.797},{"x":1751680561607,"y":26.705},{"x":1751680501458,"y":25.988},{"x":1751680441309,"y":26.101},{"x":1751680381175,"y":30.869},{"x":1751680320984,"y":27.338},{"x":1751680260834,"y":27.605},{"x":1751680200728,"y":27.537},{"x":1751680140544,"y":28.998},{"x":1751680080468,"y":32.165},{"x":1751680020260,"y":31.487},{"x":1751679962942,"y":27.775},{"x":1751679902800,"y":27.215},{"x":1751679842664,"y":31.509},{"x":1751679782489,"y":30.994},{"x":1751679722346,"y":28.445},{"x":1751679662204,"y":28.898},{"x":1751679602060,"y":27.544},{"x":1751679541908,"y":29.303},{"x":1751679481762,"y":26.595},{"x":1751679421618,"y":29.987},{"x":1751679361467,"y":30.814},{"x":1751679301315,"y":33.419},{"x":1751679241168,"y":30.747},{"x":1751679181010,"y":31.045},{"x":1751679120827,"y":30.4},{"x":1751679060694,"y":32.265},{"x":1751679000639,"y":37.665},{"x":1751678940415,"y":31.534},{"x":1751678880185,"y":27.349},{"x":1751678822927,"y":28.675},{"x":1751678762766,"y":28.756},{"x":1751678702616,"y":28.433},{"x":1751678642451,"y":31.12},{"x":1751678582302,"y":29.633},{"x":1751678522157,"y":30.864},{"x":1751678462010,"y":31.347},{"x":1751678401857,"y":29.827},{"x":1751678341725,"y":27.619},{"x":1751678281498,"y":34.827},{"x":1751678221278,"y":36.031},{"x":1751678161123,"y":33.73},{"x":1751678100953,"y":36.603},{"x":1751678040799,"y":36.558},{"x":1751677980655,"y":36.157},{"x":1751677920543,"y":35.721},{"x":1751677860396,"y":34.275},{"x":1751677800290,"y":35.073},{"x":1751677742953,"y":37.39},{"x":1751677682775,"y":37.128},{"x":1751677622629,"y":39.975},{"x":1751677562475,"y":35.659},{"x":1751677502330,"y":37.316},{"x":1751677442178,"y":33.775},{"x":1751677382031,"y":40.606},{"x":1751677321841,"y":36.925},{"x":1751677261702,"y":39.111},{"x":1751677201577,"y":35.089},{"x":1751677141336,"y":34.722},{"x":1751677081196,"y":34.869},{"x":1751677021033,"y":35.094},{"x":1751676960872,"y":35.097},{"x":1751676900732,"y":40.988},{"x":1751676840583,"y":38.028},{"x":1751676780488,"y":35.942},{"x":1751676720328,"y":36.166},{"x":1751676662998,"y":35.397},{"x":1751676602840,"y":38.966},{"x":1751676542666,"y":60.563},{"x":1751676482491,"y":59.581},{"x":1751676422349,"y":56.684},{"x":1751676362202,"y":56.141},{"x":1751676302061,"y":55.611},{"x":1751676241913,"y":42.416},{"x":1751676181766,"y":41.166},{"x":1751676121578,"y":39.918},{"x":1751676061416,"y":40.76},{"x":1751676001267,"y":38.481},{"x":1751675941131,"y":37.619},{"x":1751675880940,"y":36.519},{"x":1751675820787,"y":40.738},{"x":1751675760651,"y":36.24},{"x":1751675700521,"y":40.428},{"x":1751675640407,"y":37.445},{"x":1751675580158,"y":35.852},{"x":1751675522902,"y":34.689},{"x":1751675462748,"y":42.532},{"x":1751675402602,"y":40.716},{"x":1751675342463,"y":38.521},{"x":1751675282315,"y":36.039},{"x":1751675222162,"y":37.76},{"x":1751675161996,"y":37.311},{"x":1751675101838,"y":35.005},{"x":1751675041696,"y":34.58},{"x":1751674981534,"y":36.326},{"x":1751674921396,"y":35.89},{"x":1751674861241,"y":35.618},{"x":1751674801093,"y":43.84},{"x":1751674740926,"y":40.304},{"x":1751674680755,"y":37.285},{"x":1751674620590,"y":40.503},{"x":1751674560381,"y":36.47},{"x":1751674500299,"y":34.006},{"x":1751674442941,"y":38.472},{"x":1751674382811,"y":37.385},{"x":1751674322648,"y":37.887},{"x":1751674262501,"y":39.962},{"x":1751674202353,"y":39.792},{"x":1751674142211,"y":44.272},{"x":1751674082056,"y":39.335},{"x":1751674021899,"y":36.776},{"x":1751673961756,"y":37.582},{"x":1751673901606,"y":36.857},{"x":1751673841453,"y":39.57},{"x":1751673781299,"y":39.481},{"x":1751673721130,"y":36.4},{"x":1751673660959,"y":36.11},{"x":1751673600869,"y":41.685},{"x":1751673540619,"y":40.475},{"x":1751673480496,"y":40.19},{"x":1751673420329,"y":44.733},{"x":1751673360091,"y":39.414},{"x":1751673302836,"y":38.117},{"x":1751673242691,"y":37.885},{"x":1751673182520,"y":35.027},{"x":1751673122427,"y":35.575},{"x":1751673062211,"y":38.381},{"x":1751673002041,"y":33.603},{"x":1751672941799,"y":38.965},{"x":1751672881657,"y":33.515},{"x":1751672821506,"y":33.552},{"x":1751672761376,"y":36.197},{"x":1751672701218,"y":41.121},{"x":1751672641063,"y":41.743},{"x":1751672580898,"y":39.224},{"x":1751672520752,"y":35.381},{"x":1751672460611,"y":33.498},{"x":1751672400542,"y":36.238},{"x":1751672340270,"y":34.624},{"x":1751672282996,"y":35.191},{"x":1751672222851,"y":39.327},{"x":1751672162696,"y":44.819},{"x":1751672102540,"y":47.031},{"x":1751672042394,"y":51.84},{"x":1751671982228,"y":52.205},{"x":1751671922078,"y":43.829},{"x":1751671861925,"y":37.97},{"x":1751671801796,"y":35.25},{"x":1751671741516,"y":35.692},{"x":1751671681372,"y":39.059},{"x":1751671621226,"y":34.658},{"x":1751671561068,"y":38.903},{"x":1751671500910,"y":41.818},{"x":1751671440762,"y":40.867},{"x":1751671380616,"y":39.549},{"x":1751671320487,"y":36.369},{"x":1751671260283,"y":36.057},{"x":1751671203025,"y":38.235},{"x":1751671142875,"y":40.705},{"x":1751671082732,"y":37.734},{"x":1751671022558,"y":40.591},{"x":1751670962400,"y":37.165},{"x":1751670902254,"y":38.087},{"x":1751670842108,"y":36.56},{"x":1751670781958,"y":39.632},{"x":1751670721809,"y":37.463},{"x":1751670661663,"y":40.978},{"x":1751670601512,"y":36.288},{"x":1751670541347,"y":35.876},{"x":1751670481195,"y":37.341},{"x":1751670421014,"y":43.69},{"x":1751670360865,"y":44.293},{"x":1751670300723,"y":43.318},{"x":1751670240606,"y":39.422},{"x":1751670180426,"y":40.099},{"x":1751670120260,"y":35.443},{"x":1751670062968,"y":39.587},{"x":1751670002824,"y":33.044},{"x":1751669942678,"y":33.225},{"x":1751669882515,"y":29.502},{"x":1751669822362,"y":27.198},{"x":1751669762225,"y":33.648},{"x":1751669702081,"y":34.25},{"x":1751669641952,"y":31.923},{"x":1751669581754,"y":31.008},{"x":1751669521601,"y":35.49},{"x":1751669461454,"y":38.765},{"x":1751669401278,"y":33.143},{"x":1751669341127,"y":31.411},{"x":1751669280960,"y":41.91},{"x":1751669220812,"y":41.205},{"x":1751669160652,"y":32.24},{"x":1751669100554,"y":31.138},{"x":1751669040349,"y":43.084},{"x":1751668982966,"y":49.158},{"x":1751668922831,"y":50.047},{"x":1751668862667,"y":48.216},{"x":1751668802504,"y":51.184},{"x":1751668742361,"y":48.211},{"x":1751668682221,"y":38.954},{"x":1751668622075,"y":43.702},{"x":1751668561889,"y":40.673},{"x":1751668501746,"y":31.709},{"x":1751668441594,"y":36.324},{"x":1751668381450,"y":37.831},{"x":1751668321297,"y":30.047},{"x":1751668261140,"y":33.799},{"x":1751668200984,"y":27.932},{"x":1751668140827,"y":39.677},{"x":1751668080693,"y":35.664},{"x":1751668020533,"y":32.985},{"x":1751667960388,"y":32.702},{"x":1751667900328,"y":45.033},{"x":1751667843017,"y":29.529},{"x":1751667782865,"y":28.755},{"x":1751667722713,"y":32.308},{"x":1751667662564,"y":28.194},{"x":1751667602421,"y":30.332},{"x":1751667542273,"y":36.02},{"x":1751667482076,"y":43.362},{"x":1751667421893,"y":38.543},{"x":1751667361741,"y":49.001},{"x":1751667301601,"y":43.396},{"x":1751667241446,"y":41.993},{"x":1751667181298,"y":28.979},{"x":1751667121148,"y":26.89},{"x":1751667060988,"y":26.6},{"x":1751667000838,"y":31.758},{"x":1751666940687,"y":34.009},{"x":1751666880539,"y":35.202},{"x":1751666820361,"y":37.991},{"x":1751666760249,"y":43.574},{"x":1751666702895,"y":35.261},{"x":1751666642736,"y":32.108},{"x":1751666582587,"y":40.118},{"x":1751666522423,"y":30.186},{"x":1751666462272,"y":34.663},{"x":1751666402174,"y":35.274},{"x":1751666341895,"y":38.003},{"x":1751666281754,"y":40.999},{"x":1751666221606,"y":42.89},{"x":1751666161462,"y":36.119},{"x":1751666101318,"y":36.061},{"x":1751666041171,"y":40.778},{"x":1751665980985,"y":40.517},{"x":1751665920840,"y":31.775},{"x":1751665860670,"y":37.772},{"x":1751665800585,"y":35.521},{"x":1751665740373,"y":30.317},{"x":1751665680260,"y":33.468},{"x":1751665622917,"y":43.578},{"x":1751665562762,"y":50.818},{"x":1751665502618,"y":52.089},{"x":1751665442470,"y":41.475},{"x":1751665382328,"y":47.452},{"x":1751665322173,"y":40.739},{"x":1751665262013,"y":32.851},{"x":1751665201859,"y":33.936},{"x":1751665141697,"y":36.002},{"x":1751665081544,"y":37.952},{"x":1751665021394,"y":31.68},{"x":1751664961252,"y":30.513},{"x":1751664901100,"y":41.617},{"x":1751664840936,"y":36.111},{"x":1751664780779,"y":41.725},{"x":1751664720637,"y":29.767},{"x":1751664660527,"y":35.913},{"x":1751664600341,"y":40.942},{"x":1751664540141,"y":34.844},{"x":1751664482893,"y":42.908},{"x":1751664422732,"y":35.874},{"x":1751664362583,"y":48.455},{"x":1751664302439,"y":44.198},{"x":1751664242290,"y":40.596},{"x":1751664182145,"y":49.861},{"x":1751664121975,"y":49.855},{"x":1751664061825,"y":51.478},{"x":1751664001683,"y":53.153},{"x":1751663941532,"y":52.711},{"x":1751663881406,"y":48.793},{"x":1751663821183,"y":49.441},{"x":1751663760985,"y":36.61},{"x":1751663700852,"y":49.359},{"x":1751663640698,"y":31.918},{"x":1751663580565,"y":33.076},{"x":1751663520471,"y":34.004},{"x":1751663460272,"y":32.53},{"x":1751663403019,"y":32.612},{"x":1751663342869,"y":29.457},{"x":1751663282728,"y":45.906},{"x":1751663222578,"y":43.44},{"x":1751663162433,"y":41.744},{"x":1751663102272,"y":52.467},{"x":1751663042123,"y":42.277},{"x":1751662981954,"y":36.358},{"x":1751662921811,"y":45.123},{"x":1751662861654,"y":45.191},{"x":1751662801613,"y":48.695},{"x":1751662741306,"y":47.685},{"x":1751662681158,"y":46.451},{"x":1751662620994,"y":42.094},{"x":1751662560844,"y":38.741},{"x":1751662500692,"y":51.027},{"x":1751662440541,"y":40.815},{"x":1751662380395,"y":36.034},{"x":1751662320276,"y":41.525},{"x":1751662262955,"y":40.487},{"x":1751662202799,"y":44.483},{"x":1751662142639,"y":40.491},{"x":1751662082488,"y":41.224},{"x":1751662022376,"y":39.768},{"x":1751661962211,"y":42.118},{"x":1751661902055,"y":37.136},{"x":1751661841907,"y":43.042},{"x":1751661781758,"y":40.648},{"x":1751661721608,"y":37.83},{"x":1751661661450,"y":47.361},{"x":1751661601314,"y":43.465},{"x":1751661541148,"y":51.853},{"x":1751661480988,"y":51.179},{"x":1751661420845,"y":39.816},{"x":1751661360696,"y":43.84},{"x":1751661300544,"y":45.214},{"x":1751661240376,"y":38.826},{"x":1751661180323,"y":37.181},{"x":1751661122960,"y":35.577},{"x":1751661062803,"y":35.674},{"x":1751661002646,"y":32.705},{"x":1751660942502,"y":34.404},{"x":1751660882355,"y":36.768},{"x":1751660822206,"y":45.417},{"x":1751660762066,"y":49.127},{"x":1751660701908,"y":31.74},{"x":1751660641759,"y":30.961},{"x":1751660581606,"y":46.4},{"x":1751660521458,"y":33.827},{"x":1751660461316,"y":34.534},{"x":1751660401149,"y":32.912},{"x":1751660340989,"y":37.939},{"x":1751660280785,"y":30.719},{"x":1751660220614,"y":36.308},{"x":1751660160485,"y":48.313},{"x":1751660100330,"y":35.89},{"x":1751660040086,"y":33.152},{"x":1751659982874,"y":42.931},{"x":1751659922709,"y":52.045},{"x":1751659862565,"y":53.615},{"x":1751659802414,"y":51.98},{"x":1751659742276,"y":56.833},{"x":1751659682113,"y":44.985},{"x":1751659621951,"y":34.595},{"x":1751659561799,"y":39.459},{"x":1751659501658,"y":38.809},{"x":1751659441501,"y":32.641},{"x":1751659381354,"y":39.085},{"x":1751659321193,"y":38.649},{"x":1751659261023,"y":43.078},{"x":1751659201051,"y":47.524},{"x":1751659140697,"y":50.389},{"x":1751659080573,"y":42.131},{"x":1751659020400,"y":53.135},{"x":1751658960305,"y":45.445},{"x":1751658902928,"y":46.52},{"x":1751658842778,"y":49.2},{"x":1751658782633,"y":56.13},{"x":1751658722461,"y":55.232},{"x":1751658662317,"y":52.387},{"x":1751658602182,"y":59.026},{"x":1751658542033,"y":56.257},{"x":1751658481869,"y":57.351},{"x":1751658421701,"y":47.898},{"x":1751658361553,"y":53.788},{"x":1751658301411,"y":38.575},{"x":1751658241253,"y":55.706},{"x":1751658181067,"y":40.573},{"x":1751658120896,"y":37.451},{"x":1751658060755,"y":40.726},{"x":1751658000750,"y":38.762},{"x":1751657940488,"y":38.31},{"x":1751657880355,"y":47.092},{"x":1751657820249,"y":44.315},{"x":1751657762914,"y":54.617},{"x":1751657702777,"y":40.918},{"x":1751657642624,"y":46.256},{"x":1751657582471,"y":40.26},{"x":1751657522326,"y":43.59},{"x":1751657462184,"y":45.043},{"x":1751657401983,"y":45.165},{"x":1751657341833,"y":70.736},{"x":1751657281676,"y":77.546},{"x":1751657221527,"y":58.357},{"x":1751657161379,"y":67.762},{"x":1751657101233,"y":50.628},{"x":1751657041082,"y":44.461},{"x":1751656980921,"y":53.22},{"x":1751656920791,"y":44.18},{"x":1751656860622,"y":40.833},{"x":1751656800478,"y":54.462},{"x":1751656740243,"y":53.242},{"x":1751656682948,"y":52.068},{"x":1751656622751,"y":46.881},{"x":1751656562593,"y":60.692},{"x":1751656502452,"y":42.123},{"x":1751656442285,"y":39.09},{"x":1751656382128,"y":38.146},{"x":1751656321974,"y":41.759},{"x":1751656261822,"y":43.155},{"x":1751656201658,"y":61.537},{"x":1751656141504,"y":59.468},{"x":1751656081344,"y":57.749},{"x":1751656021206,"y":47.69},{"x":1751655961019,"y":46.117},{"x":1751655900867,"y":37.621},{"x":1751655840709,"y":39.159},{"x":1751655780542,"y":35.883},{"x":1751655720369,"y":40.862},{"x":1751655660086,"y":43.751},{"x":1751655602895,"y":37.166},{"x":1751655542704,"y":34.054},{"x":1751655482551,"y":39.396},{"x":1751655422403,"y":39.992},{"x":1751655362251,"y":40.496},{"x":1751655302085,"y":65.05},{"x":1751655241924,"y":37.21},{"x":1751655181775,"y":50.735},{"x":1751655121641,"y":63.085},{"x":1751655061476,"y":51.783},{"x":1751655001332,"y":50.455},{"x":1751654941190,"y":69.085},{"x":1751654881022,"y":36.587},{"x":1751654820863,"y":34.445},{"x":1751654760714,"y":36.015},{"x":1751654700751,"y":34.281},{"x":1751654640438,"y":41.942},{"x":1751654580224,"y":47.132},{"x":1751654522917,"y":50.232},{"x":1751654462750,"y":41.14},{"x":1751654402598,"y":38.327},{"x":1751654342446,"y":30.408},{"x":1751654282289,"y":31.433},{"x":1751654222138,"y":30.663},{"x":1751654161966,"y":40.03},{"x":1751654101810,"y":35.908},{"x":1751654041657,"y":47.93},{"x":1751653981515,"y":51.737},{"x":1751653921368,"y":46.257},{"x":1751653861213,"y":24.998},{"x":1751653801075,"y":27.915},{"x":1751653740903,"y":34.201},{"x":1751653680673,"y":32.818},{"x":1751653620508,"y":35.915},{"x":1751653560369,"y":48.291},{"x":1751653500145,"y":42.494},{"x":1751653442917,"y":40.321},{"x":1751653382773,"y":37.694},{"x":1751653322625,"y":34.287},{"x":1751653262474,"y":36.08},{"x":1751653202318,"y":52.248},{"x":1751653142126,"y":49.961},{"x":1751653081901,"y":48.557},{"x":1751653021714,"y":47.314},{"x":1751652961565,"y":44.895},{"x":1751652901398,"y":47.474},{"x":1751652841242,"y":39.925},{"x":1751652781084,"y":40.31},{"x":1751652720919,"y":38.624},{"x":1751652660771,"y":31.014},{"x":1751652600719,"y":39.264},{"x":1751652540443,"y":43.194},{"x":1751652480342,"y":44.89},{"x":1751652422970,"y":46.481},{"x":1751652362819,"y":44.901},{"x":1751652302678,"y":30.764},{"x":1751652242524,"y":37.212},{"x":1751652182381,"y":34.36},{"x":1751652122238,"y":29.645},{"x":1751652062088,"y":37.526},{"x":1751652001977,"y":50.036},{"x":1751651941764,"y":37.623},{"x":1751651881627,"y":49.07},{"x":1751651821458,"y":40.929},{"x":1751651761315,"y":25.867},{"x":1751651701172,"y":38.866},{"x":1751651640987,"y":40.406},{"x":1751651580917,"y":50.528},{"x":1751651520764,"y":46.093},{"x":1751651460632,"y":52.277},{"x":1751651400482,"y":38.504},{"x":1751651340163,"y":53.099},{"x":1751651282916,"y":55.244},{"x":1751651222773,"y":42.934},{"x":1751651162631,"y":48.375},{"x":1751651102479,"y":42.42},{"x":1751651042335,"y":42.117},{"x":1751650982181,"y":44.654},{"x":1751650922025,"y":28.756},{"x":1751650861864,"y":38.352},{"x":1751650801711,"y":26.048},{"x":1751650741566,"y":41.416},{"x":1751650681414,"y":23.965},{"x":1751650621272,"y":30.566},{"x":1751650561029,"y":30.568},{"x":1751650500880,"y":28.088},{"x":1751650440714,"y":36.383},{"x":1751650380569,"y":33.878},{"x":1751650320481,"y":43.841},{"x":1751650260277,"y":50.285},{"x":1751650202964,"y":43.99},{"x":1751650142785,"y":38.199},{"x":1751650082619,"y":46.495},{"x":1751650022469,"y":34.726},{"x":1751649962328,"y":35.808},{"x":1751649902185,"y":35.927},{"x":1751649842037,"y":34.049},{"x":1751649781885,"y":28.689},{"x":1751649721736,"y":35.129},{"x":1751649661584,"y":44.97},{"x":1751649601433,"y":29.591},{"x":1751649541280,"y":23.902},{"x":1751649481119,"y":24.172},{"x":1751649420922,"y":39.044},{"x":1751649360775,"y":38.411},{"x":1751649300664,"y":25.835},{"x":1751649240490,"y":29.572},{"x":1751649180350,"y":36.575},{"x":1751649123022,"y":21.765},{"x":1751649062874,"y":28.364},{"x":1751649002714,"y":24.022},{"x":1751648942520,"y":22.284},{"x":1751648882377,"y":33.797},{"x":1751648822235,"y":35.991},{"x":1751648762080,"y":56.367},{"x":1751648701931,"y":45.103},{"x":1751648641787,"y":49.113},{"x":1751648581619,"y":29.367},{"x":1751648521450,"y":24.776},{"x":1751648461301,"y":23.064},{"x":1751648401269,"y":17.036},{"x":1751648340952,"y":25.304},{"x":1751648280814,"y":47.439},{"x":1751648220664,"y":43.246},{"x":1751648160532,"y":49.453},{"x":1751648100398,"y":47.846},{"x":1751648040259,"y":52.072},{"x":1751647982951,"y":32.321},{"x":1751647922790,"y":18.094},{"x":1751647862629,"y":22.074},{"x":1751647802492,"y":30.878},{"x":1751647742351,"y":20.538},{"x":1751647682188,"y":25.757},{"x":1751647622032,"y":29.325},{"x":1751647561886,"y":49.138},{"x":1751647501720,"y":45.296},{"x":1751647441570,"y":38.751},{"x":1751647381423,"y":30.445},{"x":1751647321266,"y":31.341},{"x":1751647261120,"y":28.188},{"x":1751647200941,"y":19.304},{"x":1751647140781,"y":38.122},{"x":1751647080627,"y":27.896},{"x":1751647020525,"y":35.549},{"x":1751646960381,"y":33.155},{"x":1751646900122,"y":42.954},{"x":1751646842869,"y":23.08},{"x":1751646782721,"y":26.676},{"x":1751646722570,"y":27.906},{"x":1751646662427,"y":26.078},{"x":1751646602272,"y":32.298},{"x":1751646542125,"y":30.626},{"x":1751646481960,"y":32.808},{"x":1751646421809,"y":38.322},{"x":1751646361642,"y":27.709},{"x":1751646301509,"y":16.478},{"x":1751646241352,"y":18.482},{"x":1751646181182,"y":23.001},{"x":1751646121014,"y":27.819},{"x":1751646060868,"y":28.359},{"x":1751646000734,"y":25.488},{"x":1751645940565,"y":18.703},{"x":1751645880579,"y":37.258},{"x":1751645820160,"y":28.52},{"x":1751645762890,"y":24.418},{"x":1751645702732,"y":29.837},{"x":1751645642577,"y":16.447},{"x":1751645582434,"y":18.765},{"x":1751645522312,"y":27.625},{"x":1751645462130,"y":27.196},{"x":1751645401963,"y":22.183},{"x":1751645341739,"y":42.09},{"x":1751645281582,"y":41.57},{"x":1751645221437,"y":55.467},{"x":1751645161286,"y":40.613},{"x":1751645101146,"y":39.363},{"x":1751645040974,"y":27.405},{"x":1751644980820,"y":26.284},{"x":1751644920674,"y":34.046},{"x":1751644860539,"y":20.209},{"x":1751644800478,"y":25.171},{"x":1751644740167,"y":33.386},{"x":1751644682902,"y":46.701},{"x":1751644622770,"y":33.485},{"x":1751644562620,"y":54.361},{"x":1751644502472,"y":24.625},{"x":1751644442302,"y":15.419},{"x":1751644382163,"y":20.637},{"x":1751644321997,"y":30.424},{"x":1751644261848,"y":38.153},{"x":1751644201701,"y":28.989},{"x":1751644141554,"y":27.821},{"x":1751644081411,"y":48.535},{"x":1751644021266,"y":43.593},{"x":1751643961116,"y":32.301},{"x":1751643900987,"y":23.937},{"x":1751643840795,"y":39.046},{"x":1751643780661,"y":40.39},{"x":1751643720493,"y":32.431},{"x":1751643660309,"y":26.393},{"x":1751643603020,"y":21.653},{"x":1751643542862,"y":27.988},{"x":1751643482717,"y":16.024},{"x":1751643422560,"y":15.516},{"x":1751643362419,"y":14.947},{"x":1751643302274,"y":12.099},{"x":1751643242113,"y":27.561},{"x":1751643181962,"y":25.577},{"x":1751643121816,"y":18.693},{"x":1751643061640,"y":35.107},{"x":1751643001507,"y":49.876},{"x":1751642941340,"y":44.04},{"x":1751642881197,"y":37.971},{"x":1751642821043,"y":41.868},{"x":1751642760885,"y":46.516},{"x":1751642700739,"y":41.652},{"x":1751642640616,"y":42.526},{"x":1751642580472,"y":29.062},{"x":1751642520322,"y":33.845},{"x":1751642463034,"y":36.141},{"x":1751642402855,"y":36.946},{"x":1751642342709,"y":39.59},{"x":1751642282514,"y":40.567},{"x":1751642222335,"y":33.634},{"x":1751642162179,"y":35.947},{"x":1751642102032,"y":34.735},{"x":1751642041865,"y":29.265},{"x":1751641981723,"y":24.997},{"x":1751641921569,"y":24.07},{"x":1751641861417,"y":28.61},{"x":1751641801274,"y":35.478},{"x":1751641741125,"y":23.978},{"x":1751641680945,"y":19.515},{"x":1751641620787,"y":28.421},{"x":1751641560646,"y":17.489},{"x":1751641500551,"y":13.27},{"x":1751641440367,"y":20.198},{"x":1751641380199,"y":13.493},{"x":1751641322903,"y":31.863},{"x":1751641262726,"y":17.892},{"x":1751641202580,"y":10.648},{"x":1751641142416,"y":18.7},{"x":1751641082265,"y":14.17},{"x":1751641022118,"y":6.469},{"x":1751640961948,"y":14.35},{"x":1751640901787,"y":20.52},{"x":1751640841623,"y":21.897},{"x":1751640781452,"y":26.789},{"x":1751640721300,"y":39.495},{"x":1751640661149,"y":39.725},{"x":1751640600974,"y":37.166},{"x":1751640540826,"y":44.88},{"x":1751640480680,"y":36.532},{"x":1751640420566,"y":22.997},{"x":1751640360412,"y":5.122},{"x":1751640300274,"y":18.852},{"x":1751640242965,"y":30.708},{"x":1751640182788,"y":18.008},{"x":1751640122632,"y":21.16},{"x":1751640062471,"y":27.471},{"x":1751640002315,"y":23.956},{"x":1751639942168,"y":25.656},{"x":1751639881990,"y":24.63},{"x":1751639821834,"y":20.282},{"x":1751639761679,"y":17.029},{"x":1751639701525,"y":30.968},{"x":1751639641380,"y":7.748},{"x":1751639581221,"y":7.586},{"x":1751639521070,"y":22.882},{"x":1751639460891,"y":18.021},{"x":1751639400766,"y":20.311},{"x":1751639340556,"y":26.6},{"x":1751639280502,"y":31.49},{"x":1751639220405,"y":20.836},{"x":1751639162989,"y":23.548},{"x":1751639102966,"y":13.506},{"x":1751639042697,"y":20.684},{"x":1751638982538,"y":18.841},{"x":1751638922396,"y":16.45},{"x":1751638862254,"y":29.309},{"x":1751638802105,"y":26.308},{"x":1751638741929,"y":27.401},{"x":1751638681719,"y":35.778},{"x":1751638621529,"y":46.298},{"x":1751638561367,"y":27.048},{"x":1751638501223,"y":26.851},{"x":1751638441056,"y":18.619},{"x":1751638380902,"y":26.327},{"x":1751638320759,"y":16.877},{"x":1751638260608,"y":15.893},{"x":1751638200519,"y":21.458},{"x":1751638140370,"y":29.347},{"x":1751638080053,"y":24.951},{"x":1751638022883,"y":27.68},{"x":1751637962732,"y":28.191},{"x":1751637902580,"y":27.706},{"x":1751637842428,"y":36.679},{"x":1751637782305,"y":29.458},{"x":1751637722116,"y":35.283},{"x":1751637661959,"y":25.691},{"x":1751637601871,"y":26.183},{"x":1751637541626,"y":30.644},{"x":1751637481485,"y":23.305},{"x":1751637421341,"y":8.128},{"x":1751637361185,"y":11.968},{"x":1751637301024,"y":17.48},{"x":1751637240871,"y":17.439},{"x":1751637180737,"y":19.341},{"x":1751637120603,"y":20.189},{"x":1751637060454,"y":25.084},{"x":1751637000319,"y":47.83},{"x":1751636940018,"y":26.613},{"x":1751636882880,"y":20.176},{"x":1751636822723,"y":14.267},{"x":1751636762577,"y":9.093},{"x":1751636702432,"y":10.565},{"x":1751636642278,"y":19.104},{"x":1751636582127,"y":21.338},{"x":1751636521961,"y":24.926},{"x":1751636461802,"y":25.417},{"x":1751636401647,"y":25.068},{"x":1751636341494,"y":28.732},{"x":1751636281352,"y":13.474},{"x":1751636221208,"y":8.522},{"x":1751636161069,"y":7.094},{"x":1751636100910,"y":8.263},{"x":1751636040756,"y":14.036},{"x":1751635980619,"y":15.744},{"x":1751635920507,"y":12.268},{"x":1751635860358,"y":16.37},{"x":1751635800171,"y":18.318},{"x":1751635742895,"y":12.205},{"x":1751635682746,"y":10.116},{"x":1751635622603,"y":8.133},{"x":1751635562443,"y":9.663},{"x":1751635502296,"y":8.657},{"x":1751635442129,"y":7.686},{"x":1751635381981,"y":19.386},{"x":1751635321810,"y":21.33},{"x":1751635261667,"y":14.923},{"x":1751635201519,"y":43.119},{"x":1751635141374,"y":30.729},{"x":1751635081224,"y":45.301},{"x":1751635021051,"y":31.571},{"x":1751634960888,"y":23.767},{"x":1751634900771,"y":9.184},{"x":1751634840567,"y":10.619},{"x":1751634780400,"y":14.927},{"x":1751634720332,"y":15.242},{"x":1751634662949,"y":14.916},{"x":1751634602805,"y":13.814},{"x":1751634542664,"y":15.275},{"x":1751634482502,"y":16.896},{"x":1751634422362,"y":14.191},{"x":1751634362203,"y":11.386},{"x":1751634302060,"y":21.417},{"x":1751634241902,"y":10.494},{"x":1751634181764,"y":14.306},{"x":1751634121604,"y":30.401},{"x":1751634061458,"y":19.1},{"x":1751634001351,"y":16.807},{"x":1751633941075,"y":15.161},{"x":1751633880923,"y":18.655},{"x":1751633820774,"y":18.277},{"x":1751633760646,"y":19.753},{"x":1751633700560,"y":2.71},{"x":1751633640297,"y":16.798},{"x":1751633582996,"y":25.158},{"x":1751633522854,"y":16.047},{"x":1751633462709,"y":12.457},{"x":1751633402562,"y":17.0},{"x":1751633342413,"y":28.597},{"x":1751633282259,"y":23.532},{"x":1751633222113,"y":16.101},{"x":1751633161950,"y":20.492},{"x":1751633101807,"y":19.746},{"x":1751633041652,"y":7.359},{"x":1751632981501,"y":26.059},{"x":1751632921348,"y":11.332},{"x":1751632861193,"y":9.157},{"x":1751632801070,"y":13.938},{"x":1751632740878,"y":5.945},{"x":1751632680733,"y":10.639},{"x":1751632620592,"y":13.974},{"x":1751632560494,"y":20.783},{"x":1751632500285,"y":10.962},{"x":1751632442998,"y":6.34},{"x":1751632382831,"y":11.74},{"x":1751632322690,"y":12.092},{"x":1751632262539,"y":-5.33},{"x":1751632202391,"y":5.334},{"x":1751632142244,"y":24.237},{"x":1751632082086,"y":16.274},{"x":1751632021931,"y":16.122},{"x":1751631961771,"y":31.996},{"x":1751631901637,"y":33.636},{"x":1751631841473,"y":25.93},{"x":1751631781303,"y":18.886},{"x":1751631721140,"y":14.677},{"x":1751631660977,"y":3.462},{"x":1751631600886,"y":0.985},{"x":1751631540640,"y":14.898},{"x":1751631480524,"y":14.209},{"x":1751631420270,"y":7.613},{"x":1751631362954,"y":16.887},{"x":1751631302811,"y":25.694},{"x":1751631242628,"y":13.899},{"x":1751631182494,"y":20.284},{"x":1751631122333,"y":12.162},{"x":1751631062179,"y":11.273},{"x":1751631002049,"y":11.787},{"x":1751630941876,"y":5.609},{"x":1751630881732,"y":5.631},{"x":1751630821568,"y":3.471},{"x":1751630761418,"y":5.709},{"x":1751630701272,"y":7.842},{"x":1751630641113,"y":21.027},{"x":1751630580942,"y":19.48},{"x":1751630520767,"y":19.71},{"x":1751630460645,"y":11.713},{"x":1751630400791,"y":12.002},{"x":1751630342986,"y":19.001},{"x":1751630282840,"y":9.742},{"x":1751630222691,"y":12.071},{"x":1751630162539,"y":20.965},{"x":1751630102378,"y":20.729},{"x":1751630042227,"y":20.912},{"x":1751629982086,"y":24.667},{"x":1751629921930,"y":22.572},{"x":1751629861766,"y":22.445},{"x":1751629801613,"y":20.421},{"x":1751629741466,"y":20.8},{"x":1751629681318,"y":21.355},{"x":1751629621163,"y":21.219},{"x":1751629560981,"y":12.493},{"x":1751629500897,"y":39.68},{"x":1751629440660,"y":15.012},{"x":1751629380515,"y":7.79},{"x":1751629320342,"y":14.522},{"x":1751629260147,"y":5.055},{"x":1751629202892,"y":4.993},{"x":1751629142747,"y":5.758},{"x":1751629082601,"y":8.226},{"x":1751629022450,"y":20.23},{"x":1751628962305,"y":25.212},{"x":1751628902150,"y":16.941},{"x":1751628841992,"y":5.689},{"x":1751628781840,"y":3.939},{"x":1751628721685,"y":9.755},{"x":1751628661541,"y":-1.677},{"x":1751628601389,"y":6.058},{"x":1751628541224,"y":27.822},{"x":1751628481073,"y":26.546},{"x":1751628420905,"y":29.194},{"x":1751628360757,"y":25.923},{"x":1751628300635,"y":26.948},{"x":1751628240485,"y":27.258},{"x":1751628180273,"y":18.22},{"x":1751628123004,"y":7.684},{"x":1751628062841,"y":15.758},{"x":1751628002686,"y":21.139},{"x":1751627942531,"y":3.842},{"x":1751627882358,"y":22.065},{"x":1751627822156,"y":13.253},{"x":1751627761983,"y":2.828},{"x":1751627701835,"y":11.359},{"x":1751627641689,"y":19.826},{"x":1751627581534,"y":13.378},{"x":1751627521385,"y":15.08},{"x":1751627461251,"y":30.582},{"x":1751627401089,"y":37.239},{"x":1751627340925,"y":13.927},{"x":1751627280770,"y":7.954},{"x":1751627220618,"y":8.592},{"x":1751627160505,"y":17.163},{"x":1751627100335,"y":16.0},{"x":1751627043009,"y":4.825},{"x":1751626982865,"y":26.303},{"x":1751626922704,"y":32.694},{"x":1751626862555,"y":9.788},{"x":1751626802425,"y":23.645},{"x":1751626742234,"y":21.577},{"x":1751626682089,"y":26.395},{"x":1751626621935,"y":14.683},{"x":1751626561789,"y":10.802},{"x":1751626501640,"y":17.708},{"x":1751626441497,"y":19.328},{"x":1751626381355,"y":35.154},{"x":1751626321203,"y":35.929},{"x":1751626261047,"y":30.811},{"x":1751626200923,"y":27.698},{"x":1751626140734,"y":25.144},{"x":1751626080590,"y":25.777},{"x":1751626020554,"y":13.948},{"x":1751625960288,"y":17.99},{"x":1751625902940,"y":35.915},{"x":1751625842792,"y":14.633},{"x":1751625782643,"y":22.262},{"x":1751625722495,"y":41.359},{"x":1751625662351,"y":45.18},{"x":1751625602179,"y":44.819},{"x":1751625542021,"y":34.649},{"x":1751625481871,"y":40.271},{"x":1751625421734,"y":38.858},{"x":1751625361576,"y":17.848},{"x":1751625301426,"y":33.987},{"x":1751625241276,"y":22.946},{"x":1751625181128,"y":29.878},{"x":1751625120969,"y":37.996},{"x":1751625060826,"y":57.202},{"x":1751625000712,"y":55.375},{"x":1751624940532,"y":54.132},{"x":1751624880391,"y":59.185},{"x":1751624820039,"y":28.074},{"x":1751624762871,"y":17.535},{"x":1751624702715,"y":15.871},{"x":1751624642558,"y":14.275},{"x":1751624582414,"y":22.835},{"x":1751624522280,"y":26.625},{"x":1751624462122,"y":43.571},{"x":1751624401902,"y":34.434},{"x":1751624341754,"y":36.308},{"x":1751624281581,"y":29.006},{"x":1751624221399,"y":18.057},{"x":1751624161236,"y":21.857},{"x":1751624101114,"y":29.175},{"x":1751624040903,"y":21.549},{"x":1751623980756,"y":18.307},{"x":1751623920609,"y":35.374},{"x":1751623860495,"y":38.344},{"x":1751623800398,"y":41.84},{"x":1751623742934,"y":34.845},{"x":1751623682781,"y":31.417},{"x":1751623622612,"y":24.834},{"x":1751623562465,"y":24.623},{"x":1751623502320,"y":22.594},{"x":1751623442187,"y":23.205},{"x":1751623382028,"y":39.392},{"x":1751623321881,"y":23.375},{"x":1751623261738,"y":17.522},{"x":1751623201644,"y":23.834},{"x":1751623141378,"y":23.0},{"x":1751623081214,"y":35.635},{"x":1751623021070,"y":34.412},{"x":1751622960901,"y":30.594},{"x":1751622900784,"y":43.662},{"x":1751622840612,"y":43.38},{"x":1751622780504,"y":36.947},{"x":1751622720350,"y":36.656},{"x":1751622662908,"y":37.277},{"x":1751622602764,"y":18.118},{"x":1751622542613,"y":14.377},{"x":1751622482466,"y":12.555},{"x":1751622422316,"y":18.139},{"x":1751622362169,"y":15.429},{"x":1751622301985,"y":17.297},{"x":1751622241844,"y":17.234},{"x":1751622181691,"y":11.611},{"x":1751622121538,"y":20.585},{"x":1751622061376,"y":11.561},{"x":1751622001237,"y":23.865},{"x":1751621941083,"y":34.089},{"x":1751621880926,"y":49.654},{"x":1751621820777,"y":41.04},{"x":1751621760635,"y":27.506},{"x":1751621700571,"y":24.222},{"x":1751621640319,"y":8.213},{"x":1751621582995,"y":15.074},{"x":1751621522852,"y":10.404},{"x":1751621462692,"y":23.793},{"x":1751621402536,"y":31.929},{"x":1751621342386,"y":38.676},{"x":1751621282247,"y":29.56},{"x":1751621222090,"y":31.418},{"x":1751621161910,"y":34.461},{"x":1751621101768,"y":27.395},{"x":1751621041623,"y":11.132},{"x":1751620981477,"y":12.636},{"x":1751620921327,"y":14.277},{"x":1751620861160,"y":30.752},{"x":1751620800997,"y":29.206},{"x":1751620740838,"y":30.533},{"x":1751620680676,"y":23.865},{"x":1751620620466,"y":31.345},{"x":1751620560347,"y":23.172},{"x":1751620500080,"y":28.974},{"x":1751620442856,"y":17.406},{"x":1751620382704,"y":15.673},{"x":1751620322556,"y":18.162},{"x":1751620262405,"y":15.3},{"x":1751620202261,"y":19.925},{"x":1751620142111,"y":18.942},{"x":1751620081966,"y":13.713},{"x":1751620021815,"y":22.3},{"x":1751619961663,"y":22.993},{"x":1751619901521,"y":13.86},{"x":1751619841370,"y":32.944},{"x":1751619781226,"y":27.131},{"x":1751619721064,"y":16.02},{"x":1751619660911,"y":3.364},{"x":1751619600921,"y":21.63},{"x":1751619540449,"y":22.576},{"x":1751619480275,"y":22.119},{"x":1751619422998,"y":20.423},{"x":1751619362855,"y":21.459},{"x":1751619302700,"y":30.781},{"x":1751619242553,"y":21.901},{"x":1751619182406,"y":29.025},{"x":1751619122265,"y":26.549},{"x":1751619062104,"y":30.783},{"x":1751619001942,"y":24.521},{"x":1751618941784,"y":20.886},{"x":1751618881633,"y":26.511},{"x":1751618821484,"y":31.232},{"x":1751618761339,"y":26.271},{"x":1751618701208,"y":19.224},{"x":1751618641018,"y":21.995},{"x":1751618580871,"y":47.873},{"x":1751618520699,"y":50.223},{"x":1751618460560,"y":47.947},{"x":1751618400506,"y":40.798},{"x":1751618340319,"y":40.384},{"x":1751618282975,"y":44.872},{"x":1751618222826,"y":39.207},{"x":1751618162666,"y":27.833},{"x":1751618102525,"y":24.365},{"x":1751618042367,"y":13.957},{"x":1751617982236,"y":22.193},{"x":1751617922083,"y":21.515},{"x":1751617861919,"y":11.404},{"x":1751617801773,"y":22.76},{"x":1751617741595,"y":21.861},{"x":1751617681437,"y":25.78},{"x":1751617621274,"y":38.461},{"x":1751617561124,"y":35.83},{"x":1751617500962,"y":42.857},{"x":1751617440812,"y":42.023},{"x":1751617380668,"y":37.208},{"x":1751617320510,"y":43.33},{"x":1751617260313,"y":52.286},{"x":1751617203014,"y":41.73},{"x":1751617142841,"y":47.16},{"x":1751617082648,"y":44.229},{"x":1751617022480,"y":43.58},{"x":1751616962323,"y":46.457},{"x":1751616902175,"y":44.654},{"x":1751616842014,"y":34.012},{"x":1751616781851,"y":26.736},{"x":1751616721681,"y":15.116},{"x":1751616661539,"y":18.934},{"x":1751616601403,"y":18.292},{"x":1751616541251,"y":14.686},{"x":1751616481101,"y":25.87},{"x":1751616420865,"y":25.614},{"x":1751616360718,"y":40.188},{"x":1751616300627,"y":37.019},{"x":1751616240441,"y":43.572},{"x":1751616180328,"y":33.437},{"x":1751616122960,"y":25.222},{"x":1751616062822,"y":20.468},{"x":1751616002667,"y":37.274},{"x":1751615942509,"y":40.307},{"x":1751615882351,"y":28.9},{"x":1751615822201,"y":55.182},{"x":1751615762048,"y":44.752},{"x":1751615701888,"y":32.717},{"x":1751615641720,"y":40.072},{"x":1751615581584,"y":40.187},{"x":1751615521431,"y":39.146},{"x":1751615461289,"y":36.245},{"x":1751615401144,"y":37.548},{"x":1751615340937,"y":28.904},{"x":1751615280789,"y":33.387},{"x":1751615220656,"y":42.691},{"x":1751615160502,"y":62.145},{"x":1751615100457,"y":39.549},{"x":1751615042935,"y":38.444},{"x":1751614982792,"y":36.064},{"x":1751614922658,"y":26.455},{"x":1751614862493,"y":23.633},{"x":1751614802347,"y":24.292},{"x":1751614742195,"y":26.875},{"x":1751614682045,"y":27.478},{"x":1751614621875,"y":27.665},{"x":1751614561734,"y":24.683},{"x":1751614501582,"y":21.301},{"x":1751614441426,"y":23.436},{"x":1751614381273,"y":29.989},{"x":1751614321124,"y":35.253},{"x":1751614260967,"y":28.413},{"x":1751614200904,"y":34.299},{"x":1751614140656,"y":42.987},{"x":1751614080514,"y":32.135},{"x":1751614020388,"y":42.754},{"x":1751613960160,"y":35.753},{"x":1751613902913,"y":30.91},{"x":1751613842772,"y":21.194},{"x":1751613782618,"y":23.611},{"x":1751613722502,"y":32.197},{"x":1751613662322,"y":27.878},{"x":1751613602187,"y":25.361},{"x":1751613542058,"y":25.251},{"x":1751613481864,"y":32.391},{"x":1751613421642,"y":29.223},{"x":1751613361491,"y":22.942},{"x":1751613301348,"y":25.399},{"x":1751613241169,"y":34.928},{"x":1751613181012,"y":52.786},{"x":1751613120873,"y":37.429},{"x":1751613060719,"y":47.768},{"x":1751613000636,"y":39.313},{"x":1751612940388,"y":34.509},{"x":1751612880190,"y":28.427},{"x":1751612822920,"y":21.521},{"x":1751612762782,"y":25.443},{"x":1751612702669,"y":30.858},{"x":1751612642481,"y":24.42},{"x":1751612582334,"y":21.081},{"x":1751612522187,"y":26.741},{"x":1751612462022,"y":21.621},{"x":1751612401877,"y":30.579},{"x":1751612341709,"y":28.177},{"x":1751612281558,"y":20.196},{"x":1751612221405,"y":22.877},{"x":1751612161260,"y":20.314},{"x":1751612101079,"y":33.041},{"x":1751612040919,"y":20.272},{"x":1751611980776,"y":24.138},{"x":1751611920632,"y":25.016},{"x":1751611860507,"y":17.773},{"x":1751611800478,"y":20.756},{"x":1751611742902,"y":25.874},{"x":1751611682751,"y":24.768},{"x":1751611622609,"y":31.898},{"x":1751611562458,"y":20.219},{"x":1751611502345,"y":28.135},{"x":1751611442170,"y":18.309},{"x":1751611381999,"y":17.812},{"x":1751611321860,"y":18.741},{"x":1751611261700,"y":30.103},{"x":1751611201562,"y":39.867},{"x":1751611141410,"y":33.435},{"x":1751611081265,"y":29.736},{"x":1751611021112,"y":30.443},{"x":1751610960945,"y":28.904},{"x":1751610900808,"y":28.643},{"x":1751610840651,"y":30.621},{"x":1751610780542,"y":30.718},{"x":1751610720437,"y":23.199},{"x":1751610660284,"y":18.43},{"x":1751610602946,"y":18.259},{"x":1751610542781,"y":17.36},{"x":1751610482637,"y":19.486},{"x":1751610422484,"y":19.554},{"x":1751610362333,"y":16.988},{"x":1751610302192,"y":31.804},{"x":1751610242049,"y":41.032},{"x":1751610181883,"y":24.719},{"x":1751610121739,"y":38.465},{"x":1751610061594,"y":31.796},{"x":1751610001448,"y":39.869},{"x":1751609941308,"y":33.264},{"x":1751609881121,"y":33.561},{"x":1751609820935,"y":24.278},{"x":1751609760765,"y":33.038},{"x":1751609700656,"y":22.913},{"x":1751609640441,"y":38.478},{"x":1751609580285,"y":27.268},{"x":1751609522970,"y":43.577},{"x":1751609462826,"y":25.588},{"x":1751609402685,"y":36.623},{"x":1751609342474,"y":40.423},{"x":1751609282329,"y":41.229},{"x":1751609222184,"y":42.696},{"x":1751609162037,"y":50.883},{"x":1751609101881,"y":58.452},{"x":1751609041742,"y":25.555},{"x":1751608981598,"y":39.77},{"x":1751608921451,"y":43.885},{"x":1751608861290,"y":39.11},{"x":1751608801217,"y":29.158},{"x":1751608740904,"y":31.086},{"x":1751608680761,"y":22.974},{"x":1751608620615,"y":24.247},{"x":1751608560497,"y":24.2},{"x":1751608500290,"y":26.399},{"x":1751608443026,"y":30.982},{"x":1751608382854,"y":24.572},{"x":1751608322710,"y":23.427},{"x":1751608262574,"y":27.25},{"x":1751608202412,"y":24.212},{"x":1751608142271,"y":21.074},{"x":1751608082129,"y":21.304},{"x":1751608021981,"y":29.774},{"x":1751607961833,"y":33.833},{"x":1751607901690,"y":30.415},{"x":1751607841547,"y":29.341},{"x":1751607781401,"y":34.425},{"x":1751607721259,"y":19.997},{"x":1751607661111,"y":23.741},{"x":1751607600957,"y":19.598},{"x":1751607540784,"y":21.582},{"x":1751607480650,"y":24.238},{"x":1751607420519,"y":23.492},{"x":1751607360468,"y":24.128},{"x":1751607300259,"y":22.006},{"x":1751607242893,"y":21.428},{"x":1751607182752,"y":24.283},{"x":1751607122608,"y":27.106},{"x":1751607062448,"y":20.821},{"x":1751607002307,"y":19.785},{"x":1751606942154,"y":24.201},{"x":1751606881991,"y":22.858},{"x":1751606821853,"y":25.279},{"x":1751606761685,"y":22.904},{"x":1751606701539,"y":21.19},{"x":1751606641385,"y":24.463},{"x":1751606581234,"y":15.656},{"x":1751606521088,"y":19.828},{"x":1751606460928,"y":26.019},{"x":1751606400788,"y":24.687},{"x":1751606340638,"y":21.354},{"x":1751606280393,"y":22.312},{"x":1751606220307,"y":22.849},{"x":1751606162932,"y":26.214},{"x":1751606102750,"y":30.031},{"x":1751606042616,"y":26.825},{"x":1751605982451,"y":26.915},{"x":1751605922313,"y":43.088},{"x":1751605862152,"y":36.823},{"x":1751605802044,"y":38.836},{"x":1751605741855,"y":33.345},{"x":1751605681709,"y":33.284},{"x":1751605621567,"y":31.452},{"x":1751605561416,"y":28.14},{"x":1751605501278,"y":29.567},{"x":1751605441127,"y":27.737},{"x":1751605380964,"y":28.595},{"x":1751605320815,"y":34.023},{"x":1751605260672,"y":31.534},{"x":1751605200873,"y":32.5},{"x":1751605140340,"y":29.102},{"x":1751605080198,"y":28.938},{"x":1751605022932,"y":24.229},{"x":1751604962796,"y":20.637},{"x":1751604902626,"y":21.625},{"x":1751604842484,"y":23.824},{"x":1751604782333,"y":26.059},{"x":1751604722190,"y":24.437},{"x":1751604662038,"y":24.133},{"x":1751604601744,"y":25.547},{"x":1751604541588,"y":22.017},{"x":1751604481435,"y":23.627},{"x":1751604421296,"y":24.053},{"x":1751604361151,"y":26.416},{"x":1751604300991,"y":26.259},{"x":1751604240824,"y":24.437},{"x":1751604180683,"y":26.887},{"x":1751604120576,"y":36.407},{"x":1751604060349,"y":32.413},{"x":1751604000250,"y":31.611},{"x":1751603942968,"y":31.404},{"x":1751603882826,"y":34.968},{"x":1751603822669,"y":31.937},{"x":1751603762525,"y":41.617},{"x":1751603702382,"y":49.909},{"x":1751603642222,"y":44.343},{"x":1751603582073,"y":44.714},{"x":1751603521911,"y":34.514},{"x":1751603461765,"y":24.076},{"x":1751603401623,"y":23.086},{"x":1751603341476,"y":28.373},{"x":1751603281332,"y":31.062},{"x":1751603221177,"y":26.063},{"x":1751603161016,"y":27.672},{"x":1751603100881,"y":25.999},{"x":1751603040708,"y":30.153},{"x":1751602980563,"y":24.325},{"x":1751602920419,"y":34.371},{"x":1751602860352,"y":34.731},{"x":1751602802972,"y":32.385},{"x":1751602742808,"y":32.236},{"x":1751602682653,"y":24.055},{"x":1751602622471,"y":27.609},{"x":1751602562334,"y":26.311},{"x":1751602502183,"y":26.096},{"x":1751602442014,"y":28.164},{"x":1751602381869,"y":25.867},{"x":1751602321719,"y":24.884},{"x":1751602261571,"y":24.869},{"x":1751602201456,"y":25.75},{"x":1751602141278,"y":32.879},{"x":1751602081125,"y":35.934},{"x":1751602020962,"y":37.029},{"x":1751601960815,"y":34.863},{"x":1751601900699,"y":38.413},{"x":1751601840543,"y":27.671},{"x":1751601780394,"y":27.199},{"x":1751601720281,"y":28.815},{"x":1751601662881,"y":26.716},{"x":1751601602712,"y":26.936},{"x":1751601542531,"y":31.097},{"x":1751601482389,"y":29.637},{"x":1751601422239,"y":33.442},{"x":1751601362090,"y":47.727},{"x":1751601301934,"y":49.591},{"x":1751601241794,"y":49.924},{"x":1751601181654,"y":45.704},{"x":1751601121511,"y":44.676},{"x":1751601061365,"y":24.089},{"x":1751601001212,"y":23.93},{"x":1751600941061,"y":26.752},{"x":1751600880901,"y":26.97},{"x":1751600820731,"y":26.64},{"x":1751600760594,"y":28.136},{"x":1751600700614,"y":24.339},{"x":1751600640300,"y":25.756},{"x":1751600582985,"y":24.882},{"x":1751600522832,"y":26.801},{"x":1751600462684,"y":25.59},{"x":1751600402536,"y":26.094},{"x":1751600342393,"y":29.592},{"x":1751600282241,"y":22.063},{"x":1751600222090,"y":24.134},{"x":1751600161932,"y":29.818},{"x":1751600101808,"y":29.091},{"x":1751600041622,"y":27.565},{"x":1751599981475,"y":26.355},{"x":1751599921326,"y":26.466},{"x":1751599861176,"y":27.373},{"x":1751599801016,"y":28.38},{"x":1751599740852,"y":26.867},{"x":1751599680710,"y":25.78},{"x":1751599620560,"y":23.664},{"x":1751599560395,"y":25.565},{"x":1751599500300,"y":22.408},{"x":1751599440103,"y":26.323},{"x":1751599382897,"y":23.323},{"x":1751599322747,"y":27.43},{"x":1751599262608,"y":29.69},{"x":1751599202451,"y":28.398},{"x":1751599142304,"y":28.411},{"x":1751599082158,"y":28.571},{"x":1751599021974,"y":25.634},{"x":1751598961810,"y":26.104},{"x":1751598901689,"y":32.878},{"x":1751598841518,"y":41.876},{"x":1751598781374,"y":41.291},{"x":1751598721226,"y":44.239},{"x":1751598661076,"y":45.233},{"x":1751598600924,"y":37.425},{"x":1751598540771,"y":25.266},{"x":1751598480639,"y":27.109},{"x":1751598420465,"y":26.501},{"x":1751598360337,"y":25.696},{"x":1751598303056,"y":26.703},{"x":1751598242667,"y":27.364},{"x":1751598182527,"y":44.652},{"x":1751598122237,"y":47.602},{"x":1751598062052,"y":48.01},{"x":1751598001325,"y":46.397},{"x":1751597941029,"y":45.18},{"x":1751597880911,"y":24.078},{"x":1751597820729,"y":26.849},{"x":1751597760585,"y":26.317},{"x":1751597700501,"y":26.445},{"x":1751597640461,"y":26.102},{"x":1751597582931,"y":24.762},{"x":1751597522789,"y":28.384},{"x":1751597462640,"y":24.634},{"x":1751597402475,"y":26.417},{"x":1751597342339,"y":27.206},{"x":1751597282164,"y":27.604},{"x":1751597222016,"y":30.31},{"x":1751597161863,"y":36.537},{"x":1751597101720,"y":37.236},{"x":1751597041570,"y":42.296},{"x":1751596981413,"y":39.186},{"x":1751596921251,"y":30.783},{"x":1751596861109,"y":30.303},{"x":1751596800946,"y":26.104},{"x":1751596740769,"y":23.408},{"x":1751596680633,"y":24.526},{"x":1751596620472,"y":24.081},{"x":1751596560403,"y":25.771},{"x":1751596500283,"y":26.431},{"x":1751596442965,"y":28.655},{"x":1751596382846,"y":27.279},{"x":1751596322655,"y":29.569},{"x":1751596262511,"y":29.826},{"x":1751596202337,"y":26.853},{"x":1751596142192,"y":26.125},{"x":1751596082037,"y":32.402},{"x":1751596021874,"y":31.462},{"x":1751595961724,"y":33.751},{"x":1751595901577,"y":33.087},{"x":1751595841407,"y":35.563},{"x":1751595781252,"y":37.823},{"x":1751595721109,"y":49.295},{"x":1751595660931,"y":50.064},{"x":1751595600802,"y":45.18},{"x":1751595540626,"y":44.756},{"x":1751595480499,"y":38.278},{"x":1751595420304,"y":24.015},{"x":1751595362977,"y":23.492},{"x":1751595302843,"y":29.145},{"x":1751595242679,"y":29.207},{"x":1751595182513,"y":28.837},{"x":1751595122368,"y":24.31},{"x":1751595062214,"y":32.117},{"x":1751595002098,"y":30.75},{"x":1751594941891,"y":33.91},{"x":1751594881749,"y":38.799},{"x":1751594821595,"y":26.584},{"x":1751594761431,"y":24.844},{"x":1751594701288,"y":26.195},{"x":1751594641114,"y":31.675},{"x":1751594580940,"y":31.375},{"x":1751594520763,"y":30.9},{"x":1751594460637,"y":34.311},{"x":1751594400482,"y":27.61},{"x":1751594340294,"y":29.096},{"x":1751594282964,"y":32.747},{"x":1751594222812,"y":26.242},{"x":1751594162673,"y":24.716},{"x":1751594102529,"y":38.368},{"x":1751594042386,"y":34.815},{"x":1751593982246,"y":35.174},{"x":1751593922121,"y":35.375},{"x":1751593861924,"y":31.89},{"x":1751593801781,"y":24.288},{"x":1751593741612,"y":25.576},{"x":1751593681467,"y":24.595},{"x":1751593621314,"y":24.822},{"x":1751593561163,"y":24.443},{"x":1751593501015,"y":38.216},{"x":1751593440839,"y":34.946},{"x":1751593380697,"y":34.563},{"x":1751593320568,"y":47.273},{"x":1751593260435,"y":52.448},{"x":1751593200326,"y":41.638},{"x":1751593142963,"y":55.39},{"x":1751593082819,"y":52.318},{"x":1751593022687,"y":41.792},{"x":1751592962526,"y":44.553},{"x":1751592902374,"y":39.991},{"x":1751592842241,"y":36.15},{"x":1751592782075,"y":35.253},{"x":1751592721914,"y":32.553},{"x":1751592661769,"y":31.421},{"x":1751592601628,"y":32.667},{"x":1751592541515,"y":29.698},{"x":1751592481354,"y":31.463},{"x":1751592421188,"y":30.53},{"x":1751592361043,"y":32.363},{"x":1751592300893,"y":31.78},{"x":1751592240722,"y":37.741},{"x":1751592180585,"y":46.036},{"x":1751592120460,"y":42.511},{"x":1751592060299,"y":40.464},{"x":1751592002990,"y":37.592},{"x":1751591942846,"y":32.27},{"x":1751591882691,"y":43.08},{"x":1751591822513,"y":40.858},{"x":1751591762334,"y":44.102},{"x":1751591702182,"y":42.752},{"x":1751591642039,"y":43.81},{"x":1751591581880,"y":40.821},{"x":1751591521741,"y":40.891},{"x":1751591461584,"y":39.541},{"x":1751591401442,"y":38.335},{"x":1751591341283,"y":38.143},{"x":1751591281147,"y":36.05},{"x":1751591220988,"y":33.186},{"x":1751591160838,"y":35.815},{"x":1751591100726,"y":31.604},{"x":1751591040598,"y":29.918},{"x":1751590980443,"y":32.557},{"x":1751590920246,"y":33.085},{"x":1751590862973,"y":34.781},{"x":1751590802829,"y":35.208},{"x":1751590742666,"y":56.658},{"x":1751590682515,"y":54.615},{"x":1751590622379,"y":45.769},{"x":1751590562219,"y":44.963},{"x":1751590502071,"y":45.297},{"x":1751590441891,"y":25.631},{"x":1751590381747,"y":27.207},{"x":1751590321597,"y":23.157},{"x":1751590261450,"y":28.029},{"x":1751590201306,"y":29.667},{"x":1751590141136,"y":26.844},{"x":1751590080951,"y":29.739},{"x":1751590020811,"y":27.264},{"x":1751589960673,"y":30.866},{"x":1751589900650,"y":26.19},{"x":1751589840349,"y":25.027},{"x":1751589780166,"y":26.642},{"x":1751589722901,"y":24.519},{"x":1751589662756,"y":35.288},{"x":1751589602620,"y":47.667},{"x":1751589542446,"y":43.697},{"x":1751589482305,"y":43.325},{"x":1751589422158,"y":37.105},{"x":1751589361987,"y":35.262},{"x":1751589301819,"y":26.337},{"x":1751589241681,"y":29.925},{"x":1751589181524,"y":27.785},{"x":1751589121372,"y":26.879},{"x":1751589061227,"y":25.291},{"x":1751589001082,"y":31.998},{"x":1751588940919,"y":35.98},{"x":1751588880766,"y":39.53},{"x":1751588820616,"y":38.959},{"x":1751588760474,"y":31.807},{"x":1751588700405,"y":33.326},{"x":1751588640280,"y":26.286},{"x":1751588582891,"y":24.732},{"x":1751588522755,"y":25.317},{"x":1751588462609,"y":25.702},{"x":1751588402460,"y":29.372},{"x":1751588342308,"y":28.123},{"x":1751588282140,"y":29.548},{"x":1751588221954,"y":29.528},{"x":1751588161803,"y":26.947},{"x":1751588101656,"y":24.623},{"x":1751588041510,"y":24.209},{"x":1751587981367,"y":27.046},{"x":1751587921215,"y":25.608},{"x":1751587861004,"y":25.812},{"x":1751587800832,"y":28.54},{"x":1751587740674,"y":25.478},{"x":1751587680583,"y":26.395},{"x":1751587620391,"y":30.49},{"x":1751587560298,"y":29.096},{"x":1751587502930,"y":29.605},{"x":1751587442790,"y":27.87},{"x":1751587382621,"y":32.243},{"x":1751587322479,"y":26.868},{"x":1751587262331,"y":26.298},{"x":1751587202223,"y":51.084},{"x":1751587141989,"y":45.899},{"x":1751587081839,"y":45.937},{"x":1751587021705,"y":44.111},{"x":1751586961565,"y":47.64},{"x":1751586901417,"y":25.69},{"x":1751586841248,"y":25.7},{"x":1751586781094,"y":28.101},{"x":1751586720935,"y":23.328},{"x":1751586660779,"y":23.341},{"x":1751586600665,"y":28.962},{"x":1751586540481,"y":31.017},{"x":1751586480373,"y":24.759},{"x":1751586423004,"y":26.78},{"x":1751586362857,"y":40.935},{"x":1751586302714,"y":34.564},{"x":1751586242553,"y":34.453},{"x":1751586182405,"y":34.969},{"x":1751586122264,"y":34.6},{"x":1751586062104,"y":34.132},{"x":1751586001950,"y":32.07},{"x":1751585941761,"y":30.161},{"x":1751585881606,"y":31.768},{"x":1751585821459,"y":29.175},{"x":1751585761324,"y":25.296},{"x":1751585701160,"y":26.437},{"x":1751585640984,"y":25.824},{"x":1751585580838,"y":24.473},{"x":1751585520658,"y":24.338},{"x":1751585460518,"y":26.799},{"x":1751585400428,"y":24.58},{"x":1751585340219,"y":29.485},{"x":1751585282939,"y":32.225},{"x":1751585222792,"y":44.95},{"x":1751585162628,"y":43.793},{"x":1751585102488,"y":44.654},{"x":1751585042338,"y":39.177},{"x":1751584982196,"y":36.637},{"x":1751584922042,"y":20.046},{"x":1751584861879,"y":22.288},{"x":1751584801735,"y":25.32},{"x":1751584741578,"y":27.306},{"x":1751584681401,"y":30.339},{"x":1751584621217,"y":30.158},{"x":1751584561041,"y":49.879},{"x":1751584500892,"y":51.829},{"x":1751584440720,"y":46.821},{"x":1751584380576,"y":47.043},{"x":1751584320431,"y":45.706},{"x":1751584260308,"y":30.067},{"x":1751584200139,"y":25.341},{"x":1751584142898,"y":25.945},{"x":1751584082707,"y":30.288},{"x":1751584022564,"y":25.075},{"x":1751583962413,"y":33.954},{"x":1751583902271,"y":38.184},{"x":1751583842121,"y":36.298},{"x":1751583781966,"y":31.474},{"x":1751583721823,"y":25.729},{"x":1751583661660,"y":27.016},{"x":1751583601579,"y":25.234},{"x":1751583541331,"y":25.857},{"x":1751583481186,"y":29.14},{"x":1751583421034,"y":26.997},{"x":1751583360886,"y":30.926},{"x":1751583300751,"y":29.319},{"x":1751583240599,"y":31.944},{"x":1751583180480,"y":27.511},{"x":1751583120330,"y":27.185},{"x":1751583062980,"y":29.683},{"x":1751583002838,"y":29.293},{"x":1751582942691,"y":26.2},{"x":1751582882544,"y":32.867},{"x":1751582822400,"y":28.394},{"x":1751582762248,"y":29.249},{"x":1751582702099,"y":30.839},{"x":1751582641938,"y":28.339},{"x":1751582581793,"y":28.893},{"x":1751582521654,"y":30.117},{"x":1751582461502,"y":29.077},{"x":1751582401390,"y":35.875},{"x":1751582341215,"y":37.859},{"x":1751582281028,"y":37.507},{"x":1751582220860,"y":35.281},{"x":1751582160710,"y":36.475},{"x":1751582100585,"y":26.052},{"x":1751582040462,"y":36.561},{"x":1751581980242,"y":33.034},{"x":1751581922967,"y":31.707},{"x":1751581862823,"y":32.683},{"x":1751581802678,"y":33.902},{"x":1751581742514,"y":33.171},{"x":1751581682348,"y":28.892},{"x":1751581622215,"y":25.153},{"x":1751581562052,"y":23.683},{"x":1751581501905,"y":31.275},{"x":1751581441743,"y":35.417},{"x":1751581381571,"y":34.08},{"x":1751581321430,"y":32.908},{"x":1751581261259,"y":32.55},{"x":1751581201112,"y":26.282},{"x":1751581140975,"y":25.95},{"x":1751581080773,"y":28.397},{"x":1751581020640,"y":31.136},{"x":1751580960478,"y":27.428},{"x":1751580900188,"y":47.934},{"x":1751580842905,"y":51.119},{"x":1751580782700,"y":45.873},{"x":1751580722554,"y":44.689},{"x":1751580662400,"y":46.404},{"x":1751580602249,"y":31.986},{"x":1751580542100,"y":28.3},{"x":1751580481932,"y":26.237},{"x":1751580421789,"y":30.506},{"x":1751580361646,"y":29.241},{"x":1751580301500,"y":29.522},{"x":1751580241353,"y":26.303},{"x":1751580181203,"y":29.673},{"x":1751580121035,"y":36.33},{"x":1751580060856,"y":37.099},{"x":1751580001026,"y":38.329},{"x":1751579940490,"y":36.536},{"x":1751579880346,"y":35.123},{"x":1751579823015,"y":31.959},{"x":1751579762887,"y":30.075},{"x":1751579702718,"y":26.823},{"x":1751579642556,"y":27.603},{"x":1751579582412,"y":31.212},{"x":1751579522253,"y":29.908},{"x":1751579462104,"y":31.169},{"x":1751579401950,"y":33.53},{"x":1751579341808,"y":32.531},{"x":1751579281619,"y":27.218},{"x":1751579221475,"y":27.229},{"x":1751579161318,"y":28.052},{"x":1751579101156,"y":27.679},{"x":1751579040986,"y":34.844},{"x":1751578980844,"y":35.899},{"x":1751578920694,"y":41.37},{"x":1751578860511,"y":38.43},{"x":1751578800490,"y":36.058},{"x":1751578740207,"y":31.688},{"x":1751578682911,"y":33.092},{"x":1751578622768,"y":29.572},{"x":1751578562617,"y":26.52},{"x":1751578502470,"y":26.187},{"x":1751578442320,"y":27.769},{"x":1751578382160,"y":27.457},{"x":1751578322014,"y":28.994},{"x":1751578261856,"y":33.432},{"x":1751578201699,"y":28.283},{"x":1751578141552,"y":28.033},{"x":1751578081318,"y":30.715},{"x":1751578021173,"y":30.212},{"x":1751577961014,"y":27.798},{"x":1751577900870,"y":27.639},{"x":1751577840724,"y":35.379},{"x":1751577780570,"y":41.971},{"x":1751577720465,"y":40.758},{"x":1751577660250,"y":41.262},{"x":1751577602928,"y":43.346},{"x":1751577542791,"y":45.854},{"x":1751577482619,"y":37.739},{"x":1751577422436,"y":35.71},{"x":1751577362292,"y":39.535},{"x":1751577302147,"y":35.655},{"x":1751577241986,"y":34.663},{"x":1751577181832,"y":36.597},{"x":1751577121674,"y":33.512},{"x":1751577061525,"y":34.153},{"x":1751577001373,"y":33.271},{"x":1751576941236,"y":35.049},{"x":1751576881040,"y":32.705},{"x":1751576820887,"y":40.028},{"x":1751576760740,"y":35.439},{"x":1751576700653,"y":37.286},{"x":1751576640460,"y":42.358},{"x":1751576580349,"y":42.692},{"x":1751576522924,"y":35.026},{"x":1751576462785,"y":44.093},{"x":1751576402670,"y":42.518},{"x":1751576342461,"y":42.738},{"x":1751576282311,"y":45.698},{"x":1751576222176,"y":40.715},{"x":1751576162028,"y":36.415},{"x":1751576101879,"y":36.421},{"x":1751576041728,"y":46.76},{"x":1751575981585,"y":45.534},{"x":1751575921428,"y":46.848},{"x":1751575861292,"y":49.452},{"x":1751575801161,"y":48.492},{"x":1751575740955,"y":46.622},{"x":1751575680765,"y":44.405},{"x":1751575620627,"y":43.041},{"x":1751575560479,"y":43.594},{"x":1751575500376,"y":41.831},{"x":1751575442995,"y":43.781},{"x":1751575382856,"y":38.77},{"x":1751575322705,"y":38.669},{"x":1751575262561,"y":39.078},{"x":1751575202403,"y":43.487},{"x":1751575142257,"y":39.967},{"x":1751575082112,"y":44.563},{"x":1751575021973,"y":44.122},{"x":1751574961810,"y":39.371},{"x":1751574901667,"y":39.393},{"x":1751574841520,"y":38.093},{"x":1751574781377,"y":40.277},{"x":1751574721236,"y":38.501},{"x":1751574661067,"y":41.893},{"x":1751574600926,"y":38.651},{"x":1751574540750,"y":42.754},{"x":1751574480621,"y":40.294},{"x":1751574420438,"y":41.01},{"x":1751574360297,"y":46.196},{"x":1751574302997,"y":45.107},{"x":1751574242855,"y":42.911},{"x":1751574182709,"y":44.665},{"x":1751574122573,"y":40.682},{"x":1751574062418,"y":42.034},{"x":1751574002265,"y":41.583},{"x":1751573942131,"y":44.172},{"x":1751573881927,"y":48.754},{"x":1751573821722,"y":43.058},{"x":1751573761555,"y":42.7},{"x":1751573701401,"y":50.224},{"x":1751573641240,"y":46.63},{"x":1751573581094,"y":40.939},{"x":1751573520942,"y":40.826},{"x":1751573460766,"y":38.138},{"x":1751573400622,"y":37.311},{"x":1751573340423,"y":38.844},{"x":1751573280249,"y":43.305},{"x":1751573222925,"y":45.748},{"x":1751573162806,"y":42.296},{"x":1751573102624,"y":47.227},{"x":1751573042503,"y":42.758},{"x":1751572982316,"y":45.452},{"x":1751572922172,"y":42.396},{"x":1751572862031,"y":41.764},{"x":1751572801872,"y":41.316},{"x":1751572741672,"y":42.304},{"x":1751572681520,"y":37.007},{"x":1751572621353,"y":36.469},{"x":1751572561196,"y":36.803},{"x":1751572501068,"y":41.856},{"x":1751572440864,"y":40.864},{"x":1751572380714,"y":40.273},{"x":1751572320614,"y":38.365},{"x":1751572260425,"y":42.385},{"x":1751572200327,"y":49.559},{"x":1751572142959,"y":55.277},{"x":1751572082810,"y":57.5},{"x":1751572022667,"y":62.842},{"x":1751571962527,"y":48.325},{"x":1751571902373,"y":47.396},{"x":1751571842229,"y":39.61},{"x":1751571782086,"y":43.552},{"x":1751571721927,"y":40.374},{"x":1751571661786,"y":44.577},{"x":1751571601612,"y":41.483},{"x":1751571541466,"y":38.772},{"x":1751571481309,"y":42.065},{"x":1751571421174,"y":49.269},{"x":1751571361016,"y":48.413},{"x":1751571300875,"y":50.588},{"x":1751571240721,"y":46.667},{"x":1751571180585,"y":46.175},{"x":1751571120464,"y":38.046},{"x":1751571060339,"y":44.011},{"x":1751571002978,"y":36.784},{"x":1751570942833,"y":31.168},{"x":1751570882689,"y":34.783},{"x":1751570822531,"y":46.012},{"x":1751570762385,"y":42.69},{"x":1751570702234,"y":51.574},{"x":1751570642085,"y":44.352},{"x":1751570581900,"y":40.465},{"x":1751570521755,"y":42.347},{"x":1751570461609,"y":44.429},{"x":1751570401463,"y":32.724},{"x":1751570341294,"y":37.04},{"x":1751570281117,"y":29.924},{"x":1751570220915,"y":30.627},{"x":1751570160763,"y":28.228},{"x":1751570100727,"y":33.259},{"x":1751570040447,"y":32.416},{"x":1751569980301,"y":29.869},{"x":1751569923020,"y":31.053},{"x":1751569862867,"y":32.464},{"x":1751569802724,"y":31.416},{"x":1751569742580,"y":33.377},{"x":1751569682428,"y":33.994},{"x":1751569622295,"y":34.106},{"x":1751569562130,"y":29.883},{"x":1751569501974,"y":29.131},{"x":1751569441831,"y":33.015},{"x":1751569381687,"y":30.564},{"x":1751569321545,"y":32.719},{"x":1751569261400,"y":37.959},{"x":1751569201458,"y":40.463},{"x":1751569141060,"y":42.732},{"x":1751569080893,"y":45.491},{"x":1751569020747,"y":42.553},{"x":1751568960612,"y":41.785},{"x":1751568900525,"y":46.568},{"x":1751568840309,"y":40.568},{"x":1751568783008,"y":39.068},{"x":1751568722857,"y":36.137},{"x":1751568662708,"y":42.014},{"x":1751568602563,"y":46.967},{"x":1751568542417,"y":39.348},{"x":1751568482277,"y":40.342},{"x":1751568422121,"y":56.148},{"x":1751568361963,"y":49.962},{"x":1751568301830,"y":56.607},{"x":1751568241681,"y":55.225},{"x":1751568181539,"y":60.069},{"x":1751568121369,"y":49.068},{"x":1751568061228,"y":41.854},{"x":1751568001074,"y":36.769},{"x":1751567940908,"y":35.732},{"x":1751567880768,"y":36.531},{"x":1751567820624,"y":35.797},{"x":1751567760548,"y":39.72},{"x":1751567700255,"y":38.291},{"x":1751567642917,"y":38.259},{"x":1751567582772,"y":37.359},{"x":1751567522617,"y":42.66},{"x":1751567462465,"y":53.717},{"x":1751567402298,"y":47.501},{"x":1751567342155,"y":50.314},{"x":1751567281991,"y":47.04},{"x":1751567221834,"y":45.395},{"x":1751567161693,"y":38.981},{"x":1751567101539,"y":37.228},{"x":1751567041394,"y":38.902},{"x":1751566981248,"y":28.558},{"x":1751566921094,"y":41.438},{"x":1751566860898,"y":25.393},{"x":1751566800791,"y":36.754},{"x":1751566740625,"y":37.059},{"x":1751566680431,"y":45.151},{"x":1751566620199,"y":41.367},{"x":1751566562900,"y":42.571},{"x":1751566502739,"y":36.097},{"x":1751566442578,"y":34.94},{"x":1751566382439,"y":33.637},{"x":1751566322289,"y":30.115},{"x":1751566262143,"y":25.817},{"x":1751566201983,"y":33.219},{"x":1751566141832,"y":34.644},{"x":1751566081692,"y":41.427},{"x":1751566021540,"y":39.864},{"x":1751565961382,"y":38.231},{"x":1751565901252,"y":37.931},{"x":1751565841074,"y":35.453},{"x":1751565780916,"y":37.825},{"x":1751565720768,"y":30.246},{"x":1751565660650,"y":23.584},{"x":1751565600990,"y":31.214},{"x":1751565540258,"y":28.911},{"x":1751565482994,"y":35.024},{"x":1751565422843,"y":28.306},{"x":1751565362664,"y":39.386},{"x":1751565302524,"y":40.871},{"x":1751565242384,"y":25.4},{"x":1751565182242,"y":20.695},{"x":1751565122093,"y":25.27},{"x":1751565061940,"y":24.257},{"x":1751565001783,"y":26.972},{"x":1751564941637,"y":29.211},{"x":1751564881476,"y":26.799},{"x":1751564821324,"y":25.395},{"x":1751564761182,"y":22.739},{"x":1751564701034,"y":21.959},{"x":1751564640859,"y":26.778},{"x":1751564580710,"y":23.544},{"x":1751564520573,"y":28.512},{"x":1751564460426,"y":28.074},{"x":1751564400309,"y":38.073},{"x":1751564343035,"y":29.23},{"x":1751564282866,"y":23.123},{"x":1751564222708,"y":26.53},{"x":1751564162559,"y":30.684},{"x":1751564102424,"y":33.566},{"x":1751564042266,"y":36.438},{"x":1751563982110,"y":29.594},{"x":1751563921962,"y":47.842},{"x":1751563861823,"y":49.634},{"x":1751563801679,"y":46.159},{"x":1751563741514,"y":50.422},{"x":1751563681359,"y":41.624},{"x":1751563621210,"y":31.745},{"x":1751563561029,"y":24.787},{"x":1751563500905,"y":25.404},{"x":1751563440730,"y":26.747},{"x":1751563380586,"y":23.47},{"x":1751563320496,"y":31.57},{"x":1751563260328,"y":29.875},{"x":1751563200149,"y":30.535},{"x":1751563142886,"y":30.31},{"x":1751563082744,"y":24.785},{"x":1751563022541,"y":24.474},{"x":1751562962394,"y":19.638},{"x":1751562902240,"y":32.691},{"x":1751562842094,"y":38.429},{"x":1751562781923,"y":31.7},{"x":1751562721785,"y":31.596},{"x":1751562661630,"y":34.598},{"x":1751562601480,"y":22.099},{"x":1751562541315,"y":26.076},{"x":1751562481164,"y":28.839},{"x":1751562421035,"y":45.617},{"x":1751562360862,"y":24.361},{"x":1751562300741,"y":22.033},{"x":1751562240588,"y":32.171},{"x":1751562180467,"y":27.361},{"x":1751562120410,"y":21.194},{"x":1751562062972,"y":32.573},{"x":1751562002836,"y":33.867},{"x":1751561942670,"y":39.768},{"x":1751561882527,"y":40.299},{"x":1751561822372,"y":37.583},{"x":1751561762210,"y":21.352},{"x":1751561702065,"y":27.033},{"x":1751561641902,"y":33.723},{"x":1751561581742,"y":33.445},{"x":1751561521562,"y":27.423},{"x":1751561461406,"y":25.959},{"x":1751561401261,"y":30.341},{"x":1751561341110,"y":31.038},{"x":1751561280943,"y":30.085},{"x":1751561220786,"y":32.226},{"x":1751561160773,"y":27.304},{"x":1751561100901,"y":32.143},{"x":1751561040511,"y":33.338},{"x":1751560980216,"y":33.971},{"x":1751560922930,"y":28.58},{"x":1751560862788,"y":28.494},{"x":1751560802653,"y":29.053},{"x":1751560742483,"y":27.565},{"x":1751560682342,"y":30.88},{"x":1751560622201,"y":28.93},{"x":1751560562051,"y":25.32},{"x":1751560501911,"y":25.447},{"x":1751560441757,"y":26.318},{"x":1751560381614,"y":25.149},{"x":1751560321459,"y":22.614},{"x":1751560261314,"y":17.991},{"x":1751560201176,"y":21.216},{"x":1751560140965,"y":26.36},{"x":1751560080821,"y":26.491},{"x":1751560020652,"y":23.65},{"x":1751559960537,"y":22.938},{"x":1751559900477,"y":25.992},{"x":1751559840149,"y":21.298},{"x":1751559782935,"y":25.649},{"x":1751559722791,"y":36.477},{"x":1751559662623,"y":33.757},{"x":1751559602472,"y":39.294},{"x":1751559542321,"y":33.057},{"x":1751559482114,"y":22.399},{"x":1751559421941,"y":18.988},{"x":1751559361791,"y":17.691},{"x":1751559301637,"y":23.472},{"x":1751559241489,"y":20.412},{"x":1751559181369,"y":19.553},{"x":1751559121167,"y":35.415},{"x":1751559061005,"y":33.963},{"x":1751559000879,"y":27.631},{"x":1751558940703,"y":27.486},{"x":1751558880618,"y":31.686},{"x":1751558820439,"y":14.563},{"x":1751558760223,"y":17.237},{"x":1751558702959,"y":17.845},{"x":1751558642803,"y":18.847},{"x":1751558582648,"y":22.246},{"x":1751558522493,"y":24.057},{"x":1751558462317,"y":25.154},{"x":1751558402175,"y":26.621},{"x":1751558341985,"y":29.576},{"x":1751558281831,"y":20.453},{"x":1751558221678,"y":24.351},{"x":1751558161527,"y":20.539},{"x":1751558101373,"y":27.771},{"x":1751558041221,"y":19.57},{"x":1751557981059,"y":19.389},{"x":1751557920893,"y":16.819},{"x":1751557860741,"y":21.752},{"x":1751557800625,"y":20.673},{"x":1751557740447,"y":15.52},{"x":1751557680250,"y":9.979},{"x":1751557622972,"y":16.29},{"x":1751557562787,"y":22.268},{"x":1751557502623,"y":15.763},{"x":1751557442459,"y":30.07},{"x":1751557382281,"y":29.726},{"x":1751557322120,"y":29.519},{"x":1751557261940,"y":20.878},{"x":1751557201794,"y":25.868},{"x":1751557141641,"y":25.7},{"x":1751557081492,"y":22.088},{"x":1751557021341,"y":22.761},{"x":1751556961191,"y":23.163},{"x":1751556901012,"y":20.306},{"x":1751556840850,"y":27.493},{"x":1751556780691,"y":33.153},{"x":1751556720585,"y":25.486},{"x":1751556660415,"y":36.691},{"x":1751556600409,"y":34.663},{"x":1751556542943,"y":36.529},{"x":1751556482797,"y":22.663},{"x":1751556422654,"y":26.192},{"x":1751556362491,"y":25.445},{"x":1751556302350,"y":21.992},{"x":1751556242204,"y":12.374},{"x":1751556182051,"y":15.32},{"x":1751556121906,"y":13.01},{"x":1751556061748,"y":11.951},{"x":1751556001599,"y":14.515},{"x":1751555941450,"y":12.185},{"x":1751555881263,"y":14.997},{"x":1751555821079,"y":16.684},{"x":1751555760905,"y":6.248},{"x":1751555700759,"y":21.422},{"x":1751555640579,"y":9.357},{"x":1751555580466,"y":24.637},{"x":1751555520265,"y":27.11},{"x":1751555462947,"y":37.546},{"x":1751555402807,"y":29.975},{"x":1751555342650,"y":40.655},{"x":1751555282504,"y":40.17},{"x":1751555222368,"y":36.938},{"x":1751555162210,"y":29.157},{"x":1751555102048,"y":32.513},{"x":1751555041903,"y":27.206},{"x":1751554981752,"y":14.186},{"x":1751554921616,"y":9.975},{"x":1751554861467,"y":25.086},{"x":1751554801361,"y":33.658},{"x":1751554741128,"y":30.345},{"x":1751554680938,"y":26.673},{"x":1751554620778,"y":20.27},{"x":1751554560634,"y":23.738},{"x":1751554500493,"y":19.754},{"x":1751554440270,"y":23.302},{"x":1751554382991,"y":26.598},{"x":1751554322838,"y":51.441},{"x":1751554262694,"y":34.092},{"x":1751554202541,"y":29.174},{"x":1751554142404,"y":23.261},{"x":1751554082250,"y":28.425},{"x":1751554022093,"y":24.016},{"x":1751553961930,"y":22.897},{"x":1751553901772,"y":20.706},{"x":1751553841627,"y":26.419},{"x":1751553781481,"y":16.661},{"x":1751553721333,"y":8.89},{"x":1751553661162,"y":18.404},{"x":1751553600991,"y":16.438},{"x":1751553540830,"y":10.309},{"x":1751553480680,"y":12.128},{"x":1751553420557,"y":10.497},{"x":1751553360434,"y":10.136},{"x":1751553300305,"y":17.411},{"x":1751553242966,"y":23.373},{"x":1751553182802,"y":16.127},{"x":1751553122652,"y":13.176},{"x":1751553062527,"y":15.526},{"x":1751553002343,"y":20.43},{"x":1751552942199,"y":19.705},{"x":1751552882050,"y":26.645},{"x":1751552821892,"y":23.38},{"x":1751552761719,"y":22.197},{"x":1751552701572,"y":15.23},{"x":1751552641431,"y":9.952},{"x":1751552581285,"y":17.28},{"x":1751552521158,"y":26.485},{"x":1751552460975,"y":28.34},{"x":1751552400821,"y":40.749},{"x":1751552340674,"y":49.583},{"x":1751552280494,"y":28.956},{"x":1751552220240,"y":35.195},{"x":1751552162941,"y":14.218},{"x":1751552102795,"y":13.821},{"x":1751552042646,"y":14.942},{"x":1751551982502,"y":11.91},{"x":1751551922354,"y":10.559},{"x":1751551862204,"y":25.378},{"x":1751551802057,"y":20.442},{"x":1751551741865,"y":22.428},{"x":1751551681707,"y":20.09},{"x":1751551621561,"y":20.727},{"x":1751551561405,"y":17.543},{"x":1751551501272,"y":11.586},{"x":1751551441090,"y":13.853},{"x":1751551380913,"y":17.842},{"x":1751551320764,"y":16.509},{"x":1751551260636,"y":10.242},{"x":1751551200598,"y":12.45},{"x":1751551140305,"y":25.313},{"x":1751551082968,"y":16.839},{"x":1751551022807,"y":33.776},{"x":1751550962655,"y":26.412},{"x":1751550902503,"y":29.929},{"x":1751550842351,"y":11.538},{"x":1751550782211,"y":9.911},{"x":1751550722058,"y":6.378},{"x":1751550661892,"y":9.226},{"x":1751550601759,"y":7.331},{"x":1751550541597,"y":4.476},{"x":1751550481446,"y":12.789},{"x":1751550421292,"y":15.496},{"x":1751550361140,"y":-1.209},{"x":1751550300981,"y":11.596},{"x":1751550240788,"y":42.478},{"x":1751550180638,"y":41.455},{"x":1751550120497,"y":47.952},{"x":1751550060312,"y":33.328},{"x":1751550003018,"y":25.967},{"x":1751549942858,"y":22.969},{"x":1751549882706,"y":21.028},{"x":1751549822537,"y":9.573},{"x":1751549762382,"y":14.101},{"x":1751549702193,"y":21.834},{"x":1751549642041,"y":28.967},{"x":1751549581886,"y":17.406},{"x":1751549521747,"y":18.807},{"x":1751549461597,"y":46.914},{"x":1751549401447,"y":39.073},{"x":1751549341280,"y":11.49},{"x":1751549281137,"y":12.935},{"x":1751549220959,"y":17.094},{"x":1751549160790,"y":18.678},{"x":1751549100681,"y":14.797},{"x":1751549040496,"y":23.276},{"x":1751548980366,"y":22.395},{"x":1751548920213,"y":10.345},{"x":1751548862947,"y":23.314},{"x":1751548802807,"y":35.156},{"x":1751548742655,"y":57.932},{"x":1751548682496,"y":9.09},{"x":1751548622282,"y":49.714},{"x":1751548562128,"y":34.398},{"x":1751548501954,"y":42.345},{"x":1751548441798,"y":35.354},{"x":1751548381638,"y":17.35},{"x":1751548321491,"y":40.31},{"x":1751548261329,"y":28.113},{"x":1751548201186,"y":25.884},{"x":1751548141015,"y":24.364},{"x":1751548080855,"y":16.787},{"x":1751548020709,"y":15.089},{"x":1751547960572,"y":19.058},{"x":1751547900442,"y":13.747},{"x":1751547840225,"y":15.357},{"x":1751547782969,"y":17.791},{"x":1751547722820,"y":17.885},{"x":1751547662651,"y":19.64},{"x":1751547602499,"y":17.204},{"x":1751547542331,"y":16.913},{"x":1751547482184,"y":21.34},{"x":1751547422038,"y":12.776},{"x":1751547361896,"y":10.411},{"x":1751547301761,"y":8.889},{"x":1751547241596,"y":5.107},{"x":1751547181452,"y":21.428},{"x":1751547121289,"y":23.55},{"x":1751547061139,"y":29.76},{"x":1751547000938,"y":38.417},{"x":1751546940779,"y":44.465},{"x":1751546880685,"y":19.856},{"x":1751546820508,"y":31.27},{"x":1751546760333,"y":16.745},{"x":1751546700014,"y":21.733},{"x":1751546642863,"y":18.204},{"x":1751546582718,"y":16.056},{"x":1751546522580,"y":51.15},{"x":1751546462426,"y":46.654},{"x":1751546402281,"y":23.393},{"x":1751546342137,"y":33.673},{"x":1751546281973,"y":13.513},{"x":1751546221824,"y":17.745},{"x":1751546161671,"y":16.789},{"x":1751546101512,"y":20.123},{"x":1751546041371,"y":17.619},{"x":1751545981221,"y":21.035},{"x":1751545921068,"y":11.228},{"x":1751545860907,"y":31.911},{"x":1751545800764,"y":23.22},{"x":1751545740618,"y":35.977},{"x":1751545680482,"y":23.059},{"x":1751545620317,"y":26.895},{"x":1751545560041,"y":30.432},{"x":1751545502857,"y":25.958},{"x":1751545442713,"y":29.932},{"x":1751545382567,"y":36.518},{"x":1751545322419,"y":39.901},{"x":1751545262258,"y":55.024},{"x":1751545202103,"y":37.189},{"x":1751545141929,"y":31.126},{"x":1751545081778,"y":37.87},{"x":1751545021608,"y":39.151},{"x":1751544961439,"y":33.978},{"x":1751544901271,"y":35.296},{"x":1751544841113,"y":15.269},{"x":1751544780917,"y":8.961},{"x":1751544720767,"y":9.947},{"x":1751544660604,"y":17.657},{"x":1751544600543,"y":17.756},{"x":1751544540332,"y":21.711},{"x":1751544483006,"y":34.377},{"x":1751544422858,"y":35.129},{"x":1751544362695,"y":26.601},{"x":1751544302552,"y":30.844},{"x":1751544242385,"y":36.571},{"x":1751544182240,"y":29.637},{"x":1751544122089,"y":5.83},{"x":1751544061923,"y":18.17},{"x":1751544001745,"y":37.868},{"x":1751543941531,"y":19.588},{"x":1751543881388,"y":38.29},{"x":1751543821249,"y":42.404},{"x":1751543761084,"y":53.691},{"x":1751543700924,"y":41.944},{"x":1751543640763,"y":52.999},{"x":1751543580640,"y":50.927},{"x":1751543520483,"y":61.477},{"x":1751543460346,"y":28.843},{"x":1751543400021,"y":33.9},{"x":1751543342871,"y":13.614},{"x":1751543282724,"y":38.264},{"x":1751543222569,"y":29.15},{"x":1751543162414,"y":23.156},{"x":1751543102269,"y":22.554},{"x":1751543042126,"y":15.251},{"x":1751542981970,"y":12.466},{"x":1751542921821,"y":12.1},{"x":1751542861678,"y":20.746},{"x":1751542801533,"y":35.647},{"x":1751542741379,"y":35.525},{"x":1751542681244,"y":29.868},{"x":1751542621074,"y":16.723},{"x":1751542560929,"y":31.558},{"x":1751542500766,"y":13.933},{"x":1751542440593,"y":5.638},{"x":1751542380442,"y":3.006},{"x":1751542320343,"y":8.23},{"x":1751542263018,"y":25.626},{"x":1751542202897,"y":27.926},{"x":1751542142727,"y":38.775},{"x":1751542082572,"y":50.695},{"x":1751542022418,"y":49.511},{"x":1751541962271,"y":37.319},{"x":1751541902085,"y":25.76},{"x":1751541841911,"y":20.184},{"x":1751541781765,"y":23.429},{"x":1751541721656,"y":21.043},{"x":1751541661467,"y":27.846},{"x":1751541601298,"y":29.242},{"x":1751541541148,"y":25.916},{"x":1751541481003,"y":32.608},{"x":1751541420810,"y":14.394},{"x":1751541360641,"y":20.326},{"x":1751541300614,"y":30.036},{"x":1751541240373,"y":42.636},{"x":1751541180170,"y":37.142},{"x":1751541122904,"y":39.845},{"x":1751541062707,"y":47.952},{"x":1751541002565,"y":23.326},{"x":1751540942409,"y":20.348},{"x":1751540882255,"y":24.604},{"x":1751540822105,"y":17.756},{"x":1751540761940,"y":34.852},{"x":1751540701786,"y":42.032},{"x":1751540641635,"y":25.651},{"x":1751540581483,"y":14.185},{"x":1751540521326,"y":13.992},{"x":1751540461176,"y":33.647},{"x":1751540401394,"y":28.517},{"x":1751540340751,"y":30.114},{"x":1751540280602,"y":52.615},{"x":1751540220434,"y":54.58},{"x":1751540160283,"y":40.268},{"x":1751540102971,"y":6.037},{"x":1751540042819,"y":10.858},{"x":1751539982674,"y":25.38},{"x":1751539922518,"y":20.941},{"x":1751539862372,"y":12.201},{"x":1751539802222,"y":24.259},{"x":1751539742076,"y":22.892},{"x":1751539681922,"y":16.869},{"x":1751539621788,"y":19.706},{"x":1751539561618,"y":36.94},{"x":1751539501455,"y":38.773},{"x":1751539441294,"y":10.474},{"x":1751539381157,"y":12.695},{"x":1751539320984,"y":31.287},{"x":1751539260822,"y":48.08},{"x":1751539200691,"y":29.691},{"x":1751539140493,"y":31.912},{"x":1751539080439,"y":37.696},{"x":1751539022949,"y":34.561},{"x":1751538962822,"y":36.187},{"x":1751538902645,"y":29.612},{"x":1751538842499,"y":13.339},{"x":1751538782339,"y":11.601},{"x":1751538722187,"y":14.761},{"x":1751538662046,"y":32.152},{"x":1751538601890,"y":12.8},{"x":1751538541733,"y":10.445},{"x":1751538481579,"y":10.209},{"x":1751538421428,"y":35.005},{"x":1751538361266,"y":34.004},{"x":1751538301136,"y":15.235},{"x":1751538240946,"y":7.261},{"x":1751538180786,"y":9.305},{"x":1751538120644,"y":16.278},{"x":1751538060499,"y":20.769},{"x":1751538000430,"y":21.504},{"x":1751537940209,"y":23.418},{"x":1751537882907,"y":23.407},{"x":1751537822680,"y":33.903},{"x":1751537762527,"y":51.471},{"x":1751537702367,"y":30.203},{"x":1751537642232,"y":27.569},{"x":1751537582069,"y":32.981},{"x":1751537521907,"y":11.512},{"x":1751537461751,"y":14.863},{"x":1751537401594,"y":41.268},{"x":1751537341435,"y":21.627},{"x":1751537281290,"y":35.25},{"x":1751537221131,"y":58.028},{"x":1751537160959,"y":33.597},{"x":1751537100803,"y":42.998},{"x":1751537040656,"y":28.778},{"x":1751536980476,"y":32.765},{"x":1751536920347,"y":35.431},{"x":1751536860117,"y":37.834},{"x":1751536802910,"y":39.948},{"x":1751536742729,"y":36.442},{"x":1751536682597,"y":33.165},{"x":1751536622398,"y":14.35},{"x":1751536562258,"y":22.245},{"x":1751536502105,"y":10.676},{"x":1751536441952,"y":10.666},{"x":1751536381804,"y":6.877},{"x":1751536321666,"y":9.399},{"x":1751536261502,"y":17.71},{"x":1751536201368,"y":15.797},{"x":1751536141239,"y":13.606},{"x":1751536081059,"y":35.29},{"x":1751536020910,"y":25.988},{"x":1751535960729,"y":32.287},{"x":1751535900701,"y":19.626},{"x":1751535840437,"y":29.314},{"x":1751535780292,"y":35.061},{"x":1751535722981,"y":38.021},{"x":1751535662839,"y":24.799},{"x":1751535602699,"y":22.779},{"x":1751535542544,"y":21.136},{"x":1751535482390,"y":24.439},{"x":1751535422235,"y":19.654},{"x":1751535362086,"y":16.197},{"x":1751535301919,"y":21.112},{"x":1751535241778,"y":28.902},{"x":1751535181619,"y":18.11},{"x":1751535121464,"y":25.49},{"x":1751535061313,"y":30.726},{"x":1751535001178,"y":31.308},{"x":1751534940980,"y":39.7},{"x":1751534880839,"y":39.946},{"x":1751534820690,"y":40.827},{"x":1751534760555,"y":57.888},{"x":1751534700563,"y":33.371},{"x":1751534640315,"y":29.519},{"x":1751534582961,"y":37.04},{"x":1751534522796,"y":47.107},{"x":1751534462651,"y":46.143},{"x":1751534402511,"y":27.576},{"x":1751534342352,"y":18.617},{"x":1751534282208,"y":19.277},{"x":1751534222013,"y":49.733},{"x":1751534161853,"y":35.291},{"x":1751534101706,"y":33.931},{"x":1751534041558,"y":28.458},{"x":1751533981437,"y":52.821},{"x":1751533921312,"y":55.626},{"x":1751533861137,"y":52.375},{"x":1751533800940,"y":50.436},{"x":1751533740786,"y":54.427},{"x":1751533680775,"y":48.559},{"x":1751533620584,"y":39.895},{"x":1751533560363,"y":40.337},{"x":1751533503018,"y":42.195},{"x":1751533442865,"y":42.929},{"x":1751533382708,"y":44.622},{"x":1751533322553,"y":47.837},{"x":1751533262401,"y":35.708},{"x":1751533202255,"y":37.074},{"x":1751533142084,"y":30.826},{"x":1751533081927,"y":29.458},{"x":1751533021778,"y":38.72},{"x":1751532961633,"y":34.354},{"x":1751532901490,"y":34.666},{"x":1751532841328,"y":37.104},{"x":1751532781173,"y":38.054},{"x":1751532721006,"y":37.788},{"x":1751532660843,"y":32.249},{"x":1751532600682,"y":49.238},{"x":1751532540568,"y":59.033},{"x":1751532480374,"y":63.38},{"x":1751532423019,"y":62.361},{"x":1751532362859,"y":67.181},{"x":1751532302694,"y":50.494},{"x":1751532242543,"y":53.379},{"x":1751532182389,"y":47.677},{"x":1751532122244,"y":46.497},{"x":1751532062087,"y":47.855},{"x":1751532001913,"y":56.039},{"x":1751531941754,"y":58.53},{"x":1751531881609,"y":58.706},{"x":1751531821449,"y":55.449},{"x":1751531761303,"y":32.95},{"x":1751531701153,"y":31.499},{"x":1751531640987,"y":29.429},{"x":1751531580831,"y":28.446},{"x":1751531520692,"y":31.973},{"x":1751531460521,"y":34.57},{"x":1751531400427,"y":29.161},{"x":1751531340198,"y":37.641},{"x":1751531282897,"y":40.713},{"x":1751531222752,"y":27.424},{"x":1751531162602,"y":41.632},{"x":1751531102465,"y":42.646},{"x":1751531042311,"y":42.673},{"x":1751530982163,"y":35.388},{"x":1751530922016,"y":29.965},{"x":1751530861867,"y":23.582},{"x":1751530801722,"y":24.393},{"x":1751530741568,"y":49.063},{"x":1751530681427,"y":25.85},{"x":1751530621241,"y":30.097},{"x":1751530561080,"y":35.745},{"x":1751530500901,"y":33.279},{"x":1751530440739,"y":33.496},{"x":1751530380618,"y":37.726},{"x":1751530320479,"y":36.451},{"x":1751530260337,"y":36.256},{"x":1751530203019,"y":33.057},{"x":1751530142870,"y":47.068},{"x":1751530082713,"y":55.232},{"x":1751530022571,"y":63.266},{"x":1751529962406,"y":52.599},{"x":1751529902234,"y":54.104},{"x":1751529842081,"y":31.569},{"x":1751529781897,"y":31.177},{"x":1751529721754,"y":43.424},{"x":1751529661612,"y":23.519},{"x":1751529601574,"y":24.809},{"x":1751529541191,"y":34.749},{"x":1751529481014,"y":41.093},{"x":1751529420861,"y":33.057},{"x":1751529360724,"y":31.901},{"x":1751529300599,"y":35.264},{"x":1751529240423,"y":27.485},{"x":1751529180229,"y":32.425},{"x":1751529122928,"y":27.161},{"x":1751529062774,"y":34.252},{"x":1751529002622,"y":23.652},{"x":1751528942464,"y":29.079},{"x":1751528882294,"y":32.986},{"x":1751528822140,"y":36.441},{"x":1751528761984,"y":35.74},{"x":1751528701826,"y":30.841},{"x":1751528641666,"y":30.051},{"x":1751528581516,"y":28.044},{"x":1751528521373,"y":28.683},{"x":1751528461226,"y":28.736},{"x":1751528401072,"y":29.063},{"x":1751528340900,"y":28.677},{"x":1751528280755,"y":30.81},{"x":1751528220613,"y":33.762},{"x":1751528160559,"y":41.235},{"x":1751528100283,"y":36.483},{"x":1751528042985,"y":47.218},{"x":1751527982825,"y":49.285},{"x":1751527922679,"y":43.287},{"x":1751527862535,"y":30.302},{"x":1751527802374,"y":42.382},{"x":1751527742215,"y":41.532},{"x":1751527682057,"y":36.696},{"x":1751527621878,"y":38.682},{"x":1751527561732,"y":40.385},{"x":1751527501578,"y":39.8},{"x":1751527441426,"y":36.873},{"x":1751527381260,"y":36.67},{"x":1751527321118,"y":30.924},{"x":1751527260954,"y":36.173},{"x":1751527200825,"y":31.54},{"x":1751527140645,"y":33.283},{"x":1751527080511,"y":30.209},{"x":1751527020384,"y":29.503},{"x":1751526963003,"y":22.542},{"x":1751526902914,"y":24.284},{"x":1751526842704,"y":21.597},{"x":1751526782558,"y":27.336},{"x":1751526722415,"y":24.561},{"x":1751526662267,"y":22.506},{"x":1751526602117,"y":25.625},{"x":1751526541954,"y":24.185},{"x":1751526481807,"y":21.615},{"x":1751526422660,"y":22.008},{"x":1751526362499,"y":19.034},{"x":1751526302351,"y":20.804},{"x":1751526242200,"y":18.659},{"x":1751526182049,"y":19.306},{"x":1751526121877,"y":19.396},{"x":1751526061880,"y":17.598},{"x":1751526001822,"y":34.449},{"x":1751525941560,"y":36.133},{"x":1751525881403,"y":38.257},{"x":1751525821272,"y":33.676},{"x":1751525761085,"y":33.342},{"x":1751525700913,"y":21.03},{"x":1751525640759,"y":23.535},{"x":1751525580623,"y":31.297},{"x":1751525520466,"y":20.897},{"x":1751525460322,"y":19.596},{"x":1751525402992,"y":25.152},{"x":1751525342839,"y":32.671},{"x":1751525282693,"y":28.717},{"x":1751525222556,"y":28.348},{"x":1751525162399,"y":29.202},{"x":1751525102247,"y":24.732},{"x":1751525042150,"y":23.157},{"x":1751524981938,"y":20.251},{"x":1751524921796,"y":20.603},{"x":1751524861649,"y":16.312},{"x":1751524801499,"y":32.04},{"x":1751524741352,"y":36.804},{"x":1751524681214,"y":25.163},{"x":1751524621050,"y":49.376},{"x":1751524560891,"y":34.999},{"x":1751524500753,"y":34.28},{"x":1751524440607,"y":20.779},{"x":1751524380482,"y":35.317},{"x":1751524320345,"y":16.878},{"x":1751524263015,"y":24.184},{"x":1751524202877,"y":14.107},{"x":1751524142706,"y":51.335},{"x":1751524082562,"y":33.185},{"x":1751524022411,"y":43.575},{"x":1751523962258,"y":59.207},{"x":1751523902100,"y":60.066},{"x":1751523841940,"y":15.217},{"x":1751523781771,"y":13.816},{"x":1751523721625,"y":18.814},{"x":1751523661479,"y":21.482},{"x":1751523601330,"y":16.193},{"x":1751523541173,"y":13.095},{"x":1751523480937,"y":15.173},{"x":1751523420755,"y":26.484},{"x":1751523360607,"y":8.69},{"x":1751523300516,"y":20.713},{"x":1751523240283,"y":23.172},{"x":1751523182938,"y":28.502},{"x":1751523122784,"y":17.951},{"x":1751523062629,"y":31.91},{"x":1751523002481,"y":34.411},{"x":1751522942303,"y":22.91},{"x":1751522882135,"y":25.086},{"x":1751522821980,"y":30.046},{"x":1751522761836,"y":24.476},{"x":1751522701689,"y":20.098},{"x":1751522641533,"y":23.755},{"x":1751522581384,"y":25.144},{"x":1751522521244,"y":26.756},{"x":1751522461116,"y":23.541},{"x":1751522400993,"y":25.093},{"x":1751522340741,"y":26.286},{"x":1751522280604,"y":29.077},{"x":1751522220512,"y":29.095},{"x":1751522160319,"y":29.071},{"x":1751522102983,"y":31.727},{"x":1751522042826,"y":29.346},{"x":1751521982675,"y":21.542},{"x":1751521922516,"y":21.171},{"x":1751521862366,"y":20.09},{"x":1751521802216,"y":17.136},{"x":1751521742052,"y":18.718},{"x":1751521681900,"y":22.842},{"x":1751521621749,"y":16.342},{"x":1751521561606,"y":19.924},{"x":1751521501450,"y":20.563},{"x":1751521441294,"y":26.887},{"x":1751521381143,"y":24.247},{"x":1751521320985,"y":24.998},{"x":1751521260836,"y":27.547},{"x":1751521200729,"y":23.004},{"x":1751521140524,"y":22.119},{"x":1751521080363,"y":23.957},{"x":1751521020174,"y":33.63},{"x":1751520962911,"y":28.201},{"x":1751520902750,"y":25.346},{"x":1751520842600,"y":27.189},{"x":1751520782462,"y":27.292},{"x":1751520722314,"y":25.626},{"x":1751520662166,"y":21.899},{"x":1751520601996,"y":22.861},{"x":1751520541842,"y":18.347},{"x":1751520481694,"y":19.534},{"x":1751520421552,"y":19.429},{"x":1751520361394,"y":21.727},{"x":1751520301215,"y":21.216},{"x":1751520241059,"y":23.102},{"x":1751520180904,"y":29.095},{"x":1751520120737,"y":33.721},{"x":1751520060591,"y":36.027},{"x":1751520000493,"y":30.876},{"x":1751519940270,"y":28.437},{"x":1751519880175,"y":20.074},{"x":1751519822840,"y":21.675},{"x":1751519762672,"y":20.843},{"x":1751519702525,"y":24.412},{"x":1751519642375,"y":25.27},{"x":1751519582248,"y":25.684},{"x":1751519522076,"y":25.199},{"x":1751519461932,"y":27.921},{"x":1751519401780,"y":29.568},{"x":1751519341631,"y":22.108},{"x":1751519281480,"y":22.478},{"x":1751519221332,"y":22.444},{"x":1751519161184,"y":21.353},{"x":1751519101017,"y":23.505},{"x":1751519040858,"y":23.874},{"x":1751518980694,"y":23.04},{"x":1751518920580,"y":23.461},{"x":1751518860419,"y":33.13},{"x":1751518800113,"y":29.935},{"x":1751518742909,"y":25.544},{"x":1751518682759,"y":24.539},{"x":1751518622622,"y":30.19},{"x":1751518562472,"y":22.743},{"x":1751518502326,"y":21.236},{"x":1751518442176,"y":21.846},{"x":1751518382022,"y":25.082},{"x":1751518321878,"y":21.064},{"x":1751518261733,"y":34.034},{"x":1751518201582,"y":35.195},{"x":1751518141423,"y":32.235},{"x":1751518081254,"y":35.026},{"x":1751518021083,"y":41.155},{"x":1751517960922,"y":34.232},{"x":1751517900833,"y":30.475},{"x":1751517840602,"y":28.902},{"x":1751517780423,"y":28.892},{"x":1751517720254,"y":27.944},{"x":1751517662956,"y":25.321},{"x":1751517602801,"y":22.396},{"x":1751517542648,"y":22.604},{"x":1751517482502,"y":21.951},{"x":1751517422354,"y":25.65},{"x":1751517362204,"y":26.922},{"x":1751517302042,"y":23.481},{"x":1751517241895,"y":28.025},{"x":1751517181750,"y":24.502},{"x":1751517121607,"y":27.691},{"x":1751517061459,"y":26.985},{"x":1751517001313,"y":22.773},{"x":1751516941141,"y":25.434},{"x":1751516880981,"y":22.515},{"x":1751516820787,"y":24.107},{"x":1751516760645,"y":26.231},{"x":1751516700501,"y":28.525},{"x":1751516640408,"y":25.822},{"x":1751516580205,"y":28.729},{"x":1751516522905,"y":30.994},{"x":1751516462755,"y":27.579},{"x":1751516402599,"y":25.936},{"x":1751516342479,"y":24.317},{"x":1751516282277,"y":24.125},{"x":1751516222109,"y":25.422},{"x":1751516161955,"y":24.753},{"x":1751516101794,"y":32.055},{"x":1751516041634,"y":25.155},{"x":1751515981469,"y":25.325},{"x":1751515921300,"y":24.416},{"x":1751515861157,"y":23.885},{"x":1751515800974,"y":26.315},{"x":1751515740818,"y":25.524},{"x":1751515680689,"y":28.631},{"x":1751515620538,"y":27.414},{"x":1751515560217,"y":32.813},{"x":1751515502918,"y":30.905},{"x":1751515442754,"y":36.996},{"x":1751515382610,"y":43.171},{"x":1751515322455,"y":37.903},{"x":1751515262287,"y":36.801},{"x":1751515202131,"y":35.995},{"x":1751515141870,"y":42.211},{"x":1751515081733,"y":43.981},{"x":1751515021584,"y":49.087},{"x":1751514961436,"y":45.208},{"x":1751514901290,"y":45.584},{"x":1751514841141,"y":44.138},{"x":1751514780963,"y":22.732},{"x":1751514720799,"y":25.335},{"x":1751514660658,"y":27.393},{"x":1751514600434,"y":31.464},{"x":1751514540297,"y":25.492},{"x":1751514482939,"y":27.787},{"x":1751514422812,"y":24.121},{"x":1751514362648,"y":24.159},{"x":1751514302494,"y":26.069},{"x":1751514242334,"y":22.888},{"x":1751514182190,"y":26.142},{"x":1751514122038,"y":24.983},{"x":1751514061876,"y":27.309},{"x":1751514001734,"y":23.692},{"x":1751513941589,"y":29.847},{"x":1751513881420,"y":28.634},{"x":1751513821272,"y":25.205},{"x":1751513761145,"y":24.955},{"x":1751513700921,"y":26.443},{"x":1751513640767,"y":24.132},{"x":1751513580649,"y":22.406},{"x":1751513520504,"y":25.54},{"x":1751513460281,"y":24.235},{"x":1751513403017,"y":22.786},{"x":1751513342844,"y":22.802},{"x":1751513282674,"y":24.551},{"x":1751513222513,"y":21.938},{"x":1751513162369,"y":31.238},{"x":1751513102235,"y":33.446},{"x":1751513042073,"y":36.128},{"x":1751512981903,"y":31.696},{"x":1751512921762,"y":30.315},{"x":1751512861621,"y":33.412},{"x":1751512801497,"y":26.036},{"x":1751512741311,"y":26.354},{"x":1751512681180,"y":22.911},{"x":1751512620955,"y":27.284},{"x":1751512560786,"y":21.609},{"x":1751512500662,"y":22.433},{"x":1751512440497,"y":27.033},{"x":1751512380321,"y":25.54},{"x":1751512320215,"y":26.77},{"x":1751512262885,"y":26.923},{"x":1751512202727,"y":29.165},{"x":1751512142569,"y":23.542},{"x":1751512082421,"y":23.055},{"x":1751512022287,"y":24.985},{"x":1751511962101,"y":24.319},{"x":1751511901927,"y":24.99},{"x":1751511841866,"y":22.906},{"x":1751511780906,"y":25.687},{"x":1751511722239,"y":27.76},{"x":1751511662070,"y":27.031},{"x":1751511601704,"y":25.701},{"x":1751511541185,"y":23.123},{"x":1751511481028,"y":22.329},{"x":1751511420872,"y":23.303},{"x":1751511360729,"y":24.516},{"x":1751511300631,"y":44.236},{"x":1751511240365,"y":51.865},{"x":1751511180203,"y":47.245},{"x":1751511122914,"y":48.652},{"x":1751511062776,"y":47.825},{"x":1751511002614,"y":28.338},{"x":1751510942464,"y":38.689},{"x":1751510882310,"y":42.842},{"x":1751510822158,"y":40.503},{"x":1751510761989,"y":40.471},{"x":1751510701849,"y":41.539},{"x":1751510641693,"y":31.637},{"x":1751510581533,"y":24.118},{"x":1751510521379,"y":28.964},{"x":1751510461181,"y":32.437},{"x":1751510401005,"y":27.419},{"x":1751510340838,"y":25.989},{"x":1751510280696,"y":27.687},{"x":1751510220548,"y":23.747},{"x":1751510160453,"y":25.564},{"x":1751510100241,"y":24.523},{"x":1751510043023,"y":27.001},{"x":1751509982860,"y":24.601},{"x":1751509922712,"y":33.206},{"x":1751509862544,"y":32.725},{"x":1751509802385,"y":38.049},{"x":1751509742237,"y":35.885},{"x":1751509682106,"y":34.299},{"x":1751509621906,"y":29.067},{"x":1751509561756,"y":25.783},{"x":1751509501617,"y":22.323},{"x":1751509441467,"y":22.696},{"x":1751509381307,"y":25.394},{"x":1751509321130,"y":29.945},{"x":1751509260977,"y":25.944},{"x":1751509200829,"y":31.615},{"x":1751509140620,"y":28.82},{"x":1751509080534,"y":28.93},{"x":1751509020368,"y":30.127},{"x":1751508960057,"y":29.559},{"x":1751508902872,"y":29.929},{"x":1751508842699,"y":29.836},{"x":1751508782527,"y":31.599},{"x":1751508722379,"y":28.228},{"x":1751508662241,"y":30.071},{"x":1751508602094,"y":25.512},{"x":1751508541935,"y":50.635},{"x":1751508481787,"y":47.844},{"x":1751508421619,"y":47.831},{"x":1751508361467,"y":46.347},{"x":1751508301321,"y":46.003},{"x":1751508241177,"y":25.914},{"x":1751508181010,"y":34.187},{"x":1751508120858,"y":36.025},{"x":1751508060720,"y":34.307},{"x":1751508000739,"y":37.356},{"x":1751507940377,"y":31.516},{"x":1751507883023,"y":30.494},{"x":1751507822869,"y":28.818},{"x":1751507762680,"y":26.113},{"x":1751507702531,"y":31.13},{"x":1751507642378,"y":25.884},{"x":1751507582220,"y":27.478},{"x":1751507522074,"y":27.103},{"x":1751507461907,"y":30.0},{"x":1751507401762,"y":27.841},{"x":1751507341608,"y":30.164},{"x":1751507281462,"y":25.563},{"x":1751507221316,"y":28.897},{"x":1751507161167,"y":25.048},{"x":1751507101042,"y":24.608},{"x":1751507040837,"y":29.116},{"x":1751506980683,"y":28.675},{"x":1751506920534,"y":26.84},{"x":1751506860398,"y":27.337},{"x":1751506800264,"y":31.866},{"x":1751506742978,"y":29.888},{"x":1751506682752,"y":29.188},{"x":1751506622596,"y":29.763},{"x":1751506562448,"y":27.456},{"x":1751506502300,"y":23.462},{"x":1751506442136,"y":23.361},{"x":1751506381979,"y":28.02},{"x":1751506321816,"y":27.321},{"x":1751506261644,"y":23.422},{"x":1751506201480,"y":22.91},{"x":1751506141331,"y":27.143},{"x":1751506081191,"y":32.329},{"x":1751506021040,"y":29.774},{"x":1751505960912,"y":38.545},{"x":1751505900750,"y":48.314},{"x":1751505840603,"y":44.151},{"x":1751505780452,"y":42.255},{"x":1751505720329,"y":43.367},{"x":1751505660150,"y":32.895},{"x":1751505602903,"y":22.864},{"x":1751505542760,"y":27.455},{"x":1751505482579,"y":27.156},{"x":1751505422383,"y":30.969},{"x":1751505362228,"y":27.378},{"x":1751505302080,"y":26.671},{"x":1751505241914,"y":26.384},{"x":1751505181760,"y":25.982},{"x":1751505121612,"y":25.696},{"x":1751505061466,"y":25.957},{"x":1751505001324,"y":30.265},{"x":1751504941172,"y":23.908},{"x":1751504881020,"y":26.376},{"x":1751504820859,"y":25.943},{"x":1751504760709,"y":32.012},{"x":1751504700640,"y":24.867},{"x":1751504640456,"y":28.203},{"x":1751504580300,"y":46.733},{"x":1751504522950,"y":55.417},{"x":1751504462801,"y":50.412},{"x":1751504402693,"y":44.696},{"x":1751504342477,"y":47.166},{"x":1751504282255,"y":25.854},{"x":1751504222106,"y":34.353},{"x":1751504161942,"y":33.159},{"x":1751504101827,"y":33.938},{"x":1751504041673,"y":36.843},{"x":1751503981522,"y":33.191},{"x":1751503921373,"y":25.437},{"x":1751503861224,"y":25.423},{"x":1751503801065,"y":29.267},{"x":1751503740900,"y":24.505},{"x":1751503680748,"y":25.302},{"x":1751503620606,"y":25.595},{"x":1751503560466,"y":29.371},{"x":1751503500412,"y":30.408},{"x":1751503443047,"y":27.592},{"x":1751503382845,"y":31.757},{"x":1751503322691,"y":34.534},{"x":1751503262540,"y":31.594},{"x":1751503202392,"y":30.341},{"x":1751503142244,"y":31.577},{"x":1751503082084,"y":27.149},{"x":1751503021929,"y":26.635},{"x":1751502961780,"y":32.792},{"x":1751502901637,"y":33.432},{"x":1751502841491,"y":37.18},{"x":1751502781346,"y":35.475},{"x":1751502721197,"y":37.275},{"x":1751502661004,"y":28.621},{"x":1751502600895,"y":28.732},{"x":1751502540706,"y":25.843},{"x":1751502480605,"y":23.857},{"x":1751502420366,"y":29.02},{"x":1751502360262,"y":24.409},{"x":1751502303000,"y":24.001},{"x":1751502242831,"y":26.535},{"x":1751502182700,"y":29.923},{"x":1751502122498,"y":34.301},{"x":1751502062350,"y":28.48},{"x":1751502002183,"y":29.827},{"x":1751501942031,"y":34.869},{"x":1751501881808,"y":33.195},{"x":1751501821625,"y":36.966},{"x":1751501761479,"y":32.826},{"x":1751501701330,"y":31.809},{"x":1751501641190,"y":30.318},{"x":1751501581035,"y":26.165},{"x":1751501520889,"y":27.535},{"x":1751501460749,"y":32.81},{"x":1751501400625,"y":27.359},{"x":1751501340441,"y":26.261},{"x":1751501280321,"y":27.124},{"x":1751501220088,"y":26.288},{"x":1751501162877,"y":26.917},{"x":1751501102749,"y":26.165},{"x":1751501042586,"y":27.404},{"x":1751500982430,"y":28.315},{"x":1751500922282,"y":24.186},{"x":1751500862126,"y":27.998},{"x":1751500802079,"y":28.69},{"x":1751500741766,"y":40.494},{"x":1751500681587,"y":36.959},{"x":1751500621435,"y":36.42},{"x":1751500561293,"y":37.447},{"x":1751500501133,"y":31.131},{"x":1751500440983,"y":27.793},{"x":1751500380823,"y":23.348},{"x":1751500320671,"y":24.297},{"x":1751500260550,"y":23.813},{"x":1751500200411,"y":27.411},{"x":1751500140044,"y":46.411},{"x":1751500082881,"y":45.711},{"x":1751500022738,"y":45.131},{"x":1751499962598,"y":49.829},{"x":1751499902447,"y":51.488},{"x":1751499842303,"y":31.132},{"x":1751499782169,"y":28.044},{"x":1751499722025,"y":29.93},{"x":1751499661869,"y":25.359},{"x":1751499601718,"y":28.269},{"x":1751499541559,"y":25.069},{"x":1751499481411,"y":31.069},{"x":1751499421268,"y":28.862},{"x":1751499361095,"y":26.242},{"x":1751499300927,"y":39.24},{"x":1751499240776,"y":34.292},{"x":1751499180635,"y":32.6},{"x":1751499120526,"y":32.201},{"x":1751499060335,"y":35.773},{"x":1751499000293,"y":26.895},{"x":1751498942895,"y":25.41},{"x":1751498882768,"y":25.675},{"x":1751498822591,"y":26.562},{"x":1751498762436,"y":28.449},{"x":1751498702298,"y":27.318},{"x":1751498642149,"y":25.068},{"x":1751498581994,"y":26.294},{"x":1751498521837,"y":27.016},{"x":1751498461691,"y":27.246},{"x":1751498401529,"y":26.954},{"x":1751498341382,"y":29.609},{"x":1751498281234,"y":36.846},{"x":1751498221040,"y":34.022},{"x":1751498160890,"y":32.818},{"x":1751498100763,"y":32.909},{"x":1751498040605,"y":41.649},{"x":1751497980449,"y":28.426},{"x":1751497920334,"y":25.631},{"x":1751497862977,"y":28.411},{"x":1751497802870,"y":27.312},{"x":1751497742695,"y":27.258},{"x":1751497682550,"y":27.268},{"x":1751497622399,"y":26.834},{"x":1751497562249,"y":27.984},{"x":1751497502098,"y":24.898},{"x":1751497441943,"y":24.53},{"x":1751497381794,"y":31.379},{"x":1751497321622,"y":30.278},{"x":1751497261484,"y":25.645},{"x":1751497201343,"y":26.691},{"x":1751497141154,"y":25.772},{"x":1751497080986,"y":27.444},{"x":1751497020836,"y":24.672},{"x":1751496960696,"y":37.218},{"x":1751496900568,"y":33.936},{"x":1751496840379,"y":34.898},{"x":1751496780122,"y":35.928},{"x":1751496722871,"y":35.588},{"x":1751496662725,"y":24.68},{"x":1751496602541,"y":29.966},{"x":1751496542402,"y":29.198},{"x":1751496482246,"y":31.005},{"x":1751496422094,"y":26.477},{"x":1751496361928,"y":36.524},{"x":1751496301780,"y":47.497},{"x":1751496241628,"y":44.733},{"x":1751496181481,"y":48.149},{"x":1751496121340,"y":47.615},{"x":1751496061213,"y":31.573},{"x":1751496001026,"y":27.445},{"x":1751495940863,"y":29.768},{"x":1751495880721,"y":28.919},{"x":1751495820518,"y":30.146},{"x":1751495760457,"y":36.279},{"x":1751495700251,"y":34.712},{"x":1751495642933,"y":36.176},{"x":1751495582800,"y":36.636},{"x":1751495522637,"y":33.145},{"x":1751495462481,"y":23.93},{"x":1751495402338,"y":25.358},{"x":1751495342169,"y":31.743},{"x":1751495281992,"y":26.294},{"x":1751495221848,"y":24.901},{"x":1751495161698,"y":24.046},{"x":1751495101546,"y":24.594},{"x":1751495041397,"y":33.607},{"x":1751494981254,"y":30.681},{"x":1751494921093,"y":31.794},{"x":1751494860929,"y":28.489},{"x":1751494800805,"y":40.186},{"x":1751494740619,"y":42.688},{"x":1751494680498,"y":36.513},{"x":1751494620329,"y":32.987},{"x":1751494562995,"y":32.258},{"x":1751494502860,"y":26.897},{"x":1751494442695,"y":27.452},{"x":1751494382546,"y":23.627},{"x":1751494322388,"y":23.948},{"x":1751494262249,"y":30.892},{"x":1751494202101,"y":27.618},{"x":1751494141919,"y":27.692},{"x":1751494081758,"y":27.572},{"x":1751494021646,"y":29.065},{"x":1751493961442,"y":27.158},{"x":1751493901300,"y":28.893},{"x":1751493841147,"y":34.472},{"x":1751493780983,"y":37.726},{"x":1751493720835,"y":36.035},{"x":1751493660685,"y":36.397},{"x":1751493600526,"y":36.1},{"x":1752703141418,"y":46.549},{"x":1752703081252,"y":38.221},{"x":1752703021120,"y":35.548},{"x":1752702960927,"y":34.275},{"x":1752702901099,"y":37.686},{"x":1752702840606,"y":39.411},{"x":1752702780415,"y":39.573},{"x":1752702720320,"y":37.506},{"x":1752702662958,"y":34.619},{"x":1752702603052,"y":35.531},{"x":1752702542636,"y":33.006},{"x":1752702482462,"y":35.548},{"x":1752702422300,"y":34.843},{"x":1752702362134,"y":50.538},{"x":1752702302277,"y":53.112},{"x":1752702241802,"y":51.473},{"x":1752702181643,"y":52.255},{"x":1752702121479,"y":47.69},{"x":1752702061322,"y":47.464},{"x":1752702001503,"y":41.254},{"x":1752701940955,"y":41.135},{"x":1752701880795,"y":46.44},{"x":1752701820640,"y":42.597},{"x":1752701760504,"y":40.012},{"x":1752701700719,"y":40.368},{"x":1752701642994,"y":38.076},{"x":1752701582833,"y":42.226},{"x":1752701522694,"y":41.524},{"x":1752701462531,"y":38.058},{"x":1752701402667,"y":39.906},{"x":1752701342219,"y":45.342},{"x":1752701281993,"y":48.481},{"x":1752701221861,"y":42.834},{"x":1752701161664,"y":47.077},{"x":1752701101774,"y":47.967},{"x":1752701041312,"y":44.748},{"x":1752700981158,"y":46.98},{"x":1752700920982,"y":41.874},{"x":1752700860810,"y":40.243},{"x":1752700801131,"y":39.486},{"x":1752700740470,"y":41.094},{"x":1752700680339,"y":43.002},{"x":1752700622987,"y":40.567},{"x":1752700562828,"y":38.85},{"x":1752700502839,"y":39.215},{"x":1752700442416,"y":38.932},{"x":1752700382266,"y":43.13},{"x":1752700322102,"y":42.014},{"x":1752700261911,"y":35.455},{"x":1752700202009,"y":35.332},{"x":1752700141570,"y":39.443},{"x":1752700081412,"y":42.523},{"x":1752700021246,"y":37.25},{"x":1752699961068,"y":39.344},{"x":1752699901187,"y":41.083},{"x":1752699840747,"y":38.668},{"x":1752699780607,"y":48.162},{"x":1752699720602,"y":42.701},{"x":1752699662978,"y":41.32},{"x":1752699603297,"y":38.983},{"x":1752699542662,"y":35.874},{"x":1752699482512,"y":38.795},{"x":1752699422359,"y":32.695},{"x":1752699362196,"y":31.97},{"x":1752699302361,"y":35.572},{"x":1752699241885,"y":33.259},{"x":1752699181732,"y":36.727},{"x":1752699121570,"y":35.27},{"x":1752699061421,"y":39.384},{"x":1752699001521,"y":38.936},{"x":1752698941079,"y":37.739},{"x":1752698880890,"y":37.747},{"x":1752698820726,"y":37.907},{"x":1752698760575,"y":37.091},{"x":1752698701281,"y":39.792},{"x":1752698642988,"y":42.299},{"x":1752698582825,"y":34.566},{"x":1752698522672,"y":38.934},{"x":1752698462502,"y":40.158},{"x":1752698402598,"y":44.925},{"x":1752698342166,"y":37.476},{"x":1752698281992,"y":49.992},{"x":1752698221833,"y":38.383},{"x":1752698161649,"y":35.399},{"x":1752698101752,"y":38.715},{"x":1752698041333,"y":38.594},{"x":1752697981149,"y":35.532},{"x":1752697920971,"y":35.481},{"x":1752697860807,"y":37.643},{"x":1752697801543,"y":40.46},{"x":1752697740564,"y":41.079},{"x":1752697680324,"y":41.858},{"x":1752697622969,"y":46.964},{"x":1752697562794,"y":49.038},{"x":1752697502886,"y":47.182},{"x":1752697442460,"y":40.855},{"x":1752697382292,"y":51.29},{"x":1752697322134,"y":36.949},{"x":1752697261968,"y":38.67},{"x":1752697202081,"y":38.371},{"x":1752697141649,"y":45.446},{"x":1752697081490,"y":52.53},{"x":1752697021330,"y":40.29},{"x":1752696961164,"y":49.952},{"x":1752696901303,"y":37.571},{"x":1752696840807,"y":38.185},{"x":1752696780648,"y":40.834},{"x":1752696720512,"y":46.768},{"x":1752696660323,"y":50.216},{"x":1752696603239,"y":37.278},{"x":1752696542790,"y":35.496},{"x":1752696482640,"y":36.157},{"x":1752696422486,"y":40.295},{"x":1752696362332,"y":40.005},{"x":1752696302451,"y":39.589},{"x":1752696242006,"y":38.485},{"x":1752696181844,"y":37.776},{"x":1752696121697,"y":37.49},{"x":1752696061525,"y":40.13},{"x":1752696002068,"y":51.281},{"x":1752695941191,"y":42.572},{"x":1752695881005,"y":48.005},{"x":1752695820823,"y":42.776},{"x":1752695760698,"y":54.528},{"x":1752695700992,"y":77.426},{"x":1752695640385,"y":57.441},{"x":1752695582963,"y":59.12},{"x":1752695522806,"y":56.076},{"x":1752695462616,"y":53.315},{"x":1752695402703,"y":54.723},{"x":1752695342279,"y":43.592},{"x":1752695282120,"y":43.416},{"x":1752695221946,"y":42.983},{"x":1752695161779,"y":37.75},{"x":1752695101961,"y":52.727},{"x":1752695041456,"y":61.28},{"x":1752694981297,"y":48.739},{"x":1752694921130,"y":51.573},{"x":1752694860947,"y":50.309},{"x":1752694801268,"y":39.248},{"x":1752694740628,"y":40.884},{"x":1752694680512,"y":41.826},{"x":1752694620306,"y":41.038},{"x":1752694562992,"y":44.607},{"x":1752694503109,"y":62.308},{"x":1752694442642,"y":49.01},{"x":1752694382481,"y":60.645},{"x":1752694322316,"y":42.562},{"x":1752694262150,"y":62.075},{"x":1752694202299,"y":48.875},{"x":1752694141728,"y":46.054},{"x":1752694081563,"y":61.562},{"x":1752694021390,"y":44.022},{"x":1752693961239,"y":44.701},{"x":1752693901315,"y":50.142},{"x":1752693840812,"y":43.84},{"x":1752693780655,"y":47.97},{"x":1752693720542,"y":52.007},{"x":1752693660295,"y":46.59},{"x":1752693603269,"y":46.029},{"x":1752693542782,"y":62.02},{"x":1752693482624,"y":43.137},{"x":1752693422442,"y":48.158},{"x":1752693362273,"y":41.3},{"x":1752693302412,"y":35.993},{"x":1752693241943,"y":36.92},{"x":1752693181794,"y":49.721},{"x":1752693121611,"y":61.126},{"x":1752693061450,"y":63.737},{"x":1752693001645,"y":61.112},{"x":1752692941114,"y":57.363},{"x":1752692880947,"y":51.112},{"x":1752692820768,"y":47.986},{"x":1752692760623,"y":42.161},{"x":1752692701148,"y":40.808},{"x":1752692640231,"y":38.538},{"x":1752692582963,"y":42.331},{"x":1752692522743,"y":34.356},{"x":1752692462586,"y":51.08},{"x":1752692402939,"y":49.73},{"x":1752692342225,"y":46.964},{"x":1752692282066,"y":51.761},{"x":1752692222910,"y":52.69},{"x":1752692162568,"y":41.049},{"x":1752692102712,"y":38.673},{"x":1752692042249,"y":44.011},{"x":1752691982089,"y":50.327},{"x":1752691921917,"y":42.071},{"x":1752691861744,"y":43.668},{"x":1752691801894,"y":52.009},{"x":1752691741376,"y":49.456},{"x":1752691681222,"y":50.979},{"x":1752691621017,"y":46.12},{"x":1752691560851,"y":40.372},{"x":1752691501568,"y":38.014},{"x":1752691440560,"y":36.456},{"x":1752691380374,"y":34.247},{"x":1752691320219,"y":35.318},{"x":1752691262911,"y":37.639},{"x":1752691203090,"y":43.505},{"x":1752691142599,"y":47.617},{"x":1752691082430,"y":51.82},{"x":1752691022278,"y":48.872},{"x":1752690962117,"y":50.025},{"x":1752690902259,"y":51.255},{"x":1752690841778,"y":43.561},{"x":1752690781600,"y":36.846},{"x":1752690721430,"y":43.73},{"x":1752690661277,"y":31.219},{"x":1752690601687,"y":34.857},{"x":1752690540935,"y":35.366},{"x":1752690480814,"y":39.445},{"x":1752690420500,"y":42.773},{"x":1752690360341,"y":41.027},{"x":1752690303280,"y":42.793},{"x":1752690242813,"y":41.707},{"x":1752690182659,"y":48.7},{"x":1752690122486,"y":49.05},{"x":1752690062326,"y":40.262},{"x":1752690002440,"y":35.484},{"x":1752689941973,"y":41.659},{"x":1752689881818,"y":41.407},{"x":1752689821665,"y":38.839},{"x":1752689761495,"y":29.291},{"x":1752689701676,"y":44.108},{"x":1752689641154,"y":54.483},{"x":1752689580965,"y":64.215},{"x":1752689520855,"y":70.479},{"x":1752689460602,"y":58.46},{"x":1752689401109,"y":50.271},{"x":1752689340207,"y":40.368},{"x":1752689282932,"y":43.708},{"x":1752689222774,"y":35.333},{"x":1752689162646,"y":38.953},{"x":1752689102756,"y":38.443},{"x":1752689042292,"y":42.977},{"x":1752688982126,"y":41.865},{"x":1752688921940,"y":52.54},{"x":1752688861793,"y":51.714},{"x":1752688802197,"y":47.302},{"x":1752688741355,"y":58.583},{"x":1752688681195,"y":40.947},{"x":1752688621011,"y":35.326},{"x":1752688560873,"y":40.692},{"x":1752688501114,"y":43.33},{"x":1752688440617,"y":52.516},{"x":1752688380381,"y":52.613},{"x":1752688323043,"y":51.339},{"x":1752688262854,"y":42.765},{"x":1752688203003,"y":40.333},{"x":1752688142514,"y":46.386},{"x":1752688082346,"y":35.776},{"x":1752688022164,"y":33.514},{"x":1752687961967,"y":34.352},{"x":1752687902127,"y":36.118},{"x":1752687841635,"y":37.969},{"x":1752687781449,"y":40.09},{"x":1752687721270,"y":38.735},{"x":1752687661085,"y":38.351},{"x":1752687601353,"y":36.653},{"x":1752687540726,"y":33.777},{"x":1752687480583,"y":36.146},{"x":1752687420411,"y":33.823},{"x":1752687360175,"y":30.11},{"x":1752687303189,"y":32.487},{"x":1752687242701,"y":34.858},{"x":1752687182532,"y":33.254},{"x":1752687122366,"y":35.681},{"x":1752687062224,"y":26.842},{"x":1752687002353,"y":33.309},{"x":1752686941696,"y":38.909},{"x":1752686881511,"y":32.084},{"x":1752686821336,"y":33.702},{"x":1752686761167,"y":41.542},{"x":1752686701331,"y":38.082},{"x":1752686640816,"y":41.378},{"x":1752686580608,"y":50.408},{"x":1752686520540,"y":58.556},{"x":1752686460364,"y":59.583},{"x":1752686403276,"y":64.832},{"x":1752686342784,"y":50.25},{"x":1752686282607,"y":53.216},{"x":1752686222444,"y":42.068},{"x":1752686162262,"y":38.612},{"x":1752686102396,"y":37.401},{"x":1752686041914,"y":38.763},{"x":1752685981745,"y":41.277},{"x":1752685921587,"y":41.895},{"x":1752685861415,"y":53.39},{"x":1752685801586,"y":43.721},{"x":1752685741063,"y":48.819},{"x":1752685680880,"y":49.37},{"x":1752685620723,"y":47.828},{"x":1752685560595,"y":45.023},{"x":1752685500966,"y":39.752},{"x":1752685440060,"y":33.568},{"x":1752685382858,"y":39.405},{"x":1752685322676,"y":38.205},{"x":1752685262540,"y":43.546},{"x":1752685202804,"y":46.089},{"x":1752685142106,"y":47.728},{"x":1752685081932,"y":45.481},{"x":1752685021775,"y":45.794},{"x":1752684961598,"y":45.751},{"x":1752684901755,"y":29.464},{"x":1752684841252,"y":36.549},{"x":1752684781085,"y":35.366},{"x":1752684720899,"y":35.286},{"x":1752684660735,"y":40.533},{"x":1752684601129,"y":33.779},{"x":1752684540421,"y":55.91},{"x":1752684480144,"y":35.824},{"x":1752684422878,"y":61.884},{"x":1752684362711,"y":34.423},{"x":1752684302855,"y":52.416},{"x":1752684242384,"y":53.558},{"x":1752684182223,"y":60.765},{"x":1752684122061,"y":48.086},{"x":1752684061878,"y":43.294},{"x":1752684002065,"y":47.422},{"x":1752683941544,"y":32.888},{"x":1752683881383,"y":36.787},{"x":1752683821218,"y":42.446},{"x":1752683761011,"y":37.349},{"x":1752683701231,"y":34.43},{"x":1752683640656,"y":40.992},{"x":1752683580494,"y":40.24},{"x":1752683520398,"y":31.659},{"x":1752683462974,"y":38.979},{"x":1752683403128,"y":32.033},{"x":1752683342664,"y":37.39},{"x":1752683282450,"y":28.978},{"x":1752683222229,"y":42.295},{"x":1752683162056,"y":27.404},{"x":1752683102210,"y":31.47},{"x":1752683041719,"y":31.705},{"x":1752682981548,"y":31.845},{"x":1752682921366,"y":31.274},{"x":1752682861199,"y":25.91},{"x":1752682801420,"y":23.261},{"x":1752682740781,"y":26.004},{"x":1752682680614,"y":27.034},{"x":1752682620487,"y":37.116},{"x":1752682560541,"y":38.159},{"x":1752682503242,"y":41.618},{"x":1752682442752,"y":54.462},{"x":1752682382588,"y":36.257},{"x":1752682322423,"y":32.651},{"x":1752682262253,"y":38.926},{"x":1752682202374,"y":38.095},{"x":1752682141866,"y":40.135},{"x":1752682081694,"y":37.181},{"x":1752682021520,"y":47.297},{"x":1752681961357,"y":39.728},{"x":1752681901520,"y":40.266},{"x":1752681840959,"y":43.554},{"x":1752681780801,"y":30.61},{"x":1752681720645,"y":45.128},{"x":1752681660417,"y":43.616},{"x":1752681603500,"y":43.991},{"x":1752681542801,"y":50.671},{"x":1752681482629,"y":43.926},{"x":1752681422455,"y":47.642},{"x":1752681362296,"y":46.345},{"x":1752681302501,"y":28.677},{"x":1752681241956,"y":30.34},{"x":1752681181784,"y":24.219},{"x":1752681121616,"y":25.876},{"x":1752681061445,"y":40.606},{"x":1752681001365,"y":38.252},{"x":1752680940836,"y":50.215},{"x":1752680883718,"y":48.031},{"x":1752680822187,"y":45.521},{"x":1752680762041,"y":37.118},{"x":1752680702147,"y":43.331},{"x":1752680641597,"y":49.214},{"x":1752680581424,"y":40.684},{"x":1752680521246,"y":23.905},{"x":1752680461077,"y":39.011},{"x":1752680401399,"y":37.528},{"x":1752680340669,"y":25.899},{"x":1752680280706,"y":26.312},{"x":1752680220413,"y":32.482},{"x":1752680162935,"y":56.623},{"x":1752680103101,"y":34.196},{"x":1752680042607,"y":33.807},{"x":1752679982428,"y":33.773},{"x":1752679922283,"y":42.408},{"x":1752679862110,"y":42.671},{"x":1752679802263,"y":38.325},{"x":1752679741737,"y":29.943},{"x":1752679681538,"y":28.959},{"x":1752679621357,"y":36.403},{"x":1752679561187,"y":36.716},{"x":1752679501387,"y":29.712},{"x":1752679440722,"y":26.515},{"x":1752679380550,"y":28.406},{"x":1752679320368,"y":32.323},{"x":1752679260097,"y":24.869},{"x":1752679203210,"y":34.381},{"x":1752679142661,"y":41.871},{"x":1752679082502,"y":42.068},{"x":1752679022339,"y":35.155},{"x":1752678962180,"y":25.434},{"x":1752678902365,"y":18.876},{"x":1752678841705,"y":39.963},{"x":1752678781527,"y":42.195},{"x":1752678721359,"y":47.22},{"x":1752678661189,"y":40.349},{"x":1752678601390,"y":48.706},{"x":1752678540792,"y":26.045},{"x":1752678480679,"y":36.385},{"x":1752678420456,"y":31.505},{"x":1752678360340,"y":34.678},{"x":1752678303298,"y":21.75},{"x":1752678242805,"y":51.234},{"x":1752678182604,"y":47.05},{"x":1752678122409,"y":44.199},{"x":1752678062242,"y":39.647},{"x":1752678002615,"y":40.638},{"x":1752677941915,"y":57.236},{"x":1752677881703,"y":29.229},{"x":1752677821575,"y":31.117},{"x":1752677761354,"y":58.0},{"x":1752677701522,"y":29.964},{"x":1752677640908,"y":37.571},{"x":1752677580740,"y":28.597},{"x":1752677520688,"y":18.695},{"x":1752677460486,"y":20.083},{"x":1752677401119,"y":26.957},{"x":1752677342918,"y":42.613},{"x":1752677282745,"y":27.516},{"x":1752677222629,"y":39.871},{"x":1752677162359,"y":28.194},{"x":1752677102554,"y":47.226},{"x":1752677042015,"y":19.761},{"x":1752676981841,"y":33.542},{"x":1752676921670,"y":27.61},{"x":1752676861512,"y":33.12},{"x":1752676801708,"y":24.677},{"x":1752676741154,"y":15.139},{"x":1752676680977,"y":22.691},{"x":1752676620818,"y":31.052},{"x":1752676560658,"y":25.21},{"x":1752676501154,"y":24.287},{"x":1752676440253,"y":29.588},{"x":1752676382920,"y":13.944},{"x":1752676322751,"y":13.494},{"x":1752676262610,"y":12.385},{"x":1752676202738,"y":39.791},{"x":1752676142161,"y":28.975},{"x":1752676081931,"y":27.86},{"x":1752676021739,"y":35.627},{"x":1752675961563,"y":45.032},{"x":1752675901773,"y":16.931},{"x":1752675841234,"y":30.253},{"x":1752675781013,"y":21.047},{"x":1752675720846,"y":19.234},{"x":1752675660669,"y":15.829},{"x":1752675601194,"y":16.898},{"x":1752675540338,"y":23.364},{"x":1752675480194,"y":24.978},{"x":1752675422868,"y":34.415},{"x":1752675362693,"y":34.876},{"x":1752675302925,"y":41.917},{"x":1752675242306,"y":40.207},{"x":1752675182143,"y":22.391},{"x":1752675121964,"y":21.367},{"x":1752675061799,"y":20.447},{"x":1752675001966,"y":17.694},{"x":1752674941457,"y":22.273},{"x":1752674881286,"y":21.411},{"x":1752674821114,"y":21.23},{"x":1752674760910,"y":20.128},{"x":1752674701257,"y":23.504},{"x":1752674640659,"y":26.087},{"x":1752674580410,"y":26.396},{"x":1752674523010,"y":22.475},{"x":1752674462840,"y":42.427},{"x":1752674403158,"y":34.729},{"x":1752674342388,"y":13.352},{"x":1752674282217,"y":20.736},{"x":1752674222042,"y":34.296},{"x":1752674161862,"y":25.651},{"x":1752674102130,"y":30.656},{"x":1752674041527,"y":30.902},{"x":1752673981356,"y":30.75},{"x":1752673921192,"y":32.047},{"x":1752673861009,"y":21.825},{"x":1752673801249,"y":43.253},{"x":1752673740642,"y":34.711},{"x":1752673680546,"y":27.974},{"x":1752673620471,"y":26.436},{"x":1752673562964,"y":23.544},{"x":1752673503142,"y":22.374},{"x":1752673442597,"y":30.862},{"x":1752673382431,"y":21.244},{"x":1752673322240,"y":26.029},{"x":1752673262052,"y":15.844},{"x":1752673202243,"y":25.787},{"x":1752673141705,"y":36.637},{"x":1752673081538,"y":19.933},{"x":1752673021360,"y":13.058},{"x":1752672961187,"y":17.291},{"x":1752672901733,"y":45.323},{"x":1752672840879,"y":13.956},{"x":1752672780676,"y":25.987},{"x":1752672720543,"y":25.341},{"x":1752672660512,"y":11.457},{"x":1752672603417,"y":17.162},{"x":1752672542792,"y":13.915},{"x":1752672482581,"y":10.034},{"x":1752672422376,"y":23.862},{"x":1752672362219,"y":37.559},{"x":1752672302378,"y":41.234},{"x":1752672241868,"y":33.601},{"x":1752672181703,"y":30.803},{"x":1752672121534,"y":43.006},{"x":1752672061365,"y":40.791},{"x":1752672001572,"y":24.528},{"x":1752671941009,"y":32.462},{"x":1752671880774,"y":37.529},{"x":1752671820854,"y":37.279},{"x":1752671760576,"y":37.286},{"x":1752671703349,"y":57.187},{"x":1752671642803,"y":42.473},{"x":1752671582637,"y":19.482},{"x":1752671522457,"y":13.643},{"x":1752671462296,"y":22.814},{"x":1752671402471,"y":28.128},{"x":1752671341914,"y":26.871},{"x":1752671281744,"y":33.213},{"x":1752671221554,"y":29.816},{"x":1752671161377,"y":23.975},{"x":1752671101638,"y":34.786},{"x":1752671041008,"y":26.455},{"x":1752670980850,"y":53.413},{"x":1752670920666,"y":31.281},{"x":1752670860600,"y":33.49},{"x":1752670801885,"y":34.003},{"x":1752670742914,"y":36.346},{"x":1752670682736,"y":11.252},{"x":1752670622561,"y":17.36},{"x":1752670562383,"y":27.214},{"x":1752670502580,"y":18.846},{"x":1752670442056,"y":28.893},{"x":1752670381853,"y":19.327},{"x":1752670321669,"y":33.162},{"x":1752670261503,"y":20.615},{"x":1752670201690,"y":16.477},{"x":1752670141140,"y":21.97},{"x":1752670080935,"y":25.592},{"x":1752670020804,"y":28.622},{"x":1752669960625,"y":31.278},{"x":1752669901477,"y":35.663},{"x":1752669842964,"y":49.64},{"x":1752669782792,"y":30.842},{"x":1752669722612,"y":26.391},{"x":1752669662438,"y":27.689},{"x":1752669602734,"y":19.551},{"x":1752669542100,"y":23.883},{"x":1752669481924,"y":31.062},{"x":1752669421779,"y":34.96},{"x":1752669361565,"y":40.127},{"x":1752669301820,"y":25.61},{"x":1752669241221,"y":34.785},{"x":1752669181053,"y":50.287},{"x":1752669120870,"y":54.429},{"x":1752669060687,"y":53.263},{"x":1752669001426,"y":57.326},{"x":1752668940411,"y":45.139},{"x":1752668882998,"y":35.248},{"x":1752668822808,"y":29.928},{"x":1752668762628,"y":45.319},{"x":1752668702929,"y":29.682},{"x":1752668642298,"y":39.358},{"x":1752668582105,"y":52.75},{"x":1752668521935,"y":36.293},{"x":1752668461726,"y":45.483},{"x":1752668402094,"y":53.176},{"x":1752668341357,"y":46.623},{"x":1752668281184,"y":45.041},{"x":1752668220976,"y":47.348},{"x":1752668160817,"y":41.599},{"x":1752668101540,"y":45.893},{"x":1752668040435,"y":35.236},{"x":1752667983023,"y":39.799},{"x":1752667922845,"y":38.649},{"x":1752667862668,"y":32.035},{"x":1752667803051,"y":51.591},{"x":1752667742315,"y":46.611},{"x":1752667682127,"y":29.153},{"x":1752667621938,"y":28.853},{"x":1752667561767,"y":49.331},{"x":1752667502383,"y":44.473},{"x":1752667441350,"y":55.344},{"x":1752667381192,"y":45.885},{"x":1752667320971,"y":45.506},{"x":1752667260835,"y":42.006},{"x":1752667202466,"y":62.088},{"x":1752667140423,"y":53.311},{"x":1752667083039,"y":38.819},{"x":1752667022848,"y":34.653},{"x":1752666962672,"y":52.893},{"x":1752666903094,"y":49.511},{"x":1752666842310,"y":32.313},{"x":1752666782166,"y":26.604},{"x":1752666721956,"y":44.527},{"x":1752666661785,"y":27.572},{"x":1752666602222,"y":29.192},{"x":1752666541395,"y":12.815},{"x":1752666481257,"y":26.342},{"x":1752666421019,"y":49.194},{"x":1752666360844,"y":33.9},{"x":1752666301720,"y":39.593},{"x":1752666240579,"y":31.67},{"x":1752666180329,"y":34.675},{"x":1752666123034,"y":29.258},{"x":1752666062838,"y":25.896},{"x":1752666003301,"y":25.011},{"x":1752665942481,"y":25.984},{"x":1752665882304,"y":17.825},{"x":1752665822121,"y":30.44},{"x":1752665761896,"y":30.943},{"x":1752665702285,"y":39.171},{"x":1752665641480,"y":53.34},{"x":1752665580714,"y":53.343},{"x":1752665522438,"y":42.306},{"x":1752665462269,"y":49.382},{"x":1752665402310,"y":38.454},{"x":1752665341908,"y":45.887},{"x":1752665281744,"y":34.883},{"x":1752665221415,"y":38.154},{"x":1752665161245,"y":26.985},{"x":1752665101276,"y":29.22},{"x":1752665040838,"y":33.389},{"x":1752664980684,"y":51.037},{"x":1752664921762,"y":41.287},{"x":1752664861584,"y":44.298},{"x":1752664801687,"y":36.523},{"x":1752664741219,"y":40.063},{"x":1752664681033,"y":37.067},{"x":1752664620865,"y":52.289},{"x":1752664560670,"y":51.281},{"x":1752664502018,"y":55.35},{"x":1752664441461,"y":42.036},{"x":1752664382108,"y":41.89},{"x":1752664321901,"y":50.316},{"x":1752664261716,"y":36.384},{"x":1752664201620,"y":24.809},{"x":1752664141392,"y":46.305},{"x":1752664081161,"y":41.704},{"x":1752664020929,"y":54.003},{"x":1752663960756,"y":38.231},{"x":1752663900802,"y":35.275},{"x":1752663840438,"y":25.303},{"x":1752663782904,"y":40.991},{"x":1752663722753,"y":33.05},{"x":1752663662557,"y":48.592},{"x":1752663602579,"y":43.247},{"x":1752663542200,"y":44.633},{"x":1752663482012,"y":31.24},{"x":1752663421809,"y":30.82},{"x":1752663361634,"y":36.953},{"x":1752663301548,"y":44.847},{"x":1752663241302,"y":30.798},{"x":1752663181105,"y":30.564},{"x":1752663120915,"y":36.976},{"x":1752663060748,"y":47.018},{"x":1752663000817,"y":41.217},{"x":1752662940476,"y":43.072},{"x":1752662880173,"y":35.082},{"x":1752662822876,"y":38.984},{"x":1752662762676,"y":36.731},{"x":1752662702592,"y":42.563},{"x":1752662642326,"y":32.156},{"x":1752662582146,"y":41.018},{"x":1752662521943,"y":32.532},{"x":1752662461765,"y":42.329},{"x":1752662401685,"y":27.155},{"x":1752662341431,"y":43.174},{"x":1752662281253,"y":35.178},{"x":1752662221080,"y":36.43},{"x":1752662160891,"y":39.927},{"x":1752662100929,"y":40.686},{"x":1752662040548,"y":42.145},{"x":1752661980387,"y":35.987},{"x":1752661923025,"y":38.209},{"x":1752661862865,"y":26.562},{"x":1752661802735,"y":39.553},{"x":1752661742373,"y":51.463},{"x":1752661682118,"y":47.931},{"x":1752661621905,"y":48.737},{"x":1752661561727,"y":41.625},{"x":1752661501634,"y":48.678},{"x":1752661441404,"y":40.001},{"x":1752661381211,"y":40.36},{"x":1752661321000,"y":34.241},{"x":1752661260811,"y":33.793},{"x":1752661200953,"y":39.957},{"x":1752661140396,"y":28.415},{"x":1752661082965,"y":27.43},{"x":1752661022795,"y":61.209},{"x":1752660962620,"y":40.783},{"x":1752660902514,"y":55.702},{"x":1752660842272,"y":56.128},{"x":1752660782097,"y":46.212},{"x":1752660721905,"y":54.247},{"x":1752660661740,"y":41.683},{"x":1752660601655,"y":36.533},{"x":1752660541383,"y":38.558},{"x":1752660481228,"y":45.481},{"x":1752660420970,"y":48.81},{"x":1752660360805,"y":47.262},{"x":1752660300821,"y":49.978},{"x":1752660240471,"y":35.763},{"x":1752660180125,"y":32.619},{"x":1752660122866,"y":29.176},{"x":1752660062749,"y":31.631},{"x":1752660002647,"y":33.874},{"x":1752659942286,"y":45.712},{"x":1752659882117,"y":35.569},{"x":1752659821915,"y":36.054},{"x":1752659761732,"y":26.529},{"x":1752659701662,"y":37.382},{"x":1752659641381,"y":46.542},{"x":1752659581187,"y":46.604},{"x":1752659520987,"y":71.022},{"x":1752659460807,"y":31.763},{"x":1752659400876,"y":40.228},{"x":1752659340507,"y":36.697},{"x":1752659283012,"y":27.929},{"x":1752659222834,"y":29.886},{"x":1752659162669,"y":64.724},{"x":1752659102480,"y":43.447},{"x":1752659042217,"y":43.206},{"x":1752658982044,"y":47.226},{"x":1752658921826,"y":35.333},{"x":1752658861626,"y":38.548},{"x":1752658801557,"y":44.191},{"x":1752658741270,"y":51.248},{"x":1752658681039,"y":45.551},{"x":1752658620851,"y":41.157},{"x":1752658560730,"y":39.582},{"x":1752658500767,"y":67.042},{"x":1752658440093,"y":44.589},{"x":1752658382875,"y":36.161},{"x":1752658322657,"y":50.058},{"x":1752658262482,"y":27.165},{"x":1752658202481,"y":35.516},{"x":1752658141973,"y":41.424},{"x":1752658081686,"y":41.881},{"x":1752658021504,"y":52.049},{"x":1752657961278,"y":50.701},{"x":1752657943169,"y":50.857},{"x":1752657940181,"y":44.16},{"x":1752657362291,"y":56.459},{"x":1752657302202,"y":45.901},{"x":1752657241968,"y":49.34},{"x":1752657181823,"y":44.38},{"x":1752657121672,"y":50.398},{"x":1752657061531,"y":62.847},{"x":1752657001467,"y":51.95},{"x":1752656941205,"y":48.55},{"x":1752656881037,"y":55.555},{"x":1752656820873,"y":52.176},{"x":1752656760731,"y":50.18},{"x":1752656700763,"y":61.452},{"x":1752656640542,"y":50.049},{"x":1752656580223,"y":52.582},{"x":1752656522922,"y":54.989},{"x":1752656462768,"y":51.675},{"x":1752656402785,"y":45.16},{"x":1752656342434,"y":45.342},{"x":1752656282278,"y":40.786},{"x":1752656222114,"y":42.979},{"x":1752656161949,"y":43.659},{"x":1752656101886,"y":43.895},{"x":1752656041675,"y":40.057},{"x":1752655981499,"y":45.12},{"x":1752655921347,"y":52.482},{"x":1752655861211,"y":65.572},{"x":1752655801109,"y":46.995},{"x":1752655740846,"y":52.93},{"x":1752655680698,"y":65.731},{"x":1752655620616,"y":66.163},{"x":1752655560379,"y":62.993},{"x":1752655503076,"y":67.87},{"x":1752655442828,"y":69.025},{"x":1752655382662,"y":60.093},{"x":1752655322513,"y":42.909},{"x":1752655262348,"y":51.576},{"x":1752655202270,"y":48.831},{"x":1752655142051,"y":41.269},{"x":1752655081885,"y":37.895},{"x":1752655021734,"y":27.933},{"x":1752654961584,"y":25.681},{"x":1752654901513,"y":26.935},{"x":1752654841295,"y":27.475},{"x":1752654781144,"y":30.909},{"x":1752654720954,"y":34.164},{"x":1752654660840,"y":36.877},{"x":1752654600942,"y":41.14},{"x":1752654540609,"y":48.672},{"x":1752654480100,"y":51.814},{"x":1752654422923,"y":45.884},{"x":1752654362775,"y":46.022},{"x":1752654302705,"y":45.322},{"x":1752654242482,"y":49.779},{"x":1752654182330,"y":30.584},{"x":1752654122182,"y":16.911},{"x":1752654062026,"y":33.782},{"x":1752654001938,"y":36.909},{"x":1752653941709,"y":30.39},{"x":1752653881525,"y":31.656},{"x":1752653821298,"y":24.765},{"x":1752653761115,"y":26.284},{"x":1752653701071,"y":30.301},{"x":1752653640765,"y":36.316},{"x":1752653580617,"y":40.655},{"x":1752653520487,"y":37.727},{"x":1752653460389,"y":30.869},{"x":1752653403054,"y":27.169},{"x":1752653342817,"y":51.092},{"x":1752653282639,"y":50.416},{"x":1752653222468,"y":45.004},{"x":1752653162313,"y":41.403},{"x":1752653102280,"y":52.204},{"x":1752653042014,"y":53.793},{"x":1752652981842,"y":52.689},{"x":1752652921674,"y":43.037},{"x":1752652861549,"y":43.627},{"x":1752652802140,"y":45.116},{"x":1752652741148,"y":61.511},{"x":1752652680977,"y":58.961},{"x":1752652620819,"y":52.359},{"x":1752652560730,"y":55.122},{"x":1752652500796,"y":60.829},{"x":1752652440318,"y":68.606},{"x":1752652380060,"y":45.811},{"x":1752652322869,"y":42.862},{"x":1752652262714,"y":43.788},{"x":1752652202655,"y":46.37},{"x":1752652142565,"y":45.593},{"x":1752652082402,"y":43.242},{"x":1752652022259,"y":36.923},{"x":1752651962091,"y":39.833},{"x":1752651902037,"y":48.883},{"x":1752651840787,"y":46.683},{"x":1752651780612,"y":34.828},{"x":1752651720527,"y":46.481},{"x":1752651660275,"y":64.976},{"x":1752651603037,"y":67.542},{"x":1752651542776,"y":58.647},{"x":1752651482599,"y":47.868},{"x":1752651420709,"y":45.229},{"x":1752651360588,"y":62.097},{"x":1752651303450,"y":57.553},{"x":1752651240427,"y":54.603},{"x":1752651182299,"y":54.865},{"x":1752651122664,"y":58.166},{"x":1752651060352,"y":49.165},{"x":1752651002978,"y":56.791},{"x":1752650942751,"y":55.184},{"x":1752650882546,"y":66.092},{"x":1752650822378,"y":62.379},{"x":1752650762224,"y":64.724},{"x":1752650702130,"y":67.414},{"x":1752650641884,"y":66.096},{"x":1752650581734,"y":52.814},{"x":1752650521580,"y":53.8},{"x":1752650461480,"y":54.927},{"x":1752650401351,"y":63.462},{"x":1752650341123,"y":67.825},{"x":1752650280921,"y":55.096},{"x":1752650220792,"y":53.614},{"x":1752650160720,"y":40.092},{"x":1752650100708,"y":51.32},{"x":1752650043027,"y":47.737},{"x":1752649982873,"y":44.507},{"x":1752649922716,"y":45.926},{"x":1752649862559,"y":47.648},{"x":1752649802483,"y":44.766},{"x":1752649742276,"y":41.409},{"x":1752649682124,"y":41.946},{"x":1752649621957,"y":41.173},{"x":1752649561808,"y":46.66},{"x":1752649501741,"y":40.717},{"x":1752649441497,"y":49.714},{"x":1752649381334,"y":56.752},{"x":1752649321172,"y":63.487},{"x":1752649260981,"y":52.431},{"x":1752649201062,"y":56.263},{"x":1752649140657,"y":44.102},{"x":1752649080526,"y":39.556},{"x":1752649020318,"y":43.271},{"x":1752648962938,"y":27.561},{"x":1752648902864,"y":22.794},{"x":1752648842644,"y":21.795},{"x":1752648782499,"y":24.66},{"x":1752648722365,"y":28.009},{"x":1752648662182,"y":42.381},{"x":1752648602087,"y":47.11},{"x":1752648541862,"y":42.67},{"x":1752648481706,"y":30.89},{"x":1752648421555,"y":33.455},{"x":1752648361404,"y":35.082},{"x":1752648301332,"y":40.794},{"x":1752648241069,"y":35.347},{"x":1752648180905,"y":42.772},{"x":1752648120763,"y":40.258},{"x":1752648060612,"y":53.624},{"x":1752648000689,"y":54.077},{"x":1752647940280,"y":52.429},{"x":1752647882964,"y":47.998},{"x":1752647822703,"y":39.362},{"x":1752647762559,"y":40.151},{"x":1752647702486,"y":36.091},{"x":1752647642257,"y":40.613},{"x":1752647582106,"y":40.912},{"x":1752647521915,"y":34.378},{"x":1752647461779,"y":29.395},{"x":1752647401780,"y":32.276},{"x":1752647341360,"y":34.988},{"x":1752647281207,"y":46.545},{"x":1752647221045,"y":42.329},{"x":1752647160900,"y":45.259},{"x":1752647100857,"y":56.661},{"x":1752647040637,"y":45.237},{"x":1752646980468,"y":40.229},{"x":1752646920220,"y":34.649},{"x":1752646862898,"y":35.39},{"x":1752646802784,"y":38.767},{"x":1752646742554,"y":29.945},{"x":1752646682392,"y":41.191},{"x":1752646622241,"y":33.75},{"x":1752646562068,"y":32.206},{"x":1752646501828,"y":36.581},{"x":1752646441612,"y":50.031},{"x":1752646381445,"y":47.343},{"x":1752646321287,"y":58.737},{"x":1752646261128,"y":47.375},{"x":1752646201012,"y":49.638},{"x":1752646140761,"y":41.22},{"x":1752646080652,"y":40.449},{"x":1752646020446,"y":40.431},{"x":1752645960317,"y":50.192},{"x":1752645903039,"y":33.815},{"x":1752645842801,"y":34.6},{"x":1752645782663,"y":30.108},{"x":1752645722504,"y":28.833},{"x":1752645662342,"y":28.922},{"x":1752645602385,"y":27.28},{"x":1752645541971,"y":20.934},{"x":1752645481811,"y":20.695},{"x":1752645421658,"y":18.464},{"x":1752645361509,"y":21.766},{"x":1752645301419,"y":23.063},{"x":1752645241192,"y":24.249},{"x":1752645181031,"y":25.102},{"x":1752645120883,"y":29.298},{"x":1752645060721,"y":29.397},{"x":1752645000828,"y":31.292},{"x":1752644940430,"y":33.238},{"x":1752644882990,"y":40.996},{"x":1752644822822,"y":40.226},{"x":1752644762661,"y":46.122},{"x":1752644702585,"y":42.134},{"x":1752644642355,"y":42.28},{"x":1752644582205,"y":30.849},{"x":1752644522026,"y":24.714},{"x":1752644461894,"y":28.961},{"x":1752644401800,"y":28.56},{"x":1752644341579,"y":27.927},{"x":1752644281409,"y":31.18},{"x":1752644221261,"y":30.409},{"x":1752644161105,"y":32.129},{"x":1752644101013,"y":27.57},{"x":1752644040766,"y":28.278},{"x":1752643980619,"y":34.156},{"x":1752643920584,"y":28.442},{"x":1752643860295,"y":27.381},{"x":1752643803048,"y":26.551},{"x":1752643742776,"y":26.303},{"x":1752643682612,"y":40.012},{"x":1752643622445,"y":42.312},{"x":1752643562293,"y":44.305},{"x":1752643502228,"y":42.781},{"x":1752643441987,"y":38.2},{"x":1752643381837,"y":31.668},{"x":1752643321674,"y":29.265},{"x":1752643261537,"y":27.471},{"x":1752643201461,"y":29.969},{"x":1752643141208,"y":34.966},{"x":1752643081043,"y":36.154},{"x":1752643020884,"y":44.556},{"x":1752642960739,"y":55.718},{"x":1752642900729,"y":56.407},{"x":1752642840458,"y":46.684},{"x":1752642780364,"y":55.868},{"x":1752642722947,"y":47.749},{"x":1752642662790,"y":49.554},{"x":1752642602710,"y":47.727},{"x":1752642542487,"y":35.406},{"x":1752642482338,"y":28.863},{"x":1752642422177,"y":30.387},{"x":1752642362018,"y":30.674},{"x":1752642301905,"y":25.151},{"x":1752642241678,"y":27.321},{"x":1752642181522,"y":24.203},{"x":1752642121369,"y":34.167},{"x":1752642061264,"y":37.075},{"x":1752642001429,"y":37.754},{"x":1752641940848,"y":33.135},{"x":1752641880699,"y":38.965},{"x":1752641820577,"y":25.459},{"x":1752641760477,"y":25.144},{"x":1752641700599,"y":35.602},{"x":1752641642989,"y":25.944},{"x":1752641582838,"y":22.68},{"x":1752641522685,"y":22.568},{"x":1752641462527,"y":27.081},{"x":1752641402461,"y":27.386},{"x":1752641342222,"y":30.081},{"x":1752641282074,"y":30.932},{"x":1752641221900,"y":30.822},{"x":1752641161761,"y":28.302},{"x":1752641101709,"y":26.403},{"x":1752641041455,"y":28.082},{"x":1752640981299,"y":27.48},{"x":1752640921144,"y":26.857},{"x":1752640860965,"y":27.133},{"x":1752640800936,"y":27.417},{"x":1752640740657,"y":30.292},{"x":1752640680532,"y":31.672},{"x":1752640620405,"y":29.653},{"x":1752640560184,"y":34.425},{"x":1752640502995,"y":30.202},{"x":1752640442763,"y":25.693},{"x":1752640382615,"y":33.98},{"x":1752640322467,"y":27.394},{"x":1752640262315,"y":29.099},{"x":1752640202229,"y":28.958},{"x":1752640142004,"y":28.777},{"x":1752640081826,"y":31.706},{"x":1752640021658,"y":35.777},{"x":1752639961510,"y":30.416},{"x":1752639901444,"y":42.147},{"x":1752639841228,"y":52.161},{"x":1752639781046,"y":54.47},{"x":1752639720870,"y":50.492},{"x":1752639660712,"y":40.395},{"x":1752639600819,"y":35.861},{"x":1752639540429,"y":24.492},{"x":1752639480340,"y":29.005},{"x":1752639422957,"y":29.702},{"x":1752639362812,"y":28.019},{"x":1752639302725,"y":30.796},{"x":1752639242510,"y":31.937},{"x":1752639182371,"y":42.598},{"x":1752639122211,"y":38.362},{"x":1752639062068,"y":53.417},{"x":1752639001978,"y":49.235},{"x":1752638941757,"y":49.535},{"x":1752638881599,"y":36.728},{"x":1752638821457,"y":37.488},{"x":1752638761299,"y":29.625},{"x":1752638701226,"y":30.481},{"x":1752638640991,"y":27.511},{"x":1752638580829,"y":41.074},{"x":1752638520685,"y":50.212},{"x":1752638460500,"y":45.403},{"x":1752638400697,"y":44.752},{"x":1752638342961,"y":47.747},{"x":1752638282811,"y":42.229},{"x":1752638222669,"y":33.963},{"x":1752638162515,"y":27.849},{"x":1752638102443,"y":29.312},{"x":1752638042203,"y":25.093},{"x":1752637982054,"y":28.174},{"x":1752637921891,"y":30.123},{"x":1752637861741,"y":27.262},{"x":1752637801660,"y":31.591},{"x":1752637741467,"y":32.297},{"x":1752637681297,"y":31.282},{"x":1752637621148,"y":30.972},{"x":1752637560958,"y":27.28},{"x":1752637501047,"y":28.159},{"x":1752637440593,"y":31.796},{"x":1752637380436,"y":36.408},{"x":1752637320161,"y":37.435},{"x":1752637262909,"y":37.905},{"x":1752637202843,"y":65.21},{"x":1752637142601,"y":57.2},{"x":1752637082437,"y":52.711},{"x":1752637022301,"y":49.885},{"x":1752636962144,"y":47.745},{"x":1752636902053,"y":34.345},{"x":1752636841825,"y":33.656},{"x":1752636781679,"y":36.521},{"x":1752636721499,"y":33.779},{"x":1752636661339,"y":30.5},{"x":1752636601275,"y":32.01},{"x":1752636541017,"y":25.82},{"x":1752636480848,"y":30.389},{"x":1752636420695,"y":30.926},{"x":1752636360559,"y":27.599},{"x":1752636300569,"y":28.323},{"x":1752636240251,"y":32.155},{"x":1752636182932,"y":28.535},{"x":1752636122757,"y":27.438},{"x":1752636062611,"y":26.799},{"x":1752636002522,"y":27.023},{"x":1752635942303,"y":28.688},{"x":1752635882157,"y":28.031},{"x":1752635822025,"y":33.574},{"x":1752635761824,"y":25.784},{"x":1752635701737,"y":26.733},{"x":1752635641520,"y":31.295},{"x":1752635581373,"y":37.995},{"x":1752635521224,"y":49.851},{"x":1752635461070,"y":48.637},{"x":1752635400992,"y":47.608},{"x":1752635340735,"y":45.111},{"x":1752635280578,"y":31.94},{"x":1752635220458,"y":36.404},{"x":1752635160364,"y":39.79},{"x":1752635103101,"y":54.355},{"x":1752635041502,"y":55.302},{"x":1752634981346,"y":50.91},{"x":1752634921125,"y":42.77},{"x":1752634860860,"y":31.949},{"x":1752634802054,"y":29.235},{"x":1752634740955,"y":30.036},{"x":1752634680802,"y":31.255},{"x":1752634620649,"y":26.197},{"x":1752634560528,"y":29.699},{"x":1752634500691,"y":29.953},{"x":1752634442957,"y":30.778},{"x":1752634382813,"y":30.018},{"x":1752634322672,"y":29.128},{"x":1752634262506,"y":30.197},{"x":1752634202432,"y":27.936},{"x":1752634142203,"y":24.945},{"x":1752634082057,"y":33.694},{"x":1752634021899,"y":33.757},{"x":1752633961742,"y":31.643},{"x":1752633901670,"y":45.861},{"x":1752633841447,"y":41.919},{"x":1752633781302,"y":42.017},{"x":1752633721135,"y":40.096},{"x":1752633660974,"y":52.528},{"x":1752633600969,"y":42.839},{"x":1752633540670,"y":37.579},{"x":1752633480543,"y":37.597},{"x":1752633420398,"y":35.077},{"x":1752633360295,"y":23.843},{"x":1752633303036,"y":27.875},{"x":1752633242808,"y":30.487},{"x":1752633182638,"y":30.291},{"x":1752633122497,"y":33.241},{"x":1752633062342,"y":27.551},{"x":1752633002263,"y":25.332},{"x":1752632942048,"y":30.919},{"x":1752632881880,"y":25.178},{"x":1752632821735,"y":25.933},{"x":1752632761580,"y":25.73},{"x":1752632701512,"y":25.371},{"x":1752632641299,"y":27.684},{"x":1752632581138,"y":31.318},{"x":1752632520957,"y":57.587},{"x":1752632460800,"y":55.468},{"x":1752632400847,"y":53.887},{"x":1752632340453,"y":54.035},{"x":1752632280339,"y":57.464},{"x":1752632220085,"y":30.76},{"x":1752632162910,"y":31.62},{"x":1752632102806,"y":31.212},{"x":1752632042579,"y":27.114},{"x":1752631982466,"y":31.727},{"x":1752631922272,"y":27.116},{"x":1752631862114,"y":35.8},{"x":1752631802024,"y":45.705},{"x":1752631741791,"y":50.614},{"x":1752631681641,"y":45.898},{"x":1752631621496,"y":42.686},{"x":1752631561345,"y":43.748},{"x":1752631501265,"y":27.859},{"x":1752631441031,"y":26.243},{"x":1752631380873,"y":25.985},{"x":1752631320720,"y":29.472},{"x":1752631260692,"y":26.094},{"x":1752631201756,"y":28.16},{"x":1752631140274,"y":32.221},{"x":1752631082906,"y":35.748},{"x":1752631022752,"y":34.177},{"x":1752630962603,"y":38.183},{"x":1752630902521,"y":46.19},{"x":1752630842304,"y":46.39},{"x":1752630782150,"y":46.192},{"x":1752630721978,"y":41.62},{"x":1752630661830,"y":53.052},{"x":1752630601741,"y":38.387},{"x":1752630541523,"y":46.896},{"x":1752630481375,"y":47.659},{"x":1752630421219,"y":47.497},{"x":1752630361059,"y":42.019},{"x":1752630301068,"y":42.126},{"x":1752630240643,"y":30.069},{"x":1752630180489,"y":33.555},{"x":1752630120416,"y":32.103},{"x":1752630060243,"y":29.111},{"x":1752630002986,"y":26.479},{"x":1752629942757,"y":26.613},{"x":1752629882610,"y":26.716},{"x":1752629822443,"y":26.669},{"x":1752629762287,"y":35.192},{"x":1752629702214,"y":39.78},{"x":1752629641976,"y":43.801},{"x":1752629581826,"y":35.225},{"x":1752629521667,"y":34.008},{"x":1752629461523,"y":25.677},{"x":1752629401496,"y":27.156},{"x":1752629341230,"y":38.805},{"x":1752629281048,"y":38.146},{"x":1752629220845,"y":50.518},{"x":1752629160715,"y":49.605},{"x":1752629100738,"y":52.102},{"x":1752629040413,"y":49.586},{"x":1752628980334,"y":39.346},{"x":1752628922940,"y":30.301},{"x":1752628862787,"y":29.56},{"x":1752628802703,"y":29.044},{"x":1752628742482,"y":30.917},{"x":1752628682346,"y":36.07},{"x":1752628622187,"y":28.803},{"x":1752628562041,"y":32.354},{"x":1752628501971,"y":27.128},{"x":1752628441736,"y":26.787},{"x":1752628381588,"y":31.083},{"x":1752628321433,"y":35.693},{"x":1752628261282,"y":32.094},{"x":1752628201215,"y":36.912},{"x":1752628140934,"y":33.044},{"x":1752628080796,"y":63.421},{"x":1752628020648,"y":58.079},{"x":1752627960546,"y":58.101},{"x":1752627900526,"y":59.284},{"x":1752627840060,"y":54.597},{"x":1752627782878,"y":29.657},{"x":1752627722714,"y":32.786},{"x":1752627662566,"y":31.562},{"x":1752627602539,"y":27.932},{"x":1752627542244,"y":27.044},{"x":1752627482106,"y":32.373},{"x":1752627421953,"y":31.486},{"x":1752627361802,"y":31.066},{"x":1752627301748,"y":30.463},{"x":1752627241472,"y":30.322},{"x":1752627181310,"y":30.643},{"x":1752627121139,"y":27.278},{"x":1752627060974,"y":30.695},{"x":1752627000965,"y":27.722},{"x":1752626940679,"y":30.611},{"x":1752626880585,"y":30.716},{"x":1752626820349,"y":30.387},{"x":1752626760281,"y":30.625},{"x":1752626703050,"y":40.491},{"x":1752626642833,"y":54.743},{"x":1752626582654,"y":48.947},{"x":1752626522496,"y":50.463},{"x":1752626462335,"y":55.59},{"x":1752626402256,"y":35.932},{"x":1752626342052,"y":32.884},{"x":1752626281876,"y":31.107},{"x":1752626221739,"y":29.681},{"x":1752626161591,"y":32.731},{"x":1752626101502,"y":32.788},{"x":1752626041299,"y":33.871},{"x":1752625981117,"y":56.627},{"x":1752625920934,"y":54.321},{"x":1752625860795,"y":54.022},{"x":1752625801009,"y":58.98},{"x":1752625740488,"y":46.164},{"x":1752625680267,"y":26.699},{"x":1752625622946,"y":27.618},{"x":1752625562803,"y":25.666},{"x":1752625502729,"y":30.103},{"x":1752625442496,"y":27.256},{"x":1752625382344,"y":29.475},{"x":1752625322161,"y":32.964},{"x":1752625261993,"y":31.231},{"x":1752625201895,"y":41.828},{"x":1752625141676,"y":45.454},{"x":1752625081530,"y":40.091},{"x":1752625021384,"y":37.641},{"x":1752624961219,"y":37.843},{"x":1752624901146,"y":25.989},{"x":1752624840938,"y":30.643},{"x":1752624780759,"y":26.787},{"x":1752624720617,"y":28.642},{"x":1752624660493,"y":33.97},{"x":1752624600583,"y":58.169},{"x":1752624540257,"y":59.374},{"x":1752624482877,"y":54.407},{"x":1752624422734,"y":53.377},{"x":1752624362579,"y":51.828},{"x":1752624302491,"y":31.141},{"x":1752624242263,"y":30.499},{"x":1752624182110,"y":32.576},{"x":1752624121955,"y":31.925},{"x":1752624061810,"y":28.993},{"x":1752624001901,"y":28.1},{"x":1752623941450,"y":31.429},{"x":1752623881312,"y":30.444},{"x":1752623821160,"y":30.273},{"x":1752623760996,"y":32.164},{"x":1752623700934,"y":30.192},{"x":1752623640700,"y":27.052},{"x":1752623580588,"y":29.974},{"x":1752623520453,"y":45.637},{"x":1752623460217,"y":45.728},{"x":1752623403009,"y":45.854},{"x":1752623342786,"y":50.561},{"x":1752623282650,"y":50.01},{"x":1752623222507,"y":34.166},{"x":1752623162364,"y":30.249},{"x":1752623102275,"y":32.165},{"x":1752623042061,"y":27.478},{"x":1752622981936,"y":27.954},{"x":1752622921754,"y":27.572},{"x":1752622861604,"y":26.065},{"x":1752622801527,"y":25.22},{"x":1752622741311,"y":35.96},{"x":1752622681140,"y":40.389},{"x":1752622620987,"y":37.855},{"x":1752622560847,"y":33.721},{"x":1752622500785,"y":35.656},{"x":1752622440521,"y":34.011},{"x":1752622380391,"y":32.256},{"x":1752622320214,"y":45.085},{"x":1752622262908,"y":42.987},{"x":1752622202832,"y":38.564},{"x":1752622142612,"y":48.177},{"x":1752622082423,"y":52.305},{"x":1752622022278,"y":35.469},{"x":1752621962127,"y":37.888},{"x":1752621902023,"y":31.706},{"x":1752621841782,"y":37.266},{"x":1752621781633,"y":32.516},{"x":1752621721471,"y":29.175},{"x":1752621661330,"y":38.192},{"x":1752621601262,"y":36.728},{"x":1752621540986,"y":42.155},{"x":1752621480843,"y":34.866},{"x":1752621420716,"y":39.229},{"x":1752621360571,"y":29.979},{"x":1752621300818,"y":51.637},{"x":1752621240151,"y":52.794},{"x":1752621182891,"y":54.806},{"x":1752621122745,"y":54.228},{"x":1752621062590,"y":53.135},{"x":1752621002491,"y":53.13},{"x":1752620942274,"y":49.784},{"x":1752620882145,"y":51.271},{"x":1752620821984,"y":51.695},{"x":1752620761825,"y":56.568},{"x":1752620701734,"y":62.628},{"x":1752620641521,"y":61.515},{"x":1752620581365,"y":54.023},{"x":1752620521193,"y":54.275},{"x":1752620461028,"y":41.982},{"x":1752620401331,"y":31.054},{"x":1752620340691,"y":34.617},{"x":1752620280596,"y":32.818},{"x":1752620220425,"y":28.39},{"x":1752620160176,"y":30.883},{"x":1752620103037,"y":42.772},{"x":1752620042800,"y":40.562},{"x":1752619982650,"y":41.285},{"x":1752619922504,"y":50.576},{"x":1752619862357,"y":50.914},{"x":1752619802266,"y":38.62},{"x":1752619742072,"y":36.125},{"x":1752619681896,"y":37.624},{"x":1752619621775,"y":39.322},{"x":1752619561585,"y":34.599},{"x":1752619501514,"y":36.288},{"x":1752619441295,"y":43.76},{"x":1752619381147,"y":46.901},{"x":1752619320978,"y":57.02},{"x":1752619260828,"y":54.159},{"x":1752619200818,"y":56.06},{"x":1752619140509,"y":57.205},{"x":1752619080379,"y":56.866},{"x":1752619020266,"y":44.952},{"x":1752618962934,"y":44.196},{"x":1752618902834,"y":42.976},{"x":1752618842633,"y":31.39},{"x":1752618782465,"y":34.81},{"x":1752618722313,"y":31.747},{"x":1752618662165,"y":29.048},{"x":1752618602080,"y":28.77},{"x":1752618541836,"y":35.365},{"x":1752618481661,"y":39.272},{"x":1752618421519,"y":36.711},{"x":1752618361333,"y":38.081},{"x":1752618301260,"y":35.753},{"x":1752618241032,"y":35.966},{"x":1752618180874,"y":34.854},{"x":1752618120784,"y":35.81},{"x":1752618060570,"y":32.497},{"x":1752618000777,"y":32.805},{"x":1752617940301,"y":35.086},{"x":1752617882984,"y":37.031},{"x":1752617822844,"y":39.872},{"x":1752617762681,"y":38.527},{"x":1752617702609,"y":36.424},{"x":1752617642372,"y":35.19},{"x":1752617582213,"y":38.148},{"x":1752617522055,"y":36.117},{"x":1752617461895,"y":37.005},{"x":1752617401769,"y":46.209},{"x":1752617341553,"y":46.175},{"x":1752617281402,"y":49.215},{"x":1752617221258,"y":46.824},{"x":1752617161074,"y":52.069},{"x":1752617101027,"y":46.127},{"x":1752617040769,"y":46.944},{"x":1752616980625,"y":46.412},{"x":1752616920481,"y":42.463},{"x":1752616860370,"y":36.424},{"x":1752616800780,"y":35.352},{"x":1752616742894,"y":34.549},{"x":1752616682721,"y":35.954},{"x":1752616622566,"y":37.556},{"x":1752616562416,"y":37.099},{"x":1752616502421,"y":42.712},{"x":1752616442110,"y":52.261},{"x":1752616381939,"y":45.68},{"x":1752616321797,"y":49.891},{"x":1752616261633,"y":49.174},{"x":1752616201578,"y":62.398},{"x":1752616141339,"y":58.681},{"x":1752616081182,"y":61.957},{"x":1752616020968,"y":68.587},{"x":1752615960836,"y":66.053},{"x":1752615900931,"y":54.966},{"x":1752615840499,"y":55.623},{"x":1752615780396,"y":47.535},{"x":1752615720189,"y":49.081},{"x":1752615662906,"y":48.997},{"x":1752615602816,"y":48.334},{"x":1752615542596,"y":45.67},{"x":1752615482445,"y":42.346},{"x":1752615422298,"y":40.086},{"x":1752615362157,"y":39.286},{"x":1752615302057,"y":54.467},{"x":1752615241836,"y":51.01},{"x":1752615181689,"y":63.078},{"x":1752615121547,"y":65.075},{"x":1752615061358,"y":60.54},{"x":1752615001320,"y":60.368},{"x":1752614941003,"y":60.599},{"x":1752614880848,"y":48.88},{"x":1752614820704,"y":44.655},{"x":1752614760553,"y":43.856},{"x":1752614700668,"y":40.235},{"x":1752614640286,"y":43.672},{"x":1752614582923,"y":40.276},{"x":1752614522767,"y":43.584},{"x":1752614462608,"y":44.426},{"x":1752614402535,"y":44.486},{"x":1752614342288,"y":41.821},{"x":1752614282132,"y":44.845},{"x":1752614221973,"y":43.15},{"x":1752614161819,"y":43.886},{"x":1752614101767,"y":41.959},{"x":1752614041507,"y":40.519},{"x":1752613981351,"y":39.689},{"x":1752613921202,"y":45.833},{"x":1752613861028,"y":60.303},{"x":1752613801039,"y":45.085},{"x":1752613740697,"y":42.096},{"x":1752613680639,"y":47.085},{"x":1752613620430,"y":44.224},{"x":1752613560239,"y":44.342},{"x":1752613502959,"y":56.397},{"x":1752613442725,"y":39.174},{"x":1752613382579,"y":54.361},{"x":1752613322419,"y":43.454},{"x":1752613262262,"y":54.721},{"x":1752613202111,"y":40.576},{"x":1752613141755,"y":43.391},{"x":1752613081564,"y":62.269},{"x":1752613021390,"y":62.996},{"x":1752612961260,"y":62.752},{"x":1752612901156,"y":66.103},{"x":1752612840914,"y":72.371},{"x":1752612780773,"y":45.851},{"x":1752612720649,"y":48.066},{"x":1752612660511,"y":50.981},{"x":1752612600710,"y":49.617},{"x":1752612543005,"y":52.39},{"x":1752612482863,"y":73.776},{"x":1752612422711,"y":72.164},{"x":1752612362561,"y":68.832},{"x":1752612302494,"y":83.44},{"x":1752612242264,"y":72.886},{"x":1752612182111,"y":58.983},{"x":1752612121954,"y":51.556},{"x":1752612061811,"y":51.836},{"x":1752612001732,"y":53.008},{"x":1752611941506,"y":49.098},{"x":1752611881389,"y":46.409},{"x":1752611821210,"y":49.296},{"x":1752611761053,"y":48.369},{"x":1752611700962,"y":48.891},{"x":1752611640732,"y":54.881},{"x":1752611580605,"y":56.321},{"x":1752611520506,"y":58.78},{"x":1752611460287,"y":54.861},{"x":1752611403058,"y":57.645},{"x":1752611342834,"y":53.009},{"x":1752611282620,"y":51.322},{"x":1752611222467,"y":50.838},{"x":1752611162323,"y":51.233},{"x":1752611102237,"y":52.427},{"x":1752611041999,"y":51.27},{"x":1752610981857,"y":49.597},{"x":1752610921705,"y":48.025},{"x":1752610861563,"y":53.165},{"x":1752610801484,"y":51.106},{"x":1752610741262,"y":50.259},{"x":1752610681115,"y":46.368},{"x":1752610620934,"y":51.925},{"x":1752610560772,"y":47.156},{"x":1752610500767,"y":51.272},{"x":1752610440455,"y":45.604},{"x":1752610380312,"y":47.824},{"x":1752610322999,"y":54.897},{"x":1752610262846,"y":49.884},{"x":1752610202757,"y":60.901},{"x":1752610142543,"y":61.046},{"x":1752610082391,"y":74.806},{"x":1752610022243,"y":74.075},{"x":1752609962093,"y":66.062},{"x":1752609901989,"y":59.395},{"x":1752609841762,"y":52.221},{"x":1752609781616,"y":43.734},{"x":1752609721469,"y":45.96},{"x":1752609661311,"y":43.155},{"x":1752609601394,"y":49.095},{"x":1752609540959,"y":43.083},{"x":1752609480807,"y":61.299},{"x":1752609420657,"y":51.651},{"x":1752609360576,"y":59.181},{"x":1752609300635,"y":62.28},{"x":1752609240220,"y":61.168},{"x":1752609182893,"y":61.1},{"x":1752609122736,"y":60.34},{"x":1752609062588,"y":67.576},{"x":1752609002497,"y":51.049},{"x":1752608942283,"y":55.145},{"x":1752608882129,"y":53.019},{"x":1752608821972,"y":50.919},{"x":1752608761824,"y":48.054},{"x":1752608701737,"y":52.455},{"x":1752608641512,"y":72.9},{"x":1752608581369,"y":61.863},{"x":1752608521226,"y":58.927},{"x":1752608461030,"y":63.301},{"x":1752608401018,"y":62.047},{"x":1752608340701,"y":64.44},{"x":1752608280522,"y":55.948},{"x":1752608220381,"y":52.473},{"x":1752608160322,"y":52.155},{"x":1752608103018,"y":52.637},{"x":1752608042800,"y":53.174},{"x":1752607982652,"y":52.432},{"x":1752607922490,"y":51.865},{"x":1752607862311,"y":54.986},{"x":1752607802204,"y":62.62},{"x":1752607741921,"y":57.92},{"x":1752607681804,"y":54.955},{"x":1752607621563,"y":50.54},{"x":1752607561412,"y":51.781},{"x":1752607501319,"y":50.842},{"x":1752607441092,"y":50.905},{"x":1752607380923,"y":64.521},{"x":1752607320779,"y":51.817},{"x":1752607260637,"y":58.065},{"x":1752607200715,"y":49.677},{"x":1752607140356,"y":56.243},{"x":1752607080228,"y":58.423},{"x":1752607022914,"y":52.607},{"x":1752606962739,"y":55.748},{"x":1752606902659,"y":53.025},{"x":1752606842440,"y":54.523},{"x":1752606782293,"y":44.994},{"x":1752606722136,"y":44.1},{"x":1752606661968,"y":47.923},{"x":1752606601894,"y":52.324},{"x":1752606541647,"y":54.489},{"x":1752606481491,"y":51.249},{"x":1752606421341,"y":49.689},{"x":1752606361185,"y":56.006},{"x":1752606301096,"y":50.719},{"x":1752606240846,"y":65.51},{"x":1752606180713,"y":58.077},{"x":1752606120569,"y":62.443},{"x":1752606060421,"y":61.017},{"x":1752606000541,"y":55.093},{"x":1752605942930,"y":36.359},{"x":1752605882762,"y":33.668},{"x":1752605822580,"y":39.426},{"x":1752605762429,"y":42.387},{"x":1752605702345,"y":36.507},{"x":1752605642113,"y":36.929},{"x":1752605581944,"y":38.668},{"x":1752605521790,"y":33.619},{"x":1752605461638,"y":40.677},{"x":1752605401547,"y":39.511},{"x":1752605341318,"y":37.85},{"x":1752605281119,"y":46.602},{"x":1752605220916,"y":48.533},{"x":1752605160755,"y":49.336},{"x":1752605100887,"y":56.114},{"x":1752605040430,"y":59.486},{"x":1752604980230,"y":44.317},{"x":1752604922916,"y":44.813},{"x":1752604862758,"y":46.834},{"x":1752604802673,"y":40.294},{"x":1752604742440,"y":55.467},{"x":1752604682281,"y":36.472},{"x":1752604622121,"y":45.741},{"x":1752604561961,"y":45.312},{"x":1752604501888,"y":36.029},{"x":1752604441648,"y":43.607},{"x":1752604381514,"y":53.656},{"x":1752604321327,"y":54.399},{"x":1752604261175,"y":49.16},{"x":1752604201208,"y":52.346},{"x":1752604140790,"y":57.563},{"x":1752604080618,"y":67.068},{"x":1752604020501,"y":54.813},{"x":1752603960284,"y":39.257},{"x":1752603903035,"y":40.312},{"x":1752603842795,"y":43.866},{"x":1752603782641,"y":44.273},{"x":1752603722488,"y":36.194},{"x":1752603662315,"y":36.088},{"x":1752603602205,"y":39.06},{"x":1752603541967,"y":43.203},{"x":1752603481814,"y":42.896},{"x":1752603421567,"y":41.407},{"x":1752603361396,"y":40.884},{"x":1752603301332,"y":51.628},{"x":1752603241110,"y":44.82},{"x":1752603180880,"y":48.951},{"x":1752603120752,"y":47.849},{"x":1752603060544,"y":59.432},{"x":1752603000618,"y":42.708},{"x":1752602943023,"y":34.682},{"x":1752602882848,"y":48.873},{"x":1752602822689,"y":44.522},{"x":1752602762545,"y":40.369},{"x":1752602702447,"y":34.692},{"x":1752602642218,"y":33.44},{"x":1752602582089,"y":43.104},{"x":1752602521902,"y":36.204},{"x":1752602461717,"y":33.459},{"x":1752602401862,"y":37.794},{"x":1752602341323,"y":42.441},{"x":1752602281148,"y":42.595},{"x":1752602220957,"y":46.093},{"x":1752602160803,"y":53.117},{"x":1752602100813,"y":62.724},{"x":1752602040486,"y":38.901},{"x":1752601980326,"y":44.763},{"x":1752601923004,"y":42.686},{"x":1752601862851,"y":40.416},{"x":1752601802761,"y":35.732},{"x":1752601742533,"y":39.677},{"x":1752601682382,"y":41.015},{"x":1752601622218,"y":47.214},{"x":1752601562039,"y":29.48},{"x":1752601501778,"y":35.86},{"x":1752601441535,"y":31.864},{"x":1752601381376,"y":33.941},{"x":1752601321239,"y":28.774},{"x":1752601261067,"y":28.445},{"x":1752601201073,"y":30.056},{"x":1752601140707,"y":40.316},{"x":1752601080585,"y":41.066},{"x":1752601020441,"y":42.868},{"x":1752600960238,"y":47.591},{"x":1752600902980,"y":46.331},{"x":1752600842733,"y":51.057},{"x":1752600782575,"y":52.043},{"x":1752600722405,"y":45.574},{"x":1752600662248,"y":38.344},{"x":1752600602166,"y":29.967},{"x":1752600541970,"y":27.666},{"x":1752600481704,"y":34.415},{"x":1752600421535,"y":38.178},{"x":1752600361378,"y":41.293},{"x":1752600301280,"y":38.497},{"x":1752600241024,"y":38.246},{"x":1752600180863,"y":39.897},{"x":1752600120700,"y":49.716},{"x":1752600060547,"y":49.2},{"x":1752600000671,"y":51.304},{"x":1752599940252,"y":57.598},{"x":1752599882868,"y":46.355},{"x":1752599822715,"y":29.723},{"x":1752599762523,"y":49.423},{"x":1752599702437,"y":37.064},{"x":1752599642209,"y":33.967},{"x":1752599582046,"y":27.472},{"x":1752599521875,"y":30.714},{"x":1752599461723,"y":21.238},{"x":1752599401643,"y":19.254},{"x":1752599341406,"y":32.096},{"x":1752599281255,"y":30.553},{"x":1752599221093,"y":33.991},{"x":1752599160897,"y":37.153},{"x":1752599101008,"y":39.299},{"x":1752599040652,"y":31.388},{"x":1752598980467,"y":27.008},{"x":1752598920297,"y":25.391},{"x":1752598862941,"y":36.159},{"x":1752598802886,"y":33.194},{"x":1752598742582,"y":32.004},{"x":1752598682427,"y":30.282},{"x":1752598622275,"y":27.508},{"x":1752598562117,"y":31.689},{"x":1752598502024,"y":32.737},{"x":1752598441795,"y":43.919},{"x":1752598381638,"y":45.408},{"x":1752598321473,"y":41.295},{"x":1752598261322,"y":44.636},{"x":1752598201235,"y":72.653},{"x":1752598140975,"y":57.307},{"x":1752598080817,"y":43.377},{"x":1752598020603,"y":42.375},{"x":1752597960539,"y":40.723},{"x":1752597900539,"y":41.205},{"x":1752597842938,"y":40.394},{"x":1752597782775,"y":35.795},{"x":1752597722596,"y":34.239},{"x":1752597662459,"y":40.53},{"x":1752597602340,"y":34.613},{"x":1752597542097,"y":35.098},{"x":1752597481925,"y":35.132},{"x":1752597421757,"y":44.541},{"x":1752597361610,"y":38.918},{"x":1752597301525,"y":45.274},{"x":1752597241298,"y":52.259},{"x":1752597181176,"y":44.692},{"x":1752597120941,"y":35.79},{"x":1752597060771,"y":20.99},{"x":1752597000860,"y":23.824},{"x":1752596940532,"y":30.639},{"x":1752596880481,"y":32.163},{"x":1752596822966,"y":31.033},{"x":1752596762808,"y":40.837},{"x":1752596702731,"y":38.109},{"x":1752596642492,"y":45.559},{"x":1752596582337,"y":59.794},{"x":1752596522183,"y":48.673},{"x":1752596461996,"y":37.315},{"x":1752596401920,"y":34.326},{"x":1752596341681,"y":47.739},{"x":1752596281519,"y":34.232},{"x":1752596221358,"y":29.719},{"x":1752596161181,"y":24.004},{"x":1752596101086,"y":32.508},{"x":1752596040792,"y":41.004},{"x":1752595980634,"y":51.589},{"x":1752595920608,"y":43.909},{"x":1752595860527,"y":46.144},{"x":1752595803096,"y":54.039},{"x":1752595742860,"y":43.747},{"x":1752595682704,"y":36.966},{"x":1752595622526,"y":36.356},{"x":1752595562373,"y":42.271},{"x":1752595502286,"y":30.508},{"x":1752595442037,"y":29.023},{"x":1752595381845,"y":28.997},{"x":1752595321689,"y":36.372},{"x":1752595261535,"y":48.525},{"x":1752595201533,"y":40.649},{"x":1752595141048,"y":40.563},{"x":1752595080887,"y":40.323},{"x":1752595020739,"y":40.825},{"x":1752594960612,"y":37.161},{"x":1752594900608,"y":43.538},{"x":1752594843011,"y":40.753},{"x":1752594782858,"y":38.103},{"x":1752594722688,"y":46.89},{"x":1752594662536,"y":37.478},{"x":1752594602470,"y":38.383},{"x":1752594542219,"y":49.605},{"x":1752594482055,"y":50.136},{"x":1752594421892,"y":59.619},{"x":1752594361761,"y":41.093},{"x":1752594301734,"y":46.274},{"x":1752594241427,"y":43.694},{"x":1752594181245,"y":38.201},{"x":1752594121082,"y":41.805},{"x":1752594060911,"y":48.564},{"x":1752594000974,"y":51.6},{"x":1752593940570,"y":38.383},{"x":1752593880518,"y":33.936},{"x":1752593820364,"y":39.093},{"x":1752593762996,"y":56.751},{"x":1752593702915,"y":45.711},{"x":1752593642667,"y":43.581},{"x":1752593582506,"y":42.404},{"x":1752593522360,"y":46.091},{"x":1752593462178,"y":28.942},{"x":1752593402090,"y":34.657},{"x":1752593341873,"y":45.219},{"x":1752593281623,"y":46.869},{"x":1752593221455,"y":41.281},{"x":1752593161280,"y":34.902},{"x":1752593101213,"y":45.977},{"x":1752593040952,"y":37.78},{"x":1752592980785,"y":33.217},{"x":1752592920609,"y":43.28},{"x":1752592860454,"y":54.576},{"x":1752592800673,"y":52.312},{"x":1752592740145,"y":55.866},{"x":1752592682875,"y":43.524},{"x":1752592622714,"y":31.168},{"x":1752592562550,"y":25.512},{"x":1752592502478,"y":35.464},{"x":1752592442228,"y":32.827},{"x":1752592382053,"y":28.306},{"x":1752592321879,"y":26.02},{"x":1752592261706,"y":37.252},{"x":1752592201626,"y":36.316},{"x":1752592141413,"y":46.974},{"x":1752592081234,"y":41.885},{"x":1752592021071,"y":22.78},{"x":1752591960895,"y":40.14},{"x":1752591900828,"y":41.535},{"x":1752591840622,"y":40.966},{"x":1752591780548,"y":48.015},{"x":1752591720535,"y":33.621},{"x":1752591662917,"y":33.908},{"x":1752591602860,"y":22.531},{"x":1752591542566,"y":28.973},{"x":1752591482414,"y":21.026},{"x":1752591422243,"y":35.271},{"x":1752591362099,"y":29.612},{"x":1752591301990,"y":41.23},{"x":1752591241752,"y":39.157},{"x":1752591181588,"y":41.358},{"x":1752591121417,"y":43.089},{"x":1752591061260,"y":28.05},{"x":1752591001160,"y":24.376},{"x":1752590940886,"y":21.531},{"x":1752590880743,"y":22.69},{"x":1752590820566,"y":47.91},{"x":1752590760378,"y":31.814},{"x":1752590700369,"y":59.228},{"x":1752590642929,"y":41.226},{"x":1752590582762,"y":41.14},{"x":1752590522601,"y":23.626},{"x":1752590462437,"y":28.329},{"x":1752590402433,"y":24.307},{"x":1752590342119,"y":22.963},{"x":1752590281946,"y":30.938},{"x":1752590221674,"y":23.448},{"x":1752590161509,"y":22.741},{"x":1752590101438,"y":17.017},{"x":1752590041172,"y":16.674},{"x":1752589981040,"y":17.633},{"x":1752589920870,"y":17.307},{"x":1752589860731,"y":6.292},{"x":1752589801386,"y":16.285},{"x":1752589740383,"y":10.543},{"x":1752589682958,"y":19.616},{"x":1752589622771,"y":33.636},{"x":1752589562606,"y":44.295},{"x":1752589502529,"y":34.986},{"x":1752589442282,"y":31.672},{"x":1752589382118,"y":23.8},{"x":1752589321931,"y":18.916},{"x":1752589261774,"y":22.73},{"x":1752589201688,"y":23.166},{"x":1752589141427,"y":36.082},{"x":1752589081274,"y":36.113},{"x":1752589021087,"y":24.847},{"x":1752588960931,"y":8.553},{"x":1752588900980,"y":26.264},{"x":1752588840625,"y":21.054},{"x":1752588780472,"y":12.14},{"x":1752588720310,"y":17.407},{"x":1752588662913,"y":13.882},{"x":1752588602833,"y":28.621},{"x":1752588542608,"y":24.485},{"x":1752588482416,"y":27.685},{"x":1752588422266,"y":36.565},{"x":1752588362085,"y":26.748},{"x":1752588302057,"y":25.763},{"x":1752588241744,"y":32.196},{"x":1752588181582,"y":21.598},{"x":1752588121418,"y":21.848},{"x":1752588061239,"y":37.388},{"x":1752588001511,"y":13.183},{"x":1752587940814,"y":20.791},{"x":1752587880657,"y":25.855},{"x":1752587820505,"y":15.059},{"x":1752587760437,"y":16.309},{"x":1752587703048,"y":20.813},{"x":1752587642800,"y":17.632},{"x":1752587582641,"y":15.48},{"x":1752587522483,"y":14.919},{"x":1752587462319,"y":25.928},{"x":1752587402256,"y":27.7},{"x":1752587341990,"y":19.63},{"x":1752587281804,"y":27.264},{"x":1752587221635,"y":26.278},{"x":1752587161479,"y":25.821},{"x":1752587101489,"y":21.919},{"x":1752587041135,"y":47.161},{"x":1752586980959,"y":36.538},{"x":1752586920802,"y":45.516},{"x":1752586860633,"y":54.55},{"x":1752586800911,"y":36.636},{"x":1752586740342,"y":30.549},{"x":1752586682995,"y":33.552},{"x":1752586622814,"y":25.966},{"x":1752586562649,"y":23.531},{"x":1752586502548,"y":27.377},{"x":1752586442322,"y":35.119},{"x":1752586382156,"y":32.108},{"x":1752586321975,"y":26.691},{"x":1752586261824,"y":26.199},{"x":1752586201766,"y":50.433},{"x":1752586141435,"y":48.266},{"x":1752586081172,"y":45.345},{"x":1752586020996,"y":46.974},{"x":1752585960829,"y":49.683},{"x":1752585900801,"y":59.125},{"x":1752585840576,"y":38.687},{"x":1752585780435,"y":36.377},{"x":1752585720191,"y":45.63},{"x":1752585662879,"y":58.318},{"x":1752585602793,"y":52.922},{"x":1752585542565,"y":53.798},{"x":1752585482388,"y":46.389},{"x":1752585422228,"y":53.649},{"x":1752585362054,"y":40.61},{"x":1752585301816,"y":25.571},{"x":1752585241635,"y":11.794},{"x":1752585181418,"y":13.987},{"x":1752585121248,"y":19.83},{"x":1752585061098,"y":28.286},{"x":1752585001022,"y":39.152},{"x":1752584940712,"y":44.861},{"x":1752584880575,"y":48.427},{"x":1752584820392,"y":48.427},{"x":1752584760317,"y":38.677},{"x":1752584702963,"y":28.281},{"x":1752584642766,"y":13.518},{"x":1752584582570,"y":8.779},{"x":1752584522401,"y":5.744},{"x":1752584462241,"y":7.398},{"x":1752584402253,"y":13.6},{"x":1752584341723,"y":9.935},{"x":1752584281535,"y":15.577},{"x":1752584221377,"y":32.294},{"x":1752584161210,"y":21.868},{"x":1752584101137,"y":17.0},{"x":1752584040861,"y":25.201},{"x":1752583980706,"y":19.344},{"x":1752583920616,"y":7.729},{"x":1752583860373,"y":13.521},{"x":1752583800537,"y":12.407},{"x":1752583742906,"y":34.244},{"x":1752583682743,"y":29.698},{"x":1752583622577,"y":32.26},{"x":1752583562419,"y":23.996},{"x":1752583502342,"y":17.919},{"x":1752583442166,"y":10.971},{"x":1752583381926,"y":10.595},{"x":1752583321744,"y":2.018},{"x":1752583261577,"y":4.089},{"x":1752583201491,"y":7.909},{"x":1752583141240,"y":9.611},{"x":1752583081078,"y":7.352},{"x":1752583020905,"y":21.739},{"x":1752582960765,"y":20.448},{"x":1752582900733,"y":55.629},{"x":1752582840439,"y":34.618},{"x":1752582780330,"y":25.586},{"x":1752582722920,"y":25.195},{"x":1752582662741,"y":11.4},{"x":1752582602586,"y":8.304},{"x":1752582542291,"y":14.219},{"x":1752582482070,"y":20.717},{"x":1752582421874,"y":40.5},{"x":1752582361705,"y":35.956},{"x":1752582301622,"y":34.51},{"x":1752582241398,"y":30.018},{"x":1752582181211,"y":23.821},{"x":1752582121041,"y":17.223},{"x":1752582060871,"y":6.96},{"x":1752582000983,"y":14.883},{"x":1752581940668,"y":9.495},{"x":1752581880364,"y":11.792},{"x":1752581823017,"y":12.955},{"x":1752581762848,"y":22.006},{"x":1752581702745,"y":20.247},{"x":1752581642506,"y":30.096},{"x":1752581582322,"y":16.716},{"x":1752581522138,"y":21.532},{"x":1752581461965,"y":11.647},{"x":1752581401909,"y":13.599},{"x":1752581341630,"y":16.594},{"x":1752581281462,"y":14.699},{"x":1752581221303,"y":13.316},{"x":1752581161144,"y":25.85},{"x":1752581101041,"y":24.803},{"x":1752581040781,"y":32.705},{"x":1752580980641,"y":35.738},{"x":1752580920550,"y":17.228},{"x":1752580860381,"y":35.431},{"x":1752580802958,"y":45.741},{"x":1752580742696,"y":38.006},{"x":1752580682523,"y":44.639},{"x":1752580622354,"y":37.002},{"x":1752580562231,"y":24.686},{"x":1752580502096,"y":29.367},{"x":1752580441830,"y":40.106},{"x":1752580381657,"y":34.642},{"x":1752580321494,"y":27.307},{"x":1752580261331,"y":43.012},{"x":1752580201230,"y":13.968},{"x":1752580140977,"y":23.556},{"x":1752580080827,"y":16.112},{"x":1752580020677,"y":18.359},{"x":1752579960523,"y":14.266},{"x":1752579900586,"y":20.668},{"x":1752579842948,"y":12.651},{"x":1752579782772,"y":18.411},{"x":1752579722619,"y":13.928},{"x":1752579662422,"y":36.678},{"x":1752579602389,"y":34.872},{"x":1752579542102,"y":20.268},{"x":1752579481922,"y":29.38},{"x":1752579421766,"y":27.834},{"x":1752579361607,"y":24.339},{"x":1752579301514,"y":24.084},{"x":1752579241253,"y":22.048},{"x":1752579181075,"y":22.833},{"x":1752579120886,"y":41.88},{"x":1752579060723,"y":41.246},{"x":1752579000936,"y":20.94},{"x":1752578940412,"y":22.474},{"x":1752578882856,"y":30.379},{"x":1752578822675,"y":28.946},{"x":1752578762506,"y":19.554},{"x":1752578702430,"y":19.859},{"x":1752578642194,"y":19.471},{"x":1752578581995,"y":14.378},{"x":1752578521829,"y":16.737},{"x":1752578461671,"y":35.774},{"x":1752578401581,"y":25.486},{"x":1752578341336,"y":23.835},{"x":1752578281148,"y":27.561},{"x":1752578220952,"y":33.922},{"x":1752578160779,"y":14.539},{"x":1752578101880,"y":12.795},{"x":1752578041631,"y":43.922},{"x":1752577981464,"y":48.122},{"x":1752577921310,"y":28.324},{"x":1752577861143,"y":56.129},{"x":1752577801086,"y":46.643},{"x":1752577740763,"y":45.018},{"x":1752577680656,"y":37.359},{"x":1752577620515,"y":39.718},{"x":1752577560295,"y":27.568},{"x":1752577503062,"y":29.866},{"x":1752577442778,"y":22.461},{"x":1752577382617,"y":29.508},{"x":1752577322451,"y":20.568},{"x":1752577262271,"y":45.337},{"x":1752577202340,"y":45.064},{"x":1752577141901,"y":40.853},{"x":1752577081684,"y":29.885},{"x":1752577021514,"y":38.752},{"x":1752576961352,"y":30.058},{"x":1752576901279,"y":17.439},{"x":1752576840991,"y":17.657},{"x":1752576780811,"y":22.427},{"x":1752576720689,"y":21.842},{"x":1752576660515,"y":20.642},{"x":1752576600670,"y":29.09},{"x":1752576543022,"y":32.582},{"x":1752576482829,"y":26.6},{"x":1752576422648,"y":20.933},{"x":1752576362426,"y":11.423},{"x":1752576302303,"y":21.464},{"x":1752576242107,"y":22.414},{"x":1752576181895,"y":9.273},{"x":1752576121739,"y":7.892},{"x":1752576061567,"y":8.344},{"x":1752576001464,"y":39.965},{"x":1752575940905,"y":27.644},{"x":1752575880661,"y":29.808},{"x":1752575820568,"y":22.883},{"x":1752575760314,"y":18.615},{"x":1752575703021,"y":5.763},{"x":1752575642863,"y":3.703},{"x":1752575582661,"y":11.776},{"x":1752575522475,"y":35.489},{"x":1752575462290,"y":23.818},{"x":1752575402104,"y":31.4},{"x":1752575341936,"y":45.578},{"x":1752575281784,"y":29.629},{"x":1752575221602,"y":19.095},{"x":1752575161389,"y":28.243},{"x":1752575101234,"y":17.559},{"x":1752575041033,"y":21.153},{"x":1752574980861,"y":32.278},{"x":1752574920678,"y":33.531},{"x":1752574860625,"y":27.671},{"x":1752574800346,"y":15.856},{"x":1752574742968,"y":15.882},{"x":1752574682801,"y":15.822},{"x":1752574622615,"y":13.241},{"x":1752574562419,"y":3.399},{"x":1752574502225,"y":9.014},{"x":1752574442049,"y":11.798},{"x":1752574381877,"y":13.306},{"x":1752574321639,"y":17.954},{"x":1752574261460,"y":7.154},{"x":1752574201179,"y":18.299},{"x":1752574140965,"y":25.513},{"x":1752574065612,"y":13.218},{"x":1752574062365,"y":8.951},{"x":1752571620554,"y":28.293},{"x":1752571560436,"y":24.83},{"x":1752571500254,"y":38.877},{"x":1752571442872,"y":40.306},{"x":1752571382704,"y":44.778},{"x":1752571322518,"y":32.065},{"x":1752571262330,"y":44.953},{"x":1752571202109,"y":36.39},{"x":1752571141891,"y":36.793},{"x":1752571081704,"y":40.365},{"x":1752571021524,"y":29.96},{"x":1752570961332,"y":47.622},{"x":1752570901183,"y":33.084},{"x":1752570840960,"y":32.34},{"x":1752570780784,"y":48.569},{"x":1752570720622,"y":33.795},{"x":1752570660433,"y":46.088},{"x":1752570600173,"y":19.989},{"x":1752570542831,"y":14.214},{"x":1752570482664,"y":23.13},{"x":1752570422483,"y":14.112},{"x":1752570362321,"y":13.478},{"x":1752570302161,"y":20.312},{"x":1752570241965,"y":21.367},{"x":1752570181776,"y":28.251},{"x":1752570121666,"y":31.585},{"x":1752570061439,"y":29.944},{"x":1752570001413,"y":62.053},{"x":1752569941013,"y":43.032},{"x":1752569880840,"y":29.623},{"x":1752569820677,"y":16.484},{"x":1752569760545,"y":15.439},{"x":1752569700416,"y":30.528},{"x":1752569642959,"y":20.904},{"x":1752569582789,"y":16.979},{"x":1752569522619,"y":25.348},{"x":1752569462452,"y":21.939},{"x":1752569402275,"y":24.401},{"x":1752569342138,"y":31.17},{"x":1752569281926,"y":36.733},{"x":1752569221695,"y":33.8},{"x":1752569161497,"y":25.385},{"x":1752569101318,"y":40.038},{"x":1752569041126,"y":41.76},{"x":1752568980943,"y":21.228},{"x":1752568920779,"y":22.765},{"x":1752568860589,"y":18.069},{"x":1752568800544,"y":21.542},{"x":1752568740213,"y":29.874},{"x":1752568682876,"y":21.663},{"x":1752568622694,"y":20.322},{"x":1752568562508,"y":36.582},{"x":1752568502325,"y":36.024},{"x":1752568442156,"y":31.882},{"x":1752568381946,"y":34.415},{"x":1752568321766,"y":28.314},{"x":1752568261595,"y":18.917},{"x":1752568201449,"y":14.557},{"x":1752568141250,"y":11.138},{"x":1752568081072,"y":26.982},{"x":1752568020856,"y":22.349},{"x":1752567960689,"y":35.829},{"x":1752567900647,"y":37.525},{"x":1752567840373,"y":37.527},{"x":1752567783033,"y":33.467},{"x":1752567722851,"y":36.3},{"x":1752567662671,"y":30.007},{"x":1752567602530,"y":27.875},{"x":1752567542290,"y":27.707},{"x":1752567482041,"y":18.285},{"x":1752567421857,"y":23.861},{"x":1752567361662,"y":17.581},{"x":1752567301539,"y":35.219},{"x":1752567241327,"y":34.009},{"x":1752567181153,"y":17.762},{"x":1752567120955,"y":22.528},{"x":1752567060778,"y":20.072},{"x":1752567000726,"y":19.04},{"x":1752566940475,"y":18.793},{"x":1752566880085,"y":14.461},{"x":1752566822829,"y":19.806},{"x":1752566762664,"y":17.249},{"x":1752566702502,"y":25.587},{"x":1752566642370,"y":24.848},{"x":1752566582181,"y":17.596},{"x":1752566522018,"y":27.101},{"x":1752566461820,"y":13.601},{"x":1752566401718,"y":13.374},{"x":1752566341462,"y":20.767},{"x":1752566281274,"y":24.036},{"x":1752566221095,"y":27.856},{"x":1752566160914,"y":26.014},{"x":1752566100838,"y":45.752},{"x":1752566040602,"y":36.049},{"x":1752565980464,"y":57.182},{"x":1752565920356,"y":37.694},{"x":1752565862908,"y":26.967},{"x":1752565802723,"y":20.446},{"x":1752565742555,"y":17.598},{"x":1752565682387,"y":19.007},{"x":1752565622238,"y":40.957},{"x":1752565561993,"y":39.815},{"x":1752565501816,"y":43.407},{"x":1752565441622,"y":47.007},{"x":1752565381455,"y":45.724},{"x":1752565321282,"y":47.356},{"x":1752565261075,"y":36.396},{"x":1752565200920,"y":29.856},{"x":1752565140720,"y":33.248},{"x":1752565080565,"y":38.751},{"x":1752565020440,"y":24.973},{"x":1752564960117,"y":25.871},{"x":1752564902836,"y":37.066},{"x":1752564842676,"y":29.3},{"x":1752564782489,"y":28.195},{"x":1752564722319,"y":22.7},{"x":1752564662155,"y":22.047},{"x":1752564601983,"y":33.157},{"x":1752564541798,"y":35.394},{"x":1752564481624,"y":17.489},{"x":1752564421440,"y":25.988},{"x":1752564361270,"y":30.09},{"x":1752564301097,"y":43.758},{"x":1752564240900,"y":46.418},{"x":1752564180735,"y":44.671},{"x":1752564120625,"y":21.056},{"x":1752564060472,"y":30.258},{"x":1752564000271,"y":31.244},{"x":1752563942933,"y":24.759},{"x":1752563882690,"y":30.643},{"x":1752563822513,"y":17.993},{"x":1752563762327,"y":20.169},{"x":1752563702150,"y":23.427},{"x":1752563641958,"y":30.869},{"x":1752563581755,"y":34.76},{"x":1752563521586,"y":36.188},{"x":1752563461412,"y":34.694},{"x":1752563401235,"y":38.911},{"x":1752563341053,"y":30.603},{"x":1752563280885,"y":25.765},{"x":1752563220712,"y":19.012},{"x":1752563160579,"y":35.213},{"x":1752563100529,"y":28.717},{"x":1752563042957,"y":26.131},{"x":1752562982807,"y":22.412},{"x":1752562922609,"y":30.35},{"x":1752562862442,"y":24.543},{"x":1752562802295,"y":21.181},{"x":1752562742019,"y":18.672},{"x":1752562681828,"y":21.595},{"x":1752562621650,"y":28.626},{"x":1752562561489,"y":21.354},{"x":1752562501310,"y":32.074},{"x":1752562441132,"y":33.269},{"x":1752562380928,"y":33.341},{"x":1752562320767,"y":26.487},{"x":1752562260609,"y":36.696},{"x":1752562200539,"y":30.92},{"x":1752562140276,"y":34.192},{"x":1752562082939,"y":31.031},{"x":1752562022721,"y":25.101},{"x":1752561962536,"y":22.467},{"x":1752561902362,"y":33.052},{"x":1752561842177,"y":36.57},{"x":1752561782017,"y":22.374},{"x":1752561721840,"y":22.566},{"x":1752561661669,"y":31.366},{"x":1752561601475,"y":23.534},{"x":1752561541304,"y":37.658},{"x":1752561481121,"y":31.758},{"x":1752561420941,"y":38.308},{"x":1752561360760,"y":41.819},{"x":1752561300605,"y":44.649},{"x":1752561240408,"y":31.994},{"x":1752561180348,"y":30.243},{"x":1752561122917,"y":26.808},{"x":1752561062751,"y":32.976},{"x":1752561002575,"y":22.484},{"x":1752560942407,"y":18.814},{"x":1752560882225,"y":25.053},{"x":1752560822039,"y":25.908},{"x":1752560761855,"y":40.387},{"x":1752560701675,"y":24.942},{"x":1752560641508,"y":32.665},{"x":1752560581347,"y":26.284},{"x":1752560521076,"y":23.396},{"x":1752560460898,"y":24.384},{"x":1752560400986,"y":29.291},{"x":1752560340511,"y":24.186},{"x":1752560280480,"y":22.069},{"x":1752560222922,"y":22.725},{"x":1752560162745,"y":39.558},{"x":1752560102564,"y":32.38},{"x":1752560042387,"y":46.899},{"x":1752559982229,"y":56.56},{"x":1752559922045,"y":70.302},{"x":1752559861857,"y":55.913},{"x":1752559801691,"y":50.601},{"x":1752559741507,"y":47.624},{"x":1752559681330,"y":31.783},{"x":1752559621149,"y":31.339},{"x":1752559560963,"y":32.91},{"x":1752559500801,"y":26.786},{"x":1752559440618,"y":24.109},{"x":1752559380453,"y":24.09},{"x":1752559320312,"y":30.367},{"x":1752559262888,"y":24.874},{"x":1752559202720,"y":21.839},{"x":1752559142529,"y":20.297},{"x":1752559082369,"y":22.858},{"x":1752559022204,"y":24.424},{"x":1752558961999,"y":17.318},{"x":1752558901827,"y":17.8},{"x":1752558841640,"y":19.315},{"x":1752558781462,"y":23.184},{"x":1752558721286,"y":20.154},{"x":1752558661101,"y":26.499},{"x":1752558600895,"y":25.197},{"x":1752558540707,"y":34.206},{"x":1752558480615,"y":34.652},{"x":1752558420393,"y":36.793},{"x":1752558360220,"y":34.953},{"x":1752558302896,"y":30.139},{"x":1752558242722,"y":21.593},{"x":1752558182543,"y":22.678},{"x":1752558122366,"y":26.054},{"x":1752558062197,"y":22.065},{"x":1752558002012,"y":22.131},{"x":1752557941828,"y":25.309},{"x":1752557881666,"y":23.354},{"x":1752557821482,"y":23.334},{"x":1752557761328,"y":27.511},{"x":1752557701144,"y":27.04},{"x":1752557640950,"y":34.114},{"x":1752557580764,"y":29.033},{"x":1752557520650,"y":35.224},{"x":1752557460394,"y":25.643},{"x":1752557400149,"y":21.934},{"x":1752557342863,"y":23.021},{"x":1752557282686,"y":26.224},{"x":1752557222511,"y":28.926},{"x":1752557162343,"y":26.136},{"x":1752557102177,"y":25.237},{"x":1752557041988,"y":25.971},{"x":1752556981819,"y":27.29},{"x":1752556921684,"y":25.701},{"x":1752556861486,"y":24.517},{"x":1752556801336,"y":27.525},{"x":1752556741025,"y":23.429},{"x":1752556680802,"y":23.792},{"x":1752556620687,"y":26.867},{"x":1752556560531,"y":28.951},{"x":1752556500314,"y":29.899},{"x":1752556442960,"y":26.931},{"x":1752556382776,"y":28.716},{"x":1752556322592,"y":25.139},{"x":1752556262416,"y":24.714},{"x":1752556202231,"y":25.437},{"x":1752556142053,"y":22.497},{"x":1752556081878,"y":23.157},{"x":1752556021706,"y":23.626},{"x":1752555961533,"y":26.124},{"x":1752555901363,"y":24.37},{"x":1752555841180,"y":26.341},{"x":1752555780998,"y":27.463},{"x":1752555720811,"y":29.577},{"x":1752555660642,"y":25.149},{"x":1752555601007,"y":27.548},{"x":1752555540205,"y":22.105},{"x":1752555482952,"y":23.025},{"x":1752555422757,"y":27.516},{"x":1752555362578,"y":24.121},{"x":1752555302399,"y":27.967},{"x":1752555242201,"y":29.509},{"x":1752555182011,"y":25.734},{"x":1752555121832,"y":27.197},{"x":1752555061671,"y":28.037},{"x":1752555001517,"y":29.837},{"x":1752554941361,"y":25.881},{"x":1752554881197,"y":25.075},{"x":1752554820925,"y":27.042},{"x":1752554760702,"y":23.301},{"x":1752554700705,"y":23.294},{"x":1752554640330,"y":30.924},{"x":1752554580117,"y":25.761},{"x":1752554522721,"y":24.194},{"x":1752554462577,"y":28.276},{"x":1752554402391,"y":28.275},{"x":1752554342221,"y":29.84},{"x":1752554282049,"y":32.144},{"x":1752554221865,"y":25.743},{"x":1752554161691,"y":25.226},{"x":1752554101518,"y":25.22},{"x":1752554041335,"y":30.135},{"x":1752553981152,"y":24.662},{"x":1752553920956,"y":24.87},{"x":1752553860781,"y":32.575},{"x":1752553800725,"y":29.212},{"x":1752553740599,"y":26.367},{"x":1752553680235,"y":25.712},{"x":1752553622929,"y":31.554},{"x":1752553562745,"y":30.578},{"x":1752553502578,"y":27.588},{"x":1752553442415,"y":29.631},{"x":1752553382237,"y":29.792},{"x":1752553322049,"y":33.839},{"x":1752553261888,"y":44.476},{"x":1752553201659,"y":43.909},{"x":1752553141439,"y":46.052},{"x":1752553081254,"y":40.219},{"x":1752553021046,"y":27.487},{"x":1752552960866,"y":30.67},{"x":1752552900756,"y":37.179},{"x":1752552840571,"y":35.958},{"x":1752552780405,"y":35.707},{"x":1752552720184,"y":38.813},{"x":1752552662877,"y":37.465},{"x":1752552602738,"y":37.176},{"x":1752552542529,"y":42.551},{"x":1752552482357,"y":31.554},{"x":1752552422188,"y":29.571},{"x":1752552362014,"y":31.159},{"x":1752552301837,"y":39.069},{"x":1752552241666,"y":37.748},{"x":1752552181502,"y":36.383},{"x":1752552121335,"y":33.912},{"x":1752552061166,"y":30.925},{"x":1752552000968,"y":47.077},{"x":1752551940705,"y":46.935},{"x":1752551880534,"y":52.992},{"x":1752551820371,"y":52.374},{"x":1752551760213,"y":50.865},{"x":1752551702865,"y":30.445},{"x":1752551642704,"y":29.123},{"x":1752551582510,"y":26.598},{"x":1752551522326,"y":24.874},{"x":1752551462120,"y":27.384},{"x":1752551401933,"y":26.949},{"x":1752551341737,"y":26.066},{"x":1752551281557,"y":25.1},{"x":1752551221352,"y":31.444},{"x":1752551161169,"y":26.979},{"x":1752551101042,"y":29.629},{"x":1752551040781,"y":29.489},{"x":1752550980610,"y":28.201},{"x":1752550920480,"y":30.62},{"x":1752550860290,"y":29.255},{"x":1752550802943,"y":25.865},{"x":1752550742778,"y":25.973},{"x":1752550682587,"y":29.668},{"x":1752550622413,"y":29.493},{"x":1752550562248,"y":28.682},{"x":1752550502068,"y":30.067},{"x":1752550441886,"y":34.461},{"x":1752550381717,"y":28.347},{"x":1752550321545,"y":29.729},{"x":1752550261370,"y":30.987},{"x":1752550201202,"y":37.639},{"x":1752550140988,"y":28.215},{"x":1752550080818,"y":25.789},{"x":1752550020653,"y":31.049},{"x":1752549960537,"y":28.166},{"x":1752549900490,"y":28.482},{"x":1752549842972,"y":27.779},{"x":1752549782785,"y":34.865},{"x":1752549722636,"y":27.781},{"x":1752549662421,"y":28.668},{"x":1752549602212,"y":27.746},{"x":1752549542019,"y":30.64},{"x":1752549481780,"y":27.866},{"x":1752549421579,"y":27.661},{"x":1752549361367,"y":51.905},{"x":1752549301201,"y":48.308},{"x":1752549241009,"y":48.213},{"x":1752549180829,"y":49.721},{"x":1752549120660,"y":49.678},{"x":1752549060494,"y":47.483},{"x":1752549000357,"y":49.008},{"x":1752548940084,"y":47.629},{"x":1752548882831,"y":46.196},{"x":1752548822662,"y":45.542},{"x":1752548762494,"y":45.637},{"x":1752548701595,"y":28.658},{"x":1752548641286,"y":29.629},{"x":1752548582949,"y":30.142},{"x":1752548522776,"y":32.852},{"x":1752548462564,"y":30.701},{"x":1752548401309,"y":25.33},{"x":1752548341012,"y":27.448},{"x":1752548280808,"y":27.334},{"x":1752548220648,"y":31.918},{"x":1752548160581,"y":32.038},{"x":1752548100391,"y":27.703},{"x":1752548042968,"y":27.399},{"x":1752547982817,"y":26.955},{"x":1752547922613,"y":29.522},{"x":1752547862472,"y":27.563},{"x":1752547802279,"y":29.755},{"x":1752547742111,"y":40.436},{"x":1752547681930,"y":36.928},{"x":1752547621737,"y":52.235},{"x":1752547561551,"y":57.123},{"x":1752547501385,"y":53.315},{"x":1752547441204,"y":46.765},{"x":1752547381024,"y":33.318},{"x":1752547320838,"y":29.503},{"x":1752547260677,"y":25.655},{"x":1752547200612,"y":29.461},{"x":1752547140400,"y":29.994},{"x":1752547082969,"y":29.784},{"x":1752547022804,"y":26.889},{"x":1752546962610,"y":28.68},{"x":1752546902438,"y":28.23},{"x":1752546842266,"y":33.948},{"x":1752546782091,"y":29.275},{"x":1752546721891,"y":28.604},{"x":1752546661716,"y":26.834},{"x":1752546601554,"y":30.161},{"x":1752546541388,"y":28.788},{"x":1752546481232,"y":28.437},{"x":1752546421024,"y":29.423},{"x":1752546360837,"y":34.04},{"x":1752546300677,"y":31.872},{"x":1752546240529,"y":34.273},{"x":1752546180227,"y":33.692},{"x":1752546122911,"y":38.868},{"x":1752546062740,"y":36.952},{"x":1752546002540,"y":36.515},{"x":1752545942340,"y":35.846},{"x":1752545882159,"y":27.203},{"x":1752545821970,"y":31.599},{"x":1752545761765,"y":33.981},{"x":1752545701592,"y":33.88},{"x":1752545641414,"y":32.821},{"x":1752545581211,"y":32.666},{"x":1752545521032,"y":31.109},{"x":1752545460836,"y":31.647},{"x":1752545400750,"y":30.056},{"x":1752545340325,"y":28.988},{"x":1752545282978,"y":29.61},{"x":1752545222801,"y":32.833},{"x":1752545162620,"y":32.767},{"x":1752545102436,"y":29.556},{"x":1752545042232,"y":29.998},{"x":1752544982060,"y":33.81},{"x":1752544921885,"y":30.335},{"x":1752544861712,"y":27.9},{"x":1752544801667,"y":30.725},{"x":1752544741357,"y":25.894},{"x":1752544681182,"y":26.568},{"x":1752544620993,"y":26.219},{"x":1752544560817,"y":27.026},{"x":1752544500700,"y":33.374},{"x":1752544440505,"y":28.557},{"x":1752544380325,"y":28.115},{"x":1752544322935,"y":28.119},{"x":1752544262764,"y":33.215},{"x":1752544202593,"y":31.005},{"x":1752544142422,"y":34.182},{"x":1752544082234,"y":29.499},{"x":1752544022031,"y":30.243},{"x":1752543961837,"y":25.239},{"x":1752543901686,"y":25.679},{"x":1752543841487,"y":26.861},{"x":1752543781300,"y":30.143},{"x":1752543721128,"y":29.112},{"x":1752543660942,"y":31.158},{"x":1752543600865,"y":32.546},{"x":1752543540616,"y":34.641},{"x":1752543480495,"y":36.311},{"x":1752543420367,"y":30.64},{"x":1752543363011,"y":30.919},{"x":1752543302843,"y":29.804},{"x":1752543242671,"y":26.964},{"x":1752543182504,"y":26.574},{"x":1752543122326,"y":29.156},{"x":1752543062155,"y":31.908},{"x":1752543001976,"y":28.67},{"x":1752542941790,"y":28.503},{"x":1752542881618,"y":28.962},{"x":1752542821435,"y":28.656},{"x":1752542761269,"y":25.27},{"x":1752542701090,"y":25.39},{"x":1752542640907,"y":26.804},{"x":1752542580738,"y":30.375},{"x":1752542520576,"y":26.621},{"x":1752542460436,"y":29.685},{"x":1752542400338,"y":27.88},{"x":1752542342864,"y":31.779},{"x":1752542282632,"y":29.203},{"x":1752542222466,"y":40.229},{"x":1752542162292,"y":39.484},{"x":1752542102113,"y":39.485},{"x":1752542041928,"y":37.144},{"x":1752541981750,"y":35.116},{"x":1752541921585,"y":35.293},{"x":1752541861415,"y":38.042},{"x":1752541801249,"y":36.484},{"x":1752541741072,"y":32.65},{"x":1752541680869,"y":32.618},{"x":1752541620704,"y":31.105},{"x":1752541560572,"y":29.971},{"x":1752541500484,"y":28.006},{"x":1752541440287,"y":34.469},{"x":1752541382921,"y":35.463},{"x":1752541322768,"y":32.553},{"x":1752541262583,"y":26.049},{"x":1752541202413,"y":26.845},{"x":1752541142226,"y":28.468},{"x":1752541082046,"y":32.42},{"x":1752541021872,"y":39.878},{"x":1752540961687,"y":48.864},{"x":1752540901514,"y":48.694},{"x":1752540841323,"y":47.38},{"x":1752540781145,"y":47.049},{"x":1752540720961,"y":33.657},{"x":1752540660795,"y":28.868},{"x":1752540600657,"y":28.373},{"x":1752540540529,"y":29.82},{"x":1752540483007,"y":29.405},{"x":1752540422813,"y":28.862},{"x":1752540362625,"y":31.544},{"x":1752540302445,"y":28.301},{"x":1752540242275,"y":27.263},{"x":1752540182106,"y":27.649},{"x":1752540121928,"y":34.13},{"x":1752540061765,"y":33.455},{"x":1752540001596,"y":28.571},{"x":1752539941429,"y":31.813},{"x":1752539881256,"y":32.727},{"x":1752539821091,"y":28.8},{"x":1752539760886,"y":29.804},{"x":1752539700737,"y":29.314},{"x":1752539640552,"y":28.661},{"x":1752539580417,"y":34.742},{"x":1752539520292,"y":40.52},{"x":1752539462878,"y":41.631},{"x":1752539402689,"y":39.846},{"x":1752539342514,"y":37.003},{"x":1752539282348,"y":31.2},{"x":1752539222172,"y":29.844},{"x":1752539161989,"y":30.307},{"x":1752539101813,"y":31.606},{"x":1752539041647,"y":30.907},{"x":1752538981453,"y":26.306},{"x":1752538921290,"y":26.899},{"x":1752538861112,"y":28.715},{"x":1752538800943,"y":29.224},{"x":1752538740682,"y":29.817},{"x":1752538680535,"y":34.03},{"x":1752538620368,"y":31.272},{"x":1752538560111,"y":28.639},{"x":1752538502854,"y":27.074},{"x":1752538442673,"y":26.275},{"x":1752538382490,"y":38.85},{"x":1752538322311,"y":34.526},{"x":1752538262136,"y":33.292},{"x":1752538201959,"y":31.315},{"x":1752538141783,"y":35.356},{"x":1752538081593,"y":30.165},{"x":1752538021427,"y":34.332},{"x":1752537961257,"y":29.095},{"x":1752537901061,"y":31.603},{"x":1752537840870,"y":26.515},{"x":1752537780704,"y":26.193},{"x":1752537720572,"y":26.55},{"x":1752537660451,"y":26.591},{"x":1752537600327,"y":29.701},{"x":1752537542909,"y":31.529},{"x":1752537482718,"y":29.374},{"x":1752537422549,"y":31.195},{"x":1752537362352,"y":29.931},{"x":1752537302183,"y":29.97},{"x":1752537241982,"y":30.401},{"x":1752537181812,"y":32.184},{"x":1752537121633,"y":29.477},{"x":1752537061475,"y":28.655},{"x":1752537001298,"y":30.694},{"x":1752536941118,"y":35.706},{"x":1752536880922,"y":31.092},{"x":1752536820774,"y":31.348},{"x":1752536760572,"y":26.592},{"x":1752536700471,"y":34.992},{"x":1752536640281,"y":28.133},{"x":1752536582917,"y":27.875},{"x":1752536522751,"y":27.989},{"x":1752536462572,"y":30.411},{"x":1752536402385,"y":29.975},{"x":1752536342218,"y":33.047},{"x":1752536282046,"y":28.337},{"x":1752536221867,"y":27.884},{"x":1752536161693,"y":26.762},{"x":1752536101525,"y":31.882},{"x":1752536041327,"y":28.449},{"x":1752535981157,"y":29.168},{"x":1752535920963,"y":28.382},{"x":1752535860789,"y":28.253},{"x":1752535800824,"y":30.179},{"x":1752535740544,"y":33.409},{"x":1752535680282,"y":37.206},{"x":1752535622974,"y":31.284},{"x":1752535562755,"y":27.167},{"x":1752535502576,"y":28.567},{"x":1752535442408,"y":28.44},{"x":1752535382230,"y":26.539},{"x":1752535322056,"y":27.685},{"x":1752535261874,"y":27.378},{"x":1752535201707,"y":27.112},{"x":1752535141476,"y":28.079},{"x":1752535081263,"y":31.077},{"x":1752535021085,"y":35.048},{"x":1752534960907,"y":32.338},{"x":1752534900781,"y":39.612},{"x":1752534840566,"y":30.412},{"x":1752534780497,"y":32.363},{"x":1752534720292,"y":33.239},{"x":1752534662922,"y":33.275},{"x":1752534602752,"y":28.509},{"x":1752534542570,"y":28.948},{"x":1752534482368,"y":28.783},{"x":1752534422202,"y":31.73},{"x":1752534362031,"y":30.509},{"x":1752534301854,"y":27.134},{"x":1752534241683,"y":37.076},{"x":1752534181505,"y":47.927},{"x":1752534121341,"y":61.124},{"x":1752534061164,"y":56.374},{"x":1752534001059,"y":54.541},{"x":1752533940715,"y":38.153},{"x":1752533880581,"y":35.704},{"x":1752533820441,"y":32.136},{"x":1752533760235,"y":30.255},{"x":1752533702919,"y":30.118},{"x":1752533642739,"y":30.596},{"x":1752533582570,"y":30.175},{"x":1752533522401,"y":30.248},{"x":1752533462233,"y":31.167},{"x":1752533402045,"y":29.874},{"x":1752533341857,"y":33.047},{"x":1752533281694,"y":30.86},{"x":1752533221496,"y":30.243},{"x":1752533161294,"y":29.389},{"x":1752533101118,"y":33.812},{"x":1752533040896,"y":31.093},{"x":1752532980725,"y":34.009},{"x":1752532920619,"y":32.523},{"x":1752532860419,"y":33.484},{"x":1752532800378,"y":39.093},{"x":1752532742888,"y":39.578},{"x":1752532682713,"y":42.255},{"x":1752532622535,"y":44.279},{"x":1752532562373,"y":40.604},{"x":1752532502206,"y":39.076},{"x":1752532442039,"y":30.828},{"x":1752532381862,"y":29.089},{"x":1752532321698,"y":36.794},{"x":1752532261540,"y":27.656},{"x":1752532201372,"y":30.814},{"x":1752532141186,"y":31.342},{"x":1752532081010,"y":34.293},{"x":1752532020826,"y":29.113},{"x":1752531960662,"y":28.696},{"x":1752531900647,"y":31.032},{"x":1752531840364,"y":34.407},{"x":1752531783003,"y":31.13},{"x":1752531722834,"y":30.834},{"x":1752531662660,"y":34.227},{"x":1752531602513,"y":29.758},{"x":1752531542268,"y":29.851},{"x":1752531482055,"y":29.386},{"x":1752531421886,"y":30.902},{"x":1752531361710,"y":29.984},{"x":1752531301541,"y":32.639},{"x":1752531241351,"y":28.552},{"x":1752531181209,"y":30.936},{"x":1752531120950,"y":30.591},{"x":1752531060774,"y":34.159},{"x":1752531000637,"y":40.716},{"x":1752530940431,"y":32.379},{"x":1752530880371,"y":32.28},{"x":1752530822897,"y":32.503},{"x":1752530762730,"y":34.029},{"x":1752530702562,"y":30.389},{"x":1752530642384,"y":32.291},{"x":1752530582193,"y":31.294},{"x":1752530521998,"y":30.741},{"x":1752530461824,"y":30.553},{"x":1752530401854,"y":29.902},{"x":1752530341413,"y":34.64},{"x":1752530281247,"y":33.732},{"x":1752530221071,"y":36.786},{"x":1752530160895,"y":36.117},{"x":1752530100740,"y":32.84},{"x":1752530040560,"y":33.336},{"x":1752529980394,"y":35.5},{"x":1752529920265,"y":35.757},{"x":1752529862919,"y":34.697},{"x":1752529802745,"y":32.885},{"x":1752529742573,"y":34.813},{"x":1752529682403,"y":37.334},{"x":1752529622217,"y":39.677},{"x":1752529562015,"y":35.483},{"x":1752529501837,"y":32.927},{"x":1752529441646,"y":32.61},{"x":1752529381467,"y":33.04},{"x":1752529321300,"y":29.632},{"x":1752529261132,"y":29.761},{"x":1752529200930,"y":30.047},{"x":1752529140745,"y":33.111},{"x":1752529080618,"y":37.434},{"x":1752529020467,"y":34.37},{"x":1752528960267,"y":38.869},{"x":1752528902907,"y":34.484},{"x":1752528842733,"y":34.572},{"x":1752528782543,"y":34.119},{"x":1752528722356,"y":32.525},{"x":1752528662187,"y":29.519},{"x":1752528602001,"y":28.705},{"x":1752528541793,"y":33.665},{"x":1752528481615,"y":30.873},{"x":1752528421435,"y":28.453},{"x":1752528361264,"y":29.576},{"x":1752528301084,"y":32.522},{"x":1752528240886,"y":31.285},{"x":1752528180713,"y":31.559},{"x":1752528120557,"y":31.043},{"x":1752528060421,"y":30.973},{"x":1752528000318,"y":31.979},{"x":1752527942855,"y":31.107},{"x":1752527882613,"y":31.371},{"x":1752527822447,"y":29.837},{"x":1752527762240,"y":28.142},{"x":1752527702050,"y":27.667},{"x":1752527641873,"y":31.524},{"x":1752527581690,"y":28.228},{"x":1752527521504,"y":28.472},{"x":1752527461284,"y":29.977},{"x":1752527401121,"y":27.518},{"x":1752527340909,"y":44.494},{"x":1752527280740,"y":40.023},{"x":1752527220585,"y":40.401},{"x":1752527160367,"y":38.429},{"x":1752527103031,"y":38.59},{"x":1752527042840,"y":39.591},{"x":1752526982646,"y":38.818},{"x":1752526922483,"y":38.03},{"x":1752526862309,"y":39.683},{"x":1752526802151,"y":40.465},{"x":1752526741917,"y":35.593},{"x":1752526681734,"y":39.382},{"x":1752526621562,"y":31.332},{"x":1752526561370,"y":29.592},{"x":1752526501198,"y":28.231},{"x":1752526441010,"y":29.787},{"x":1752526380830,"y":28.897},{"x":1752526320674,"y":29.444},{"x":1752526260480,"y":34.667},{"x":1752526200305,"y":30.931},{"x":1752526142928,"y":34.104},{"x":1752526082744,"y":35.945},{"x":1752526022547,"y":41.12},{"x":1752525962375,"y":35.495},{"x":1752525902197,"y":31.123},{"x":1752525842035,"y":30.552},{"x":1752525781840,"y":31.534},{"x":1752525721665,"y":35.141},{"x":1752525661493,"y":38.355},{"x":1752525601328,"y":36.928},{"x":1752525541149,"y":38.571},{"x":1752525480948,"y":38.84},{"x":1752525420765,"y":43.65},{"x":1752525360635,"y":41.956},{"x":1752525300484,"y":38.255},{"x":1752525240278,"y":38.644},{"x":1752525182943,"y":40.17},{"x":1752525122774,"y":35.804},{"x":1752525062595,"y":44.806},{"x":1752525002387,"y":37.474},{"x":1752524942213,"y":39.663},{"x":1752524882029,"y":40.743},{"x":1752524821840,"y":41.956},{"x":1752524761677,"y":49.363},{"x":1752524701500,"y":43.887},{"x":1752524641313,"y":40.808},{"x":1752524581149,"y":42.565},{"x":1752524520909,"y":41.641},{"x":1752524460735,"y":41.877},{"x":1752524400631,"y":42.508},{"x":1752524340390,"y":55.6},{"x":1752524280144,"y":52.763},{"x":1752524222876,"y":39.026},{"x":1752524162687,"y":54.536},{"x":1752524102521,"y":38.9},{"x":1752524042339,"y":39.885},{"x":1752523982170,"y":38.241},{"x":1752523921960,"y":55.679},{"x":1752523861773,"y":71.978},{"x":1752523801600,"y":73.624},{"x":1752523741419,"y":75.775},{"x":1752523681236,"y":56.532},{"x":1752523621045,"y":36.227},{"x":1752523560854,"y":36.948},{"x":1752523500822,"y":39.487},{"x":1752523440534,"y":38.588},{"x":1752523380505,"y":44.274},{"x":1752523323023,"y":45.523},{"x":1752523262854,"y":48.534},{"x":1752523202735,"y":52.634},{"x":1752523142466,"y":56.411},{"x":1752523082285,"y":55.931},{"x":1752523022088,"y":57.233},{"x":1752522961926,"y":52.558},{"x":1752522901740,"y":44.625},{"x":1752522841569,"y":58.457},{"x":1752522781417,"y":39.771},{"x":1752522721228,"y":53.497},{"x":1752522661010,"y":49.137},{"x":1752522600834,"y":66.015},{"x":1752522540618,"y":55.107},{"x":1752522480550,"y":53.672},{"x":1752522420285,"y":46.419},{"x":1752522362922,"y":59.111},{"x":1752522302749,"y":42.66},{"x":1752522242565,"y":40.602},{"x":1752522182406,"y":38.791},{"x":1752522122212,"y":39.87},{"x":1752522062021,"y":40.327},{"x":1752522001840,"y":43.584},{"x":1752521941656,"y":54.739},{"x":1752521881485,"y":39.178},{"x":1752521821304,"y":44.239},{"x":1752521761116,"y":40.485},{"x":1752521700934,"y":42.228},{"x":1752521640764,"y":39.104},{"x":1752521580591,"y":38.396},{"x":1752521520515,"y":50.63},{"x":1752521460290,"y":53.058},{"x":1752521402968,"y":63.37},{"x":1752521342729,"y":65.195},{"x":1752521282560,"y":61.281},{"x":1752521222387,"y":51.337},{"x":1752521162204,"y":43.129},{"x":1752521102034,"y":43.217},{"x":1752521041845,"y":54.446},{"x":1752520981723,"y":51.431},{"x":1752520921496,"y":51.335},{"x":1752520861318,"y":50.97},{"x":1752520801143,"y":53.821},{"x":1752520740943,"y":51.604},{"x":1752520680725,"y":51.348},{"x":1752520620568,"y":34.174},{"x":1752520560391,"y":37.447},{"x":1752520500096,"y":32.698},{"x":1752520442877,"y":33.475},{"x":1752520382684,"y":35.286},{"x":1752520322505,"y":40.934},{"x":1752520262330,"y":43.117},{"x":1752520202134,"y":44.395},{"x":1752520141937,"y":44.339},{"x":1752520081751,"y":40.906},{"x":1752520021570,"y":30.648},{"x":1752519961364,"y":28.878},{"x":1752519901192,"y":32.101},{"x":1752519840966,"y":33.478},{"x":1752519780786,"y":36.366},{"x":1752519720620,"y":39.89},{"x":1752519660598,"y":30.916},{"x":1752519600307,"y":35.088},{"x":1752519542867,"y":48.661},{"x":1752519482699,"y":45.103},{"x":1752519422534,"y":36.829},{"x":1752519362364,"y":31.967},{"x":1752519302200,"y":40.362},{"x":1752519242108,"y":50.357},{"x":1752519181843,"y":53.406},{"x":1752519121670,"y":55.293},{"x":1752519061494,"y":50.436},{"x":1752519001323,"y":42.678},{"x":1752518941153,"y":32.719},{"x":1752518880936,"y":30.358},{"x":1752518820719,"y":28.695},{"x":1752518760534,"y":23.905},{"x":1752518700373,"y":36.558},{"x":1752518642969,"y":33.719},{"x":1752518582792,"y":45.139},{"x":1752518522604,"y":40.167},{"x":1752518462430,"y":55.569},{"x":1752518402265,"y":42.385},{"x":1752518342087,"y":38.678},{"x":1752518281920,"y":36.03},{"x":1752518221717,"y":34.302},{"x":1752518161542,"y":34.543},{"x":1752518101375,"y":40.794},{"x":1752518041190,"y":52.505},{"x":1752517980991,"y":54.819},{"x":1752517920822,"y":40.892},{"x":1752517860656,"y":47.396},{"x":1752517800602,"y":34.413},{"x":1752517740288,"y":33.257},{"x":1752517682984,"y":33.148},{"x":1752517622815,"y":30.329},{"x":1752517562638,"y":28.026},{"x":1752517502469,"y":31.743},{"x":1752517442278,"y":27.979},{"x":1752517382104,"y":32.855},{"x":1752517321912,"y":27.556},{"x":1752517261733,"y":26.72},{"x":1752517201561,"y":37.108},{"x":1752517141330,"y":32.065},{"x":1752517081120,"y":40.097},{"x":1752517020919,"y":49.423},{"x":1752516960729,"y":63.687},{"x":1752516900656,"y":48.203},{"x":1752516840403,"y":42.172},{"x":1752516783023,"y":36.928},{"x":1752516722830,"y":27.722},{"x":1752516662655,"y":33.74},{"x":1752516602477,"y":27.27},{"x":1752516542290,"y":41.928},{"x":1752516482090,"y":41.604},{"x":1752516421895,"y":42.744},{"x":1752516361734,"y":40.599},{"x":1752516301562,"y":43.689},{"x":1752516241393,"y":27.832},{"x":1752516181206,"y":26.897},{"x":1752516121033,"y":28.271},{"x":1752516060838,"y":23.222},{"x":1752516000883,"y":29.506},{"x":1752515940561,"y":41.041},{"x":1752515880455,"y":40.531},{"x":1752515822939,"y":39.903},{"x":1752515762773,"y":37.08},{"x":1752515702608,"y":37.481},{"x":1752515642421,"y":27.906},{"x":1752515582248,"y":28.153},{"x":1752515522061,"y":36.215},{"x":1752515461885,"y":38.871},{"x":1752515401697,"y":33.385},{"x":1752515341521,"y":32.043},{"x":1752515281341,"y":32.581},{"x":1752515221151,"y":30.683},{"x":1752515160936,"y":34.471},{"x":1752515100850,"y":33.857},{"x":1752515040660,"y":28.136},{"x":1752514980386,"y":27.671},{"x":1752514923006,"y":50.825},{"x":1752514862828,"y":56.896},{"x":1752514802657,"y":58.477},{"x":1752514742490,"y":56.63},{"x":1752514682313,"y":59.812},{"x":1752514622146,"y":40.792},{"x":1752514561942,"y":29.732},{"x":1752514501760,"y":31.62},{"x":1752514441576,"y":26.671},{"x":1752514381412,"y":27.424},{"x":1752514321243,"y":24.746},{"x":1752514261058,"y":33.854},{"x":1752514200954,"y":40.746},{"x":1752514140656,"y":44.456},{"x":1752514080587,"y":44.252},{"x":1752514020387,"y":46.934},{"x":1752513963008,"y":29.997},{"x":1752513902850,"y":27.628},{"x":1752513842642,"y":30.532},{"x":1752513782473,"y":26.824},{"x":1752513722308,"y":40.817},{"x":1752513662101,"y":43.521},{"x":1752513601903,"y":45.498},{"x":1752513541702,"y":43.148},{"x":1752513481502,"y":38.716},{"x":1752513421350,"y":32.692},{"x":1752513361168,"y":26.966},{"x":1752513300956,"y":32.582},{"x":1752513240770,"y":30.428},{"x":1752513180616,"y":27.286},{"x":1752513120399,"y":24.255},{"x":1752513060326,"y":24.618},{"x":1752513002910,"y":28.058},{"x":1752512942721,"y":24.942},{"x":1752512882535,"y":31.237},{"x":1752512822357,"y":30.252},{"x":1752512762184,"y":38.971},{"x":1752512701977,"y":37.754},{"x":1752512641798,"y":62.099},{"x":1752512581624,"y":57.769},{"x":1752512521460,"y":57.725},{"x":1752512461281,"y":40.485},{"x":1752512401581,"y":35.949},{"x":1752512340880,"y":29.151},{"x":1752512280705,"y":25.459},{"x":1752512220548,"y":27.045},{"x":1752512160331,"y":37.572},{"x":1752512100174,"y":30.425},{"x":1752512042850,"y":32.604},{"x":1752511982713,"y":32.922},{"x":1752511922525,"y":27.728},{"x":1752511862350,"y":23.754},{"x":1752511802189,"y":25.703},{"x":1752511742015,"y":41.445},{"x":1752511681869,"y":25.199},{"x":1752511621646,"y":33.519},{"x":1752511561416,"y":31.564},{"x":1752511501273,"y":39.189},{"x":1752511441055,"y":22.585},{"x":1752511380856,"y":23.879},{"x":1752511320694,"y":24.699},{"x":1752511260590,"y":26.088},{"x":1752511200399,"y":33.192},{"x":1752511143034,"y":32.023},{"x":1752511082849,"y":47.188},{"x":1752511022677,"y":55.1},{"x":1752510962491,"y":59.431},{"x":1752510902324,"y":38.399},{"x":1752510842118,"y":41.252},{"x":1752510781926,"y":20.466},{"x":1752510721759,"y":20.723},{"x":1752510661553,"y":24.994},{"x":1752510601304,"y":17.494},{"x":1752510541097,"y":47.092},{"x":1752510480902,"y":31.336},{"x":1752510420727,"y":31.468},{"x":1752510360601,"y":32.255},{"x":1752510300488,"y":32.112},{"x":1752510240262,"y":19.614},{"x":1752510182918,"y":16.827},{"x":1752510122681,"y":17.126},{"x":1752510062504,"y":17.137},{"x":1752510002329,"y":17.872},{"x":1752509942108,"y":33.792},{"x":1752509881877,"y":31.006},{"x":1752509821700,"y":31.305},{"x":1752509761516,"y":24.493},{"x":1752509701357,"y":36.524},{"x":1752509641154,"y":31.573},{"x":1752509580937,"y":23.499},{"x":1752509520777,"y":20.397},{"x":1752509460604,"y":22.825},{"x":1752509400485,"y":23.03},{"x":1752509340248,"y":19.11},{"x":1752509282901,"y":24.033},{"x":1752509222719,"y":22.399},{"x":1752509162560,"y":17.388},{"x":1752509102393,"y":20.613},{"x":1752509042222,"y":20.896},{"x":1752508982043,"y":20.356},{"x":1752508921866,"y":38.984},{"x":1752508861689,"y":34.528},{"x":1752508801637,"y":44.898},{"x":1752508741307,"y":41.907},{"x":1752508681127,"y":38.581},{"x":1752508620929,"y":19.733},{"x":1752508560770,"y":24.088},{"x":1752508500619,"y":18.316},{"x":1752508440442,"y":16.541},{"x":1752508380221,"y":29.962},{"x":1752508322879,"y":26.997},{"x":1752508262715,"y":36.216},{"x":1752508202536,"y":43.856},{"x":1752508142373,"y":34.58},{"x":1752508082208,"y":27.028},{"x":1752508022018,"y":28.142},{"x":1752507961816,"y":27.749},{"x":1752507901621,"y":36.265},{"x":1752507841495,"y":29.301},{"x":1752507781292,"y":33.023},{"x":1752507721101,"y":34.364},{"x":1752507660906,"y":26.672},{"x":1752507601040,"y":20.205},{"x":1752507540591,"y":29.304},{"x":1752507480367,"y":32.054},{"x":1752507420045,"y":20.126},{"x":1752507362860,"y":18.54},{"x":1752507302682,"y":18.161},{"x":1752507242511,"y":20.576},{"x":1752507182341,"y":22.643},{"x":1752507122188,"y":26.03},{"x":1752507061986,"y":44.294},{"x":1752507001822,"y":36.377},{"x":1752506941621,"y":33.47},{"x":1752506881432,"y":32.134},{"x":1752506821263,"y":26.693},{"x":1752506761073,"y":23.608},{"x":1752506700900,"y":18.463},{"x":1752506640724,"y":18.488},{"x":1752506580567,"y":44.825},{"x":1752506520429,"y":30.747},{"x":1752506462978,"y":29.351},{"x":1752506402782,"y":39.422},{"x":1752506342606,"y":29.984},{"x":1752506282391,"y":37.222},{"x":1752506222218,"y":25.975},{"x":1752506161984,"y":23.437},{"x":1752506101801,"y":25.989},{"x":1752506041621,"y":20.556},{"x":1752505981441,"y":18.556},{"x":1752505921259,"y":23.582},{"x":1752505861228,"y":22.371},{"x":1752505800804,"y":19.41},{"x":1752505740581,"y":23.25},{"x":1752505680445,"y":35.246},{"x":1752505622951,"y":36.91},{"x":1752505562722,"y":40.27},{"x":1752505502545,"y":49.932},{"x":1752505442372,"y":25.364},{"x":1752505382204,"y":11.229},{"x":1752505322021,"y":16.505},{"x":1752505261846,"y":22.418},{"x":1752505201779,"y":24.671},{"x":1752505141399,"y":24.722},{"x":1752505081234,"y":32.849},{"x":1752505021049,"y":40.842},{"x":1752504960851,"y":25.468},{"x":1752504900745,"y":37.087},{"x":1752504840556,"y":24.274},{"x":1752504780278,"y":22.394},{"x":1752504722883,"y":14.318},{"x":1752504662705,"y":16.689},{"x":1752504602541,"y":12.697},{"x":1752504542369,"y":9.326},{"x":1752504482187,"y":13.729},{"x":1752504421974,"y":29.762},{"x":1752504361772,"y":37.353},{"x":1752504301597,"y":32.721},{"x":1752504241406,"y":26.707},{"x":1752504181234,"y":29.879},{"x":1752504121046,"y":19.806},{"x":1752504060890,"y":20.039},{"x":1752504000740,"y":13.826},{"x":1752503940676,"y":15.588},{"x":1752503880311,"y":25.236},{"x":1752503823022,"y":23.654},{"x":1752503762815,"y":20.206},{"x":1752503702628,"y":24.662},{"x":1752503642446,"y":27.673},{"x":1752503582268,"y":16.711},{"x":1752503522088,"y":22.692},{"x":1752503461883,"y":14.68},{"x":1752503401718,"y":11.957},{"x":1752503341512,"y":28.914},{"x":1752503281339,"y":21.682},{"x":1752503221150,"y":7.584},{"x":1752503160924,"y":16.377},{"x":1752503100778,"y":11.709},{"x":1752503040658,"y":28.927},{"x":1752502980463,"y":43.71},{"x":1752502920294,"y":53.416},{"x":1752502862912,"y":52.935},{"x":1752502802703,"y":46.896},{"x":1752502742490,"y":40.796},{"x":1752502682343,"y":29.67},{"x":1752502622135,"y":38.919},{"x":1752502561939,"y":42.185},{"x":1752502501774,"y":38.989},{"x":1752502441542,"y":36.657},{"x":1752502381375,"y":41.509},{"x":1752502321181,"y":33.846},{"x":1752502260982,"y":37.861},{"x":1752502200825,"y":40.286},{"x":1752502140629,"y":21.297},{"x":1752502080553,"y":20.79},{"x":1752502020275,"y":25.517},{"x":1752501962921,"y":26.594},{"x":1752501902694,"y":30.592},{"x":1752501842520,"y":35.804},{"x":1752501782340,"y":17.253},{"x":1752501722158,"y":26.759},{"x":1752501661986,"y":27.092},{"x":1752501601978,"y":32.674},{"x":1752501541557,"y":14.181},{"x":1752501481370,"y":19.379},{"x":1752501421180,"y":46.114},{"x":1752501360968,"y":38.978},{"x":1752501300806,"y":47.08},{"x":1752501240567,"y":28.081},{"x":1752501180438,"y":34.101},{"x":1752501122977,"y":33.18},{"x":1752501062932,"y":27.317},{"x":1752501002623,"y":24.269},{"x":1752500942481,"y":44.496},{"x":1752500882269,"y":32.041},{"x":1752500822016,"y":37.287},{"x":1752500761820,"y":42.118},{"x":1752500701662,"y":32.064},{"x":1752500641462,"y":28.482},{"x":1752500581255,"y":33.598},{"x":1752500521082,"y":53.407},{"x":1752500460867,"y":31.497},{"x":1752500400774,"y":21.691},{"x":1752500340614,"y":16.211},{"x":1752500280528,"y":10.344},{"x":1752500220162,"y":9.451},{"x":1752500162863,"y":21.797},{"x":1752500102685,"y":14.639},{"x":1752500042507,"y":27.237},{"x":1752499982333,"y":40.657},{"x":1752499922152,"y":31.754},{"x":1752499861969,"y":29.424},{"x":1752499801794,"y":43.958},{"x":1752499741612,"y":31.89},{"x":1752499681421,"y":23.203},{"x":1752499621247,"y":28.812},{"x":1752499561040,"y":17.858},{"x":1752499500863,"y":31.413},{"x":1752499440697,"y":30.95},{"x":1752499380530,"y":37.296},{"x":1752499320375,"y":35.373},{"x":1752499262997,"y":28.846},{"x":1752499202832,"y":20.16},{"x":1752499142630,"y":23.322},{"x":1752499082459,"y":8.24},{"x":1752499022273,"y":22.833},{"x":1752498962085,"y":20.574},{"x":1752498901888,"y":17.011},{"x":1752498841700,"y":14.592},{"x":1752498781526,"y":14.759},{"x":1752498721351,"y":25.387},{"x":1752498661194,"y":24.357},{"x":1752498600943,"y":34.766},{"x":1752498540740,"y":28.701},{"x":1752498480596,"y":50.961},{"x":1752498420337,"y":57.709},{"x":1752498360197,"y":39.585},{"x":1752498302881,"y":36.036},{"x":1752498242712,"y":17.245},{"x":1752498182534,"y":31.419},{"x":1752498122332,"y":21.181},{"x":1752498062139,"y":27.347},{"x":1752498002020,"y":20.88},{"x":1752497941706,"y":21.333},{"x":1752497881534,"y":37.381},{"x":1752497821371,"y":46.943},{"x":1752497761171,"y":31.677},{"x":1752497700967,"y":35.754},{"x":1752497640785,"y":29.825},{"x":1752497580662,"y":17.847},{"x":1752497520492,"y":25.792},{"x":1752497460267,"y":23.66},{"x":1752497402931,"y":25.457},{"x":1752497342738,"y":38.433},{"x":1752497282560,"y":54.023},{"x":1752497222374,"y":55.73},{"x":1752497162195,"y":49.682},{"x":1752497102017,"y":43.997},{"x":1752497041807,"y":27.485},{"x":1752496981612,"y":32.812},{"x":1752496921430,"y":40.068},{"x":1752496861246,"y":41.963},{"x":1752496801087,"y":42.598},{"x":1752496740841,"y":40.854},{"x":1752496680672,"y":52.7},{"x":1752496620535,"y":48.342},{"x":1752496560324,"y":46.775},{"x":1752496502927,"y":38.345},{"x":1752496442755,"y":34.754},{"x":1752496382598,"y":36.892},{"x":1752496322424,"y":47.417},{"x":1752496262263,"y":42.507},{"x":1752496201992,"y":50.506},{"x":1752496141814,"y":42.316},{"x":1752496081630,"y":53.93},{"x":1752496021436,"y":27.643},{"x":1752495961256,"y":49.108},{"x":1752495901069,"y":43.401},{"x":1752495840870,"y":37.725},{"x":1752495780682,"y":38.012},{"x":1752495720599,"y":38.906},{"x":1752495660388,"y":39.059},{"x":1752495602997,"y":43.485},{"x":1752495542819,"y":41.912},{"x":1752495482639,"y":36.444},{"x":1752495422470,"y":30.797},{"x":1752495362305,"y":41.32},{"x":1752495302113,"y":45.957},{"x":1752495241916,"y":38.534},{"x":1752495181744,"y":42.118},{"x":1752495121571,"y":38.196},{"x":1752495061405,"y":32.065},{"x":1752495001247,"y":28.026},{"x":1752494941021,"y":32.248},{"x":1752494880843,"y":33.29},{"x":1752494820684,"y":29.441},{"x":1752494760543,"y":48.94},{"x":1752494700366,"y":51.878},{"x":1752494640100,"y":47.146},{"x":1752494582874,"y":50.895},{"x":1752494522641,"y":39.94},{"x":1752494462466,"y":26.968},{"x":1752494402304,"y":24.858},{"x":1752494342101,"y":38.564},{"x":1752494281926,"y":30.175},{"x":1752494221773,"y":34.583},{"x":1752494161585,"y":41.223},{"x":1752494101405,"y":36.601},{"x":1752494041230,"y":33.353},{"x":1752493981066,"y":31.17},{"x":1752493920876,"y":39.218},{"x":1752493860618,"y":37.987},{"x":1752493800459,"y":25.286},{"x":1752493740288,"y":37.654},{"x":1752493682919,"y":41.341},{"x":1752493622736,"y":34.461},{"x":1752493562587,"y":38.256},{"x":1752493502375,"y":47.947},{"x":1752493442203,"y":53.162},{"x":1752493382022,"y":32.064},{"x":1752493321840,"y":32.062},{"x":1752493261667,"y":44.411},{"x":1752493201487,"y":47.297},{"x":1752493141294,"y":43.147},{"x":1752493081116,"y":44.797},{"x":1752493020920,"y":44.447},{"x":1752492960774,"y":30.815},{"x":1752492900744,"y":24.842},{"x":1752492840398,"y":36.175},{"x":1752492782985,"y":45.909},{"x":1752492722805,"y":43.77},{"x":1752492662637,"y":37.268},{"x":1752492602454,"y":33.34},{"x":1752492542282,"y":46.149},{"x":1752492482106,"y":41.873},{"x":1752492421915,"y":35.7},{"x":1752492361749,"y":40.964},{"x":1752492301555,"y":56.682},{"x":1752492241369,"y":62.525},{"x":1752492181191,"y":57.615},{"x":1752492120999,"y":60.244},{"x":1752492060824,"y":47.963},{"x":1752492000666,"y":46.216},{"x":1752491940514,"y":37.235},{"x":1752491880466,"y":38.661},{"x":1752491823021,"y":62.323},{"x":1752491762827,"y":42.871},{"x":1752491702662,"y":42.433},{"x":1752491642479,"y":48.605},{"x":1752491582308,"y":46.291},{"x":1752491522129,"y":37.84},{"x":1752491461946,"y":22.341},{"x":1752491401767,"y":20.4},{"x":1752491341591,"y":15.31},{"x":1752491281408,"y":27.194},{"x":1752491221259,"y":32.706},{"x":1752491161049,"y":32.86},{"x":1752491100864,"y":49.939},{"x":1752491040695,"y":43.629},{"x":1752490980531,"y":49.827},{"x":1752490920407,"y":44.409},{"x":1752490862944,"y":34.686},{"x":1752490802791,"y":30.533},{"x":1752490742602,"y":29.009},{"x":1752490682431,"y":28.605},{"x":1752490622263,"y":29.192},{"x":1752490562005,"y":33.483},{"x":1752490501822,"y":25.143},{"x":1752490441632,"y":20.893},{"x":1752490381458,"y":31.136},{"x":1752490321324,"y":27.29},{"x":1752490261121,"y":29.777},{"x":1752490200908,"y":37.405},{"x":1752490140719,"y":43.747},{"x":1752490080615,"y":32.179},{"x":1752490020547,"y":33.574},{"x":1752489960156,"y":44.311},{"x":1752489902881,"y":55.395},{"x":1752489842676,"y":44.559},{"x":1752489782468,"y":42.34},{"x":1752489722293,"y":37.749},{"x":1752489662082,"y":44.129},{"x":1752489601869,"y":47.285},{"x":1752489541673,"y":43.974},{"x":1752489481507,"y":42.881},{"x":1752489421320,"y":45.748},{"x":1752489361152,"y":31.153},{"x":1752489300933,"y":54.103},{"x":1752489240751,"y":42.462},{"x":1752489180612,"y":36.761},{"x":1752489120476,"y":25.435},{"x":1752489060324,"y":25.091},{"x":1752489002935,"y":25.859},{"x":1752488942737,"y":25.874},{"x":1752488882553,"y":23.92},{"x":1752488822375,"y":18.9},{"x":1752488762198,"y":27.752},{"x":1752488702021,"y":32.219},{"x":1752488641835,"y":35.227},{"x":1752488581660,"y":44.356},{"x":1752488521455,"y":57.792},{"x":1752488461277,"y":38.251},{"x":1752488401097,"y":30.291},{"x":1752488340880,"y":34.401},{"x":1752488280708,"y":33.692},{"x":1752488220650,"y":34.25},{"x":1752488160354,"y":16.688},{"x":1752488100286,"y":26.579},{"x":1752488042896,"y":26.029},{"x":1752487982721,"y":27.099},{"x":1752487922545,"y":49.895},{"x":1752487862372,"y":38.574},{"x":1752487802201,"y":29.997},{"x":1752487742015,"y":27.584},{"x":1752487681821,"y":39.636},{"x":1752487621637,"y":50.259},{"x":1752487561452,"y":49.233},{"x":1752487501292,"y":39.168},{"x":1752487441093,"y":36.504},{"x":1752487380918,"y":18.473},{"x":1752487320725,"y":20.9},{"x":1752487260628,"y":33.979},{"x":1752487200832,"y":23.658},{"x":1752487142917,"y":27.174},{"x":1752487082726,"y":27.983},{"x":1752487022532,"y":28.055},{"x":1752486962355,"y":30.505},{"x":1752486902143,"y":27.811},{"x":1752486841949,"y":29.46},{"x":1752486781770,"y":33.814},{"x":1752486721580,"y":33.819},{"x":1752486661408,"y":21.62},{"x":1752486601241,"y":14.772},{"x":1752486541056,"y":14.049},{"x":1752486480875,"y":26.79},{"x":1752486420713,"y":25.109},{"x":1752486360541,"y":11.304},{"x":1752486300550,"y":41.291},{"x":1752486243023,"y":32.275},{"x":1752486182820,"y":43.779},{"x":1752486122640,"y":36.011},{"x":1752486062457,"y":33.698},{"x":1752486002276,"y":48.186},{"x":1752485942102,"y":38.218},{"x":1752485881895,"y":17.55},{"x":1752485821717,"y":21.662},{"x":1752485761544,"y":14.108},{"x":1752485701364,"y":31.489},{"x":1752485641190,"y":31.997},{"x":1752485580987,"y":22.766},{"x":1752485520815,"y":28.8},{"x":1752485460646,"y":18.701},{"x":1752485400561,"y":18.271},{"x":1752485340264,"y":18.589},{"x":1752485282927,"y":21.305},{"x":1752485222750,"y":19.3},{"x":1752485162587,"y":12.296},{"x":1752485102419,"y":15.705},{"x":1752485042244,"y":21.694},{"x":1752484982063,"y":25.316},{"x":1752484921868,"y":20.114},{"x":1752484861687,"y":13.176},{"x":1752484801511,"y":27.966},{"x":1752484741334,"y":31.105},{"x":1752484681167,"y":32.758},{"x":1752484620997,"y":34.079},{"x":1752484560816,"y":26.072},{"x":1752484500763,"y":41.871},{"x":1752484440513,"y":34.139},{"x":1752484380440,"y":28.897},{"x":1752484322927,"y":22.749},{"x":1752484262728,"y":28.664},{"x":1752484202561,"y":31.985},{"x":1752484142385,"y":30.691},{"x":1752484082218,"y":34.74},{"x":1752484022031,"y":28.543},{"x":1752483961850,"y":34.701},{"x":1752483901667,"y":43.222},{"x":1752483841493,"y":40.938},{"x":1752483781316,"y":26.885},{"x":1752483721122,"y":37.31},{"x":1752483660928,"y":33.471},{"x":1752483600868,"y":33.993},{"x":1752483540600,"y":53.394},{"x":1752483480317,"y":29.011},{"x":1752483422976,"y":23.068},{"x":1752483362755,"y":24.993},{"x":1752483302584,"y":56.735},{"x":1752483242394,"y":44.25},{"x":1752483182226,"y":68.738},{"x":1752483122050,"y":61.537},{"x":1752483061862,"y":73.17},{"x":1752483001689,"y":56.844},{"x":1752482941509,"y":43.908},{"x":1752482881328,"y":36.017},{"x":1752482821148,"y":61.22},{"x":1752482760927,"y":53.653},{"x":1752482700851,"y":64.064},{"x":1752482640599,"y":45.918},{"x":1752482580479,"y":51.318},{"x":1752482523015,"y":62.94},{"x":1752482462817,"y":67.112},{"x":1752482402639,"y":49.232},{"x":1752482342467,"y":58.463},{"x":1752482282294,"y":60.262},{"x":1752482222121,"y":52.776},{"x":1752482161939,"y":45.383},{"x":1752482101782,"y":43.287},{"x":1752482041582,"y":35.134},{"x":1752481981387,"y":35.729},{"x":1752481921214,"y":42.148},{"x":1752481861039,"y":61.347},{"x":1752481800929,"y":69.526},{"x":1752481740646,"y":54.213},{"x":1752481680551,"y":48.207},{"x":1752481620369,"y":46.361},{"x":1752481563008,"y":39.401},{"x":1752481502847,"y":31.168},{"x":1752481442651,"y":41.256},{"x":1752481382467,"y":57.336},{"x":1752481322286,"y":57.625},{"x":1752481262106,"y":58.53},{"x":1752481201930,"y":43.698},{"x":1752481141754,"y":47.961},{"x":1752481081560,"y":61.007},{"x":1752481021384,"y":44.079},{"x":1752480961191,"y":44.934},{"x":1752480900991,"y":42.41},{"x":1752480840818,"y":34.259},{"x":1752480780631,"y":48.91},{"x":1752480720504,"y":37.112},{"x":1752480660362,"y":40.647},{"x":1752480602957,"y":32.673},{"x":1752480542780,"y":28.797},{"x":1752480482619,"y":54.775},{"x":1752480422448,"y":47.814},{"x":1752480362280,"y":59.54},{"x":1752480302107,"y":59.916},{"x":1752480241909,"y":69.514},{"x":1752480181739,"y":60.074},{"x":1752480121576,"y":29.053},{"x":1752480061412,"y":25.151},{"x":1752480001467,"y":48.783},{"x":1752479940896,"y":46.092},{"x":1752479880715,"y":40.758},{"x":1752479820624,"y":62.183},{"x":1752479760393,"y":49.813},{"x":1752479703023,"y":54.611},{"x":1752479642832,"y":68.178},{"x":1752479582685,"y":51.763},{"x":1752479522418,"y":51.049},{"x":1752479462241,"y":54.583},{"x":1752479402057,"y":39.88},{"x":1752479341869,"y":54.808},{"x":1752479281725,"y":62.697},{"x":1752479221529,"y":43.84},{"x":1752479161340,"y":43.714},{"x":1752479101180,"y":62.294},{"x":1752479041010,"y":57.693},{"x":1752478980816,"y":40.758},{"x":1752478920657,"y":40.527},{"x":1752478860550,"y":33.604},{"x":1752478800359,"y":33.339},{"x":1752478742921,"y":41.512},{"x":1752478682747,"y":33.449},{"x":1752478622585,"y":54.982},{"x":1752478562398,"y":54.135},{"x":1752478502224,"y":64.607},{"x":1752478442030,"y":87.452},{"x":1752478381841,"y":77.36},{"x":1752478321663,"y":65.793},{"x":1752478261481,"y":38.801},{"x":1752478201323,"y":39.619},{"x":1752478141153,"y":50.917},{"x":1752478080941,"y":37.005},{"x":1752478020767,"y":50.071},{"x":1752477960595,"y":65.924},{"x":1752477900402,"y":63.983},{"x":1752477843017,"y":57.155},{"x":1752477782823,"y":49.642},{"x":1752477722652,"y":54.601},{"x":1752477662475,"y":40.601},{"x":1752477602280,"y":38.146},{"x":1752477542103,"y":45.249},{"x":1752477481914,"y":62.368},{"x":1752477421703,"y":65.16},{"x":1752477361509,"y":60.669},{"x":1752477301340,"y":62.598},{"x":1752477241140,"y":54.967},{"x":1752477180953,"y":44.377},{"x":1752477120785,"y":55.539},{"x":1752477060614,"y":43.762},{"x":1752477000488,"y":48.835},{"x":1752476940168,"y":37.14},{"x":1752476882888,"y":44.704},{"x":1752476822716,"y":35.104},{"x":1752476762523,"y":50.366},{"x":1752476702374,"y":40.121},{"x":1752476642182,"y":49.168},{"x":1752476581990,"y":33.833},{"x":1752476521817,"y":45.967},{"x":1752476461648,"y":29.077},{"x":1752476401563,"y":37.094},{"x":1752476341239,"y":41.856},{"x":1752476281101,"y":58.08},{"x":1752476220880,"y":51.413},{"x":1752476160726,"y":48.224},{"x":1752476100657,"y":43.613},{"x":1752476040549,"y":49.558},{"x":1752475982989,"y":61.214},{"x":1752475922804,"y":71.907},{"x":1752475862640,"y":42.03},{"x":1752475802458,"y":55.882},{"x":1752475742284,"y":37.443},{"x":1752475682101,"y":60.262},{"x":1752475621904,"y":80.675},{"x":1752475561725,"y":79.636},{"x":1752475501550,"y":67.471},{"x":1752475441370,"y":76.45},{"x":1752475381199,"y":55.492},{"x":1752475320999,"y":60.778},{"x":1752475260832,"y":62.577},{"x":1752475200703,"y":54.602},{"x":1752475140522,"y":63.641},{"x":1752475080407,"y":55.695},{"x":1752475022914,"y":56.17},{"x":1752474962736,"y":59.51},{"x":1752474902556,"y":60.441},{"x":1752474842386,"y":58.523},{"x":1752474782199,"y":69.75},{"x":1752474722018,"y":54.326},{"x":1752474661828,"y":62.46},{"x":1752474601658,"y":69.587},{"x":1752474541487,"y":71.543},{"x":1752474481291,"y":52.15},{"x":1752474421125,"y":40.156},{"x":1752474360935,"y":40.499},{"x":1752474300816,"y":39.164},{"x":1752474240679,"y":37.622},{"x":1752474180423,"y":42.632},{"x":1752474120259,"y":43.871},{"x":1752474062900,"y":62.611},{"x":1752474002726,"y":48.753},{"x":1752473942507,"y":56.24},{"x":1752473882312,"y":46.789},{"x":1752473822114,"y":72.644},{"x":1752473761934,"y":54.641},{"x":1752473701761,"y":52.926},{"x":1752473641592,"y":55.189},{"x":1752473581415,"y":71.478},{"x":1752473521242,"y":47.642},{"x":1752473461068,"y":60.258},{"x":1752473400885,"y":57.809},{"x":1752473340674,"y":52.776},{"x":1752473280532,"y":37.476},{"x":1752473220436,"y":36.13},{"x":1752473163010,"y":38.107},{"x":1752473102821,"y":31.837},{"x":1752473042639,"y":33.186},{"x":1752472982462,"y":35.865},{"x":1752472922277,"y":39.258},{"x":1752472862102,"y":38.524},{"x":1752472802077,"y":34.205},{"x":1752472741591,"y":41.325},{"x":1752472681410,"y":41.451},{"x":1752472621225,"y":44.267},{"x":1752472561012,"y":51.435},{"x":1752472500878,"y":40.853},{"x":1752472440663,"y":37.635},{"x":1752472380554,"y":37.64},{"x":1752472320318,"y":36.677},{"x":1752472262948,"y":42.417},{"x":1752472202784,"y":42.484},{"x":1752472142614,"y":29.865},{"x":1752472082440,"y":32.688},{"x":1752472022271,"y":34.508},{"x":1752471962099,"y":43.891},{"x":1752471901926,"y":43.898},{"x":1752471841750,"y":46.762},{"x":1752471781590,"y":47.173},{"x":1752471721413,"y":41.985},{"x":1752471661240,"y":38.692},{"x":1752471601061,"y":37.81},{"x":1752471540866,"y":38.815},{"x":1752471480699,"y":34.256},{"x":1752471420569,"y":38.13},{"x":1752471360385,"y":34.268},{"x":1752471300348,"y":35.55},{"x":1752471242886,"y":33.202},{"x":1752471182711,"y":36.191},{"x":1752471122536,"y":33.899},{"x":1752471062358,"y":38.297},{"x":1752471002171,"y":39.637},{"x":1752470941988,"y":35.06},{"x":1752470881826,"y":36.198},{"x":1752470821653,"y":35.876},{"x":1752470761484,"y":32.133},{"x":1752470701317,"y":32.563},{"x":1752470641142,"y":38.171},{"x":1752470580944,"y":34.2},{"x":1752470520772,"y":36.594},{"x":1752470460602,"y":36.351},{"x":1752470400616,"y":35.806},{"x":1752470340302,"y":40.817},{"x":1752470282927,"y":38.488},{"x":1752470222717,"y":48.437},{"x":1752470162535,"y":50.105},{"x":1752470102353,"y":47.312},{"x":1752470042185,"y":45.133},{"x":1752469981990,"y":45.024},{"x":1752469921817,"y":35.004},{"x":1752469861648,"y":38.798},{"x":1752469801468,"y":38.107},{"x":1752469741292,"y":39.161},{"x":1752469681111,"y":35.721},{"x":1752469620913,"y":35.277},{"x":1752469560741,"y":35.459},{"x":1752469500641,"y":36.836},{"x":1752469440424,"y":40.787},{"x":1752469380300,"y":36.343},{"x":1752469322916,"y":39.862},{"x":1752469262747,"y":33.605},{"x":1752469202605,"y":36.488},{"x":1752469142377,"y":43.756},{"x":1752469082198,"y":44.886},{"x":1752469022010,"y":46.556},{"x":1752468961831,"y":47.58},{"x":1752468901661,"y":34.336},{"x":1752468841494,"y":30.968},{"x":1752468781317,"y":26.501},{"x":1752468721140,"y":25.544},{"x":1752468660930,"y":24.405},{"x":1752468600826,"y":25.001},{"x":1752468540548,"y":22.4},{"x":1752468480416,"y":22.838},{"x":1752468422990,"y":25.782},{"x":1752468362820,"y":26.024},{"x":1752468302612,"y":36.886},{"x":1752468242439,"y":37.021},{"x":1752468182296,"y":41.984},{"x":1752468122098,"y":39.392},{"x":1752468061892,"y":33.743},{"x":1752468001726,"y":24.279},{"x":1752467941544,"y":23.464},{"x":1752467881370,"y":22.28},{"x":1752467821170,"y":27.525},{"x":1752467760970,"y":28.784},{"x":1752467700783,"y":27.654},{"x":1752467640598,"y":24.598},{"x":1752467580429,"y":26.206},{"x":1752467520466,"y":27.923},{"x":1752467462946,"y":29.254},{"x":1752467402757,"y":34.433},{"x":1752467342575,"y":33.909},{"x":1752467282386,"y":29.591},{"x":1752467222191,"y":27.194},{"x":1752467162023,"y":28.902},{"x":1752467101839,"y":29.55},{"x":1752467041650,"y":38.146},{"x":1752466981481,"y":39.718},{"x":1752466921323,"y":47.362},{"x":1752466861145,"y":45.08},{"x":1752466800975,"y":44.131},{"x":1752466740793,"y":41.857},{"x":1752466680615,"y":36.594},{"x":1752466620495,"y":32.896},{"x":1752466560346,"y":35.632},{"x":1752466502955,"y":31.674},{"x":1752466442762,"y":38.631},{"x":1752466382564,"y":51.719},{"x":1752466322392,"y":47.709},{"x":1752466262224,"y":45.82},{"x":1752466202050,"y":45.714},{"x":1752466141875,"y":45.236},{"x":1752466081691,"y":46.293},{"x":1752466021525,"y":57.773},{"x":1752465961321,"y":47.649},{"x":1752465901143,"y":48.017},{"x":1752465840919,"y":35.085},{"x":1752465780752,"y":33.276},{"x":1752465720594,"y":30.962},{"x":1752465660558,"y":26.232},{"x":1752465600202,"y":27.748},{"x":1752465542862,"y":27.264},{"x":1752465482683,"y":26.807},{"x":1752465422516,"y":28.67},{"x":1752465362312,"y":33.285},{"x":1752465302136,"y":32.089},{"x":1752465241955,"y":42.36},{"x":1752465181823,"y":31.043},{"x":1752465121626,"y":27.144},{"x":1752465061435,"y":29.87},{"x":1752465001279,"y":29.211},{"x":1752464941075,"y":25.546},{"x":1752464880881,"y":28.667},{"x":1752464820698,"y":24.175},{"x":1752464760571,"y":24.041},{"x":1752464700466,"y":25.881},{"x":1752464640238,"y":31.233},{"x":1752464582864,"y":29.203},{"x":1752464522687,"y":29.665},{"x":1752464462527,"y":29.18},{"x":1752464402344,"y":26.676},{"x":1752464342176,"y":29.793},{"x":1752464281966,"y":26.946},{"x":1752464221805,"y":30.308},{"x":1752464161613,"y":28.131},{"x":1752464101446,"y":28.845},{"x":1752464041271,"y":27.255},{"x":1752463981099,"y":30.207},{"x":1752463920902,"y":35.267},{"x":1752463860736,"y":34.033},{"x":1752463800695,"y":32.25},{"x":1752463740396,"y":35.466},{"x":1752463680212,"y":32.158},{"x":1752463622899,"y":31.295},{"x":1752463562715,"y":27.419},{"x":1752463502544,"y":26.884},{"x":1752463442352,"y":26.617},{"x":1752463382196,"y":30.028},{"x":1752463321916,"y":29.015},{"x":1752463261750,"y":24.019},{"x":1752463201586,"y":24.428},{"x":1752463141408,"y":33.066},{"x":1752463081247,"y":30.752},{"x":1752463021017,"y":29.741},{"x":1752462960821,"y":33.199},{"x":1752462900686,"y":27.047},{"x":1752462840522,"y":26.261},{"x":1752462780626,"y":26.535},{"x":1752462720054,"y":26.595},{"x":1752462662838,"y":27.728},{"x":1752462602660,"y":27.24},{"x":1752462542494,"y":32.984},{"x":1752462481734,"y":46.923},{"x":1752462421568,"y":47.732},{"x":1752462361405,"y":47.356},{"x":1752462301273,"y":50.307},{"x":1752462242442,"y":45.852},{"x":1752462182155,"y":41.944},{"x":1752462121925,"y":27.371},{"x":1752462061694,"y":26.142},{"x":1752462002647,"y":25.44},{"x":1752461942455,"y":24.893},{"x":1752461882294,"y":28.587},{"x":1752461822071,"y":26.407},{"x":1752461761887,"y":27.548},{"x":1752461701723,"y":28.367},{"x":1752461641539,"y":30.545},{"x":1752461581368,"y":29.532},{"x":1752461521209,"y":30.104},{"x":1752461461018,"y":29.798},{"x":1752461400852,"y":28.322},{"x":1752461340643,"y":28.545},{"x":1752461280498,"y":29.207},{"x":1752461220334,"y":30.554},{"x":1752461162964,"y":28.511},{"x":1752461102775,"y":24.957},{"x":1752461042608,"y":25.426},{"x":1752460982451,"y":24.725},{"x":1752460922268,"y":28.367},{"x":1752460862091,"y":29.952},{"x":1752460801916,"y":30.233},{"x":1752460741741,"y":28.489},{"x":1752460681568,"y":27.014},{"x":1752460621389,"y":25.201},{"x":1752460561208,"y":31.425},{"x":1752460501031,"y":26.328},{"x":1752460440860,"y":26.427},{"x":1752460380683,"y":25.785},{"x":1752460320513,"y":30.453},{"x":1752460260378,"y":29.936},{"x":1752460203029,"y":30.942},{"x":1752460142848,"y":38.594},{"x":1752460082679,"y":37.347},{"x":1752460022515,"y":34.996},{"x":1752459962347,"y":34.295},{"x":1752459902179,"y":33.211},{"x":1752459841989,"y":25.58},{"x":1752459781818,"y":29.378},{"x":1752459721630,"y":25.801},{"x":1752459661449,"y":27.442},{"x":1752459601280,"y":27.479},{"x":1752459541088,"y":33.436},{"x":1752459480918,"y":29.946},{"x":1752459420718,"y":30.235},{"x":1752459360567,"y":28.939},{"x":1752459300368,"y":29.223},{"x":1752459243017,"y":29.026},{"x":1752459182824,"y":29.628},{"x":1752459122648,"y":26.032},{"x":1752459062475,"y":27.999},{"x":1752459002303,"y":28.629},{"x":1752458942126,"y":26.069},{"x":1752458881945,"y":30.345},{"x":1752458821765,"y":24.562},{"x":1752458761614,"y":28.671},{"x":1752458701425,"y":28.375},{"x":1752458641242,"y":29.615},{"x":1752458581067,"y":40.013},{"x":1752458520853,"y":41.904},{"x":1752458460678,"y":36.18},{"x":1752458400518,"y":34.573},{"x":1752458343008,"y":29.786},{"x":1752458282810,"y":29.171},{"x":1752458222626,"y":30.492},{"x":1752458162454,"y":35.829},{"x":1752458102258,"y":35.843},{"x":1752458042062,"y":37.073},{"x":1752457981871,"y":36.287},{"x":1752457921700,"y":38.691},{"x":1752457861525,"y":31.774},{"x":1752457801350,"y":28.362},{"x":1752457741183,"y":27.802},{"x":1752457680991,"y":28.127},{"x":1752457620805,"y":29.579},{"x":1752457560637,"y":28.112},{"x":1752457500638,"y":25.374},{"x":1752457440477,"y":26.568},{"x":1752457382956,"y":32.436},{"x":1752457322778,"y":29.45},{"x":1752457262608,"y":33.654},{"x":1752457202419,"y":35.562},{"x":1752457142246,"y":36.113},{"x":1752457082059,"y":30.501},{"x":1752457021883,"y":31.382},{"x":1752456961713,"y":28.584},{"x":1752456901543,"y":27.647},{"x":1752456841343,"y":32.808},{"x":1752456781168,"y":24.174},{"x":1752456720975,"y":24.214},{"x":1752456660814,"y":27.702},{"x":1752456600831,"y":33.049},{"x":1752456540503,"y":38.839},{"x":1752456480265,"y":43.995},{"x":1752456422952,"y":38.846},{"x":1752456362744,"y":39.287},{"x":1752456302594,"y":38.327},{"x":1752456242403,"y":29.602},{"x":1752456182226,"y":32.067},{"x":1752456122052,"y":28.358},{"x":1752456061874,"y":29.91},{"x":1752456001700,"y":24.774},{"x":1752455941508,"y":23.727},{"x":1752455881337,"y":25.892},{"x":1752455821127,"y":33.385},{"x":1752455760931,"y":27.237},{"x":1752455700803,"y":29.669},{"x":1752455640589,"y":29.147},{"x":1752455580439,"y":30.115},{"x":1752455520200,"y":28.1},{"x":1752455462873,"y":26.936},{"x":1752455402697,"y":29.527},{"x":1752455342527,"y":25.96},{"x":1752455282343,"y":26.801},{"x":1752455222169,"y":28.519},{"x":1752455161980,"y":32.839},{"x":1752455101810,"y":30.215},{"x":1752455041604,"y":34.842},{"x":1752454981436,"y":29.792},{"x":1752454921270,"y":29.237},{"x":1752454861093,"y":27.045},{"x":1752454800992,"y":24.609},{"x":1752454740694,"y":27.798},{"x":1752454680550,"y":25.015},{"x":1752454620397,"y":25.668},{"x":1752454560143,"y":25.442},{"x":1752454502888,"y":31.867},{"x":1752454442712,"y":25.544},{"x":1752454382548,"y":25.921},{"x":1752454322376,"y":27.585},{"x":1752454262208,"y":27.97},{"x":1752454202040,"y":28.679},{"x":1752454141846,"y":27.865},{"x":1752454081682,"y":26.91},{"x":1752454021513,"y":35.453},{"x":1752453961342,"y":34.383},{"x":1752453901176,"y":32.645},{"x":1752453840970,"y":36.036},{"x":1752453780793,"y":31.881},{"x":1752453720637,"y":32.134},{"x":1752453660383,"y":26.514},{"x":1752453600346,"y":26.012},{"x":1752453542907,"y":27.837},{"x":1752453482739,"y":28.32},{"x":1752453422566,"y":27.264},{"x":1752453362397,"y":29.099},{"x":1752453302235,"y":27.603},{"x":1752453242039,"y":29.283},{"x":1752453181885,"y":36.2},{"x":1752453121693,"y":29.907},{"x":1752453061526,"y":28.293},{"x":1752453001360,"y":27.947},{"x":1752452941160,"y":25.929},{"x":1752452880984,"y":27.16},{"x":1752452820817,"y":25.333},{"x":1752452760648,"y":25.799},{"x":1752452700562,"y":29.117},{"x":1752452640337,"y":34.49},{"x":1752452582999,"y":31.898},{"x":1752452522785,"y":34.252},{"x":1752452462626,"y":26.847},{"x":1752452402469,"y":27.541},{"x":1752452342273,"y":26.846},{"x":1752452282040,"y":25.31},{"x":1752452221835,"y":25.626},{"x":1752452161625,"y":24.578},{"x":1752452101453,"y":27.222},{"x":1752452041262,"y":28.61},{"x":1752451981084,"y":26.756},{"x":1752451920910,"y":27.616},{"x":1752451860751,"y":35.089},{"x":1752451800628,"y":32.477},{"x":1752451740428,"y":28.899},{"x":1752451680135,"y":29.171},{"x":1752451622861,"y":28.826},{"x":1752451562688,"y":29.429},{"x":1752451502500,"y":31.048},{"x":1752451442328,"y":28.116},{"x":1752451382148,"y":33.471},{"x":1752451321962,"y":27.668},{"x":1752451261790,"y":30.583},{"x":1752451201755,"y":33.615},{"x":1752451141401,"y":26.271},{"x":1752451081231,"y":28.494},{"x":1752451021048,"y":30.91},{"x":1752450960856,"y":30.892},{"x":1752450900707,"y":28.309},{"x":1752450840523,"y":28.018},{"x":1752450780315,"y":30.743},{"x":1752450722989,"y":31.993},{"x":1752450662823,"y":31.824},{"x":1752450602665,"y":33.742},{"x":1752450542475,"y":29.049},{"x":1752450482307,"y":32.487},{"x":1752450422139,"y":31.296},{"x":1752450361972,"y":32.959},{"x":1752450301844,"y":29.02},{"x":1752450241640,"y":27.733},{"x":1752450181429,"y":29.413},{"x":1752450121261,"y":27.514},{"x":1752450061028,"y":32.014},{"x":1752450000921,"y":27.492},{"x":1752449940681,"y":27.671},{"x":1752449880553,"y":27.364},{"x":1752449820429,"y":28.993},{"x":1752449762972,"y":28.896},{"x":1752449702802,"y":25.641},{"x":1752449642631,"y":26.583},{"x":1752449582455,"y":35.704},{"x":1752449522281,"y":33.002},{"x":1752449462109,"y":52.002},{"x":1752449401936,"y":51.264},{"x":1752449341745,"y":50.381},{"x":1752449281585,"y":47.463},{"x":1752449221401,"y":45.229},{"x":1752449161236,"y":27.186},{"x":1752449101060,"y":27.615},{"x":1752449040857,"y":28.411},{"x":1752448980691,"y":28.168},{"x":1752448920533,"y":27.065},{"x":1752448860424,"y":33.972},{"x":1752448800087,"y":28.946},{"x":1752448742869,"y":29.996},{"x":1752448682609,"y":32.769},{"x":1752448622403,"y":31.848},{"x":1752448562254,"y":32.893},{"x":1752448502063,"y":29.175},{"x":1752448441880,"y":36.766},{"x":1752448381710,"y":36.269},{"x":1752448321527,"y":35.975},{"x":1752448261357,"y":37.147},{"x":1752448201200,"y":37.473},{"x":1752448141004,"y":28.28},{"x":1752448080821,"y":28.745},{"x":1752448020646,"y":29.353},{"x":1752447960518,"y":30.108},{"x":1752447900384,"y":42.328},{"x":1752447840085,"y":40.034},{"x":1752447782867,"y":39.555},{"x":1752447722702,"y":39.207},{"x":1752447662542,"y":39.039},{"x":1752447602393,"y":28.571},{"x":1752447542197,"y":27.618},{"x":1752447482032,"y":26.719},{"x":1752447421848,"y":34.573},{"x":1752447361677,"y":35.902},{"x":1752447301512,"y":33.476},{"x":1752447241331,"y":36.696},{"x":1752447181149,"y":31.179},{"x":1752447120955,"y":30.597},{"x":1752447060785,"y":28.172},{"x":1752447000645,"y":28.323},{"x":1752446940468,"y":28.773},{"x":1752446880177,"y":25.49},{"x":1752446822881,"y":26.26},{"x":1752446762697,"y":27.122},{"x":1752446702513,"y":30.024},{"x":1752446642328,"y":28.022},{"x":1752446582175,"y":40.193},{"x":1752446521980,"y":48.269},{"x":1752446461819,"y":49.953},{"x":1752446401656,"y":47.206},{"x":1752446341530,"y":46.231},{"x":1752446281324,"y":38.222},{"x":1752446221153,"y":28.93},{"x":1752446160947,"y":28.292},{"x":1752446100781,"y":32.13},{"x":1752446040598,"y":45.457},{"x":1752445980462,"y":45.16},{"x":1752445920347,"y":40.501},{"x":1752445862988,"y":41.183},{"x":1752445802846,"y":37.214},{"x":1752445742633,"y":27.016},{"x":1752445682472,"y":30.325},{"x":1752445622304,"y":27.74},{"x":1752445562122,"y":36.322},{"x":1752445501945,"y":40.833},{"x":1752445441772,"y":37.209},{"x":1752445381600,"y":37.634},{"x":1752445321415,"y":35.048},{"x":1752445261246,"y":30.039},{"x":1752445201041,"y":33.773},{"x":1752445140842,"y":30.623},{"x":1752445080667,"y":29.337},{"x":1752445020509,"y":33.26},{"x":1752444960351,"y":29.701},{"x":1752444902920,"y":29.647},{"x":1752444842717,"y":27.123},{"x":1752444782546,"y":27.024},{"x":1752444722375,"y":50.165},{"x":1752444662228,"y":46.539},{"x":1752444602042,"y":48.696},{"x":1752444541835,"y":45.888},{"x":1752444481690,"y":43.388},{"x":1752444421493,"y":33.385},{"x":1752444361337,"y":29.601},{"x":1752444301174,"y":32.347},{"x":1752444240990,"y":43.137},{"x":1752444180829,"y":45.935},{"x":1752444120671,"y":49.18},{"x":1752444060552,"y":49.741},{"x":1752444000536,"y":47.805},{"x":1752443942968,"y":51.112},{"x":1752443882780,"y":49.351},{"x":1752443822593,"y":44.445},{"x":1752443762407,"y":44.881},{"x":1752443702232,"y":45.383},{"x":1752443642052,"y":42.973},{"x":1752443581874,"y":33.935},{"x":1752443521705,"y":29.512},{"x":1752443461535,"y":33.086},{"x":1752443401366,"y":30.593},{"x":1752443341166,"y":28.275},{"x":1752443280984,"y":35.962},{"x":1752443220815,"y":45.467},{"x":1752443160644,"y":46.724},{"x":1752443100556,"y":41.941},{"x":1752443040277,"y":42.019},{"x":1752442982923,"y":32.487},{"x":1752442922751,"y":32.091},{"x":1752442862587,"y":35.968},{"x":1752442802414,"y":32.129},{"x":1752442742247,"y":28.239},{"x":1752442682057,"y":29.806},{"x":1752442621878,"y":28.397},{"x":1752442561707,"y":29.988},{"x":1752442501541,"y":27.854},{"x":1752442441360,"y":28.027},{"x":1752442381191,"y":30.059},{"x":1752442321028,"y":29.435},{"x":1752442260842,"y":31.754},{"x":1752442200751,"y":30.491},{"x":1752442140432,"y":36.439},{"x":1752442080286,"y":37.009},{"x":1752442022938,"y":37.312},{"x":1752441962766,"y":36.361},{"x":1752441902593,"y":38.685},{"x":1752441842423,"y":33.53},{"x":1752441782239,"y":30.362},{"x":1752441722080,"y":36.711},{"x":1752441661887,"y":36.362},{"x":1752441601684,"y":41.648},{"x":1752441541511,"y":35.213},{"x":1752441481346,"y":37.018},{"x":1752441421151,"y":44.647},{"x":1752441360994,"y":41.375},{"x":1752441300855,"y":35.983},{"x":1752441240608,"y":28.211},{"x":1752441180443,"y":26.571},{"x":1752441120340,"y":30.823},{"x":1752441062959,"y":28.78},{"x":1752441002795,"y":31.641},{"x":1752440942656,"y":31.93},{"x":1752440882444,"y":35.168},{"x":1752440822264,"y":35.653},{"x":1752440762097,"y":36.904},{"x":1752440701919,"y":34.65},{"x":1752440641719,"y":32.099},{"x":1752440581550,"y":46.136},{"x":1752440521376,"y":35.109},{"x":1752440461215,"y":35.973},{"x":1752440401183,"y":44.72},{"x":1752440340830,"y":40.796},{"x":1752440280673,"y":38.741},{"x":1752440220549,"y":38.669},{"x":1752440160413,"y":39.013},{"x":1752440102999,"y":38.83},{"x":1752440042839,"y":37.991},{"x":1752439982651,"y":35.362},{"x":1752439922477,"y":35.082},{"x":1752439862306,"y":35.17},{"x":1752439802131,"y":38.813},{"x":1752439741944,"y":38.958},{"x":1752439681755,"y":38.362},{"x":1752439621596,"y":43.951},{"x":1752439561426,"y":39.714},{"x":1752439501304,"y":39.687},{"x":1752439441086,"y":36.143},{"x":1752439380892,"y":39.614},{"x":1752439320724,"y":42.697},{"x":1752439260564,"y":40.662},{"x":1752439200452,"y":40.534},{"x":1752439140194,"y":42.642},{"x":1752439082902,"y":41.867},{"x":1752439022736,"y":42.644},{"x":1752438962573,"y":39.467},{"x":1752438902400,"y":38.671},{"x":1752438842231,"y":43.126},{"x":1752438782058,"y":38.491},{"x":1752438721888,"y":48.8},{"x":1752438661731,"y":35.396},{"x":1752438601580,"y":43.658},{"x":1752438541378,"y":44.323},{"x":1752438481207,"y":43.04},{"x":1752438421018,"y":45.032},{"x":1752438360827,"y":52.351},{"x":1752438300727,"y":50.055},{"x":1752438240570,"y":47.39},{"x":1752438180399,"y":47.848},{"x":1752438122964,"y":48.875},{"x":1752438062797,"y":37.261},{"x":1752438002620,"y":59.839},{"x":1752437942449,"y":62.257},{"x":1752437882262,"y":60.636},{"x":1752437822057,"y":60.804},{"x":1752437761861,"y":65.666},{"x":1752437701697,"y":45.055},{"x":1752437641512,"y":42.339},{"x":1752437581334,"y":40.082},{"x":1752437521161,"y":50.582},{"x":1752437460960,"y":41.588},{"x":1752437400812,"y":38.234},{"x":1752437340623,"y":47.542},{"x":1752437280496,"y":47.382},{"x":1752437220305,"y":46.88},{"x":1752437162954,"y":64.523},{"x":1752437102772,"y":47.82},{"x":1752437042620,"y":49.322},{"x":1752436982432,"y":52.256},{"x":1752436922264,"y":52.348},{"x":1752436862091,"y":51.574},{"x":1752436801962,"y":51.344},{"x":1752436741695,"y":48.474},{"x":1752436681521,"y":48.844},{"x":1752436621349,"y":46.26},{"x":1752436561170,"y":40.654},{"x":1752436500974,"y":43.584},{"x":1752436440787,"y":49.793},{"x":1752436380627,"y":51.17},{"x":1752436320517,"y":49.412},{"x":1752436260435,"y":46.671},{"x":1752436202981,"y":52.509},{"x":1752436142810,"y":52.499},{"x":1752436082638,"y":50.814},{"x":1752436022434,"y":52.741},{"x":1752435962260,"y":47.056},{"x":1752435902062,"y":53.616},{"x":1752435841889,"y":40.454},{"x":1752435781709,"y":41.019},{"x":1752435721428,"y":41.403},{"x":1752435661241,"y":41.182},{"x":1752435601058,"y":39.608},{"x":1752435540856,"y":47.822},{"x":1752435480703,"y":47.308},{"x":1752435420560,"y":52.89},{"x":1752435360487,"y":59.631},{"x":1752435302972,"y":59.918},{"x":1752435242792,"y":53.99},{"x":1752435182619,"y":50.754},{"x":1752435122444,"y":51.298},{"x":1752435062281,"y":42.421},{"x":1752435002099,"y":52.694},{"x":1752434941911,"y":41.231},{"x":1752434881726,"y":58.464},{"x":1752434821547,"y":57.91},{"x":1752434761372,"y":45.501},{"x":1752434701212,"y":54.942},{"x":1752434641040,"y":46.731},{"x":1752434580857,"y":42.49},{"x":1752434520676,"y":43.043},{"x":1752434460533,"y":53.297},{"x":1752434400383,"y":52.757},{"x":1752434342984,"y":54.337},{"x":1752434282819,"y":66.096},{"x":1752434222606,"y":68.739},{"x":1752434162438,"y":56.523},{"x":1752434102271,"y":55.408},{"x":1752434042094,"y":66.048},{"x":1752433981915,"y":49.723},{"x":1752433921749,"y":61.302},{"x":1752433861563,"y":53.52},{"x":1752433801400,"y":53.89},{"x":1752433741227,"y":59.912},{"x":1752433681024,"y":52.38},{"x":1752433620849,"y":44.589},{"x":1752433560670,"y":37.799},{"x":1752433500545,"y":37.294},{"x":1752433440310,"y":37.833},{"x":1752433383024,"y":43.25},{"x":1752433322844,"y":36.883},{"x":1752433262650,"y":49.215},{"x":1752433202488,"y":46.854},{"x":1752433142312,"y":46.936},{"x":1752433082111,"y":44.028},{"x":1752433021919,"y":39.473},{"x":1752432961748,"y":56.191},{"x":1752432901563,"y":39.871},{"x":1752432841417,"y":50.161},{"x":1752432781232,"y":44.808},{"x":1752432721047,"y":41.643},{"x":1752432660866,"y":42.982},{"x":1752432600703,"y":31.209},{"x":1752432540518,"y":41.111},{"x":1752432480377,"y":28.289},{"x":1752432420236,"y":35.69},{"x":1752432362911,"y":31.334},{"x":1752432302737,"y":37.89},{"x":1752432242568,"y":44.746},{"x":1752432182396,"y":33.401},{"x":1752432122226,"y":44.407},{"x":1752432062035,"y":56.435},{"x":1752432001867,"y":46.516},{"x":1752431941702,"y":42.385},{"x":1752431881520,"y":41.311},{"x":1752431821358,"y":35.341},{"x":1752431761175,"y":37.166},{"x":1752431700983,"y":44.594},{"x":1752431640799,"y":31.564},{"x":1752431580641,"y":41.952},{"x":1752431520532,"y":46.136},{"x":1752431460388,"y":37.349},{"x":1752431402961,"y":73.588},{"x":1752431342791,"y":49.586},{"x":1752431282611,"y":41.047},{"x":1752431222444,"y":44.316},{"x":1752431162270,"y":38.469},{"x":1752431102089,"y":28.269},{"x":1752431041932,"y":30.735},{"x":1752430981741,"y":28.709},{"x":1752430921568,"y":34.293},{"x":1752430861396,"y":30.965},{"x":1752430801164,"y":31.056},{"x":1752430740978,"y":33.303},{"x":1752430680842,"y":55.956},{"x":1752430620654,"y":57.6},{"x":1752430560483,"y":49.615},{"x":1752430500331,"y":48.462},{"x":1752430442950,"y":47.96},{"x":1752430382785,"y":30.686},{"x":1752430322628,"y":28.863},{"x":1752430262454,"y":33.261},{"x":1752430202269,"y":30.534},{"x":1752430142103,"y":42.14},{"x":1752430081890,"y":30.099},{"x":1752430021716,"y":40.776},{"x":1752429961545,"y":49.352},{"x":1752429901383,"y":54.284},{"x":1752429841221,"y":56.273},{"x":1752429781029,"y":52.172},{"x":1752429720865,"y":39.513},{"x":1752429660698,"y":19.717},{"x":1752429600664,"y":28.085},{"x":1752429540268,"y":39.666},{"x":1752429483019,"y":54.843},{"x":1752429422843,"y":40.089},{"x":1752429362686,"y":65.38},{"x":1752429302507,"y":52.878},{"x":1752429242338,"y":58.086},{"x":1752429182198,"y":61.226},{"x":1752429122029,"y":46.681},{"x":1752429061817,"y":31.825},{"x":1752429001648,"y":25.466},{"x":1752428941482,"y":26.768},{"x":1752428881291,"y":32.877},{"x":1752428821120,"y":33.454},{"x":1752428760937,"y":45.88},{"x":1752428700825,"y":30.074},{"x":1752428640562,"y":33.148},{"x":1752428580397,"y":21.669},{"x":1752428522947,"y":28.718},{"x":1752428462775,"y":32.93},{"x":1752428402600,"y":34.804},{"x":1752428342434,"y":42.672},{"x":1752428282276,"y":40.295},{"x":1752428222107,"y":44.046},{"x":1752428161933,"y":39.84},{"x":1752428101779,"y":41.231},{"x":1752428041589,"y":32.405},{"x":1752427981420,"y":31.97},{"x":1752427921254,"y":30.858},{"x":1752427861039,"y":27.246},{"x":1752427800957,"y":27.585},{"x":1752427740694,"y":36.173},{"x":1752427680587,"y":39.378},{"x":1752427620382,"y":40.835},{"x":1752427560255,"y":37.405},{"x":1752427502898,"y":37.81},{"x":1752427442729,"y":48.8},{"x":1752427382562,"y":35.276},{"x":1752427322385,"y":56.796},{"x":1752427262250,"y":42.853},{"x":1752427202047,"y":42.826},{"x":1752427141856,"y":47.953},{"x":1752427081674,"y":24.941},{"x":1752427021486,"y":24.218},{"x":1752426961314,"y":32.981},{"x":1752426901143,"y":36.114},{"x":1752426840921,"y":41.868},{"x":1752426780757,"y":37.801},{"x":1752426720620,"y":41.247},{"x":1752426660482,"y":42.424},{"x":1752426600406,"y":42.697},{"x":1752426542997,"y":44.414},{"x":1752426482781,"y":29.739},{"x":1752426422610,"y":33.201},{"x":1752426362439,"y":29.886},{"x":1752426302243,"y":41.894},{"x":1752426242065,"y":29.988},{"x":1752426181860,"y":27.26},{"x":1752426121701,"y":38.424},{"x":1752426061532,"y":31.185},{"x":1752426001370,"y":37.764},{"x":1752425941177,"y":50.204},{"x":1752425880993,"y":51.739},{"x":1752425820805,"y":50.115},{"x":1752425760661,"y":37.591},{"x":1752425700528,"y":31.219},{"x":1752425640306,"y":29.665},{"x":1752425582960,"y":28.47},{"x":1752425522785,"y":43.524},{"x":1752425462615,"y":43.657},{"x":1752425402436,"y":38.077},{"x":1752425342281,"y":37.719},{"x":1752425282095,"y":50.299},{"x":1752425221910,"y":53.78},{"x":1752425161749,"y":50.457},{"x":1752425101584,"y":52.357},{"x":1752425041423,"y":46.19},{"x":1752424981248,"y":34.468},{"x":1752424921067,"y":25.128},{"x":1752424860881,"y":23.923},{"x":1752424800775,"y":28.02},{"x":1752424740515,"y":32.42},{"x":1752424680397,"y":30.169},{"x":1752424620198,"y":43.644},{"x":1752424562860,"y":51.59},{"x":1752424502688,"y":55.266},{"x":1752424442510,"y":49.611},{"x":1752424382355,"y":39.233},{"x":1752424322121,"y":34.82},{"x":1752424261939,"y":11.268},{"x":1752424201776,"y":30.08},{"x":1752424141600,"y":19.349},{"x":1752424081413,"y":44.035},{"x":1752424021235,"y":42.333},{"x":1752423961036,"y":49.92},{"x":1752423900860,"y":54.035},{"x":1752423840700,"y":51.881},{"x":1752423780525,"y":43.125},{"x":1752423720470,"y":39.78},{"x":1752423660162,"y":39.404},{"x":1752423602887,"y":32.181},{"x":1752423542704,"y":27.007},{"x":1752423482504,"y":23.271},{"x":1752423422314,"y":23.314},{"x":1752423362123,"y":25.611},{"x":1752423301952,"y":28.39},{"x":1752423241770,"y":31.897},{"x":1752423181586,"y":32.434},{"x":1752423121404,"y":36.43},{"x":1752423061233,"y":17.332},{"x":1752423001047,"y":20.332},{"x":1752422940861,"y":41.914},{"x":1752422880741,"y":19.868},{"x":1752422820492,"y":27.273},{"x":1752422760271,"y":32.151},{"x":1752422702910,"y":49.59},{"x":1752422642738,"y":50.754},{"x":1752422582566,"y":48.913},{"x":1752422522396,"y":46.071},{"x":1752422462217,"y":46.855},{"x":1752422402065,"y":33.626},{"x":1752422341829,"y":34.165},{"x":1752422281659,"y":32.966},{"x":1752422221485,"y":34.099},{"x":1752422161316,"y":37.227},{"x":1752422101143,"y":41.468},{"x":1752422040936,"y":36.192},{"x":1752421980760,"y":40.589},{"x":1752421920622,"y":33.072},{"x":1752421860535,"y":22.629},{"x":1752421802974,"y":25.877},{"x":1752421742801,"y":22.16},{"x":1752421682629,"y":30.779},{"x":1752421622447,"y":31.745},{"x":1752421562275,"y":35.228},{"x":1752421502090,"y":44.542},{"x":1752421441888,"y":41.102},{"x":1752421381707,"y":29.06},{"x":1752421321447,"y":24.314},{"x":1752421261263,"y":19.739},{"x":1752421201087,"y":25.018},{"x":1752421140892,"y":14.734},{"x":1752421080719,"y":24.892},{"x":1752421020584,"y":16.769},{"x":1752420960471,"y":21.623},{"x":1752420900292,"y":27.282},{"x":1752420842895,"y":22.393},{"x":1752420782721,"y":8.524},{"x":1752420722549,"y":19.669},{"x":1752420662373,"y":14.401},{"x":1752420602192,"y":25.386},{"x":1752420542009,"y":26.03},{"x":1752420481833,"y":22.505},{"x":1752420421656,"y":33.064},{"x":1752420361491,"y":40.904},{"x":1752420301312,"y":39.936},{"x":1752420241137,"y":27.975},{"x":1752420180929,"y":16.067},{"x":1752420120761,"y":19.113},{"x":1752420060589,"y":14.429},{"x":1752420000513,"y":17.472},{"x":1752419942933,"y":18.658},{"x":1752419882785,"y":19.609},{"x":1752419822538,"y":20.13},{"x":1752419762360,"y":21.126},{"x":1752419702202,"y":28.312},{"x":1752419642020,"y":15.252},{"x":1752419581831,"y":27.774},{"x":1752419521644,"y":22.13},{"x":1752419461476,"y":26.081},{"x":1752419401299,"y":20.628},{"x":1752419341143,"y":36.77},{"x":1752419280906,"y":51.579},{"x":1752419220730,"y":49.759},{"x":1752419160564,"y":45.264},{"x":1752419100530,"y":42.779},{"x":1752419040217,"y":41.014},{"x":1752418982928,"y":28.225},{"x":1752418922749,"y":34.861},{"x":1752418862577,"y":15.981},{"x":1752418802431,"y":25.913},{"x":1752418742187,"y":29.008},{"x":1752418681978,"y":38.714},{"x":1752418621805,"y":31.613},{"x":1752418561630,"y":42.432},{"x":1752418501454,"y":48.561},{"x":1752418441275,"y":48.17},{"x":1752418381102,"y":35.912},{"x":1752418320870,"y":29.483},{"x":1752418260706,"y":24.102},{"x":1752418200601,"y":32.702},{"x":1752418140398,"y":29.269},{"x":1752418080218,"y":29.111},{"x":1752418022961,"y":30.342},{"x":1752417962727,"y":20.468},{"x":1752417902553,"y":27.188},{"x":1752417842405,"y":33.332},{"x":1752417782223,"y":11.23},{"x":1752417722048,"y":22.941},{"x":1752417661874,"y":16.616},{"x":1752417601704,"y":20.324},{"x":1752417541528,"y":22.679},{"x":1752417481350,"y":32.218},{"x":1752417421170,"y":40.552},{"x":1752417361010,"y":15.203},{"x":1752417300838,"y":16.479},{"x":1752417240666,"y":40.036},{"x":1752417180500,"y":39.549},{"x":1752417120297,"y":55.67},{"x":1752417063013,"y":42.565},{"x":1752417002851,"y":42.581},{"x":1752416942676,"y":33.424},{"x":1752416882480,"y":31.834},{"x":1752416822311,"y":32.979},{"x":1752416762141,"y":24.643},{"x":1752416701956,"y":34.632},{"x":1752416641764,"y":29.453},{"x":1752416581597,"y":40.264},{"x":1752416521424,"y":49.361},{"x":1752416461259,"y":53.033},{"x":1752416401086,"y":34.535},{"x":1752416340883,"y":44.635},{"x":1752416280702,"y":32.827},{"x":1752416220596,"y":24.805},{"x":1752416160456,"y":38.105},{"x":1752416100243,"y":36.409},{"x":1752416042862,"y":37.618},{"x":1752415982696,"y":18.639},{"x":1752415922513,"y":16.596},{"x":1752415862322,"y":13.626},{"x":1752415802125,"y":18.698},{"x":1752415741928,"y":29.798},{"x":1752415681752,"y":37.751},{"x":1752415621586,"y":36.255},{"x":1752415561381,"y":31.953},{"x":1752415501221,"y":36.589},{"x":1752415441046,"y":36.91},{"x":1752415380870,"y":60.028},{"x":1752415320689,"y":45.384},{"x":1752415260596,"y":42.228},{"x":1752415200360,"y":38.893},{"x":1752415140106,"y":26.973},{"x":1752415082857,"y":19.632},{"x":1752415022675,"y":25.856},{"x":1752414962497,"y":22.958},{"x":1752414902327,"y":22.733},{"x":1752414842130,"y":23.035},{"x":1752414781957,"y":15.351},{"x":1752414721802,"y":22.731},{"x":1752414661625,"y":36.17},{"x":1752414601430,"y":26.824},{"x":1752414541254,"y":39.157},{"x":1752414481049,"y":56.839},{"x":1752414420871,"y":44.269},{"x":1752414360652,"y":38.209},{"x":1752414300587,"y":37.11},{"x":1752414240412,"y":37.123},{"x":1752414183016,"y":35.083},{"x":1752414122818,"y":41.095},{"x":1752414062644,"y":40.019},{"x":1752414002462,"y":46.298},{"x":1752413942276,"y":41.397},{"x":1752413882096,"y":39.871},{"x":1752413821912,"y":40.474},{"x":1752413761745,"y":56.692},{"x":1752413701583,"y":33.504},{"x":1752413641407,"y":24.298},{"x":1752413581224,"y":22.518},{"x":1752413521028,"y":18.265},{"x":1752413460845,"y":18.678},{"x":1752413400736,"y":26.774},{"x":1752413340485,"y":43.489},{"x":1752413280355,"y":36.847},{"x":1752413223021,"y":50.933},{"x":1752413162836,"y":50.607},{"x":1752413102655,"y":35.449},{"x":1752413042464,"y":17.017},{"x":1752412982283,"y":15.763},{"x":1752412922109,"y":34.479},{"x":1752412861916,"y":18.066},{"x":1752412801750,"y":26.525},{"x":1752412741548,"y":32.05},{"x":1752412681365,"y":50.954},{"x":1752412621173,"y":31.538},{"x":1752412560997,"y":38.86},{"x":1752412500825,"y":32.885},{"x":1752412440650,"y":20.121},{"x":1752412380534,"y":11.452},{"x":1752412320400,"y":6.81},{"x":1752412260043,"y":16.747},{"x":1752412202837,"y":25.928},{"x":1752412142664,"y":30.243},{"x":1752412082503,"y":38.758},{"x":1752412022312,"y":29.362},{"x":1752411962139,"y":25.08},{"x":1752411901956,"y":38.722},{"x":1752411841778,"y":36.147},{"x":1752411781591,"y":7.027},{"x":1752411721424,"y":15.269},{"x":1752411661239,"y":11.039},{"x":1752411601247,"y":20.393},{"x":1752411540818,"y":17.862},{"x":1752411480667,"y":16.137},{"x":1752411420512,"y":21.727},{"x":1752411360337,"y":42.613},{"x":1752411303013,"y":31.645},{"x":1752411242841,"y":21.694},{"x":1752411182661,"y":23.182},{"x":1752411122474,"y":35.946},{"x":1752411062287,"y":10.287},{"x":1752411002111,"y":6.291},{"x":1752410941924,"y":36.636},{"x":1752410881739,"y":58.678},{"x":1752410821576,"y":38.848},{"x":1752410761398,"y":37.97},{"x":1752410701221,"y":34.448},{"x":1752410641016,"y":33.066},{"x":1752410580844,"y":33.648},{"x":1752410520675,"y":19.23},{"x":1752410460502,"y":22.039},{"x":1752410400394,"y":31.863},{"x":1752410343021,"y":36.25},{"x":1752410282842,"y":31.682},{"x":1752410222675,"y":27.051},{"x":1752410162499,"y":43.859},{"x":1752410102336,"y":38.669},{"x":1752410042164,"y":35.233},{"x":1752409981976,"y":40.501},{"x":1752409921793,"y":38.871},{"x":1752409861627,"y":29.102},{"x":1752409801496,"y":20.261},{"x":1752409741305,"y":33.621},{"x":1752409681121,"y":36.789},{"x":1752409620928,"y":31.981},{"x":1752409560770,"y":41.367},{"x":1752409500653,"y":27.74},{"x":1752409440454,"y":34.229},{"x":1752409380257,"y":27.309},{"x":1752409322937,"y":19.3},{"x":1752409262773,"y":22.562},{"x":1752409202623,"y":26.28},{"x":1752409142408,"y":33.274},{"x":1752409082214,"y":48.498},{"x":1752409022015,"y":37.849},{"x":1752408961798,"y":38.234},{"x":1752408901619,"y":36.632},{"x":1752408841438,"y":31.977},{"x":1752408781271,"y":51.606},{"x":1752408721069,"y":42.09},{"x":1752408660873,"y":36.316},{"x":1752408600723,"y":19.991},{"x":1752408540540,"y":32.566},{"x":1752408480433,"y":24.783},{"x":1752408420140,"y":17.876},{"x":1752408362855,"y":26.794},{"x":1752408302681,"y":37.445},{"x":1752408242518,"y":30.886},{"x":1752408182340,"y":52.062},{"x":1752408122178,"y":49.071},{"x":1752408062007,"y":61.617},{"x":1752408001870,"y":33.24},{"x":1752407941662,"y":45.207},{"x":1752407881501,"y":48.051},{"x":1752407821357,"y":52.279},{"x":1752407761171,"y":50.915},{"x":1752407700988,"y":39.925},{"x":1752407640815,"y":29.148},{"x":1752407580628,"y":29.487},{"x":1752407520540,"y":31.018},{"x":1752407460320,"y":27.528},{"x":1752407402994,"y":23.312},{"x":1752407342820,"y":24.818},{"x":1752407282652,"y":47.917},{"x":1752407222491,"y":48.6},{"x":1752407162265,"y":47.694},{"x":1752407102091,"y":47.051},{"x":1752407041925,"y":31.802},{"x":1752406981744,"y":43.184},{"x":1752406921398,"y":21.826},{"x":1752406861230,"y":20.015},{"x":1752406801051,"y":25.756},{"x":1752406740879,"y":29.987},{"x":1752406680685,"y":29.766},{"x":1752406620559,"y":37.492},{"x":1752406560320,"y":20.387},{"x":1752406500066,"y":34.23},{"x":1752406442889,"y":26.987},{"x":1752406382684,"y":20.91},{"x":1752406322523,"y":54.63},{"x":1752406262356,"y":32.581},{"x":1752406202189,"y":43.246},{"x":1752406142015,"y":34.603},{"x":1752406081826,"y":45.041},{"x":1752406021648,"y":40.435},{"x":1752405961494,"y":53.46},{"x":1752405901318,"y":37.878},{"x":1752405841144,"y":32.495},{"x":1752405780937,"y":18.979},{"x":1752405720770,"y":19.361},{"x":1752405660609,"y":25.075},{"x":1752405600555,"y":20.493},{"x":1752405540206,"y":29.671},{"x":1752405482874,"y":30.844},{"x":1752405422651,"y":29.66},{"x":1752405362482,"y":31.631},{"x":1752405302296,"y":26.539},{"x":1752405242123,"y":30.552},{"x":1752405181944,"y":29.117},{"x":1752405121776,"y":15.438},{"x":1752405061590,"y":46.562},{"x":1752405001422,"y":63.385},{"x":1752404941228,"y":54.236},{"x":1752404881055,"y":25.745},{"x":1752404820863,"y":33.009},{"x":1752404760690,"y":23.943},{"x":1752404700596,"y":26.451},{"x":1752404640332,"y":10.68},{"x":1752404580144,"y":7.087},{"x":1752404522850,"y":28.249},{"x":1752404462680,"y":23.367},{"x":1752404402492,"y":24.084},{"x":1752404342322,"y":30.026},{"x":1752404282141,"y":26.626},{"x":1752404221959,"y":15.962},{"x":1752404161785,"y":20.777},{"x":1752404101613,"y":17.239},{"x":1752404041429,"y":17.284},{"x":1752403981263,"y":28.219},{"x":1752403921088,"y":27.605},{"x":1752403860890,"y":39.602},{"x":1752403800752,"y":42.774},{"x":1752403740583,"y":18.749},{"x":1752403680446,"y":22.979},{"x":1752403620247,"y":23.712},{"x":1752403562905,"y":14.858},{"x":1752403502724,"y":29.519},{"x":1752403442553,"y":31.141},{"x":1752403382377,"y":12.243},{"x":1752403322209,"y":13.712},{"x":1752403262000,"y":12.785},{"x":1752403201818,"y":45.037},{"x":1752403141646,"y":19.722},{"x":1752403081472,"y":20.48},{"x":1752403021292,"y":18.401},{"x":1752402961120,"y":40.069},{"x":1752402900934,"y":33.265},{"x":1752402840727,"y":38.131},{"x":1752402780565,"y":45.245},{"x":1752402720456,"y":48.465},{"x":1752402660248,"y":34.667},{"x":1752402602942,"y":29.081},{"x":1752402542726,"y":34.279},{"x":1752402482548,"y":27.638},{"x":1752402422428,"y":27.574},{"x":1752402362205,"y":10.823},{"x":1752402302015,"y":16.597},{"x":1752402241840,"y":27.788},{"x":1752402181654,"y":28.806},{"x":1752402121488,"y":20.773},{"x":1752402061327,"y":23.431},{"x":1752402001146,"y":22.306},{"x":1752401940945,"y":10.242},{"x":1752401880789,"y":22.056},{"x":1752401820609,"y":21.593},{"x":1752401760414,"y":25.361},{"x":1752401700221,"y":51.126},{"x":1752401642918,"y":28.159},{"x":1752401582743,"y":24.792},{"x":1752401522578,"y":31.998},{"x":1752401462375,"y":24.712},{"x":1752401402212,"y":6.301},{"x":1752401342037,"y":17.72},{"x":1752401281868,"y":38.319},{"x":1752401221682,"y":22.155},{"x":1752401161511,"y":14.411},{"x":1752401101324,"y":17.276},{"x":1752401041156,"y":21.801},{"x":1752400980964,"y":19.666},{"x":1752400920797,"y":34.913},{"x":1752400860639,"y":18.257},{"x":1752400800797,"y":38.422},{"x":1752400743026,"y":52.519},{"x":1752400682852,"y":49.141},{"x":1752400622661,"y":55.07},{"x":1752400562491,"y":31.069},{"x":1752400502324,"y":26.124},{"x":1752400442142,"y":25.444},{"x":1752400381957,"y":39.773},{"x":1752400321786,"y":39.605},{"x":1752400261603,"y":37.841},{"x":1752400201427,"y":25.964},{"x":1752400141257,"y":29.338},{"x":1752400081087,"y":35.666},{"x":1752400020934,"y":36.903},{"x":1752399960722,"y":34.237},{"x":1752399900661,"y":33.256},{"x":1752399840445,"y":25.225},{"x":1752399780267,"y":32.346},{"x":1752399722913,"y":23.38},{"x":1752399662742,"y":18.631},{"x":1752399602548,"y":21.034},{"x":1752399542366,"y":13.331},{"x":1752399482188,"y":20.171},{"x":1752399422017,"y":20.139},{"x":1752399361836,"y":29.236},{"x":1752399301668,"y":32.159},{"x":1752399241500,"y":33.395},{"x":1752399181334,"y":41.92},{"x":1752399121164,"y":40.149},{"x":1752399060986,"y":34.041},{"x":1752399000870,"y":42.3},{"x":1752398940599,"y":37.38},{"x":1752398880494,"y":34.286},{"x":1752398820330,"y":34.932},{"x":1752398762967,"y":42.095},{"x":1752398702797,"y":24.594},{"x":1752398642634,"y":47.728},{"x":1752398582445,"y":60.121},{"x":1752398522278,"y":57.971},{"x":1752398462094,"y":49.038},{"x":1752398401902,"y":50.95},{"x":1752398341648,"y":40.733},{"x":1752398281443,"y":35.352},{"x":1752398221222,"y":47.636},{"x":1752398161022,"y":51.192},{"x":1752398100877,"y":40.198},{"x":1752398040647,"y":48.714},{"x":1752397980500,"y":55.65},{"x":1752397920344,"y":62.737},{"x":1752397862997,"y":48.337},{"x":1752397802822,"y":56.767},{"x":1752397742642,"y":49.168},{"x":1752397682446,"y":40.18},{"x":1752397622275,"y":44.335},{"x":1752397562099,"y":46.376},{"x":1752397501927,"y":50.454},{"x":1752397441762,"y":48.778},{"x":1752397381573,"y":56.117},{"x":1752397321411,"y":50.271},{"x":1752397261253,"y":42.258},{"x":1752397201152,"y":43.661},{"x":1752397140825,"y":32.942},{"x":1752397080668,"y":51.451},{"x":1752397020546,"y":40.253},{"x":1752396960395,"y":41.723},{"x":1752396903028,"y":49.459},{"x":1752396842830,"y":37.869},{"x":1752396782648,"y":35.481},{"x":1752396722481,"y":46.02},{"x":1752396662313,"y":53.637},{"x":1752396602141,"y":65.704},{"x":1752396541956,"y":59.665},{"x":1752396481790,"y":61.216},{"x":1752396421615,"y":63.514},{"x":1752396361432,"y":58.018},{"x":1752396301260,"y":50.052},{"x":1752396241073,"y":43.106},{"x":1752396180900,"y":40.209},{"x":1752396120740,"y":39.383},{"x":1752396060584,"y":41.806},{"x":1752396000472,"y":53.962},{"x":1752395940258,"y":43.601},{"x":1752395882920,"y":63.576},{"x":1752395822744,"y":44.952},{"x":1752395762565,"y":49.103},{"x":1752395702394,"y":52.256},{"x":1752395642216,"y":57.157},{"x":1752395582053,"y":51.729},{"x":1752395521864,"y":32.887},{"x":1752395461695,"y":49.404},{"x":1752395401519,"y":48.087},{"x":1752395341347,"y":83.111},{"x":1752395281163,"y":68.012},{"x":1752395220977,"y":66.817},{"x":1752395160809,"y":65.409},{"x":1752395100667,"y":59.661},{"x":1752395040535,"y":38.624},{"x":1752394980302,"y":39.831},{"x":1752394922983,"y":43.979},{"x":1752394862808,"y":39.772},{"x":1752394802674,"y":43.697},{"x":1752394742445,"y":48.694},{"x":1752394682259,"y":55.601},{"x":1752394622049,"y":55.247},{"x":1752394561865,"y":42.235},{"x":1752394501694,"y":56.384},{"x":1752394441520,"y":56.877},{"x":1752394381321,"y":59.995},{"x":1752394321155,"y":71.214},{"x":1752394260983,"y":62.06},{"x":1752394200830,"y":62.048},{"x":1752394140650,"y":67.554},{"x":1752394080590,"y":47.739},{"x":1752394020340,"y":52.677},{"x":1752393963051,"y":50.267},{"x":1752393902830,"y":53.352},{"x":1752393842642,"y":48.294},{"x":1752393782461,"y":43.601},{"x":1752393722280,"y":55.048},{"x":1752393662116,"y":36.828},{"x":1752393601986,"y":44.279},{"x":1752393541705,"y":47.673},{"x":1752393481529,"y":48.156},{"x":1752393421361,"y":56.441},{"x":1752393361165,"y":48.648},{"x":1752393300974,"y":32.998},{"x":1752393240795,"y":36.579},{"x":1752393180642,"y":52.459},{"x":1752393120560,"y":64.972},{"x":1752393060304,"y":68.391},{"x":1752393002977,"y":58.346},{"x":1752392942803,"y":69.522},{"x":1752392882621,"y":45.114},{"x":1752392822462,"y":46.002},{"x":1752392762301,"y":54.581},{"x":1752392702124,"y":50.53},{"x":1752392641934,"y":41.836},{"x":1752392581759,"y":39.917},{"x":1752392521487,"y":66.542},{"x":1752392461315,"y":74.812},{"x":1752392401132,"y":62.765},{"x":1752392340934,"y":63.407},{"x":1752392280754,"y":56.493},{"x":1752392220588,"y":43.275},{"x":1752392160443,"y":39.132},{"x":1752392100249,"y":41.475},{"x":1752392042960,"y":42.787},{"x":1752391982790,"y":31.026},{"x":1752391922626,"y":34.736},{"x":1752391862458,"y":45.933},{"x":1752391802272,"y":45.456},{"x":1752391742086,"y":54.56},{"x":1752391681904,"y":48.999},{"x":1752391621732,"y":50.113},{"x":1752391561562,"y":38.501},{"x":1752391501389,"y":42.525},{"x":1752391441213,"y":39.327},{"x":1752391381025,"y":52.174},{"x":1752391320853,"y":40.548},{"x":1752391260681,"y":61.915},{"x":1752391200618,"y":58.69},{"x":1752391140351,"y":55.677},{"x":1752391080026,"y":56.454},{"x":1752391022832,"y":53.595},{"x":1752390962645,"y":44.054},{"x":1752390902474,"y":36.864},{"x":1752390842319,"y":38.885},{"x":1752390782127,"y":43.852},{"x":1752390721927,"y":38.515},{"x":1752390661767,"y":39.688},{"x":1752390601601,"y":51.377},{"x":1752390541429,"y":46.669},{"x":1752390481252,"y":41.289},{"x":1752390421069,"y":43.678},{"x":1752390360868,"y":45.094},{"x":1752390300717,"y":42.289},{"x":1752390240586,"y":47.958},{"x":1752390180472,"y":46.81},{"x":1752390120115,"y":37.429},{"x":1752390062891,"y":35.265},{"x":1752390002685,"y":40.475},{"x":1752389942507,"y":39.73},{"x":1752389882342,"y":42.613},{"x":1752389822172,"y":37.3},{"x":1752389761977,"y":37.707},{"x":1752389701804,"y":41.76},{"x":1752389641632,"y":58.177},{"x":1752389581441,"y":63.731},{"x":1752389521271,"y":53.4},{"x":1752389461095,"y":53.268},{"x":1752389400895,"y":56.548},{"x":1752389340682,"y":54.72},{"x":1752389280566,"y":45.268},{"x":1752389220380,"y":42.923},{"x":1752389160180,"y":31.545},{"x":1752389102882,"y":46.946},{"x":1752389042691,"y":44.062},{"x":1752388982524,"y":51.036},{"x":1752388922363,"y":65.953},{"x":1752388862198,"y":55.204},{"x":1752388802024,"y":50.348},{"x":1752388741820,"y":45.96},{"x":1752388681649,"y":50.215},{"x":1752388621481,"y":46.214},{"x":1752388561308,"y":49.6},{"x":1752388501134,"y":42.428},{"x":1752388440946,"y":43.607},{"x":1752388380773,"y":38.838},{"x":1752388320608,"y":41.481},{"x":1752388260442,"y":46.52},{"x":1752388200414,"y":42.395},{"x":1752388142929,"y":39.783},{"x":1752388082749,"y":40.012},{"x":1752388022570,"y":39.928},{"x":1752387962408,"y":38.193},{"x":1752387902247,"y":41.081},{"x":1752387842069,"y":38.593},{"x":1752387781888,"y":42.204},{"x":1752387721700,"y":51.333},{"x":1752387661532,"y":46.585},{"x":1752387601360,"y":51.105},{"x":1752387541180,"y":60.118},{"x":1752387480976,"y":40.215},{"x":1752387420791,"y":59.746},{"x":1752387360621,"y":45.458},{"x":1752387300590,"y":68.062},{"x":1752387240233,"y":52.097},{"x":1752387182978,"y":49.804},{"x":1752387122782,"y":49.946},{"x":1752387062615,"y":48.967},{"x":1752387002443,"y":50.608},{"x":1752386942265,"y":43.507},{"x":1752386882089,"y":50.707},{"x":1752386821907,"y":54.392},{"x":1752386761721,"y":54.409},{"x":1752386701552,"y":53.105},{"x":1752386641377,"y":47.71},{"x":1752386581203,"y":68.33},{"x":1752386521024,"y":68.354},{"x":1752386460858,"y":66.359},{"x":1752386400935,"y":69.699},{"x":1752386340476,"y":59.966},{"x":1752386280285,"y":46.594},{"x":1752386222965,"y":55.25},{"x":1752386162785,"y":35.442},{"x":1752386102623,"y":36.232},{"x":1752386042451,"y":36.466},{"x":1752385982294,"y":37.684},{"x":1752385922099,"y":37.877},{"x":1752385861923,"y":41.443},{"x":1752385801741,"y":41.061},{"x":1752385741564,"y":38.173},{"x":1752385681398,"y":35.485},{"x":1752385621236,"y":41.306},{"x":1752385561061,"y":37.017},{"x":1752385500900,"y":40.439},{"x":1752385440677,"y":38.972},{"x":1752385380536,"y":39.062},{"x":1752385320286,"y":37.345},{"x":1752385262967,"y":47.025},{"x":1752385202792,"y":50.23},{"x":1752385142636,"y":55.093},{"x":1752385082461,"y":53.989},{"x":1752385022286,"y":54.729},{"x":1752384962104,"y":45.975},{"x":1752384901911,"y":42.232},{"x":1752384841741,"y":39.143},{"x":1752384781569,"y":34.957},{"x":1752384721390,"y":38.467},{"x":1752384661219,"y":40.007},{"x":1752384601029,"y":38.1},{"x":1752384540829,"y":41.796},{"x":1752384480683,"y":34.905},{"x":1752384420479,"y":45.865},{"x":1752384360386,"y":45.335},{"x":1752384303013,"y":45.132},{"x":1752384242844,"y":45.284},{"x":1752384182660,"y":48.693},{"x":1752384122495,"y":38.378},{"x":1752384062300,"y":36.682},{"x":1752384002127,"y":38.812},{"x":1752383941938,"y":43.82},{"x":1752383881728,"y":46.98},{"x":1752383821528,"y":45.575},{"x":1752383761346,"y":57.644},{"x":1752383701161,"y":56.846},{"x":1752383640955,"y":46.953},{"x":1752383580792,"y":48.926},{"x":1752383520659,"y":46.868},{"x":1752383460439,"y":42.445},{"x":1752383400260,"y":40.457},{"x":1752383342926,"y":39.048},{"x":1752383282755,"y":35.419},{"x":1752383222578,"y":46.933},{"x":1752383162416,"y":43.162},{"x":1752383102246,"y":44.388},{"x":1752383042059,"y":47.64},{"x":1752382981869,"y":43.248},{"x":1752382921673,"y":38.144},{"x":1752382861517,"y":37.192},{"x":1752382801421,"y":37.349},{"x":1752382741110,"y":38.089},{"x":1752382680920,"y":37.817},{"x":1752382620756,"y":36.084},{"x":1752382560638,"y":43.633},{"x":1752382500464,"y":46.841},{"x":1752382440287,"y":46.662},{"x":1752382382961,"y":43.183},{"x":1752382322774,"y":44.503},{"x":1752382262628,"y":50.901},{"x":1752382202419,"y":48.817},{"x":1752382142252,"y":55.849},{"x":1752382082069,"y":53.37},{"x":1752382021868,"y":52.529},{"x":1752381961689,"y":41.0},{"x":1752381901523,"y":41.237},{"x":1752381841341,"y":45.265},{"x":1752381781142,"y":38.289},{"x":1752381720948,"y":41.081},{"x":1752381660767,"y":46.975},{"x":1752381600616,"y":58.322},{"x":1752381540393,"y":59.502},{"x":1752381480301,"y":62.982},{"x":1752381422896,"y":53.515},{"x":1752381362720,"y":36.245},{"x":1752381302544,"y":35.774},{"x":1752381242364,"y":35.874},{"x":1752381182183,"y":36.799},{"x":1752381121988,"y":53.824},{"x":1752381061816,"y":55.508},{"x":1752381001647,"y":54.376},{"x":1752380941477,"y":55.316},{"x":1752380881303,"y":52.688},{"x":1752380821123,"y":56.092},{"x":1752380760935,"y":51.494},{"x":1752380700795,"y":39.116},{"x":1752380640619,"y":38.966},{"x":1752380580407,"y":38.206},{"x":1752380520269,"y":40.625},{"x":1752380462912,"y":42.314},{"x":1752380402742,"y":44.843},{"x":1752380340662,"y":44.676},{"x":1752380280509,"y":40.262},{"x":1752380220393,"y":39.281},{"x":1752380163021,"y":45.851},{"x":1752380102832,"y":36.279},{"x":1752380042634,"y":37.756},{"x":1752379982438,"y":53.555},{"x":1752379922244,"y":53.057},{"x":1752379862062,"y":52.52},{"x":1752379801890,"y":51.075},{"x":1752379741718,"y":52.802},{"x":1752379681527,"y":44.523},{"x":1752379621341,"y":56.395},{"x":1752379561167,"y":55.417},{"x":1752379500964,"y":55.321},{"x":1752379440805,"y":43.667},{"x":1752379380651,"y":43.413},{"x":1752379320482,"y":37.596},{"x":1752379260407,"y":40.591},{"x":1752379202925,"y":38.42},{"x":1752379142734,"y":44.05},{"x":1752379082544,"y":35.846},{"x":1752379022370,"y":27.293},{"x":1752378962205,"y":29.563},{"x":1752378902011,"y":32.164},{"x":1752378841831,"y":27.745},{"x":1752378781664,"y":26.635},{"x":1752378721494,"y":36.478},{"x":1752378661307,"y":35.897},{"x":1752378601136,"y":34.572},{"x":1752378540933,"y":37.392},{"x":1752378480774,"y":35.737},{"x":1752378420621,"y":33.219},{"x":1752378360500,"y":26.604},{"x":1752378300336,"y":41.862},{"x":1752378243014,"y":39.172},{"x":1752378182838,"y":42.139},{"x":1752378122672,"y":39.027},{"x":1752378062512,"y":38.554},{"x":1752378002342,"y":27.271},{"x":1752377942179,"y":27.503},{"x":1752377882000,"y":25.794},{"x":1752377821819,"y":29.059},{"x":1752377761640,"y":25.571},{"x":1752377701465,"y":31.03},{"x":1752377641285,"y":31.652},{"x":1752377581120,"y":33.727},{"x":1752377520920,"y":30.591},{"x":1752377460754,"y":28.198},{"x":1752377400662,"y":30.092},{"x":1752377340437,"y":26.136},{"x":1752377280304,"y":26.219},{"x":1752377222934,"y":26.742},{"x":1752377162757,"y":29.001},{"x":1752377102583,"y":24.892},{"x":1752377042410,"y":25.156},{"x":1752376982242,"y":24.675},{"x":1752376922064,"y":27.81},{"x":1752376861872,"y":30.922},{"x":1752376801701,"y":36.816},{"x":1752376741560,"y":31.231},{"x":1752376681346,"y":28.64},{"x":1752376621154,"y":26.799},{"x":1752376560965,"y":26.557},{"x":1752376500808,"y":27.139},{"x":1752376440611,"y":28.402},{"x":1752376380449,"y":28.697},{"x":1752376320323,"y":28.756},{"x":1752376262973,"y":32.199},{"x":1752376202797,"y":28.714},{"x":1752376142623,"y":32.173},{"x":1752376082419,"y":28.13},{"x":1752376022256,"y":27.12},{"x":1752375962081,"y":25.835},{"x":1752375902116,"y":38.342},{"x":1752375840661,"y":38.162},{"x":1752375782511,"y":38.074},{"x":1752375722301,"y":42.964},{"x":1752375662022,"y":43.305},{"x":1752375601447,"y":29.985},{"x":1752375541175,"y":32.352},{"x":1752375480990,"y":32.834},{"x":1752375420816,"y":28.774},{"x":1752375360657,"y":30.234},{"x":1752375300565,"y":29.158},{"x":1752375240382,"y":30.576},{"x":1752375180223,"y":26.909},{"x":1752375122902,"y":30.405},{"x":1752375062708,"y":29.924},{"x":1752375002535,"y":29.486},{"x":1752374942351,"y":30.171},{"x":1752374882176,"y":30.068},{"x":1752374821986,"y":35.499},{"x":1752374761807,"y":34.75},{"x":1752374701640,"y":31.152},{"x":1752374641459,"y":38.904},{"x":1752374581280,"y":48.322},{"x":1752374521111,"y":47.593},{"x":1752374460921,"y":57.739},{"x":1752374400797,"y":47.551},{"x":1752374340581,"y":37.395},{"x":1752374280434,"y":42.052},{"x":1752374220301,"y":43.119},{"x":1752374162904,"y":44.382},{"x":1752374102722,"y":42.162},{"x":1752374042554,"y":41.387},{"x":1752373982359,"y":30.067},{"x":1752373922194,"y":29.661},{"x":1752373862010,"y":34.093},{"x":1752373801834,"y":30.525},{"x":1752373741665,"y":25.708},{"x":1752373681489,"y":26.986},{"x":1752373621326,"y":34.678},{"x":1752373561156,"y":35.355},{"x":1752373500965,"y":38.851},{"x":1752373440785,"y":34.956},{"x":1752373380629,"y":35.502},{"x":1752373320536,"y":31.954},{"x":1752373260286,"y":27.383},{"x":1752373202972,"y":30.57},{"x":1752373142751,"y":35.338},{"x":1752373082570,"y":27.385},{"x":1752373022361,"y":25.851},{"x":1752372962187,"y":25.328},{"x":1752372902003,"y":24.724},{"x":1752372841840,"y":24.676},{"x":1752372781682,"y":27.527},{"x":1752372721500,"y":29.567},{"x":1752372661357,"y":29.96},{"x":1752372601212,"y":28.832},{"x":1752372541007,"y":28.58},{"x":1752372480857,"y":29.661},{"x":1752372420683,"y":25.464},{"x":1752372360587,"y":25.663},{"x":1752372300402,"y":26.634},{"x":1752372240204,"y":27.895},{"x":1752372182864,"y":27.714},{"x":1752372122670,"y":31.294},{"x":1752372062512,"y":40.144},{"x":1752372002367,"y":42.689},{"x":1752371942187,"y":45.812},{"x":1752371882010,"y":45.564},{"x":1752371821828,"y":48.306},{"x":1752371761651,"y":31.785},{"x":1752371701480,"y":32.954},{"x":1752371641311,"y":28.611},{"x":1752371581127,"y":29.02},{"x":1752371520944,"y":29.573},{"x":1752371460766,"y":28.147},{"x":1752371400721,"y":27.964},{"x":1752371340456,"y":27.243},{"x":1752371280360,"y":35.038},{"x":1752371222940,"y":28.403},{"x":1752371162775,"y":30.685},{"x":1752371102614,"y":34.215},{"x":1752371042434,"y":29.117},{"x":1752370982275,"y":30.22},{"x":1752370922093,"y":27.81},{"x":1752370861909,"y":24.642},{"x":1752370801748,"y":25.205},{"x":1752370741573,"y":25.759},{"x":1752370681407,"y":29.621},{"x":1752370621248,"y":30.069},{"x":1752370561024,"y":29.779},{"x":1752370500848,"y":33.767},{"x":1752370440684,"y":32.995},{"x":1752370380536,"y":27.686},{"x":1752370320398,"y":31.731},{"x":1752370260082,"y":28.07},{"x":1752370202873,"y":41.63},{"x":1752370142694,"y":42.301},{"x":1752370082512,"y":45.286},{"x":1752370022338,"y":41.813},{"x":1752369962177,"y":41.847},{"x":1752369901998,"y":33.485},{"x":1752369841827,"y":30.708},{"x":1752369781634,"y":30.154},{"x":1752369721466,"y":30.685},{"x":1752369661299,"y":26.049},{"x":1752369601114,"y":25.617},{"x":1752369540882,"y":35.187},{"x":1752369480681,"y":44.431},{"x":1752369420584,"y":46.643},{"x":1752369360340,"y":47.212},{"x":1752369302993,"y":44.724},{"x":1752369242810,"y":38.644},{"x":1752369182602,"y":33.806},{"x":1752369122436,"y":33.763},{"x":1752369062266,"y":29.732},{"x":1752369002099,"y":35.909},{"x":1752368941897,"y":31.685},{"x":1752368881726,"y":30.141},{"x":1752368821547,"y":28.891},{"x":1752368761388,"y":27.745},{"x":1752368701204,"y":27.236},{"x":1752368641019,"y":26.726},{"x":1752368580832,"y":27.876},{"x":1752368520654,"y":27.337},{"x":1752368460545,"y":31.274},{"x":1752368400344,"y":30.991},{"x":1752368342934,"y":40.185},{"x":1752368282759,"y":42.953},{"x":1752368222578,"y":40.492},{"x":1752368162411,"y":42.781},{"x":1752368102249,"y":39.868},{"x":1752368042068,"y":27.736},{"x":1752367981890,"y":27.506},{"x":1752367921692,"y":29.07},{"x":1752367861518,"y":35.892},{"x":1752367801369,"y":39.536},{"x":1752367741169,"y":37.368},{"x":1752367680985,"y":36.483},{"x":1752367620784,"y":40.337},{"x":1752367560631,"y":28.043},{"x":1752367500688,"y":32.77},{"x":1752367440338,"y":27.165},{"x":1752367380051,"y":27.005},{"x":1752367322859,"y":25.434},{"x":1752367262687,"y":28.979},{"x":1752367202506,"y":28.716},{"x":1752367142319,"y":32.186},{"x":1752367082139,"y":27.079},{"x":1752367021964,"y":30.948},{"x":1752366961799,"y":28.373},{"x":1752366901622,"y":28.877},{"x":1752366841434,"y":32.944},{"x":1752366781262,"y":29.062},{"x":1752366721090,"y":26.249},{"x":1752366660903,"y":27.384},{"x":1752366600863,"y":26.533},{"x":1752366540572,"y":28.509},{"x":1752366480440,"y":32.639},{"x":1752366420049,"y":34.697},{"x":1752366362860,"y":32.139},{"x":1752366302654,"y":36.509},{"x":1752366242477,"y":36.195},{"x":1752366182325,"y":45.341},{"x":1752366122125,"y":41.993},{"x":1752366061937,"y":36.094},{"x":1752366001760,"y":41.504},{"x":1752365941549,"y":41.673},{"x":1752365881357,"y":42.634},{"x":1752365821171,"y":42.362},{"x":1752365760958,"y":38.226},{"x":1752365700824,"y":32.751},{"x":1752365640567,"y":29.701},{"x":1752365580461,"y":29.929},{"x":1752365520303,"y":33.746},{"x":1752365462922,"y":27.111},{"x":1752365402753,"y":26.158},{"x":1752365342582,"y":27.573},{"x":1752365282413,"y":31.326},{"x":1752365222238,"y":36.955},{"x":1752365162056,"y":34.159},{"x":1752365101884,"y":36.814},{"x":1752365041713,"y":34.07},{"x":1752364981543,"y":30.382},{"x":1752364921371,"y":31.206},{"x":1752364861212,"y":32.415},{"x":1752364801074,"y":30.533},{"x":1752364740796,"y":30.08},{"x":1752364680634,"y":28.911},{"x":1752364620540,"y":39.596},{"x":1752364560326,"y":41.323},{"x":1752364503064,"y":38.608},{"x":1752364442851,"y":38.82},{"x":1752364382686,"y":41.848},{"x":1752364322529,"y":25.917},{"x":1752364262341,"y":25.719},{"x":1752364202176,"y":32.194},{"x":1752364141973,"y":31.616},{"x":1752364081809,"y":30.217},{"x":1752364021632,"y":29.865},{"x":1752363961458,"y":28.113},{"x":1752363901286,"y":30.498},{"x":1752363841080,"y":26.684},{"x":1752363780895,"y":29.882},{"x":1752363720715,"y":27.498},{"x":1752363660575,"y":30.189},{"x":1752363600509,"y":30.79},{"x":1752363540175,"y":28.944},{"x":1752363482920,"y":27.513},{"x":1752363422753,"y":27.52},{"x":1752363362588,"y":30.498},{"x":1752363302420,"y":31.224},{"x":1752363242256,"y":34.848},{"x":1752363182089,"y":35.165},{"x":1752363121900,"y":33.087},{"x":1752363061728,"y":28.079},{"x":1752363001567,"y":29.808},{"x":1752362941385,"y":28.824},{"x":1752362881223,"y":30.854},{"x":1752362821046,"y":30.429},{"x":1752362760873,"y":33.348},{"x":1752362700720,"y":34.923},{"x":1752362640569,"y":54.011},{"x":1752362580432,"y":49.098},{"x":1752362523016,"y":46.454},{"x":1752362462831,"y":44.53},{"x":1752362402659,"y":43.207},{"x":1752362342456,"y":28.47},{"x":1752362282276,"y":31.534},{"x":1752362222043,"y":28.388},{"x":1752362161871,"y":29.178},{"x":1752362101686,"y":29.243},{"x":1752362041511,"y":29.378},{"x":1752361981329,"y":31.147},{"x":1752361921154,"y":31.278},{"x":1752361860966,"y":31.497},{"x":1752361800805,"y":35.261},{"x":1752361740620,"y":34.574},{"x":1752361680476,"y":33.454},{"x":1752361620332,"y":36.593},{"x":1752361562960,"y":35.426},{"x":1752361502783,"y":33.636},{"x":1752361442613,"y":31.346},{"x":1752361382435,"y":35.008},{"x":1752361322269,"y":33.389},{"x":1752361262085,"y":29.241},{"x":1752361201937,"y":29.527},{"x":1752361141704,"y":28.13},{"x":1752361081531,"y":40.255},{"x":1752361021355,"y":40.432},{"x":1752360961187,"y":42.448},{"x":1752360900990,"y":39.371},{"x":1752360840815,"y":36.89},{"x":1752360780636,"y":31.993},{"x":1752360720511,"y":28.853},{"x":1752360660314,"y":35.873},{"x":1752360602948,"y":32.302},{"x":1752360542780,"y":30.342},{"x":1752360482606,"y":31.302},{"x":1752360422438,"y":29.368},{"x":1752360362257,"y":27.395},{"x":1752360302078,"y":31.093},{"x":1752360241887,"y":31.407},{"x":1752360181695,"y":30.07},{"x":1752360121525,"y":28.95},{"x":1752360061375,"y":31.3},{"x":1752360001172,"y":31.475},{"x":1752359940974,"y":26.362},{"x":1752359880799,"y":29.609},{"x":1752359820623,"y":31.327},{"x":1752359760512,"y":29.437},{"x":1752359700410,"y":28.138},{"x":1752359643016,"y":28.768},{"x":1752359582834,"y":29.693},{"x":1752359522656,"y":32.628},{"x":1752359462469,"y":36.613},{"x":1752359402308,"y":30.918},{"x":1752359342105,"y":38.772},{"x":1752359281901,"y":40.027},{"x":1752359221718,"y":45.846},{"x":1752359161554,"y":45.535},{"x":1752359101378,"y":49.988},{"x":1752359041204,"y":40.865},{"x":1752358981018,"y":41.972},{"x":1752358920836,"y":33.554},{"x":1752358860671,"y":45.424},{"x":1752358800550,"y":31.228},{"x":1752358740370,"y":34.138},{"x":1752358683048,"y":28.276},{"x":1752358622847,"y":39.76},{"x":1752358562659,"y":27.96},{"x":1752358502483,"y":36.343},{"x":1752358442310,"y":55.113},{"x":1752358382130,"y":50.321},{"x":1752358321946,"y":51.452},{"x":1752358261761,"y":46.963},{"x":1752358201589,"y":43.857},{"x":1752358141406,"y":34.747},{"x":1752358081232,"y":31.248},{"x":1752358021067,"y":29.052},{"x":1752357960892,"y":35.674},{"x":1752357900752,"y":36.178},{"x":1752357840645,"y":44.194},{"x":1752357780323,"y":38.545},{"x":1752357722995,"y":37.177},{"x":1752357662842,"y":46.568},{"x":1752357602660,"y":44.605},{"x":1752357542479,"y":31.79},{"x":1752357482309,"y":32.727},{"x":1752357422142,"y":32.207},{"x":1752357361956,"y":29.1},{"x":1752357301776,"y":41.015},{"x":1752357241591,"y":33.728},{"x":1752357181424,"y":29.636},{"x":1752357121231,"y":44.142},{"x":1752357061025,"y":28.599},{"x":1752357000855,"y":31.717},{"x":1752356940667,"y":36.553},{"x":1752356880554,"y":37.953},{"x":1752356820398,"y":45.518},{"x":1752356762927,"y":47.312},{"x":1752356702741,"y":46.374},{"x":1752356642563,"y":55.13},{"x":1752356582390,"y":46.81},{"x":1752356522217,"y":43.289},{"x":1752356462039,"y":32.97},{"x":1752356401856,"y":32.888},{"x":1752356341708,"y":30.476},{"x":1752356281510,"y":34.697},{"x":1752356221346,"y":41.561},{"x":1752356161158,"y":30.403},{"x":1752356100970,"y":47.749},{"x":1752356040787,"y":34.559},{"x":1752355980633,"y":44.52},{"x":1752355920490,"y":50.011},{"x":1752355862994,"y":38.119},{"x":1752355802824,"y":48.506},{"x":1752355742642,"y":60.872},{"x":1752355682457,"y":74.438},{"x":1752355622278,"y":57.663},{"x":1752355562080,"y":56.071},{"x":1752355501897,"y":55.264},{"x":1752355441718,"y":47.064},{"x":1752355381543,"y":43.658},{"x":1752355321366,"y":35.048},{"x":1752355261187,"y":39.814},{"x":1752355200990,"y":38.805},{"x":1752355140783,"y":50.453},{"x":1752355080621,"y":48.746},{"x":1752355020368,"y":50.102},{"x":1752354960118,"y":56.843},{"x":1752354902877,"y":52.953},{"x":1752354842683,"y":41.751},{"x":1752354782509,"y":42.968},{"x":1752354722328,"y":49.844},{"x":1752354662144,"y":46.341},{"x":1752354601961,"y":46.128},{"x":1752354541785,"y":45.002},{"x":1752354481623,"y":45.146},{"x":1752354421453,"y":49.443},{"x":1752354361284,"y":38.223},{"x":1752354301110,"y":41.928},{"x":1752354240878,"y":39.097},{"x":1752354180703,"y":41.24},{"x":1752354120591,"y":45.886},{"x":1752354060471,"y":41.26},{"x":1752354000287,"y":60.276},{"x":1752353942870,"y":61.802},{"x":1752353882694,"y":56.517},{"x":1752353822514,"y":60.343},{"x":1752353762345,"y":46.257},{"x":1752353702162,"y":37.598},{"x":1752353641981,"y":36.828},{"x":1752353581804,"y":38.754},{"x":1752353521634,"y":42.468},{"x":1752353461438,"y":39.253},{"x":1752353401277,"y":37.003},{"x":1752353341086,"y":54.533},{"x":1752353280861,"y":57.431},{"x":1752353220689,"y":72.12},{"x":1752353160553,"y":68.116},{"x":1752353100429,"y":65.423},{"x":1752353042984,"y":48.294},{"x":1752352982819,"y":46.769},{"x":1752352922640,"y":44.996},{"x":1752352862469,"y":40.028},{"x":1752352802321,"y":55.886},{"x":1752352742139,"y":64.989},{"x":1752352681957,"y":59.59},{"x":1752352621801,"y":60.019},{"x":1752352561591,"y":56.252},{"x":1752352501411,"y":41.928},{"x":1752352441240,"y":46.365},{"x":1752352381050,"y":40.941},{"x":1752352320872,"y":41.419},{"x":1752352260684,"y":53.916},{"x":1752352200609,"y":46.75},{"x":1752352140412,"y":49.243},{"x":1752352083018,"y":51.489},{"x":1752352022844,"y":55.254},{"x":1752351962680,"y":53.086},{"x":1752351902509,"y":48.185},{"x":1752351842330,"y":43.378},{"x":1752351782141,"y":54.422},{"x":1752351721946,"y":64.426},{"x":1752351661772,"y":49.375},{"x":1752351601609,"y":56.063},{"x":1752351541422,"y":57.736},{"x":1752351481226,"y":48.508},{"x":1752351420993,"y":45.331},{"x":1752351360819,"y":46.27},{"x":1752351300670,"y":50.92},{"x":1752351240454,"y":40.909},{"x":1752351180350,"y":41.371},{"x":1752351122980,"y":57.929},{"x":1752351062807,"y":56.282},{"x":1752351002598,"y":69.079},{"x":1752350942419,"y":73.285},{"x":1752350882246,"y":59.356},{"x":1752350822034,"y":52.478},{"x":1752350761860,"y":62.141},{"x":1752350701682,"y":48.838},{"x":1752350641516,"y":41.383},{"x":1752350581346,"y":41.648},{"x":1752350521177,"y":45.85},{"x":1752350460987,"y":55.908},{"x":1752350400918,"y":65.946},{"x":1752350340614,"y":52.72},{"x":1752350280450,"y":58.664},{"x":1752350220352,"y":63.352},{"x":1752350162964,"y":57.172},{"x":1752350102785,"y":64.457},{"x":1752350042603,"y":67.135},{"x":1752349982429,"y":72.861},{"x":1752349922249,"y":57.754},{"x":1752349862060,"y":54.78},{"x":1752349801891,"y":40.399},{"x":1752349741707,"y":38.486},{"x":1752349681539,"y":44.05},{"x":1752349621354,"y":47.24},{"x":1752349561176,"y":50.102},{"x":1752349501031,"y":45.209},{"x":1752349440810,"y":44.416},{"x":1752349380656,"y":54.926},{"x":1752349320550,"y":40.137},{"x":1752349260303,"y":44.501},{"x":1752349202955,"y":37.343},{"x":1752349142786,"y":49.663},{"x":1752349082618,"y":47.795},{"x":1752349022442,"y":41.117},{"x":1752348962268,"y":55.471},{"x":1752348902094,"y":55.901},{"x":1752348841911,"y":50.668},{"x":1752348781733,"y":49.459},{"x":1752348721559,"y":49.636},{"x":1752348661377,"y":51.013},{"x":1752348601233,"y":39.203},{"x":1752348540996,"y":35.817},{"x":1752348480850,"y":45.646},{"x":1752348420663,"y":42.712},{"x":1752348360518,"y":56.587},{"x":1752348300425,"y":55.519},{"x":1752348243026,"y":52.665},{"x":1752348182837,"y":42.632},{"x":1752348122657,"y":45.364},{"x":1752348062481,"y":33.343},{"x":1752348002304,"y":38.642},{"x":1752347942119,"y":39.64},{"x":1752347881916,"y":41.081},{"x":1752347821711,"y":38.155},{"x":1752347761517,"y":46.452},{"x":1752347701346,"y":38.375},{"x":1752347641159,"y":41.651},{"x":1752347580957,"y":47.574},{"x":1752347520792,"y":36.63},{"x":1752347460630,"y":36.976},{"x":1752347400550,"y":35.427},{"x":1752347340359,"y":41.35},{"x":1752347282963,"y":50.636},{"x":1752347222785,"y":46.622},{"x":1752347162620,"y":44.929},{"x":1752347102439,"y":47.775},{"x":1752347042269,"y":41.571},{"x":1752346982097,"y":36.001},{"x":1752346921916,"y":34.879},{"x":1752346861736,"y":40.103},{"x":1752346801589,"y":46.923},{"x":1752346741373,"y":69.429},{"x":1752346681207,"y":64.722},{"x":1752346621023,"y":53.181},{"x":1752346560832,"y":44.626},{"x":1752346500699,"y":61.669},{"x":1752346440518,"y":43.822},{"x":1752346380402,"y":40.0},{"x":1752346320227,"y":48.46},{"x":1752346262843,"y":48.977},{"x":1752346202672,"y":55.638},{"x":1752346142502,"y":49.612},{"x":1752346082329,"y":41.653},{"x":1752346022159,"y":39.41},{"x":1752345961977,"y":45.572},{"x":1752345901809,"y":34.475},{"x":1752345841626,"y":42.875},{"x":1752345781456,"y":48.155},{"x":1752345721291,"y":56.009},{"x":1752345661106,"y":52.059},{"x":1752345600924,"y":57.215},{"x":1752345540728,"y":44.619},{"x":1752345480572,"y":39.321},{"x":1752345420388,"y":30.202},{"x":1752345360332,"y":31.005},{"x":1752345302906,"y":33.269},{"x":1752345242709,"y":40.062},{"x":1752345182536,"y":57.791},{"x":1752345122361,"y":52.705},{"x":1752345062196,"y":52.241},{"x":1752345001989,"y":55.175},{"x":1752344941819,"y":43.499},{"x":1752344881643,"y":41.635},{"x":1752344821456,"y":49.217},{"x":1752344761278,"y":53.784},{"x":1752344701116,"y":45.764},{"x":1752344640915,"y":41.674},{"x":1752344580743,"y":41.006},{"x":1752344520592,"y":36.185},{"x":1752344460340,"y":46.637},{"x":1752344400193,"y":43.514},{"x":1752344342872,"y":33.49},{"x":1752344282577,"y":32.788},{"x":1752344222357,"y":52.864},{"x":1752344162186,"y":43.352},{"x":1752344102007,"y":50.296},{"x":1752344041854,"y":54.783},{"x":1752343981638,"y":48.632},{"x":1752343921481,"y":42.818},{"x":1752343861294,"y":55.279},{"x":1752343801117,"y":30.116},{"x":1752343740930,"y":31.736},{"x":1752343680754,"y":44.518},{"x":1752343620595,"y":42.682},{"x":1752343560419,"y":43.722},{"x":1752343500311,"y":38.761},{"x":1752343442959,"y":37.008},{"x":1752343382782,"y":33.706},{"x":1752343322619,"y":36.35},{"x":1752343262445,"y":35.505},{"x":1752343202247,"y":28.308},{"x":1752343142064,"y":60.323},{"x":1752343081873,"y":49.372},{"x":1752343021738,"y":49.89},{"x":1752342961504,"y":52.425},{"x":1752342901335,"y":52.636},{"x":1752342841157,"y":33.264},{"x":1752342780934,"y":30.913},{"x":1752342720765,"y":36.294},{"x":1752342660594,"y":30.692},{"x":1752342600511,"y":35.42},{"x":1752342540246,"y":34.149},{"x":1752342482985,"y":40.403},{"x":1752342422812,"y":39.328},{"x":1752342362638,"y":38.384},{"x":1752342302478,"y":46.45},{"x":1752342242303,"y":40.366},{"x":1752342182138,"y":39.037},{"x":1752342121960,"y":53.51},{"x":1752342061790,"y":37.849},{"x":1752342001614,"y":43.601},{"x":1752341941425,"y":54.594},{"x":1752341881250,"y":61.439},{"x":1752341821051,"y":42.393},{"x":1752341760853,"y":38.146},{"x":1752341700713,"y":34.579},{"x":1752341640489,"y":40.913},{"x":1752341580448,"y":38.358},{"x":1752341522988,"y":31.283},{"x":1752341462825,"y":65.864},{"x":1752341402659,"y":47.839},{"x":1752341342469,"y":32.456},{"x":1752341282306,"y":45.764},{"x":1752341222114,"y":39.816},{"x":1752341161939,"y":37.154},{"x":1752341101762,"y":32.758},{"x":1752341041574,"y":42.885},{"x":1752340981405,"y":42.309},{"x":1752340921235,"y":46.923},{"x":1752340861024,"y":52.292},{"x":1752340800878,"y":57.161},{"x":1752340740662,"y":50.945},{"x":1752340680466,"y":43.032},{"x":1752340620241,"y":66.496},{"x":1752340562973,"y":30.542},{"x":1752340502795,"y":35.481},{"x":1752340442621,"y":27.772},{"x":1752340382446,"y":30.561},{"x":1752340322272,"y":25.951},{"x":1752340262101,"y":21.819},{"x":1752340201922,"y":21.648},{"x":1752340141737,"y":21.338},{"x":1752340081567,"y":42.847},{"x":1752340021380,"y":40.378},{"x":1752339961216,"y":48.627},{"x":1752339901043,"y":50.09},{"x":1752339840866,"y":56.352},{"x":1752339780708,"y":44.513},{"x":1752339720571,"y":42.972},{"x":1752339660386,"y":26.189},{"x":1752339602973,"y":24.946},{"x":1752339542768,"y":54.194},{"x":1752339482594,"y":47.791},{"x":1752339422395,"y":44.634},{"x":1752339362226,"y":40.322},{"x":1752339302063,"y":57.979},{"x":1752339241875,"y":38.517},{"x":1752339181700,"y":34.962},{"x":1752339121524,"y":26.653},{"x":1752339061353,"y":27.545},{"x":1752339001152,"y":25.587},{"x":1752338940960,"y":36.624},{"x":1752338880788,"y":31.121},{"x":1752338820626,"y":28.803},{"x":1752338760500,"y":47.102},{"x":1752338700624,"y":36.789},{"x":1752338640193,"y":30.754},{"x":1752338582852,"y":31.051},{"x":1752338522680,"y":28.311},{"x":1752338462503,"y":15.566},{"x":1752338402335,"y":32.492},{"x":1752338342147,"y":42.558},{"x":1752338281969,"y":46.141},{"x":1752338221807,"y":37.767},{"x":1752338161645,"y":44.507},{"x":1752338101483,"y":32.724},{"x":1752338041305,"y":43.408},{"x":1752337981134,"y":25.052},{"x":1752337920934,"y":30.091},{"x":1752337860762,"y":25.325},{"x":1752337800713,"y":23.552},{"x":1752337740401,"y":39.058},{"x":1752337680246,"y":42.282},{"x":1752337622882,"y":32.034},{"x":1752337562699,"y":27.674},{"x":1752337502523,"y":26.964},{"x":1752337442337,"y":26.124},{"x":1752337382160,"y":35.056},{"x":1752337321980,"y":37.742},{"x":1752337261718,"y":30.495},{"x":1752337201536,"y":33.177},{"x":1752337141367,"y":44.82},{"x":1752337081167,"y":25.833},{"x":1752337020967,"y":20.287},{"x":1752336960789,"y":16.526},{"x":1752336900712,"y":46.683},{"x":1752336840438,"y":28.424},{"x":1752336780318,"y":29.695},{"x":1752336722995,"y":28.842},{"x":1752336662820,"y":34.28},{"x":1752336602650,"y":39.041},{"x":1752336542465,"y":35.928},{"x":1752336482295,"y":28.756},{"x":1752336422096,"y":31.201},{"x":1752336361913,"y":24.757},{"x":1752336301743,"y":30.268},{"x":1752336241573,"y":29.63},{"x":1752336181405,"y":25.039},{"x":1752336121233,"y":16.275},{"x":1752336061053,"y":15.356},{"x":1752336000985,"y":37.261},{"x":1752335940666,"y":26.498},{"x":1752335880542,"y":16.768},{"x":1752335820387,"y":29.726},{"x":1752335760151,"y":25.481},{"x":1752335702847,"y":38.957},{"x":1752335642685,"y":42.573},{"x":1752335582513,"y":42.508},{"x":1752335522345,"y":48.104},{"x":1752335462168,"y":33.915},{"x":1752335401984,"y":24.567},{"x":1752335341808,"y":19.485},{"x":1752335281628,"y":17.724},{"x":1752335221461,"y":18.526},{"x":1752335161295,"y":22.832},{"x":1752335101098,"y":19.427},{"x":1752335040881,"y":16.601},{"x":1752334980699,"y":20.543},{"x":1752334920536,"y":33.82},{"x":1752334860366,"y":27.775},{"x":1752334800268,"y":30.498},{"x":1752334742919,"y":21.186},{"x":1752334682750,"y":13.435},{"x":1752334622574,"y":30.388},{"x":1752334562399,"y":31.851},{"x":1752334502231,"y":34.744},{"x":1752334442047,"y":40.588},{"x":1752334381865,"y":41.531},{"x":1752334321694,"y":32.023},{"x":1752334261530,"y":21.243},{"x":1752334201370,"y":19.008},{"x":1752334141155,"y":22.857},{"x":1752334080954,"y":19.059},{"x":1752334020778,"y":37.723},{"x":1752333960599,"y":34.54},{"x":1752333900504,"y":28.685},{"x":1752333840212,"y":26.776},{"x":1752333782949,"y":44.873},{"x":1752333722774,"y":37.993},{"x":1752333662593,"y":19.623},{"x":1752333602348,"y":12.63},{"x":1752333542164,"y":26.966},{"x":1752333481942,"y":28.492},{"x":1752333421708,"y":25.632},{"x":1752333361528,"y":17.405},{"x":1752333301353,"y":44.794},{"x":1752333241163,"y":36.01},{"x":1752333180981,"y":30.026},{"x":1752333120809,"y":32.208},{"x":1752333060640,"y":53.109},{"x":1752333000581,"y":13.599},{"x":1752332940309,"y":30.121},{"x":1752332882980,"y":28.166},{"x":1752332822808,"y":23.127},{"x":1752332762660,"y":28.401},{"x":1752332702459,"y":36.3},{"x":1752332642287,"y":14.812},{"x":1752332582110,"y":13.057},{"x":1752332521924,"y":11.759},{"x":1752332461752,"y":7.586},{"x":1752332401702,"y":21.325},{"x":1752332341363,"y":20.277},{"x":1752332281197,"y":22.114},{"x":1752332221006,"y":29.63},{"x":1752332160830,"y":32.533},{"x":1752332100682,"y":24.547},{"x":1752332040508,"y":20.992},{"x":1752331980396,"y":21.441},{"x":1752331920235,"y":21.736},{"x":1752331862849,"y":24.445},{"x":1752331802683,"y":27.042},{"x":1752331742481,"y":25.672},{"x":1752331682283,"y":27.845},{"x":1752331622145,"y":36.692},{"x":1752331561935,"y":32.94},{"x":1752331501774,"y":20.041},{"x":1752331441586,"y":31.618},{"x":1752331381418,"y":15.622},{"x":1752331321239,"y":13.99},{"x":1752331261054,"y":12.157},{"x":1752331200887,"y":8.342},{"x":1752331140697,"y":37.146},{"x":1752331080543,"y":30.89},{"x":1752331020418,"y":21.587},{"x":1752330960258,"y":7.973},{"x":1752330902874,"y":30.162},{"x":1752330842704,"y":17.0},{"x":1752330782528,"y":15.317},{"x":1752330722365,"y":14.033},{"x":1752330662186,"y":14.21},{"x":1752330601941,"y":33.963},{"x":1752330541762,"y":51.556},{"x":1752330481612,"y":39.267},{"x":1752330421438,"y":37.666},{"x":1752330361267,"y":35.613},{"x":1752330301085,"y":17.294},{"x":1752330240896,"y":19.076},{"x":1752330180731,"y":35.556},{"x":1752330120569,"y":9.467},{"x":1752330060383,"y":19.239},{"x":1752330000223,"y":25.518},{"x":1752329942872,"y":31.161},{"x":1752329882649,"y":33.409},{"x":1752329822454,"y":26.274},{"x":1752329762272,"y":28.523},{"x":1752329702100,"y":15.4},{"x":1752329641902,"y":8.115},{"x":1752329581727,"y":15.474},{"x":1752329521557,"y":22.951},{"x":1752329461373,"y":27.822},{"x":1752329401206,"y":33.777},{"x":1752329341018,"y":30.977},{"x":1752329280851,"y":18.087},{"x":1752329220679,"y":22.302},{"x":1752329160553,"y":3.154},{"x":1752329100399,"y":10.566},{"x":1752329040206,"y":10.474},{"x":1752328982875,"y":17.579},{"x":1752328922713,"y":13.52},{"x":1752328862538,"y":7.843},{"x":1752328802379,"y":30.124},{"x":1752328742179,"y":38.937},{"x":1752328682015,"y":30.195},{"x":1752328621826,"y":46.063},{"x":1752328561660,"y":22.878},{"x":1752328501486,"y":14.997},{"x":1752328441301,"y":8.101},{"x":1752328381127,"y":3.873},{"x":1752328320922,"y":29.038},{"x":1752328260756,"y":35.52},{"x":1752328200589,"y":30.847},{"x":1752328140396,"y":37.984},{"x":1752328080288,"y":35.232},{"x":1752328022951,"y":34.499},{"x":1752327962769,"y":16.697},{"x":1752327902599,"y":5.707},{"x":1752327842431,"y":8.293},{"x":1752327782286,"y":36.681},{"x":1752327722096,"y":22.652},{"x":1752327661913,"y":21.032},{"x":1752327601735,"y":16.761},{"x":1752327541560,"y":17.609},{"x":1752327481394,"y":25.398},{"x":1752327421212,"y":16.583},{"x":1752327361013,"y":20.918},{"x":1752327300837,"y":9.899},{"x":1752327240659,"y":8.969},{"x":1752327180499,"y":24.303},{"x":1752327120399,"y":29.901},{"x":1752327062925,"y":41.11},{"x":1752327002744,"y":21.345},{"x":1752326942563,"y":34.556},{"x":1752326882383,"y":49.007},{"x":1752326822211,"y":32.155},{"x":1752326762038,"y":17.298},{"x":1752326701871,"y":14.605},{"x":1752326641695,"y":6.711},{"x":1752326581523,"y":21.81},{"x":1752326521357,"y":24.954},{"x":1752326461188,"y":29.901},{"x":1752326401006,"y":29.189},{"x":1752326340764,"y":34.266},{"x":1752326280600,"y":35.11},{"x":1752326220386,"y":35.134},{"x":1752326162994,"y":25.716},{"x":1752326102814,"y":11.044},{"x":1752326042655,"y":14.639},{"x":1752325982472,"y":24.636},{"x":1752325922301,"y":21.111},{"x":1752325862120,"y":21.91},{"x":1752325801938,"y":14.247},{"x":1752325741760,"y":20.852},{"x":1752325681585,"y":15.007},{"x":1752325621413,"y":6.485},{"x":1752325561227,"y":9.764},{"x":1752325501023,"y":20.126},{"x":1752325440842,"y":21.76},{"x":1752325380672,"y":14.901},{"x":1752325320514,"y":19.125},{"x":1752325260367,"y":10.857},{"x":1752325200070,"y":20.514},{"x":1752325142855,"y":9.558},{"x":1752325082677,"y":6.502},{"x":1752325022499,"y":27.86},{"x":1752324962328,"y":19.832},{"x":1752324902164,"y":12.913},{"x":1752324841983,"y":11.108},{"x":1752324781821,"y":21.62},{"x":1752324721652,"y":16.825},{"x":1752324661475,"y":18.658},{"x":1752324601309,"y":17.327},{"x":1752324541096,"y":15.125},{"x":1752324480908,"y":22.608},{"x":1752324420735,"y":38.324},{"x":1752324360649,"y":30.943},{"x":1752324300544,"y":38.157},{"x":1752324240189,"y":32.658},{"x":1752324182878,"y":15.837},{"x":1752324122690,"y":4.361},{"x":1752324062525,"y":6.298},{"x":1752324002356,"y":17.103},{"x":1752323942179,"y":9.119},{"x":1752323882033,"y":4.349},{"x":1752323821816,"y":43.302},{"x":1752323761651,"y":33.132},{"x":1752323701477,"y":16.064},{"x":1752323641301,"y":21.572},{"x":1752323581101,"y":19.754},{"x":1752323520907,"y":21.054},{"x":1752323460740,"y":8.722},{"x":1752323400684,"y":6.71},{"x":1752323340462,"y":23.55},{"x":1752323280251,"y":31.156},{"x":1752323222901,"y":26.887},{"x":1752323162720,"y":22.43},{"x":1752323102501,"y":24.138},{"x":1752323042330,"y":36.668},{"x":1752322982152,"y":21.916},{"x":1752322921973,"y":13.644},{"x":1752322861713,"y":7.128},{"x":1752322801526,"y":1.322},{"x":1752322741353,"y":16.558},{"x":1752322681188,"y":32.559},{"x":1752322620977,"y":15.091},{"x":1752322560791,"y":22.596},{"x":1752322500642,"y":18.43},{"x":1752322440474,"y":20.725},{"x":1752322380225,"y":20.035},{"x":1752322322884,"y":10.325},{"x":1752322262712,"y":10.327},{"x":1752322202534,"y":27.378},{"x":1752322142361,"y":17.397},{"x":1752322082210,"y":29.284},{"x":1752322021990,"y":9.903},{"x":1752321961811,"y":8.687},{"x":1752321901633,"y":12.569},{"x":1752321841469,"y":28.653},{"x":1752321781302,"y":25.994},{"x":1752321721126,"y":37.317},{"x":1752321660938,"y":37.184},{"x":1752321600899,"y":26.582},{"x":1752321540513,"y":31.407},{"x":1752321480414,"y":26.416},{"x":1752321423022,"y":12.481},{"x":1752321362825,"y":9.244},{"x":1752321302659,"y":20.849},{"x":1752321242486,"y":24.004},{"x":1752321182311,"y":13.891},{"x":1752321122138,"y":26.219},{"x":1752321061927,"y":23.211},{"x":1752321001758,"y":43.286},{"x":1752320941566,"y":43.492},{"x":1752320881390,"y":19.876},{"x":1752320821213,"y":15.617},{"x":1752320761019,"y":10.121},{"x":1752320700934,"y":44.336},{"x":1752320640582,"y":9.64},{"x":1752320580428,"y":21.006},{"x":1752320520246,"y":36.319},{"x":1752320462950,"y":30.826},{"x":1752320402791,"y":27.493},{"x":1752320342615,"y":17.827},{"x":1752320282434,"y":7.112},{"x":1752320222265,"y":7.568},{"x":1752320162090,"y":7.272},{"x":1752320101911,"y":10.222},{"x":1752320041726,"y":17.83},{"x":1752319981543,"y":2.845},{"x":1752319921362,"y":15.339},{"x":1752319861183,"y":8.934},{"x":1752319801022,"y":12.342},{"x":1752319740823,"y":35.995},{"x":1752319680668,"y":29.947},{"x":1752319620531,"y":44.455},{"x":1752319560331,"y":26.368},{"x":1752319502995,"y":24.456},{"x":1752319442823,"y":5.602},{"x":1752319382649,"y":15.579},{"x":1752319322454,"y":15.908},{"x":1752319262273,"y":2.89},{"x":1752319202060,"y":10.227},{"x":1752319141869,"y":10.968},{"x":1752319081635,"y":17.905},{"x":1752319021386,"y":16.364},{"x":1752318961191,"y":13.941},{"x":1752318900989,"y":17.796},{"x":1752318840779,"y":21.221},{"x":1752318780612,"y":20.583},{"x":1752318720463,"y":26.82},{"x":1752318660228,"y":34.87},{"x":1752318602913,"y":13.339},{"x":1752318542742,"y":4.539},{"x":1752318482574,"y":4.834},{"x":1752318422396,"y":5.425},{"x":1752318362220,"y":10.429},{"x":1752318302047,"y":35.956},{"x":1752318241866,"y":27.37},{"x":1752318181695,"y":21.993},{"x":1752318121558,"y":17.356},{"x":1752318061371,"y":27.099},{"x":1752318001258,"y":18.66},{"x":1752317940972,"y":12.667},{"x":1752317880795,"y":10.05},{"x":1752317820630,"y":20.08},{"x":1752317760494,"y":21.99},{"x":1752317700224,"y":23.101},{"x":1752317642898,"y":22.233},{"x":1752317582703,"y":40.206},{"x":1752317522529,"y":27.949},{"x":1752317462361,"y":30.807},{"x":1752317402177,"y":16.558},{"x":1752317341992,"y":13.724},{"x":1752317281822,"y":7.585},{"x":1752317221647,"y":23.38},{"x":1752317161478,"y":13.298},{"x":1752317101326,"y":22.504},{"x":1752317041135,"y":29.71},{"x":1752316980924,"y":33.012},{"x":1752316920757,"y":23.545},{"x":1752316860602,"y":24.581},{"x":1752316800502,"y":34.293},{"x":1752316740288,"y":15.578},{"x":1752316682954,"y":5.252},{"x":1752316622780,"y":25.588},{"x":1752316562650,"y":9.659},{"x":1752316502451,"y":15.292},{"x":1752316442276,"y":10.216},{"x":1752316382102,"y":15.763},{"x":1752316321924,"y":16.883},{"x":1752316261768,"y":10.276},{"x":1752316201604,"y":8.867},{"x":1752316141422,"y":17.841},{"x":1752316081258,"y":43.371},{"x":1752316021082,"y":35.452},{"x":1752315960869,"y":30.068},{"x":1752315900697,"y":20.842},{"x":1752315840515,"y":26.506},{"x":1752315780451,"y":8.339},{"x":1752315722947,"y":5.333},{"x":1752315662770,"y":6.755},{"x":1752315602597,"y":3.302},{"x":1752315542382,"y":18.211},{"x":1752315482234,"y":11.164},{"x":1752315421931,"y":30.735},{"x":1752315361744,"y":33.054},{"x":1752315301580,"y":18.575},{"x":1752315241382,"y":32.68},{"x":1752315181202,"y":32.996},{"x":1752315121007,"y":13.755},{"x":1752315060837,"y":25.948},{"x":1752315000718,"y":25.447},{"x":1752314940532,"y":32.779},{"x":1752314880438,"y":57.449},{"x":1752314822972,"y":33.916},{"x":1752314762785,"y":41.577},{"x":1752314702600,"y":33.17},{"x":1752314642419,"y":17.888},{"x":1752314582246,"y":17.245},{"x":1752314522072,"y":30.632},{"x":1752314461900,"y":29.603},{"x":1752314401753,"y":30.675},{"x":1752314341503,"y":31.973},{"x":1752314281330,"y":35.366},{"x":1752314221143,"y":37.719},{"x":1752314160955,"y":24.87},{"x":1752314100798,"y":24.463},{"x":1752314040618,"y":25.233},{"x":1752313980453,"y":18.259},{"x":1752313920361,"y":17.281},{"x":1752313862965,"y":32.771},{"x":1752313802785,"y":14.524},{"x":1752313742628,"y":5.656},{"x":1752313682436,"y":17.401},{"x":1752313622267,"y":5.317},{"x":1752313562112,"y":8.669},{"x":1752313501924,"y":19.704},{"x":1752313441740,"y":26.691},{"x":1752313381576,"y":16.515},{"x":1752313321409,"y":26.458},{"x":1752313261241,"y":20.288},{"x":1752313201056,"y":19.762},{"x":1752313140853,"y":29.025},{"x":1752313080683,"y":23.893},{"x":1752313020604,"y":14.008},{"x":1752312960385,"y":27.337},{"x":1752312900214,"y":20.699},{"x":1752312842885,"y":30.59},{"x":1752312782709,"y":36.257},{"x":1752312722526,"y":23.819},{"x":1752312662344,"y":30.927},{"x":1752312602166,"y":23.702},{"x":1752312541978,"y":34.268},{"x":1752312481805,"y":32.808},{"x":1752312421633,"y":23.496},{"x":1752312361460,"y":24.597},{"x":1752312301299,"y":18.561},{"x":1752312241159,"y":20.03},{"x":1752312180941,"y":19.887},{"x":1752312120764,"y":35.791},{"x":1752312060660,"y":16.146},{"x":1752312000519,"y":8.002},{"x":1752311943015,"y":13.284},{"x":1752311882785,"y":18.201},{"x":1752311822571,"y":20.096},{"x":1752311762363,"y":29.697},{"x":1752311702196,"y":11.313},{"x":1752311642027,"y":23.88},{"x":1752311581846,"y":29.699},{"x":1752311521670,"y":24.727},{"x":1752311461491,"y":33.038},{"x":1752311401326,"y":49.319},{"x":1752311341146,"y":23.704},{"x":1752311280947,"y":14.943},{"x":1752311220771,"y":13.05},{"x":1752311160609,"y":24.816},{"x":1752311100498,"y":32.503},{"x":1752311040260,"y":12.27},{"x":1752310982937,"y":5.26},{"x":1752310922755,"y":15.832},{"x":1752310862580,"y":31.221},{"x":1752310802399,"y":21.799},{"x":1752310742211,"y":23.665},{"x":1752310682022,"y":20.63},{"x":1752310621846,"y":24.965},{"x":1752310561664,"y":20.511},{"x":1752310501489,"y":15.206},{"x":1752310441305,"y":29.716},{"x":1752310381122,"y":34.012},{"x":1752310320929,"y":28.67},{"x":1752310260756,"y":34.169},{"x":1752310200686,"y":22.717},{"x":1752310140394,"y":23.176},{"x":1752310080307,"y":9.655},{"x":1752310022922,"y":25.288},{"x":1752309962743,"y":23.727},{"x":1752309902579,"y":27.932},{"x":1752309842401,"y":27.289},{"x":1752309782223,"y":42.523},{"x":1752309722035,"y":67.642},{"x":1752309661837,"y":55.524},{"x":1752309601659,"y":57.773},{"x":1752309541470,"y":56.019},{"x":1752309481299,"y":35.324},{"x":1752309421126,"y":29.574},{"x":1752309360927,"y":22.963},{"x":1752309300755,"y":32.678},{"x":1752309240626,"y":44.204},{"x":1752309180414,"y":37.633},{"x":1752309123029,"y":43.859},{"x":1752309062819,"y":29.075},{"x":1752309002640,"y":37.12},{"x":1752308942452,"y":40.142},{"x":1752308882279,"y":34.723},{"x":1752308822080,"y":26.257},{"x":1752308761898,"y":28.591},{"x":1752308701725,"y":32.982},{"x":1752308641544,"y":30.092},{"x":1752308581369,"y":27.464},{"x":1752308521204,"y":25.928},{"x":1752308461009,"y":32.161},{"x":1752308400866,"y":45.542},{"x":1752308340649,"y":40.337},{"x":1752308280590,"y":40.154},{"x":1752308220283,"y":45.957},{"x":1752308162937,"y":33.83},{"x":1752308102754,"y":31.772},{"x":1752308042583,"y":26.823},{"x":1752307982408,"y":26.448},{"x":1752307922207,"y":30.854},{"x":1752307861994,"y":46.236},{"x":1752307801818,"y":48.727},{"x":1752307741588,"y":40.629},{"x":1752307681403,"y":41.57},{"x":1752307621228,"y":51.436},{"x":1752307561037,"y":53.446},{"x":1752307500860,"y":41.677},{"x":1752307440711,"y":40.332},{"x":1752307380583,"y":32.927},{"x":1752307320386,"y":24.304},{"x":1752307260108,"y":16.867},{"x":1752307202883,"y":23.798},{"x":1752307142669,"y":21.866},{"x":1752307082496,"y":24.91},{"x":1752307022315,"y":31.15},{"x":1752306962133,"y":38.481},{"x":1752306901923,"y":26.198},{"x":1752306841753,"y":22.603},{"x":1752306781562,"y":28.943},{"x":1752306721390,"y":26.096},{"x":1752306661223,"y":23.045},{"x":1752306601040,"y":48.446},{"x":1752306540854,"y":41.599},{"x":1752306480704,"y":43.274},{"x":1752306420528,"y":41.066},{"x":1752306360491,"y":44.203},{"x":1752306302950,"y":31.168},{"x":1752306242767,"y":27.513},{"x":1752306182591,"y":27.867},{"x":1752306122398,"y":28.159},{"x":1752306062222,"y":29.829},{"x":1752306002048,"y":31.921},{"x":1752305941856,"y":29.765},{"x":1752305881683,"y":31.832},{"x":1752305821505,"y":38.903},{"x":1752305761323,"y":53.954},{"x":1752305701159,"y":27.19},{"x":1752305640949,"y":24.573},{"x":1752305580774,"y":28.724},{"x":1752305520648,"y":35.241},{"x":1752305460518,"y":31.243},{"x":1752305400306,"y":37.477},{"x":1752305342910,"y":43.692},{"x":1752305282745,"y":39.862},{"x":1752305222559,"y":32.47},{"x":1752305162386,"y":47.597},{"x":1752305102200,"y":44.306},{"x":1752305042023,"y":37.836},{"x":1752304981850,"y":32.114},{"x":1752304921681,"y":32.833},{"x":1752304861507,"y":21.945},{"x":1752304801349,"y":25.158},{"x":1752304741139,"y":20.74},{"x":1752304680958,"y":26.944},{"x":1752304620754,"y":30.455},{"x":1752304560606,"y":29.043},{"x":1752304500455,"y":25.889},{"x":1752304443010,"y":35.154},{"x":1752304382838,"y":48.286},{"x":1752304322655,"y":53.884},{"x":1752304262488,"y":52.271},{"x":1752304202316,"y":46.914},{"x":1752304142160,"y":51.099},{"x":1752304081961,"y":52.316},{"x":1752304021758,"y":51.719},{"x":1752303961563,"y":47.265},{"x":1752303901398,"y":60.108},{"x":1752303841220,"y":64.908},{"x":1752303781012,"y":60.302},{"x":1752303720835,"y":59.588},{"x":1752303660672,"y":54.969},{"x":1752303600615,"y":55.22},{"x":1752303540309,"y":58.717},{"x":1752303482975,"y":39.037},{"x":1752303422799,"y":36.456},{"x":1752303362610,"y":36.912},{"x":1752303302432,"y":33.0},{"x":1752303242252,"y":36.971},{"x":1752303182076,"y":35.454},{"x":1752303121895,"y":36.942},{"x":1752303061718,"y":40.171},{"x":1752303001575,"y":24.06},{"x":1752302941367,"y":36.596},{"x":1752302881205,"y":40.34},{"x":1752302821016,"y":35.544},{"x":1752302760836,"y":33.7},{"x":1752302700763,"y":44.417},{"x":1752302640504,"y":30.183},{"x":1752302580353,"y":31.651},{"x":1752302522997,"y":29.244},{"x":1752302462821,"y":30.658},{"x":1752302402667,"y":25.256},{"x":1752302342494,"y":22.747},{"x":1752302282321,"y":28.388},{"x":1752302222137,"y":28.202},{"x":1752302161943,"y":37.999},{"x":1752302101776,"y":27.177},{"x":1752302041596,"y":38.911},{"x":1752301981407,"y":35.375},{"x":1752301921248,"y":27.528},{"x":1752301861053,"y":30.373},{"x":1752301800903,"y":44.966},{"x":1752301740694,"y":38.561},{"x":1752301680606,"y":39.863},{"x":1752301620378,"y":36.301},{"x":1752301563027,"y":48.045},{"x":1752301502835,"y":24.397},{"x":1752301442654,"y":46.238},{"x":1752301382474,"y":31.375},{"x":1752301322315,"y":43.605},{"x":1752301262122,"y":43.775},{"x":1752301201920,"y":45.4},{"x":1752301141742,"y":26.756},{"x":1752301081597,"y":26.043},{"x":1752301021356,"y":25.943},{"x":1752300961183,"y":27.042},{"x":1752300901010,"y":34.954},{"x":1752300840809,"y":33.499},{"x":1752300780643,"y":35.877},{"x":1752300720540,"y":47.4},{"x":1752300660337,"y":42.733},{"x":1752300602970,"y":36.237},{"x":1752300542787,"y":37.005},{"x":1752300482603,"y":31.215},{"x":1752300422411,"y":35.43},{"x":1752300362239,"y":32.536},{"x":1752300302068,"y":31.892},{"x":1752300241882,"y":26.457},{"x":1752300181700,"y":25.388},{"x":1752300121547,"y":28.517},{"x":1752300061375,"y":25.939},{"x":1752300001217,"y":26.091},{"x":1752299940966,"y":26.431},{"x":1752299880788,"y":28.161},{"x":1752299820612,"y":25.89},{"x":1752299760525,"y":30.37},{"x":1752299700372,"y":27.988},{"x":1752299642957,"y":28.171},{"x":1752299582795,"y":26.771},{"x":1752299522617,"y":22.178},{"x":1752299462441,"y":26.746},{"x":1752299402267,"y":29.779},{"x":1752299342097,"y":30.014},{"x":1752299281917,"y":34.467},{"x":1752299221753,"y":33.94},{"x":1752299161589,"y":40.637},{"x":1752299101428,"y":36.4},{"x":1752299041260,"y":34.265},{"x":1752298981084,"y":28.972},{"x":1752298920906,"y":26.262},{"x":1752298860731,"y":25.72},{"x":1752298800635,"y":27.935},{"x":1752298740404,"y":27.726},{"x":1752298680221,"y":24.826},{"x":1752298622905,"y":24.205},{"x":1752298562720,"y":23.636},{"x":1752298502543,"y":23.371},{"x":1752298442377,"y":26.832},{"x":1752298382208,"y":22.765},{"x":1752298322025,"y":26.106},{"x":1752298261851,"y":26.643},{"x":1752298201672,"y":28.239},{"x":1752298141496,"y":27.915},{"x":1752298081322,"y":32.104},{"x":1752298021127,"y":34.503},{"x":1752297960934,"y":29.15},{"x":1752297900794,"y":28.749},{"x":1752297840651,"y":28.448},{"x":1752297780468,"y":29.07},{"x":1752297720289,"y":27.634},{"x":1752297663025,"y":23.311},{"x":1752297602849,"y":24.297},{"x":1752297542619,"y":27.555},{"x":1752297482439,"y":26.896},{"x":1752297422211,"y":32.739},{"x":1752297362015,"y":27.179},{"x":1752297301833,"y":28.327},{"x":1752297241648,"y":27.269},{"x":1752297181475,"y":25.08},{"x":1752297121313,"y":25.35},{"x":1752297061127,"y":27.216},{"x":1752297000929,"y":25.569},{"x":1752296940757,"y":22.953},{"x":1752296880599,"y":22.923},{"x":1752296820427,"y":28.658},{"x":1752296760283,"y":29.157},{"x":1752296702928,"y":27.581},{"x":1752296642746,"y":25.452},{"x":1752296582579,"y":25.368},{"x":1752296522407,"y":26.163},{"x":1752296462249,"y":25.536},{"x":1752296402280,"y":28.939},{"x":1752296341877,"y":26.098},{"x":1752296281710,"y":27.664},{"x":1752296221538,"y":23.779},{"x":1752296161344,"y":24.441},{"x":1752296101184,"y":27.257},{"x":1752296040993,"y":23.901},{"x":1752295980836,"y":30.526},{"x":1752295920680,"y":29.573},{"x":1752295860501,"y":31.321},{"x":1752295800387,"y":29.049},{"x":1752295740091,"y":31.016},{"x":1752295682857,"y":27.562},{"x":1752295622682,"y":28.02},{"x":1752295562525,"y":24.234},{"x":1752295502365,"y":27.783},{"x":1752295442196,"y":27.204},{"x":1752295382025,"y":24.087},{"x":1752295321889,"y":24.312},{"x":1752295261682,"y":24.889},{"x":1752295201514,"y":28.729},{"x":1752295141330,"y":27.945},{"x":1752295081203,"y":30.43},{"x":1752295020983,"y":37.919},{"x":1752294960814,"y":47.042},{"x":1752294900672,"y":43.335},{"x":1752294840495,"y":43.542},{"x":1752294780350,"y":36.704},{"x":1752294720269,"y":32.313},{"x":1752294662870,"y":23.478},{"x":1752294602690,"y":25.598},{"x":1752294542533,"y":25.56},{"x":1752294482364,"y":27.359},{"x":1752294422199,"y":29.024},{"x":1752294362034,"y":24.684},{"x":1752294301865,"y":26.08},{"x":1752294241698,"y":29.806},{"x":1752294181531,"y":28.654},{"x":1752294121363,"y":38.438},{"x":1752294061198,"y":35.409},{"x":1752294001004,"y":35.544},{"x":1752293940817,"y":33.755},{"x":1752293880632,"y":36.848},{"x":1752293820548,"y":28.334},{"x":1752293760314,"y":26.14},{"x":1752293702965,"y":25.192},{"x":1752293642786,"y":29.964},{"x":1752293582624,"y":34.234},{"x":1752293522446,"y":34.653},{"x":1752293462283,"y":35.979},{"x":1752293402115,"y":36.66},{"x":1752293341942,"y":28.475},{"x":1752293281755,"y":28.544},{"x":1752293221595,"y":28.518},{"x":1752293161420,"y":23.539},{"x":1752293101250,"y":30.044},{"x":1752293041064,"y":32.838},{"x":1752292980891,"y":25.026},{"x":1752292920726,"y":27.942},{"x":1752292860604,"y":29.904},{"x":1752292800389,"y":47.609},{"x":1752292742927,"y":31.494},{"x":1752292682755,"y":27.66},{"x":1752292622584,"y":25.748},{"x":1752292562398,"y":28.972},{"x":1752292502229,"y":27.292},{"x":1752292442048,"y":26.362},{"x":1752292381872,"y":25.132},{"x":1752292321692,"y":38.036},{"x":1752292261507,"y":23.601},{"x":1752292201337,"y":23.326},{"x":1752292141165,"y":27.643},{"x":1752292080977,"y":32.808},{"x":1752292020807,"y":31.625},{"x":1752291960666,"y":28.876},{"x":1752291900641,"y":25.722},{"x":1752291840318,"y":25.465},{"x":1752291782990,"y":26.115},{"x":1752291722795,"y":30.678},{"x":1752291662625,"y":27.056},{"x":1752291602446,"y":26.477},{"x":1752291542269,"y":45.112},{"x":1752291482093,"y":47.402},{"x":1752291421918,"y":57.609},{"x":1752291361730,"y":52.087},{"x":1752291301567,"y":40.714},{"x":1752291241376,"y":30.015},{"x":1752291181198,"y":28.368},{"x":1752291120993,"y":25.743},{"x":1752291060835,"y":25.973},{"x":1752291000733,"y":24.134},{"x":1752290940446,"y":25.39},{"x":1752290880345,"y":25.477},{"x":1752290822936,"y":25.97},{"x":1752290762765,"y":31.092},{"x":1752290702595,"y":27.196},{"x":1752290642424,"y":32.375},{"x":1752290582277,"y":28.002},{"x":1752290522080,"y":28.05},{"x":1752290461895,"y":29.935},{"x":1752290401732,"y":24.344},{"x":1752290341556,"y":32.609},{"x":1752290281407,"y":40.716},{"x":1752290221267,"y":41.263},{"x":1752290161020,"y":42.164},{"x":1752290100833,"y":46.847},{"x":1752290040632,"y":33.08},{"x":1752289980496,"y":28.507},{"x":1752289920359,"y":28.063},{"x":1752289860130,"y":30.036},{"x":1752289802852,"y":30.529},{"x":1752289742675,"y":27.925},{"x":1752289682433,"y":26.019},{"x":1752289622250,"y":24.839},{"x":1752289562095,"y":28.209},{"x":1752289501912,"y":33.064},{"x":1752289442586,"y":36.273},{"x":1752289382107,"y":31.732},{"x":1752289321882,"y":34.324},{"x":1752289261633,"y":33.561},{"x":1752289202076,"y":28.983},{"x":1752289141708,"y":32.377},{"x":1752289081539,"y":32.335},{"x":1752289021340,"y":34.386},{"x":1752288961156,"y":29.842},{"x":1752288900958,"y":28.797},{"x":1752288840789,"y":27.969},{"x":1752288780619,"y":30.057},{"x":1752288720510,"y":28.172},{"x":1752288660261,"y":25.37},{"x":1752288602929,"y":26.225},{"x":1752288542745,"y":25.495},{"x":1752288482563,"y":41.467},{"x":1752288422378,"y":37.263},{"x":1752288362204,"y":48.196},{"x":1752288302034,"y":47.528},{"x":1752288241845,"y":51.138},{"x":1752288181676,"y":43.785},{"x":1752288121502,"y":39.506},{"x":1752288061339,"y":28.104},{"x":1752288001174,"y":28.232},{"x":1752287940992,"y":25.781},{"x":1752287880792,"y":28.166},{"x":1752287820646,"y":30.895},{"x":1752287760526,"y":27.634},{"x":1752287700343,"y":26.197},{"x":1752287642975,"y":28.603},{"x":1752287582786,"y":29.639},{"x":1752287522618,"y":24.964},{"x":1752287462446,"y":29.555},{"x":1752287402278,"y":29.576},{"x":1752287342100,"y":28.134},{"x":1752287281916,"y":25.738},{"x":1752287221766,"y":24.328},{"x":1752287161586,"y":27.708},{"x":1752287101418,"y":24.065},{"x":1752287041235,"y":34.52},{"x":1752286981036,"y":30.232},{"x":1752286920873,"y":31.091},{"x":1752286860697,"y":29.268},{"x":1752286800640,"y":27.487},{"x":1752286740373,"y":30.035},{"x":1752286680141,"y":25.403},{"x":1752286622839,"y":28.013},{"x":1752286562670,"y":25.571},{"x":1752286502496,"y":31.862},{"x":1752286442325,"y":25.09},{"x":1752286382135,"y":24.804},{"x":1752286321958,"y":25.034},{"x":1752286261782,"y":24.812},{"x":1752286201610,"y":29.043},{"x":1752286141434,"y":30.201},{"x":1752286081255,"y":28.017},{"x":1752286021085,"y":27.425},{"x":1752285960885,"y":25.602},{"x":1752285900739,"y":28.035},{"x":1752285840604,"y":27.783},{"x":1752285780408,"y":24.916},{"x":1752285720282,"y":24.928},{"x":1752285662891,"y":24.583},{"x":1752285602731,"y":26.768},{"x":1752285542536,"y":25.977},{"x":1752285482364,"y":26.44},{"x":1752285422198,"y":27.558},{"x":1752285362030,"y":29.519},{"x":1752285301838,"y":27.417},{"x":1752285241682,"y":36.82},{"x":1752285181508,"y":48.151},{"x":1752285121338,"y":48.943},{"x":1752285061166,"y":45.436},{"x":1752285001001,"y":42.545},{"x":1752284940795,"y":25.764},{"x":1752284880650,"y":30.952},{"x":1752284820454,"y":30.427},{"x":1752284760301,"y":28.799},{"x":1752284702970,"y":27.962},{"x":1752284642814,"y":27.422},{"x":1752284582638,"y":50.801},{"x":1752284522470,"y":54.172},{"x":1752284462295,"y":50.377},{"x":1752284402135,"y":51.332},{"x":1752284341950,"y":52.755},{"x":1752284281809,"y":29.935},{"x":1752284221632,"y":28.945},{"x":1752284161447,"y":30.409},{"x":1752284101291,"y":30.413},{"x":1752284041103,"y":27.303},{"x":1752283980912,"y":26.822},{"x":1752283920737,"y":26.746},{"x":1752283860570,"y":29.137},{"x":1752283800471,"y":27.574},{"x":1752283740097,"y":30.243},{"x":1752283682886,"y":27.088},{"x":1752283622719,"y":27.258},{"x":1752283562546,"y":33.238},{"x":1752283502360,"y":29.591},{"x":1752283442190,"y":36.741},{"x":1752283382002,"y":37.893},{"x":1752283321816,"y":35.737},{"x":1752283261639,"y":34.243},{"x":1752283201480,"y":36.744},{"x":1752283141282,"y":25.7},{"x":1752283081087,"y":26.57},{"x":1752283020871,"y":28.178},{"x":1752282960696,"y":30.475},{"x":1752282900764,"y":33.58},{"x":1752282840362,"y":25.466},{"x":1752282780233,"y":24.595},{"x":1752282722892,"y":30.168},{"x":1752282662732,"y":36.308},{"x":1752282602529,"y":30.04},{"x":1752282542345,"y":28.767},{"x":1752282482171,"y":30.305},{"x":1752282421981,"y":29.118},{"x":1752282361812,"y":28.341},{"x":1752282301612,"y":36.49},{"x":1752282241438,"y":38.519},{"x":1752282181275,"y":36.186},{"x":1752282121120,"y":35.271},{"x":1752282060903,"y":31.816},{"x":1752282000799,"y":27.813},{"x":1752281940569,"y":24.531},{"x":1752281880426,"y":28.549},{"x":1752281820211,"y":28.319},{"x":1752281762935,"y":30.305},{"x":1752281702756,"y":30.972},{"x":1752281642579,"y":28.171},{"x":1752281582412,"y":31.59},{"x":1752281522229,"y":29.322},{"x":1752281462048,"y":25.629},{"x":1752281401875,"y":25.394},{"x":1752281341720,"y":27.65},{"x":1752281281549,"y":30.34},{"x":1752281221387,"y":28.74},{"x":1752281161216,"y":28.292},{"x":1752281101035,"y":27.069},{"x":1752281040782,"y":29.301},{"x":1752280980584,"y":27.169},{"x":1752280920455,"y":25.982},{"x":1752280860299,"y":33.382},{"x":1752280802942,"y":26.628},{"x":1752280742755,"y":27.572},{"x":1752280682580,"y":28.436},{"x":1752280622405,"y":30.773},{"x":1752280562237,"y":30.556},{"x":1752280502055,"y":29.327},{"x":1752280441893,"y":24.105},{"x":1752280381718,"y":27.375},{"x":1752280321540,"y":26.917},{"x":1752280261358,"y":35.577},{"x":1752280201191,"y":43.825},{"x":1752280140992,"y":43.024},{"x":1752280080827,"y":40.819},{"x":1752280020654,"y":41.697},{"x":1752279960529,"y":36.231},{"x":1752279900709,"y":32.018},{"x":1752279840164,"y":29.394},{"x":1752279782874,"y":26.696},{"x":1752279722702,"y":30.285},{"x":1752279662532,"y":28.761},{"x":1752279602351,"y":50.788},{"x":1752279542153,"y":51.198},{"x":1752279481965,"y":47.772},{"x":1752279421757,"y":45.203},{"x":1752279361579,"y":44.817},{"x":1752279301413,"y":27.122},{"x":1752279241240,"y":27.679},{"x":1752279181045,"y":26.694},{"x":1752279120862,"y":34.535},{"x":1752279060696,"y":29.149},{"x":1752279000566,"y":27.312},{"x":1752278940315,"y":29.859},{"x":1752278883024,"y":25.712},{"x":1752278822821,"y":24.441},{"x":1752278762653,"y":25.82},{"x":1752278702492,"y":25.608},{"x":1752278642307,"y":27.451},{"x":1752278582113,"y":28.829},{"x":1752278521934,"y":28.8},{"x":1752278461748,"y":31.095},{"x":1752278401627,"y":31.551},{"x":1752278341360,"y":29.012},{"x":1752278281187,"y":31.027},{"x":1752278220997,"y":25.092},{"x":1752278160851,"y":26.951},{"x":1752278100682,"y":27.56},{"x":1752278040501,"y":27.248},{"x":1752277980364,"y":26.587},{"x":1752277923012,"y":31.953},{"x":1752277862818,"y":27.618},{"x":1752277802644,"y":27.106},{"x":1752277742476,"y":35.523},{"x":1752277682303,"y":32.181},{"x":1752277622125,"y":30.313},{"x":1752277561937,"y":29.095},{"x":1752277501765,"y":31.451},{"x":1752277441599,"y":26.704},{"x":1752277381431,"y":25.958},{"x":1752277321248,"y":30.417},{"x":1752277261070,"y":27.974},{"x":1752277200901,"y":26.033},{"x":1752277140706,"y":25.676},{"x":1752277080540,"y":28.15},{"x":1752277020435,"y":34.672},{"x":1752276960220,"y":27.05},{"x":1752276902940,"y":30.293},{"x":1752276842777,"y":28.905},{"x":1752276782589,"y":32.395},{"x":1752276722405,"y":27.937},{"x":1752276662224,"y":25.675},{"x":1752276602070,"y":24.404},{"x":1752276541846,"y":25.71},{"x":1752276481670,"y":23.912},{"x":1752276421499,"y":28.068},{"x":1752276361302,"y":31.623},{"x":1752276301127,"y":32.71},{"x":1752276240930,"y":28.631},{"x":1752276180748,"y":27.549},{"x":1752276120611,"y":35.595},{"x":1752276060473,"y":43.899},{"x":1752276000296,"y":46.24},{"x":1752275942968,"y":46.235},{"x":1752275882793,"y":48.357},{"x":1752275822573,"y":36.62},{"x":1752275762394,"y":39.656},{"x":1752275702225,"y":31.379},{"x":1752275642047,"y":34.043},{"x":1752275581865,"y":32.589},{"x":1752275521693,"y":31.978},{"x":1752275461525,"y":32.866},{"x":1752275401327,"y":30.86},{"x":1752275341136,"y":32.582},{"x":1752275280921,"y":32.328},{"x":1752275220742,"y":28.476},{"x":1752275160585,"y":31.561},{"x":1752275100454,"y":24.999},{"x":1752275040292,"y":25.512},{"x":1752274982925,"y":29.896},{"x":1752274922759,"y":26.667},{"x":1752274862578,"y":27.572},{"x":1752274802389,"y":33.506},{"x":1752274742197,"y":27.715},{"x":1752274682016,"y":27.339},{"x":1752274621846,"y":31.649},{"x":1752274561672,"y":32.58},{"x":1752274501495,"y":29.662},{"x":1752274441313,"y":31.481},{"x":1752274381152,"y":27.937},{"x":1752274320945,"y":43.678},{"x":1752274260722,"y":38.234},{"x":1752274200584,"y":42.043},{"x":1752274140435,"y":39.396},{"x":1752274080195,"y":40.323},{"x":1752274022927,"y":27.473},{"x":1752273962747,"y":29.029},{"x":1752273902592,"y":28.82},{"x":1752273842401,"y":25.413},{"x":1752273782222,"y":24.949},{"x":1752273722038,"y":29.459},{"x":1752273661852,"y":29.656},{"x":1752273601675,"y":32.132},{"x":1752273541488,"y":33.837},{"x":1752273481313,"y":30.13},{"x":1752273421139,"y":30.625},{"x":1752273360977,"y":31.158},{"x":1752273300793,"y":33.805},{"x":1752273240633,"y":26.599},{"x":1752273180474,"y":25.676},{"x":1752273120416,"y":26.905},{"x":1752273060171,"y":30.247},{"x":1752273002851,"y":26.027},{"x":1752272942672,"y":26.309},{"x":1752272882505,"y":37.914},{"x":1752272822333,"y":36.995},{"x":1752272762141,"y":39.358},{"x":1752272701986,"y":39.048},{"x":1752272641798,"y":37.234},{"x":1752272581619,"y":31.758},{"x":1752272521441,"y":35.127},{"x":1752272461269,"y":33.052},{"x":1752272401099,"y":31.597},{"x":1752272340830,"y":33.352},{"x":1752272280632,"y":30.712},{"x":1752272220556,"y":28.716},{"x":1752272160269,"y":28.088},{"x":1752272102954,"y":28.95},{"x":1752272042792,"y":33.333},{"x":1752271982622,"y":26.818},{"x":1752271922447,"y":32.084},{"x":1752271862277,"y":28.789},{"x":1752271802109,"y":31.644},{"x":1752271741929,"y":32.266},{"x":1752271681743,"y":27.896},{"x":1752271621568,"y":28.544},{"x":1752271561396,"y":29.113},{"x":1752271501231,"y":37.321},{"x":1752271441029,"y":38.701},{"x":1752271380789,"y":40.731},{"x":1752271320607,"y":42.874},{"x":1752271260489,"y":44.302},{"x":1752271203038,"y":44.128},{"x":1752271142844,"y":42.001},{"x":1752271082659,"y":41.527},{"x":1752271022476,"y":48.248},{"x":1752270962308,"y":41.48},{"x":1752270902129,"y":40.263},{"x":1752270841952,"y":40.705},{"x":1752270781765,"y":36.069},{"x":1752270721645,"y":38.756},{"x":1752270661416,"y":37.258},{"x":1752270601265,"y":34.728},{"x":1752270541075,"y":39.745},{"x":1752270480894,"y":37.392},{"x":1752270420721,"y":31.002},{"x":1752270360550,"y":31.364},{"x":1752270300492,"y":40.613},{"x":1752270240251,"y":30.896},{"x":1752270182904,"y":33.376},{"x":1752270122723,"y":38.655},{"x":1752270062541,"y":35.436},{"x":1752270002369,"y":52.841},{"x":1752269942200,"y":32.694},{"x":1752269882009,"y":40.136},{"x":1752269821788,"y":41.318},{"x":1752269761605,"y":38.087},{"x":1752269701441,"y":29.459},{"x":1752269641258,"y":33.164},{"x":1752269581093,"y":31.896},{"x":1752269520902,"y":48.643},{"x":1752269460738,"y":31.381},{"x":1752269400742,"y":32.668},{"x":1752269340349,"y":34.623},{"x":1752269282974,"y":35.851},{"x":1752269222770,"y":39.613},{"x":1752269162607,"y":49.091},{"x":1752269102417,"y":40.631},{"x":1752269042243,"y":34.667},{"x":1752268982071,"y":37.563},{"x":1752268921892,"y":41.264},{"x":1752268861724,"y":51.822},{"x":1752268801537,"y":36.075},{"x":1752268741349,"y":39.965},{"x":1752268681180,"y":38.869},{"x":1752268620937,"y":44.715},{"x":1752268560764,"y":37.476},{"x":1752268500611,"y":36.767},{"x":1752268440428,"y":36.344},{"x":1752268380344,"y":33.819},{"x":1752268322949,"y":55.037},{"x":1752268262785,"y":36.778},{"x":1752268202603,"y":35.261},{"x":1752268142409,"y":38.814},{"x":1752268082241,"y":38.409},{"x":1752268022063,"y":46.451},{"x":1752267961884,"y":47.245},{"x":1752267901730,"y":42.097},{"x":1752267841556,"y":42.174},{"x":1752267781393,"y":42.405},{"x":1752267721225,"y":47.436},{"x":1752267661044,"y":37.293},{"x":1752267600975,"y":39.666},{"x":1752267540666,"y":40.03},{"x":1752267480576,"y":39.765},{"x":1752267420366,"y":36.85},{"x":1752267360216,"y":34.261},{"x":1752267302891,"y":37.041},{"x":1752267242713,"y":49.402},{"x":1752267182533,"y":45.187},{"x":1752267122358,"y":44.257},{"x":1752267062124,"y":48.649},{"x":1752267001967,"y":38.695},{"x":1752266941761,"y":36.33},{"x":1752266881570,"y":43.344},{"x":1752266821406,"y":39.532},{"x":1752266761242,"y":51.457},{"x":1752266701061,"y":37.365},{"x":1752266640872,"y":40.102},{"x":1752266580713,"y":36.218},{"x":1752266520593,"y":45.573},{"x":1752266460378,"y":48.541},{"x":1752266400084,"y":36.764},{"x":1752266342833,"y":40.377},{"x":1752266282666,"y":40.944},{"x":1752266222495,"y":41.697},{"x":1752266162321,"y":42.046},{"x":1752266102130,"y":34.887},{"x":1752266041949,"y":49.946},{"x":1752265981777,"y":40.165},{"x":1752265921604,"y":36.892},{"x":1752265861431,"y":41.135},{"x":1752265801301,"y":36.379},{"x":1752265741066,"y":34.975},{"x":1752265680884,"y":37.508},{"x":1752265620701,"y":38.977},{"x":1752265560570,"y":36.179},{"x":1752265500374,"y":32.275},{"x":1752265443031,"y":30.228},{"x":1752265382834,"y":32.596},{"x":1752265322656,"y":29.064},{"x":1752265262486,"y":47.705},{"x":1752265202311,"y":57.727},{"x":1752265142137,"y":53.933},{"x":1752265081895,"y":54.039},{"x":1752265021706,"y":52.388},{"x":1752264961536,"y":37.087},{"x":1752264901350,"y":35.791},{"x":1752264841179,"y":41.485},{"x":1752264780989,"y":52.967},{"x":1752264720830,"y":39.072},{"x":1752264660669,"y":48.311},{"x":1752264600663,"y":60.636},{"x":1752264540468,"y":42.631},{"x":1752264482967,"y":45.784},{"x":1752264422781,"y":43.657},{"x":1752264362636,"y":34.008},{"x":1752264302454,"y":36.541},{"x":1752264242285,"y":31.635},{"x":1752264182122,"y":33.902},{"x":1752264121945,"y":29.653},{"x":1752264061760,"y":34.762},{"x":1752264001667,"y":34.375},{"x":1752263941404,"y":33.668},{"x":1752263881222,"y":37.19},{"x":1752263821031,"y":35.359},{"x":1752263760867,"y":35.282},{"x":1752263700724,"y":39.391},{"x":1752263640562,"y":39.903},{"x":1752263580423,"y":37.945},{"x":1752263520280,"y":35.208},{"x":1752263462900,"y":33.362},{"x":1752263402738,"y":42.502},{"x":1752263342566,"y":35.443},{"x":1752263282413,"y":41.761},{"x":1752263222253,"y":54.132},{"x":1752263162094,"y":54.42},{"x":1752263101907,"y":53.977},{"x":1752263041738,"y":47.284},{"x":1752262981572,"y":38.937},{"x":1752262921404,"y":34.398},{"x":1752262861167,"y":35.066},{"x":1752262800967,"y":39.94},{"x":1752262740803,"y":49.788},{"x":1752262680631,"y":32.728},{"x":1752262620517,"y":44.876},{"x":1752262560341,"y":50.392},{"x":1752262503028,"y":47.605},{"x":1752262442828,"y":43.658},{"x":1752262382665,"y":44.009},{"x":1752262322497,"y":49.668},{"x":1752262262338,"y":34.057},{"x":1752262202179,"y":35.07},{"x":1752262141962,"y":34.15},{"x":1752262081812,"y":47.252},{"x":1752262021655,"y":56.049},{"x":1752261961494,"y":55.912},{"x":1752261901349,"y":53.446},{"x":1752261841171,"y":48.0},{"x":1752261781003,"y":51.244},{"x":1752261720842,"y":50.52},{"x":1752261660673,"y":45.535},{"x":1752261600650,"y":42.287},{"x":1752261540359,"y":42.715},{"x":1752261483035,"y":41.594},{"x":1752261422811,"y":46.844},{"x":1752261362656,"y":47.489},{"x":1752261302520,"y":53.586},{"x":1752261242326,"y":51.45},{"x":1752261182159,"y":52.563},{"x":1752261121979,"y":41.42},{"x":1752261061806,"y":43.453},{"x":1752261001648,"y":40.288},{"x":1752260941439,"y":46.931},{"x":1752260881272,"y":48.756},{"x":1752260821097,"y":48.29},{"x":1752260760917,"y":44.034},{"x":1752260700760,"y":41.242},{"x":1752260640609,"y":42.812},{"x":1752260580407,"y":38.421},{"x":1752260520306,"y":35.772},{"x":1752260462896,"y":44.053},{"x":1752260402740,"y":43.773},{"x":1752260342555,"y":58.628},{"x":1752260282394,"y":60.379},{"x":1752260222236,"y":57.918},{"x":1752260162086,"y":55.919},{"x":1752260101913,"y":51.016},{"x":1752260041763,"y":41.494},{"x":1752259981624,"y":40.401},{"x":1752259921446,"y":39.513},{"x":1752259861273,"y":49.719},{"x":1752259801112,"y":38.398},{"x":1752259740923,"y":46.131},{"x":1752259680786,"y":50.732},{"x":1752259620602,"y":58.331},{"x":1752259560492,"y":46.315},{"x":1752259500432,"y":45.841},{"x":1752259443024,"y":53.859},{"x":1752259382841,"y":44.025},{"x":1752259322683,"y":57.495},{"x":1752259262509,"y":47.787},{"x":1752259202357,"y":46.695},{"x":1752259142203,"y":48.564},{"x":1752259082039,"y":45.24},{"x":1752259021881,"y":37.429},{"x":1752258961705,"y":35.989},{"x":1752258901543,"y":54.568},{"x":1752258841381,"y":40.097},{"x":1752258781212,"y":44.725},{"x":1752258721057,"y":43.758},{"x":1752258660863,"y":40.854},{"x":1752258600762,"y":45.278},{"x":1752258540571,"y":47.041},{"x":1752258480441,"y":47.843},{"x":1752258420217,"y":47.776},{"x":1752258362941,"y":60.698},{"x":1752258302784,"y":40.588},{"x":1752258242630,"y":44.328},{"x":1752258182473,"y":56.163},{"x":1752258122331,"y":62.056},{"x":1752258062174,"y":59.873},{"x":1752258002029,"y":55.394},{"x":1752257941849,"y":54.7},{"x":1752257881644,"y":42.214},{"x":1752257821468,"y":42.698},{"x":1752257761309,"y":41.605},{"x":1752257701156,"y":45.476},{"x":1752257640968,"y":47.438},{"x":1752257580813,"y":44.561},{"x":1752257520665,"y":47.531},{"x":1752257460513,"y":49.171},{"x":1752257400304,"y":43.142},{"x":1752257340174,"y":38.959},{"x":1752257282884,"y":35.347},{"x":1752257222727,"y":39.756},{"x":1752257162582,"y":39.665},{"x":1752257102409,"y":41.472},{"x":1752257042251,"y":39.504},{"x":1752256982091,"y":37.459},{"x":1752256921953,"y":49.8},{"x":1752256861764,"y":44.451},{"x":1752256801628,"y":37.888},{"x":1752256741368,"y":32.189},{"x":1752256681211,"y":31.188},{"x":1752256621044,"y":27.973},{"x":1752256560863,"y":35.107},{"x":1752256500719,"y":30.489},{"x":1752256440566,"y":33.746},{"x":1752256380463,"y":29.77},{"x":1752256323025,"y":52.681},{"x":1752256262749,"y":37.242},{"x":1752256202594,"y":40.49},{"x":1752256142438,"y":53.231},{"x":1752256082272,"y":44.57},{"x":1752256022103,"y":34.72},{"x":1752255961935,"y":38.865},{"x":1752255901781,"y":35.84},{"x":1752255841620,"y":30.217},{"x":1752255781463,"y":27.823},{"x":1752255721310,"y":24.386},{"x":1752255661153,"y":44.936},{"x":1752255600988,"y":43.601},{"x":1752255540804,"y":46.094},{"x":1752255480656,"y":49.685},{"x":1752255420522,"y":42.737},{"x":1752255360447,"y":32.779},{"x":1752255300188,"y":24.813},{"x":1752255242879,"y":43.114},{"x":1752255182705,"y":20.82},{"x":1752255122545,"y":23.455},{"x":1752255062386,"y":17.249},{"x":1752255002248,"y":36.362},{"x":1752254942088,"y":35.11},{"x":1752254881923,"y":27.195},{"x":1752254821756,"y":24.187},{"x":1752254761600,"y":46.936},{"x":1752254701447,"y":41.643},{"x":1752254641281,"y":44.484},{"x":1752254581120,"y":45.402},{"x":1752254520920,"y":38.743},{"x":1752254460761,"y":26.65},{"x":1752254400673,"y":19.496},{"x":1752254340426,"y":29.921},{"x":1752254280197,"y":36.762},{"x":1752254222914,"y":34.218},{"x":1752254162769,"y":35.528},{"x":1752254102612,"y":35.401},{"x":1752254042450,"y":30.666},{"x":1752253982288,"y":29.178},{"x":1752253922122,"y":24.536},{"x":1752253861955,"y":21.686},{"x":1752253801795,"y":24.913},{"x":1752253741642,"y":34.688},{"x":1752253681485,"y":23.582},{"x":1752253621339,"y":35.488},{"x":1752253561154,"y":27.923},{"x":1752253500992,"y":27.566},{"x":1752253440838,"y":35.966},{"x":1752253380687,"y":20.066},{"x":1752253320534,"y":32.446},{"x":1752253260470,"y":15.53},{"x":1752253200342,"y":22.51},{"x":1752253142945,"y":34.142},{"x":1752253082794,"y":38.805},{"x":1752253022632,"y":35.482},{"x":1752252962453,"y":48.297},{"x":1752252902278,"y":42.561},{"x":1752252842123,"y":56.869},{"x":1752252781942,"y":42.933},{"x":1752252721780,"y":31.762},{"x":1752252661625,"y":17.89},{"x":1752252601466,"y":18.453},{"x":1752252541287,"y":21.804},{"x":1752252481133,"y":51.007},{"x":1752252420935,"y":25.167},{"x":1752252360792,"y":47.732},{"x":1752252300697,"y":33.222},{"x":1752252240477,"y":28.94},{"x":1752252180261,"y":31.86},{"x":1752252122878,"y":24.91},{"x":1752252062714,"y":20.859},{"x":1752252002564,"y":15.117},{"x":1752251942342,"y":34.258},{"x":1752251882188,"y":27.248},{"x":1752251822036,"y":44.49},{"x":1752251761855,"y":32.468},{"x":1752251701705,"y":38.15},{"x":1752251641543,"y":28.29},{"x":1752251581378,"y":31.063},{"x":1752251521213,"y":17.891},{"x":1752251461021,"y":16.401},{"x":1752251400927,"y":17.856},{"x":1752251340677,"y":28.245},{"x":1752251280569,"y":38.874},{"x":1752251220421,"y":36.421},{"x":1752251162991,"y":24.261},{"x":1752251102823,"y":35.962},{"x":1752251042701,"y":41.582},{"x":1752250982484,"y":46.254},{"x":1752250922332,"y":37.826},{"x":1752250862166,"y":30.149},{"x":1752250801990,"y":22.202},{"x":1752250741828,"y":23.135},{"x":1752250681651,"y":39.891},{"x":1752250621470,"y":32.13},{"x":1752250561301,"y":21.65},{"x":1752250501153,"y":33.39},{"x":1752250440956,"y":27.822},{"x":1752250380796,"y":25.995},{"x":1752250320685,"y":33.86},{"x":1752250260479,"y":28.265},{"x":1752250200390,"y":25.24},{"x":1752250142971,"y":22.72},{"x":1752250082825,"y":31.592},{"x":1752250022667,"y":21.41},{"x":1752249962506,"y":26.408},{"x":1752249902349,"y":35.954},{"x":1752249842196,"y":36.046},{"x":1752249782003,"y":49.022},{"x":1752249721831,"y":34.982},{"x":1752249661665,"y":18.285},{"x":1752249601550,"y":15.743},{"x":1752249541283,"y":14.442},{"x":1752249481118,"y":22.677},{"x":1752249420925,"y":29.385},{"x":1752249360758,"y":28.092},{"x":1752249300630,"y":38.373},{"x":1752249240375,"y":27.688},{"x":1752249180235,"y":21.635},{"x":1752249122919,"y":16.977},{"x":1752249062766,"y":13.317},{"x":1752249002601,"y":13.042},{"x":1752248942447,"y":18.195},{"x":1752248882289,"y":22.277},{"x":1752248822143,"y":20.013},{"x":1752248761951,"y":25.708},{"x":1752248701798,"y":22.595},{"x":1752248641630,"y":37.256},{"x":1752248581486,"y":16.272},{"x":1752248521331,"y":17.932},{"x":1752248461078,"y":22.457},{"x":1752248400909,"y":26.016},{"x":1752248340744,"y":26.185},{"x":1752248280615,"y":32.217},{"x":1752248220465,"y":33.437},{"x":1752248160320,"y":32.673},{"x":1752248102924,"y":26.556},{"x":1752248042767,"y":23.185},{"x":1752247982616,"y":20.478},{"x":1752247922455,"y":31.788},{"x":1752247862297,"y":28.085},{"x":1752247802165,"y":42.826},{"x":1752247741977,"y":27.915},{"x":1752247681817,"y":22.49},{"x":1752247621667,"y":15.854},{"x":1752247561514,"y":16.832},{"x":1752247501355,"y":35.871},{"x":1752247441194,"y":32.489},{"x":1752247381013,"y":27.625},{"x":1752247320852,"y":29.959},{"x":1752247260706,"y":22.781},{"x":1752247200580,"y":20.619},{"x":1752247140341,"y":16.217},{"x":1752247083020,"y":26.16},{"x":1752247022810,"y":14.95},{"x":1752246962651,"y":13.239},{"x":1752246902480,"y":11.384},{"x":1752246842333,"y":17.909},{"x":1752246782183,"y":24.049},{"x":1752246721987,"y":21.866},{"x":1752246661825,"y":15.799},{"x":1752246601643,"y":10.581},{"x":1752246541482,"y":10.712},{"x":1752246481319,"y":19.86},{"x":1752246421168,"y":30.357},{"x":1752246360980,"y":27.157},{"x":1752246300834,"y":34.657},{"x":1752246240653,"y":37.681},{"x":1752246180448,"y":25.023},{"x":1752246120318,"y":35.569},{"x":1752246062948,"y":2.578},{"x":1752246002817,"y":26.368},{"x":1752245942632,"y":25.696},{"x":1752245882467,"y":20.624},{"x":1752245822298,"y":39.263},{"x":1752245762137,"y":34.849},{"x":1752245701968,"y":28.897},{"x":1752245641813,"y":34.041},{"x":1752245581653,"y":20.757},{"x":1752245521497,"y":18.76},{"x":1752245461314,"y":16.829},{"x":1752245401151,"y":17.491},{"x":1752245340964,"y":11.622},{"x":1752245280809,"y":11.175},{"x":1752245220650,"y":13.052},{"x":1752245160575,"y":14.943},{"x":1752245100571,"y":15.128},{"x":1752245043027,"y":24.669},{"x":1752244982883,"y":41.233},{"x":1752244922711,"y":37.502},{"x":1752244862550,"y":36.852},{"x":1752244802373,"y":32.205},{"x":1752244742183,"y":35.003},{"x":1752244682023,"y":19.137},{"x":1752244621848,"y":13.373},{"x":1752244561690,"y":29.967},{"x":1752244501531,"y":31.571},{"x":1752244441375,"y":26.396},{"x":1752244381196,"y":33.213},{"x":1752244321011,"y":21.351},{"x":1752244260853,"y":21.167},{"x":1752244200799,"y":37.439},{"x":1752244140538,"y":19.009},{"x":1752244080344,"y":7.889},{"x":1752244022973,"y":18.546},{"x":1752243962802,"y":27.004},{"x":1752243902641,"y":22.322},{"x":1752243842481,"y":28.329},{"x":1752243782348,"y":35.02},{"x":1752243722183,"y":26.036},{"x":1752243662019,"y":17.168},{"x":1752243601848,"y":10.078},{"x":1752243541666,"y":27.569},{"x":1752243481471,"y":13.792},{"x":1752243421289,"y":23.688},{"x":1752243361125,"y":17.181},{"x":1752243300958,"y":24.181},{"x":1752243240766,"y":30.612},{"x":1752243180611,"y":50.067},{"x":1752243120473,"y":33.57},{"x":1752243060296,"y":25.554},{"x":1752243002980,"y":15.633},{"x":1752242942850,"y":19.431},{"x":1752242882672,"y":12.161},{"x":1752242822508,"y":24.623},{"x":1752242762336,"y":20.571},{"x":1752242702175,"y":15.928},{"x":1752242641996,"y":19.731},{"x":1752242581828,"y":14.541},{"x":1752242521675,"y":13.35},{"x":1752242461510,"y":17.941},{"x":1752242401514,"y":18.268},{"x":1752242341147,"y":8.329},{"x":1752242280991,"y":5.315},{"x":1752242220794,"y":2.851},{"x":1752242160643,"y":13.064},{"x":1752242100546,"y":30.817},{"x":1752242040289,"y":35.704},{"x":1752241982967,"y":33.23},{"x":1752241922817,"y":36.057},{"x":1752241862637,"y":43.86},{"x":1752241802475,"y":18.773},{"x":1752241742323,"y":29.508},{"x":1752241682166,"y":10.941},{"x":1752241621984,"y":11.438},{"x":1752241561837,"y":9.252},{"x":1752241501676,"y":5.713},{"x":1752241441508,"y":3.502},{"x":1752241381334,"y":10.447},{"x":1752241321176,"y":12.362},{"x":1752241260991,"y":14.0},{"x":1752241200903,"y":25.875},{"x":1752241140663,"y":8.8},{"x":1752241080510,"y":24.964},{"x":1752241020358,"y":28.576},{"x":1752240960206,"y":32.287},{"x":1752240902896,"y":22.6},{"x":1752240842737,"y":19.077},{"x":1752240782585,"y":10.904},{"x":1752240722420,"y":16.91},{"x":1752240662269,"y":18.058},{"x":1752240602106,"y":19.462},{"x":1752240541929,"y":24.188},{"x":1752240481760,"y":23.67},{"x":1752240421600,"y":12.232},{"x":1752240361433,"y":11.679},{"x":1752240301263,"y":24.958},{"x":1752240241087,"y":19.21},{"x":1752240180940,"y":7.479},{"x":1752240120763,"y":6.258},{"x":1752240060634,"y":15.26},{"x":1752240000494,"y":16.036},{"x":1752239940282,"y":8.349},{"x":1752239882985,"y":9.111},{"x":1752239822743,"y":8.541},{"x":1752239762579,"y":5.093},{"x":1752239702419,"y":16.448},{"x":1752239642265,"y":21.704},{"x":1752239582106,"y":38.838},{"x":1752239521932,"y":27.394},{"x":1752239461764,"y":34.039},{"x":1752239401610,"y":33.338},{"x":1752239341457,"y":35.374},{"x":1752239281295,"y":5.757},{"x":1752239221135,"y":10.711},{"x":1752239160950,"y":29.614},{"x":1752239100795,"y":22.769},{"x":1752239040646,"y":15.894},{"x":1752238980569,"y":34.804},{"x":1752238920271,"y":22.002},{"x":1752238862944,"y":31.335},{"x":1752238802810,"y":12.695},{"x":1752238742583,"y":29.409},{"x":1752238682415,"y":15.981},{"x":1752238622251,"y":19.54},{"x":1752238562084,"y":11.937},{"x":1752238501900,"y":12.539},{"x":1752238441745,"y":11.024},{"x":1752238381557,"y":12.648},{"x":1752238321396,"y":19.027},{"x":1752238261229,"y":5.704},{"x":1752238201060,"y":9.409},{"x":1752238140887,"y":21.158},{"x":1752238080733,"y":15.921},{"x":1752238020545,"y":6.362},{"x":1752237960390,"y":14.701},{"x":1752237900304,"y":17.004},{"x":1752237842931,"y":18.125},{"x":1752237782777,"y":24.462},{"x":1752237722626,"y":44.837},{"x":1752237662577,"y":25.374},{"x":1752237602341,"y":33.044},{"x":1752237542173,"y":24.325},{"x":1752237481997,"y":33.523},{"x":1752237421835,"y":8.07},{"x":1752237361681,"y":4.233},{"x":1752237301524,"y":12.352},{"x":1752237241365,"y":15.641},{"x":1752237181198,"y":33.838},{"x":1752237121029,"y":11.035},{"x":1752237060878,"y":6.507},{"x":1752237000841,"y":14.563},{"x":1752236940502,"y":15.82},{"x":1752236880364,"y":10.766},{"x":1752236822998,"y":18.114},{"x":1752236762848,"y":14.689},{"x":1752236702691,"y":20.145},{"x":1752236642531,"y":10.21},{"x":1752236582370,"y":13.455},{"x":1752236522198,"y":10.153},{"x":1752236462034,"y":16.241},{"x":1752236401868,"y":30.042},{"x":1752236341675,"y":29.946},{"x":1752236281468,"y":33.554},{"x":1752236221269,"y":50.913},{"x":1752236161106,"y":24.037},{"x":1752236100937,"y":25.079},{"x":1752236040742,"y":19.598},{"x":1752235980633,"y":17.989},{"x":1752235920523,"y":33.14},{"x":1752235860224,"y":29.381},{"x":1752235802900,"y":24.918},{"x":1752235742745,"y":31.706},{"x":1752235682565,"y":42.105},{"x":1752235622396,"y":21.072},{"x":1752235562241,"y":23.029},{"x":1752235502088,"y":36.21},{"x":1752235441931,"y":45.187},{"x":1752235381758,"y":34.097},{"x":1752235321624,"y":37.102},{"x":1752235261444,"y":35.077},{"x":1752235201405,"y":35.213},{"x":1752235141061,"y":28.015},{"x":1752235080892,"y":28.79},{"x":1752235020755,"y":21.74},{"x":1752234960667,"y":45.172},{"x":1752234900652,"y":28.761},{"x":1752234840345,"y":32.752},{"x":1752234782997,"y":26.24},{"x":1752234722840,"y":19.001},{"x":1752234662654,"y":28.388},{"x":1752234602475,"y":22.956},{"x":1752234542330,"y":21.834},{"x":1752234482146,"y":21.308},{"x":1752234421980,"y":38.856},{"x":1752234361817,"y":22.806},{"x":1752234301644,"y":16.705},{"x":1752234241480,"y":44.912},{"x":1752234181313,"y":39.1},{"x":1752234121150,"y":42.519},{"x":1752234060880,"y":45.416},{"x":1752234000811,"y":35.296},{"x":1752233940543,"y":25.592},{"x":1752233880405,"y":29.301},{"x":1752233820232,"y":29.676},{"x":1752233762923,"y":34.97},{"x":1752233702764,"y":32.78},{"x":1752233642613,"y":35.799},{"x":1752233582460,"y":42.438},{"x":1752233522305,"y":40.065},{"x":1752233462149,"y":17.056},{"x":1752233401971,"y":15.653},{"x":1752233341810,"y":28.456},{"x":1752233281648,"y":18.12},{"x":1752233221465,"y":20.148},{"x":1752233161310,"y":36.264},{"x":1752233101146,"y":37.646},{"x":1752233040965,"y":31.285},{"x":1752232980801,"y":28.556},{"x":1752232920646,"y":28.701},{"x":1752232860510,"y":26.064},{"x":1752232800410,"y":20.376},{"x":1752232743037,"y":14.215},{"x":1752232682816,"y":32.252},{"x":1752232622617,"y":23.314},{"x":1752232562450,"y":29.909},{"x":1752232502300,"y":28.236},{"x":1752232442139,"y":21.797},{"x":1752232381978,"y":16.319},{"x":1752232321802,"y":18.534},{"x":1752232261632,"y":25.7},{"x":1752232201474,"y":26.241},{"x":1752232141308,"y":28.052},{"x":1752232081148,"y":29.972},{"x":1752232020972,"y":23.266},{"x":1752231960824,"y":17.117},{"x":1752231900677,"y":20.985},{"x":1752231840579,"y":21.046},{"x":1752231780346,"y":21.623},{"x":1752231722959,"y":18.302},{"x":1752231662802,"y":15.046},{"x":1752231602651,"y":30.773},{"x":1752231542482,"y":37.632},{"x":1752231482318,"y":50.164},{"x":1752231422188,"y":40.123},{"x":1752231362011,"y":38.959},{"x":1752231301847,"y":29.785},{"x":1752231241675,"y":29.882},{"x":1752231181515,"y":20.106},{"x":1752231121356,"y":15.757},{"x":1752231061200,"y":15.849},{"x":1752231001029,"y":45.68},{"x":1752230940851,"y":33.179},{"x":1752230880699,"y":36.305},{"x":1752230820589,"y":37.721},{"x":1752230760502,"y":41.778},{"x":1752230700372,"y":27.834},{"x":1752230642955,"y":22.989},{"x":1752230582822,"y":18.952},{"x":1752230522647,"y":38.112},{"x":1752230462461,"y":41.595},{"x":1752230402309,"y":38.444},{"x":1752230342147,"y":30.746},{"x":1752230281983,"y":33.099},{"x":1752230221831,"y":35.007},{"x":1752230161687,"y":31.733},{"x":1752230101527,"y":22.871},{"x":1752230041372,"y":20.419},{"x":1752229981210,"y":17.105},{"x":1752229921046,"y":26.142},{"x":1752229860884,"y":28.134},{"x":1752229800787,"y":17.833},{"x":1752229740566,"y":32.453},{"x":1752229680502,"y":27.476},{"x":1752229623028,"y":32.915},{"x":1752229562850,"y":33.039},{"x":1752229502692,"y":37.829},{"x":1752229442526,"y":21.933},{"x":1752229382360,"y":25.029},{"x":1752229322204,"y":23.696},{"x":1752229262038,"y":17.424},{"x":1752229201870,"y":18.015},{"x":1752229141693,"y":19.185},{"x":1752229081507,"y":42.339},{"x":1752229021305,"y":51.382},{"x":1752228961143,"y":38.763},{"x":1752228900949,"y":43.033},{"x":1752228840779,"y":47.232},{"x":1752228780637,"y":25.818},{"x":1752228720556,"y":24.816},{"x":1752228660388,"y":21.65},{"x":1752228600083,"y":21.249},{"x":1752228542867,"y":18.904},{"x":1752228482735,"y":25.437},{"x":1752228422556,"y":25.381},{"x":1752228362396,"y":28.553},{"x":1752228302245,"y":31.801},{"x":1752228242085,"y":35.702},{"x":1752228181905,"y":34.445},{"x":1752228121779,"y":31.715},{"x":1752228061604,"y":14.396},{"x":1752228001537,"y":27.136},{"x":1752227941244,"y":24.937},{"x":1752227881067,"y":29.323},{"x":1752227820899,"y":32.102},{"x":1752227760730,"y":34.066},{"x":1752227700639,"y":30.365},{"x":1752227640378,"y":14.411},{"x":1752227583013,"y":24.669},{"x":1752227522869,"y":30.462},{"x":1752227462719,"y":27.14},{"x":1752227402513,"y":24.398},{"x":1752227342348,"y":17.078},{"x":1752227282196,"y":19.589},{"x":1752227222042,"y":15.359},{"x":1752227161887,"y":19.704},{"x":1752227101722,"y":33.197},{"x":1752227041541,"y":23.82},{"x":1752226981385,"y":18.278},{"x":1752226921217,"y":20.416},{"x":1752226861060,"y":23.644},{"x":1752226800927,"y":40.313},{"x":1752226740688,"y":41.887},{"x":1752226680593,"y":40.847},{"x":1752226620370,"y":44.064},{"x":1752226560287,"y":34.774},{"x":1752226502923,"y":23.901},{"x":1752226442762,"y":31.574},{"x":1752226382633,"y":40.386},{"x":1752226322449,"y":29.664},{"x":1752226262285,"y":25.859},{"x":1752226202112,"y":31.291},{"x":1752226141941,"y":30.159},{"x":1752226081781,"y":40.409},{"x":1752226021630,"y":46.032},{"x":1752225961447,"y":34.447},{"x":1752225901298,"y":40.971},{"x":1752225841124,"y":42.589},{"x":1752225780935,"y":39.228},{"x":1752225720789,"y":46.85},{"x":1752225660619,"y":39.532},{"x":1752225600585,"y":37.17},{"x":1752225540269,"y":16.814},{"x":1752225482907,"y":16.022},{"x":1752225422697,"y":25.66},{"x":1752225362537,"y":24.033},{"x":1752225302383,"y":25.221},{"x":1752225242230,"y":29.545},{"x":1752225182069,"y":39.49},{"x":1752225121872,"y":42.254},{"x":1752225061719,"y":36.83},{"x":1752225001571,"y":38.565},{"x":1752224941350,"y":31.103},{"x":1752224881190,"y":19.195},{"x":1752224821025,"y":34.861},{"x":1752224760864,"y":32.766},{"x":1752224700735,"y":42.742},{"x":1752224640600,"y":35.086},{"x":1752224580441,"y":46.728},{"x":1752224520286,"y":41.898},{"x":1752224462870,"y":28.957},{"x":1752224402701,"y":39.212},{"x":1752224342527,"y":43.284},{"x":1752224282360,"y":35.28},{"x":1752224222203,"y":34.078},{"x":1752224162041,"y":32.901},{"x":1752224101874,"y":38.606},{"x":1752224041716,"y":24.741},{"x":1752223981559,"y":22.567},{"x":1752223921386,"y":23.317},{"x":1752223861220,"y":26.708},{"x":1752223801022,"y":37.734},{"x":1752223740859,"y":46.657},{"x":1752223680722,"y":56.838},{"x":1752223620544,"y":41.42},{"x":1752223560408,"y":31.794},{"x":1752223500186,"y":20.896},{"x":1752223442880,"y":21.325},{"x":1752223382710,"y":42.995},{"x":1752223322553,"y":17.253},{"x":1752223262381,"y":39.687},{"x":1752223202226,"y":28.844},{"x":1752223142085,"y":35.129},{"x":1752223081885,"y":38.099},{"x":1752223021707,"y":36.713},{"x":1752222961553,"y":44.072},{"x":1752222901396,"y":42.252},{"x":1752222841242,"y":45.776},{"x":1752222781132,"y":41.488},{"x":1752222720920,"y":34.78},{"x":1752222660749,"y":24.59},{"x":1752222600656,"y":29.21},{"x":1752222540345,"y":47.123},{"x":1752222480170,"y":40.229},{"x":1752222422890,"y":49.787},{"x":1752222362738,"y":42.168},{"x":1752222302587,"y":51.771},{"x":1752222242419,"y":36.389},{"x":1752222182266,"y":36.13},{"x":1752222122093,"y":53.164},{"x":1752222061919,"y":40.764},{"x":1752222001743,"y":43.371},{"x":1752221941563,"y":62.604},{"x":1752221881320,"y":40.729},{"x":1752221821090,"y":47.642},{"x":1752221760912,"y":48.587},{"x":1752221700782,"y":46.221},{"x":1752221640590,"y":33.643},{"x":1752221580441,"y":41.174},{"x":1752221520326,"y":37.789},{"x":1752221462942,"y":30.515},{"x":1752221402831,"y":37.079},{"x":1752221342638,"y":71.115},{"x":1752221282477,"y":56.663},{"x":1752221222328,"y":50.438},{"x":1752221162178,"y":51.3},{"x":1752221101993,"y":57.011},{"x":1752221041828,"y":63.236},{"x":1752220981676,"y":54.273},{"x":1752220921514,"y":64.352},{"x":1752220861365,"y":45.273},{"x":1752220801258,"y":63.732},{"x":1752220740960,"y":54.141},{"x":1752220680787,"y":50.412},{"x":1752220620637,"y":43.338},{"x":1752220560504,"y":40.001},{"x":1752220500366,"y":26.287},{"x":1752220443015,"y":36.051},{"x":1752220382846,"y":24.095},{"x":1752220322685,"y":22.829},{"x":1752220262518,"y":26.37},{"x":1752220202345,"y":24.434},{"x":1752220142181,"y":29.687},{"x":1752220082024,"y":32.872},{"x":1752220021865,"y":24.173},{"x":1752219961708,"y":25.989},{"x":1752219901560,"y":30.224},{"x":1752219841377,"y":32.055},{"x":1752219781222,"y":33.235},{"x":1752219721050,"y":38.317},{"x":1752219660879,"y":39.818},{"x":1752219600780,"y":44.531},{"x":1752219540567,"y":45.314},{"x":1752219480410,"y":21.321},{"x":1752219420296,"y":24.614},{"x":1752219362958,"y":28.388},{"x":1752219302787,"y":21.723},{"x":1752219242619,"y":27.676},{"x":1752219182452,"y":37.571},{"x":1752219122300,"y":32.839},{"x":1752219062134,"y":35.069},{"x":1752219001963,"y":36.264},{"x":1752218941806,"y":29.272},{"x":1752218881647,"y":28.59},{"x":1752218821490,"y":29.441},{"x":1752218761324,"y":23.747},{"x":1752218701174,"y":21.081},{"x":1752218640973,"y":21.059},{"x":1752218580816,"y":19.919},{"x":1752218520685,"y":23.353},{"x":1752218460625,"y":54.429},{"x":1752218400382,"y":51.207},{"x":1752218340182,"y":50.705},{"x":1752218282850,"y":41.272},{"x":1752218222665,"y":38.209},{"x":1752218162497,"y":24.759},{"x":1752218102319,"y":44.473},{"x":1752218042169,"y":29.47},{"x":1752217981990,"y":39.049},{"x":1752217921824,"y":24.994},{"x":1752217861670,"y":25.141},{"x":1752217801499,"y":47.984},{"x":1752217741343,"y":58.61},{"x":1752217681191,"y":46.055},{"x":1752217621013,"y":49.56},{"x":1752217560845,"y":49.747},{"x":1752217500712,"y":27.163},{"x":1752217440549,"y":24.752},{"x":1752217380419,"y":22.855},{"x":1752217320263,"y":25.154},{"x":1752217262899,"y":19.654},{"x":1752217202745,"y":30.103},{"x":1752217142578,"y":37.725},{"x":1752217082428,"y":29.274},{"x":1752217022253,"y":26.849},{"x":1752216962121,"y":27.104},{"x":1752216901934,"y":26.595},{"x":1752216841756,"y":25.999},{"x":1752216781595,"y":25.225},{"x":1752216721438,"y":25.961},{"x":1752216661288,"y":36.809},{"x":1752216601133,"y":35.107},{"x":1752216540943,"y":31.11},{"x":1752216480793,"y":32.388},{"x":1752216420628,"y":32.328},{"x":1752216360514,"y":30.411},{"x":1752216300424,"y":38.194},{"x":1752216242959,"y":31.62},{"x":1752216182803,"y":33.799},{"x":1752216122624,"y":32.219},{"x":1752216062468,"y":34.986},{"x":1752216002316,"y":60.8},{"x":1752215942164,"y":43.941},{"x":1752215881999,"y":27.662},{"x":1752215821841,"y":30.536},{"x":1752215761692,"y":26.524},{"x":1752215701531,"y":25.948},{"x":1752215641373,"y":27.308},{"x":1752215581222,"y":27.922},{"x":1752215521064,"y":35.034},{"x":1752215460892,"y":43.476},{"x":1752215400825,"y":37.122},{"x":1752215340558,"y":35.401},{"x":1752215280438,"y":30.797},{"x":1752215220306,"y":34.17},{"x":1752215162975,"y":30.42},{"x":1752215102807,"y":43.887},{"x":1752215042656,"y":31.762},{"x":1752214982492,"y":43.017},{"x":1752214922350,"y":34.348},{"x":1752214862186,"y":41.449},{"x":1752214802022,"y":34.865},{"x":1752214741830,"y":34.377},{"x":1752214681593,"y":34.988},{"x":1752214621399,"y":50.837},{"x":1752214561239,"y":34.62},{"x":1752214501080,"y":32.329},{"x":1752214440886,"y":21.562},{"x":1752214380725,"y":43.146},{"x":1752214320605,"y":49.691},{"x":1752214260410,"y":46.202},{"x":1752214200368,"y":61.573},{"x":1752214142948,"y":60.258},{"x":1752214082792,"y":39.881},{"x":1752214022634,"y":57.97},{"x":1752213962477,"y":51.845},{"x":1752213902307,"y":47.521},{"x":1752213842160,"y":44.4},{"x":1752213781989,"y":42.571},{"x":1752213721803,"y":42.544},{"x":1752213661637,"y":41.973},{"x":1752213601540,"y":44.93},{"x":1752213541230,"y":45.075},{"x":1752213481064,"y":44.742},{"x":1752213420888,"y":25.066},{"x":1752213360736,"y":27.06},{"x":1752213300617,"y":30.084},{"x":1752213240485,"y":27.478},{"x":1752213180358,"y":24.19},{"x":1752213123017,"y":22.007},{"x":1752213062857,"y":23.077},{"x":1752213002696,"y":24.826},{"x":1752212942497,"y":23.361},{"x":1752212882339,"y":20.523},{"x":1752212822206,"y":21.319},{"x":1752212762022,"y":24.96},{"x":1752212701874,"y":21.328},{"x":1752212641713,"y":30.656},{"x":1752212581551,"y":29.742},{"x":1752212521400,"y":29.972},{"x":1752212461235,"y":29.155},{"x":1752212401075,"y":27.585},{"x":1752212340901,"y":29.173},{"x":1752212280743,"y":25.988},{"x":1752212220601,"y":32.941},{"x":1752212160550,"y":30.217},{"x":1752212100323,"y":31.413},{"x":1752212042957,"y":31.335},{"x":1752211982799,"y":28.206},{"x":1752211922641,"y":24.489},{"x":1752211862464,"y":26.863},{"x":1752211802309,"y":26.241},{"x":1752211742151,"y":25.927},{"x":1752211682029,"y":27.472},{"x":1752211621840,"y":23.225},{"x":1752211561672,"y":21.844},{"x":1752211501520,"y":21.06},{"x":1752211441351,"y":24.245},{"x":1752211381200,"y":21.223},{"x":1752211321028,"y":23.806},{"x":1752211260885,"y":23.153},{"x":1752211200805,"y":28.361},{"x":1752211140549,"y":22.621},{"x":1752211080418,"y":22.222},{"x":1752211022973,"y":24.6},{"x":1752210962808,"y":22.892},{"x":1752210902648,"y":24.819},{"x":1752210842500,"y":22.679},{"x":1752210782323,"y":24.847},{"x":1752210722156,"y":21.781},{"x":1752210661980,"y":21.399},{"x":1752210601819,"y":22.238},{"x":1752210541666,"y":26.543},{"x":1752210481497,"y":28.344},{"x":1752210421343,"y":31.41},{"x":1752210361176,"y":36.472},{"x":1752210301004,"y":28.621},{"x":1752210240825,"y":26.252},{"x":1752210180667,"y":37.444},{"x":1752210120550,"y":34.624},{"x":1752210060394,"y":33.33},{"x":1752210000029,"y":30.318},{"x":1752209942856,"y":30.887},{"x":1752209882772,"y":25.454},{"x":1752209822530,"y":21.987},{"x":1752209762366,"y":30.004},{"x":1752209702207,"y":29.15},{"x":1752209642038,"y":25.062},{"x":1752209581888,"y":29.439},{"x":1752209521714,"y":27.212},{"x":1752209461554,"y":26.239},{"x":1752209401410,"y":24.591},{"x":1752209341250,"y":25.63},{"x":1752209281092,"y":25.254},{"x":1752209220917,"y":24.454},{"x":1752209160747,"y":20.983},{"x":1752209100641,"y":22.401},{"x":1752209040419,"y":27.951},{"x":1752208980299,"y":27.99},{"x":1752208922954,"y":36.476},{"x":1752208862801,"y":33.701},{"x":1752208802654,"y":40.468},{"x":1752208742484,"y":46.572},{"x":1752208682326,"y":38.704},{"x":1752208622172,"y":38.047},{"x":1752208562020,"y":37.894},{"x":1752208501855,"y":30.144},{"x":1752208441694,"y":31.875},{"x":1752208381536,"y":36.032},{"x":1752208321372,"y":34.763},{"x":1752208261203,"y":33.816},{"x":1752208201042,"y":35.949},{"x":1752208140863,"y":35.594},{"x":1752208080733,"y":39.964},{"x":1752208020571,"y":34.213},{"x":1752207960412,"y":38.739},{"x":1752207900175,"y":40.34},{"x":1752207842932,"y":38.172},{"x":1752207782784,"y":29.844},{"x":1752207722632,"y":32.576},{"x":1752207662455,"y":31.737},{"x":1752207602296,"y":31.227},{"x":1752207542130,"y":36.64},{"x":1752207481987,"y":33.781},{"x":1752207421779,"y":43.94},{"x":1752207361612,"y":38.063},{"x":1752207301448,"y":36.644},{"x":1752207241295,"y":43.283},{"x":1752207181134,"y":32.53},{"x":1752207120926,"y":33.695},{"x":1752207060772,"y":40.309},{"x":1752207000818,"y":41.225},{"x":1752206940492,"y":42.403},{"x":1752206880326,"y":43.144},{"x":1752206820072,"y":42.402},{"x":1752206762874,"y":38.053},{"x":1752206702690,"y":32.652},{"x":1752206642533,"y":33.305},{"x":1752206582361,"y":34.412},{"x":1752206522209,"y":39.049},{"x":1752206462024,"y":33.447},{"x":1752206401876,"y":33.251},{"x":1752206341572,"y":40.136},{"x":1752206281405,"y":40.581},{"x":1752206221251,"y":41.603},{"x":1752206161110,"y":41.668},{"x":1752206100922,"y":44.463},{"x":1752206040769,"y":41.244},{"x":1752205980576,"y":39.762},{"x":1752205920466,"y":40.338},{"x":1752205860266,"y":38.085},{"x":1752205802954,"y":39.938},{"x":1752205742795,"y":35.2},{"x":1752205682629,"y":53.065},{"x":1752205622464,"y":52.551},{"x":1752205562300,"y":51.762},{"x":1752205502131,"y":54.895},{"x":1752205441971,"y":54.876},{"x":1752205381808,"y":36.533},{"x":1752205321645,"y":43.696},{"x":1752205261472,"y":34.95},{"x":1752205201316,"y":36.019},{"x":1752205141152,"y":41.8},{"x":1752205080988,"y":32.739},{"x":1752205020823,"y":33.225},{"x":1752204960700,"y":32.441},{"x":1752204900580,"y":33.411},{"x":1752204840380,"y":30.889},{"x":1752204780046,"y":27.594},{"x":1752204722872,"y":37.983},{"x":1752204662706,"y":33.837},{"x":1752204602545,"y":34.415},{"x":1752204542387,"y":41.945},{"x":1752204482239,"y":40.205},{"x":1752204422075,"y":28.223},{"x":1752204361898,"y":31.052},{"x":1752204301748,"y":28.337},{"x":1752204241560,"y":26.527},{"x":1752204181401,"y":30.277},{"x":1752204121247,"y":29.279},{"x":1752204061082,"y":25.671},{"x":1752204000937,"y":27.215},{"x":1752203940757,"y":31.508},{"x":1752203880590,"y":27.476},{"x":1752203820444,"y":30.558},{"x":1752203760272,"y":31.189},{"x":1752203702991,"y":32.191},{"x":1752203642833,"y":38.529},{"x":1752203582686,"y":37.487},{"x":1752203522537,"y":37.428},{"x":1752203462365,"y":33.374},{"x":1752203402203,"y":25.099},{"x":1752203342053,"y":24.406},{"x":1752203281520,"y":27.176},{"x":1752203221336,"y":27.601},{"x":1752203161164,"y":32.123},{"x":1752203100853,"y":27.582},{"x":1752203042929,"y":26.941},{"x":1752202982221,"y":25.026},{"x":1752202922039,"y":33.421},{"x":1752202861815,"y":34.854},{"x":1752202801699,"y":32.754},{"x":1752202740975,"y":31.776},{"x":1752202680801,"y":31.957},{"x":1752202620646,"y":24.675},{"x":1752202560537,"y":25.125},{"x":1752202500437,"y":36.937},{"x":1752202443020,"y":34.498},{"x":1752202382860,"y":29.049},{"x":1752202322687,"y":30.222},{"x":1752202262522,"y":26.564},{"x":1752202202367,"y":24.726},{"x":1752202142214,"y":26.862},{"x":1752202082036,"y":25.715},{"x":1752202021879,"y":25.92},{"x":1752201961702,"y":24.737},{"x":1752201901550,"y":24.964},{"x":1752201841390,"y":29.195},{"x":1752201781234,"y":35.949},{"x":1752201721072,"y":31.295},{"x":1752201660887,"y":32.48},{"x":1752201600776,"y":32.334},{"x":1752201540529,"y":24.824},{"x":1752201480464,"y":28.466},{"x":1752201420198,"y":27.829},{"x":1752201362885,"y":49.22},{"x":1752201302722,"y":48.523},{"x":1752201242570,"y":49.38},{"x":1752201182411,"y":44.915},{"x":1752201122263,"y":46.611},{"x":1752201062106,"y":28.231},{"x":1752201001931,"y":28.326},{"x":1752200941779,"y":28.902},{"x":1752200881616,"y":28.6},{"x":1752200821462,"y":31.934},{"x":1752200761303,"y":26.1},{"x":1752200701145,"y":25.453},{"x":1752200640965,"y":22.715},{"x":1752200580791,"y":24.889},{"x":1752200520645,"y":25.234},{"x":1752200460487,"y":27.257},{"x":1752200400553,"y":25.115},{"x":1752200343024,"y":26.804},{"x":1752200282815,"y":26.128},{"x":1752200222617,"y":28.407},{"x":1752200162454,"y":30.122},{"x":1752200102288,"y":28.28},{"x":1752200042131,"y":23.762},{"x":1752199981958,"y":23.491},{"x":1752199921785,"y":28.158},{"x":1752199861626,"y":25.288},{"x":1752199801475,"y":32.189},{"x":1752199741312,"y":41.346},{"x":1752199681127,"y":44.079},{"x":1752199620952,"y":45.376},{"x":1752199560776,"y":44.159},{"x":1752199500656,"y":40.343},{"x":1752199440536,"y":27.707},{"x":1752199380418,"y":38.658},{"x":1752199320062,"y":35.51},{"x":1752199262864,"y":34.541},{"x":1752199202724,"y":34.342},{"x":1752199142541,"y":36.51},{"x":1752199082396,"y":31.731},{"x":1752199022254,"y":38.745},{"x":1752198962083,"y":41.456},{"x":1752198901912,"y":40.069},{"x":1752198841755,"y":40.737},{"x":1752198781605,"y":36.627},{"x":1752198721444,"y":25.515},{"x":1752198661289,"y":26.137},{"x":1752198601155,"y":28.589},{"x":1752198540937,"y":28.332},{"x":1752198480779,"y":24.651},{"x":1752198420621,"y":27.787},{"x":1752198360483,"y":27.58},{"x":1752198300453,"y":27.397},{"x":1752198242990,"y":29.081},{"x":1752198182835,"y":28.983},{"x":1752198122676,"y":28.073},{"x":1752198062521,"y":25.987},{"x":1752198002364,"y":26.286},{"x":1752197942209,"y":25.258},{"x":1752197882025,"y":27.414},{"x":1752197821854,"y":27.172},{"x":1752197761696,"y":27.635},{"x":1752197701542,"y":28.355},{"x":1752197641383,"y":26.253},{"x":1752197581219,"y":28.218},{"x":1752197521057,"y":24.654},{"x":1752197460891,"y":29.276},{"x":1752197400777,"y":28.87},{"x":1752197340538,"y":28.536},{"x":1752197280396,"y":30.774},{"x":1752197220182,"y":30.365},{"x":1752197162908,"y":28.543},{"x":1752197102730,"y":31.611},{"x":1752197042574,"y":28.137},{"x":1752196982424,"y":27.353},{"x":1752196922271,"y":31.978},{"x":1752196862118,"y":25.402},{"x":1752196801951,"y":24.35},{"x":1752196741775,"y":29.798},{"x":1752196681518,"y":29.712},{"x":1752196621305,"y":41.264},{"x":1752196561147,"y":53.548},{"x":1752196500963,"y":49.093},{"x":1752196440794,"y":48.823},{"x":1752196380645,"y":46.998},{"x":1752196320547,"y":26.215},{"x":1752196260347,"y":28.483},{"x":1752196200197,"y":25.636},{"x":1752196142875,"y":24.377},{"x":1752196082718,"y":25.006},{"x":1752196022562,"y":26.633},{"x":1752195962390,"y":28.396},{"x":1752195902238,"y":27.975},{"x":1752195842064,"y":28.589},{"x":1752195781903,"y":29.137},{"x":1752195721742,"y":25.217},{"x":1752195661606,"y":30.487},{"x":1752195601471,"y":38.064},{"x":1752195541244,"y":32.278},{"x":1752195481079,"y":46.432},{"x":1752195420915,"y":44.904},{"x":1752195360765,"y":45.636},{"x":1752195300635,"y":45.887},{"x":1752195240466,"y":42.03},{"x":1752195180253,"y":31.377},{"x":1752195122973,"y":29.518},{"x":1752195062824,"y":29.389},{"x":1752195002675,"y":25.523},{"x":1752194942506,"y":29.468},{"x":1752194882354,"y":29.523},{"x":1752194822196,"y":31.473},{"x":1752194762041,"y":27.791},{"x":1752194701898,"y":26.686},{"x":1752194641732,"y":32.095},{"x":1752194581574,"y":33.059},{"x":1752194521410,"y":35.338},{"x":1752194461245,"y":37.456},{"x":1752194401069,"y":35.457},{"x":1752194340898,"y":31.926},{"x":1752194280752,"y":28.598},{"x":1752194220595,"y":27.201},{"x":1752194160433,"y":27.997},{"x":1752194100328,"y":30.998},{"x":1752194042984,"y":29.63},{"x":1752193982834,"y":29.055},{"x":1752193922662,"y":25.488},{"x":1752193862504,"y":28.51},{"x":1752193802354,"y":28.461},{"x":1752193742199,"y":28.955},{"x":1752193682049,"y":32.521},{"x":1752193621890,"y":35.047},{"x":1752193561741,"y":30.023},{"x":1752193501612,"y":29.918},{"x":1752193441437,"y":32.755},{"x":1752193381272,"y":26.514},{"x":1752193321105,"y":29.843},{"x":1752193260926,"y":28.169},{"x":1752193200820,"y":26.1},{"x":1752193140578,"y":27.517},{"x":1752193080341,"y":30.251},{"x":1752193023064,"y":31.738},{"x":1752192962866,"y":28.233},{"x":1752192902714,"y":30.471},{"x":1752192842562,"y":32.001},{"x":1752192782401,"y":30.407},{"x":1752192722242,"y":32.608},{"x":1752192662083,"y":29.683},{"x":1752192601916,"y":31.733},{"x":1752192541764,"y":35.789},{"x":1752192481617,"y":33.739},{"x":1752192421456,"y":36.603},{"x":1752192361297,"y":33.622},{"x":1752192301130,"y":31.923},{"x":1752192240927,"y":33.696},{"x":1752192180775,"y":29.571},{"x":1752192120618,"y":28.944},{"x":1752192060441,"y":30.514},{"x":1752192003045,"y":27.286},{"x":1752191942836,"y":29.392},{"x":1752191882686,"y":28.047},{"x":1752191822529,"y":31.416},{"x":1752191762375,"y":58.149},{"x":1752191702233,"y":51.477},{"x":1752191642086,"y":49.317},{"x":1752191581915,"y":49.905},{"x":1752191521765,"y":47.266},{"x":1752191461610,"y":28.552},{"x":1752191401448,"y":29.195},{"x":1752191341283,"y":30.518},{"x":1752191281129,"y":25.085},{"x":1752191220959,"y":30.798},{"x":1752191160805,"y":29.383},{"x":1752191100795,"y":31.738},{"x":1752191040670,"y":28.297},{"x":1752190980314,"y":29.578},{"x":1752190923013,"y":31.781},{"x":1752190862852,"y":36.559},{"x":1752190802684,"y":45.823},{"x":1752190742527,"y":52.294},{"x":1752190682357,"y":46.838},{"x":1752190622205,"y":45.838},{"x":1752190562030,"y":36.524},{"x":1752190501862,"y":32.985},{"x":1752190441705,"y":30.516},{"x":1752190381536,"y":29.997},{"x":1752190321378,"y":30.041},{"x":1752190261186,"y":28.872},{"x":1752190201015,"y":29.708},{"x":1752190140850,"y":32.42},{"x":1752190080705,"y":29.062},{"x":1752190020552,"y":29.312},{"x":1752189960385,"y":27.553},{"x":1752189900232,"y":34.872},{"x":1752189842960,"y":35.358},{"x":1752189782800,"y":33.54},{"x":1752189722638,"y":32.768},{"x":1752189662485,"y":30.699},{"x":1752189602328,"y":31.879},{"x":1752189542182,"y":40.101},{"x":1752189481975,"y":45.172},{"x":1752189421761,"y":38.442},{"x":1752189361599,"y":36.682},{"x":1752189301440,"y":42.177},{"x":1752189241291,"y":38.062},{"x":1752189181131,"y":42.522},{"x":1752189120955,"y":41.7},{"x":1752189060794,"y":35.139},{"x":1752189000678,"y":27.708},{"x":1752188940472,"y":28.988},{"x":1752188880567,"y":37.195},{"x":1752188822944,"y":33.919},{"x":1752188762811,"y":31.303},{"x":1752188702640,"y":31.42},{"x":1752188642490,"y":30.202},{"x":1752188582316,"y":30.896},{"x":1752188522164,"y":33.796},{"x":1752188462004,"y":34.301},{"x":1752188401863,"y":28.365},{"x":1752188341643,"y":32.511},{"x":1752188281495,"y":29.3},{"x":1752188221340,"y":33.985},{"x":1752188161188,"y":31.472},{"x":1752188101002,"y":30.046},{"x":1752188040841,"y":30.219},{"x":1752187980678,"y":30.428},{"x":1752187920521,"y":30.885},{"x":1752187860349,"y":28.63},{"x":1752187800148,"y":31.537},{"x":1752187742894,"y":26.416},{"x":1752187682739,"y":33.673},{"x":1752187622580,"y":42.75},{"x":1752187562409,"y":42.325},{"x":1752187502260,"y":39.928},{"x":1752187442097,"y":41.444},{"x":1752187381935,"y":38.096},{"x":1752187321782,"y":29.678},{"x":1752187261618,"y":28.487},{"x":1752187201456,"y":32.496},{"x":1752187141298,"y":33.927},{"x":1752187081129,"y":30.316},{"x":1752187020945,"y":32.36},{"x":1752186960795,"y":34.881},{"x":1752186900663,"y":31.399},{"x":1752186840494,"y":34.468},{"x":1752186780336,"y":34.861},{"x":1752186722930,"y":34.183},{"x":1752186662790,"y":34.196},{"x":1752186602627,"y":33.941},{"x":1752186542467,"y":31.097},{"x":1752186482322,"y":31.303},{"x":1752186422174,"y":31.681},{"x":1752186362012,"y":49.724},{"x":1752186301858,"y":42.399},{"x":1752186241704,"y":40.046},{"x":1752186181557,"y":39.182},{"x":1752186121395,"y":35.95},{"x":1752186061242,"y":35.386},{"x":1752186001077,"y":31.208},{"x":1752185940950,"y":30.868},{"x":1752185880660,"y":31.199},{"x":1752185820498,"y":30.595},{"x":1752185760362,"y":36.573},{"x":1752185700109,"y":33.073},{"x":1752185642861,"y":32.468},{"x":1752185582711,"y":36.855},{"x":1752185522559,"y":32.249},{"x":1752185462404,"y":35.145},{"x":1752185402254,"y":31.091},{"x":1752185342015,"y":30.544},{"x":1752185281845,"y":30.347},{"x":1752185221655,"y":31.633},{"x":1752185161499,"y":45.89},{"x":1752185101350,"y":39.479},{"x":1752185041198,"y":41.467},{"x":1752184981052,"y":44.188},{"x":1752184920870,"y":42.672},{"x":1752184860712,"y":44.03},{"x":1752184800658,"y":38.562},{"x":1752184740419,"y":36.529},{"x":1752184680215,"y":33.508},{"x":1752184622908,"y":32.063},{"x":1752184562756,"y":34.626},{"x":1752184502610,"y":41.842},{"x":1752184442462,"y":30.086},{"x":1752184382312,"y":35.899},{"x":1752184322153,"y":34.42},{"x":1752184261993,"y":37.481},{"x":1752184201837,"y":30.383},{"x":1752184141669,"y":33.719},{"x":1752184081497,"y":36.883},{"x":1752184021341,"y":34.377},{"x":1752183961185,"y":40.342},{"x":1752183901019,"y":33.014},{"x":1752183840820,"y":32.581},{"x":1752183780656,"y":30.493},{"x":1752183720528,"y":43.111},{"x":1752183660365,"y":35.41},{"x":1752183603014,"y":33.04},{"x":1752183542862,"y":35.602},{"x":1752183482705,"y":34.575},{"x":1752183422555,"y":35.663},{"x":1752183362393,"y":36.831},{"x":1752183302220,"y":27.769},{"x":1752183242067,"y":30.043},{"x":1752183181895,"y":28.495},{"x":1752183121747,"y":28.383},{"x":1752183061595,"y":35.114},{"x":1752183001445,"y":32.879},{"x":1752182941272,"y":35.134},{"x":1752182881117,"y":35.73},{"x":1752182820931,"y":43.374},{"x":1752182760774,"y":53.766},{"x":1752182700668,"y":34.765},{"x":1752182640501,"y":37.419},{"x":1752182580409,"y":42.359},{"x":1752182522956,"y":39.117},{"x":1752182462797,"y":34.986},{"x":1752182402626,"y":35.988},{"x":1752182342473,"y":35.432},{"x":1752182282333,"y":35.006},{"x":1752182222143,"y":39.531},{"x":1752182161948,"y":46.562},{"x":1752182101790,"y":35.573},{"x":1752182041623,"y":45.905},{"x":1752181981466,"y":38.465},{"x":1752181921295,"y":35.197},{"x":1752181861131,"y":38.655},{"x":1752181800954,"y":38.128},{"x":1752181740755,"y":34.247},{"x":1752181680604,"y":50.06},{"x":1752181620475,"y":33.299},{"x":1752181560344,"y":37.257},{"x":1752181502994,"y":30.77},{"x":1752181442839,"y":33.671},{"x":1752181382680,"y":49.456},{"x":1752181322523,"y":42.94},{"x":1752181262366,"y":44.342},{"x":1752181202262,"y":47.48},{"x":1752181142025,"y":43.588},{"x":1752181081853,"y":43.716},{"x":1752181021689,"y":45.677},{"x":1752180961546,"y":53.761},{"x":1752180901487,"y":47.924},{"x":1752180841237,"y":54.388},{"x":1752180781068,"y":43.209},{"x":1752180720886,"y":49.422},{"x":1752180660720,"y":60.194},{"x":1752180600582,"y":52.893},{"x":1752180540347,"y":43.876},{"x":1752180482963,"y":43.006},{"x":1752180422807,"y":50.822},{"x":1752180362655,"y":44.364},{"x":1752180302492,"y":52.534},{"x":1752180242332,"y":43.704},{"x":1752180182169,"y":38.274},{"x":1752180121971,"y":38.23},{"x":1752180061823,"y":44.403},{"x":1752180001659,"y":61.148},{"x":1752179941495,"y":61.887},{"x":1752179881349,"y":42.01},{"x":1752179821194,"y":42.043},{"x":1752179761047,"y":60.003},{"x":1752179700871,"y":65.075},{"x":1752179640710,"y":63.94},{"x":1752179580569,"y":70.105},{"x":1752179520427,"y":54.68},{"x":1752179460287,"y":51.224},{"x":1752179402955,"y":45.109},{"x":1752179342794,"y":48.472},{"x":1752179282642,"y":48.043},{"x":1752179222484,"y":44.861},{"x":1752179162328,"y":58.342},{"x":1752179102172,"y":64.433},{"x":1752179042016,"y":45.6},{"x":1752178981825,"y":63.258},{"x":1752178921675,"y":57.568},{"x":1752178861546,"y":51.198},{"x":1752178801356,"y":43.93},{"x":1752178741100,"y":45.811},{"x":1752178680890,"y":43.814},{"x":1752178620687,"y":44.714},{"x":1752178560569,"y":48.976},{"x":1752178500370,"y":47.648},{"x":1752178440145,"y":47.55},{"x":1752178382874,"y":54.226},{"x":1752178322717,"y":61.183},{"x":1752178262553,"y":63.046},{"x":1752178202402,"y":63.717},{"x":1752178142241,"y":54.887},{"x":1752178082072,"y":50.116},{"x":1752178021891,"y":48.171},{"x":1752177961728,"y":39.552},{"x":1752177901575,"y":59.905},{"x":1752177841407,"y":62.376},{"x":1752177781280,"y":67.933},{"x":1752177721087,"y":69.842},{"x":1752177660889,"y":63.616},{"x":1752177600910,"y":66.365},{"x":1752177540516,"y":48.87},{"x":1752177480382,"y":46.644},{"x":1752177420288,"y":52.716},{"x":1752177362924,"y":54.097},{"x":1752177302770,"y":52.405},{"x":1752177242617,"y":65.035},{"x":1752177182437,"y":46.477},{"x":1752177122283,"y":67.841},{"x":1752177062114,"y":60.683},{"x":1752177001947,"y":73.931},{"x":1752176941792,"y":51.425},{"x":1752176881640,"y":52.339},{"x":1752176821469,"y":52.593},{"x":1752176761307,"y":52.147},{"x":1752176701157,"y":64.499},{"x":1752176640962,"y":72.453},{"x":1752176580794,"y":65.217},{"x":1752176520612,"y":52.47},{"x":1752176460484,"y":57.635},{"x":1752176400404,"y":48.644},{"x":1752176342882,"y":38.628},{"x":1752176282697,"y":58.408},{"x":1752176222532,"y":48.806},{"x":1752176162374,"y":56.981},{"x":1752176102216,"y":59.531},{"x":1752176042058,"y":63.066},{"x":1752175981891,"y":55.283},{"x":1752175921727,"y":54.562},{"x":1752175861559,"y":46.45},{"x":1752175801405,"y":45.001},{"x":1752175741234,"y":47.655},{"x":1752175681039,"y":53.696},{"x":1752175620861,"y":48.698},{"x":1752175560701,"y":65.42},{"x":1752175500635,"y":68.952},{"x":1752175440477,"y":59.854},{"x":1752175383022,"y":61.113},{"x":1752175322890,"y":61.811},{"x":1752175262686,"y":51.887},{"x":1752175202495,"y":63.979},{"x":1752175142268,"y":61.765},{"x":1752175082072,"y":56.252},{"x":1752175021863,"y":63.518},{"x":1752174961702,"y":61.542},{"x":1752174901527,"y":50.196},{"x":1752174841360,"y":43.695},{"x":1752174781194,"y":55.757},{"x":1752174721005,"y":38.887},{"x":1752174660842,"y":47.379},{"x":1752174600706,"y":48.684},{"x":1752174540525,"y":56.363},{"x":1752174480369,"y":61.825},{"x":1752174420175,"y":57.279},{"x":1752174362868,"y":58.782},{"x":1752174302748,"y":43.738},{"x":1752174242542,"y":40.902},{"x":1752174182365,"y":46.418},{"x":1752174122214,"y":60.879},{"x":1752174062017,"y":41.449},{"x":1752174001995,"y":47.645},{"x":1752173941642,"y":45.853},{"x":1752173881485,"y":45.802},{"x":1752173821327,"y":51.379},{"x":1752173761170,"y":62.656},{"x":1752173700974,"y":45.056},{"x":1752173640806,"y":52.331},{"x":1752173580645,"y":43.974},{"x":1752173520563,"y":56.984},{"x":1752173460318,"y":58.297},{"x":1752173402991,"y":57.049},{"x":1752173342820,"y":52.387},{"x":1752173282648,"y":64.298},{"x":1752173222496,"y":56.03},{"x":1752173162320,"y":47.718},{"x":1752173102166,"y":72.926},{"x":1752173041988,"y":62.132},{"x":1752172981819,"y":50.692},{"x":1752172921681,"y":40.44},{"x":1752172861500,"y":42.0},{"x":1752172801346,"y":46.684},{"x":1752172741188,"y":46.728},{"x":1752172681023,"y":47.06},{"x":1752172620852,"y":53.434},{"x":1752172560701,"y":39.697},{"x":1752172500572,"y":32.468},{"x":1752172440337,"y":50.0},{"x":1752172383022,"y":55.858},{"x":1752172322860,"y":47.28},{"x":1752172262695,"y":43.822},{"x":1752172202537,"y":48.751},{"x":1752172142377,"y":40.284},{"x":1752172082212,"y":31.757},{"x":1752172022035,"y":26.314},{"x":1752171961867,"y":42.293},{"x":1752171901696,"y":32.394},{"x":1752171841530,"y":45.767},{"x":1752171781365,"y":46.069},{"x":1752171721197,"y":46.147},{"x":1752171661019,"y":50.283},{"x":1752171600898,"y":41.693},{"x":1752171540661,"y":43.879},{"x":1752171480499,"y":43.201},{"x":1752171420360,"y":33.27},{"x":1752171363025,"y":28.456},{"x":1752171302869,"y":40.963},{"x":1752171242682,"y":46.182},{"x":1752171182514,"y":59.104},{"x":1752171122352,"y":49.087},{"x":1752171062190,"y":42.397},{"x":1752171002008,"y":46.693},{"x":1752170941833,"y":32.903},{"x":1752170881660,"y":32.745},{"x":1752170821487,"y":33.892},{"x":1752170761311,"y":37.703},{"x":1752170701145,"y":37.792},{"x":1752170640938,"y":50.62},{"x":1752170580781,"y":55.582},{"x":1752170520614,"y":36.614},{"x":1752170460519,"y":28.269},{"x":1752170400690,"y":44.956},{"x":1752170342938,"y":48.99},{"x":1752170282789,"y":51.657},{"x":1752170222597,"y":54.252},{"x":1752170162422,"y":56.917},{"x":1752170102264,"y":55.648},{"x":1752170042099,"y":36.864},{"x":1752169981940,"y":29.189},{"x":1752169921742,"y":37.309},{"x":1752169861580,"y":37.195},{"x":1752169801416,"y":29.397},{"x":1752169741252,"y":32.007},{"x":1752169681082,"y":36.293},{"x":1752169620893,"y":39.55},{"x":1752169560750,"y":44.37},{"x":1752169500601,"y":38.939},{"x":1752169440402,"y":36.408},{"x":1752169380287,"y":31.073},{"x":1752169322888,"y":30.912},{"x":1752169262727,"y":30.243},{"x":1752169202577,"y":28.031},{"x":1752169142422,"y":44.819},{"x":1752169082249,"y":40.939},{"x":1752169022089,"y":37.878},{"x":1752168961909,"y":43.445},{"x":1752168901746,"y":42.189},{"x":1752168841564,"y":37.05},{"x":1752168781403,"y":28.279},{"x":1752168721225,"y":31.365},{"x":1752168661062,"y":40.178},{"x":1752168600890,"y":52.627},{"x":1752168540699,"y":25.655},{"x":1752168480596,"y":21.502},{"x":1752168420432,"y":25.869},{"x":1752168360245,"y":32.82},{"x":1752168302938,"y":22.248},{"x":1752168242773,"y":24.055},{"x":1752168182609,"y":19.701},{"x":1752168122428,"y":29.703},{"x":1752168062272,"y":47.476},{"x":1752168002099,"y":53.223},{"x":1752167941922,"y":50.339},{"x":1752167881769,"y":38.461},{"x":1752167821545,"y":32.298},{"x":1752167761343,"y":40.115},{"x":1752167701167,"y":30.983},{"x":1752167640937,"y":31.693},{"x":1752167580778,"y":43.752},{"x":1752167520630,"y":33.015},{"x":1752167460564,"y":52.741},{"x":1752167400258,"y":36.981},{"x":1752167342888,"y":29.827},{"x":1752167282703,"y":19.831},{"x":1752167222547,"y":26.69},{"x":1752167162375,"y":23.789},{"x":1752167102215,"y":24.438},{"x":1752167042054,"y":35.831},{"x":1752166981864,"y":28.524},{"x":1752166921696,"y":31.352},{"x":1752166861522,"y":28.593},{"x":1752166801459,"y":34.845},{"x":1752166741071,"y":19.184},{"x":1752166680899,"y":19.803},{"x":1752166620750,"y":21.145},{"x":1752166560636,"y":20.632},{"x":1752166500494,"y":27.347},{"x":1752166440310,"y":32.442},{"x":1752166382926,"y":38.687},{"x":1752166322764,"y":29.284},{"x":1752166262602,"y":39.634},{"x":1752166202435,"y":43.559},{"x":1752166142275,"y":23.357},{"x":1752166082103,"y":31.497},{"x":1752166021926,"y":58.658},{"x":1752165961776,"y":47.057},{"x":1752165901590,"y":34.254},{"x":1752165841400,"y":35.913},{"x":1752165781240,"y":38.314},{"x":1752165721067,"y":26.546},{"x":1752165660854,"y":29.327},{"x":1752165600730,"y":22.814},{"x":1752165540455,"y":21.598},{"x":1752165480323,"y":18.572},{"x":1752165422916,"y":24.794},{"x":1752165362759,"y":22.89},{"x":1752165302594,"y":42.063},{"x":1752165242423,"y":27.874},{"x":1752165182260,"y":51.244},{"x":1752165122091,"y":27.635},{"x":1752165061903,"y":25.015},{"x":1752165001742,"y":52.158},{"x":1752164941570,"y":38.866},{"x":1752164881399,"y":38.521},{"x":1752164821228,"y":48.12},{"x":1752164761036,"y":40.226},{"x":1752164700852,"y":40.243},{"x":1752164640680,"y":44.392},{"x":1752164580542,"y":31.554},{"x":1752164520342,"y":33.475},{"x":1752164460073,"y":28.274},{"x":1752164402845,"y":43.706},{"x":1752164342666,"y":21.779},{"x":1752164282488,"y":17.343},{"x":1752164222266,"y":32.805},{"x":1752164162091,"y":34.058},{"x":1752164101882,"y":20.666},{"x":1752164041716,"y":29.659},{"x":1752163981548,"y":25.337},{"x":1752163921385,"y":37.591},{"x":1752163861220,"y":41.461},{"x":1752163801078,"y":45.155},{"x":1752163740861,"y":39.318},{"x":1752163680685,"y":53.21},{"x":1752163620518,"y":30.073},{"x":1752163560349,"y":33.221},{"x":1752163502995,"y":30.66},{"x":1752163442809,"y":30.594},{"x":1752163382645,"y":40.681},{"x":1752163322455,"y":47.824},{"x":1752163262281,"y":44.437},{"x":1752163202158,"y":38.155},{"x":1752163141917,"y":40.439},{"x":1752163081743,"y":44.129},{"x":1752163021614,"y":31.273},{"x":1752162961411,"y":29.407},{"x":1752162901240,"y":23.566},{"x":1752162841069,"y":25.05},{"x":1752162780869,"y":17.523},{"x":1752162720717,"y":43.326},{"x":1752162660514,"y":33.827},{"x":1752162600441,"y":23.624},{"x":1752162540045,"y":25.874},{"x":1752162482860,"y":38.674},{"x":1752162422692,"y":29.802},{"x":1752162362525,"y":14.876},{"x":1752162302352,"y":35.213},{"x":1752162242196,"y":43.549},{"x":1752162182002,"y":49.253},{"x":1752162121833,"y":38.475},{"x":1752162061669,"y":35.229},{"x":1752162001501,"y":30.101},{"x":1752161941334,"y":34.382},{"x":1752161881164,"y":24.727},{"x":1752161820991,"y":19.504},{"x":1752161760813,"y":31.326},{"x":1752161700685,"y":29.089},{"x":1752161640476,"y":26.591},{"x":1752161580352,"y":28.775},{"x":1752161522929,"y":30.123},{"x":1752161462765,"y":32.265},{"x":1752161402622,"y":22.816},{"x":1752161342427,"y":13.783},{"x":1752161282249,"y":14.339},{"x":1752161222081,"y":25.345},{"x":1752161161895,"y":34.166},{"x":1752161101724,"y":28.646},{"x":1752161041556,"y":30.048},{"x":1752160981377,"y":33.71},{"x":1752160921216,"y":18.662},{"x":1752160861019,"y":30.32},{"x":1752160800913,"y":21.445},{"x":1752160740567,"y":31.482},{"x":1752160680201,"y":12.181},{"x":1752160622976,"y":10.531},{"x":1752160562733,"y":19.029},{"x":1752160502544,"y":17.91},{"x":1752160442377,"y":13.459},{"x":1752160382200,"y":25.087},{"x":1752160322024,"y":48.427},{"x":1752160261845,"y":45.23},{"x":1752160201684,"y":36.656},{"x":1752160141514,"y":43.636},{"x":1752160081345,"y":41.975},{"x":1752160021170,"y":18.037},{"x":1752159960979,"y":12.447},{"x":1752159900788,"y":10.386},{"x":1752159840624,"y":33.054},{"x":1752159780460,"y":23.298},{"x":1752159720243,"y":22.998},{"x":1752159662874,"y":21.414},{"x":1752159602722,"y":36.616},{"x":1752159542534,"y":29.343},{"x":1752159482368,"y":19.405},{"x":1752159422197,"y":18.263},{"x":1752159362038,"y":12.634},{"x":1752159301864,"y":10.647},{"x":1752159241684,"y":13.434},{"x":1752159181509,"y":24.938},{"x":1752159121345,"y":20.56},{"x":1752159061139,"y":28.541},{"x":1752159000951,"y":19.177},{"x":1752158940777,"y":34.035},{"x":1752158880636,"y":37.472},{"x":1752158820469,"y":36.758},{"x":1752158760274,"y":35.567},{"x":1752158702965,"y":28.155},{"x":1752158642800,"y":13.337},{"x":1752158582642,"y":24.657},{"x":1752158522458,"y":32.189},{"x":1752158462298,"y":10.452},{"x":1752158402134,"y":21.468},{"x":1752158341948,"y":24.217},{"x":1752158281797,"y":26.644},{"x":1752158221590,"y":32.39},{"x":1752158161413,"y":12.052},{"x":1752158101225,"y":8.034},{"x":1752158041041,"y":35.376},{"x":1752157980856,"y":37.751},{"x":1752157920687,"y":26.954},{"x":1752157860549,"y":42.899},{"x":1752157800460,"y":21.906},{"x":1752157743019,"y":22.013},{"x":1752157682810,"y":20.878},{"x":1752157622639,"y":22.896},{"x":1752157562473,"y":11.096},{"x":1752157502291,"y":38.022},{"x":1752157442111,"y":36.275},{"x":1752157381926,"y":21.158},{"x":1752157321760,"y":24.148},{"x":1752157261589,"y":24.432},{"x":1752157201430,"y":17.209},{"x":1752157141223,"y":47.202},{"x":1752157081038,"y":41.324},{"x":1752157020814,"y":34.702},{"x":1752156960641,"y":50.347},{"x":1752156900604,"y":36.271},{"x":1752156840359,"y":31.574},{"x":1752156782972,"y":14.98},{"x":1752156722795,"y":13.046},{"x":1752156662618,"y":22.538},{"x":1752156602454,"y":22.729},{"x":1752156542291,"y":29.431},{"x":1752156482123,"y":26.19},{"x":1752156421946,"y":25.563},{"x":1752156361779,"y":27.158},{"x":1752156301604,"y":42.368},{"x":1752156241429,"y":12.203},{"x":1752156181254,"y":7.335},{"x":1752156121073,"y":10.443},{"x":1752156060882,"y":6.045},{"x":1752156000842,"y":10.203},{"x":1752155940493,"y":12.4},{"x":1752155880542,"y":16.784},{"x":1752155822926,"y":12.889},{"x":1752155762770,"y":10.439},{"x":1752155702601,"y":23.714},{"x":1752155642430,"y":25.729},{"x":1752155582269,"y":26.191},{"x":1752155522093,"y":28.75},{"x":1752155461914,"y":36.529},{"x":1752155401740,"y":31.286},{"x":1752155341572,"y":15.259},{"x":1752155281413,"y":21.533},{"x":1752155221250,"y":39.668},{"x":1752155161028,"y":32.376},{"x":1752155100942,"y":18.373},{"x":1752155040687,"y":22.138},{"x":1752154980588,"y":22.486},{"x":1752154920426,"y":33.523},{"x":1752154860063,"y":31.236},{"x":1752154802842,"y":17.194},{"x":1752154742667,"y":24.596},{"x":1752154682477,"y":20.459},{"x":1752154622308,"y":14.97},{"x":1752154562138,"y":5.486},{"x":1752154501951,"y":11.225},{"x":1752154441763,"y":12.956},{"x":1752154381621,"y":10.828},{"x":1752154321413,"y":9.828},{"x":1752154261243,"y":19.936},{"x":1752154201116,"y":31.396},{"x":1752154140885,"y":30.077},{"x":1752154080724,"y":28.476},{"x":1752154020467,"y":39.426},{"x":1752153960312,"y":31.649},{"x":1752153902963,"y":27.931},{"x":1752153842786,"y":17.37},{"x":1752153782621,"y":22.248},{"x":1752153722416,"y":14.909},{"x":1752153662247,"y":25.715},{"x":1752153602040,"y":17.367},{"x":1752153541830,"y":17.592},{"x":1752153481625,"y":28.313},{"x":1752153421418,"y":22.878},{"x":1752153361237,"y":24.207},{"x":1752153301058,"y":6.507},{"x":1752153240881,"y":13.959},{"x":1752153180705,"y":3.582},{"x":1752153120598,"y":10.166},{"x":1752153060352,"y":19.267},{"x":1752153003009,"y":15.394},{"x":1752152942830,"y":6.372},{"x":1752152882654,"y":10.756},{"x":1752152822489,"y":35.951},{"x":1752152762326,"y":41.532},{"x":1752152702159,"y":29.24},{"x":1752152641974,"y":30.034},{"x":1752152581816,"y":44.968},{"x":1752152521652,"y":17.469},{"x":1752152461501,"y":10.356},{"x":1752152401361,"y":17.627},{"x":1752152341086,"y":24.909},{"x":1752152280903,"y":26.781},{"x":1752152220743,"y":30.615},{"x":1752152160587,"y":19.849},{"x":1752152100453,"y":22.439},{"x":1752152040254,"y":32.141},{"x":1752151982924,"y":20.731},{"x":1752151922757,"y":11.015},{"x":1752151862586,"y":20.952},{"x":1752151802433,"y":14.723},{"x":1752151742249,"y":3.772},{"x":1752151682108,"y":13.986},{"x":1752151621867,"y":15.663},{"x":1752151561694,"y":26.322},{"x":1752151501523,"y":7.583},{"x":1752151441350,"y":12.568},{"x":1752151381188,"y":22.65},{"x":1752151321009,"y":40.983},{"x":1752151260838,"y":29.279},{"x":1752151200718,"y":40.351},{"x":1752151140518,"y":24.08},{"x":1752151080346,"y":27.315},{"x":1752151020016,"y":14.909},{"x":1752150962850,"y":7.55},{"x":1752150902684,"y":12.365},{"x":1752150842513,"y":23.222},{"x":1752150782341,"y":41.657},{"x":1752150722173,"y":30.589},{"x":1752150661978,"y":16.07},{"x":1752150601827,"y":15.188},{"x":1752150541627,"y":32.057},{"x":1752150481450,"y":22.086},{"x":1752150421281,"y":9.52},{"x":1752150361063,"y":11.803},{"x":1752150300879,"y":29.866},{"x":1752150240717,"y":23.729},{"x":1752150180577,"y":34.332},{"x":1752150120389,"y":16.593},{"x":1752150060077,"y":49.269},{"x":1752150002842,"y":28.588},{"x":1752149942638,"y":17.154},{"x":1752149882421,"y":7.197},{"x":1752149822137,"y":8.445},{"x":1752149761953,"y":16.431},{"x":1752149701788,"y":10.318},{"x":1752149641623,"y":17.305},{"x":1752149581446,"y":46.457},{"x":1752149521277,"y":51.897},{"x":1752149461103,"y":41.435},{"x":1752149400930,"y":35.993},{"x":1752149340744,"y":37.319},{"x":1752149280577,"y":25.238},{"x":1752149220367,"y":10.89},{"x":1752149160197,"y":11.083},{"x":1752149102917,"y":19.802},{"x":1752149042745,"y":22.445},{"x":1752148982584,"y":23.103},{"x":1752148922413,"y":28.162},{"x":1752148862250,"y":32.456},{"x":1752148802130,"y":29.298},{"x":1752148741891,"y":19.327},{"x":1752148681726,"y":30.194},{"x":1752148620890,"y":19.276},{"x":1752148560118,"y":13.151},{"x":1752148501648,"y":20.416},{"x":1752148441493,"y":17.666},{"x":1752148381345,"y":18.448},{"x":1752148321187,"y":11.12},{"x":1752148261014,"y":26.044},{"x":1752148200863,"y":39.538},{"x":1752148140672,"y":42.477},{"x":1752148080589,"y":38.831},{"x":1752148020377,"y":35.866},{"x":1752147960199,"y":10.089},{"x":1752147902944,"y":15.443},{"x":1752147842772,"y":10.574},{"x":1752147782628,"y":20.283},{"x":1752147722458,"y":18.557},{"x":1752147662270,"y":24.152},{"x":1752147602105,"y":28.48},{"x":1752147541951,"y":24.285},{"x":1752147481794,"y":17.665},{"x":1752147421617,"y":22.484},{"x":1752147361471,"y":29.543},{"x":1752147301316,"y":25.259},{"x":1752147241160,"y":39.381},{"x":1752147180971,"y":34.065},{"x":1752147120814,"y":27.325},{"x":1752147060656,"y":11.778},{"x":1752147000586,"y":17.554},{"x":1752146940404,"y":33.174},{"x":1752146880153,"y":35.465},{"x":1752146822888,"y":14.511},{"x":1752146762712,"y":26.415},{"x":1752146702562,"y":21.286},{"x":1752146642402,"y":21.076},{"x":1752146582345,"y":31.339},{"x":1752146522198,"y":36.112},{"x":1752146461945,"y":42.266},{"x":1752146401804,"y":34.483},{"x":1752146341618,"y":57.759},{"x":1752146281387,"y":19.585},{"x":1752146221163,"y":15.377},{"x":1752146160994,"y":36.433},{"x":1752146103855,"y":18.77},{"x":1752146040443,"y":22.107},{"x":1752145980234,"y":29.988},{"x":1752145922940,"y":29.498},{"x":1752145862768,"y":27.865},{"x":1752145802610,"y":21.415},{"x":1752145742454,"y":21.773},{"x":1752145682288,"y":39.545},{"x":1752145622145,"y":32.803},{"x":1752145561964,"y":19.292},{"x":1752145501787,"y":17.885},{"x":1752145441635,"y":22.291},{"x":1752145381482,"y":24.934},{"x":1752145321324,"y":13.105},{"x":1752145261160,"y":12.098},{"x":1752145201084,"y":13.607},{"x":1752145142031,"y":12.877},{"x":1752145081006,"y":13.298},{"x":1752145020827,"y":30.122},{"x":1752144960701,"y":38.391},{"x":1752144901870,"y":32.502},{"x":1752144840426,"y":36.786},{"x":1752144782419,"y":42.895},{"x":1752144722285,"y":31.356},{"x":1752144662121,"y":13.141},{"x":1752144601981,"y":16.751},{"x":1752144541801,"y":14.516},{"x":1752144481645,"y":22.105},{"x":1752144421500,"y":33.605},{"x":1752144361333,"y":21.049},{"x":1752144301173,"y":22.646},{"x":1752144240996,"y":32.879},{"x":1752144180835,"y":27.391},{"x":1752144120613,"y":27.439},{"x":1752144060541,"y":21.974},{"x":1752144000334,"y":22.496},{"x":1752143942990,"y":22.588},{"x":1752143882839,"y":24.5},{"x":1752143822697,"y":26.233},{"x":1752143762538,"y":31.985},{"x":1752143702384,"y":28.301},{"x":1752143642227,"y":29.856},{"x":1752143582075,"y":12.75},{"x":1752143521911,"y":7.332},{"x":1752143461761,"y":6.174},{"x":1752143401612,"y":8.581},{"x":1752143341467,"y":14.546},{"x":1752143281310,"y":22.906},{"x":1752143221153,"y":15.161},{"x":1752143160976,"y":25.322},{"x":1752143100832,"y":41.29},{"x":1752143040700,"y":35.15},{"x":1752142980548,"y":29.862},{"x":1752142920379,"y":22.415},{"x":1752142860144,"y":23.236},{"x":1752142802912,"y":10.662},{"x":1752142742758,"y":18.014},{"x":1752142682604,"y":20.023},{"x":1752142622399,"y":34.981},{"x":1752142562253,"y":21.523},{"x":1752142502112,"y":26.552},{"x":1752142441925,"y":28.159},{"x":1752142381772,"y":31.327},{"x":1752142321646,"y":14.242},{"x":1752142261472,"y":12.246},{"x":1752142201331,"y":7.594},{"x":1752142141170,"y":9.838},{"x":1752142081004,"y":6.404},{"x":1752142020854,"y":17.595},{"x":1752141960710,"y":11.06},{"x":1752141900592,"y":18.111},{"x":1752141840403,"y":21.931},{"x":1752141780196,"y":39.645},{"x":1752141722890,"y":28.494},{"x":1752141662760,"y":24.468},{"x":1752141602574,"y":29.538},{"x":1752141542394,"y":17.87},{"x":1752141482245,"y":8.428},{"x":1752141422092,"y":9.118},{"x":1752141361931,"y":19.852},{"x":1752141301788,"y":28.67},{"x":1752141241640,"y":35.167},{"x":1752141181482,"y":37.902},{"x":1752141121337,"y":18.002},{"x":1752141061173,"y":18.159},{"x":1752141001004,"y":14.038},{"x":1752140940848,"y":11.082},{"x":1752140880709,"y":23.877},{"x":1752140820561,"y":19.149},{"x":1752140760479,"y":19.206},{"x":1752140700349,"y":28.855},{"x":1752140642973,"y":26.334},{"x":1752140582826,"y":27.47},{"x":1752140522674,"y":22.599},{"x":1752140462528,"y":30.1},{"x":1752140402345,"y":15.256},{"x":1752140342194,"y":12.017},{"x":1752140282047,"y":9.434},{"x":1752140221890,"y":13.392},{"x":1752140161745,"y":16.16},{"x":1752140101611,"y":20.498},{"x":1752140041437,"y":17.528},{"x":1752139981285,"y":48.468},{"x":1752139921151,"y":25.977},{"x":1752139860978,"y":21.298},{"x":1752139800969,"y":12.118},{"x":1752139740652,"y":15.088},{"x":1752139680509,"y":15.799},{"x":1752139620364,"y":22.96},{"x":1752139560304,"y":29.622},{"x":1752139502913,"y":33.223},{"x":1752139442761,"y":42.058},{"x":1752139382602,"y":33.182},{"x":1752139322452,"y":26.965},{"x":1752139262303,"y":11.411},{"x":1752139202168,"y":25.149},{"x":1752139141979,"y":22.987},{"x":1752139081846,"y":40.555},{"x":1752139021598,"y":43.08},{"x":1752138961453,"y":32.206},{"x":1752138901289,"y":34.815},{"x":1752138841134,"y":38.368},{"x":1752138780936,"y":27.26},{"x":1752138720777,"y":27.626},{"x":1752138660617,"y":21.99},{"x":1752138600538,"y":33.779},{"x":1752138540437,"y":18.065},{"x":1752138480126,"y":17.25},{"x":1752138422890,"y":29.807},{"x":1752138362736,"y":35.01},{"x":1752138302587,"y":36.316},{"x":1752138242438,"y":30.21},{"x":1752138182280,"y":36.649},{"x":1752138122126,"y":28.253},{"x":1752138061967,"y":28.923},{"x":1752138001874,"y":16.67},{"x":1752137941630,"y":23.416},{"x":1752137881494,"y":25.807},{"x":1752137821339,"y":22.173},{"x":1752137761189,"y":26.544},{"x":1752137701033,"y":20.913},{"x":1752137640882,"y":23.176},{"x":1752137580739,"y":28.036},{"x":1752137520646,"y":34.081},{"x":1752137460429,"y":30.175},{"x":1752137400304,"y":19.947},{"x":1752137342965,"y":22.968},{"x":1752137282822,"y":26.424},{"x":1752137222673,"y":21.732},{"x":1752137162530,"y":14.403},{"x":1752137102375,"y":24.2},{"x":1752137042226,"y":21.843},{"x":1752136982039,"y":25.838},{"x":1752136921883,"y":30.134},{"x":1752136861703,"y":22.04},{"x":1752136801551,"y":13.907},{"x":1752136741391,"y":11.642},{"x":1752136681245,"y":14.576},{"x":1752136621077,"y":10.903},{"x":1752136560907,"y":17.727},{"x":1752136500778,"y":27.038},{"x":1752136440607,"y":47.761},{"x":1752136380517,"y":47.493},{"x":1752136320407,"y":42.618},{"x":1752136260051,"y":39.11},{"x":1752136202885,"y":39.584},{"x":1752136142638,"y":40.712},{"x":1752136082488,"y":34.678},{"x":1752136022341,"y":35.709},{"x":1752135962189,"y":38.127},{"x":1752135902042,"y":27.49},{"x":1752135841889,"y":28.655},{"x":1752135781750,"y":25.025},{"x":1752135721596,"y":19.081},{"x":1752135661580,"y":27.106},{"x":1752135601328,"y":23.233},{"x":1752135541141,"y":21.241},{"x":1752135480989,"y":27.451},{"x":1752135420800,"y":27.089},{"x":1752135360706,"y":28.732},{"x":1752135300521,"y":30.835},{"x":1752135240228,"y":24.282},{"x":1752135182891,"y":27.115},{"x":1752135122726,"y":28.236},{"x":1752135062589,"y":19.616},{"x":1752135002431,"y":34.362},{"x":1752134942285,"y":22.225},{"x":1752134882133,"y":21.049},{"x":1752134821930,"y":16.267},{"x":1752134761783,"y":20.324},{"x":1752134701634,"y":24.572},{"x":1752134641481,"y":25.796},{"x":1752134581324,"y":36.343},{"x":1752134521146,"y":32.958},{"x":1752134460985,"y":20.764},{"x":1752134401095,"y":30.573},{"x":1752134340636,"y":19.577},{"x":1752134280518,"y":21.075},{"x":1752134220431,"y":23.054},{"x":1752134162996,"y":16.759},{"x":1752134102859,"y":17.785},{"x":1752134042703,"y":23.191},{"x":1752133982553,"y":49.176},{"x":1752133922395,"y":59.345},{"x":1752133862206,"y":49.931},{"x":1752133802039,"y":42.728},{"x":1752133741876,"y":40.566},{"x":1752133681708,"y":24.503},{"x":1752133621568,"y":16.043},{"x":1752133561419,"y":12.277},{"x":1752133501280,"y":12.07},{"x":1752133441113,"y":26.201},{"x":1752133380942,"y":23.709},{"x":1752133320794,"y":33.657},{"x":1752133260655,"y":39.759},{"x":1752133200567,"y":31.993},{"x":1752133140368,"y":36.215},{"x":1752133080213,"y":36.485},{"x":1752133022924,"y":39.685},{"x":1752132962768,"y":31.825},{"x":1752132902598,"y":32.301},{"x":1752132842447,"y":35.984},{"x":1752132782291,"y":35.888},{"x":1752132722161,"y":28.783},{"x":1752132661950,"y":19.033},{"x":1752132601805,"y":30.098},{"x":1752132541653,"y":29.928},{"x":1752132481488,"y":28.491},{"x":1752132421345,"y":32.378},{"x":1752132361197,"y":36.42},{"x":1752132301045,"y":37.999},{"x":1752132240885,"y":31.279},{"x":1752132180734,"y":22.514},{"x":1752132120574,"y":22.423},{"x":1752132060503,"y":17.83},{"x":1752132000335,"y":16.577},{"x":1752131942999,"y":16.888},{"x":1752131882839,"y":29.208},{"x":1752131822630,"y":32.041},{"x":1752131762478,"y":29.599},{"x":1752131702327,"y":25.714},{"x":1752131642167,"y":29.86},{"x":1752131582006,"y":21.957},{"x":1752131521849,"y":23.719},{"x":1752131461670,"y":22.687},{"x":1752131401523,"y":31.205},{"x":1752131341372,"y":42.286},{"x":1752131281221,"y":47.929},{"x":1752131221058,"y":42.714},{"x":1752131160893,"y":36.426},{"x":1752131100756,"y":41.647},{"x":1752131040612,"y":44.246},{"x":1752130980482,"y":40.7},{"x":1752130920289,"y":45.357},{"x":1752130863031,"y":50.255},{"x":1752130802889,"y":62.743},{"x":1752130742720,"y":55.241},{"x":1752130682582,"y":69.65},{"x":1752130622429,"y":60.072},{"x":1752130562285,"y":56.553},{"x":1752130502136,"y":53.224},{"x":1752130441980,"y":45.952},{"x":1752130381815,"y":31.569},{"x":1752130321673,"y":30.052},{"x":1752130261528,"y":41.147},{"x":1752130201378,"y":38.311},{"x":1752130141204,"y":41.734},{"x":1752130081043,"y":43.726},{"x":1752130020886,"y":45.441},{"x":1752129960715,"y":42.056},{"x":1752129900661,"y":45.056},{"x":1752129840463,"y":48.845},{"x":1752129780342,"y":46.919},{"x":1752129722943,"y":53.39},{"x":1752129662798,"y":46.391},{"x":1752129602656,"y":51.89},{"x":1752129542504,"y":48.674},{"x":1752129482354,"y":41.865},{"x":1752129422157,"y":29.304},{"x":1752129361997,"y":34.859},{"x":1752129301847,"y":40.292},{"x":1752129241699,"y":35.361},{"x":1752129181537,"y":31.447},{"x":1752129121391,"y":28.289},{"x":1752129061243,"y":28.488},{"x":1752129001088,"y":34.213},{"x":1752128940923,"y":37.689},{"x":1752128880758,"y":40.39},{"x":1752128820595,"y":44.657},{"x":1752128760480,"y":37.329},{"x":1752128700331,"y":46.672},{"x":1752128642971,"y":39.702},{"x":1752128582834,"y":44.663},{"x":1752128522662,"y":45.671},{"x":1752128462514,"y":56.838},{"x":1752128402367,"y":51.368},{"x":1752128342227,"y":55.869},{"x":1752128282079,"y":66.051},{"x":1752128221849,"y":56.36},{"x":1752128161684,"y":45.021},{"x":1752128101549,"y":44.939},{"x":1752128041384,"y":61.041},{"x":1752127981241,"y":47.644},{"x":1752127921090,"y":58.067},{"x":1752127860871,"y":62.899},{"x":1752127800757,"y":59.561},{"x":1752127740582,"y":70.065},{"x":1752127680508,"y":61.264},{"x":1752127620268,"y":54.778},{"x":1752127563058,"y":52.879},{"x":1752127502861,"y":39.677},{"x":1752127442703,"y":40.311},{"x":1752127382549,"y":43.011},{"x":1752127322388,"y":34.617},{"x":1752127262221,"y":35.286},{"x":1752127202119,"y":38.818},{"x":1752127141892,"y":37.688},{"x":1752127081746,"y":41.27},{"x":1752127021583,"y":42.14},{"x":1752126961437,"y":39.601},{"x":1752126901281,"y":38.327},{"x":1752126841115,"y":41.022},{"x":1752126780940,"y":38.463},{"x":1752126720790,"y":39.15},{"x":1752126660594,"y":38.089},{"x":1752126600529,"y":35.942},{"x":1752126540315,"y":43.925},{"x":1752126480029,"y":47.878},{"x":1752126422881,"y":47.55},{"x":1752126362729,"y":45.905},{"x":1752126302572,"y":47.322},{"x":1752126242435,"y":37.78},{"x":1752126182265,"y":37.969},{"x":1752126122108,"y":35.557},{"x":1752126061962,"y":33.415},{"x":1752126001801,"y":34.863},{"x":1752125941687,"y":32.587},{"x":1752125881503,"y":33.505},{"x":1752125821346,"y":35.746},{"x":1752125761205,"y":39.249},{"x":1752125701049,"y":34.963},{"x":1752125640880,"y":34.134},{"x":1752125580728,"y":35.531},{"x":1752125520653,"y":24.398},{"x":1752125460474,"y":22.992},{"x":1752125400476,"y":29.709},{"x":1752125342995,"y":35.743},{"x":1752125282857,"y":31.489},{"x":1752125222711,"y":30.198},{"x":1752125162570,"y":30.541},{"x":1752125102424,"y":35.537},{"x":1752125042278,"y":24.993},{"x":1752124982133,"y":25.184},{"x":1752124921941,"y":23.927},{"x":1752124861806,"y":22.668},{"x":1752124801661,"y":23.699},{"x":1752124741474,"y":30.017},{"x":1752124681298,"y":26.133},{"x":1752124621075,"y":36.269},{"x":1752124560905,"y":34.474},{"x":1752124500776,"y":35.247},{"x":1752124440622,"y":37.816},{"x":1752124380463,"y":33.418},{"x":1752124320338,"y":24.077},{"x":1752124263011,"y":23.894},{"x":1752124202856,"y":24.086},{"x":1752124142711,"y":21.996},{"x":1752124082563,"y":28.283},{"x":1752124022417,"y":36.676},{"x":1752123962273,"y":35.885},{"x":1752123902116,"y":35.699},{"x":1752123841967,"y":38.254},{"x":1752123781824,"y":24.605},{"x":1752123721678,"y":26.494},{"x":1752123661533,"y":22.284},{"x":1752123601406,"y":30.511},{"x":1752123541194,"y":24.293},{"x":1752123480991,"y":22.506},{"x":1752123420815,"y":26.527},{"x":1752123360682,"y":22.152},{"x":1752123300636,"y":24.869},{"x":1752123240370,"y":27.195},{"x":1752123180287,"y":27.118},{"x":1752123122975,"y":27.333},{"x":1752123062826,"y":29.279},{"x":1752123002684,"y":24.716},{"x":1752122942532,"y":22.11},{"x":1752122882355,"y":22.689},{"x":1752122822197,"y":25.518},{"x":1752122762052,"y":36.079},{"x":1752122701909,"y":39.075},{"x":1752122641769,"y":35.303},{"x":1752122581608,"y":39.311},{"x":1752122521458,"y":35.872},{"x":1752122461321,"y":25.645},{"x":1752122401113,"y":26.396},{"x":1752122340942,"y":27.852},{"x":1752122280786,"y":25.287},{"x":1752122220643,"y":29.859},{"x":1752122160521,"y":24.829},{"x":1752122100362,"y":23.621},{"x":1752122040238,"y":26.658},{"x":1752121982897,"y":22.924},{"x":1752121922738,"y":26.651},{"x":1752121862584,"y":25.986},{"x":1752121802438,"y":29.839},{"x":1752121742295,"y":25.341},{"x":1752121682148,"y":24.025},{"x":1752121621977,"y":26.143},{"x":1752121561829,"y":27.135},{"x":1752121501683,"y":27.425},{"x":1752121441542,"y":39.061},{"x":1752121381402,"y":43.411},{"x":1752121321241,"y":39.406},{"x":1752121261101,"y":39.677},{"x":1752121200925,"y":40.969},{"x":1752121140780,"y":27.721},{"x":1752121080604,"y":26.983},{"x":1752121020435,"y":31.483},{"x":1752120960286,"y":28.297},{"x":1752120902930,"y":25.471},{"x":1752120842780,"y":24.389},{"x":1752120782634,"y":26.517},{"x":1752120722482,"y":34.787},{"x":1752120662337,"y":42.258},{"x":1752120602161,"y":45.405},{"x":1752120541999,"y":43.837},{"x":1752120481851,"y":38.591},{"x":1752120421698,"y":38.789},{"x":1752120361550,"y":33.167},{"x":1752120301366,"y":27.64},{"x":1752120241206,"y":26.158},{"x":1752120181046,"y":28.712},{"x":1752120120887,"y":26.532},{"x":1752120060726,"y":26.354},{"x":1752120000737,"y":28.219},{"x":1752119940364,"y":27.783},{"x":1752119880124,"y":32.143},{"x":1752119822891,"y":29.634},{"x":1752119762746,"y":30.738},{"x":1752119702597,"y":28.501},{"x":1752119642444,"y":26.826},{"x":1752119582300,"y":36.971},{"x":1752119522151,"y":42.162},{"x":1752119461991,"y":36.889},{"x":1752119401841,"y":40.405},{"x":1752119341688,"y":40.182},{"x":1752119281540,"y":25.953},{"x":1752119221389,"y":30.307},{"x":1752119161246,"y":31.519},{"x":1752119101131,"y":28.002},{"x":1752119040924,"y":28.028},{"x":1752118980762,"y":26.919},{"x":1752118920630,"y":26.943},{"x":1752118860513,"y":24.332},{"x":1752118800411,"y":44.682},{"x":1752118742963,"y":50.031},{"x":1752118682825,"y":46.375},{"x":1752118622661,"y":40.72},{"x":1752118562506,"y":41.581},{"x":1752118502348,"y":29.32},{"x":1752118442198,"y":25.453},{"x":1752118382049,"y":26.423},{"x":1752118321896,"y":31.515},{"x":1752118261752,"y":28.051},{"x":1752118201639,"y":27.172},{"x":1752118141454,"y":32.01},{"x":1752118081291,"y":32.759},{"x":1752118021134,"y":36.109},{"x":1752117960974,"y":31.174},{"x":1752117900834,"y":43.674},{"x":1752117840689,"y":41.345},{"x":1752117780505,"y":38.394},{"x":1752117720395,"y":37.464},{"x":1752117662994,"y":41.508},{"x":1752117602857,"y":27.22},{"x":1752117542703,"y":25.667},{"x":1752117482560,"y":28.482},{"x":1752117422387,"y":31.954},{"x":1752117362228,"y":28.574},{"x":1752117302076,"y":28.063},{"x":1752117241895,"y":25.968},{"x":1752117181748,"y":28.266},{"x":1752117121586,"y":24.97},{"x":1752117061360,"y":24.43},{"x":1752117001217,"y":28.536},{"x":1752116941079,"y":25.708},{"x":1752116880650,"y":27.772},{"x":1752116820471,"y":29.167},{"x":1752116760343,"y":32.033},{"x":1752116700131,"y":28.172},{"x":1752116640498,"y":28.787},{"x":1752116580191,"y":27.555},{"x":1752116522891,"y":26.269},{"x":1752116462717,"y":26.612},{"x":1752116401486,"y":27.121},{"x":1752116341069,"y":28.528},{"x":1752116280901,"y":36.809},{"x":1752116220758,"y":50.598},{"x":1752116160613,"y":53.731},{"x":1752116100549,"y":53.474},{"x":1752116040247,"y":50.908},{"x":1752115982978,"y":39.915},{"x":1752115922807,"y":26.613},{"x":1752115862657,"y":27.758},{"x":1752115802503,"y":38.577},{"x":1752115742355,"y":37.002},{"x":1752115682188,"y":36.488},{"x":1752115622034,"y":37.447},{"x":1752115561867,"y":36.439},{"x":1752115501714,"y":30.067},{"x":1752115441564,"y":33.341},{"x":1752115381418,"y":28.632},{"x":1752115321275,"y":27.365},{"x":1752115261132,"y":28.406},{"x":1752115200979,"y":28.499},{"x":1752115140823,"y":32.207},{"x":1752115080663,"y":25.002},{"x":1752115020549,"y":27.395},{"x":1752114960437,"y":33.949},{"x":1752114900229,"y":30.061},{"x":1752114842928,"y":31.294},{"x":1752114782756,"y":28.971},{"x":1752114722611,"y":26.578},{"x":1752114662458,"y":26.649},{"x":1752114602307,"y":25.749},{"x":1752114542126,"y":24.765},{"x":1752114481950,"y":42.004},{"x":1752114421799,"y":52.946},{"x":1752114361660,"y":50.0},{"x":1752114301512,"y":51.467},{"x":1752114241348,"y":50.59},{"x":1752114181204,"y":40.894},{"x":1752114121023,"y":29.882},{"x":1752114060873,"y":28.308},{"x":1752114000758,"y":27.793},{"x":1752113940568,"y":26.702},{"x":1752113880462,"y":25.222},{"x":1752113820238,"y":28.838},{"x":1752113762921,"y":34.282},{"x":1752113702757,"y":28.524},{"x":1752113642605,"y":29.987},{"x":1752113582466,"y":29.024},{"x":1752113522313,"y":29.742},{"x":1752113462168,"y":29.942},{"x":1752113402009,"y":31.289},{"x":1752113341853,"y":30.969},{"x":1752113281704,"y":28.192},{"x":1752113221556,"y":31.188},{"x":1752113161409,"y":29.823},{"x":1752113101256,"y":27.13},{"x":1752113041099,"y":33.006},{"x":1752112980919,"y":26.955},{"x":1752112920778,"y":28.039},{"x":1752112860763,"y":27.479},{"x":1752112800668,"y":26.672},{"x":1752112743026,"y":25.268},{"x":1752112682873,"y":27.925},{"x":1752112622729,"y":32.087},{"x":1752112562569,"y":29.175},{"x":1752112502427,"y":35.007},{"x":1752112442278,"y":34.871},{"x":1752112382143,"y":37.642},{"x":1752112321956,"y":37.107},{"x":1752112261806,"y":37.797},{"x":1752112201649,"y":35.982},{"x":1752112141494,"y":58.326},{"x":1752112081354,"y":60.338},{"x":1752112021210,"y":59.832},{"x":1752111961064,"y":59.095},{"x":1752111900951,"y":50.935},{"x":1752111840745,"y":39.0},{"x":1752111780589,"y":44.463},{"x":1752111720456,"y":47.077},{"x":1752111660341,"y":37.125},{"x":1752111602977,"y":35.439},{"x":1752111542833,"y":31.193},{"x":1752111482682,"y":34.648},{"x":1752111422531,"y":32.774},{"x":1752111362395,"y":32.755},{"x":1752111302242,"y":32.917},{"x":1752111242088,"y":34.984},{"x":1752111181922,"y":33.862},{"x":1752111121779,"y":50.193},{"x":1752111061639,"y":49.189},{"x":1752111001475,"y":50.999},{"x":1752110941313,"y":53.896},{"x":1752110881170,"y":56.01},{"x":1752110820985,"y":43.307},{"x":1752110760880,"y":37.299},{"x":1752110700682,"y":39.235},{"x":1752110640563,"y":35.737},{"x":1752110580410,"y":34.601},{"x":1752110520264,"y":29.482},{"x":1752110462928,"y":33.088},{"x":1752110402771,"y":31.887},{"x":1752110342613,"y":40.225},{"x":1752110282471,"y":34.819},{"x":1752110222250,"y":36.226},{"x":1752110162095,"y":39.294},{"x":1752110101918,"y":36.693},{"x":1752110041818,"y":38.887},{"x":1752109981633,"y":37.461},{"x":1752109921488,"y":35.099},{"x":1752109861344,"y":34.151},{"x":1752109801211,"y":38.227},{"x":1752109741033,"y":25.944},{"x":1752109680864,"y":27.202},{"x":1752109620720,"y":25.434},{"x":1752109560585,"y":26.931},{"x":1752109500519,"y":30.475},{"x":1752109440291,"y":31.087},{"x":1752109382992,"y":31.576},{"x":1752109322859,"y":31.423},{"x":1752109262603,"y":30.613},{"x":1752109202464,"y":38.532},{"x":1752109142284,"y":54.547},{"x":1752109082132,"y":50.764},{"x":1752109021973,"y":50.491},{"x":1752108961818,"y":45.835},{"x":1752108901682,"y":41.368},{"x":1752108841527,"y":29.511},{"x":1752108781379,"y":29.564},{"x":1752108721236,"y":31.46},{"x":1752108661082,"y":30.227},{"x":1752108600915,"y":27.644},{"x":1752108540753,"y":30.861},{"x":1752108480608,"y":38.499},{"x":1752108420553,"y":38.361},{"x":1752108360316,"y":37.937},{"x":1752108300113,"y":35.816},{"x":1752108242897,"y":33.057},{"x":1752108182736,"y":29.722},{"x":1752108122576,"y":27.93},{"x":1752108062423,"y":40.48},{"x":1752108002266,"y":45.194},{"x":1752107942114,"y":40.913},{"x":1752107881964,"y":41.139},{"x":1752107821806,"y":45.528},{"x":1752107761657,"y":27.792},{"x":1752107701515,"y":34.658},{"x":1752107641364,"y":34.949},{"x":1752107581215,"y":32.668},{"x":1752107521065,"y":32.072},{"x":1752107460896,"y":32.647},{"x":1752107400765,"y":30.48},{"x":1752107340575,"y":31.803},{"x":1752107280473,"y":47.929},{"x":1752107220277,"y":42.421},{"x":1752107162961,"y":39.719},{"x":1752107102816,"y":39.703},{"x":1752107042666,"y":28.865},{"x":1752106982536,"y":26.686},{"x":1752106922377,"y":32.437},{"x":1752106862231,"y":30.522},{"x":1752106802082,"y":28.286},{"x":1752106741887,"y":27.996},{"x":1752106681663,"y":34.929},{"x":1752106621464,"y":34.222},{"x":1752106561310,"y":34.021},{"x":1752106501139,"y":35.744},{"x":1752106440980,"y":36.186},{"x":1752106380828,"y":43.735},{"x":1752106320702,"y":35.735},{"x":1752106260532,"y":35.781},{"x":1752106200426,"y":33.578},{"x":1752106140229,"y":46.626},{"x":1752106082914,"y":57.145},{"x":1752106022772,"y":56.647},{"x":1752105962610,"y":58.9},{"x":1752105902458,"y":56.409},{"x":1752105842312,"y":45.582},{"x":1752105782164,"y":37.73},{"x":1752105721988,"y":34.663},{"x":1752105661803,"y":37.678},{"x":1752105601744,"y":35.09},{"x":1752105541450,"y":33.639},{"x":1752105481317,"y":43.835},{"x":1752105421146,"y":46.734},{"x":1752105360974,"y":47.986},{"x":1752105300829,"y":44.756},{"x":1752105240674,"y":45.947},{"x":1752105180536,"y":45.742},{"x":1752105120371,"y":43.522},{"x":1752105060207,"y":44.91},{"x":1752105002909,"y":44.834},{"x":1752104942757,"y":44.736},{"x":1752104882611,"y":40.728},{"x":1752104822450,"y":38.955},{"x":1752104762307,"y":37.459},{"x":1752104702163,"y":36.173},{"x":1752104642006,"y":38.495},{"x":1752104581858,"y":36.198},{"x":1752104521719,"y":38.197},{"x":1752104461518,"y":37.119},{"x":1752104401372,"y":51.983},{"x":1752104341227,"y":51.243},{"x":1752104281075,"y":62.5},{"x":1752104220921,"y":61.978},{"x":1752104160766,"y":63.04},{"x":1752104100631,"y":48.763},{"x":1752104040449,"y":50.154},{"x":1752103980266,"y":36.223},{"x":1752103922977,"y":37.01},{"x":1752103862839,"y":45.771},{"x":1752103802662,"y":56.786},{"x":1752103742523,"y":36.94},{"x":1752103682381,"y":39.127},{"x":1752103622222,"y":42.203},{"x":1752103562075,"y":55.651},{"x":1752103501918,"y":56.457},{"x":1752103441758,"y":54.54},{"x":1752103381616,"y":60.292},{"x":1752103321462,"y":56.818},{"x":1752103261251,"y":52.289},{"x":1752103201101,"y":52.389},{"x":1752103140934,"y":61.173},{"x":1752103080819,"y":61.314},{"x":1752103020589,"y":59.214},{"x":1752102960474,"y":59.317},{"x":1752102900272,"y":67.82},{"x":1752102842958,"y":58.788},{"x":1752102782808,"y":59.269},{"x":1752102722653,"y":56.703},{"x":1752102662516,"y":56.678},{"x":1752102602378,"y":56.733},{"x":1752102542236,"y":65.361},{"x":1752102482080,"y":59.273},{"x":1752102421957,"y":55.79},{"x":1752102361777,"y":49.971},{"x":1752102301639,"y":49.821},{"x":1752102241492,"y":41.916},{"x":1752102181341,"y":43.72},{"x":1752102121196,"y":48.499},{"x":1752102060966,"y":46.629},{"x":1752102000880,"y":49.289},{"x":1752101940635,"y":43.131},{"x":1752101880516,"y":46.526},{"x":1752101820383,"y":36.815},{"x":1752101760161,"y":44.174},{"x":1752101702894,"y":39.153},{"x":1752101642755,"y":38.288},{"x":1752101582605,"y":43.233},{"x":1752101522437,"y":41.172},{"x":1752101462306,"y":40.645},{"x":1752101402149,"y":41.615},{"x":1752101341986,"y":32.867},{"x":1752101281830,"y":41.122},{"x":1752101221681,"y":37.375},{"x":1752101161542,"y":39.386},{"x":1752101101400,"y":31.875},{"x":1752101041243,"y":34.915},{"x":1752100981091,"y":31.946},{"x":1752100920929,"y":31.397},{"x":1752100860769,"y":33.244},{"x":1752100800689,"y":34.661},{"x":1752100740402,"y":33.57},{"x":1752100680292,"y":33.457},{"x":1752100623006,"y":33.718},{"x":1752100562864,"y":39.729},{"x":1752100502716,"y":51.272},{"x":1752100442586,"y":45.244},{"x":1752100382407,"y":42.721},{"x":1752100322253,"y":45.52},{"x":1752100262108,"y":41.626},{"x":1752100201945,"y":41.632},{"x":1752100141795,"y":51.949},{"x":1752100081640,"y":51.236},{"x":1752100021491,"y":49.356},{"x":1752099961343,"y":45.998},{"x":1752099901188,"y":35.472},{"x":1752099841026,"y":30.756},{"x":1752099780875,"y":32.614},{"x":1752099720729,"y":30.711},{"x":1752099660590,"y":29.765},{"x":1752099600487,"y":30.127},{"x":1752099540390,"y":30.148},{"x":1752099483004,"y":34.663},{"x":1752099422829,"y":32.852},{"x":1752099362662,"y":33.264},{"x":1752099302507,"y":38.373},{"x":1752099242364,"y":31.753},{"x":1752099182224,"y":29.322},{"x":1752099122078,"y":31.784},{"x":1752099061930,"y":43.953},{"x":1752099001792,"y":41.325},{"x":1752098941648,"y":55.152},{"x":1752098881504,"y":47.214},{"x":1752098821356,"y":54.55},{"x":1752098761210,"y":33.483},{"x":1752098701050,"y":30.374},{"x":1752098640875,"y":47.768},{"x":1752098580727,"y":33.788},{"x":1752098520589,"y":29.837},{"x":1752098460492,"y":31.677},{"x":1752098400363,"y":41.221},{"x":1753307940293,"y":44.191},{"x":1753307882941,"y":46.822},{"x":1753307822792,"y":40.961},{"x":1753307762656,"y":39.962},{"x":1753307702515,"y":38.498},{"x":1753307642165,"y":39.341},{"x":1753307582011,"y":42.294},{"x":1753307521879,"y":39.122},{"x":1753307461734,"y":39.059},{"x":1753307401346,"y":37.412},{"x":1753307341212,"y":40.445},{"x":1753307281075,"y":38.87},{"x":1753307220934,"y":43.979},{"x":1753307160804,"y":43.853},{"x":1753307100767,"y":43.094},{"x":1753307040540,"y":44.695},{"x":1753306980537,"y":44.294},{"x":1753306923019,"y":51.796},{"x":1753306862883,"y":50.942},{"x":1753306802755,"y":53.468},{"x":1753306742613,"y":57.604},{"x":1753306682491,"y":55.397},{"x":1753306622337,"y":45.372},{"x":1753306562192,"y":40.518},{"x":1753306502066,"y":49.399},{"x":1753306441905,"y":56.546},{"x":1753306381768,"y":49.24},{"x":1753306321632,"y":48.007},{"x":1753306261487,"y":45.319},{"x":1753306201351,"y":45.817},{"x":1753306141158,"y":55.496},{"x":1753306081006,"y":42.044},{"x":1753306020806,"y":46.064},{"x":1753305960677,"y":48.361},{"x":1753305900635,"y":45.964},{"x":1753305840542,"y":44.882},{"x":1753305780326,"y":46.225},{"x":1753305722993,"y":42.308},{"x":1753305662774,"y":45.359},{"x":1753305602619,"y":43.661},{"x":1753305542469,"y":41.903},{"x":1753305482336,"y":47.435},{"x":1753305422204,"y":43.496},{"x":1753305362073,"y":41.269},{"x":1753305301939,"y":46.186},{"x":1753305241819,"y":44.929},{"x":1753305181672,"y":46.15},{"x":1753305121532,"y":45.504},{"x":1753305061407,"y":46.7},{"x":1753305001278,"y":50.413},{"x":1753304941140,"y":45.805},{"x":1753304880993,"y":51.82},{"x":1753304820854,"y":45.812},{"x":1753304760724,"y":42.569},{"x":1753304700611,"y":40.583},{"x":1753304640565,"y":42.049},{"x":1753304580387,"y":41.952},{"x":1753304520198,"y":43.969},{"x":1753304462956,"y":41.784},{"x":1753304400467,"y":44.806},{"x":1753304340317,"y":43.399},{"x":1753304282994,"y":53.587},{"x":1753304222867,"y":62.874},{"x":1753304162724,"y":64.62},{"x":1753304102611,"y":60.029},{"x":1753304042471,"y":59.046},{"x":1753303982336,"y":64.985},{"x":1753303922203,"y":47.761},{"x":1753303862066,"y":48.859},{"x":1753303801936,"y":40.607},{"x":1753303741780,"y":40.445},{"x":1753303681642,"y":39.556},{"x":1753303621505,"y":39.301},{"x":1753303561371,"y":44.017},{"x":1753303501253,"y":43.813},{"x":1753303441096,"y":46.711},{"x":1753303380938,"y":46.872},{"x":1753303320812,"y":47.802},{"x":1753303260675,"y":53.971},{"x":1753303200611,"y":47.875},{"x":1753303140404,"y":49.022},{"x":1753303080278,"y":47.659},{"x":1753303022870,"y":52.661},{"x":1753302962752,"y":49.207},{"x":1753302902623,"y":47.272},{"x":1753302842476,"y":48.116},{"x":1753302782345,"y":44.029},{"x":1753302722210,"y":51.324},{"x":1753302662054,"y":48.566},{"x":1753302601877,"y":45.359},{"x":1753302541715,"y":42.38},{"x":1753302481554,"y":41.683},{"x":1753302421391,"y":44.756},{"x":1753302361256,"y":43.531},{"x":1753302301123,"y":47.602},{"x":1753302240970,"y":50.863},{"x":1753302180834,"y":47.466},{"x":1753302120677,"y":56.514},{"x":1753302060553,"y":77.972},{"x":1753302000452,"y":75.298},{"x":1753301940335,"y":70.675},{"x":1753301882899,"y":79.681},{"x":1753301822771,"y":86.347},{"x":1753301762540,"y":81.919},{"x":1753301702411,"y":65.233},{"x":1753301642296,"y":54.647},{"x":1753301582157,"y":76.709},{"x":1753301522021,"y":44.072},{"x":1753301461870,"y":57.608},{"x":1753301401738,"y":53.796},{"x":1753301341599,"y":61.016},{"x":1753301281475,"y":64.71},{"x":1753301221350,"y":53.021},{"x":1753301161203,"y":65.003},{"x":1753301101059,"y":69.62},{"x":1753301040894,"y":57.238},{"x":1753300980764,"y":58.152},{"x":1753300920637,"y":67.151},{"x":1753300860549,"y":59.885},{"x":1753300800989,"y":63.844},{"x":1753300740702,"y":63.888},{"x":1753300680574,"y":58.094},{"x":1753300620467,"y":57.956},{"x":1753300560247,"y":75.246},{"x":1753300502918,"y":66.47},{"x":1753300442784,"y":67.597},{"x":1753300382645,"y":75.193},{"x":1753300322496,"y":86.966},{"x":1753300262393,"y":90.196},{"x":1753300201877,"y":84.184},{"x":1753300141739,"y":78.511},{"x":1753300081613,"y":77.143},{"x":1753300021477,"y":47.928},{"x":1753299961350,"y":50.161},{"x":1753299901206,"y":55.124},{"x":1753299841064,"y":79.423},{"x":1753299780921,"y":62.779},{"x":1753299720795,"y":70.34},{"x":1753299660663,"y":65.675},{"x":1753299600586,"y":66.058},{"x":1753299540459,"y":68.779},{"x":1753299480299,"y":68.419},{"x":1753299422885,"y":70.409},{"x":1753299362762,"y":58.808},{"x":1753299302611,"y":52.3},{"x":1753299242480,"y":71.936},{"x":1753299182351,"y":53.79},{"x":1753299122206,"y":65.064},{"x":1753299062090,"y":64.78},{"x":1753299001894,"y":70.955},{"x":1753298941721,"y":67.171},{"x":1753298881564,"y":68.676},{"x":1753298821420,"y":60.31},{"x":1753298761288,"y":57.545},{"x":1753298701154,"y":51.511},{"x":1753298641021,"y":58.452},{"x":1753298580894,"y":59.491},{"x":1753298520742,"y":58.822},{"x":1753298460602,"y":71.699},{"x":1753298400606,"y":77.736},{"x":1753298340298,"y":69.475},{"x":1753298283018,"y":69.816},{"x":1753298222806,"y":76.232},{"x":1753298162649,"y":68.519},{"x":1753298102535,"y":63.874},{"x":1753298042341,"y":62.462},{"x":1753297982201,"y":64.247},{"x":1753297922064,"y":77.719},{"x":1753297861922,"y":62.128},{"x":1753297801774,"y":67.668},{"x":1753297741650,"y":62.764},{"x":1753297681504,"y":85.33},{"x":1753297621381,"y":67.625},{"x":1753297561245,"y":83.57},{"x":1753297501107,"y":68.046},{"x":1753297440952,"y":67.97},{"x":1753297380818,"y":61.972},{"x":1753297320693,"y":72.366},{"x":1753297260597,"y":64.602},{"x":1753297201361,"y":86.297},{"x":1753297140775,"y":85.824},{"x":1753297080649,"y":78.35},{"x":1753297020557,"y":85.902},{"x":1753296960348,"y":59.36},{"x":1753296900087,"y":67.234},{"x":1753296842877,"y":60.992},{"x":1753296782749,"y":58.115},{"x":1753296722619,"y":58.506},{"x":1753296662482,"y":69.424},{"x":1753296602328,"y":58.194},{"x":1753296542193,"y":67.73},{"x":1753296482058,"y":70.674},{"x":1753296421899,"y":68.49},{"x":1753296361776,"y":68.328},{"x":1753296301636,"y":61.886},{"x":1753296241505,"y":72.998},{"x":1753296181367,"y":50.219},{"x":1753296121237,"y":55.909},{"x":1753296061100,"y":59.887},{"x":1753296000948,"y":71.774},{"x":1753295940758,"y":71.335},{"x":1753295880640,"y":67.016},{"x":1753295820572,"y":70.64},{"x":1753295760401,"y":65.956},{"x":1753295700323,"y":55.169},{"x":1753295642947,"y":60.66},{"x":1753295582817,"y":53.106},{"x":1753295522681,"y":54.071},{"x":1753295462543,"y":73.444},{"x":1753295402519,"y":55.571},{"x":1753295342192,"y":54.011},{"x":1753295282017,"y":53.629},{"x":1753295221881,"y":51.727},{"x":1753295161766,"y":53.851},{"x":1753295101605,"y":82.009},{"x":1753295041475,"y":78.746},{"x":1753294981346,"y":74.548},{"x":1753294921217,"y":80.507},{"x":1753294861052,"y":76.936},{"x":1753294800898,"y":70.908},{"x":1753294740750,"y":84.97},{"x":1753294680375,"y":55.772},{"x":1753294620207,"y":68.666},{"x":1753294562953,"y":55.554},{"x":1753294502809,"y":72.985},{"x":1753294442682,"y":58.357},{"x":1753294382554,"y":59.77},{"x":1753294322416,"y":72.337},{"x":1753294262290,"y":64.044},{"x":1753294202137,"y":77.084},{"x":1753294141980,"y":59.776},{"x":1753294081832,"y":74.066},{"x":1753294021692,"y":61.621},{"x":1753293961540,"y":55.726},{"x":1753293901385,"y":50.479},{"x":1753293841239,"y":47.636},{"x":1753293781106,"y":61.715},{"x":1753293720946,"y":61.506},{"x":1753293660808,"y":92.773},{"x":1753293601036,"y":73.649},{"x":1753293540420,"y":74.422},{"x":1753293480299,"y":56.542},{"x":1753293422977,"y":55.512},{"x":1753293362837,"y":55.793},{"x":1753293302687,"y":44.795},{"x":1753293242543,"y":45.911},{"x":1753293182399,"y":58.41},{"x":1753293122267,"y":60.832},{"x":1753293062131,"y":75.104},{"x":1753293001985,"y":61.481},{"x":1753292941835,"y":51.27},{"x":1753292881707,"y":54.51},{"x":1753292821584,"y":39.428},{"x":1753292761445,"y":43.958},{"x":1753292701345,"y":56.239},{"x":1753292641156,"y":55.165},{"x":1753292581020,"y":56.107},{"x":1753292520888,"y":64.837},{"x":1753292460761,"y":61.046},{"x":1753292400666,"y":55.391},{"x":1753292340428,"y":47.207},{"x":1753292280378,"y":46.162},{"x":1753292222892,"y":43.429},{"x":1753292162728,"y":42.17},{"x":1753292102594,"y":47.398},{"x":1753292042455,"y":47.2},{"x":1753291982311,"y":49.422},{"x":1753291922192,"y":48.371},{"x":1753291862053,"y":57.954},{"x":1753291801908,"y":46.133},{"x":1753291741709,"y":64.625},{"x":1753291681544,"y":47.833},{"x":1753291621394,"y":42.775},{"x":1753291561260,"y":39.498},{"x":1753291501127,"y":38.257},{"x":1753291440963,"y":28.489},{"x":1753291380821,"y":53.228},{"x":1753291320639,"y":40.046},{"x":1753291260557,"y":43.91},{"x":1753291200429,"y":52.462},{"x":1753291140091,"y":54.906},{"x":1753291082923,"y":60.684},{"x":1753291022788,"y":68.442},{"x":1753290962650,"y":74.272},{"x":1753290902513,"y":70.507},{"x":1753290842375,"y":55.163},{"x":1753290782233,"y":49.156},{"x":1753290722106,"y":40.248},{"x":1753290661968,"y":35.216},{"x":1753290601836,"y":45.659},{"x":1753290541713,"y":32.345},{"x":1753290481595,"y":53.215},{"x":1753290421388,"y":48.886},{"x":1753290361255,"y":51.194},{"x":1753290301117,"y":48.46},{"x":1753290240973,"y":44.491},{"x":1753290180842,"y":43.292},{"x":1753290120710,"y":41.422},{"x":1753290060589,"y":40.588},{"x":1753290000796,"y":34.42},{"x":1753289940190,"y":36.671},{"x":1753289882925,"y":31.655},{"x":1753289822805,"y":31.847},{"x":1753289762651,"y":39.316},{"x":1753289702496,"y":36.061},{"x":1753289642223,"y":37.068},{"x":1753289582065,"y":48.248},{"x":1753289521914,"y":42.403},{"x":1753289461784,"y":42.665},{"x":1753289401437,"y":71.875},{"x":1753289341299,"y":55.033},{"x":1753289281207,"y":60.676},{"x":1753289221006,"y":62.394},{"x":1753289160871,"y":58.537},{"x":1753289100816,"y":31.844},{"x":1753289040475,"y":30.66},{"x":1753288980424,"y":32.728},{"x":1753288922962,"y":31.205},{"x":1753288862828,"y":45.385},{"x":1753288802697,"y":50.069},{"x":1753288742565,"y":49.968},{"x":1753288682427,"y":53.647},{"x":1753288622298,"y":50.893},{"x":1753288562155,"y":32.785},{"x":1753288502026,"y":31.146},{"x":1753288441877,"y":62.671},{"x":1753288381736,"y":39.463},{"x":1753288321592,"y":42.926},{"x":1753288261472,"y":38.162},{"x":1753288201359,"y":32.441},{"x":1753288141130,"y":43.756},{"x":1753288080986,"y":35.741},{"x":1753288020782,"y":33.162},{"x":1753287960638,"y":24.998},{"x":1753287900634,"y":35.305},{"x":1753287840402,"y":30.834},{"x":1753287782983,"y":32.432},{"x":1753287722851,"y":35.118},{"x":1753287662447,"y":44.021},{"x":1753287602298,"y":36.516},{"x":1753287542142,"y":29.737},{"x":1753287482004,"y":40.009},{"x":1753287421873,"y":31.085},{"x":1753287361725,"y":39.383},{"x":1753287301441,"y":43.826},{"x":1753287241292,"y":40.331},{"x":1753287181154,"y":37.844},{"x":1753287121010,"y":52.847},{"x":1753287060869,"y":54.721},{"x":1753287000846,"y":66.227},{"x":1753286940555,"y":64.054},{"x":1753286882956,"y":52.448},{"x":1753286822811,"y":40.004},{"x":1753286762689,"y":37.194},{"x":1753286702557,"y":43.093},{"x":1753286642403,"y":42.313},{"x":1753286582280,"y":58.784},{"x":1753286522151,"y":57.02},{"x":1753286462002,"y":38.836},{"x":1753286401017,"y":45.325},{"x":1753286340758,"y":49.918},{"x":1753286280641,"y":37.105},{"x":1753286220469,"y":31.562},{"x":1753286160330,"y":34.987},{"x":1753286100183,"y":34.009},{"x":1753286042936,"y":42.078},{"x":1753285982797,"y":37.249},{"x":1753285922673,"y":41.16},{"x":1753285862515,"y":49.478},{"x":1753285802386,"y":48.998},{"x":1753285742245,"y":36.725},{"x":1753285682111,"y":30.38},{"x":1753285621972,"y":28.718},{"x":1753285561836,"y":28.756},{"x":1753285501714,"y":37.724},{"x":1753285441571,"y":36.928},{"x":1753285381440,"y":37.921},{"x":1753285321308,"y":49.655},{"x":1753285261205,"y":45.25},{"x":1753285201075,"y":27.87},{"x":1753285140872,"y":40.693},{"x":1753285080737,"y":57.785},{"x":1753285020664,"y":48.194},{"x":1753284960484,"y":46.298},{"x":1753284900264,"y":47.606},{"x":1753284842955,"y":39.37},{"x":1753284782811,"y":38.574},{"x":1753284722674,"y":41.406},{"x":1753284662526,"y":38.862},{"x":1753284602405,"y":35.95},{"x":1753284542259,"y":46.436},{"x":1753284482083,"y":38.008},{"x":1753284421924,"y":38.105},{"x":1753284361785,"y":40.934},{"x":1753284301591,"y":39.649},{"x":1753284241459,"y":22.074},{"x":1753284181326,"y":20.78},{"x":1753284121195,"y":37.056},{"x":1753284061060,"y":36.9},{"x":1753284000955,"y":44.908},{"x":1753283940783,"y":45.163},{"x":1753283880318,"y":41.809},{"x":1753283823002,"y":45.808},{"x":1753283762843,"y":29.872},{"x":1753283702699,"y":40.608},{"x":1753283642565,"y":33.672},{"x":1753283582427,"y":27.613},{"x":1753283522298,"y":27.244},{"x":1753283462158,"y":37.044},{"x":1753283401991,"y":27.151},{"x":1753283341843,"y":24.845},{"x":1753283281713,"y":31.37},{"x":1753283221566,"y":30.356},{"x":1753283161416,"y":44.77},{"x":1753283101274,"y":46.459},{"x":1753283041132,"y":40.303},{"x":1753282980982,"y":41.308},{"x":1753282920844,"y":48.0},{"x":1753282860717,"y":28.914},{"x":1753282801684,"y":26.614},{"x":1753282741258,"y":33.2},{"x":1753282681128,"y":31.962},{"x":1753282620990,"y":30.175},{"x":1753282560861,"y":29.807},{"x":1753282500736,"y":38.221},{"x":1753282440610,"y":31.19},{"x":1753282380465,"y":23.081},{"x":1753282320290,"y":33.301},{"x":1753282263071,"y":25.247},{"x":1753282202633,"y":31.885},{"x":1753282142481,"y":23.644},{"x":1753282082354,"y":22.961},{"x":1753282022217,"y":16.182},{"x":1753281962077,"y":18.313},{"x":1753281901932,"y":24.893},{"x":1753281841767,"y":33.882},{"x":1753281781644,"y":44.041},{"x":1753281721512,"y":61.309},{"x":1753281661366,"y":47.969},{"x":1753281601224,"y":48.301},{"x":1753281540744,"y":39.941},{"x":1753281480603,"y":35.569},{"x":1753281420486,"y":35.592},{"x":1753281360209,"y":34.253},{"x":1753281302930,"y":39.862},{"x":1753281242808,"y":38.255},{"x":1753281182658,"y":35.402},{"x":1753281122514,"y":32.759},{"x":1753281062373,"y":67.237},{"x":1753281002194,"y":53.329},{"x":1753280941990,"y":22.134},{"x":1753280881840,"y":22.892},{"x":1753280821692,"y":25.586},{"x":1753280761565,"y":28.31},{"x":1753280701446,"y":38.874},{"x":1753280641298,"y":41.87},{"x":1753280581164,"y":46.008},{"x":1753280521017,"y":26.735},{"x":1753280460877,"y":17.688},{"x":1753280400782,"y":32.018},{"x":1753280340611,"y":21.863},{"x":1753280280369,"y":15.384},{"x":1753280222980,"y":20.068},{"x":1753280162832,"y":20.273},{"x":1753280102697,"y":30.1},{"x":1753280042568,"y":22.718},{"x":1753279982428,"y":20.243},{"x":1753279922267,"y":38.924},{"x":1753279862129,"y":44.561},{"x":1753279801994,"y":45.835},{"x":1753279741843,"y":52.196},{"x":1753279681712,"y":47.021},{"x":1753279621591,"y":44.285},{"x":1753279561459,"y":29.95},{"x":1753279501334,"y":25.381},{"x":1753279441194,"y":23.603},{"x":1753279381058,"y":40.652},{"x":1753279320916,"y":30.316},{"x":1753279260804,"y":41.599},{"x":1753279200983,"y":38.144},{"x":1753279140357,"y":35.449},{"x":1753279080139,"y":31.813},{"x":1753279022809,"y":30.04},{"x":1753278962673,"y":44.179},{"x":1753278902548,"y":41.854},{"x":1753278842414,"y":33.048},{"x":1753278782234,"y":18.865},{"x":1753278722118,"y":26.112},{"x":1753278661962,"y":9.324},{"x":1753278601817,"y":28.577},{"x":1753278541680,"y":55.424},{"x":1753278481538,"y":31.71},{"x":1753278421405,"y":38.641},{"x":1753278361262,"y":34.166},{"x":1753278301124,"y":51.534},{"x":1753278240964,"y":39.072},{"x":1753278180821,"y":35.863},{"x":1753278120723,"y":39.33},{"x":1753278060564,"y":49.487},{"x":1753278000473,"y":49.044},{"x":1753277940300,"y":42.952},{"x":1753277882968,"y":43.622},{"x":1753277822686,"y":33.862},{"x":1753277762560,"y":26.312},{"x":1753277702417,"y":16.262},{"x":1753277642289,"y":36.763},{"x":1753277582147,"y":38.036},{"x":1753277521999,"y":29.855},{"x":1753277461851,"y":42.578},{"x":1753277401712,"y":32.819},{"x":1753277341570,"y":29.448},{"x":1753277281403,"y":13.459},{"x":1753277221271,"y":33.163},{"x":1753277161153,"y":37.642},{"x":1753277100993,"y":30.013},{"x":1753277040855,"y":48.204},{"x":1753276980715,"y":54.692},{"x":1753276920613,"y":48.48},{"x":1753276860548,"y":53.222},{"x":1753276800260,"y":48.496},{"x":1753276742988,"y":41.459},{"x":1753276682858,"y":30.284},{"x":1753276622725,"y":15.139},{"x":1753276562431,"y":16.194},{"x":1753276502291,"y":33.07},{"x":1753276442162,"y":24.217},{"x":1753276382021,"y":40.888},{"x":1753276321883,"y":42.661},{"x":1753276261750,"y":45.047},{"x":1753276201605,"y":57.244},{"x":1753276141466,"y":50.144},{"x":1753276081342,"y":59.185},{"x":1753276021206,"y":34.48},{"x":1753275961102,"y":62.621},{"x":1753275900942,"y":42.725},{"x":1753275840790,"y":56.782},{"x":1753275780660,"y":37.17},{"x":1753275720591,"y":36.092},{"x":1753275660505,"y":42.653},{"x":1753275601762,"y":36.443},{"x":1753275541282,"y":13.412},{"x":1753275481146,"y":28.481},{"x":1753275421015,"y":32.863},{"x":1753275360902,"y":28.674},{"x":1753275300767,"y":31.337},{"x":1753275240756,"y":33.808},{"x":1753275180486,"y":32.959},{"x":1753275120522,"y":18.72},{"x":1753275060096,"y":13.807},{"x":1753275002878,"y":13.049},{"x":1753274942756,"y":14.537},{"x":1753274882607,"y":33.257},{"x":1753274822466,"y":33.18},{"x":1753274762331,"y":29.28},{"x":1753274702203,"y":28.56},{"x":1753274642051,"y":27.547},{"x":1753274581907,"y":17.113},{"x":1753274521772,"y":28.35},{"x":1753274461636,"y":28.472},{"x":1753274401491,"y":25.374},{"x":1753274341367,"y":42.188},{"x":1753274281233,"y":29.005},{"x":1753274220970,"y":26.532},{"x":1753274160845,"y":37.636},{"x":1753274100748,"y":36.52},{"x":1753274040627,"y":34.814},{"x":1753273980373,"y":25.711},{"x":1753273920286,"y":29.028},{"x":1753273862943,"y":24.251},{"x":1753273802799,"y":20.922},{"x":1753273742651,"y":15.749},{"x":1753273682480,"y":14.557},{"x":1753273622324,"y":31.111},{"x":1753273562180,"y":29.819},{"x":1753273502031,"y":28.6},{"x":1753273441870,"y":21.701},{"x":1753273381748,"y":33.248},{"x":1753273321605,"y":10.121},{"x":1753273261477,"y":12.769},{"x":1753273201303,"y":17.341},{"x":1753273141164,"y":14.396},{"x":1753273080981,"y":16.927},{"x":1753273020876,"y":23.952},{"x":1753272960684,"y":25.021},{"x":1753272900736,"y":36.392},{"x":1753272840294,"y":25.74},{"x":1753272780187,"y":34.576},{"x":1753272722913,"y":40.844},{"x":1753272662790,"y":33.348},{"x":1753272602634,"y":18.067},{"x":1753272542476,"y":22.927},{"x":1753272482342,"y":24.656},{"x":1753272422192,"y":27.098},{"x":1753272362056,"y":23.422},{"x":1753272301910,"y":25.076},{"x":1753272241776,"y":31.916},{"x":1753272181651,"y":14.232},{"x":1753272121511,"y":23.153},{"x":1753272061378,"y":21.263},{"x":1753272001001,"y":27.972},{"x":1753271940445,"y":23.738},{"x":1753271880343,"y":21.299},{"x":1753271822958,"y":18.307},{"x":1753271762812,"y":16.813},{"x":1753271702658,"y":30.413},{"x":1753271642521,"y":40.226},{"x":1753271582389,"y":42.842},{"x":1753271522252,"y":47.069},{"x":1753271462135,"y":59.368},{"x":1753271401236,"y":34.262},{"x":1753271341018,"y":19.067},{"x":1753271280889,"y":19.474},{"x":1753271220757,"y":19.25},{"x":1753271160633,"y":52.11},{"x":1753271100671,"y":33.624},{"x":1753271040433,"y":32.801},{"x":1753270980295,"y":35.112},{"x":1753270922964,"y":34.546},{"x":1753270862811,"y":44.558},{"x":1753270802673,"y":26.972},{"x":1753270742533,"y":15.592},{"x":1753270682384,"y":30.582},{"x":1753270622248,"y":32.615},{"x":1753270562093,"y":30.556},{"x":1753270501952,"y":49.436},{"x":1753270441809,"y":60.541},{"x":1753270381688,"y":60.535},{"x":1753270321551,"y":30.664},{"x":1753270261407,"y":20.029},{"x":1753270201268,"y":13.841},{"x":1753270140993,"y":13.315},{"x":1753270080839,"y":13.247},{"x":1753270020737,"y":11.045},{"x":1753269960617,"y":31.24},{"x":1753269900478,"y":47.832},{"x":1753269840494,"y":36.678},{"x":1753269783022,"y":33.589},{"x":1753269722889,"y":36.71},{"x":1753269662431,"y":42.671},{"x":1753269602299,"y":32.789},{"x":1753269542170,"y":36.673},{"x":1753269482009,"y":22.673},{"x":1753269421866,"y":32.875},{"x":1753269361495,"y":34.5},{"x":1753269301363,"y":21.612},{"x":1753269241219,"y":38.134},{"x":1753269181083,"y":42.217},{"x":1753269120935,"y":47.479},{"x":1753269060811,"y":49.009},{"x":1753269000706,"y":63.556},{"x":1753268940465,"y":48.702},{"x":1753268882798,"y":39.828},{"x":1753268822664,"y":32.681},{"x":1753268762525,"y":39.318},{"x":1753268702396,"y":11.538},{"x":1753268642259,"y":31.14},{"x":1753268582096,"y":27.893},{"x":1753268521950,"y":37.691},{"x":1753268461817,"y":30.205},{"x":1753268400626,"y":24.27},{"x":1753268340381,"y":17.159},{"x":1753268280137,"y":16.5},{"x":1753268222857,"y":19.264},{"x":1753268162722,"y":40.078},{"x":1753268102575,"y":19.346},{"x":1753268042384,"y":17.197},{"x":1753267982249,"y":10.822},{"x":1753267922104,"y":9.229},{"x":1753267861969,"y":14.623},{"x":1753267801770,"y":11.273},{"x":1753267741609,"y":11.093},{"x":1753267681472,"y":15.293},{"x":1753267621347,"y":22.448},{"x":1753267561212,"y":34.91},{"x":1753267501154,"y":36.206},{"x":1753267440898,"y":31.942},{"x":1753267380762,"y":34.544},{"x":1753267320714,"y":36.583},{"x":1753267260530,"y":36.626},{"x":1753267200431,"y":57.076},{"x":1753267141841,"y":43.604},{"x":1753267082806,"y":53.304},{"x":1753267022565,"y":49.415},{"x":1753266962426,"y":49.447},{"x":1753266902303,"y":36.912},{"x":1753266842139,"y":26.934},{"x":1753266781988,"y":32.22},{"x":1753266721854,"y":36.433},{"x":1753266661715,"y":23.448},{"x":1753266601479,"y":37.894},{"x":1753266541315,"y":36.16},{"x":1753266481172,"y":41.294},{"x":1753266420944,"y":43.618},{"x":1753266360806,"y":40.421},{"x":1753266300720,"y":30.046},{"x":1753266240520,"y":36.55},{"x":1753266180439,"y":30.044},{"x":1753266123019,"y":37.193},{"x":1753266062669,"y":26.611},{"x":1753266002519,"y":27.419},{"x":1753265942366,"y":23.56},{"x":1753265882234,"y":30.19},{"x":1753265822085,"y":20.92},{"x":1753265761933,"y":22.759},{"x":1753265701803,"y":21.169},{"x":1753265641712,"y":28.165},{"x":1753265581544,"y":27.354},{"x":1753265521406,"y":30.107},{"x":1753265461258,"y":44.554},{"x":1753265401140,"y":25.469},{"x":1753265340972,"y":24.998},{"x":1753265282824,"y":25.223},{"x":1753265222669,"y":34.858},{"x":1753265162512,"y":29.903},{"x":1753265102383,"y":46.288},{"x":1753265041566,"y":27.673},{"x":1753264981226,"y":18.91},{"x":1753264920865,"y":20.624},{"x":1753264860695,"y":32.708},{"x":1753264802936,"y":23.338},{"x":1753264742778,"y":39.433},{"x":1753264682634,"y":45.396},{"x":1753264622500,"y":44.239},{"x":1753264562387,"y":29.599},{"x":1753264502227,"y":22.498},{"x":1753264442096,"y":28.993},{"x":1753264381935,"y":38.898},{"x":1753264321802,"y":24.91},{"x":1753264261659,"y":21.634},{"x":1753264201143,"y":59.2},{"x":1753264140996,"y":56.789},{"x":1753264080863,"y":52.897},{"x":1753264020722,"y":63.706},{"x":1753263960682,"y":55.855},{"x":1753263900527,"y":54.409},{"x":1753263840369,"y":42.724},{"x":1753263782972,"y":29.749},{"x":1753263722844,"y":28.379},{"x":1753263662699,"y":39.043},{"x":1753263601394,"y":40.228},{"x":1753263541554,"y":34.878},{"x":1753263481423,"y":36.25},{"x":1753263421293,"y":34.685},{"x":1753263361165,"y":30.938},{"x":1753263301030,"y":23.221},{"x":1753263240976,"y":28.584},{"x":1753263180844,"y":17.09},{"x":1753263120721,"y":32.701},{"x":1753263060618,"y":44.045},{"x":1753263001126,"y":51.15},{"x":1753262942915,"y":52.417},{"x":1753262882758,"y":49.448},{"x":1753262822632,"y":32.352},{"x":1753262768504,"y":28.58},{"x":1753262701851,"y":31.3},{"x":1753262641501,"y":31.583},{"x":1753262581363,"y":26.579},{"x":1753262521232,"y":30.812},{"x":1753262461081,"y":28.417},{"x":1753262400959,"y":27.048},{"x":1753262343028,"y":30.462},{"x":1753262282566,"y":25.486},{"x":1753262222435,"y":32.815},{"x":1753262162293,"y":47.56},{"x":1753262102157,"y":40.921},{"x":1753262041801,"y":44.718},{"x":1753261981673,"y":59.826},{"x":1753261921546,"y":48.899},{"x":1753261861403,"y":28.469},{"x":1753261801257,"y":33.056},{"x":1753261740850,"y":41.09},{"x":1753261680166,"y":32.785},{"x":1753261622918,"y":22.498},{"x":1753261562756,"y":45.595},{"x":1753261502614,"y":42.757},{"x":1753261442281,"y":37.715},{"x":1753261382147,"y":43.363},{"x":1753261322022,"y":44.58},{"x":1753261261860,"y":31.768},{"x":1753261201955,"y":31.777},{"x":1753261140490,"y":33.959},{"x":1753261080353,"y":25.25},{"x":1753261023021,"y":27.229},{"x":1753260962874,"y":29.664},{"x":1753260902742,"y":35.432},{"x":1753260842172,"y":41.303},{"x":1753260782023,"y":30.348},{"x":1753260721882,"y":38.345},{"x":1753260661753,"y":42.508},{"x":1753260601061,"y":31.508},{"x":1753260540606,"y":36.998},{"x":1753260480525,"y":49.013},{"x":1753260420345,"y":50.768},{"x":1753260360192,"y":61.068},{"x":1753260302920,"y":58.853},{"x":1753260242545,"y":74.155},{"x":1753260182408,"y":49.699},{"x":1753260122272,"y":47.754},{"x":1753260062137,"y":32.976},{"x":1753260001995,"y":30.967},{"x":1753259941648,"y":37.135},{"x":1753259881513,"y":41.59},{"x":1753259821388,"y":45.566},{"x":1753259761296,"y":50.659},{"x":1753259701136,"y":48.592},{"x":1753259640672,"y":48.767},{"x":1753259580599,"y":29.226},{"x":1753259520446,"y":30.119},{"x":1753259460226,"y":28.59},{"x":1753259402878,"y":41.99},{"x":1753259342481,"y":50.125},{"x":1753259282340,"y":43.928},{"x":1753259222185,"y":43.552},{"x":1753259162052,"y":40.946},{"x":1753259101909,"y":28.962},{"x":1753259041572,"y":29.292},{"x":1753258981440,"y":31.895},{"x":1753258921311,"y":38.484},{"x":1753258861177,"y":37.693},{"x":1753258801019,"y":35.56},{"x":1753258740152,"y":31.772},{"x":1753258682552,"y":41.609},{"x":1753258622414,"y":38.146},{"x":1753258562239,"y":44.976},{"x":1753258502095,"y":54.532},{"x":1753258441667,"y":55.972},{"x":1753258381527,"y":72.008},{"x":1753258321397,"y":79.036},{"x":1753258261269,"y":49.658},{"x":1753258201145,"y":39.88},{"x":1753258140603,"y":45.13},{"x":1753258080592,"y":41.951},{"x":1753258020370,"y":50.239},{"x":1753257960081,"y":63.317},{"x":1753257902896,"y":59.332},{"x":1753257842544,"y":63.331},{"x":1753257782415,"y":60.534},{"x":1753257722308,"y":58.626},{"x":1753257662134,"y":59.096},{"x":1753257602501,"y":58.36},{"x":1753257541737,"y":40.992},{"x":1753257481609,"y":41.044},{"x":1753257421466,"y":40.771},{"x":1753257361332,"y":37.668},{"x":1753257301207,"y":38.197},{"x":1753257240814,"y":35.13},{"x":1753257180652,"y":32.308},{"x":1753257120561,"y":31.103},{"x":1753257060433,"y":36.929},{"x":1753257003152,"y":41.513},{"x":1753256942802,"y":38.156},{"x":1753256882651,"y":68.354},{"x":1753256822456,"y":62.22},{"x":1753256762323,"y":65.807},{"x":1753256702178,"y":57.378},{"x":1753256641818,"y":45.841},{"x":1753256581674,"y":35.549},{"x":1753256521541,"y":35.772},{"x":1753256461390,"y":37.388},{"x":1753256401262,"y":35.644},{"x":1753256340787,"y":40.576},{"x":1753256280667,"y":37.601},{"x":1753256220476,"y":46.505},{"x":1753256160282,"y":44.502},{"x":1753256102936,"y":44.005},{"x":1753256042594,"y":49.867},{"x":1753255982453,"y":48.683},{"x":1753255922303,"y":57.726},{"x":1753255862233,"y":53.614},{"x":1753255802032,"y":44.976},{"x":1753255741589,"y":49.252},{"x":1753255681419,"y":48.655},{"x":1753255621272,"y":45.349},{"x":1753255561130,"y":46.66},{"x":1753255500976,"y":43.168},{"x":1753255440277,"y":52.002},{"x":1753255382987,"y":40.781},{"x":1753255322834,"y":43.128},{"x":1753255262665,"y":43.518},{"x":1753255202529,"y":43.066},{"x":1753255142147,"y":39.54},{"x":1753255081901,"y":38.083},{"x":1753255021467,"y":42.167},{"x":1753254961339,"y":46.363},{"x":1753254901217,"y":43.87},{"x":1753254840802,"y":43.957},{"x":1753254780693,"y":48.48},{"x":1753254720621,"y":52.874},{"x":1753254660402,"y":46.711},{"x":1753254603065,"y":47.587},{"x":1753254542704,"y":43.936},{"x":1753254482567,"y":40.58},{"x":1753254422438,"y":46.667},{"x":1753254362306,"y":40.362},{"x":1753254302171,"y":45.652},{"x":1753254241817,"y":48.329},{"x":1753254181666,"y":46.824},{"x":1753254121539,"y":50.047},{"x":1753254061409,"y":61.573},{"x":1753254002884,"y":68.474},{"x":1753253941669,"y":61.742},{"x":1753253881536,"y":55.829},{"x":1753253821412,"y":56.224},{"x":1753253761282,"y":55.705},{"x":1753253701149,"y":47.921},{"x":1753253640750,"y":49.663},{"x":1753253580646,"y":35.993},{"x":1753253520576,"y":45.352},{"x":1753253460417,"y":40.554},{"x":1753253403120,"y":39.887},{"x":1753253342746,"y":42.338},{"x":1753253282603,"y":39.067},{"x":1753253222476,"y":56.513},{"x":1753253162350,"y":51.156},{"x":1753253102217,"y":53.394},{"x":1753253041845,"y":56.645},{"x":1753252981702,"y":66.284},{"x":1753252921575,"y":54.479},{"x":1753252861444,"y":68.318},{"x":1753252801319,"y":53.114},{"x":1753252740838,"y":69.475},{"x":1753252680711,"y":55.901},{"x":1753252620596,"y":73.096},{"x":1753252560446,"y":54.002},{"x":1753252503189,"y":50.738},{"x":1753252442836,"y":60.28},{"x":1753252382704,"y":73.541},{"x":1753252322686,"y":52.634},{"x":1753252262686,"y":63.976},{"x":1753252202727,"y":61.108},{"x":1753252142084,"y":52.687},{"x":1753252081921,"y":62.332},{"x":1753252021742,"y":70.432},{"x":1753251961600,"y":83.358},{"x":1753251901466,"y":74.237},{"x":1753251841095,"y":72.04},{"x":1753251780944,"y":64.963},{"x":1753251720251,"y":54.299},{"x":1753251662662,"y":54.029},{"x":1753251602523,"y":56.508},{"x":1753251542177,"y":55.697},{"x":1753251481885,"y":56.755},{"x":1753251421473,"y":54.443},{"x":1753251361337,"y":48.481},{"x":1753251301194,"y":44.783},{"x":1753251240755,"y":45.114},{"x":1753251180719,"y":43.96},{"x":1753251120594,"y":44.429},{"x":1753251060369,"y":45.982},{"x":1753251003084,"y":48.319},{"x":1753250942730,"y":48.248},{"x":1753250882586,"y":51.971},{"x":1753250822370,"y":48.082},{"x":1753250762233,"y":43.99},{"x":1753250702084,"y":51.259},{"x":1753250641734,"y":47.73},{"x":1753250581628,"y":50.593},{"x":1753250521474,"y":50.887},{"x":1753250461327,"y":47.863},{"x":1753250402123,"y":50.264},{"x":1753250340622,"y":58.758},{"x":1753250280441,"y":59.461},{"x":1753250220412,"y":58.039},{"x":1753250160143,"y":57.92},{"x":1753250102888,"y":65.07},{"x":1753250042524,"y":49.003},{"x":1753249982368,"y":47.755},{"x":1753249922242,"y":47.124},{"x":1753249862113,"y":47.33},{"x":1753249801177,"y":52.222},{"x":1753249740792,"y":44.018},{"x":1753249680712,"y":42.176},{"x":1753249620548,"y":45.4},{"x":1753249560263,"y":43.636},{"x":1753249502957,"y":42.852},{"x":1753249442594,"y":41.947},{"x":1753249382457,"y":42.026},{"x":1753249322325,"y":45.643},{"x":1753249262187,"y":46.116},{"x":1753249202050,"y":47.293},{"x":1753249141666,"y":44.183},{"x":1753249081534,"y":43.132},{"x":1753249021372,"y":40.734},{"x":1753248961243,"y":43.492},{"x":1753248901090,"y":47.904},{"x":1753248840704,"y":54.556},{"x":1753248780560,"y":52.644},{"x":1753248720579,"y":51.905},{"x":1753248660403,"y":46.679},{"x":1753248602938,"y":60.538},{"x":1753248542517,"y":60.25},{"x":1753248482364,"y":54.455},{"x":1753248422193,"y":59.4},{"x":1753248362048,"y":57.488},{"x":1753248301910,"y":43.004},{"x":1753248241485,"y":46.318},{"x":1753248181332,"y":45.773},{"x":1753248121212,"y":45.496},{"x":1753248061034,"y":44.462},{"x":1753248001002,"y":47.653},{"x":1753247942963,"y":52.643},{"x":1753247882539,"y":48.276},{"x":1753247822420,"y":48.163},{"x":1753247762250,"y":47.153},{"x":1753247702121,"y":46.669},{"x":1753247641738,"y":48.498},{"x":1753247581605,"y":44.936},{"x":1753247521475,"y":43.962},{"x":1753247461341,"y":45.616},{"x":1753247401215,"y":50.516},{"x":1753247340788,"y":53.741},{"x":1753247280714,"y":51.77},{"x":1753247220563,"y":50.807},{"x":1753247160459,"y":49.25},{"x":1753247103126,"y":62.893},{"x":1753247042752,"y":64.987},{"x":1753246982616,"y":65.923},{"x":1753246922483,"y":57.62},{"x":1753246862345,"y":55.344},{"x":1753246801939,"y":50.159},{"x":1753246740538,"y":46.678},{"x":1753246680371,"y":35.893},{"x":1753246620357,"y":31.326},{"x":1753246562995,"y":36.637},{"x":1753246502860,"y":36.007},{"x":1753246442455,"y":35.616},{"x":1753246382324,"y":40.031},{"x":1753246322178,"y":33.064},{"x":1753246262042,"y":36.37},{"x":1753246201052,"y":35.059},{"x":1753246140592,"y":34.77},{"x":1753246080671,"y":38.904},{"x":1753246020363,"y":44.068},{"x":1753245963028,"y":44.143},{"x":1753245902886,"y":51.245},{"x":1753245842542,"y":50.249},{"x":1753245782406,"y":50.845},{"x":1753245722292,"y":40.261},{"x":1753245662146,"y":42.874},{"x":1753245602018,"y":40.657},{"x":1753245541659,"y":39.071},{"x":1753245481536,"y":36.419},{"x":1753245421303,"y":34.33},{"x":1753245361181,"y":32.316},{"x":1753245301002,"y":42.746},{"x":1753245240652,"y":41.68},{"x":1753245180445,"y":43.313},{"x":1753245120283,"y":46.122},{"x":1753245062981,"y":44.26},{"x":1753245002848,"y":36.361},{"x":1753244942479,"y":38.268},{"x":1753244882342,"y":36.689},{"x":1753244822211,"y":43.687},{"x":1753244762071,"y":36.828},{"x":1753244701911,"y":36.947},{"x":1753244641574,"y":41.131},{"x":1753244581441,"y":38.256},{"x":1753244521311,"y":45.05},{"x":1753244461181,"y":40.608},{"x":1753244401028,"y":42.914},{"x":1753244340291,"y":41.413},{"x":1753244282826,"y":36.91},{"x":1753244221434,"y":39.12},{"x":1753244161280,"y":45.552},{"x":1753244101146,"y":58.49},{"x":1753244040661,"y":58.685},{"x":1753243980573,"y":59.093},{"x":1753243920527,"y":59.405},{"x":1753243860304,"y":57.394},{"x":1753243802962,"y":34.66},{"x":1753243743004,"y":32.978},{"x":1753243681392,"y":36.444},{"x":1753243621269,"y":39.478},{"x":1753243561135,"y":40.08},{"x":1753243500997,"y":39.844},{"x":1753243440591,"y":39.044},{"x":1753243380168,"y":37.531},{"x":1753243322951,"y":36.966},{"x":1753243262790,"y":37.291},{"x":1753243201853,"y":37.462},{"x":1753243140607,"y":34.116},{"x":1753243080529,"y":34.594},{"x":1753243020299,"y":32.369},{"x":1753242963003,"y":39.319},{"x":1753242902823,"y":35.392},{"x":1753242842449,"y":36.756},{"x":1753242782309,"y":40.348},{"x":1753242722186,"y":39.74},{"x":1753242662042,"y":42.77},{"x":1753242601082,"y":35.808},{"x":1753242540705,"y":36.091},{"x":1753242480625,"y":47.503},{"x":1753242420473,"y":34.326},{"x":1753242360391,"y":42.894},{"x":1753242303019,"y":38.634},{"x":1753242242646,"y":40.655},{"x":1753242182513,"y":40.47},{"x":1753242122375,"y":46.885},{"x":1753242062257,"y":42.848},{"x":1753242002114,"y":42.821},{"x":1753241941732,"y":41.203},{"x":1753241881592,"y":38.828},{"x":1753241821430,"y":37.822},{"x":1753241761291,"y":38.956},{"x":1753241701127,"y":36.504},{"x":1753241640720,"y":38.468},{"x":1753241580586,"y":43.606},{"x":1753241520492,"y":40.854},{"x":1753241460383,"y":40.136},{"x":1753241402991,"y":46.403},{"x":1753241342601,"y":46.051},{"x":1753241282456,"y":61.82},{"x":1753241222314,"y":65.648},{"x":1753241162181,"y":62.917},{"x":1753241102049,"y":66.262},{"x":1753241041696,"y":44.885},{"x":1753240981569,"y":35.125},{"x":1753240921444,"y":37.574},{"x":1753240861320,"y":38.418},{"x":1753240801201,"y":40.976},{"x":1753240740798,"y":50.248},{"x":1753240682812,"y":35.881},{"x":1753240621449,"y":35.753},{"x":1753240560781,"y":35.302},{"x":1753240501008,"y":36.978},{"x":1753240440552,"y":32.432},{"x":1753240380425,"y":33.362},{"x":1753240320154,"y":36.496},{"x":1753240262905,"y":36.443},{"x":1753240202767,"y":37.342},{"x":1753240142771,"y":46.168},{"x":1753240082484,"y":44.273},{"x":1753240022347,"y":43.308},{"x":1753239962215,"y":42.948},{"x":1753239905080,"y":43.583},{"x":1753239895804,"y":47.634},{"x":1753239892803,"y":11.661},{"x":1753239888935,"y":11.661},{"x":1753239541702,"y":36.853},{"x":1753239481570,"y":38.748},{"x":1753239421443,"y":34.95},{"x":1753239361306,"y":32.819},{"x":1753239301177,"y":37.135},{"x":1753239240776,"y":33.818},{"x":1753239180643,"y":40.752},{"x":1753239120538,"y":39.242},{"x":1753239060364,"y":37.081},{"x":1753239003127,"y":40.332},{"x":1753238942773,"y":38.839},{"x":1753238882638,"y":40.393},{"x":1753238822508,"y":35.42},{"x":1753238762381,"y":35.056},{"x":1753238702244,"y":35.101},{"x":1753238641883,"y":33.329},{"x":1753238581742,"y":37.482},{"x":1753238521601,"y":34.278},{"x":1753238461466,"y":38.528},{"x":1753238401330,"y":45.264},{"x":1753238340906,"y":41.689},{"x":1753238280748,"y":38.543},{"x":1753238220636,"y":39.2},{"x":1753238160551,"y":35.074},{"x":1753238103249,"y":33.654},{"x":1753238042867,"y":32.878},{"x":1753237982718,"y":36.205},{"x":1753237922572,"y":35.808},{"x":1753237862433,"y":34.543},{"x":1753237802288,"y":37.332},{"x":1753237741905,"y":37.338},{"x":1753237681730,"y":38.023},{"x":1753237621571,"y":39.828},{"x":1753237561389,"y":37.6},{"x":1753237501259,"y":37.446},{"x":1753237440850,"y":46.942},{"x":1753237380732,"y":46.226},{"x":1753237320452,"y":44.166},{"x":1753237260127,"y":42.288},{"x":1753237202929,"y":40.792},{"x":1753237142588,"y":36.978},{"x":1753237082431,"y":38.071},{"x":1753237022294,"y":40.554},{"x":1753236962147,"y":33.576},{"x":1753236901992,"y":38.538},{"x":1753236841619,"y":37.366},{"x":1753236781468,"y":38.802},{"x":1753236721336,"y":42.659},{"x":1753236661187,"y":38.315},{"x":1753236601043,"y":40.825},{"x":1753236540476,"y":38.795},{"x":1753236482678,"y":39.45},{"x":1753236422453,"y":49.08},{"x":1753236362327,"y":37.201},{"x":1753236302197,"y":35.699},{"x":1753236241809,"y":38.653},{"x":1753236181682,"y":38.677},{"x":1753236121544,"y":46.114},{"x":1753236061404,"y":37.556},{"x":1753236001465,"y":39.22},{"x":1753235942918,"y":39.642},{"x":1753235882768,"y":53.537},{"x":1753235822644,"y":61.096},{"x":1753235762497,"y":56.842},{"x":1753235702358,"y":60.503},{"x":1753235641998,"y":60.263},{"x":1753235581867,"y":42.782},{"x":1753235521729,"y":36.979},{"x":1753235461592,"y":32.466},{"x":1753235401094,"y":33.91},{"x":1753235340722,"y":33.108},{"x":1753235280652,"y":39.822},{"x":1753235220451,"y":44.304},{"x":1753235163007,"y":46.009},{"x":1753235102871,"y":42.061},{"x":1753235042532,"y":39.451},{"x":1753234982394,"y":34.577},{"x":1753234922265,"y":33.604},{"x":1753234862131,"y":40.834},{"x":1753234801988,"y":35.797},{"x":1753234741623,"y":37.253},{"x":1753234681486,"y":46.914},{"x":1753234621359,"y":43.667},{"x":1753234561231,"y":47.5},{"x":1753234501103,"y":43.536},{"x":1753234440716,"y":47.891},{"x":1753234380553,"y":35.879},{"x":1753234320451,"y":37.584},{"x":1753234260380,"y":48.998},{"x":1753234203060,"y":36.386},{"x":1753234142705,"y":38.368},{"x":1753234082546,"y":37.214},{"x":1753234022396,"y":39.241},{"x":1753233962268,"y":41.574},{"x":1753233902128,"y":37.528},{"x":1753233841775,"y":36.785},{"x":1753233781605,"y":38.076},{"x":1753233721419,"y":37.782},{"x":1753233661251,"y":39.324},{"x":1753233601122,"y":33.088},{"x":1753233540606,"y":34.44},{"x":1753233480526,"y":38.286},{"x":1753233420257,"y":37.212},{"x":1753233363022,"y":42.45},{"x":1753233302854,"y":40.921},{"x":1753233242485,"y":34.768},{"x":1753233182324,"y":38.713},{"x":1753233122182,"y":38.81},{"x":1753233062042,"y":43.471},{"x":1753233001896,"y":41.435},{"x":1753232941532,"y":38.093},{"x":1753232881394,"y":36.439},{"x":1753232821265,"y":38.086},{"x":1753232761134,"y":41.74},{"x":1753232700979,"y":39.234},{"x":1753232640462,"y":38.129},{"x":1753232580316,"y":37.022},{"x":1753232522995,"y":34.272},{"x":1753232462857,"y":37.724},{"x":1753232402443,"y":42.092},{"x":1753232341722,"y":36.625},{"x":1753232281598,"y":37.133},{"x":1753232221469,"y":37.817},{"x":1753232161335,"y":45.104},{"x":1753232101193,"y":36.431},{"x":1753232040818,"y":35.278},{"x":1753231980682,"y":36.264},{"x":1753231920639,"y":34.675},{"x":1753231860529,"y":41.086},{"x":1753231803153,"y":43.908},{"x":1753231742793,"y":35.052},{"x":1753231682667,"y":33.689},{"x":1753231622521,"y":33.544},{"x":1753231562384,"y":37.616},{"x":1753231502235,"y":40.289},{"x":1753231441835,"y":41.532},{"x":1753231381673,"y":49.933},{"x":1753231321543,"y":43.752},{"x":1753231261393,"y":40.788},{"x":1753231201270,"y":39.884},{"x":1753231140744,"y":36.697},{"x":1753231080631,"y":37.064},{"x":1753231020539,"y":35.918},{"x":1753230960407,"y":41.256},{"x":1753230903047,"y":38.525},{"x":1753230842695,"y":37.458},{"x":1753230782573,"y":35.328},{"x":1753230722436,"y":34.561},{"x":1753230662314,"y":42.84},{"x":1753230602178,"y":47.293},{"x":1753230541780,"y":58.67},{"x":1753230481627,"y":59.958},{"x":1753230421432,"y":54.666},{"x":1753230361288,"y":61.132},{"x":1753230301165,"y":40.868},{"x":1753230240796,"y":33.437},{"x":1753230180684,"y":34.764},{"x":1753230120335,"y":34.801},{"x":1753230062995,"y":38.84},{"x":1753230002875,"y":40.744},{"x":1753229942523,"y":43.687},{"x":1753229882382,"y":41.528},{"x":1753229822228,"y":41.785},{"x":1753229762078,"y":49.517},{"x":1753229701932,"y":43.471},{"x":1753229641605,"y":40.968},{"x":1753229581460,"y":39.698},{"x":1753229521313,"y":36.16},{"x":1753229461187,"y":41.762},{"x":1753229401317,"y":47.447},{"x":1753229340756,"y":46.589},{"x":1753229282783,"y":45.492},{"x":1753229222629,"y":48.636},{"x":1753229162487,"y":54.055},{"x":1753229102359,"y":41.497},{"x":1753229041974,"y":41.53},{"x":1753228981849,"y":40.508},{"x":1753228921715,"y":39.983},{"x":1753228861584,"y":41.663},{"x":1753228801847,"y":37.253},{"x":1753228740480,"y":38.2},{"x":1753228680399,"y":43.152},{"x":1753228620100,"y":45.712},{"x":1753228562916,"y":46.772},{"x":1753228502786,"y":52.362},{"x":1753228442390,"y":49.986},{"x":1753228382251,"y":47.266},{"x":1753228322119,"y":41.748},{"x":1753228261978,"y":43.11},{"x":1753228201046,"y":44.43},{"x":1753228140619,"y":40.692},{"x":1753228080471,"y":39.766},{"x":1753228020471,"y":39.485},{"x":1753227960147,"y":38.108},{"x":1753227902946,"y":42.474},{"x":1753227842562,"y":38.227},{"x":1753227782411,"y":38.033},{"x":1753227722281,"y":41.315},{"x":1753227662139,"y":43.435},{"x":1753227601981,"y":49.973},{"x":1753227541646,"y":49.969},{"x":1753227481528,"y":46.897},{"x":1753227421366,"y":45.475},{"x":1753227361224,"y":42.341},{"x":1753227301100,"y":43.735},{"x":1753227240665,"y":42.319},{"x":1753227180544,"y":40.94},{"x":1753227120320,"y":45.166},{"x":1753227060135,"y":44.846},{"x":1753227002846,"y":43.069},{"x":1753226942406,"y":42.008},{"x":1753226882261,"y":39.605},{"x":1753226822113,"y":40.019},{"x":1753226761964,"y":43.182},{"x":1753226701836,"y":45.985},{"x":1753226641490,"y":40.801},{"x":1753226581363,"y":38.834},{"x":1753226521229,"y":39.18},{"x":1753226461095,"y":41.051},{"x":1753226400998,"y":45.659},{"x":1753226342999,"y":41.734},{"x":1753226282873,"y":41.214},{"x":1753226222742,"y":41.243},{"x":1753226162428,"y":37.29},{"x":1753226102286,"y":39.026},{"x":1753226041923,"y":36.552},{"x":1753225981762,"y":38.41},{"x":1753225921628,"y":43.819},{"x":1753225861504,"y":45.511},{"x":1753225801357,"y":45.367},{"x":1753225740943,"y":44.176},{"x":1753225682778,"y":41.969},{"x":1753225622651,"y":42.45},{"x":1753225562514,"y":42.451},{"x":1753225502401,"y":42.636},{"x":1753225442021,"y":44.488},{"x":1753225381872,"y":37.645},{"x":1753225321745,"y":48.312},{"x":1753225261608,"y":61.217},{"x":1753225202534,"y":63.887},{"x":1753225141717,"y":56.464},{"x":1753225081579,"y":61.374},{"x":1753225021442,"y":46.898},{"x":1753224961300,"y":48.052},{"x":1753224901169,"y":47.063},{"x":1753224840806,"y":46.889},{"x":1753224780684,"y":46.162},{"x":1753224720567,"y":43.314},{"x":1753224660393,"y":45.108},{"x":1753224603112,"y":42.494},{"x":1753224542738,"y":44.936},{"x":1753224482616,"y":48.973},{"x":1753224422482,"y":45.178},{"x":1753224362352,"y":49.148},{"x":1753224302216,"y":43.156},{"x":1753224241847,"y":40.343},{"x":1753224181720,"y":40.908},{"x":1753224121592,"y":52.843},{"x":1753224061442,"y":62.428},{"x":1753224001310,"y":59.158},{"x":1753223940850,"y":61.055},{"x":1753223880729,"y":52.819},{"x":1753223820574,"y":49.645},{"x":1753223760425,"y":52.097},{"x":1753223703180,"y":50.669},{"x":1753223642814,"y":51.209},{"x":1753223582675,"y":49.087},{"x":1753223522544,"y":47.08},{"x":1753223462399,"y":46.951},{"x":1753223402214,"y":43.684},{"x":1753223341750,"y":43.684},{"x":1753223281617,"y":43.986},{"x":1753223221451,"y":43.018},{"x":1753223161318,"y":41.761},{"x":1753223101194,"y":42.079},{"x":1753223040825,"y":49.568},{"x":1753222980720,"y":48.14},{"x":1753222920484,"y":47.743},{"x":1753222860342,"y":44.156},{"x":1753222803017,"y":43.59},{"x":1753222742663,"y":40.093},{"x":1753222682532,"y":41.032},{"x":1753222622389,"y":47.336},{"x":1753222562258,"y":46.04},{"x":1753222502120,"y":50.054},{"x":1753222441732,"y":46.628},{"x":1753222381596,"y":47.352},{"x":1753222321468,"y":53.344},{"x":1753222261325,"y":46.135},{"x":1753222201192,"y":42.6},{"x":1753222140656,"y":36.536},{"x":1753222080276,"y":39.373},{"x":1753222022983,"y":44.32},{"x":1753221962834,"y":40.187},{"x":1753221902703,"y":38.341},{"x":1753221842326,"y":41.591},{"x":1753221782189,"y":40.818},{"x":1753221722053,"y":48.986},{"x":1753221661943,"y":40.225},{"x":1753221602498,"y":39.506},{"x":1753221541616,"y":45.259},{"x":1753221481485,"y":43.001},{"x":1753221421353,"y":44.138},{"x":1753221361225,"y":44.128},{"x":1753221301096,"y":41.311},{"x":1753221240704,"y":42.692},{"x":1753221180625,"y":47.948},{"x":1753221120524,"y":41.972},{"x":1753221060351,"y":39.497},{"x":1753221003076,"y":38.722},{"x":1753220942737,"y":37.018},{"x":1753220882600,"y":40.729},{"x":1753220822463,"y":36.068},{"x":1753220762329,"y":36.035},{"x":1753220702188,"y":40.032},{"x":1753220641814,"y":42.52},{"x":1753220581664,"y":45.833},{"x":1753220521529,"y":42.438},{"x":1753220461395,"y":41.936},{"x":1753220401260,"y":39.752},{"x":1753220340814,"y":39.608},{"x":1753220280691,"y":37.292},{"x":1753220220598,"y":47.97},{"x":1753220160395,"y":57.374},{"x":1753220103125,"y":61.834},{"x":1753220042747,"y":65.616},{"x":1753219982614,"y":62.678},{"x":1753219922488,"y":48.917},{"x":1753219862350,"y":42.354},{"x":1753219802201,"y":42.626},{"x":1753219741650,"y":44.021},{"x":1753219681499,"y":40.471},{"x":1753219621354,"y":40.896},{"x":1753219561204,"y":39.558},{"x":1753219501024,"y":40.046},{"x":1753219440539,"y":40.943},{"x":1753219380419,"y":41.593},{"x":1753219323037,"y":40.694},{"x":1753219262643,"y":45.175},{"x":1753219202511,"y":40.448},{"x":1753219142142,"y":51.35},{"x":1753219081976,"y":50.681},{"x":1753219021443,"y":52.938},{"x":1753218961303,"y":55.512},{"x":1753218901224,"y":50.897},{"x":1753218840527,"y":43.244},{"x":1753218780250,"y":38.813},{"x":1753218720124,"y":38.822},{"x":1753218662889,"y":38.464},{"x":1753218602751,"y":40.681},{"x":1753218542150,"y":34.967},{"x":1753218481713,"y":39.46},{"x":1753218421548,"y":44.612},{"x":1753218361405,"y":44.273},{"x":1753218301247,"y":42.719},{"x":1753218240708,"y":42.335},{"x":1753218180601,"y":39.484},{"x":1753218120513,"y":36.557},{"x":1753218060405,"y":41.627},{"x":1753218003148,"y":38.018},{"x":1753217942499,"y":38.647},{"x":1753217882329,"y":39.522},{"x":1753217822194,"y":41.701},{"x":1753217762051,"y":43.704},{"x":1753217701906,"y":42.563},{"x":1753217641559,"y":41.287},{"x":1753217581443,"y":40.895},{"x":1753217521296,"y":45.472},{"x":1753217461152,"y":58.294},{"x":1753217402221,"y":70.594},{"x":1753217341866,"y":62.206},{"x":1753217281753,"y":68.987},{"x":1753217221576,"y":71.574},{"x":1753217161457,"y":56.953},{"x":1753217101343,"y":52.092},{"x":1753217040660,"y":49.699},{"x":1753216980528,"y":42.073},{"x":1753216920396,"y":47.452},{"x":1753216860228,"y":48.797},{"x":1753216802908,"y":53.478},{"x":1753216742329,"y":50.231},{"x":1753216682195,"y":51.684},{"x":1753216622046,"y":46.97},{"x":1753216561396,"y":45.292},{"x":1753216501270,"y":51.69},{"x":1753216440883,"y":50.99},{"x":1753216380748,"y":55.751},{"x":1753216320736,"y":66.188},{"x":1753216260509,"y":51.082},{"x":1753216203146,"y":50.888},{"x":1753216142744,"y":49.278},{"x":1753216082595,"y":49.937},{"x":1753216022438,"y":48.396},{"x":1753215962252,"y":46.405},{"x":1753215902107,"y":68.964},{"x":1753215841757,"y":66.546},{"x":1753215781628,"y":62.666},{"x":1753215721505,"y":64.691},{"x":1753215661361,"y":61.472},{"x":1753215601238,"y":47.116},{"x":1753215540827,"y":50.165},{"x":1753215480690,"y":55.354},{"x":1753215420623,"y":59.003},{"x":1753215360507,"y":60.746},{"x":1753215303109,"y":58.532},{"x":1753215242758,"y":60.466},{"x":1753215182644,"y":70.17},{"x":1753215122493,"y":55.769},{"x":1753215062348,"y":56.756},{"x":1753215002172,"y":40.957},{"x":1753214941787,"y":41.231},{"x":1753214881660,"y":42.258},{"x":1753214821502,"y":40.787},{"x":1753214761382,"y":42.407},{"x":1753214701229,"y":42.654},{"x":1753214640863,"y":44.296},{"x":1753214580721,"y":39.686},{"x":1753214520613,"y":53.059},{"x":1753214460487,"y":53.316},{"x":1753214402424,"y":54.505},{"x":1753214341765,"y":50.62},{"x":1753214281673,"y":56.366},{"x":1753214221484,"y":41.09},{"x":1753214161347,"y":41.418},{"x":1753214101212,"y":45.409},{"x":1753214040846,"y":41.878},{"x":1753213980709,"y":40.484},{"x":1753213920706,"y":57.635},{"x":1753213860494,"y":44.23},{"x":1753213803222,"y":45.234},{"x":1753213742888,"y":44.836},{"x":1753213682732,"y":42.31},{"x":1753213622588,"y":62.239},{"x":1753213562456,"y":43.582},{"x":1753213502339,"y":53.172},{"x":1753213441962,"y":50.969},{"x":1753213381813,"y":51.926},{"x":1753213321627,"y":48.818},{"x":1753213261498,"y":60.536},{"x":1753213201356,"y":62.3},{"x":1753213140911,"y":77.424},{"x":1753213080780,"y":90.112},{"x":1753213020570,"y":76.936},{"x":1753212960442,"y":65.734},{"x":1753212903215,"y":64.27},{"x":1753212842832,"y":58.046},{"x":1753212782690,"y":52.866},{"x":1753212722550,"y":50.926},{"x":1753212662407,"y":58.961},{"x":1753212602261,"y":64.585},{"x":1753212541833,"y":60.656},{"x":1753212481632,"y":57.73},{"x":1753212421487,"y":61.931},{"x":1753212361351,"y":54.745},{"x":1753212301222,"y":54.578},{"x":1753212240815,"y":49.969},{"x":1753212180662,"y":50.468},{"x":1753212120511,"y":49.219},{"x":1753212060408,"y":50.573},{"x":1753212002929,"y":55.349},{"x":1753211942573,"y":69.592},{"x":1753211882412,"y":54.671},{"x":1753211822278,"y":48.614},{"x":1753211762113,"y":62.036},{"x":1753211701950,"y":77.352},{"x":1753211641579,"y":73.99},{"x":1753211581442,"y":73.448},{"x":1753211521304,"y":72.36},{"x":1753211461166,"y":69.358},{"x":1753211401014,"y":48.708},{"x":1753211340456,"y":62.006},{"x":1753211282831,"y":66.68},{"x":1753211222658,"y":75.203},{"x":1753211162517,"y":78.445},{"x":1753211102384,"y":72.926},{"x":1753211042023,"y":60.365},{"x":1753210981863,"y":60.642},{"x":1753210921714,"y":60.058},{"x":1753210861582,"y":49.453},{"x":1753210801425,"y":49.664},{"x":1753210740148,"y":48.497},{"x":1753210682877,"y":49.26},{"x":1753210622728,"y":52.865},{"x":1753210562581,"y":45.949},{"x":1753210502450,"y":47.16},{"x":1753210442080,"y":55.999},{"x":1753210381924,"y":54.662},{"x":1753210321782,"y":54.289},{"x":1753210261646,"y":85.913},{"x":1753210201274,"y":85.906},{"x":1753210140867,"y":82.676},{"x":1753210080754,"y":84.766},{"x":1753210020591,"y":74.738},{"x":1753209960417,"y":51.871},{"x":1753209903085,"y":69.479},{"x":1753209842721,"y":69.836},{"x":1753209782593,"y":64.652},{"x":1753209722476,"y":65.75},{"x":1753209662300,"y":63.305},{"x":1753209602144,"y":66.281},{"x":1753209541739,"y":62.202},{"x":1753209481611,"y":58.49},{"x":1753209421495,"y":51.329},{"x":1753209361341,"y":42.175},{"x":1753209301209,"y":42.294},{"x":1753209240833,"y":39.122},{"x":1753209180702,"y":46.732},{"x":1753209120616,"y":45.791},{"x":1753209060408,"y":42.193},{"x":1753209003132,"y":40.772},{"x":1753208942784,"y":41.672},{"x":1753208882606,"y":45.86},{"x":1753208822449,"y":79.36},{"x":1753208762305,"y":65.626},{"x":1753208702164,"y":65.369},{"x":1753208641822,"y":60.768},{"x":1753208581685,"y":58.134},{"x":1753208521535,"y":40.921},{"x":1753208461403,"y":37.374},{"x":1753208401269,"y":45.859},{"x":1753208340743,"y":53.177},{"x":1753208280638,"y":47.143},{"x":1753208220446,"y":53.497},{"x":1753208160339,"y":50.24},{"x":1753208102973,"y":75.778},{"x":1753208042615,"y":55.082},{"x":1753207982473,"y":33.061},{"x":1753207922348,"y":32.809},{"x":1753207862210,"y":32.971},{"x":1753207802078,"y":39.774},{"x":1753207741704,"y":46.42},{"x":1753207681557,"y":51.085},{"x":1753207621417,"y":47.56},{"x":1753207561285,"y":59.642},{"x":1753207501148,"y":54.024},{"x":1753207440755,"y":45.199},{"x":1753207380631,"y":36.985},{"x":1753207320458,"y":51.499},{"x":1753207260278,"y":40.032},{"x":1753207201747,"y":41.434},{"x":1753207140564,"y":40.792},{"x":1753207080360,"y":51.984},{"x":1753207020194,"y":66.856},{"x":1753206962923,"y":71.543},{"x":1753206902967,"y":60.001},{"x":1753206842178,"y":49.483},{"x":1753206782000,"y":47.248},{"x":1753206721872,"y":33.92},{"x":1753206661683,"y":33.652},{"x":1753206600852,"y":56.942},{"x":1753206542957,"y":43.165},{"x":1753206482808,"y":43.54},{"x":1753206422657,"y":44.405},{"x":1753206362520,"y":46.697},{"x":1753206302374,"y":36.472},{"x":1753206241999,"y":41.563},{"x":1753206181850,"y":35.693},{"x":1753206121694,"y":37.499},{"x":1753206061550,"y":37.108},{"x":1753206001404,"y":39.587},{"x":1753205940893,"y":38.597},{"x":1753205880750,"y":65.42},{"x":1753205820695,"y":60.234},{"x":1753205760431,"y":66.329},{"x":1753205703128,"y":62.684},{"x":1753205642774,"y":78.972},{"x":1753205582607,"y":60.071},{"x":1753205522456,"y":32.677},{"x":1753205462313,"y":31.423},{"x":1753205402148,"y":31.664},{"x":1753205341657,"y":45.619},{"x":1753205281414,"y":45.152},{"x":1753205221262,"y":41.509},{"x":1753205161123,"y":58.982},{"x":1753205100961,"y":47.566},{"x":1753205040389,"y":37.304},{"x":1753204980090,"y":37.195},{"x":1753204922882,"y":51.026},{"x":1753204862623,"y":44.342},{"x":1753204802476,"y":46.366},{"x":1753204742124,"y":58.876},{"x":1753204681955,"y":47.1},{"x":1753204621350,"y":34.598},{"x":1753204561195,"y":36.532},{"x":1753204501053,"y":39.689},{"x":1753204440439,"y":33.713},{"x":1753204380333,"y":33.458},{"x":1753204323031,"y":30.752},{"x":1753204262874,"y":43.979},{"x":1753204202725,"y":59.801},{"x":1753204142180,"y":44.78},{"x":1753204082013,"y":46.134},{"x":1753204021768,"y":68.279},{"x":1753203961609,"y":55.901},{"x":1753203901666,"y":45.964},{"x":1753203841237,"y":43.906},{"x":1753203781095,"y":41.509},{"x":1753203720942,"y":29.129},{"x":1753203660830,"y":28.531},{"x":1753203602636,"y":35.675},{"x":1753203542073,"y":47.195},{"x":1753203481883,"y":47.951},{"x":1753203421711,"y":51.872},{"x":1753203361557,"y":52.988},{"x":1753203301415,"y":52.666},{"x":1753203241030,"y":57.306},{"x":1753203180877,"y":32.912},{"x":1753203120757,"y":42.259},{"x":1753203060593,"y":35.083},{"x":1753203000980,"y":43.763},{"x":1753202940531,"y":55.36},{"x":1753202880350,"y":60.181},{"x":1753202820047,"y":43.285},{"x":1753202762790,"y":47.72},{"x":1753202702645,"y":44.082},{"x":1753202642279,"y":41.867},{"x":1753202582129,"y":41.675},{"x":1753202521952,"y":34.709},{"x":1753202461824,"y":29.108},{"x":1753202401666,"y":41.896},{"x":1753202341296,"y":24.158},{"x":1753202281152,"y":29.214},{"x":1753202221002,"y":43.187},{"x":1753202160855,"y":27.731},{"x":1753202100728,"y":27.959},{"x":1753202042903,"y":37.153},{"x":1753201982747,"y":31.975},{"x":1753201922600,"y":32.22},{"x":1753201862415,"y":49.002},{"x":1753201802223,"y":58.178},{"x":1753201741723,"y":55.645},{"x":1753201681584,"y":55.585},{"x":1753201621233,"y":45.619},{"x":1753201561078,"y":32.552},{"x":1753201500924,"y":27.488},{"x":1753201440422,"y":34.972},{"x":1753201380102,"y":29.951},{"x":1753201322878,"y":31.934},{"x":1753201262492,"y":35.842},{"x":1753201202355,"y":52.627},{"x":1753201141952,"y":47.411},{"x":1753201081798,"y":43.856},{"x":1753201021645,"y":43.984},{"x":1753200961462,"y":62.682},{"x":1753200901331,"y":31.627},{"x":1753200840795,"y":32.755},{"x":1753200780662,"y":27.224},{"x":1753200720701,"y":29.992},{"x":1753200660356,"y":46.218},{"x":1753200602991,"y":42.706},{"x":1753200542588,"y":44.628},{"x":1753200482432,"y":48.028},{"x":1753200422291,"y":48.499},{"x":1753200362136,"y":41.936},{"x":1753200301994,"y":32.084},{"x":1753200241608,"y":36.218},{"x":1753200181459,"y":29.294},{"x":1753200121308,"y":31.278},{"x":1753200061176,"y":33.239},{"x":1753200001377,"y":32.4},{"x":1753199942967,"y":32.263},{"x":1753199882818,"y":41.67},{"x":1753199822664,"y":33.991},{"x":1753199762522,"y":33.224},{"x":1753199702362,"y":34.99},{"x":1753199642004,"y":34.205},{"x":1753199581859,"y":32.976},{"x":1753199521716,"y":36.666},{"x":1753199461565,"y":27.919},{"x":1753199401300,"y":30.044},{"x":1753199340876,"y":42.784},{"x":1753199280755,"y":50.73},{"x":1753199220619,"y":57.29},{"x":1753199160356,"y":51.55},{"x":1753199103073,"y":53.531},{"x":1753199042723,"y":43.406},{"x":1753198982572,"y":47.074},{"x":1753198922433,"y":34.885},{"x":1753198862286,"y":37.29},{"x":1753198802153,"y":49.112},{"x":1753198741757,"y":45.263},{"x":1753198681612,"y":41.356},{"x":1753198621460,"y":41.04},{"x":1753198561292,"y":49.828},{"x":1753198501143,"y":37.756},{"x":1753198440755,"y":40.358},{"x":1753198380611,"y":31.502},{"x":1753198320486,"y":45.02},{"x":1753198260359,"y":58.108},{"x":1753198202986,"y":44.896},{"x":1753198142624,"y":42.619},{"x":1753198082463,"y":38.32},{"x":1753198022292,"y":30.332},{"x":1753197962040,"y":25.747},{"x":1753197901895,"y":42.888},{"x":1753197841543,"y":43.664},{"x":1753197781406,"y":27.262},{"x":1753197721260,"y":34.898},{"x":1753197661086,"y":25.691},{"x":1753197600932,"y":31.704},{"x":1753197540183,"y":34.204},{"x":1753197482566,"y":33.492},{"x":1753197422423,"y":32.929},{"x":1753197362262,"y":29.816},{"x":1753197302113,"y":35.668},{"x":1753197241723,"y":34.138},{"x":1753197181587,"y":28.066},{"x":1753197121443,"y":31.439},{"x":1753197061302,"y":30.704},{"x":1753197001159,"y":54.112},{"x":1753196940733,"y":55.385},{"x":1753196880685,"y":55.13},{"x":1753196820431,"y":51.408},{"x":1753196760309,"y":45.842},{"x":1753196702934,"y":31.416},{"x":1753196642556,"y":39.61},{"x":1753196582381,"y":22.882},{"x":1753196522245,"y":20.256},{"x":1753196462093,"y":24.544},{"x":1753196402605,"y":35.593},{"x":1753196341888,"y":31.068},{"x":1753196281735,"y":30.466},{"x":1753196221596,"y":36.317},{"x":1753196161461,"y":32.213},{"x":1753196101290,"y":28.292},{"x":1753196040891,"y":29.192},{"x":1753195980748,"y":26.728},{"x":1753195920736,"y":26.912},{"x":1753195860504,"y":38.813},{"x":1753195803250,"y":34.171},{"x":1753195742882,"y":35.478},{"x":1753195682718,"y":35.545},{"x":1753195622571,"y":39.449},{"x":1753195562420,"y":21.947},{"x":1753195502256,"y":24.247},{"x":1753195441872,"y":20.599},{"x":1753195381721,"y":22.889},{"x":1753195321571,"y":44.941},{"x":1753195261404,"y":39.901},{"x":1753195201250,"y":36.146},{"x":1753195140801,"y":42.852},{"x":1753195080750,"y":40.853},{"x":1753195020553,"y":29.842},{"x":1753194960420,"y":39.218},{"x":1753194903040,"y":29.003},{"x":1753194842668,"y":27.768},{"x":1753194782507,"y":24.75},{"x":1753194722378,"y":24.847},{"x":1753194662270,"y":39.196},{"x":1753194602075,"y":23.809},{"x":1753194541668,"y":25.523},{"x":1753194481494,"y":23.114},{"x":1753194421357,"y":31.621},{"x":1753194361190,"y":20.006},{"x":1753194301034,"y":35.682},{"x":1753194240493,"y":31.582},{"x":1753194180484,"y":46.448},{"x":1753194123021,"y":39.84},{"x":1753194062680,"y":39.846},{"x":1753194002526,"y":34.462},{"x":1753193942148,"y":33.362},{"x":1753193881445,"y":23.161},{"x":1753193821260,"y":22.435},{"x":1753193761098,"y":20.543},{"x":1753193700945,"y":20.838},{"x":1753193640195,"y":17.396},{"x":1753193582899,"y":17.011},{"x":1753193522759,"y":25.724},{"x":1753193462593,"y":27.58},{"x":1753193402439,"y":29.167},{"x":1753193342082,"y":32.005},{"x":1753193281886,"y":29.4},{"x":1753193221727,"y":25.942},{"x":1753193161562,"y":33.128},{"x":1753193101415,"y":44.73},{"x":1753193041021,"y":36.922},{"x":1753192980871,"y":35.89},{"x":1753192920758,"y":28.62},{"x":1753192860639,"y":28.853},{"x":1753192802279,"y":17.398},{"x":1753192741702,"y":21.823},{"x":1753192681561,"y":20.414},{"x":1753192621405,"y":19.633},{"x":1753192561276,"y":22.072},{"x":1753192501129,"y":18.529},{"x":1753192440603,"y":15.31},{"x":1753192380579,"y":16.475},{"x":1753192320359,"y":23.011},{"x":1753192262943,"y":23.678},{"x":1753192201498,"y":17.568},{"x":1753192141136,"y":21.631},{"x":1753192080976,"y":20.984},{"x":1753192020830,"y":23.926},{"x":1753191960684,"y":20.759},{"x":1753191901336,"y":19.465},{"x":1753191840360,"y":23.384},{"x":1753191782914,"y":28.56},{"x":1753191722764,"y":35.882},{"x":1753191662618,"y":43.72},{"x":1753191602457,"y":44.227},{"x":1753191542056,"y":44.28},{"x":1753191481572,"y":37.626},{"x":1753191421410,"y":32.638},{"x":1753191360782,"y":22.493},{"x":1753191300688,"y":16.601},{"x":1753191243011,"y":19.801},{"x":1753191182850,"y":31.013},{"x":1753191122730,"y":28.235},{"x":1753191062576,"y":26.652},{"x":1753191002368,"y":32.028},{"x":1753190941899,"y":31.924},{"x":1753190881713,"y":23.492},{"x":1753190821562,"y":22.667},{"x":1753190761415,"y":23.519},{"x":1753190701257,"y":17.242},{"x":1753190640871,"y":18.048},{"x":1753190580686,"y":16.25},{"x":1753190520494,"y":33.168},{"x":1753190460341,"y":40.301},{"x":1753190403041,"y":44.482},{"x":1753190342673,"y":38.563},{"x":1753190282505,"y":59.147},{"x":1753190222374,"y":45.0},{"x":1753190162220,"y":25.016},{"x":1753190102072,"y":15.488},{"x":1753190041696,"y":22.55},{"x":1753189981548,"y":44.168},{"x":1753189921389,"y":33.558},{"x":1753189861244,"y":47.755},{"x":1753189801107,"y":41.028},{"x":1753189740604,"y":33.612},{"x":1753189680510,"y":21.139},{"x":1753189622980,"y":12.78},{"x":1753189562836,"y":19.462},{"x":1753189502690,"y":29.934},{"x":1753189442300,"y":13.424},{"x":1753189382161,"y":13.571},{"x":1753189322015,"y":22.319},{"x":1753189261862,"y":27.797},{"x":1753189202720,"y":29.731},{"x":1753189141879,"y":32.581},{"x":1753189081702,"y":15.784},{"x":1753189021540,"y":21.719},{"x":1753188961391,"y":31.25},{"x":1753188901236,"y":36.774},{"x":1753188840841,"y":24.084},{"x":1753188780680,"y":30.546},{"x":1753188720569,"y":26.58},{"x":1753188660453,"y":53.562},{"x":1753188603031,"y":47.593},{"x":1753188542649,"y":49.319},{"x":1753188482496,"y":53.951},{"x":1753188422342,"y":46.187},{"x":1753188362184,"y":26.178},{"x":1753188302009,"y":25.109},{"x":1753188241610,"y":34.386},{"x":1753188181418,"y":20.22},{"x":1753188121217,"y":29.077},{"x":1753188061020,"y":29.306},{"x":1753188000857,"y":37.72},{"x":1753187942943,"y":37.721},{"x":1753187882749,"y":33.259},{"x":1753187822585,"y":43.63},{"x":1753187762412,"y":46.363},{"x":1753187702255,"y":46.591},{"x":1753187641871,"y":34.034},{"x":1753187581702,"y":34.522},{"x":1753187521558,"y":29.345},{"x":1753187461374,"y":46.77},{"x":1753187401214,"y":48.8},{"x":1753187340666,"y":48.197},{"x":1753187280538,"y":58.571},{"x":1753187220334,"y":46.342},{"x":1753187162925,"y":29.707},{"x":1753187102764,"y":40.464},{"x":1753187042210,"y":29.731},{"x":1753186982038,"y":29.944},{"x":1753186921869,"y":26.274},{"x":1753186861673,"y":31.502},{"x":1753186801515,"y":20.73},{"x":1753186741123,"y":22.59},{"x":1753186680942,"y":37.658},{"x":1753186620805,"y":37.411},{"x":1753186560566,"y":38.464},{"x":1753186503292,"y":32.862},{"x":1753186442852,"y":17.508},{"x":1753186382680,"y":10.642},{"x":1753186322593,"y":12.359},{"x":1753186262339,"y":13.777},{"x":1753186202164,"y":9.702},{"x":1753186141717,"y":11.66},{"x":1753186081555,"y":13.308},{"x":1753186021398,"y":35.248},{"x":1753185961240,"y":36.745},{"x":1753185901107,"y":54.817},{"x":1753185840674,"y":54.654},{"x":1753185780371,"y":41.862},{"x":1753185722982,"y":25.356},{"x":1753185662826,"y":27.221},{"x":1753185602628,"y":47.222},{"x":1753185542064,"y":29.185},{"x":1753185481880,"y":38.653},{"x":1753185421723,"y":16.356},{"x":1753185361559,"y":31.573},{"x":1753185301395,"y":31.662},{"x":1753185240984,"y":47.156},{"x":1753185180810,"y":40.951},{"x":1753185120740,"y":40.104},{"x":1753185060519,"y":48.002},{"x":1753185003213,"y":27.594},{"x":1753184942791,"y":28.529},{"x":1753184882640,"y":27.67},{"x":1753184822480,"y":33.251},{"x":1753184762305,"y":50.045},{"x":1753184702139,"y":57.329},{"x":1753184641702,"y":51.971},{"x":1753184581554,"y":34.063},{"x":1753184521374,"y":35.278},{"x":1753184461214,"y":28.802},{"x":1753184401049,"y":35.252},{"x":1753184340405,"y":40.88},{"x":1753184283014,"y":29.446},{"x":1753184222747,"y":31.358},{"x":1753184162603,"y":50.729},{"x":1753184102426,"y":34.081},{"x":1753184042507,"y":31.422},{"x":1753183982410,"y":25.106},{"x":1753183922259,"y":16.256},{"x":1753183862050,"y":28.955},{"x":1753183801035,"y":31.76},{"x":1753183742986,"y":28.816},{"x":1753183682758,"y":35.729},{"x":1753183622574,"y":23.371},{"x":1753183562384,"y":31.961},{"x":1753183502224,"y":31.385},{"x":1753183441832,"y":25.32},{"x":1753183381679,"y":13.964},{"x":1753183321497,"y":36.952},{"x":1753183261329,"y":32.8},{"x":1753183201187,"y":29.285},{"x":1753183140698,"y":38.482},{"x":1753183080436,"y":39.029},{"x":1753183023061,"y":27.55},{"x":1753182962872,"y":25.309},{"x":1753182903420,"y":30.133},{"x":1753182841890,"y":24.659},{"x":1753182781685,"y":27.401},{"x":1753182721510,"y":24.378},{"x":1753182661331,"y":22.706},{"x":1753182601185,"y":46.436},{"x":1753182540680,"y":43.676},{"x":1753182480544,"y":41.656},{"x":1753182420083,"y":43.014},{"x":1753182362883,"y":44.198},{"x":1753182302694,"y":17.844},{"x":1753182242305,"y":14.744},{"x":1753182182127,"y":14.197},{"x":1753182121936,"y":18.842},{"x":1753182061758,"y":22.416},{"x":1753182001206,"y":11.348},{"x":1753181940435,"y":16.59},{"x":1753181882989,"y":17.42},{"x":1753181822819,"y":26.785},{"x":1753181762613,"y":29.58},{"x":1753181702480,"y":24.798},{"x":1753181642059,"y":22.135},{"x":1753181581872,"y":19.296},{"x":1753181521679,"y":12.299},{"x":1753181461495,"y":12.281},{"x":1753181401309,"y":15.305},{"x":1753181340886,"y":18.686},{"x":1753181280741,"y":24.112},{"x":1753181220575,"y":23.155},{"x":1753181160404,"y":23.738},{"x":1753181103098,"y":21.572},{"x":1753181042705,"y":32.434},{"x":1753180982536,"y":18.937},{"x":1753180922352,"y":26.868},{"x":1753180862217,"y":12.312},{"x":1753180802008,"y":24.706},{"x":1753180741610,"y":32.022},{"x":1753180681435,"y":21.569},{"x":1753180621280,"y":22.187},{"x":1753180561114,"y":32.546},{"x":1753180500944,"y":13.892},{"x":1753180440398,"y":48.61},{"x":1753180383012,"y":10.22},{"x":1753180322845,"y":19.57},{"x":1753180262675,"y":17.903},{"x":1753180202245,"y":25.325},{"x":1753180141052,"y":20.845},{"x":1753180081613,"y":24.955},{"x":1753180021437,"y":21.044},{"x":1753179961271,"y":33.288},{"x":1753179901119,"y":11.932},{"x":1753179840593,"y":34.843},{"x":1753179780345,"y":8.628},{"x":1753179722936,"y":29.753},{"x":1753179662527,"y":35.76},{"x":1753179602370,"y":34.657},{"x":1753179541951,"y":11.962},{"x":1753179481796,"y":35.31},{"x":1753179421615,"y":35.25},{"x":1753179361160,"y":20.01},{"x":1753179302741,"y":61.853},{"x":1753179242354,"y":55.004},{"x":1753179182175,"y":54.541},{"x":1753179121341,"y":24.397},{"x":1753179061176,"y":29.646},{"x":1753179000999,"y":29.599},{"x":1753178941409,"y":26.734},{"x":1753178881230,"y":36.562},{"x":1753178821054,"y":34.226},{"x":1753178760887,"y":17.446},{"x":1753178700784,"y":18.779},{"x":1753178642983,"y":26.009},{"x":1753178582823,"y":28.891},{"x":1753178522646,"y":19.759},{"x":1753178461048,"y":23.777},{"x":1753178401311,"y":22.49},{"x":1753178343015,"y":29.897},{"x":1753178282341,"y":47.636},{"x":1753178220232,"y":30.535},{"x":1753178162916,"y":36.312},{"x":1753178102745,"y":39.032},{"x":1753178042229,"y":27.284},{"x":1753177982047,"y":11.994},{"x":1753177921107,"y":20.236},{"x":1753177860915,"y":28.231},{"x":1753177800925,"y":35.32},{"x":1753177740300,"y":13.334},{"x":1753177682896,"y":32.417},{"x":1753177622754,"y":38.824},{"x":1753177562565,"y":25.651},{"x":1753177502402,"y":22.751},{"x":1753177441997,"y":46.741},{"x":1753177381833,"y":34.368},{"x":1753177321627,"y":40.802},{"x":1753177262296,"y":33.182},{"x":1753177202120,"y":30.196},{"x":1753177141726,"y":34.718},{"x":1753177081568,"y":37.72},{"x":1753177021375,"y":21.186},{"x":1753176961179,"y":23.854},{"x":1753176901016,"y":28.278},{"x":1753176840604,"y":16.102},{"x":1753176780695,"y":20.04},{"x":1753176720598,"y":26.904},{"x":1753176660312,"y":26.62},{"x":1753176602941,"y":30.995},{"x":1753176542297,"y":30.365},{"x":1753176482072,"y":28.99},{"x":1753176421860,"y":28.36},{"x":1753176368880,"y":26.048},{"x":1753176301374,"y":32.227},{"x":1753176240951,"y":26.432},{"x":1753176180755,"y":34.056},{"x":1753176120536,"y":34.466},{"x":1753176062943,"y":37.764},{"x":1753176002757,"y":35.41},{"x":1753175942320,"y":36.082},{"x":1753175882139,"y":30.846},{"x":1753175821922,"y":32.627},{"x":1753175761747,"y":37.492},{"x":1753175701453,"y":44.168},{"x":1753175641006,"y":79.319},{"x":1753175580826,"y":69.601},{"x":1753175520726,"y":84.274},{"x":1753175460540,"y":58.523},{"x":1753175403153,"y":49.542},{"x":1753175342751,"y":38.256},{"x":1753175282569,"y":38.125},{"x":1753175222396,"y":40.29},{"x":1753175162209,"y":34.718},{"x":1753175101999,"y":50.801},{"x":1753175041596,"y":45.479},{"x":1753174981416,"y":42.388},{"x":1753174921232,"y":46.04},{"x":1753174861048,"y":48.168},{"x":1753174803261,"y":41.129},{"x":1753174742674,"y":37.748},{"x":1753174680965,"y":57.668},{"x":1753174622799,"y":50.35},{"x":1753174562287,"y":48.15},{"x":1753174502891,"y":45.625},{"x":1753174442469,"y":52.276},{"x":1753174382291,"y":46.763},{"x":1753174322079,"y":32.454},{"x":1753174261910,"y":37.254},{"x":1753174201115,"y":38.474},{"x":1753174140698,"y":40.741},{"x":1753174080534,"y":43.58},{"x":1753174020317,"y":39.012},{"x":1753173963885,"y":36.979},{"x":1753173901521,"y":40.172},{"x":1753173840770,"y":28.814},{"x":1753173780577,"y":39.499},{"x":1753173720417,"y":30.664},{"x":1753173662994,"y":35.784},{"x":1753173602827,"y":38.624},{"x":1753173542343,"y":33.668},{"x":1753173482157,"y":37.206},{"x":1753173421971,"y":35.078},{"x":1753173361419,"y":37.199},{"x":1753173301237,"y":38.086},{"x":1753173240706,"y":45.587},{"x":1753173180585,"y":36.066},{"x":1753173120453,"y":51.394},{"x":1753173062945,"y":47.472},{"x":1753173002691,"y":37.684},{"x":1753172942132,"y":36.278},{"x":1753172881895,"y":58.542},{"x":1753172821711,"y":63.961},{"x":1753172761540,"y":61.262},{"x":1753172701362,"y":80.254},{"x":1753172640906,"y":68.195},{"x":1753172580703,"y":59.5},{"x":1753172520433,"y":61.504},{"x":1753172462951,"y":45.71},{"x":1753172402772,"y":36.286},{"x":1753172342330,"y":34.872},{"x":1753172282167,"y":43.324},{"x":1753172221982,"y":38.791},{"x":1753172161802,"y":40.702},{"x":1753172101626,"y":32.399},{"x":1753172041019,"y":28.874},{"x":1753171980841,"y":49.96},{"x":1753171920724,"y":40.15},{"x":1753171860604,"y":38.786},{"x":1753171803140,"y":43.531},{"x":1753171742660,"y":44.752},{"x":1753171682483,"y":47.01},{"x":1753171622306,"y":50.461},{"x":1753171562109,"y":41.119},{"x":1753171501928,"y":42.108},{"x":1753171441438,"y":43.04},{"x":1753171381267,"y":45.956},{"x":1753171321085,"y":54.454},{"x":1753171260900,"y":59.917},{"x":1753171202800,"y":68.965},{"x":1753171140766,"y":70.814},{"x":1753171080702,"y":56.731},{"x":1753171020584,"y":48.708},{"x":1753170960344,"y":45.88},{"x":1753170902894,"y":46.063},{"x":1753170842267,"y":43.634},{"x":1753170782117,"y":49.628},{"x":1753170721908,"y":49.513},{"x":1753170661715,"y":52.843},{"x":1753170600897,"y":48.931},{"x":1753170540877,"y":51.869},{"x":1753170480721,"y":44.19},{"x":1753170420389,"y":47.437},{"x":1753170360104,"y":38.918},{"x":1753170302863,"y":51.503},{"x":1753170241887,"y":57.133},{"x":1753170181713,"y":51.424},{"x":1753170121518,"y":51.301},{"x":1753170061341,"y":47.215},{"x":1753170001193,"y":48.636},{"x":1753169940509,"y":57.697},{"x":1753169880122,"y":43.567},{"x":1753169822781,"y":44.006},{"x":1753169762577,"y":46.577},{"x":1753169702391,"y":53.546},{"x":1753169641871,"y":54.5},{"x":1753169581642,"y":58.795},{"x":1753169521454,"y":59.282},{"x":1753169461279,"y":51.847},{"x":1753169401686,"y":44.521},{"x":1753169340788,"y":48.503},{"x":1753169280622,"y":58.613},{"x":1753169220492,"y":49.184},{"x":1753169162995,"y":49.818},{"x":1753169102821,"y":54.292},{"x":1753169042142,"y":55.307},{"x":1753168981965,"y":64.258},{"x":1753168921814,"y":60.254},{"x":1753168861601,"y":57.474},{"x":1753168801441,"y":58.722},{"x":1753168740801,"y":64.507},{"x":1753168680514,"y":55.758},{"x":1753168622972,"y":59.837},{"x":1753168562386,"y":59.028},{"x":1753168502203,"y":52.74},{"x":1753168441730,"y":53.995},{"x":1753168381556,"y":53.094},{"x":1753168321353,"y":62.492},{"x":1753168261173,"y":54.852},{"x":1753168201473,"y":55.576},{"x":1753168140735,"y":59.108},{"x":1753168080618,"y":51.121},{"x":1753168020401,"y":72.652},{"x":1753167963030,"y":70.216},{"x":1753167902836,"y":53.448},{"x":1753167842364,"y":52.428},{"x":1753167782192,"y":58.028},{"x":1753167722014,"y":44.179},{"x":1753167661823,"y":53.709},{"x":1753167602370,"y":42.981},{"x":1753167540924,"y":51.036},{"x":1753167480754,"y":46.979},{"x":1753167420653,"y":50.151},{"x":1753167360440,"y":49.959},{"x":1753167303055,"y":48.176},{"x":1753167242562,"y":50.902},{"x":1753167182390,"y":46.921},{"x":1753167122198,"y":49.335},{"x":1753167062015,"y":43.369},{"x":1753167001836,"y":48.773},{"x":1753166941259,"y":48.045},{"x":1753166881079,"y":41.619},{"x":1753166820885,"y":46.342},{"x":1753166760714,"y":45.541},{"x":1753166701448,"y":51.364},{"x":1753166642878,"y":63.837},{"x":1753166582706,"y":61.094},{"x":1753166522529,"y":54.527},{"x":1753166462350,"y":67.394},{"x":1753166402182,"y":52.194},{"x":1753166341705,"y":48.399},{"x":1753166281512,"y":47.994},{"x":1753166221320,"y":44.057},{"x":1753166161140,"y":39.523},{"x":1753166100961,"y":47.204},{"x":1753166040360,"y":44.917},{"x":1753165982934,"y":49.285},{"x":1753165922759,"y":45.565},{"x":1753165862468,"y":41.612},{"x":1753165802244,"y":44.379},{"x":1753165741655,"y":40.389},{"x":1753165681473,"y":52.966},{"x":1753165621273,"y":41.236},{"x":1753165561095,"y":41.936},{"x":1753165500932,"y":41.604},{"x":1753165442978,"y":55.914},{"x":1753165382794,"y":46.404},{"x":1753165322626,"y":42.099},{"x":1753165262410,"y":59.906},{"x":1753165202247,"y":70.679},{"x":1753165141749,"y":57.806},{"x":1753165081595,"y":60.35},{"x":1753165021402,"y":41.431},{"x":1753164961214,"y":46.294},{"x":1753164901154,"y":53.455},{"x":1753164840300,"y":55.542},{"x":1753164782972,"y":72.992},{"x":1753164722755,"y":58.695},{"x":1753164662595,"y":70.042},{"x":1753164602406,"y":61.009},{"x":1753164541872,"y":53.568},{"x":1753164481682,"y":64.756},{"x":1753164421482,"y":63.964},{"x":1753164361319,"y":58.04},{"x":1753164301123,"y":63.45},{"x":1753164240632,"y":59.222},{"x":1753164180412,"y":59.007},{"x":1753164123009,"y":54.019},{"x":1753164062843,"y":42.453},{"x":1753164002732,"y":40.338},{"x":1753163941773,"y":40.815},{"x":1753163881589,"y":38.035},{"x":1753163821388,"y":41.142},{"x":1753163761210,"y":44.979},{"x":1753163701134,"y":41.581},{"x":1753163640378,"y":44.053},{"x":1753163582976,"y":46.35},{"x":1753163522788,"y":40.119},{"x":1753163462576,"y":39.837},{"x":1753163402403,"y":45.891},{"x":1753163341909,"y":41.269},{"x":1753163281728,"y":38.762},{"x":1753163221545,"y":39.494},{"x":1753163161356,"y":38.609},{"x":1753163101380,"y":40.879},{"x":1753163040435,"y":49.764},{"x":1753162982919,"y":49.067},{"x":1753162922714,"y":49.613},{"x":1753162862544,"y":46.168},{"x":1753162802375,"y":46.085},{"x":1753162741900,"y":48.816},{"x":1753162681715,"y":41.902},{"x":1753162621530,"y":38.474},{"x":1753162561351,"y":41.141},{"x":1753162501187,"y":41.934},{"x":1753162440672,"y":45.467},{"x":1753162380594,"y":41.3},{"x":1753162320196,"y":43.241},{"x":1753162262885,"y":50.718},{"x":1753162202649,"y":45.623},{"x":1753162142133,"y":47.244},{"x":1753162081900,"y":50.228},{"x":1753162021708,"y":46.632},{"x":1753161961521,"y":45.204},{"x":1753161901325,"y":49.089},{"x":1753161840792,"y":45.589},{"x":1753161780626,"y":43.627},{"x":1753161720433,"y":44.583},{"x":1753161663030,"y":45.015},{"x":1753161602843,"y":44.908},{"x":1753161542392,"y":47.56},{"x":1753161482221,"y":52.092},{"x":1753161422068,"y":50.609},{"x":1753161361840,"y":44.143},{"x":1753161301642,"y":47.584},{"x":1753161241149,"y":48.981},{"x":1753161180968,"y":47.512},{"x":1753161120828,"y":46.023},{"x":1753161060634,"y":45.988},{"x":1753161003377,"y":42.926},{"x":1753160942827,"y":42.966},{"x":1753160882656,"y":45.007},{"x":1753160822481,"y":42.421},{"x":1753160762309,"y":48.599},{"x":1753160702276,"y":45.17},{"x":1753160641759,"y":44.656},{"x":1753160581569,"y":55.743},{"x":1753160521399,"y":67.45},{"x":1753160461210,"y":62.681},{"x":1753160402060,"y":61.695},{"x":1753160340733,"y":66.818},{"x":1753160280618,"y":53.309},{"x":1753160220434,"y":48.984},{"x":1753160160032,"y":47.356},{"x":1753160102834,"y":49.796},{"x":1753160042357,"y":47.602},{"x":1753159982188,"y":45.947},{"x":1753159922014,"y":46.539},{"x":1753159861825,"y":47.388},{"x":1753159801640,"y":33.078},{"x":1753159741084,"y":33.022},{"x":1753159680904,"y":42.429},{"x":1753159620729,"y":41.7},{"x":1753159560641,"y":45.032},{"x":1753159501384,"y":41.367},{"x":1753159443012,"y":42.737},{"x":1753159382822,"y":32.829},{"x":1753159322620,"y":40.127},{"x":1753159262451,"y":45.496},{"x":1753159202271,"y":37.688},{"x":1753159141810,"y":37.19},{"x":1753159081629,"y":34.002},{"x":1753159021388,"y":35.932},{"x":1753158961201,"y":38.008},{"x":1753158901014,"y":32.714},{"x":1753158840278,"y":32.288},{"x":1753158782883,"y":30.922},{"x":1753158722667,"y":33.396},{"x":1753158662485,"y":38.578},{"x":1753158602251,"y":36.089},{"x":1753158541737,"y":32.469},{"x":1753158481542,"y":35.089},{"x":1753158421363,"y":37.256},{"x":1753158361183,"y":38.095},{"x":1753158301037,"y":34.9},{"x":1753158240267,"y":31.988},{"x":1753158182913,"y":33.062},{"x":1753158122738,"y":30.43},{"x":1753158062574,"y":33.848},{"x":1753158002387,"y":35.075},{"x":1753157941911,"y":34.806},{"x":1753157881696,"y":38.422},{"x":1753157821519,"y":35.903},{"x":1753157761328,"y":40.643},{"x":1753157701481,"y":38.696},{"x":1753157640758,"y":38.14},{"x":1753157580587,"y":39.788},{"x":1753157520400,"y":38.924},{"x":1753157462972,"y":49.845},{"x":1753157402787,"y":32.968},{"x":1753157342321,"y":34.165},{"x":1753157282112,"y":38.046},{"x":1753157221927,"y":34.485},{"x":1753157161689,"y":37.978},{"x":1753157101500,"y":34.886},{"x":1753157041010,"y":31.849},{"x":1753156980859,"y":38.26},{"x":1753156920683,"y":37.227},{"x":1753156860554,"y":35.902},{"x":1753156800069,"y":43.583},{"x":1753156742848,"y":35.184},{"x":1753156682685,"y":32.166},{"x":1753156622491,"y":35.392},{"x":1753156562302,"y":36.138},{"x":1753156502103,"y":40.737},{"x":1753156441641,"y":36.495},{"x":1753156381449,"y":39.078},{"x":1753156321246,"y":39.132},{"x":1753156261086,"y":37.618},{"x":1753156200912,"y":41.617},{"x":1753156143035,"y":34.745},{"x":1753156082860,"y":33.23},{"x":1753156022672,"y":34.985},{"x":1753155962485,"y":34.407},{"x":1753155902289,"y":54.937},{"x":1753155841805,"y":58.811},{"x":1753155781631,"y":55.198},{"x":1753155721443,"y":55.385},{"x":1753155661258,"y":56.248},{"x":1753155601095,"y":37.909},{"x":1753155540198,"y":34.715},{"x":1753155482876,"y":36.007},{"x":1753155422682,"y":32.78},{"x":1753155362494,"y":31.954},{"x":1753155302327,"y":33.429},{"x":1753155241840,"y":38.305},{"x":1753155181659,"y":33.242},{"x":1753155121483,"y":33.453},{"x":1753155061285,"y":35.918},{"x":1753155001265,"y":33.235},{"x":1753154940476,"y":33.42},{"x":1753154880303,"y":32.203},{"x":1753154822907,"y":33.28},{"x":1753154762715,"y":47.64},{"x":1753154702540,"y":44.97},{"x":1753154642035,"y":48.418},{"x":1753154581841,"y":46.161},{"x":1753154521693,"y":55.579},{"x":1753154461492,"y":54.156},{"x":1753154401298,"y":60.333},{"x":1753154340739,"y":56.237},{"x":1753154280581,"y":52.678},{"x":1753154220493,"y":41.142},{"x":1753154162943,"y":37.994},{"x":1753154102756,"y":35.726},{"x":1753154042307,"y":38.625},{"x":1753153982124,"y":33.685},{"x":1753153921932,"y":34.196},{"x":1753153861737,"y":32.25},{"x":1753153801566,"y":31.849},{"x":1753153741092,"y":35.288},{"x":1753153680889,"y":34.132},{"x":1753153620703,"y":34.436},{"x":1753153560624,"y":36.732},{"x":1753153503409,"y":33.357},{"x":1753153440471,"y":35.966},{"x":1753153382717,"y":33.775},{"x":1753153322432,"y":30.274},{"x":1753153262204,"y":33.747},{"x":1753153203296,"y":37.077},{"x":1753153141883,"y":40.674},{"x":1753153081700,"y":36.256},{"x":1753153021516,"y":41.375},{"x":1753152961326,"y":41.315},{"x":1753152901143,"y":40.072},{"x":1753152840145,"y":41.533},{"x":1753152782868,"y":36.23},{"x":1753152722700,"y":35.964},{"x":1753152662516,"y":33.831},{"x":1753152602327,"y":30.961},{"x":1753152541865,"y":35.37},{"x":1753152481670,"y":40.396},{"x":1753152421485,"y":40.524},{"x":1753152361305,"y":48.472},{"x":1753152301495,"y":45.572},{"x":1753152240818,"y":46.176},{"x":1753152180645,"y":39.382},{"x":1753152120538,"y":32.393},{"x":1753152060416,"y":30.927},{"x":1753152002974,"y":32.973},{"x":1753151942516,"y":31.023},{"x":1753151882338,"y":35.092},{"x":1753151822147,"y":31.552},{"x":1753151761950,"y":36.966},{"x":1753151701763,"y":39.527},{"x":1753151641267,"y":36.801},{"x":1753151581071,"y":36.192},{"x":1753151520886,"y":35.087},{"x":1753151460719,"y":31.429},{"x":1753151401452,"y":30.91},{"x":1753151340272,"y":31.223},{"x":1753151282828,"y":37.463},{"x":1753151222584,"y":31.749},{"x":1753151162414,"y":31.599},{"x":1753151102247,"y":35.055},{"x":1753151041782,"y":34.007},{"x":1753150981596,"y":38.786},{"x":1753150921372,"y":34.387},{"x":1753150861199,"y":37.662},{"x":1753150800991,"y":42.469},{"x":1753150742967,"y":42.064},{"x":1753150682794,"y":47.923},{"x":1753150622623,"y":39.785},{"x":1753150562444,"y":31.8},{"x":1753150502281,"y":32.123},{"x":1753150441796,"y":30.294},{"x":1753150381612,"y":37.169},{"x":1753150321428,"y":31.823},{"x":1753150261251,"y":39.811},{"x":1753150201070,"y":44.086},{"x":1753150142936,"y":40.161},{"x":1753150082752,"y":42.198},{"x":1753150022571,"y":40.406},{"x":1753149962389,"y":33.761},{"x":1753149902204,"y":36.79},{"x":1753149841722,"y":39.607},{"x":1753149781552,"y":38.646},{"x":1753149721359,"y":33.9},{"x":1753149661168,"y":38.226},{"x":1753149602241,"y":34.825},{"x":1753149540703,"y":34.777},{"x":1753149480549,"y":48.243},{"x":1753149420344,"y":44.486},{"x":1753149362957,"y":44.747},{"x":1753149302773,"y":46.917},{"x":1753149242361,"y":41.17},{"x":1753149182129,"y":36.689},{"x":1753149121943,"y":39.73},{"x":1753149061731,"y":30.435},{"x":1753149001544,"y":29.785},{"x":1753148941085,"y":33.446},{"x":1753148880901,"y":36.874},{"x":1753148820752,"y":38.522},{"x":1753148760547,"y":41.899},{"x":1753148701237,"y":36.191},{"x":1753148642916,"y":44.851},{"x":1753148582729,"y":44.793},{"x":1753148522520,"y":43.883},{"x":1753148462334,"y":44.769},{"x":1753148402144,"y":39.728},{"x":1753148341679,"y":32.107},{"x":1753148281489,"y":32.716},{"x":1753148221297,"y":36.014},{"x":1753148161109,"y":39.661},{"x":1753148100936,"y":40.433},{"x":1753148040475,"y":35.765},{"x":1753147980090,"y":33.458},{"x":1753147922857,"y":33.462},{"x":1753147862585,"y":34.332},{"x":1753147802377,"y":50.69},{"x":1753147741847,"y":50.843},{"x":1753147681656,"y":51.443},{"x":1753147621439,"y":50.911},{"x":1753147561252,"y":55.511},{"x":1753147501086,"y":31.727},{"x":1753147440606,"y":36.261},{"x":1753147380379,"y":33.076},{"x":1753147320279,"y":33.316},{"x":1753147262905,"y":37.078},{"x":1753147202716,"y":41.569},{"x":1753147142260,"y":39.429},{"x":1753147082084,"y":42.519},{"x":1753147021907,"y":41.295},{"x":1753146961719,"y":40.052},{"x":1753146901541,"y":37.068},{"x":1753146841052,"y":38.11},{"x":1753146780874,"y":35.539},{"x":1753146720711,"y":37.81},{"x":1753146660549,"y":40.815},{"x":1753146603246,"y":32.217},{"x":1753146542789,"y":35.603},{"x":1753146482594,"y":30.854},{"x":1753146422434,"y":32.887},{"x":1753146362246,"y":39.805},{"x":1753146302037,"y":32.985},{"x":1753146241561,"y":34.436},{"x":1753146181383,"y":33.925},{"x":1753146121194,"y":34.764},{"x":1753146060987,"y":35.312},{"x":1753146002152,"y":33.716},{"x":1753145940592,"y":33.106},{"x":1753145880545,"y":30.655},{"x":1753145820096,"y":35.146},{"x":1753145762865,"y":38.024},{"x":1753145702696,"y":34.222},{"x":1753145642236,"y":36.791},{"x":1753145582059,"y":36.412},{"x":1753145521869,"y":39.074},{"x":1753145461703,"y":38.083},{"x":1753145401504,"y":33.675},{"x":1753145341044,"y":36.538},{"x":1753145280872,"y":32.967},{"x":1753145220681,"y":31.669},{"x":1753145160534,"y":36.862},{"x":1753145103289,"y":33.936},{"x":1753145042837,"y":34.439},{"x":1753144982650,"y":38.082},{"x":1753144922455,"y":36.664},{"x":1753144862278,"y":36.184},{"x":1753144802092,"y":42.803},{"x":1753144741613,"y":38.868},{"x":1753144681432,"y":37.445},{"x":1753144621259,"y":37.677},{"x":1753144561064,"y":48.467},{"x":1753144500892,"y":54.24},{"x":1753144442907,"y":52.792},{"x":1753144382747,"y":50.898},{"x":1753144322577,"y":55.944},{"x":1753144262400,"y":45.323},{"x":1753144202214,"y":39.436},{"x":1753144141705,"y":38.523},{"x":1753144081495,"y":40.913},{"x":1753144021316,"y":41.028},{"x":1753143961141,"y":41.772},{"x":1753143900931,"y":39.213},{"x":1753143840059,"y":35.553},{"x":1753143782863,"y":35.55},{"x":1753143722676,"y":32.62},{"x":1753143662501,"y":31.058},{"x":1753143602307,"y":41.712},{"x":1753143541792,"y":35.519},{"x":1753143481612,"y":37.482},{"x":1753143421425,"y":37.983},{"x":1753143361233,"y":34.732},{"x":1753143301360,"y":46.162},{"x":1753143240826,"y":42.958},{"x":1753143180661,"y":43.768},{"x":1753143120606,"y":44.814},{"x":1753143060280,"y":38.555},{"x":1753143002918,"y":44.065},{"x":1753142942449,"y":41.604},{"x":1753142882276,"y":34.548},{"x":1753142822100,"y":34.137},{"x":1753142761908,"y":34.513},{"x":1753142701726,"y":43.265},{"x":1753142641265,"y":43.424},{"x":1753142581052,"y":45.706},{"x":1753142520863,"y":40.548},{"x":1753142460687,"y":38.36},{"x":1753142403489,"y":43.4},{"x":1753142342840,"y":39.116},{"x":1753142282664,"y":38.157},{"x":1753142222490,"y":38.743},{"x":1753142162319,"y":38.485},{"x":1753142102156,"y":43.721},{"x":1753142041670,"y":42.919},{"x":1753141981473,"y":42.311},{"x":1753141921301,"y":43.402},{"x":1753141861127,"y":44.777},{"x":1753141800936,"y":44.364},{"x":1753141742875,"y":40.57},{"x":1753141682714,"y":36.877},{"x":1753141622546,"y":38.515},{"x":1753141562340,"y":37.345},{"x":1753141502188,"y":36.234},{"x":1753141441698,"y":36.522},{"x":1753141381542,"y":37.987},{"x":1753141321360,"y":35.209},{"x":1753141261176,"y":40.483},{"x":1753141200997,"y":39.772},{"x":1753141142949,"y":44.585},{"x":1753141082789,"y":39.379},{"x":1753141022639,"y":43.892},{"x":1753140962444,"y":34.843},{"x":1753140902292,"y":34.858},{"x":1753140841800,"y":38.468},{"x":1753140781626,"y":34.994},{"x":1753140721442,"y":34.914},{"x":1753140661259,"y":35.63},{"x":1753140601313,"y":35.9},{"x":1753140540602,"y":37.129},{"x":1753140480493,"y":39.951},{"x":1753140422971,"y":41.13},{"x":1753140362802,"y":41.441},{"x":1753140302621,"y":42.394},{"x":1753140242174,"y":38.108},{"x":1753140181983,"y":36.083},{"x":1753140121795,"y":35.302},{"x":1753140061620,"y":36.257},{"x":1753140001458,"y":34.34},{"x":1753139940956,"y":38.562},{"x":1753139880761,"y":32.809},{"x":1753139820595,"y":34.236},{"x":1753139760486,"y":33.745},{"x":1753139703157,"y":38.567},{"x":1753139642704,"y":43.871},{"x":1753139582534,"y":39.434},{"x":1753139522367,"y":40.078},{"x":1753139462190,"y":39.121},{"x":1753139402004,"y":38.83},{"x":1753139341508,"y":39.912},{"x":1753139281333,"y":33.095},{"x":1753139221139,"y":52.081},{"x":1753139160955,"y":52.875},{"x":1753139100789,"y":55.927},{"x":1753139040283,"y":55.233},{"x":1753138982869,"y":59.709},{"x":1753138922673,"y":40.924},{"x":1753138862495,"y":35.936},{"x":1753138802358,"y":36.49},{"x":1753138741438,"y":37.218},{"x":1753138681245,"y":33.348},{"x":1753138621035,"y":34.558},{"x":1753138560864,"y":33.789},{"x":1753138501132,"y":34.253},{"x":1753138440369,"y":38.199},{"x":1753138382938,"y":36.087},{"x":1753138322762,"y":33.539},{"x":1753138262597,"y":42.702},{"x":1753138202437,"y":37.555},{"x":1753138141932,"y":42.263},{"x":1753138081734,"y":50.186},{"x":1753138021553,"y":48.002},{"x":1753137961344,"y":47.227},{"x":1753137901529,"y":46.725},{"x":1753137840772,"y":45.901},{"x":1753137780608,"y":32.412},{"x":1753137720503,"y":32.356},{"x":1753137660283,"y":33.463},{"x":1753137602908,"y":40.303},{"x":1753137542438,"y":46.504},{"x":1753137482241,"y":46.772},{"x":1753137422060,"y":47.554},{"x":1753137361863,"y":48.893},{"x":1753137301684,"y":43.235},{"x":1753137241212,"y":42.827},{"x":1753137181038,"y":46.456},{"x":1753137120878,"y":42.909},{"x":1753137060637,"y":45.503},{"x":1753137001142,"y":42.983},{"x":1753136942968,"y":44.199},{"x":1753136882747,"y":51.761},{"x":1753136822555,"y":47.649},{"x":1753136762377,"y":46.929},{"x":1753136702170,"y":44.469},{"x":1753136641717,"y":48.715},{"x":1753136581524,"y":44.674},{"x":1753136521344,"y":44.791},{"x":1753136461159,"y":45.369},{"x":1753136400974,"y":41.785},{"x":1753136342922,"y":46.586},{"x":1753136282765,"y":43.155},{"x":1753136222585,"y":48.049},{"x":1753136162388,"y":46.131},{"x":1753136102214,"y":47.539},{"x":1753136041768,"y":46.338},{"x":1753135981573,"y":52.328},{"x":1753135921383,"y":47.798},{"x":1753135861206,"y":48.046},{"x":1753135801029,"y":39.703},{"x":1753135740441,"y":38.663},{"x":1753135682906,"y":38.897},{"x":1753135622719,"y":37.665},{"x":1753135562551,"y":37.186},{"x":1753135502372,"y":37.874},{"x":1753135441909,"y":38.14},{"x":1753135381729,"y":41.969},{"x":1753135321532,"y":39.381},{"x":1753135261353,"y":40.508},{"x":1753135202005,"y":37.246},{"x":1753135140897,"y":40.147},{"x":1753135080713,"y":44.194},{"x":1753135020635,"y":44.51},{"x":1753134960318,"y":39.828},{"x":1753134902876,"y":40.782},{"x":1753134842402,"y":41.999},{"x":1753134782222,"y":38.176},{"x":1753134722034,"y":38.072},{"x":1753134661836,"y":41.486},{"x":1753134601657,"y":38.044},{"x":1753134541180,"y":41.463},{"x":1753134480986,"y":41.769},{"x":1753134420812,"y":39.797},{"x":1753134360660,"y":45.814},{"x":1753134301329,"y":38.657},{"x":1753134242919,"y":40.978},{"x":1753134182716,"y":42.265},{"x":1753134122530,"y":40.104},{"x":1753134062344,"y":41.8},{"x":1753134002176,"y":38.853},{"x":1753133941705,"y":41.58},{"x":1753133881526,"y":59.442},{"x":1753133821359,"y":58.968},{"x":1753133761172,"y":62.159},{"x":1753133700987,"y":61.28},{"x":1753133640270,"y":55.726},{"x":1753133582927,"y":45.928},{"x":1753133522721,"y":46.074},{"x":1753133462545,"y":43.668},{"x":1753133402335,"y":40.508},{"x":1753133341787,"y":40.352},{"x":1753133281594,"y":39.393},{"x":1753133221400,"y":41.438},{"x":1753133161134,"y":43.812},{"x":1753133100936,"y":45.992},{"x":1753133040304,"y":50.479},{"x":1753132982909,"y":43.734},{"x":1753132922717,"y":40.829},{"x":1753132862546,"y":42.967},{"x":1753132802357,"y":39.419},{"x":1753132741821,"y":39.761},{"x":1753132681634,"y":45.666},{"x":1753132621450,"y":39.073},{"x":1753132561255,"y":50.597},{"x":1753132501289,"y":47.292},{"x":1753132440640,"y":45.16},{"x":1753132380538,"y":48.089},{"x":1753132323005,"y":51.797},{"x":1753132262826,"y":47.858},{"x":1753132202649,"y":43.499},{"x":1753132142198,"y":46.846},{"x":1753132082009,"y":38.609},{"x":1753132021827,"y":42.656},{"x":1753131961649,"y":37.724},{"x":1753131901447,"y":38.295},{"x":1753131840979,"y":37.479},{"x":1753131780804,"y":38.169},{"x":1753131720622,"y":39.348},{"x":1753131660405,"y":38.502},{"x":1753131603136,"y":47.36},{"x":1753131542509,"y":52.672},{"x":1753131482302,"y":50.413},{"x":1753131422133,"y":51.541},{"x":1753131361922,"y":49.667},{"x":1753131301720,"y":48.884},{"x":1753131241275,"y":50.713},{"x":1753131181067,"y":51.435},{"x":1753131120873,"y":49.862},{"x":1753131060696,"y":49.942},{"x":1753131001017,"y":48.836},{"x":1753130940311,"y":47.421},{"x":1753130882933,"y":47.949},{"x":1753130822758,"y":50.683},{"x":1753130762568,"y":47.667},{"x":1753130702389,"y":47.317},{"x":1753130641934,"y":50.583},{"x":1753130581761,"y":51.944},{"x":1753130521569,"y":48.422},{"x":1753130461380,"y":53.555},{"x":1753130401196,"y":48.566},{"x":1753130340482,"y":49.483},{"x":1753130283014,"y":52.438},{"x":1753130222878,"y":48.697},{"x":1753130162642,"y":50.465},{"x":1753130102445,"y":50.055},{"x":1753130041971,"y":48.27},{"x":1753129981782,"y":65.339},{"x":1753129921615,"y":69.411},{"x":1753129861423,"y":69.4},{"x":1753129801252,"y":66.983},{"x":1753129740472,"y":56.127},{"x":1753129680242,"y":62.89},{"x":1753129622861,"y":59.049},{"x":1753129562680,"y":63.465},{"x":1753129502492,"y":58.972},{"x":1753129442039,"y":59.222},{"x":1753129381821,"y":68.595},{"x":1753129321632,"y":63.855},{"x":1753129261444,"y":66.82},{"x":1753129201264,"y":66.103},{"x":1753129140446,"y":61.939},{"x":1753129080317,"y":54.103},{"x":1753129022927,"y":54.407},{"x":1753128962730,"y":50.764},{"x":1753128902585,"y":55.236},{"x":1753128842063,"y":50.684},{"x":1753128781862,"y":55.115},{"x":1753128721682,"y":51.562},{"x":1753128661482,"y":51.535},{"x":1753128601306,"y":48.318},{"x":1753128540697,"y":55.809},{"x":1753128480563,"y":58.715},{"x":1753128420386,"y":57.6},{"x":1753128360204,"y":52.995},{"x":1753128302840,"y":56.207},{"x":1753128242381,"y":53.767},{"x":1753128182188,"y":57.35},{"x":1753128121977,"y":56.829},{"x":1753128061805,"y":51.773},{"x":1753128002176,"y":47.509},{"x":1753127940745,"y":51.757},{"x":1753127880592,"y":51.745},{"x":1753127820348,"y":64.991},{"x":1753127760066,"y":64.865},{"x":1753127702857,"y":51.551},{"x":1753127642367,"y":51.205},{"x":1753127582187,"y":52.715},{"x":1753127521980,"y":59.006},{"x":1753127461791,"y":56.61},{"x":1753127401635,"y":54.299},{"x":1753127341142,"y":51.523},{"x":1753127280941,"y":50.467},{"x":1753127220666,"y":58.68},{"x":1753127160594,"y":48.281},{"x":1753127101433,"y":54.321},{"x":1753127043001,"y":57.792},{"x":1753126982820,"y":54.622},{"x":1753126922651,"y":54.426},{"x":1753126862485,"y":58.124},{"x":1753126802281,"y":53.186},{"x":1753126741815,"y":54.494},{"x":1753126681634,"y":54.151},{"x":1753126621449,"y":55.077},{"x":1753126561251,"y":52.346},{"x":1753126501064,"y":61.251},{"x":1753126440279,"y":51.562},{"x":1753126382919,"y":51.743},{"x":1753126322723,"y":50.359},{"x":1753126262546,"y":61.495},{"x":1753126202401,"y":48.669},{"x":1753126141851,"y":51.25},{"x":1753126081612,"y":60.355},{"x":1753126021409,"y":69.296},{"x":1753125961209,"y":56.907},{"x":1753125901025,"y":57.638},{"x":1753125840267,"y":69.282},{"x":1753125782859,"y":51.217},{"x":1753125722686,"y":57.077},{"x":1753125662510,"y":57.674},{"x":1753125602327,"y":78.481},{"x":1753125541864,"y":80.252},{"x":1753125481673,"y":79.424},{"x":1753125421481,"y":75.101},{"x":1753125361281,"y":72.109},{"x":1753125301120,"y":49.262},{"x":1753125240484,"y":50.596},{"x":1753125180321,"y":50.348},{"x":1753125122989,"y":43.134},{"x":1753125062814,"y":43.945},{"x":1753125002643,"y":44.486},{"x":1753124942116,"y":44.452},{"x":1753124881922,"y":46.608},{"x":1753124821743,"y":42.345},{"x":1753124761562,"y":49.262},{"x":1753124701324,"y":53.042},{"x":1753124640655,"y":39.452},{"x":1753124580486,"y":40.804},{"x":1753124520306,"y":38.595},{"x":1753124462920,"y":37.596},{"x":1753124402734,"y":39.543},{"x":1753124341918,"y":42.765},{"x":1753124281742,"y":42.714},{"x":1753124221528,"y":45.681},{"x":1753124161329,"y":61.873},{"x":1753124101143,"y":44.612},{"x":1753124040520,"y":53.992},{"x":1753123980087,"y":55.144},{"x":1753123922852,"y":53.667},{"x":1753123862671,"y":57.171},{"x":1753123802475,"y":49.568},{"x":1753123741940,"y":58.991},{"x":1753123681763,"y":59.199},{"x":1753123621550,"y":52.733},{"x":1753123561331,"y":43.877},{"x":1753123501523,"y":42.364},{"x":1753123440599,"y":41.313},{"x":1753123380377,"y":44.154},{"x":1753123322991,"y":42.182},{"x":1753123262797,"y":39.428},{"x":1753123202619,"y":47.862},{"x":1753123142067,"y":42.121},{"x":1753123081867,"y":38.079},{"x":1753123021679,"y":45.722},{"x":1753122961487,"y":47.95},{"x":1753122901309,"y":48.042},{"x":1753122840769,"y":47.715},{"x":1753122780557,"y":48.618},{"x":1753122720394,"y":47.375},{"x":1753122663005,"y":39.725},{"x":1753122602803,"y":42.642},{"x":1753122542264,"y":45.1},{"x":1753122482041,"y":45.876},{"x":1753122421840,"y":40.454},{"x":1753122361642,"y":43.168},{"x":1753122301464,"y":40.769},{"x":1753122240916,"y":42.142},{"x":1753122180734,"y":48.99},{"x":1753122120579,"y":52.573},{"x":1753122060404,"y":50.796},{"x":1753122003010,"y":43.98},{"x":1753121942452,"y":47.807},{"x":1753121882292,"y":48.77},{"x":1753121822075,"y":54.56},{"x":1753121761884,"y":37.062},{"x":1753121701689,"y":39.168},{"x":1753121641105,"y":46.14},{"x":1753121580926,"y":40.129},{"x":1753121520780,"y":41.107},{"x":1753121460609,"y":44.903},{"x":1753121403334,"y":45.506},{"x":1753121342833,"y":44.251},{"x":1753121282631,"y":41.213},{"x":1753121222450,"y":38.969},{"x":1753121162278,"y":40.51},{"x":1753121102083,"y":36.877},{"x":1753121041542,"y":35.164},{"x":1753120981352,"y":34.346},{"x":1753120921165,"y":36.108},{"x":1753120860974,"y":35.684},{"x":1753120801917,"y":37.683},{"x":1753120740605,"y":40.091},{"x":1753120680475,"y":36.349},{"x":1753120620228,"y":36.769},{"x":1753120562883,"y":51.867},{"x":1753120502708,"y":41.53},{"x":1753120442147,"y":38.882},{"x":1753120381945,"y":44.219},{"x":1753120321704,"y":40.351},{"x":1753120261532,"y":40.225},{"x":1753120201326,"y":41.112},{"x":1753120140762,"y":51.683},{"x":1753120080644,"y":44.317},{"x":1753120020413,"y":43.532},{"x":1753119963022,"y":38.006},{"x":1753119902831,"y":47.344},{"x":1753119842306,"y":45.405},{"x":1753119782133,"y":41.134},{"x":1753119721930,"y":58.172},{"x":1753119661722,"y":64.391},{"x":1753119601537,"y":59.874},{"x":1753119540962,"y":57.615},{"x":1753119480779,"y":54.677},{"x":1753119420707,"y":35.306},{"x":1753119360451,"y":34.67},{"x":1753119303120,"y":39.52},{"x":1753119242489,"y":43.409},{"x":1753119182313,"y":53.238},{"x":1753119122122,"y":49.407},{"x":1753119061929,"y":53.889},{"x":1753119002058,"y":52.892},{"x":1753118940588,"y":44.484},{"x":1753118880344,"y":49.546},{"x":1753118823021,"y":37.406},{"x":1753118762821,"y":40.207},{"x":1753118702640,"y":36.195},{"x":1753118642103,"y":41.111},{"x":1753118581960,"y":41.239},{"x":1753118521701,"y":43.53},{"x":1753118461521,"y":47.319},{"x":1753118401326,"y":42.574},{"x":1753118340637,"y":40.554},{"x":1753118280494,"y":39.073},{"x":1753118220173,"y":44.284},{"x":1753118162857,"y":28.059},{"x":1753118102666,"y":37.128},{"x":1753118042136,"y":32.921},{"x":1753117981903,"y":33.281},{"x":1753117921720,"y":39.602},{"x":1753117861541,"y":35.545},{"x":1753117801355,"y":43.746},{"x":1753117740447,"y":44.204},{"x":1753117680334,"y":45.775},{"x":1753117622924,"y":44.735},{"x":1753117562733,"y":44.184},{"x":1753117502552,"y":45.775},{"x":1753117441976,"y":40.47},{"x":1753117381784,"y":44.325},{"x":1753117321600,"y":50.943},{"x":1753117261413,"y":58.408},{"x":1753117202464,"y":43.681},{"x":1753117140946,"y":39.503},{"x":1753117080772,"y":43.809},{"x":1753117020661,"y":51.003},{"x":1753116960451,"y":50.293},{"x":1753116903040,"y":45.034},{"x":1753116842485,"y":42.9},{"x":1753116782297,"y":52.186},{"x":1753116722088,"y":39.623},{"x":1753116661888,"y":43.088},{"x":1753116601680,"y":45.012},{"x":1753116541032,"y":51.43},{"x":1753116480843,"y":49.878},{"x":1753116420661,"y":51.006},{"x":1753116360527,"y":33.724},{"x":1753116303203,"y":60.497},{"x":1753116242655,"y":68.583},{"x":1753116182464,"y":56.577},{"x":1753116122286,"y":60.367},{"x":1753116062171,"y":53.983},{"x":1753116002299,"y":43.875},{"x":1753115941726,"y":44.012},{"x":1753115881541,"y":44.252},{"x":1753115821254,"y":48.927},{"x":1753115761072,"y":40.685},{"x":1753115701307,"y":41.291},{"x":1753115640681,"y":43.676},{"x":1753115580551,"y":45.853},{"x":1753115520318,"y":47.448},{"x":1753115462963,"y":39.267},{"x":1753115402725,"y":57.621},{"x":1753115342063,"y":57.847},{"x":1753115281843,"y":58.561},{"x":1753115221614,"y":58.275},{"x":1753115161390,"y":51.22},{"x":1753115101206,"y":44.127},{"x":1753115040400,"y":40.848},{"x":1753114982978,"y":43.929},{"x":1753114922770,"y":43.68},{"x":1753114862594,"y":45.703},{"x":1753114802415,"y":46.149},{"x":1753114741844,"y":43.579},{"x":1753114681652,"y":55.197},{"x":1753114621522,"y":55.632},{"x":1753114561281,"y":52.978},{"x":1753114501522,"y":66.998},{"x":1753114440729,"y":58.598},{"x":1753114380549,"y":49.892},{"x":1753114320565,"y":50.691},{"x":1753114262972,"y":46.845},{"x":1753114202777,"y":64.941},{"x":1753114142192,"y":50.998},{"x":1753114081998,"y":47.579},{"x":1753114021797,"y":40.434},{"x":1753113961613,"y":40.73},{"x":1753113901410,"y":44.445},{"x":1753113840820,"y":43.562},{"x":1753113780679,"y":47.25},{"x":1753113720520,"y":52.774},{"x":1753113660198,"y":50.699},{"x":1753113602874,"y":56.369},{"x":1753113541993,"y":51.476},{"x":1753113481769,"y":46.086},{"x":1753113421588,"y":55.66},{"x":1753113361388,"y":63.451},{"x":1753113301168,"y":49.341},{"x":1753113240421,"y":47.224},{"x":1753113182988,"y":47.63},{"x":1753113122805,"y":50.351},{"x":1753113062615,"y":46.862},{"x":1753113002422,"y":45.75},{"x":1753112941863,"y":53.83},{"x":1753112881673,"y":51.344},{"x":1753112821465,"y":40.639},{"x":1753112761263,"y":35.036},{"x":1753112701588,"y":41.721},{"x":1753112640750,"y":45.695},{"x":1753112580600,"y":49.027},{"x":1753112520384,"y":39.139},{"x":1753112460156,"y":58.052},{"x":1753112402808,"y":48.626},{"x":1753112342229,"y":49.168},{"x":1753112282024,"y":69.126},{"x":1753112221815,"y":59.059},{"x":1753112161643,"y":62.132},{"x":1753112101435,"y":62.376},{"x":1753112040810,"y":54.987},{"x":1753111980671,"y":46.131},{"x":1753111920446,"y":44.823},{"x":1753111860257,"y":34.301},{"x":1753111802911,"y":41.641},{"x":1753111742371,"y":46.364},{"x":1753111682204,"y":41.22},{"x":1753111621949,"y":51.499},{"x":1753111561752,"y":58.714},{"x":1753111501545,"y":52.82},{"x":1753111440963,"y":54.628},{"x":1753111380787,"y":51.102},{"x":1753111320592,"y":45.442},{"x":1753111260390,"y":34.416},{"x":1753111203056,"y":33.698},{"x":1753111142458,"y":39.525},{"x":1753111082275,"y":47.301},{"x":1753111022071,"y":44.634},{"x":1753110961866,"y":56.831},{"x":1753110901679,"y":59.553},{"x":1753110841083,"y":51.773},{"x":1753110780891,"y":51.535},{"x":1753110720707,"y":39.384},{"x":1753110660540,"y":43.997},{"x":1753110603242,"y":42.427},{"x":1753110542639,"y":47.49},{"x":1753110482434,"y":39.126},{"x":1753110422247,"y":38.282},{"x":1753110362073,"y":37.472},{"x":1753110301851,"y":37.841},{"x":1753110241283,"y":47.763},{"x":1753110181098,"y":43.507},{"x":1753110120871,"y":30.595},{"x":1753110060699,"y":32.837},{"x":1753110002190,"y":30.245},{"x":1753109940356,"y":28.648},{"x":1753109883008,"y":15.99},{"x":1753109822787,"y":16.084},{"x":1753109762596,"y":29.224},{"x":1753109702407,"y":44.48},{"x":1753109641881,"y":47.208},{"x":1753109581662,"y":55.213},{"x":1753109521476,"y":62.599},{"x":1753109461282,"y":65.712},{"x":1753109401072,"y":42.98},{"x":1753109340190,"y":23.334},{"x":1753109282278,"y":29.237},{"x":1753109222101,"y":36.297},{"x":1753109161887,"y":10.485},{"x":1753109101717,"y":27.441},{"x":1753109040946,"y":32.46},{"x":1753108980771,"y":47.834},{"x":1753108920602,"y":35.833},{"x":1753108860594,"y":32.803},{"x":1753108803097,"y":51.627},{"x":1753108742551,"y":39.897},{"x":1753108682329,"y":22.131},{"x":1753108622145,"y":23.832},{"x":1753108561931,"y":19.897},{"x":1753108501739,"y":32.42},{"x":1753108441178,"y":40.156},{"x":1753108380961,"y":25.283},{"x":1753108321024,"y":24.994},{"x":1753108260590,"y":19.618},{"x":1753108203187,"y":33.485},{"x":1753108142465,"y":32.951},{"x":1753108082251,"y":33.018},{"x":1753108022027,"y":49.404},{"x":1753107961827,"y":40.224},{"x":1753107901647,"y":44.746},{"x":1753107841073,"y":43.093},{"x":1753107780866,"y":47.827},{"x":1753107720671,"y":49.204},{"x":1753107660546,"y":46.903},{"x":1753107603116,"y":58.903},{"x":1753107542543,"y":34.928},{"x":1753107482339,"y":34.243},{"x":1753107422151,"y":42.143},{"x":1753107361912,"y":37.573},{"x":1753107301751,"y":50.246},{"x":1753107241099,"y":57.793},{"x":1753107180915,"y":45.223},{"x":1753107120772,"y":39.955},{"x":1753107060517,"y":46.05},{"x":1753107003183,"y":44.678},{"x":1753106942607,"y":32.57},{"x":1753106882409,"y":34.447},{"x":1753106822212,"y":45.275},{"x":1753106762005,"y":53.648},{"x":1753106701815,"y":70.314},{"x":1753106641249,"y":67.045},{"x":1753106581063,"y":65.697},{"x":1753106520869,"y":65.965},{"x":1753106460692,"y":53.988},{"x":1753106403479,"y":47.905},{"x":1753106342665,"y":46.16},{"x":1753106282468,"y":33.375},{"x":1753106222275,"y":43.985},{"x":1753106162081,"y":40.558},{"x":1753106101873,"y":52.399},{"x":1753106041329,"y":54.572},{"x":1753105981147,"y":48.158},{"x":1753105920962,"y":38.835},{"x":1753105863727,"y":50.803},{"x":1753105802797,"y":44.205},{"x":1753105742237,"y":41.005},{"x":1753105682568,"y":55.956},{"x":1753105622388,"y":59.086},{"x":1753105562194,"y":45.054},{"x":1753105501981,"y":53.852},{"x":1753105441313,"y":66.341},{"x":1753105383822,"y":43.707},{"x":1753105324141,"y":43.372},{"x":1753105262404,"y":43.992},{"x":1753105201470,"y":57.989},{"x":1753105140700,"y":76.378},{"x":1753105080546,"y":51.561},{"x":1753105022790,"y":53.647},{"x":1753104962593,"y":66.623},{"x":1753104902413,"y":58.287},{"x":1753104841851,"y":60.333},{"x":1753104781638,"y":62.341},{"x":1753104721458,"y":65.943},{"x":1753104661280,"y":63.84},{"x":1753104601608,"y":38.579},{"x":1753104540839,"y":23.168},{"x":1753104480683,"y":24.813},{"x":1753104420472,"y":37.139},{"x":1753104362960,"y":30.693},{"x":1753104302782,"y":26.527},{"x":1753104242216,"y":37.549},{"x":1753104182028,"y":31.93},{"x":1753104121772,"y":37.068},{"x":1753104061571,"y":38.126},{"x":1753104001399,"y":30.91},{"x":1753103940668,"y":30.244},{"x":1753103880525,"y":28.729},{"x":1753103820511,"y":25.496},{"x":1753103762929,"y":15.774},{"x":1753103702708,"y":12.397},{"x":1753103642068,"y":18.353},{"x":1753103581868,"y":15.177},{"x":1753103521660,"y":24.461},{"x":1753103461460,"y":17.667},{"x":1753103401280,"y":7.555},{"x":1753103340446,"y":15.641},{"x":1753103280120,"y":20.663},{"x":1753103222833,"y":27.545},{"x":1753103162532,"y":34.111},{"x":1753103102361,"y":18.454},{"x":1753103041788,"y":35.308},{"x":1753102981611,"y":51.945},{"x":1753102921410,"y":45.834},{"x":1753102861221,"y":55.781},{"x":1753102802503,"y":60.044},{"x":1753102740629,"y":55.165},{"x":1753102680440,"y":59.108},{"x":1753102620252,"y":56.585},{"x":1753102562931,"y":45.825},{"x":1753102502733,"y":49.06},{"x":1753102442169,"y":55.954},{"x":1753102381957,"y":32.915},{"x":1753102321768,"y":37.987},{"x":1753102261564,"y":36.914},{"x":1753102201360,"y":54.708},{"x":1753102140718,"y":43.229},{"x":1753102080552,"y":50.409},{"x":1753102020350,"y":57.273},{"x":1753101962976,"y":42.582},{"x":1753101902774,"y":45.307},{"x":1753101842195,"y":39.648},{"x":1753101781970,"y":46.738},{"x":1753101721778,"y":48.576},{"x":1753101661590,"y":39.414},{"x":1753101601386,"y":58.798},{"x":1753101540555,"y":58.479},{"x":1753101480337,"y":43.001},{"x":1753101422916,"y":39.652},{"x":1753101362726,"y":21.614},{"x":1753101302507,"y":51.849},{"x":1753101241892,"y":29.771},{"x":1753101181705,"y":43.443},{"x":1753101121533,"y":22.424},{"x":1753101061285,"y":26.883},{"x":1753101001622,"y":22.513},{"x":1753100940628,"y":18.3},{"x":1753100880361,"y":42.204},{"x":1753100822904,"y":40.009},{"x":1753100762719,"y":15.888},{"x":1753100702510,"y":45.852},{"x":1753100641943,"y":44.038},{"x":1753100581755,"y":25.251},{"x":1753100521562,"y":12.594},{"x":1753100461354,"y":28.795},{"x":1753100401165,"y":21.307},{"x":1753100340151,"y":22.003},{"x":1753100282850,"y":17.672},{"x":1753100222644,"y":28.537},{"x":1753100162433,"y":23.424},{"x":1753100102247,"y":19.51},{"x":1753100041682,"y":26.459},{"x":1753099982441,"y":39.643},{"x":1753099922249,"y":44.377},{"x":1753099862047,"y":30.924},{"x":1753099801843,"y":37.358},{"x":1753099740803,"y":45.743},{"x":1753099680637,"y":26.946},{"x":1753099620454,"y":36.492},{"x":1753099560205,"y":23.214},{"x":1753099502890,"y":16.934},{"x":1753099442306,"y":55.279},{"x":1753099382131,"y":40.009},{"x":1753099321952,"y":38.886},{"x":1753099261753,"y":39.947},{"x":1753099202590,"y":25.119},{"x":1753099140810,"y":12.204},{"x":1753099080661,"y":19.652},{"x":1753099020522,"y":36.437},{"x":1753098960318,"y":20.241},{"x":1753098903279,"y":37.244},{"x":1753098842648,"y":44.052},{"x":1753098782493,"y":67.521},{"x":1753098722297,"y":56.541},{"x":1753098662112,"y":40.227},{"x":1753098601891,"y":18.317},{"x":1753098541266,"y":43.862},{"x":1753098481093,"y":17.059},{"x":1753098420904,"y":21.417},{"x":1753098360731,"y":21.359},{"x":1753098301566,"y":21.935},{"x":1753098242901,"y":32.758},{"x":1753098182694,"y":34.524},{"x":1753098122515,"y":30.591},{"x":1753098062342,"y":25.155},{"x":1753098002178,"y":18.975},{"x":1753097941488,"y":30.582},{"x":1753097881304,"y":35.415},{"x":1753097821133,"y":40.549},{"x":1753097760935,"y":19.645},{"x":1753097701236,"y":38.928},{"x":1753097640437,"y":33.134},{"x":1753097580379,"y":32.312},{"x":1753097522894,"y":49.088},{"x":1753097462681,"y":33.046},{"x":1753097402423,"y":33.63},{"x":1753097341213,"y":32.328},{"x":1753097280992,"y":41.437},{"x":1753097220808,"y":36.416},{"x":1753097160645,"y":52.994},{"x":1753097103392,"y":58.482},{"x":1753097042640,"y":51.786},{"x":1753096982463,"y":52.828},{"x":1753096922281,"y":55.638},{"x":1753096862074,"y":44.279},{"x":1753096801873,"y":46.079},{"x":1753096741039,"y":45.595},{"x":1753096680864,"y":43.277},{"x":1753096620735,"y":44.659},{"x":1753096560597,"y":35.53},{"x":1753096503237,"y":47.546},{"x":1753096442378,"y":23.243},{"x":1753096382206,"y":18.977},{"x":1753096321998,"y":15.857},{"x":1753096261808,"y":52.561},{"x":1753096201624,"y":61.672},{"x":1753096140664,"y":45.723},{"x":1753096080561,"y":44.002},{"x":1753096020395,"y":48.82},{"x":1753095962971,"y":51.768},{"x":1753095902801,"y":44.569},{"x":1753095841982,"y":51.42},{"x":1753095781803,"y":90.693},{"x":1753095721629,"y":72.848},{"x":1753095661537,"y":69.248},{"x":1753095602839,"y":58.925},{"x":1753095541003,"y":36.686},{"x":1753095480825,"y":25.37},{"x":1753095420684,"y":42.205},{"x":1753095360648,"y":39.132},{"x":1753095303185,"y":25.019},{"x":1753095242369,"y":26.642},{"x":1753095182198,"y":67.29},{"x":1753095121989,"y":42.558},{"x":1753095061781,"y":51.605},{"x":1753095001585,"y":61.101},{"x":1753094940655,"y":63.37},{"x":1753094880536,"y":56.436},{"x":1753094822554,"y":60.201},{"x":1753094761379,"y":79.675},{"x":1753094701563,"y":102.125},{"x":1753094640725,"y":55.838},{"x":1753094580555,"y":31.491},{"x":1753094520334,"y":54.558},{"x":1753094462986,"y":64.629},{"x":1753094402809,"y":67.732},{"x":1753094342373,"y":54.938},{"x":1753094282187,"y":72.883},{"x":1753094221999,"y":66.578},{"x":1753094161814,"y":56.771},{"x":1753094101646,"y":44.81},{"x":1753094041146,"y":51.648},{"x":1753093980919,"y":45.868},{"x":1753093920787,"y":42.952},{"x":1753093860661,"y":55.085},{"x":1753093801529,"y":48.424},{"x":1753093742978,"y":70.995},{"x":1753093682801,"y":55.481},{"x":1753093622624,"y":69.324},{"x":1753093562406,"y":62.574},{"x":1753093502221,"y":63.416},{"x":1753093441769,"y":73.96},{"x":1753093381619,"y":78.789},{"x":1753093321421,"y":62.9},{"x":1753093261240,"y":51.681},{"x":1753093201072,"y":62.448},{"x":1753093142949,"y":36.032},{"x":1753093082783,"y":46.885},{"x":1753093022603,"y":45.243},{"x":1753092962417,"y":30.951},{"x":1753092902242,"y":40.488},{"x":1753092841768,"y":51.686},{"x":1753092781600,"y":46.28},{"x":1753092721421,"y":27.294},{"x":1753092661254,"y":40.384},{"x":1753092601085,"y":46.061},{"x":1753092540360,"y":52.261},{"x":1753092482926,"y":53.746},{"x":1753092422747,"y":55.338},{"x":1753092362560,"y":62.138},{"x":1753092302381,"y":50.57},{"x":1753092241912,"y":55.379},{"x":1753092181766,"y":54.562},{"x":1753092121567,"y":49.063},{"x":1753092061414,"y":59.64},{"x":1753092002327,"y":77.064},{"x":1753091940771,"y":63.866},{"x":1753091880769,"y":63.663},{"x":1753091820431,"y":57.033},{"x":1753091763060,"y":47.122},{"x":1753091702838,"y":43.379},{"x":1753091642334,"y":39.431},{"x":1753091582143,"y":48.928},{"x":1753091521953,"y":52.071},{"x":1753091461775,"y":60.757},{"x":1753091401611,"y":60.163},{"x":1753091341141,"y":75.247},{"x":1753091280954,"y":70.593},{"x":1753091220749,"y":61.239},{"x":1753091160606,"y":55.149},{"x":1753091101275,"y":65.618},{"x":1753091042917,"y":60.744},{"x":1753090982738,"y":52.784},{"x":1753090922562,"y":46.865},{"x":1753090862392,"y":36.497},{"x":1753090802205,"y":39.097},{"x":1753090741742,"y":31.561},{"x":1753090681595,"y":37.759},{"x":1753090621399,"y":39.708},{"x":1753090561228,"y":46.882},{"x":1753090501029,"y":42.007},{"x":1753090440314,"y":52.603},{"x":1753090382928,"y":53.142},{"x":1753090322731,"y":62.982},{"x":1753090262539,"y":56.614},{"x":1753090202353,"y":63.697},{"x":1753090141834,"y":72.233},{"x":1753090081647,"y":60.013},{"x":1753090021457,"y":53.432},{"x":1753089961301,"y":52.44},{"x":1753089901123,"y":61.791},{"x":1753089781386,"y":53.73},{"x":1753089721117,"y":47.366},{"x":1753089660939,"y":45.068},{"x":1753089601255,"y":44.028},{"x":1753089540173,"y":53.472},{"x":1753089482868,"y":46.519},{"x":1753089422690,"y":38.746},{"x":1753089362511,"y":37.62},{"x":1753089302330,"y":33.124},{"x":1753089241900,"y":33.267},{"x":1753089181680,"y":25.721},{"x":1753089121490,"y":31.208},{"x":1753089061319,"y":31.492},{"x":1753089001175,"y":39.002},{"x":1753088940539,"y":52.491},{"x":1753088883031,"y":53.289},{"x":1753088822844,"y":44.195},{"x":1753088762676,"y":44.517},{"x":1753088702488,"y":66.514},{"x":1753088642048,"y":48.454},{"x":1753088581878,"y":57.091},{"x":1753088521714,"y":56.21},{"x":1753088461541,"y":72.189},{"x":1753088402100,"y":60.747},{"x":1753088340771,"y":37.728},{"x":1753088280621,"y":41.301},{"x":1753088220504,"y":26.957},{"x":1753088160289,"y":35.723},{"x":1753088102923,"y":33.676},{"x":1753088042414,"y":36.635},{"x":1753087982246,"y":48.369},{"x":1753087922073,"y":52.016},{"x":1753087861900,"y":56.279},{"x":1753087801704,"y":45.362},{"x":1753087741250,"y":47.441},{"x":1753087681027,"y":51.317},{"x":1753087620823,"y":64.225},{"x":1753087560665,"y":67.557},{"x":1753087501447,"y":68.032},{"x":1753087442869,"y":42.283},{"x":1753087382720,"y":39.7},{"x":1753087322536,"y":61.34},{"x":1753087262365,"y":53.266},{"x":1753087202205,"y":49.69},{"x":1753087141762,"y":53.405},{"x":1753087081565,"y":52.45},{"x":1753087021365,"y":58.364},{"x":1753086961195,"y":69.384},{"x":1753086901016,"y":47.873},{"x":1753086840378,"y":61.871},{"x":1753086783032,"y":60.283},{"x":1753086722856,"y":48.949},{"x":1753086662687,"y":41.827},{"x":1753086602509,"y":47.481},{"x":1753086542101,"y":31.227},{"x":1753086481822,"y":41.739},{"x":1753086421642,"y":55.642},{"x":1753086361438,"y":60.267},{"x":1753086301272,"y":50.612},{"x":1753086240777,"y":48.511},{"x":1753086180594,"y":57.898},{"x":1753086120383,"y":53.933},{"x":1753086062987,"y":31.252},{"x":1753086002810,"y":33.086},{"x":1753085942383,"y":43.906},{"x":1753085882212,"y":59.475},{"x":1753085822031,"y":49.693},{"x":1753085761831,"y":47.745},{"x":1753085701651,"y":52.178},{"x":1753085641106,"y":58.647},{"x":1753085580918,"y":42.553},{"x":1753085520784,"y":38.471},{"x":1753085460613,"y":39.631},{"x":1753085400202,"y":36.804},{"x":1753085342866,"y":50.758},{"x":1753085282684,"y":30.353},{"x":1753085222500,"y":52.637},{"x":1753085162320,"y":35.908},{"x":1753085102156,"y":33.632},{"x":1753085041637,"y":63.151},{"x":1753084981468,"y":63.648},{"x":1753084921291,"y":66.186},{"x":1753084861109,"y":67.839},{"x":1753084802290,"y":74.324},{"x":1753084740659,"y":63.556},{"x":1753084680533,"y":49.857},{"x":1753084620330,"y":60.498},{"x":1753084562945,"y":42.004},{"x":1753084502769,"y":64.146},{"x":1753084442330,"y":80.414},{"x":1753084382168,"y":61.925},{"x":1753084321964,"y":62.784},{"x":1753084261783,"y":57.97},{"x":1753084201600,"y":49.784},{"x":1753084141152,"y":41.695},{"x":1753084080940,"y":54.307},{"x":1753084020759,"y":53.337},{"x":1753083960589,"y":60.394},{"x":1753083901433,"y":54.284},{"x":1753083842974,"y":56.832},{"x":1753083782776,"y":54.511},{"x":1753083722592,"y":52.298},{"x":1753083662422,"y":37.217},{"x":1753083602245,"y":46.511},{"x":1753083541797,"y":40.442},{"x":1753083481583,"y":40.273},{"x":1753083421410,"y":38.544},{"x":1753083361225,"y":46.735},{"x":1753083301065,"y":42.071},{"x":1753083240500,"y":43.414},{"x":1753083182981,"y":40.934},{"x":1753083122807,"y":31.343},{"x":1753083062592,"y":29.842},{"x":1753083002388,"y":34.096},{"x":1753082941860,"y":33.468},{"x":1753082881654,"y":38.777},{"x":1753082821457,"y":38.125},{"x":1753082761269,"y":51.211},{"x":1753082701082,"y":41.86},{"x":1753082640555,"y":43.537},{"x":1753082580304,"y":45.573},{"x":1753082523024,"y":46.335},{"x":1753082462847,"y":57.202},{"x":1753082402673,"y":64.677},{"x":1753082342201,"y":53.841},{"x":1753082282020,"y":50.327},{"x":1753082221843,"y":44.657},{"x":1753082161660,"y":31.304},{"x":1753082101517,"y":42.568},{"x":1753082040947,"y":40.822},{"x":1753081980778,"y":42.42},{"x":1753081920694,"y":45.703},{"x":1753081860484,"y":41.95},{"x":1753081803158,"y":52.13},{"x":1753081742690,"y":41.75},{"x":1753081682541,"y":38.633},{"x":1753081622375,"y":42.779},{"x":1753081562216,"y":41.619},{"x":1753081502048,"y":36.635},{"x":1753081441609,"y":36.06},{"x":1753081381445,"y":40.879},{"x":1753081321272,"y":35.857},{"x":1753081261092,"y":36.897},{"x":1753081202487,"y":36.775},{"x":1753081140529,"y":47.503},{"x":1753081080442,"y":45.919},{"x":1753081022980,"y":45.482},{"x":1753080962813,"y":47.63},{"x":1753080902655,"y":44.877},{"x":1753080842227,"y":39.794},{"x":1753080782073,"y":49.172},{"x":1753080721886,"y":43.638},{"x":1753080661713,"y":39.502},{"x":1753080601550,"y":37.601},{"x":1753080541089,"y":40.275},{"x":1753080480922,"y":41.136},{"x":1753080420737,"y":28.853},{"x":1753080360619,"y":22.086},{"x":1753080301053,"y":34.553},{"x":1753080242909,"y":28.709},{"x":1753080182736,"y":27.138},{"x":1753080122586,"y":38.289},{"x":1753080062385,"y":29.538},{"x":1753080002389,"y":27.021},{"x":1753079941886,"y":39.885},{"x":1753079881722,"y":32.604},{"x":1753079821546,"y":31.749},{"x":1753079761389,"y":38.588},{"x":1753079701219,"y":34.136},{"x":1753079640312,"y":36.693},{"x":1753079582974,"y":34.101},{"x":1753079522790,"y":42.077},{"x":1753079462618,"y":24.472},{"x":1753079402448,"y":32.02},{"x":1753079342019,"y":28.43},{"x":1753079281811,"y":41.565},{"x":1753079221649,"y":42.526},{"x":1753079161459,"y":44.156},{"x":1753079101496,"y":33.361},{"x":1753079041034,"y":35.972},{"x":1753078980893,"y":36.139},{"x":1753078920699,"y":51.845},{"x":1753078860546,"y":44.697},{"x":1753078803255,"y":54.625},{"x":1753078742800,"y":40.984},{"x":1753078682634,"y":46.412},{"x":1753078622468,"y":36.813},{"x":1753078562295,"y":26.68},{"x":1753078502139,"y":39.895},{"x":1753078441678,"y":44.168},{"x":1753078381506,"y":36.753},{"x":1753078321319,"y":40.191},{"x":1753078261152,"y":46.33},{"x":1753078200972,"y":45.489},{"x":1753078142956,"y":40.4},{"x":1753078082782,"y":38.159},{"x":1753078022603,"y":26.844},{"x":1753077962434,"y":30.37},{"x":1753077902278,"y":31.215},{"x":1753077841776,"y":36.701},{"x":1753077781624,"y":39.662},{"x":1753077721455,"y":41.91},{"x":1753077661282,"y":40.937},{"x":1753077602328,"y":44.826},{"x":1753077540550,"y":53.219},{"x":1753077480349,"y":47.49},{"x":1753077422963,"y":71.898},{"x":1753077362813,"y":78.528},{"x":1753077302646,"y":74.286},{"x":1753077242186,"y":55.338},{"x":1753077181998,"y":58.563},{"x":1753077121829,"y":55.398},{"x":1753077061655,"y":51.426},{"x":1753077001492,"y":40.018},{"x":1753076941028,"y":55.706},{"x":1753076880857,"y":56.812},{"x":1753076820686,"y":56.378},{"x":1753076760625,"y":54.024},{"x":1753076703290,"y":62.283},{"x":1753076642796,"y":61.155},{"x":1753076582621,"y":63.873},{"x":1753076522462,"y":64.887},{"x":1753076462299,"y":71.112},{"x":1753076402140,"y":59.25},{"x":1753076341693,"y":55.077},{"x":1753076281517,"y":61.512},{"x":1753076221355,"y":64.479},{"x":1753076161159,"y":63.132},{"x":1753076100949,"y":53.014},{"x":1753076042876,"y":52.452},{"x":1753075982717,"y":46.824},{"x":1753075922539,"y":48.27},{"x":1753075862350,"y":47.336},{"x":1753075802141,"y":57.885},{"x":1753075741627,"y":57.033},{"x":1753075681433,"y":57.645},{"x":1753075621253,"y":60.855},{"x":1753075561087,"y":61.644},{"x":1753075500921,"y":72.021},{"x":1753075443016,"y":73.209},{"x":1753075382842,"y":68.01},{"x":1753075322683,"y":68.931},{"x":1753075262514,"y":63.999},{"x":1753075202351,"y":43.748},{"x":1753075141874,"y":48.81},{"x":1753075081700,"y":48.536},{"x":1753075021537,"y":51.426},{"x":1753074961280,"y":43.748},{"x":1753074901326,"y":60.144},{"x":1753074840568,"y":70.5},{"x":1753074780427,"y":74.424},{"x":1753074722973,"y":80.583},{"x":1753074662803,"y":85.053},{"x":1753074602638,"y":74.337},{"x":1753074542209,"y":67.746},{"x":1753074482033,"y":64.317},{"x":1753074421859,"y":69.324},{"x":1753074361717,"y":54.982},{"x":1753074301530,"y":55.52},{"x":1753074241079,"y":50.328},{"x":1753074180912,"y":50.04},{"x":1753074120742,"y":50.294},{"x":1753074060633,"y":62.346},{"x":1753074002312,"y":65.184},{"x":1753073942883,"y":111.792},{"x":1753073882717,"y":106.689},{"x":1753073822554,"y":112.428},{"x":1753073762401,"y":109.143},{"x":1753073702221,"y":95.826},{"x":1753073641780,"y":64.53},{"x":1753073581614,"y":65.364},{"x":1753073521434,"y":73.164},{"x":1753073461263,"y":66.216},{"x":1753073401089,"y":51.8},{"x":1753073340463,"y":50.912},{"x":1753073283017,"y":50.67},{"x":1753073222843,"y":56.83},{"x":1753073162681,"y":52.648},{"x":1753073102481,"y":74.517},{"x":1753073042061,"y":76.767},{"x":1753072981863,"y":68.064},{"x":1753072921700,"y":67.032},{"x":1753072861531,"y":81.429},{"x":1753072801355,"y":64.251},{"x":1753072740656,"y":61.722},{"x":1753072680514,"y":59.568},{"x":1753072620376,"y":58.707},{"x":1753072563005,"y":58.659},{"x":1753072502836,"y":50.402},{"x":1753072442396,"y":57.762},{"x":1753072382234,"y":56.584},{"x":1753072322069,"y":60.116},{"x":1753072261911,"y":54.688},{"x":1753072201744,"y":69.162},{"x":1753072141061,"y":65.859},{"x":1753072080862,"y":63.138},{"x":1753072020711,"y":63.123},{"x":1753071960553,"y":20.992},{"x":1753071903344,"y":31.409},{"x":1753071842861,"y":31.048},{"x":1753071782695,"y":28.912},{"x":1753071722521,"y":28.712},{"x":1753071662361,"y":44.75},{"x":1753071602165,"y":36.076},{"x":1753071541703,"y":35.874},{"x":1753071481552,"y":37.737},{"x":1753071421370,"y":33.933},{"x":1753071361199,"y":33.692},{"x":1753071301230,"y":39.411},{"x":1753071240595,"y":38.35},{"x":1753071180455,"y":43.325},{"x":1753071120153,"y":37.142},{"x":1753071062900,"y":39.796},{"x":1753071002731,"y":39.221},{"x":1753070942299,"y":39.387},{"x":1753070882183,"y":34.289},{"x":1753070821961,"y":34.861},{"x":1753070761801,"y":34.435},{"x":1753070701626,"y":33.539},{"x":1753070641170,"y":39.529},{"x":1753070581044,"y":35.525},{"x":1753070520824,"y":41.304},{"x":1753070460659,"y":47.047},{"x":1753070403357,"y":40.306},{"x":1753070342734,"y":38.998},{"x":1753070282572,"y":40.794},{"x":1753070222397,"y":37.899},{"x":1753070162233,"y":38.582},{"x":1753070102067,"y":37.997},{"x":1753070041633,"y":37.655},{"x":1753069981451,"y":42.632},{"x":1753069921292,"y":37.437},{"x":1753069861117,"y":43.491},{"x":1753069800932,"y":50.437},{"x":1753069742993,"y":46.008},{"x":1753069682825,"y":39.746},{"x":1753069622664,"y":46.163},{"x":1753069562506,"y":28.474},{"x":1753069502335,"y":29.839},{"x":1753069441856,"y":31.318},{"x":1753069381682,"y":30.865},{"x":1753069321522,"y":36.196},{"x":1753069261362,"y":32.114},{"x":1753069201211,"y":33.498},{"x":1753069142970,"y":35.56},{"x":1753069082807,"y":32.526},{"x":1753069022644,"y":34.384},{"x":1753068962450,"y":30.447},{"x":1753068902289,"y":29.49},{"x":1753068841836,"y":29.783},{"x":1753068781666,"y":28.667},{"x":1753068721501,"y":29.073},{"x":1753068661293,"y":32.775},{"x":1753068601204,"y":35.565},{"x":1753068540535,"y":35.759},{"x":1753068482975,"y":30.454},{"x":1753068422809,"y":28.732},{"x":1753068362656,"y":30.576},{"x":1753068302477,"y":33.529},{"x":1753068242047,"y":29.762},{"x":1753068181880,"y":32.357},{"x":1753068121700,"y":30.8},{"x":1753068061530,"y":30.085},{"x":1753068001359,"y":37.084},{"x":1753067940797,"y":34.925},{"x":1753067880638,"y":30.459},{"x":1753067820616,"y":29.134},{"x":1753067760327,"y":31.577},{"x":1753067702906,"y":29.784},{"x":1753067642464,"y":33.546},{"x":1753067582317,"y":28.5},{"x":1753067522138,"y":29.686},{"x":1753067461952,"y":35.207},{"x":1753067401781,"y":33.043},{"x":1753067341334,"y":36.378},{"x":1753067281156,"y":38.607},{"x":1753067220980,"y":35.643},{"x":1753067160821,"y":34.054},{"x":1753067103788,"y":37.047},{"x":1753067042456,"y":32.511},{"x":1753066982926,"y":30.732},{"x":1753066922723,"y":32.286},{"x":1753066862461,"y":29.719},{"x":1753066803861,"y":33.397},{"x":1753066742813,"y":28.972},{"x":1753066682647,"y":29.415},{"x":1753066622473,"y":33.12},{"x":1753066562309,"y":32.37},{"x":1753066502143,"y":32.275},{"x":1753066441697,"y":32.975},{"x":1753066381541,"y":31.062},{"x":1753066321385,"y":33.253},{"x":1753066261224,"y":33.648},{"x":1753066201047,"y":29.49},{"x":1753066143021,"y":29.91},{"x":1753066082860,"y":29.558},{"x":1753066022696,"y":30.494},{"x":1753065962523,"y":30.884},{"x":1753065902353,"y":34.323},{"x":1753065841889,"y":43.588},{"x":1753065781730,"y":32.444},{"x":1753065721567,"y":34.358},{"x":1753065661393,"y":35.744},{"x":1753065601227,"y":39.581},{"x":1753065540633,"y":36.454},{"x":1753065480449,"y":35.007},{"x":1753065420305,"y":33.894},{"x":1753065362943,"y":36.036},{"x":1753065302786,"y":40.174},{"x":1753065242269,"y":42.396},{"x":1753065182101,"y":39.127},{"x":1753065121929,"y":43.421},{"x":1753065061755,"y":42.812},{"x":1753065001626,"y":35.759},{"x":1753064941028,"y":34.998},{"x":1753064880830,"y":33.899},{"x":1753064820646,"y":33.492},{"x":1753064760474,"y":32.154},{"x":1753064703232,"y":36.089},{"x":1753064642788,"y":34.196},{"x":1753064582627,"y":32.917},{"x":1753064522467,"y":40.631},{"x":1753064462307,"y":29.822},{"x":1753064402151,"y":31.485},{"x":1753064341707,"y":33.452},{"x":1753064281527,"y":33.761},{"x":1753064221367,"y":33.837},{"x":1753064161202,"y":37.39},{"x":1753064101167,"y":33.649},{"x":1753064040444,"y":33.547},{"x":1753063980342,"y":31.135},{"x":1753063922984,"y":30.325},{"x":1753063862824,"y":31.679},{"x":1753063802734,"y":32.629},{"x":1753063742290,"y":33.436},{"x":1753063682132,"y":29.439},{"x":1753063621945,"y":32.119},{"x":1753063561776,"y":36.377},{"x":1753063501611,"y":37.105},{"x":1753063441159,"y":33.729},{"x":1753063380979,"y":33.194},{"x":1753063320802,"y":31.159},{"x":1753063260686,"y":34.009},{"x":1753063202140,"y":31.209},{"x":1753063140192,"y":34.531},{"x":1753063082866,"y":30.707},{"x":1753063022709,"y":30.586},{"x":1753062962523,"y":33.633},{"x":1753062902546,"y":29.639},{"x":1753062842103,"y":35.841},{"x":1753062781925,"y":32.305},{"x":1753062721764,"y":33.79},{"x":1753062661600,"y":29.197},{"x":1753062601440,"y":36.485},{"x":1753062540897,"y":39.332},{"x":1753062480786,"y":39.56},{"x":1753062420606,"y":36.374},{"x":1753062360482,"y":41.505},{"x":1753062301417,"y":36.48},{"x":1753062242910,"y":31.908},{"x":1753062182747,"y":34.225},{"x":1753062122574,"y":31.01},{"x":1753062062399,"y":28.884},{"x":1753062002230,"y":33.816},{"x":1753061941756,"y":30.84},{"x":1753061881603,"y":39.517},{"x":1753061821414,"y":41.787},{"x":1753061761237,"y":33.86},{"x":1753061701063,"y":33.452},{"x":1753061643021,"y":31.455},{"x":1753061582860,"y":32.526},{"x":1753061522685,"y":30.501},{"x":1753061462512,"y":36.887},{"x":1753061402288,"y":32.983},{"x":1753061341754,"y":31.279},{"x":1753061281552,"y":31.573},{"x":1753061221362,"y":31.959},{"x":1753061161213,"y":31.929},{"x":1753061101031,"y":28.821},{"x":1753061042935,"y":37.791},{"x":1753060982742,"y":31.391},{"x":1753060922572,"y":30.561},{"x":1753060862397,"y":31.382},{"x":1753060802241,"y":36.736},{"x":1753060741766,"y":29.344},{"x":1753060681603,"y":29.611},{"x":1753060621417,"y":32.117},{"x":1753060561234,"y":29.371},{"x":1753060501261,"y":30.404},{"x":1753060440706,"y":31.735},{"x":1753060380574,"y":31.449},{"x":1753060320570,"y":30.315},{"x":1753060262956,"y":31.11},{"x":1753060202782,"y":34.685},{"x":1753060142341,"y":33.505},{"x":1753060082148,"y":30.316},{"x":1753060021971,"y":34.566},{"x":1753059961809,"y":30.732},{"x":1753059901635,"y":32.592},{"x":1753059841177,"y":31.484},{"x":1753059780981,"y":33.356},{"x":1753059720778,"y":31.055},{"x":1753059660643,"y":32.198},{"x":1753059603398,"y":32.031},{"x":1753059542827,"y":30.353},{"x":1753059482670,"y":30.339},{"x":1753059422513,"y":34.044},{"x":1753059362347,"y":31.828},{"x":1753059302191,"y":33.77},{"x":1753059241725,"y":37.774},{"x":1753059181539,"y":32.628},{"x":1753059121364,"y":36.362},{"x":1753059061199,"y":32.365},{"x":1753059001021,"y":30.231},{"x":1753058940469,"y":28.601},{"x":1753058880497,"y":35.806},{"x":1753058822910,"y":36.577},{"x":1753058762742,"y":33.852},{"x":1753058702577,"y":34.425},{"x":1753058642126,"y":37.155},{"x":1753058581956,"y":34.891},{"x":1753058521784,"y":35.03},{"x":1753058461667,"y":40.018},{"x":1753058401462,"y":33.136},{"x":1753058340946,"y":31.687},{"x":1753058280775,"y":33.757},{"x":1753058220675,"y":32.862},{"x":1753058160712,"y":32.32},{"x":1753058103230,"y":32.982},{"x":1753058042778,"y":39.887},{"x":1753057982627,"y":35.401},{"x":1753057922468,"y":33.813},{"x":1753057862300,"y":31.942},{"x":1753057802144,"y":37.59},{"x":1753057741681,"y":33.566},{"x":1753057681482,"y":33.13},{"x":1753057621305,"y":33.095},{"x":1753057561131,"y":31.797},{"x":1753057500940,"y":31.28},{"x":1753057442914,"y":35.17},{"x":1753057382751,"y":31.919},{"x":1753057322589,"y":32.947},{"x":1753057262417,"y":38.982},{"x":1753057202262,"y":34.009},{"x":1753057141799,"y":38.179},{"x":1753057081627,"y":32.886},{"x":1753057021463,"y":31.367},{"x":1753056961314,"y":31.9},{"x":1753056901546,"y":31.707},{"x":1753056840897,"y":34.07},{"x":1753056780741,"y":28.538},{"x":1753056720618,"y":29.526},{"x":1753056660420,"y":33.096},{"x":1753056603267,"y":29.028},{"x":1753056542668,"y":32.469},{"x":1753056482501,"y":35.187},{"x":1753056422338,"y":31.246},{"x":1753056362174,"y":30.943},{"x":1753056302011,"y":34.55},{"x":1753056241509,"y":34.722},{"x":1753056181366,"y":33.484},{"x":1753056121165,"y":33.364},{"x":1753056060957,"y":34.919},{"x":1753056002053,"y":28.808},{"x":1753055940511,"y":29.558},{"x":1753055880539,"y":29.821},{"x":1753055822947,"y":39.969},{"x":1753055762783,"y":31.527},{"x":1753055702608,"y":30.18},{"x":1753055642138,"y":35.274},{"x":1753055581968,"y":32.179},{"x":1753055521800,"y":33.094},{"x":1753055461628,"y":34.469},{"x":1753055401458,"y":35.233},{"x":1753055340959,"y":32.424},{"x":1753055280810,"y":32.304},{"x":1753055220656,"y":28.623},{"x":1753055160539,"y":31.511},{"x":1753055103287,"y":32.783},{"x":1753055042830,"y":34.414},{"x":1753054982668,"y":33.995},{"x":1753054922491,"y":32.997},{"x":1753054862327,"y":31.755},{"x":1753054802157,"y":36.998},{"x":1753054741708,"y":36.683},{"x":1753054681542,"y":33.438},{"x":1753054621367,"y":32.359},{"x":1753054561213,"y":32.31},{"x":1753054501043,"y":35.47},{"x":1753054440336,"y":37.192},{"x":1753054383003,"y":33.094},{"x":1753054322849,"y":35.448},{"x":1753054262668,"y":37.273},{"x":1753054202430,"y":33.636},{"x":1753054141831,"y":29.801},{"x":1753054081554,"y":31.862},{"x":1753054021381,"y":33.12},{"x":1753053961176,"y":33.875},{"x":1753053901011,"y":34.936},{"x":1753053842976,"y":33.671},{"x":1753053782813,"y":37.477},{"x":1753053722645,"y":37.88},{"x":1753053662485,"y":35.666},{"x":1753053602305,"y":38.42},{"x":1753053541780,"y":40.881},{"x":1753053481605,"y":34.997},{"x":1753053421441,"y":35.923},{"x":1753053361274,"y":37.087},{"x":1753053301232,"y":33.453},{"x":1753053240625,"y":32.988},{"x":1753053180528,"y":32.825},{"x":1753053120351,"y":38.154},{"x":1753053062974,"y":36.276},{"x":1753053002790,"y":37.37},{"x":1753052942359,"y":31.938},{"x":1753052882174,"y":38.516},{"x":1753052821978,"y":36.634},{"x":1753052761816,"y":37.339},{"x":1753052701653,"y":37.907},{"x":1753052641212,"y":41.186},{"x":1753052581020,"y":38.231},{"x":1753052520825,"y":36.834},{"x":1753052460686,"y":33.277},{"x":1753052400268,"y":33.388},{"x":1753052342866,"y":29.905},{"x":1753052282702,"y":34.048},{"x":1753052222538,"y":31.131},{"x":1753052162380,"y":31.366},{"x":1753052102208,"y":36.996},{"x":1753052041739,"y":36.672},{"x":1753051981577,"y":35.689},{"x":1753051921438,"y":34.525},{"x":1753051861230,"y":38.798},{"x":1753051801033,"y":34.4},{"x":1753051740193,"y":34.196},{"x":1753051682877,"y":33.477},{"x":1753051622721,"y":32.709},{"x":1753051562552,"y":43.351},{"x":1753051502371,"y":37.076},{"x":1753051441916,"y":41.297},{"x":1753051381764,"y":39.342},{"x":1753051321592,"y":37.513},{"x":1753051261413,"y":42.807},{"x":1753051201249,"y":43.526},{"x":1753051140644,"y":41.956},{"x":1753051080582,"y":43.242},{"x":1753051020338,"y":39.95},{"x":1753050962993,"y":36.404},{"x":1753050902836,"y":41.032},{"x":1753050842409,"y":33.206},{"x":1753050782223,"y":42.613},{"x":1753050722033,"y":35.395},{"x":1753050661864,"y":36.426},{"x":1753050601676,"y":39.428},{"x":1753050541012,"y":38.777},{"x":1753050480830,"y":34.794},{"x":1753050420662,"y":42.378},{"x":1753050360497,"y":42.304},{"x":1753050303283,"y":41.77},{"x":1753050242846,"y":40.252},{"x":1753050182681,"y":37.822},{"x":1753050122498,"y":38.415},{"x":1753050062340,"y":38.504},{"x":1753050002169,"y":35.191},{"x":1753049941709,"y":39.02},{"x":1753049881539,"y":48.251},{"x":1753049821367,"y":37.055},{"x":1753049761194,"y":34.549},{"x":1753049701317,"y":45.207},{"x":1753049640787,"y":53.423},{"x":1753049580627,"y":45.969},{"x":1753049520458,"y":46.741},{"x":1753049460297,"y":48.085},{"x":1753049402970,"y":42.803},{"x":1753049342547,"y":35.685},{"x":1753049282379,"y":36.85},{"x":1753049222224,"y":41.447},{"x":1753049161954,"y":42.089},{"x":1753049101788,"y":40.239},{"x":1753049041369,"y":55.152},{"x":1753048981201,"y":44.52},{"x":1753048921039,"y":44.55},{"x":1753048860861,"y":38.588},{"x":1753048802228,"y":36.964},{"x":1753048740508,"y":34.337},{"x":1753048680291,"y":42.127},{"x":1753048622966,"y":37.366},{"x":1753048562800,"y":37.73},{"x":1753048502627,"y":38.814},{"x":1753048442195,"y":38.072},{"x":1753048382035,"y":43.192},{"x":1753048321826,"y":38.122},{"x":1753048261647,"y":37.547},{"x":1753048201481,"y":38.843},{"x":1753048141014,"y":38.341},{"x":1753048080849,"y":37.07},{"x":1753048020690,"y":40.355},{"x":1753047960529,"y":37.844},{"x":1753047903285,"y":38.463},{"x":1753047842815,"y":39.359},{"x":1753047782637,"y":38.832},{"x":1753047722470,"y":40.831},{"x":1753047662302,"y":37.668},{"x":1753047602144,"y":44.866},{"x":1753047541646,"y":40.259},{"x":1753047481479,"y":38.919},{"x":1753047421289,"y":39.371},{"x":1753047361120,"y":39.803},{"x":1753047300944,"y":39.43},{"x":1753047240344,"y":39.028},{"x":1753047182938,"y":40.754},{"x":1753047122774,"y":43.641},{"x":1753047062609,"y":44.572},{"x":1753047002394,"y":42.824},{"x":1753046941742,"y":39.119},{"x":1753046881516,"y":38.863},{"x":1753046821345,"y":56.014},{"x":1753046761167,"y":49.305},{"x":1753046700989,"y":40.676},{"x":1753046640408,"y":42.027},{"x":1753046580133,"y":43.961},{"x":1753046522877,"y":42.961},{"x":1753046462703,"y":54.565},{"x":1753046402530,"y":38.741},{"x":1753046342101,"y":38.206},{"x":1753046281935,"y":41.868},{"x":1753046221746,"y":39.502},{"x":1753046161567,"y":43.015},{"x":1753046101409,"y":50.222},{"x":1753046040895,"y":36.25},{"x":1753045980725,"y":39.164},{"x":1753045920608,"y":47.784},{"x":1753045860411,"y":39.737},{"x":1753045803115,"y":38.548},{"x":1753045742683,"y":37.428},{"x":1753045682524,"y":34.993},{"x":1753045622356,"y":50.119},{"x":1753045562147,"y":39.131},{"x":1753045501963,"y":40.224},{"x":1753045441498,"y":42.31},{"x":1753045381329,"y":42.351},{"x":1753045321148,"y":48.568},{"x":1753045260930,"y":46.81},{"x":1753045202285,"y":56.515},{"x":1753045142875,"y":56.939},{"x":1753045082700,"y":54.985},{"x":1753045022548,"y":45.5},{"x":1753044962400,"y":53.105},{"x":1753044902213,"y":50.718},{"x":1753044841780,"y":46.8},{"x":1753044781603,"y":45.287},{"x":1753044721438,"y":52.966},{"x":1753044661278,"y":50.707},{"x":1753044601135,"y":37.868},{"x":1753044540461,"y":39.849},{"x":1753044480310,"y":37.981},{"x":1753044422927,"y":39.78},{"x":1753044362748,"y":47.119},{"x":1753044302578,"y":49.196},{"x":1753044242133,"y":46.599},{"x":1753044181948,"y":47.638},{"x":1753044121781,"y":44.368},{"x":1753044061614,"y":46.182},{"x":1753044001444,"y":42.885},{"x":1753043940778,"y":39.385},{"x":1753043880609,"y":41.367},{"x":1753043820483,"y":42.228},{"x":1753043760349,"y":45.892},{"x":1753043702983,"y":38.85},{"x":1753043642556,"y":47.6},{"x":1753043582395,"y":53.033},{"x":1753043522235,"y":47.493},{"x":1753043462064,"y":54.423},{"x":1753043401851,"y":63.426},{"x":1753043341120,"y":55.252},{"x":1753043280889,"y":55.116},{"x":1753043220725,"y":60.904},{"x":1753043160575,"y":44.182},{"x":1753043103324,"y":45.664},{"x":1753043042839,"y":46.182},{"x":1753042982654,"y":51.203},{"x":1753042922489,"y":43.534},{"x":1753042862331,"y":42.868},{"x":1753042802167,"y":49.196},{"x":1753042741728,"y":45.411},{"x":1753042681570,"y":51.023},{"x":1753042621391,"y":47.358},{"x":1753042561213,"y":46.091},{"x":1753042501409,"y":49.041},{"x":1753042440832,"y":51.186},{"x":1753042380666,"y":52.541},{"x":1753042320490,"y":54.469},{"x":1753042260304,"y":65.928},{"x":1753042202920,"y":63.672},{"x":1753042142488,"y":76.832},{"x":1753042082311,"y":66.488},{"x":1753042022154,"y":55.758},{"x":1753041961983,"y":59.147},{"x":1753041901823,"y":44.425},{"x":1753041841420,"y":44.633},{"x":1753041781221,"y":56.956},{"x":1753041721037,"y":72.703},{"x":1753041660865,"y":56.265},{"x":1753041601902,"y":58.233},{"x":1753041540524,"y":49.6},{"x":1753041480401,"y":64.854},{"x":1753041423010,"y":45.68},{"x":1753041362810,"y":56.851},{"x":1753041302642,"y":57.052},{"x":1753041242205,"y":49.932},{"x":1753041182043,"y":47.077},{"x":1753041121870,"y":48.124},{"x":1753041061702,"y":55.982},{"x":1753041001520,"y":46.558},{"x":1753040941019,"y":46.527},{"x":1753040880839,"y":48.339},{"x":1753040820666,"y":46.558},{"x":1753040760422,"y":42.304},{"x":1753040703222,"y":45.103},{"x":1753040642765,"y":44.086},{"x":1753040582601,"y":43.674},{"x":1753040522432,"y":43.062},{"x":1753040462283,"y":44.48},{"x":1753040402111,"y":47.627},{"x":1753040341647,"y":46.719},{"x":1753040281460,"y":55.92},{"x":1753040221294,"y":69.555},{"x":1753040161139,"y":65.875},{"x":1753040100943,"y":61.473},{"x":1753040042933,"y":57.55},{"x":1753039982758,"y":51.584},{"x":1753039922598,"y":37.927},{"x":1753039862423,"y":35.466},{"x":1753039802187,"y":43.231},{"x":1753039741682,"y":51.531},{"x":1753039681446,"y":45.002},{"x":1753039621268,"y":43.86},{"x":1753039561101,"y":52.77},{"x":1753039500893,"y":56.707},{"x":1753039442996,"y":56.782},{"x":1753039382801,"y":52.51},{"x":1753039322624,"y":48.262},{"x":1753039262457,"y":40.443},{"x":1753039202267,"y":44.82},{"x":1753039141830,"y":45.907},{"x":1753039081675,"y":40.888},{"x":1753039021496,"y":47.438},{"x":1753038961325,"y":43.309},{"x":1753038901349,"y":55.518},{"x":1753038840613,"y":60.515},{"x":1753038780358,"y":59.546},{"x":1753038722972,"y":57.944},{"x":1753038662809,"y":48.322},{"x":1753038602646,"y":46.159},{"x":1753038542214,"y":42.276},{"x":1753038482051,"y":43.821},{"x":1753038421865,"y":47.098},{"x":1753038361701,"y":52.045},{"x":1753038301540,"y":46.336},{"x":1753038241070,"y":47.679},{"x":1753038180879,"y":51.078},{"x":1753038120711,"y":61.323},{"x":1753038060616,"y":67.097},{"x":1753038003336,"y":54.304},{"x":1753037942818,"y":56.438},{"x":1753037882658,"y":54.793},{"x":1753037822489,"y":43.822},{"x":1753037762321,"y":49.878},{"x":1753037702150,"y":49.069},{"x":1753037641709,"y":49.107},{"x":1753037581540,"y":58.476},{"x":1753037521377,"y":44.676},{"x":1753037461219,"y":56.711},{"x":1753037401029,"y":47.735},{"x":1753037340310,"y":40.728},{"x":1753037283024,"y":41.81},{"x":1753037222855,"y":39.575},{"x":1753037162660,"y":29.357},{"x":1753037102508,"y":33.46},{"x":1753037042047,"y":45.41},{"x":1753036981886,"y":42.94},{"x":1753036921694,"y":70.724},{"x":1753036861517,"y":56.856},{"x":1753036801364,"y":55.306},{"x":1753036740606,"y":49.735},{"x":1753036680451,"y":49.803},{"x":1753036620265,"y":35.017},{"x":1753036562950,"y":37.73},{"x":1753036502780,"y":40.316},{"x":1753036442336,"y":40.686},{"x":1753036382182,"y":53.473},{"x":1753036322016,"y":52.982},{"x":1753036261892,"y":36.722},{"x":1753036201652,"y":41.383},{"x":1753036141045,"y":56.87},{"x":1753036080847,"y":33.468},{"x":1753036020661,"y":33.927},{"x":1753035960525,"y":50.009},{"x":1753035903270,"y":41.073},{"x":1753035842831,"y":42.075},{"x":1753035782667,"y":42.823},{"x":1753035722502,"y":43.611},{"x":1753035662334,"y":43.387},{"x":1753035602164,"y":34.711},{"x":1753035541764,"y":35.363},{"x":1753035481567,"y":31.902},{"x":1753035421398,"y":34.782},{"x":1753035361236,"y":25.473},{"x":1753035301274,"y":31.006},{"x":1753035240565,"y":29.999},{"x":1753035180387,"y":30.574},{"x":1753035123087,"y":31.549},{"x":1753035062835,"y":35.428},{"x":1753035002670,"y":41.625},{"x":1753034942228,"y":48.485},{"x":1753034882065,"y":47.66},{"x":1753034821903,"y":55.275},{"x":1753034761725,"y":48.44},{"x":1753034701552,"y":51.641},{"x":1753034641071,"y":43.138},{"x":1753034580896,"y":52.031},{"x":1753034520738,"y":38.858},{"x":1753034460616,"y":38.412},{"x":1753034403368,"y":45.587},{"x":1753034342706,"y":41.396},{"x":1753034282533,"y":44.773},{"x":1753034222366,"y":39.232},{"x":1753034162189,"y":40.233},{"x":1753034102028,"y":46.322},{"x":1753034041587,"y":30.849},{"x":1753033981425,"y":28.743},{"x":1753033921261,"y":30.849},{"x":1753033861093,"y":28.675},{"x":1753033800904,"y":40.464},{"x":1753033740344,"y":31.208},{"x":1753033682985,"y":37.325},{"x":1753033622814,"y":36.789},{"x":1753033562633,"y":35.543},{"x":1753033502468,"y":44.165},{"x":1753033442005,"y":48.763},{"x":1753033381815,"y":51.05},{"x":1753033321650,"y":50.241},{"x":1753033261488,"y":60.471},{"x":1753033201311,"y":43.341},{"x":1753033140707,"y":36.025},{"x":1753033080626,"y":29.085},{"x":1753033020387,"y":32.907},{"x":1753032963012,"y":31.862},{"x":1753032902851,"y":39.591},{"x":1753032842420,"y":47.33},{"x":1753032782251,"y":43.048},{"x":1753032722085,"y":44.172},{"x":1753032661895,"y":31.203},{"x":1753032601726,"y":33.997},{"x":1753032540997,"y":32.132},{"x":1753032480859,"y":46.514},{"x":1753032420646,"y":44.487},{"x":1753032360484,"y":42.401},{"x":1753032303295,"y":47.047},{"x":1753032242849,"y":49.783},{"x":1753032182691,"y":38.478},{"x":1753032122529,"y":38.819},{"x":1753032062361,"y":41.325},{"x":1753032002207,"y":37.616},{"x":1753031941753,"y":40.051},{"x":1753031881587,"y":44.279},{"x":1753031821411,"y":40.512},{"x":1753031761230,"y":44.397},{"x":1753031701420,"y":40.843},{"x":1753031640649,"y":48.003},{"x":1753031580668,"y":63.144},{"x":1753031520666,"y":70.876},{"x":1753031462996,"y":61.312},{"x":1753031402848,"y":65.461},{"x":1753031342411,"y":52.092},{"x":1753031282253,"y":42.071},{"x":1753031222087,"y":37.015},{"x":1753031161906,"y":32.856},{"x":1753031101747,"y":35.529},{"x":1753031041322,"y":36.081},{"x":1753030981153,"y":42.172},{"x":1753030920942,"y":40.077},{"x":1753030860770,"y":47.239},{"x":1753030801761,"y":34.386},{"x":1753030740525,"y":38.123},{"x":1753030680281,"y":45.742},{"x":1753030622970,"y":45.422},{"x":1753030562797,"y":54.14},{"x":1753030502634,"y":54.507},{"x":1753030442193,"y":53.434},{"x":1753030382009,"y":48.569},{"x":1753030321832,"y":38.208},{"x":1753030261674,"y":47.926},{"x":1753030201510,"y":36.068},{"x":1753030141038,"y":32.016},{"x":1753030080872,"y":37.143},{"x":1753030020701,"y":34.736},{"x":1753029960518,"y":33.867},{"x":1753029903166,"y":36.678},{"x":1753029842698,"y":34.807},{"x":1753029782535,"y":34.276},{"x":1753029722341,"y":47.225},{"x":1753029662168,"y":54.521},{"x":1753029602007,"y":51.862},{"x":1753029541486,"y":54.851},{"x":1753029481312,"y":50.22},{"x":1753029421144,"y":41.574},{"x":1753029360956,"y":47.922},{"x":1753029300808,"y":37.417},{"x":1753029242873,"y":43.21},{"x":1753029182708,"y":39.717},{"x":1753029122534,"y":47.387},{"x":1753029062428,"y":36.344},{"x":1753029002125,"y":55.432},{"x":1753028941528,"y":51.227},{"x":1753028881344,"y":35.669},{"x":1753028821151,"y":24.763},{"x":1753028760953,"y":24.761},{"x":1753028700837,"y":48.659},{"x":1753028642909,"y":46.658},{"x":1753028582751,"y":44.503},{"x":1753028522577,"y":51.968},{"x":1753028462411,"y":52.988},{"x":1753028402226,"y":40.958},{"x":1753028341739,"y":40.166},{"x":1753028281566,"y":43.549},{"x":1753028221390,"y":39.896},{"x":1753028161197,"y":37.836},{"x":1753028101432,"y":36.158},{"x":1753028040867,"y":32.823},{"x":1753027980689,"y":36.376},{"x":1753027920588,"y":40.754},{"x":1753027860401,"y":37.797},{"x":1753027803099,"y":45.642},{"x":1753027742636,"y":51.63},{"x":1753027682470,"y":58.155},{"x":1753027622303,"y":61.728},{"x":1753027562088,"y":54.558},{"x":1753027501917,"y":37.962},{"x":1753027441480,"y":37.621},{"x":1753027381302,"y":37.805},{"x":1753027321128,"y":25.31},{"x":1753027260920,"y":32.303},{"x":1753027201900,"y":33.74},{"x":1753027140621,"y":42.187},{"x":1753027080441,"y":42.457},{"x":1753027023029,"y":39.045},{"x":1753026962845,"y":45.8},{"x":1753026902678,"y":33.71},{"x":1753026842184,"y":22.789},{"x":1753026781991,"y":31.707},{"x":1753026721846,"y":23.976},{"x":1753026661661,"y":31.701},{"x":1753026601496,"y":24.39},{"x":1753026540991,"y":24.85},{"x":1753026480833,"y":25.13},{"x":1753026420692,"y":28.462},{"x":1753026360543,"y":24.694},{"x":1753026303180,"y":29.7},{"x":1753026242749,"y":28.388},{"x":1753026182585,"y":25.46},{"x":1753026122411,"y":28.446},{"x":1753026062247,"y":22.829},{"x":1753026002079,"y":29.492},{"x":1753025941660,"y":49.559},{"x":1753025881456,"y":43.482},{"x":1753025821309,"y":47.71},{"x":1753025761122,"y":48.432},{"x":1753025700951,"y":23.356},{"x":1753025640257,"y":15.645},{"x":1753025582895,"y":17.355},{"x":1753025522726,"y":15.788},{"x":1753025462571,"y":4.59},{"x":1753025402358,"y":21.445},{"x":1753025341752,"y":23.294},{"x":1753025281552,"y":35.692},{"x":1753025221366,"y":44.976},{"x":1753025161196,"y":33.332},{"x":1753025100985,"y":26.647},{"x":1753025042842,"y":28.001},{"x":1753024982671,"y":34.343},{"x":1753024922503,"y":28.688},{"x":1753024862337,"y":22.301},{"x":1753024802176,"y":27.463},{"x":1753024741743,"y":29.868},{"x":1753024681587,"y":33.127},{"x":1753024621394,"y":33.912},{"x":1753024561223,"y":27.229},{"x":1753024501135,"y":36.661},{"x":1753024440395,"y":38.953},{"x":1753024380249,"y":44.565},{"x":1753024322943,"y":28.847},{"x":1753024262771,"y":27.447},{"x":1753024202615,"y":30.894},{"x":1753024142183,"y":34.87},{"x":1753024081996,"y":40.428},{"x":1753024021830,"y":53.641},{"x":1753023961667,"y":58.65},{"x":1753023901509,"y":56.097},{"x":1753023841066,"y":44.576},{"x":1753023780880,"y":39.631},{"x":1753023720719,"y":32.165},{"x":1753023660579,"y":36.881},{"x":1753023601987,"y":40.37},{"x":1753023542945,"y":50.399},{"x":1753023482782,"y":49.159},{"x":1753023422621,"y":53.939},{"x":1753023362455,"y":51.116},{"x":1753023302284,"y":47.362},{"x":1753023241851,"y":42.324},{"x":1753023181689,"y":42.489},{"x":1753023121520,"y":37.618},{"x":1753023061333,"y":61.359},{"x":1753023001171,"y":50.127},{"x":1753022940558,"y":56.674},{"x":1753022880398,"y":47.892},{"x":1753022823009,"y":57.348},{"x":1753022762791,"y":49.982},{"x":1753022702617,"y":37.857},{"x":1753022642185,"y":39.384},{"x":1753022581996,"y":44.331},{"x":1753022521820,"y":40.873},{"x":1753022461656,"y":46.072},{"x":1753022401494,"y":59.435},{"x":1753022341007,"y":56.113},{"x":1753022280832,"y":55.482},{"x":1753022220681,"y":69.129},{"x":1753022160564,"y":49.491},{"x":1753022100070,"y":48.088},{"x":1753022042858,"y":44.384},{"x":1753021982692,"y":44.019},{"x":1753021922517,"y":48.884},{"x":1753021862353,"y":33.721},{"x":1753021802185,"y":44.527},{"x":1753021741714,"y":42.871},{"x":1753021681516,"y":51.629},{"x":1753021621342,"y":55.179},{"x":1753021561151,"y":57.415},{"x":1753021500939,"y":68.882},{"x":1753021440245,"y":66.021},{"x":1753021382867,"y":58.723},{"x":1753021322675,"y":71.342},{"x":1753021262515,"y":43.28},{"x":1753021202344,"y":42.136},{"x":1753021141900,"y":29.521},{"x":1753021081723,"y":43.805},{"x":1753021021552,"y":36.125},{"x":1753020961374,"y":36.197},{"x":1753020901290,"y":49.24},{"x":1753020840489,"y":55.211},{"x":1753020780280,"y":55.754},{"x":1753020722998,"y":55.614},{"x":1753020662790,"y":47.236},{"x":1753020602626,"y":46.735},{"x":1753020542180,"y":53.862},{"x":1753020481997,"y":45.285},{"x":1753020421816,"y":35.591},{"x":1753020361653,"y":37.655},{"x":1753020301656,"y":35.884},{"x":1753020241087,"y":44.591},{"x":1753020180903,"y":38.75},{"x":1753020120811,"y":45.067},{"x":1753020060791,"y":45.562},{"x":1753020002121,"y":41.839},{"x":1753019942908,"y":60.051},{"x":1753019882747,"y":69.497},{"x":1753019822584,"y":66.557},{"x":1753019762404,"y":58.839},{"x":1753019702235,"y":55.079},{"x":1753019641795,"y":37.981},{"x":1753019581621,"y":36.338},{"x":1753019521458,"y":42.553},{"x":1753019461290,"y":57.56},{"x":1753019401127,"y":55.607},{"x":1753019340475,"y":54.401},{"x":1753019280242,"y":47.376},{"x":1753019222878,"y":46.207},{"x":1753019162703,"y":45.265},{"x":1753019102545,"y":49.676},{"x":1753019042094,"y":44.918},{"x":1753018981914,"y":53.219},{"x":1753018921736,"y":44.581},{"x":1753018861570,"y":39.952},{"x":1753018801416,"y":37.717},{"x":1753018740746,"y":44.62},{"x":1753018680633,"y":42.057},{"x":1753018620409,"y":37.843},{"x":1753018560275,"y":44.56},{"x":1753018502931,"y":58.581},{"x":1753018442485,"y":53.25},{"x":1753018382307,"y":49.354},{"x":1753018322152,"y":55.93},{"x":1753018261968,"y":40.648},{"x":1753018201739,"y":32.196},{"x":1753018141028,"y":46.913},{"x":1753018080906,"y":53.592},{"x":1753018020668,"y":57.742},{"x":1753017960558,"y":59.173},{"x":1753017903293,"y":56.436},{"x":1753017842841,"y":49.051},{"x":1753017782662,"y":36.003},{"x":1753017722497,"y":38.959},{"x":1753017662327,"y":45.421},{"x":1753017602160,"y":44.694},{"x":1753017541717,"y":55.216},{"x":1753017481558,"y":62.681},{"x":1753017421372,"y":73.494},{"x":1753017361212,"y":63.039},{"x":1753017301383,"y":62.285},{"x":1753017240805,"y":32.228},{"x":1753017180630,"y":34.014},{"x":1753017120468,"y":32.871},{"x":1753017060329,"y":35.222},{"x":1753017002925,"y":37.839},{"x":1753016942475,"y":37.65},{"x":1753016882282,"y":35.817},{"x":1753016822118,"y":41.168},{"x":1753016761870,"y":51.669},{"x":1753016701700,"y":61.056},{"x":1753016641254,"y":59.49},{"x":1753016581075,"y":63.519},{"x":1753016520877,"y":58.928},{"x":1753016460720,"y":40.26},{"x":1753016403534,"y":39.738},{"x":1753016342854,"y":38.371},{"x":1753016282692,"y":52.143},{"x":1753016222532,"y":64.181},{"x":1753016162357,"y":49.232},{"x":1753016102191,"y":63.481},{"x":1753016041754,"y":60.102},{"x":1753015981585,"y":60.183},{"x":1753015921419,"y":44.868},{"x":1753015861260,"y":39.433},{"x":1753015801083,"y":38.195},{"x":1753015740501,"y":45.403},{"x":1753015680375,"y":39.792},{"x":1753015622974,"y":40.634},{"x":1753015562812,"y":40.318},{"x":1753015502649,"y":44.158},{"x":1753015442201,"y":61.028},{"x":1753015382036,"y":59.102},{"x":1753015321832,"y":60.345},{"x":1753015261663,"y":63.096},{"x":1753015201510,"y":49.943},{"x":1753015141040,"y":40.091},{"x":1753015080860,"y":38.433},{"x":1753015020690,"y":54.753},{"x":1753014960584,"y":58.389},{"x":1753014900020,"y":56.153},{"x":1753014842858,"y":51.773},{"x":1753014782703,"y":73.037},{"x":1753014722539,"y":70.813},{"x":1753014662379,"y":37.794},{"x":1753014602227,"y":44.939},{"x":1753014541772,"y":66.461},{"x":1753014481576,"y":41.421},{"x":1753014421402,"y":37.542},{"x":1753014361231,"y":45.298},{"x":1753014301066,"y":50.522},{"x":1753014240603,"y":55.116},{"x":1753014180448,"y":37.656},{"x":1753014122979,"y":47.749},{"x":1753014062809,"y":67.34},{"x":1753014002643,"y":55.145},{"x":1753013942214,"y":51.757},{"x":1753013882016,"y":53.232},{"x":1753013821846,"y":46.378},{"x":1753013761641,"y":34.674},{"x":1753013701471,"y":40.47},{"x":1753013640872,"y":41.448},{"x":1753013580704,"y":58.988},{"x":1753013520608,"y":57.825},{"x":1753013460408,"y":44.853},{"x":1753013403088,"y":52.62},{"x":1753013342647,"y":49.57},{"x":1753013282473,"y":45.519},{"x":1753013222299,"y":44.681},{"x":1753013162120,"y":41.654},{"x":1753013101935,"y":41.964},{"x":1753013041494,"y":43.992},{"x":1753012981313,"y":43.212},{"x":1753012921147,"y":47.175},{"x":1753012860971,"y":54.767},{"x":1753012801762,"y":63.729},{"x":1753012740595,"y":51.233},{"x":1753012680434,"y":58.872},{"x":1753012620223,"y":60.883},{"x":1753012562898,"y":48.935},{"x":1753012502729,"y":47.987},{"x":1753012442265,"y":35.203},{"x":1753012382098,"y":38.64},{"x":1753012321940,"y":50.105},{"x":1753012261768,"y":39.156},{"x":1753012201600,"y":45.51},{"x":1753012141071,"y":54.602},{"x":1753012080888,"y":35.067},{"x":1753012020728,"y":45.262},{"x":1753011960620,"y":54.22},{"x":1753011903292,"y":68.295},{"x":1753011842777,"y":52.498},{"x":1753011782616,"y":66.792},{"x":1753011722436,"y":48.546},{"x":1753011662265,"y":48.802},{"x":1753011602102,"y":49.553},{"x":1753011541623,"y":47.021},{"x":1753011481456,"y":57.284},{"x":1753011421300,"y":63.461},{"x":1753011361116,"y":58.152},{"x":1753011300943,"y":68.392},{"x":1753011242995,"y":59.811},{"x":1753011182821,"y":41.078},{"x":1753011122660,"y":53.364},{"x":1753011062524,"y":39.943},{"x":1753011002287,"y":28.913},{"x":1753010941782,"y":53.125},{"x":1753010881558,"y":54.292},{"x":1753010821363,"y":64.772},{"x":1753010761196,"y":56.856},{"x":1753010701015,"y":56.887},{"x":1753010642933,"y":47.811},{"x":1753010582763,"y":52.418},{"x":1753010522593,"y":32.833},{"x":1753010462435,"y":39.299},{"x":1753010402283,"y":47.488},{"x":1753010341808,"y":55.294},{"x":1753010281644,"y":75.175},{"x":1753010221481,"y":48.475},{"x":1753010161271,"y":58.069},{"x":1753010101125,"y":49.72},{"x":1753010040284,"y":51.91},{"x":1753009982936,"y":56.049},{"x":1753009922765,"y":45.855},{"x":1753009862597,"y":48.245},{"x":1753009802412,"y":49.625},{"x":1753009741928,"y":51.111},{"x":1753009681756,"y":47.007},{"x":1753009621619,"y":60.891},{"x":1753009561430,"y":52.643},{"x":1753009501265,"y":52.857},{"x":1753009440753,"y":64.03},{"x":1753009380585,"y":48.404},{"x":1753009320393,"y":40.764},{"x":1753009260174,"y":45.668},{"x":1753009202884,"y":43.143},{"x":1753009142320,"y":39.747},{"x":1753009082151,"y":37.246},{"x":1753009021967,"y":54.002},{"x":1753008961808,"y":50.548},{"x":1753008902051,"y":51.934},{"x":1753008841495,"y":36.359},{"x":1753008781312,"y":41.021},{"x":1753008721119,"y":53.883},{"x":1753008660940,"y":44.392},{"x":1753008601192,"y":43.41},{"x":1753008540622,"y":63.53},{"x":1753008480478,"y":69.956},{"x":1753008420265,"y":86.873},{"x":1753008362950,"y":84.338},{"x":1753008302789,"y":65.823},{"x":1753008242295,"y":42.33},{"x":1753008182131,"y":50.913},{"x":1753008121960,"y":37.347},{"x":1753008061791,"y":28.659},{"x":1753008001613,"y":34.183},{"x":1753007941128,"y":32.469},{"x":1753007880916,"y":33.133},{"x":1753007820759,"y":55.652},{"x":1753007760619,"y":77.06},{"x":1753007703235,"y":93.074},{"x":1753007642821,"y":68.233},{"x":1753007582631,"y":65.917},{"x":1753007522463,"y":65.75},{"x":1753007462289,"y":52.547},{"x":1753007402069,"y":61.766},{"x":1753007341503,"y":58.018},{"x":1753007281313,"y":58.714},{"x":1753007221123,"y":70.412},{"x":1753007160935,"y":53.45},{"x":1753007100786,"y":49.833},{"x":1753007042866,"y":50.812},{"x":1753006982701,"y":54.49},{"x":1753006922530,"y":59.062},{"x":1753006862346,"y":65.185},{"x":1753006802199,"y":62.323},{"x":1753006741749,"y":59.829},{"x":1753006681581,"y":64.642},{"x":1753006621405,"y":55.972},{"x":1753006561248,"y":41.351},{"x":1753006501212,"y":16.783},{"x":1753006440601,"y":46.628},{"x":1753006380403,"y":39.203},{"x":1753006320198,"y":37.867},{"x":1753006262922,"y":46.392},{"x":1753006202740,"y":43.302},{"x":1753006142299,"y":40.208},{"x":1753006082140,"y":35.347},{"x":1753006021945,"y":31.937},{"x":1753005961777,"y":36.6},{"x":1753005901615,"y":61.498},{"x":1753005841181,"y":35.93},{"x":1753005780964,"y":30.689},{"x":1753005720797,"y":33.07},{"x":1753005660646,"y":30.912},{"x":1753005603436,"y":41.575},{"x":1753005542835,"y":66.265},{"x":1753005482672,"y":61.659},{"x":1753005422480,"y":59.401},{"x":1753005362316,"y":80.467},{"x":1753005302151,"y":56.892},{"x":1753005241718,"y":35.906},{"x":1753005181546,"y":36.01},{"x":1753005121392,"y":36.619},{"x":1753005061228,"y":35.189},{"x":1753005001071,"y":38.401},{"x":1753004940246,"y":52.436},{"x":1753004882948,"y":35.709},{"x":1753004822782,"y":45.324},{"x":1753004762623,"y":57.534},{"x":1753004702458,"y":62.431},{"x":1753004642018,"y":56.413},{"x":1753004581853,"y":56.52},{"x":1753004521696,"y":42.403},{"x":1753004461543,"y":48.083},{"x":1753004401352,"y":27.595},{"x":1753004340811,"y":47.438},{"x":1753004280647,"y":25.682},{"x":1753004220514,"y":35.983},{"x":1753004160363,"y":32.178},{"x":1753004102968,"y":30.263},{"x":1753004042543,"y":36.467},{"x":1753003982379,"y":31.607},{"x":1753003922199,"y":28.85},{"x":1753003862025,"y":26.736},{"x":1753003801843,"y":38.192},{"x":1753003741092,"y":28.673},{"x":1753003680861,"y":35.083},{"x":1753003620689,"y":31.803},{"x":1753003560636,"y":34.987},{"x":1753003503314,"y":41.523},{"x":1753003442833,"y":48.015},{"x":1753003382673,"y":49.022},{"x":1753003322513,"y":59.391},{"x":1753003262345,"y":59.876},{"x":1753003202200,"y":60.419},{"x":1753003141749,"y":59.692},{"x":1753003081565,"y":62.327},{"x":1753003021397,"y":37.353},{"x":1753002961202,"y":29.148},{"x":1753002901214,"y":47.059},{"x":1753002840605,"y":53.259},{"x":1753002780587,"y":47.3},{"x":1753002720306,"y":35.908},{"x":1753002662972,"y":42.56},{"x":1753002602804,"y":55.903},{"x":1753002542348,"y":39.5},{"x":1753002482186,"y":48.668},{"x":1753002422026,"y":31.552},{"x":1753002361824,"y":23.347},{"x":1753002301663,"y":33.659},{"x":1753002241209,"y":36.035},{"x":1753002181015,"y":39.649},{"x":1753002120843,"y":56.703},{"x":1753002060744,"y":39.363},{"x":1753002000089,"y":43.848},{"x":1753001942878,"y":29.06},{"x":1753001882700,"y":32.536},{"x":1753001822527,"y":20.877},{"x":1753001762367,"y":28.726},{"x":1753001702196,"y":48.752},{"x":1753001641760,"y":42.038},{"x":1753001581595,"y":46.125},{"x":1753001521400,"y":51.567},{"x":1753001461216,"y":42.35},{"x":1753001401032,"y":36.199},{"x":1753001340345,"y":45.275},{"x":1753001282989,"y":35.479},{"x":1753001222819,"y":28.476},{"x":1753001162655,"y":39.334},{"x":1753001102471,"y":41.292},{"x":1753001042020,"y":41.679},{"x":1753000981840,"y":48.339},{"x":1753000921679,"y":41.057},{"x":1753000861520,"y":46.417},{"x":1753000801356,"y":57.502},{"x":1753000740705,"y":43.655},{"x":1753000680576,"y":43.602},{"x":1753000620382,"y":34.857},{"x":1753000562984,"y":39.16},{"x":1753000502822,"y":29.327},{"x":1753000442385,"y":33.182},{"x":1753000382212,"y":41.021},{"x":1753000322044,"y":43.486},{"x":1753000261880,"y":32.86},{"x":1753000201711,"y":42.75},{"x":1753000141062,"y":32.154},{"x":1753000080832,"y":37.305},{"x":1753000020667,"y":44.745},{"x":1752999960515,"y":47.23},{"x":1752999900113,"y":53.536},{"x":1752999842871,"y":67.366},{"x":1752999782681,"y":63.758},{"x":1752999722521,"y":56.325},{"x":1752999662352,"y":53.387},{"x":1752999602183,"y":47.231},{"x":1752999541738,"y":39.843},{"x":1752999481574,"y":35.261},{"x":1752999421398,"y":35.83},{"x":1752999361220,"y":47.051},{"x":1752999301244,"y":40.268},{"x":1752999240627,"y":34.59},{"x":1752999180574,"y":49.105},{"x":1752999120455,"y":45.704},{"x":1752999062995,"y":43.75},{"x":1752999002832,"y":48.758},{"x":1752998942336,"y":53.315},{"x":1752998882180,"y":63.336},{"x":1752998822012,"y":50.854},{"x":1752998761844,"y":45.328},{"x":1752998701712,"y":41.241},{"x":1752998641246,"y":35.383},{"x":1752998581069,"y":38.292},{"x":1752998520884,"y":42.042},{"x":1752998460713,"y":43.02},{"x":1752998400040,"y":42.522},{"x":1752998342867,"y":54.262},{"x":1752998282704,"y":49.638},{"x":1752998222546,"y":56.05},{"x":1752998162357,"y":39.551},{"x":1752998102191,"y":33.306},{"x":1752998041744,"y":55.69},{"x":1752997981575,"y":38.242},{"x":1752997921420,"y":40.542},{"x":1752997861252,"y":64.719},{"x":1752997801087,"y":55.396},{"x":1752997740564,"y":49.368},{"x":1752997680304,"y":50.685},{"x":1752997622975,"y":46.726},{"x":1752997562818,"y":33.222},{"x":1752997502650,"y":55.6},{"x":1752997442217,"y":34.968},{"x":1752997382021,"y":34.45},{"x":1752997321905,"y":36.299},{"x":1752997261687,"y":43.321},{"x":1752997201516,"y":45.548},{"x":1752997141052,"y":48.722},{"x":1752997080850,"y":46.012},{"x":1752997020685,"y":39.4},{"x":1752996960614,"y":39.873},{"x":1752996903291,"y":39.407},{"x":1752996842849,"y":50.321},{"x":1752996782674,"y":46.471},{"x":1752996722537,"y":47.508},{"x":1752996662307,"y":53.498},{"x":1752996602088,"y":58.576},{"x":1752996541426,"y":56.713},{"x":1752996481236,"y":62.116},{"x":1752996421040,"y":76.17},{"x":1752996360842,"y":39.587},{"x":1752996300707,"y":41.523},{"x":1752996242881,"y":34.532},{"x":1752996182709,"y":35.832},{"x":1752996122556,"y":52.535},{"x":1752996062397,"y":53.02},{"x":1752996002231,"y":47.427},{"x":1752995941787,"y":46.05},{"x":1752995881616,"y":49.44},{"x":1752995821455,"y":31.307},{"x":1752995761279,"y":41.183},{"x":1752995701439,"y":42.521},{"x":1752995640812,"y":34.458},{"x":1752995580679,"y":45.885},{"x":1752995520518,"y":48.729},{"x":1752995460295,"y":38.423},{"x":1752995402957,"y":37.255},{"x":1752995342527,"y":48.387},{"x":1752995282366,"y":35.62},{"x":1752995222210,"y":37.645},{"x":1752995162041,"y":32.239},{"x":1752995101877,"y":30.64},{"x":1752995041451,"y":63.595},{"x":1752994981249,"y":64.313},{"x":1752994921075,"y":53.317},{"x":1752994860903,"y":54.534},{"x":1752994801700,"y":51.183},{"x":1752994740316,"y":34.336},{"x":1752994680158,"y":36.524},{"x":1752994622862,"y":43.699},{"x":1752994562672,"y":47.485},{"x":1752994502508,"y":50.089},{"x":1752994442055,"y":56.433},{"x":1752994381872,"y":58.346},{"x":1752994321706,"y":54.465},{"x":1752994261529,"y":49.374},{"x":1752994201372,"y":54.941},{"x":1752994140867,"y":45.355},{"x":1752994080714,"y":44.563},{"x":1752994020597,"y":50.696},{"x":1752993960362,"y":30.884},{"x":1752993903276,"y":37.33},{"x":1752993842825,"y":45.281},{"x":1752993782692,"y":45.797},{"x":1752993722488,"y":41.1},{"x":1752993662315,"y":40.873},{"x":1752993602141,"y":55.55},{"x":1752993541686,"y":57.048},{"x":1752993481504,"y":61.317},{"x":1752993421330,"y":63.149},{"x":1752993361156,"y":65.198},{"x":1752993300975,"y":45.859},{"x":1752993242986,"y":59.453},{"x":1752993182830,"y":59.611},{"x":1752993122655,"y":61.612},{"x":1752993062478,"y":37.271},{"x":1752993002315,"y":49.657},{"x":1752992941840,"y":45.732},{"x":1752992881609,"y":46.75},{"x":1752992821439,"y":56.945},{"x":1752992761210,"y":49.684},{"x":1752992701031,"y":45.253},{"x":1752992642910,"y":62.352},{"x":1752992582736,"y":45.965},{"x":1752992522566,"y":48.531},{"x":1752992462364,"y":47.991},{"x":1752992402193,"y":57.388},{"x":1752992341741,"y":47.097},{"x":1752992281576,"y":47.696},{"x":1752992221402,"y":51.835},{"x":1752992161198,"y":32.457},{"x":1752992101251,"y":40.63},{"x":1752992040471,"y":37.874},{"x":1752991980298,"y":53.201},{"x":1752991922967,"y":50.796},{"x":1752991862808,"y":70.225},{"x":1752991802623,"y":74.209},{"x":1752991742175,"y":73.505},{"x":1752991682011,"y":54.287},{"x":1752991621847,"y":46.147},{"x":1752991561688,"y":34.659},{"x":1752991501506,"y":34.329},{"x":1752991441051,"y":40.233},{"x":1752991380830,"y":46.091},{"x":1752991320674,"y":47.177},{"x":1752991260596,"y":43.789},{"x":1752991203296,"y":57.469},{"x":1752991142790,"y":48.858},{"x":1752991082631,"y":41.414},{"x":1752991022453,"y":41.307},{"x":1752990962284,"y":42.468},{"x":1752990902122,"y":41.107},{"x":1752990841689,"y":49.062},{"x":1752990781542,"y":48.214},{"x":1752990721375,"y":49.09},{"x":1752990661193,"y":48.856},{"x":1752990601022,"y":51.18},{"x":1752990540501,"y":42.359},{"x":1752990480329,"y":38.9},{"x":1752990422977,"y":31.537},{"x":1752990362776,"y":36.663},{"x":1752990302601,"y":33.319},{"x":1752990242156,"y":37.299},{"x":1752990181978,"y":33.989},{"x":1752990121819,"y":36.188},{"x":1752990061651,"y":34.65},{"x":1752990001514,"y":31.057},{"x":1752989940997,"y":30.42},{"x":1752989880836,"y":47.768},{"x":1752989820678,"y":48.577},{"x":1752989760522,"y":51.279},{"x":1752989703254,"y":51.845},{"x":1752989642791,"y":52.196},{"x":1752989582649,"y":47.318},{"x":1752989522466,"y":35.142},{"x":1752989462288,"y":30.056},{"x":1752989402129,"y":39.955},{"x":1752989341668,"y":40.846},{"x":1752989281438,"y":40.681},{"x":1752989221250,"y":41.136},{"x":1752989161086,"y":41.476},{"x":1752989100888,"y":42.532},{"x":1752989042892,"y":42.34},{"x":1752988982727,"y":38.056},{"x":1752988922559,"y":35.169},{"x":1752988862396,"y":31.149},{"x":1752988802214,"y":39.056},{"x":1752988741765,"y":41.241},{"x":1752988681601,"y":46.705},{"x":1752988621442,"y":41.409},{"x":1752988561258,"y":40.503},{"x":1752988501216,"y":32.129},{"x":1752988440519,"y":35.994},{"x":1752988380393,"y":31.15},{"x":1752988323021,"y":32.473},{"x":1752988262861,"y":30.055},{"x":1752988202677,"y":37.771},{"x":1752988142211,"y":37.415},{"x":1752988082045,"y":47.602},{"x":1752988021872,"y":49.574},{"x":1752987961717,"y":50.501},{"x":1752987901552,"y":43.284},{"x":1752987841086,"y":45.087},{"x":1752987780900,"y":31.961},{"x":1752987720727,"y":30.661},{"x":1752987660556,"y":46.311},{"x":1752987603335,"y":38.586},{"x":1752987542758,"y":42.087},{"x":1752987482589,"y":37.682},{"x":1752987422421,"y":43.4},{"x":1752987362268,"y":31.618},{"x":1752987302081,"y":33.081},{"x":1752987241638,"y":38.173},{"x":1752987181477,"y":37.761},{"x":1752987121315,"y":32.925},{"x":1752987061133,"y":31.499},{"x":1752987000935,"y":28.3},{"x":1752986940233,"y":33.124},{"x":1752986882884,"y":44.01},{"x":1752986822718,"y":49.174},{"x":1752986762545,"y":49.16},{"x":1752986702379,"y":45.459},{"x":1752986641914,"y":49.639},{"x":1752986581752,"y":33.167},{"x":1752986521590,"y":36.819},{"x":1752986461420,"y":35.11},{"x":1752986401266,"y":43.17},{"x":1752986340707,"y":51.28},{"x":1752986280634,"y":52.51},{"x":1752986220341,"y":50.945},{"x":1752986160085,"y":46.508},{"x":1752986102853,"y":46.779},{"x":1752986042432,"y":49.593},{"x":1752985982242,"y":46.485},{"x":1752985922072,"y":47.245},{"x":1752985861903,"y":48.491},{"x":1752985801742,"y":35.576},{"x":1752985741026,"y":32.548},{"x":1752985680810,"y":34.974},{"x":1752985620654,"y":34.871},{"x":1752985560472,"y":36.864},{"x":1752985500046,"y":34.211},{"x":1752985442829,"y":34.42},{"x":1752985382643,"y":32.739},{"x":1752985322483,"y":32.31},{"x":1752985262313,"y":31.818},{"x":1752985202152,"y":31.806},{"x":1752985141716,"y":34.711},{"x":1752985081552,"y":34.311},{"x":1752985021376,"y":33.433},{"x":1752984961207,"y":33.875},{"x":1752984901196,"y":38.749},{"x":1752984840631,"y":37.279},{"x":1752984780436,"y":37.787},{"x":1752984720377,"y":30.877},{"x":1752984662925,"y":31.08},{"x":1752984602768,"y":30.456},{"x":1752984542290,"y":31.402},{"x":1752984482124,"y":34.799},{"x":1752984421947,"y":29.378},{"x":1752984361791,"y":35.245},{"x":1752984301616,"y":27.001},{"x":1752984241167,"y":29.12},{"x":1752984180986,"y":33.948},{"x":1752984120809,"y":40.076},{"x":1752984060698,"y":37.011},{"x":1752984003377,"y":39.176},{"x":1752983942754,"y":43.27},{"x":1752983882598,"y":44.604},{"x":1752983822416,"y":40.261},{"x":1752983762264,"y":39.818},{"x":1752983702098,"y":39.634},{"x":1752983641637,"y":29.825},{"x":1752983581459,"y":29.977},{"x":1752983521277,"y":30.006},{"x":1752983461105,"y":32.413},{"x":1752983400928,"y":30.788},{"x":1752983340309,"y":33.682},{"x":1752983282956,"y":33.995},{"x":1752983222796,"y":27.492},{"x":1752983162618,"y":30.694},{"x":1752983102467,"y":32.871},{"x":1752983041998,"y":29.378},{"x":1752982981844,"y":28.151},{"x":1752982921673,"y":28.221},{"x":1752982861503,"y":32.739},{"x":1752982801352,"y":33.114},{"x":1752982740840,"y":30.507},{"x":1752982680688,"y":34.999},{"x":1752982620563,"y":37.071},{"x":1752982560430,"y":33.994},{"x":1752982503144,"y":30.244},{"x":1752982442713,"y":32.6},{"x":1752982382541,"y":29.599},{"x":1752982322381,"y":27.527},{"x":1752982262221,"y":28.745},{"x":1752982202056,"y":29.065},{"x":1752982141563,"y":38.511},{"x":1752982081375,"y":31.961},{"x":1752982021210,"y":39.029},{"x":1752981961009,"y":41.761},{"x":1752981900839,"y":39.339},{"x":1752981842908,"y":39.754},{"x":1752981782740,"y":43.578},{"x":1752981722572,"y":30.528},{"x":1752981662399,"y":30.662},{"x":1752981602221,"y":29.668},{"x":1752981541770,"y":31.358},{"x":1752981481605,"y":34.261},{"x":1752981421442,"y":33.881},{"x":1752981361251,"y":34.735},{"x":1752981301184,"y":37.016},{"x":1752981240544,"y":33.207},{"x":1752981180344,"y":33.281},{"x":1752981122978,"y":32.783},{"x":1752981062818,"y":28.759},{"x":1752981002633,"y":29.163},{"x":1752980942171,"y":31.075},{"x":1752980881992,"y":29.773},{"x":1752980821842,"y":33.746},{"x":1752980761678,"y":33.503},{"x":1752980701510,"y":34.639},{"x":1752980642400,"y":33.022},{"x":1752980580511,"y":32.59},{"x":1752980522976,"y":30.378},{"x":1752980462727,"y":32.586},{"x":1752980402835,"y":31.908},{"x":1752980342105,"y":30.911},{"x":1752980281929,"y":32.585},{"x":1752980221781,"y":32.833},{"x":1752980161595,"y":37.379},{"x":1752980101424,"y":37.731},{"x":1752980040965,"y":31.847},{"x":1752979980804,"y":32.155},{"x":1752979920655,"y":44.464},{"x":1752979860522,"y":39.694},{"x":1752979803285,"y":45.765},{"x":1752979742844,"y":42.261},{"x":1752979682669,"y":34.933},{"x":1752979622505,"y":33.002},{"x":1752979562276,"y":34.072},{"x":1752979502119,"y":32.635},{"x":1752979441672,"y":37.239},{"x":1752979381513,"y":34.892},{"x":1752979321344,"y":36.422},{"x":1752979261209,"y":35.698},{"x":1752979200997,"y":36.536},{"x":1752979142901,"y":39.625},{"x":1752979082738,"y":34.274},{"x":1752979022579,"y":34.824},{"x":1752978962409,"y":38.078},{"x":1752978902243,"y":36.268},{"x":1752978841803,"y":38.276},{"x":1752978781638,"y":37.926},{"x":1752978721480,"y":30.173},{"x":1752978661308,"y":40.491},{"x":1752978601437,"y":41.719},{"x":1752978540621,"y":39.208},{"x":1752978480401,"y":41.819},{"x":1752978420291,"y":39.538},{"x":1752978362887,"y":33.196},{"x":1752978302703,"y":30.615},{"x":1752978242279,"y":30.012},{"x":1752978182112,"y":31.223},{"x":1752978121892,"y":33.664},{"x":1752978061717,"y":30.132},{"x":1752978001568,"y":30.633},{"x":1752977941072,"y":38.596},{"x":1752977880872,"y":39.172},{"x":1752977820726,"y":35.833},{"x":1752977760575,"y":35.026},{"x":1752977700106,"y":36.01},{"x":1752977642864,"y":36.518},{"x":1752977582702,"y":35.323},{"x":1752977522536,"y":31.774},{"x":1752977462374,"y":33.482},{"x":1752977402203,"y":29.849},{"x":1752977341759,"y":29.407},{"x":1752977281589,"y":34.521},{"x":1752977221430,"y":29.378},{"x":1752977161265,"y":32.988},{"x":1752977101105,"y":33.127},{"x":1752977040673,"y":36.735},{"x":1752976983022,"y":35.542},{"x":1752976922841,"y":33.265},{"x":1752976862663,"y":31.647},{"x":1752976802533,"y":33.183},{"x":1752976741697,"y":31.418},{"x":1752976681527,"y":28.353},{"x":1752976621350,"y":32.388},{"x":1752976561197,"y":33.184},{"x":1752976501032,"y":33.532},{"x":1752976440390,"y":32.623},{"x":1752976380155,"y":33.164},{"x":1752976322920,"y":31.058},{"x":1752976262761,"y":30.982},{"x":1752976202601,"y":34.311},{"x":1752976142182,"y":33.117},{"x":1752976082019,"y":30.513},{"x":1752976021852,"y":30.118},{"x":1752975961678,"y":35.217},{"x":1752975901531,"y":29.741},{"x":1752975840961,"y":33.171},{"x":1752975780800,"y":37.685},{"x":1752975720649,"y":42.175},{"x":1752975660520,"y":38.509},{"x":1752975603308,"y":37.509},{"x":1752975542856,"y":37.021},{"x":1752975482672,"y":36.618},{"x":1752975422511,"y":31.997},{"x":1752975362350,"y":30.615},{"x":1752975302196,"y":30.556},{"x":1752975241763,"y":36.031},{"x":1752975181598,"y":32.227},{"x":1752975121427,"y":35.173},{"x":1752975061259,"y":38.699},{"x":1752975001416,"y":39.758},{"x":1752974940868,"y":41.054},{"x":1752974880730,"y":41.529},{"x":1752974820528,"y":41.326},{"x":1752974760302,"y":42.012},{"x":1752974702923,"y":41.458},{"x":1752974642429,"y":38.294},{"x":1752974582262,"y":40.122},{"x":1752974522098,"y":37.765},{"x":1752974461916,"y":43.299},{"x":1752974401759,"y":40.131},{"x":1752974341305,"y":43.082},{"x":1752974281143,"y":45.395},{"x":1752974220960,"y":39.821},{"x":1752974160798,"y":43.345},{"x":1752974101127,"y":39.349},{"x":1752974040489,"y":36.807},{"x":1752973980306,"y":36.586},{"x":1752973923022,"y":41.57},{"x":1752973862859,"y":38.513},{"x":1752973802681,"y":44.021},{"x":1752973742231,"y":40.225},{"x":1752973682069,"y":42.179},{"x":1752973621890,"y":37.809},{"x":1752973561634,"y":40.956},{"x":1752973501479,"y":46.869},{"x":1752973441018,"y":44.996},{"x":1752973380853,"y":45.187},{"x":1752973320693,"y":43.392},{"x":1752973260568,"y":44.805},{"x":1752973203288,"y":45.921},{"x":1752973142635,"y":45.785},{"x":1752973082467,"y":44.074},{"x":1752973022303,"y":41.195},{"x":1752972962158,"y":42.217},{"x":1752972901971,"y":42.61},{"x":1752972841538,"y":42.663},{"x":1752972781369,"y":44.105},{"x":1752972721199,"y":44.553},{"x":1752972661059,"y":42.725},{"x":1752972600862,"y":42.635},{"x":1752972542881,"y":45.254},{"x":1752972482697,"y":46.307},{"x":1752972422534,"y":40.074},{"x":1752972362372,"y":43.393},{"x":1752972302197,"y":43.828},{"x":1752972241751,"y":43.188},{"x":1752972181604,"y":41.662},{"x":1752972121408,"y":42.156},{"x":1752972061243,"y":42.223},{"x":1752972001079,"y":40.426},{"x":1752971942947,"y":34.349},{"x":1752971882784,"y":33.486},{"x":1752971822623,"y":37.142},{"x":1752971762450,"y":32.05},{"x":1752971702280,"y":34.399},{"x":1752971641823,"y":43.03},{"x":1752971581650,"y":42.07},{"x":1752971521486,"y":40.577},{"x":1752971461323,"y":38.088},{"x":1752971401409,"y":36.001},{"x":1752971340515,"y":33.612},{"x":1752971280302,"y":41.768},{"x":1752971222965,"y":40.694},{"x":1752971162796,"y":44.6},{"x":1752971102643,"y":36.058},{"x":1752971042207,"y":38.434},{"x":1752970982058,"y":36.479},{"x":1752970921880,"y":41.218},{"x":1752970861697,"y":47.876},{"x":1752970801535,"y":38.303},{"x":1752970741065,"y":34.789},{"x":1752970680889,"y":47.634},{"x":1752970620741,"y":34.792},{"x":1752970560530,"y":35.958},{"x":1752970501017,"y":31.067},{"x":1752970442949,"y":40.393},{"x":1752970382792,"y":44.473},{"x":1752970322630,"y":47.16},{"x":1752970262459,"y":44.055},{"x":1752970202293,"y":45.281},{"x":1752970141845,"y":38.81},{"x":1752970081680,"y":43.6},{"x":1752970021514,"y":44.858},{"x":1752969961334,"y":35.259},{"x":1752969901169,"y":39.03},{"x":1752969840771,"y":38.835},{"x":1752969780519,"y":49.574},{"x":1752969720338,"y":34.075},{"x":1752969662935,"y":39.44},{"x":1752969602786,"y":44.905},{"x":1752969542173,"y":38.227},{"x":1752969481968,"y":42.02},{"x":1752969421803,"y":40.295},{"x":1752969361648,"y":37.93},{"x":1752969301491,"y":37.374},{"x":1752969240998,"y":44.0},{"x":1752969180816,"y":44.55},{"x":1752969120685,"y":41.663},{"x":1752969060566,"y":36.462},{"x":1752969003293,"y":35.952},{"x":1752968942850,"y":34.136},{"x":1752968882698,"y":50.121},{"x":1752968822539,"y":40.272},{"x":1752968762379,"y":36.004},{"x":1752968702197,"y":35.947},{"x":1752968641749,"y":47.658},{"x":1752968581578,"y":45.859},{"x":1752968521413,"y":50.515},{"x":1752968461223,"y":42.633},{"x":1752968401005,"y":48.294},{"x":1752968342925,"y":46.844},{"x":1752968282756,"y":62.992},{"x":1752968222592,"y":34.644},{"x":1752968162413,"y":46.327},{"x":1752968102257,"y":39.65},{"x":1752968041820,"y":43.356},{"x":1752967981650,"y":53.012},{"x":1752967921488,"y":41.963},{"x":1752967861313,"y":38.164},{"x":1752967801413,"y":52.117},{"x":1752967740630,"y":41.0},{"x":1752967680361,"y":45.102},{"x":1752967622986,"y":40.899},{"x":1752967562786,"y":40.567},{"x":1752967502633,"y":35.938},{"x":1752967442185,"y":40.299},{"x":1752967382021,"y":40.335},{"x":1752967321849,"y":41.331},{"x":1752967261691,"y":46.842},{"x":1752967201534,"y":52.647},{"x":1752967141076,"y":53.123},{"x":1752967080919,"y":50.657},{"x":1752967020789,"y":42.705},{"x":1752966960597,"y":34.902},{"x":1752966903350,"y":44.257},{"x":1752966842857,"y":36.053},{"x":1752966782699,"y":36.254},{"x":1752966722538,"y":31.629},{"x":1752966662407,"y":37.043},{"x":1752966602223,"y":42.022},{"x":1752966541739,"y":40.086},{"x":1752966481579,"y":42.252},{"x":1752966421423,"y":41.424},{"x":1752966361261,"y":49.742},{"x":1752966301095,"y":60.513},{"x":1752966240638,"y":48.202},{"x":1752966180358,"y":50.954},{"x":1752966120251,"y":42.204},{"x":1752966062879,"y":33.983},{"x":1752966002743,"y":47.754},{"x":1752965942132,"y":38.615},{"x":1752965881940,"y":43.904},{"x":1752965821777,"y":42.684},{"x":1752965761614,"y":48.419},{"x":1752965701445,"y":64.455},{"x":1752965640980,"y":51.426},{"x":1752965580818,"y":58.476},{"x":1752965520689,"y":56.324},{"x":1752965460502,"y":48.014},{"x":1752965403282,"y":39.533},{"x":1752965342837,"y":38.936},{"x":1752965282660,"y":43.916},{"x":1752965222497,"y":49.397},{"x":1752965162327,"y":41.1},{"x":1752965102156,"y":44.308},{"x":1752965041656,"y":40.605},{"x":1752964981488,"y":41.067},{"x":1752964921333,"y":43.946},{"x":1752964861142,"y":45.162},{"x":1752964800971,"y":39.198},{"x":1752964742919,"y":36.495},{"x":1752964682755,"y":38.353},{"x":1752964622577,"y":42.412},{"x":1752964562414,"y":39.604},{"x":1752964502251,"y":47.759},{"x":1752964441815,"y":41.171},{"x":1752964381639,"y":47.084},{"x":1752964321487,"y":54.334},{"x":1752964261278,"y":47.984},{"x":1752964201476,"y":41.957},{"x":1752964140765,"y":45.92},{"x":1752964080580,"y":42.894},{"x":1752964020285,"y":52.644},{"x":1752963962965,"y":53.338},{"x":1752963903095,"y":46.15},{"x":1752963842545,"y":40.289},{"x":1752963782334,"y":41.738},{"x":1752963722163,"y":38.349},{"x":1752963661985,"y":47.002},{"x":1752963601830,"y":48.984},{"x":1752963541371,"y":50.634},{"x":1752963481211,"y":57.256},{"x":1752963421027,"y":40.146},{"x":1752963360847,"y":40.073},{"x":1752963301093,"y":39.014},{"x":1752963240493,"y":45.095},{"x":1752963180316,"y":42.149},{"x":1752963122980,"y":42.19},{"x":1752963062805,"y":43.382},{"x":1752963002646,"y":38.845},{"x":1752962942195,"y":39.668},{"x":1752962882019,"y":44.781},{"x":1752962821864,"y":51.552},{"x":1752962761695,"y":52.806},{"x":1752962701528,"y":48.849},{"x":1752962641083,"y":45.904},{"x":1752962580908,"y":41.896},{"x":1752962520736,"y":49.725},{"x":1752962460630,"y":59.517},{"x":1752962401601,"y":69.966},{"x":1752962342924,"y":71.687},{"x":1752962282747,"y":56.438},{"x":1752962222575,"y":48.586},{"x":1752962162347,"y":44.812},{"x":1752962102175,"y":42.218},{"x":1752962041728,"y":54.568},{"x":1752961981559,"y":41.066},{"x":1752961921438,"y":73.572},{"x":1752961861205,"y":52.114},{"x":1752961801015,"y":46.5},{"x":1752961742924,"y":55.779},{"x":1752961682715,"y":47.779},{"x":1752961622532,"y":43.074},{"x":1752961562363,"y":48.189},{"x":1752961502193,"y":45.777},{"x":1752961441750,"y":58.759},{"x":1752961381572,"y":48.936},{"x":1752961321386,"y":51.681},{"x":1752961261214,"y":45.474},{"x":1752961201068,"y":48.09},{"x":1752961140167,"y":57.831},{"x":1752961082953,"y":61.498},{"x":1752961022794,"y":44.275},{"x":1752960962553,"y":47.473},{"x":1752960902386,"y":43.063},{"x":1752960841944,"y":43.85},{"x":1752960781774,"y":49.639},{"x":1752960721621,"y":55.656},{"x":1752960661457,"y":52.883},{"x":1752960601447,"y":63.767},{"x":1752960540622,"y":69.232},{"x":1752960480429,"y":54.682},{"x":1752960420395,"y":56.974},{"x":1752960362954,"y":53.901},{"x":1752960302777,"y":47.558},{"x":1752960242343,"y":53.068},{"x":1752960182141,"y":50.197},{"x":1752960121960,"y":41.626},{"x":1752960061793,"y":44.215},{"x":1752960001681,"y":49.522},{"x":1752959941165,"y":60.401},{"x":1752959880994,"y":47.651},{"x":1752959820818,"y":50.883},{"x":1752959760624,"y":46.202},{"x":1752959700966,"y":44.956},{"x":1752959643025,"y":42.987},{"x":1752959582854,"y":67.977},{"x":1752959522674,"y":62.413},{"x":1752959462518,"y":49.048},{"x":1752959402346,"y":61.164},{"x":1752959341889,"y":47.462},{"x":1752959281737,"y":48.664},{"x":1752959221563,"y":69.055},{"x":1752959161395,"y":55.325},{"x":1752959101238,"y":62.841},{"x":1752959040797,"y":65.903},{"x":1752958980614,"y":66.683},{"x":1752958920428,"y":58.13},{"x":1752958860252,"y":48.931},{"x":1752958802938,"y":58.391},{"x":1752958742231,"y":67.633},{"x":1752958682053,"y":54.867},{"x":1752958621880,"y":58.264},{"x":1752958561645,"y":46.64},{"x":1752958501480,"y":44.414},{"x":1752958441006,"y":45.212},{"x":1752958380829,"y":64.145},{"x":1752958320658,"y":47.182},{"x":1752958260528,"y":47.151},{"x":1752958203247,"y":50.885},{"x":1752958142804,"y":50.044},{"x":1752958082653,"y":49.66},{"x":1752958022482,"y":47.724},{"x":1752957962317,"y":62.136},{"x":1752957902150,"y":65.95},{"x":1752957841707,"y":49.818},{"x":1752957781533,"y":51.011},{"x":1752957721362,"y":48.869},{"x":1752957661196,"y":47.803},{"x":1752957601213,"y":47.781},{"x":1752957540642,"y":46.078},{"x":1752957480455,"y":49.326},{"x":1752957420322,"y":52.052},{"x":1752957362992,"y":49.709},{"x":1752957302812,"y":48.741},{"x":1752957242375,"y":47.393},{"x":1752957182211,"y":71.383},{"x":1752957122034,"y":71.273},{"x":1752957061855,"y":69.676},{"x":1752957001694,"y":70.589},{"x":1752956941083,"y":74.428},{"x":1752956880859,"y":56.321},{"x":1752956820668,"y":52.385},{"x":1752956760497,"y":44.836},{"x":1752956703287,"y":41.878},{"x":1752956642834,"y":42.231},{"x":1752956582676,"y":48.97},{"x":1752956522514,"y":45.404},{"x":1752956462367,"y":49.398},{"x":1752956402184,"y":49.064},{"x":1752956341730,"y":45.713},{"x":1752956281568,"y":38.558},{"x":1752956221409,"y":41.11},{"x":1752956161256,"y":45.783},{"x":1752956101082,"y":44.772},{"x":1752956040354,"y":50.335},{"x":1752955982994,"y":47.729},{"x":1752955922830,"y":56.278},{"x":1752955862702,"y":46.073},{"x":1752955802511,"y":36.264},{"x":1752955742050,"y":39.451},{"x":1752955681878,"y":38.168},{"x":1752955621715,"y":52.723},{"x":1752955561558,"y":69.223},{"x":1752955501371,"y":46.0},{"x":1752955440893,"y":55.055},{"x":1752955380732,"y":56.483},{"x":1752955320585,"y":55.2},{"x":1752955260519,"y":56.803},{"x":1752955203172,"y":59.83},{"x":1752955142590,"y":48.421},{"x":1752955082433,"y":49.921},{"x":1752955022265,"y":66.665},{"x":1752954962094,"y":47.017},{"x":1752954902095,"y":45.962},{"x":1752954841641,"y":48.169},{"x":1752954781479,"y":51.233},{"x":1752954721302,"y":44.433},{"x":1752954661154,"y":32.325},{"x":1752954600952,"y":43.156},{"x":1752954542993,"y":48.679},{"x":1752954482818,"y":40.832},{"x":1752954422650,"y":50.46},{"x":1752954362482,"y":50.789},{"x":1752954302313,"y":59.121},{"x":1752954241851,"y":58.992},{"x":1752954181662,"y":69.061},{"x":1752954121490,"y":57.734},{"x":1752954061317,"y":64.849},{"x":1752954001152,"y":53.627},{"x":1752953940388,"y":50.844},{"x":1752953880190,"y":77.763},{"x":1752953822906,"y":66.563},{"x":1752953762742,"y":55.671},{"x":1752953702565,"y":49.048},{"x":1752953642135,"y":77.842},{"x":1752953581937,"y":56.496},{"x":1752953521780,"y":50.253},{"x":1752953461620,"y":38.948},{"x":1752953401540,"y":45.788},{"x":1752953340610,"y":45.942},{"x":1752953280232,"y":49.445},{"x":1752953223046,"y":61.965},{"x":1752953162842,"y":57.923},{"x":1752953102680,"y":61.703},{"x":1752953042254,"y":84.35},{"x":1752952982063,"y":60.435},{"x":1752952921895,"y":70.703},{"x":1752952861721,"y":51.536},{"x":1752952801561,"y":43.745},{"x":1752952741068,"y":57.276},{"x":1752952680884,"y":42.564},{"x":1752952620755,"y":43.453},{"x":1752952560588,"y":38.884},{"x":1752952501054,"y":45.203},{"x":1752952440267,"y":50.835},{"x":1752952382871,"y":61.404},{"x":1752952322707,"y":65.59},{"x":1752952262548,"y":62.469},{"x":1752952202389,"y":61.462},{"x":1752952141910,"y":57.238},{"x":1752952081743,"y":49.561},{"x":1752952021583,"y":36.149},{"x":1752951961415,"y":47.653},{"x":1752951901252,"y":46.927},{"x":1752951840796,"y":47.134},{"x":1752951780638,"y":52.363},{"x":1752951720487,"y":57.31},{"x":1752951660394,"y":45.011},{"x":1752951602993,"y":57.546},{"x":1752951542399,"y":73.862},{"x":1752951482218,"y":52.302},{"x":1752951422048,"y":53.841},{"x":1752951361878,"y":63.017},{"x":1752951301722,"y":51.706},{"x":1752951241320,"y":48.902},{"x":1752951181112,"y":62.188},{"x":1752951120917,"y":46.918},{"x":1752951060758,"y":50.845},{"x":1752951000980,"y":44.626},{"x":1752950940375,"y":59.178},{"x":1752950882962,"y":58.253},{"x":1752950822827,"y":66.87},{"x":1752950762643,"y":72.089},{"x":1752950702484,"y":80.715},{"x":1752950641965,"y":66.19},{"x":1752950581789,"y":56.814},{"x":1752950521661,"y":43.638},{"x":1752950461469,"y":36.334},{"x":1752950401298,"y":36.397},{"x":1752950340746,"y":41.898},{"x":1752950280591,"y":41.597},{"x":1752950220428,"y":39.677},{"x":1752950160175,"y":41.588},{"x":1752950102886,"y":37.371},{"x":1752950042399,"y":36.632},{"x":1752949982241,"y":48.314},{"x":1752949922077,"y":66.199},{"x":1752949861917,"y":56.526},{"x":1752949801707,"y":51.911},{"x":1752949741105,"y":52.061},{"x":1752949680852,"y":43.821},{"x":1752949620688,"y":35.385},{"x":1752949560539,"y":48.932},{"x":1752949503299,"y":62.439},{"x":1752949442852,"y":62.363},{"x":1752949382677,"y":43.982},{"x":1752949322495,"y":43.981},{"x":1752949262323,"y":49.843},{"x":1752949202140,"y":43.986},{"x":1752949141701,"y":45.936},{"x":1752949081545,"y":41.647},{"x":1752949021374,"y":45.33},{"x":1752948961192,"y":46.258},{"x":1752948901108,"y":45.187},{"x":1752948840457,"y":39.935},{"x":1752948780300,"y":35.878},{"x":1752948722917,"y":46.541},{"x":1752948662763,"y":47.983},{"x":1752948602594,"y":50.193},{"x":1752948542156,"y":35.989},{"x":1752948481980,"y":44.673},{"x":1752948421821,"y":62.672},{"x":1752948361649,"y":51.957},{"x":1752948301475,"y":60.856},{"x":1752948240991,"y":55.846},{"x":1752948180817,"y":43.028},{"x":1752948120651,"y":43.884},{"x":1752948060490,"y":46.597},{"x":1752948003261,"y":52.264},{"x":1752947942747,"y":51.24},{"x":1752947882589,"y":52.314},{"x":1752947822403,"y":51.508},{"x":1752947762252,"y":50.5},{"x":1752947702073,"y":66.333},{"x":1752947641641,"y":49.819},{"x":1752947581472,"y":61.628},{"x":1752947521308,"y":62.263},{"x":1752947461137,"y":60.911},{"x":1752947400934,"y":49.602},{"x":1752947342977,"y":50.223},{"x":1752947282811,"y":66.542},{"x":1752947222647,"y":64.551},{"x":1752947162487,"y":43.432},{"x":1752947102315,"y":50.116},{"x":1752947041852,"y":55.012},{"x":1752946981681,"y":53.66},{"x":1752946921513,"y":53.51},{"x":1752946861340,"y":71.339},{"x":1752946801195,"y":67.123},{"x":1752946740633,"y":75.774},{"x":1752946680550,"y":88.398},{"x":1752946620368,"y":56.588},{"x":1752946560171,"y":48.888},{"x":1752946502870,"y":73.901},{"x":1752946442443,"y":43.307},{"x":1752946382293,"y":50.509},{"x":1752946322113,"y":41.916},{"x":1752946261927,"y":36.321},{"x":1752946201731,"y":50.3},{"x":1752946141028,"y":49.114},{"x":1752946080821,"y":66.999},{"x":1752946020654,"y":60.503},{"x":1752945960494,"y":62.462},{"x":1752945903246,"y":74.915},{"x":1752945842804,"y":61.738},{"x":1752945782647,"y":64.884},{"x":1752945722497,"y":69.598},{"x":1752945662347,"y":41.703},{"x":1752945602161,"y":53.525},{"x":1752945541718,"y":52.983},{"x":1752945481556,"y":55.515},{"x":1752945421391,"y":57.701},{"x":1752945361225,"y":69.522},{"x":1752945301153,"y":71.762},{"x":1752945240455,"y":48.81},{"x":1752945180261,"y":55.052},{"x":1752945123003,"y":48.83},{"x":1752945062815,"y":54.013},{"x":1752945002655,"y":44.777},{"x":1752944942182,"y":52.25},{"x":1752944881999,"y":64.631},{"x":1752944821831,"y":49.639},{"x":1752944761664,"y":56.758},{"x":1752944701506,"y":58.835},{"x":1752944640994,"y":50.194},{"x":1752944580831,"y":56.437},{"x":1752944520675,"y":62.134},{"x":1752944460522,"y":70.455},{"x":1752944403297,"y":61.168},{"x":1752944342722,"y":65.588},{"x":1752944282546,"y":65.026},{"x":1752944222383,"y":41.023},{"x":1752944162208,"y":51.733},{"x":1752944102035,"y":61.37},{"x":1752944041596,"y":60.508},{"x":1752943981419,"y":53.16},{"x":1752943921258,"y":61.295},{"x":1752943861083,"y":49.225},{"x":1752943800910,"y":52.416},{"x":1752943742959,"y":56.687},{"x":1752943682773,"y":47.352},{"x":1752943622609,"y":48.234},{"x":1752943562433,"y":46.039},{"x":1752943502265,"y":42.453},{"x":1752943441831,"y":49.853},{"x":1752943381669,"y":51.287},{"x":1752943321501,"y":41.582},{"x":1752943261324,"y":40.997},{"x":1752943201160,"y":46.264},{"x":1752943140641,"y":63.038},{"x":1752943080536,"y":69.184},{"x":1752943020346,"y":68.963},{"x":1752942963019,"y":68.18},{"x":1752942902849,"y":61.11},{"x":1752942842411,"y":41.781},{"x":1752942782247,"y":45.21},{"x":1752942722072,"y":46.13},{"x":1752942661924,"y":49.49},{"x":1752942601687,"y":63.832},{"x":1752942540981,"y":53.824},{"x":1752942480796,"y":66.637},{"x":1752942420619,"y":57.213},{"x":1752942360534,"y":67.107},{"x":1752942303241,"y":55.299},{"x":1752942242804,"y":64.866},{"x":1752942182648,"y":45.31},{"x":1752942122474,"y":47.889},{"x":1752942062313,"y":37.653},{"x":1752942002140,"y":42.713},{"x":1752941941696,"y":43.519},{"x":1752941881539,"y":41.54},{"x":1752941821369,"y":46.659},{"x":1752941761195,"y":37.702},{"x":1752941701127,"y":41.224},{"x":1752941640444,"y":70.615},{"x":1752941580298,"y":62.529},{"x":1752941522945,"y":66.816},{"x":1752941462765,"y":55.985},{"x":1752941402604,"y":51.385},{"x":1752941342179,"y":55.804},{"x":1752941281996,"y":50.113},{"x":1752941221833,"y":67.668},{"x":1752941161675,"y":48.355},{"x":1752941101501,"y":47.253},{"x":1752941041040,"y":51.887},{"x":1752940980856,"y":58.693},{"x":1752940920688,"y":45.653},{"x":1752940860582,"y":52.45},{"x":1752940803228,"y":53.091},{"x":1752940742712,"y":42.609},{"x":1752940682537,"y":49.379},{"x":1752940622383,"y":52.614},{"x":1752940562215,"y":53.655},{"x":1752940502041,"y":59.216},{"x":1752940441600,"y":63.821},{"x":1752940381424,"y":73.091},{"x":1752940321250,"y":57.006},{"x":1752940261067,"y":50.595},{"x":1752940200891,"y":49.237},{"x":1752940142873,"y":47.849},{"x":1752940082704,"y":42.479},{"x":1752940022544,"y":37.523},{"x":1752939962387,"y":39.993},{"x":1752939902232,"y":51.715},{"x":1752939841756,"y":65.057},{"x":1752939781598,"y":67.879},{"x":1752939721425,"y":69.674},{"x":1752939661268,"y":61.211},{"x":1752939601092,"y":53.264},{"x":1752939540313,"y":46.584},{"x":1752939482968,"y":46.433},{"x":1752939422799,"y":48.881},{"x":1752939362641,"y":42.949},{"x":1752939302462,"y":46.766},{"x":1752939242024,"y":42.173},{"x":1752939181865,"y":46.461},{"x":1752939121675,"y":49.607},{"x":1752939061557,"y":36.505},{"x":1752939001737,"y":34.964},{"x":1752938941103,"y":39.496},{"x":1752938880888,"y":56.529},{"x":1752938820706,"y":45.533},{"x":1752938760591,"y":32.671},{"x":1752938703321,"y":35.713},{"x":1752938642850,"y":54.319},{"x":1752938582674,"y":44.032},{"x":1752938522504,"y":49.287},{"x":1752938462341,"y":52.877},{"x":1752938402170,"y":36.955},{"x":1752938341712,"y":23.245},{"x":1752938281549,"y":42.633},{"x":1752938221392,"y":38.472},{"x":1752938161211,"y":62.825},{"x":1752938101207,"y":55.453},{"x":1752938040497,"y":48.705},{"x":1752937980378,"y":48.19},{"x":1752937920089,"y":39.437},{"x":1752937862876,"y":37.972},{"x":1752937802704,"y":36.473},{"x":1752937742256,"y":35.291},{"x":1752937682102,"y":29.33},{"x":1752937621899,"y":24.846},{"x":1752937561680,"y":25.131},{"x":1752937501512,"y":36.638},{"x":1752937441027,"y":35.585},{"x":1752937380910,"y":33.524},{"x":1752937320705,"y":51.926},{"x":1752937260624,"y":51.839},{"x":1752937203361,"y":52.162},{"x":1752937142779,"y":50.537},{"x":1752937082616,"y":53.767},{"x":1752937022429,"y":37.738},{"x":1752936962273,"y":36.302},{"x":1752936902106,"y":28.335},{"x":1752936841661,"y":46.138},{"x":1752936781483,"y":39.132},{"x":1752936721315,"y":38.815},{"x":1752936661142,"y":50.249},{"x":1752936600945,"y":32.024},{"x":1752936540423,"y":30.846},{"x":1752936480317,"y":47.551},{"x":1752936422906,"y":46.856},{"x":1752936362733,"y":39.451},{"x":1752936302574,"y":48.779},{"x":1752936242080,"y":42.77},{"x":1752936181901,"y":34.168},{"x":1752936121736,"y":39.607},{"x":1752936061576,"y":44.787},{"x":1752936001406,"y":49.355},{"x":1752935940872,"y":40.833},{"x":1752935880709,"y":46.694},{"x":1752935820541,"y":54.095},{"x":1752935760340,"y":40.692},{"x":1752935703146,"y":41.061},{"x":1752935642685,"y":53.518},{"x":1752935582537,"y":48.769},{"x":1752935522369,"y":47.061},{"x":1752935462195,"y":21.98},{"x":1752935402024,"y":37.638},{"x":1752935341585,"y":42.455},{"x":1752935281444,"y":46.923},{"x":1752935221168,"y":30.806},{"x":1752935160996,"y":42.246},{"x":1752935100830,"y":26.369},{"x":1752935042899,"y":25.806},{"x":1752934982737,"y":50.623},{"x":1752934922573,"y":53.281},{"x":1752934862411,"y":48.855},{"x":1752934802255,"y":59.084},{"x":1752934741762,"y":53.303},{"x":1752934681607,"y":47.498},{"x":1752934621450,"y":37.814},{"x":1752934561237,"y":17.339},{"x":1752934501235,"y":36.229},{"x":1752934440471,"y":36.769},{"x":1752934380311,"y":34.457},{"x":1752934322984,"y":53.227},{"x":1752934262829,"y":37.19},{"x":1752934202661,"y":34.271},{"x":1752934142160,"y":33.816},{"x":1752934081974,"y":35.517},{"x":1752934021781,"y":28.655},{"x":1752933961623,"y":29.125},{"x":1752933901465,"y":34.513},{"x":1752933840976,"y":32.665},{"x":1752933780808,"y":42.957},{"x":1752933720659,"y":64.463},{"x":1752933660619,"y":38.477},{"x":1752933603220,"y":39.888},{"x":1752933542710,"y":27.999},{"x":1752933482538,"y":32.397},{"x":1752933422378,"y":39.652},{"x":1752933362225,"y":27.717},{"x":1752933302063,"y":27.582},{"x":1752933241616,"y":28.334},{"x":1752933181455,"y":42.084},{"x":1752933121262,"y":40.809},{"x":1752933061092,"y":38.66},{"x":1752933000908,"y":46.615},{"x":1752932940376,"y":56.675},{"x":1752932880175,"y":39.614},{"x":1752932822910,"y":33.312},{"x":1752932762739,"y":30.018},{"x":1752932702567,"y":61.918},{"x":1752932642108,"y":44.809},{"x":1752932581935,"y":46.948},{"x":1752932521776,"y":33.021},{"x":1752932461604,"y":33.484},{"x":1752932401439,"y":26.71},{"x":1752932340959,"y":17.026},{"x":1752932280829,"y":18.26},{"x":1752932220648,"y":22.54},{"x":1752932160565,"y":34.701},{"x":1752932103229,"y":39.001},{"x":1752932042772,"y":46.868},{"x":1752931982616,"y":54.366},{"x":1752931922450,"y":65.781},{"x":1752931862292,"y":39.951},{"x":1752931802082,"y":39.626},{"x":1752931741499,"y":27.131},{"x":1752931681310,"y":23.725},{"x":1752931621126,"y":36.575},{"x":1752931560927,"y":34.928},{"x":1752931500776,"y":29.754},{"x":1752931442918,"y":32.639},{"x":1752931382763,"y":32.379},{"x":1752931322582,"y":45.255},{"x":1752931262398,"y":47.914},{"x":1752931202228,"y":27.671},{"x":1752931141759,"y":22.18},{"x":1752931081594,"y":24.373},{"x":1752931021407,"y":24.102},{"x":1752930961226,"y":25.083},{"x":1752930901187,"y":24.667},{"x":1752930840683,"y":43.049},{"x":1752930780553,"y":44.777},{"x":1752930720402,"y":50.733},{"x":1752930662999,"y":43.424},{"x":1752930602835,"y":44.697},{"x":1752930542393,"y":26.118},{"x":1752930482228,"y":33.867},{"x":1752930422068,"y":30.695},{"x":1752930361795,"y":32.263},{"x":1752930301598,"y":37.669},{"x":1752930241127,"y":26.51},{"x":1752930180950,"y":36.868},{"x":1752930120750,"y":53.772},{"x":1752930060617,"y":48.446},{"x":1752930001752,"y":30.22},{"x":1752929942859,"y":28.525},{"x":1752929882702,"y":24.08},{"x":1752929822536,"y":30.345},{"x":1752929762378,"y":30.714},{"x":1752929702175,"y":22.513},{"x":1752929641737,"y":50.291},{"x":1752929581566,"y":40.598},{"x":1752929521388,"y":39.221},{"x":1752929461230,"y":32.704},{"x":1752929401040,"y":34.828},{"x":1752929340483,"y":40.658},{"x":1752929280340,"y":31.181},{"x":1752929222985,"y":18.243},{"x":1752929162829,"y":31.535},{"x":1752929102660,"y":30.081},{"x":1752929042219,"y":27.866},{"x":1752928982029,"y":29.322},{"x":1752928921823,"y":27.463},{"x":1752928861660,"y":23.912},{"x":1752928801506,"y":20.379},{"x":1752928741020,"y":29.059},{"x":1752928680854,"y":46.702},{"x":1752928620696,"y":24.37},{"x":1752928560523,"y":41.046},{"x":1752928503278,"y":33.569},{"x":1752928442793,"y":45.42},{"x":1752928382629,"y":40.247},{"x":1752928322460,"y":49.779},{"x":1752928262304,"y":40.564},{"x":1752928202132,"y":35.186},{"x":1752928141658,"y":27.899},{"x":1752928081479,"y":30.003},{"x":1752928021289,"y":32.047},{"x":1752927961123,"y":32.314},{"x":1752927900936,"y":24.09},{"x":1752927842924,"y":21.816},{"x":1752927782768,"y":26.835},{"x":1752927722598,"y":31.698},{"x":1752927662425,"y":53.522},{"x":1752927602269,"y":53.799},{"x":1752927541788,"y":53.53},{"x":1752927481615,"y":44.536},{"x":1752927421472,"y":36.62},{"x":1752927361225,"y":25.134},{"x":1752927301173,"y":35.456},{"x":1752927240607,"y":28.296},{"x":1752927180608,"y":31.487},{"x":1752927120264,"y":30.292},{"x":1752927063007,"y":29.351},{"x":1752927002807,"y":19.689},{"x":1752926942365,"y":24.301},{"x":1752926882204,"y":30.91},{"x":1752926822033,"y":26.141},{"x":1752926761874,"y":38.647},{"x":1752926701691,"y":17.542},{"x":1752926641209,"y":18.921},{"x":1752926581003,"y":12.97},{"x":1752926520828,"y":48.751},{"x":1752926460666,"y":51.525},{"x":1752926403395,"y":52.52},{"x":1752926342827,"y":74.175},{"x":1752926282660,"y":51.978},{"x":1752926222496,"y":52.415},{"x":1752926162320,"y":44.59},{"x":1752926102170,"y":30.52},{"x":1752926041757,"y":48.033},{"x":1752925981560,"y":62.674},{"x":1752925921360,"y":37.691},{"x":1752925861213,"y":45.659},{"x":1752925800938,"y":45.762},{"x":1752925740035,"y":37.228},{"x":1752925682871,"y":48.079},{"x":1752925622705,"y":46.456},{"x":1752925562543,"y":47.088},{"x":1752925502356,"y":41.547},{"x":1752925441895,"y":38.931},{"x":1752925381700,"y":31.695},{"x":1752925321534,"y":26.387},{"x":1752925261354,"y":40.329},{"x":1752925201202,"y":39.006},{"x":1752925140540,"y":37.243},{"x":1752925080322,"y":43.73},{"x":1752925020067,"y":63.345},{"x":1752924962865,"y":66.391},{"x":1752924902701,"y":76.173},{"x":1752924842278,"y":60.896},{"x":1752924782113,"y":61.053},{"x":1752924721938,"y":56.216},{"x":1752924661761,"y":52.048},{"x":1752924601608,"y":68.438},{"x":1752924541069,"y":49.138},{"x":1752924480844,"y":60.747},{"x":1752924420667,"y":64.1},{"x":1752924360492,"y":48.599},{"x":1752924303295,"y":50.986},{"x":1752924242832,"y":54.75},{"x":1752924182660,"y":54.12},{"x":1752924122492,"y":47.09},{"x":1752924062319,"y":48.209},{"x":1752924002163,"y":34.161},{"x":1752923941712,"y":48.956},{"x":1752923881555,"y":43.828},{"x":1752923821385,"y":32.269},{"x":1752923761188,"y":30.396},{"x":1752923701222,"y":40.653},{"x":1752923640561,"y":69.08},{"x":1752923580367,"y":59.076},{"x":1752923522980,"y":54.23},{"x":1752923462820,"y":60.775},{"x":1752923402647,"y":49.518},{"x":1752923342227,"y":57.435},{"x":1752923282009,"y":41.382},{"x":1752923221851,"y":28.51},{"x":1752923161692,"y":40.847},{"x":1752923101501,"y":41.322},{"x":1752923041016,"y":39.631},{"x":1752922980854,"y":33.215},{"x":1752922920704,"y":31.538},{"x":1752922860571,"y":28.744},{"x":1752922801804,"y":36.332},{"x":1752922740174,"y":31.844},{"x":1752922682912,"y":38.487},{"x":1752922622744,"y":33.804},{"x":1752922562559,"y":26.995},{"x":1752922502396,"y":41.335},{"x":1752922441941,"y":36.496},{"x":1752922381780,"y":36.829},{"x":1752922321611,"y":35.148},{"x":1752922261454,"y":40.324},{"x":1752922201290,"y":59.029},{"x":1752922140821,"y":51.221},{"x":1752922080701,"y":73.956},{"x":1752922020566,"y":58.366},{"x":1752921960350,"y":48.068},{"x":1752921903064,"y":54.18},{"x":1752921842629,"y":35.929},{"x":1752921782451,"y":50.995},{"x":1752921722286,"y":50.688},{"x":1752921662122,"y":57.169},{"x":1752921601959,"y":54.913},{"x":1752921541510,"y":53.972},{"x":1752921481333,"y":41.397},{"x":1752921421173,"y":57.832},{"x":1752921361004,"y":34.944},{"x":1752921300824,"y":24.764},{"x":1752921242898,"y":42.58},{"x":1752921182715,"y":37.296},{"x":1752921122556,"y":33.124},{"x":1752921062394,"y":38.071},{"x":1752921002176,"y":31.566},{"x":1752920941587,"y":36.747},{"x":1752920881400,"y":16.684},{"x":1752920821242,"y":32.853},{"x":1752920761070,"y":41.503},{"x":1752920700893,"y":24.11},{"x":1752920642945,"y":31.987},{"x":1752920582776,"y":45.255},{"x":1752920522612,"y":53.085},{"x":1752920462437,"y":54.185},{"x":1752920402256,"y":42.309},{"x":1752920341807,"y":43.839},{"x":1752920281614,"y":47.863},{"x":1752920221441,"y":45.938},{"x":1752920161271,"y":18.218},{"x":1752920101219,"y":16.469},{"x":1752920040427,"y":31.862},{"x":1752919980231,"y":30.498},{"x":1752919922926,"y":45.615},{"x":1752919862751,"y":53.667},{"x":1752919802582,"y":47.154},{"x":1752919742124,"y":33.471},{"x":1752919681940,"y":42.478},{"x":1752919621776,"y":52.017},{"x":1752919561617,"y":33.73},{"x":1752919501453,"y":35.25},{"x":1752919440974,"y":54.865},{"x":1752919380811,"y":48.415},{"x":1752919320648,"y":40.471},{"x":1752919260580,"y":46.805},{"x":1752919203263,"y":46.139},{"x":1752919142774,"y":48.694},{"x":1752919082597,"y":50.836},{"x":1752919022432,"y":49.376},{"x":1752918962260,"y":51.757},{"x":1752918902099,"y":39.428},{"x":1752918841626,"y":57.836},{"x":1752918781453,"y":40.499},{"x":1752918721305,"y":38.154},{"x":1752918661114,"y":25.302},{"x":1752918600933,"y":40.728},{"x":1752918540138,"y":55.095},{"x":1752918482906,"y":37.952},{"x":1752918422744,"y":51.115},{"x":1752918362573,"y":63.596},{"x":1752918302407,"y":35.695},{"x":1752918241975,"y":31.642},{"x":1752918181804,"y":29.788},{"x":1752918121642,"y":26.965},{"x":1752918061487,"y":41.851},{"x":1752918001335,"y":32.732},{"x":1752917940801,"y":47.671},{"x":1752917880649,"y":65.605},{"x":1752917820504,"y":49.386},{"x":1752917760524,"y":30.212},{"x":1752917702990,"y":48.684},{"x":1752917642567,"y":45.377},{"x":1752917582401,"y":43.186},{"x":1752917522237,"y":36.745},{"x":1752917462030,"y":21.845},{"x":1752917401818,"y":53.588},{"x":1752917341037,"y":34.44},{"x":1752917280859,"y":34.242},{"x":1752917220666,"y":35.973},{"x":1752917160536,"y":32.125},{"x":1752917103311,"y":38.657},{"x":1752917042838,"y":27.973},{"x":1752916982671,"y":36.836},{"x":1752916922513,"y":47.345},{"x":1752916862349,"y":50.931},{"x":1752916802162,"y":48.387},{"x":1752916741720,"y":39.767},{"x":1752916681556,"y":36.629},{"x":1752916621379,"y":30.179},{"x":1752916561198,"y":27.714},{"x":1752916501108,"y":46.205},{"x":1752916440560,"y":54.497},{"x":1752916380420,"y":47.927},{"x":1752916320159,"y":43.278},{"x":1752916262876,"y":41.852},{"x":1752916202703,"y":41.274},{"x":1752916142226,"y":45.366},{"x":1752916082061,"y":26.43},{"x":1752916021875,"y":25.304},{"x":1752915961721,"y":44.746},{"x":1752915901549,"y":40.224},{"x":1752915841080,"y":57.295},{"x":1752915780907,"y":51.347},{"x":1752915720735,"y":61.961},{"x":1752915660575,"y":49.753},{"x":1752915603380,"y":54.084},{"x":1752915542819,"y":28.912},{"x":1752915482659,"y":34.598},{"x":1752915422450,"y":38.107},{"x":1752915362285,"y":41.357},{"x":1752915302125,"y":42.032},{"x":1752915241675,"y":42.35},{"x":1752915181516,"y":52.343},{"x":1752915121355,"y":32.489},{"x":1752915061172,"y":31.531},{"x":1752915000947,"y":41.667},{"x":1752914942988,"y":34.806},{"x":1752914882835,"y":49.621},{"x":1752914822652,"y":46.829},{"x":1752914762485,"y":52.29},{"x":1752914702314,"y":53.897},{"x":1752914641840,"y":50.476},{"x":1752914581674,"y":42.408},{"x":1752914521510,"y":53.021},{"x":1752914461343,"y":57.226},{"x":1752914401171,"y":44.201},{"x":1752914340581,"y":48.832},{"x":1752914280395,"y":27.497},{"x":1752914220093,"y":28.28},{"x":1752914162866,"y":33.604},{"x":1752914102708,"y":33.15},{"x":1752914042282,"y":49.065},{"x":1752913982127,"y":50.45},{"x":1752913921939,"y":37.589},{"x":1752913861765,"y":27.647},{"x":1752913801596,"y":27.995},{"x":1752913741098,"y":43.121},{"x":1752913680893,"y":33.922},{"x":1752913620707,"y":59.903},{"x":1752913560548,"y":54.287},{"x":1752913500091,"y":56.52},{"x":1752913442862,"y":61.573},{"x":1752913382699,"y":64.569},{"x":1752913322536,"y":54.274},{"x":1752913262375,"y":53.174},{"x":1752913202226,"y":45.169},{"x":1752913141720,"y":52.87},{"x":1752913081562,"y":51.604},{"x":1752913021392,"y":29.057},{"x":1752912961206,"y":27.26},{"x":1752912901205,"y":39.609},{"x":1752912840507,"y":36.396},{"x":1752912780290,"y":41.523},{"x":1752912723043,"y":41.242},{"x":1752912662859,"y":33.284},{"x":1752912602705,"y":34.122},{"x":1752912542269,"y":32.058},{"x":1752912482091,"y":30.251},{"x":1752912421918,"y":27.147},{"x":1752912361755,"y":35.223},{"x":1752912301588,"y":42.319},{"x":1752912241142,"y":42.834},{"x":1752912180963,"y":54.499},{"x":1752912120800,"y":57.902},{"x":1752912060608,"y":43.676},{"x":1752912003410,"y":42.105},{"x":1752911942830,"y":43.932},{"x":1752911882666,"y":51.469},{"x":1752911822502,"y":31.823},{"x":1752911762345,"y":39.73},{"x":1752911702189,"y":43.018},{"x":1752911641730,"y":51.755},{"x":1752911581574,"y":50.895},{"x":1752911521383,"y":39.23},{"x":1752911461181,"y":30.679},{"x":1752911401012,"y":32.547},{"x":1752911340258,"y":26.256},{"x":1752911282958,"y":41.727},{"x":1752911222796,"y":43.995},{"x":1752911162624,"y":44.94},{"x":1752911102453,"y":53.022},{"x":1752911042042,"y":62.332},{"x":1752910981888,"y":44.707},{"x":1752910921678,"y":45.346},{"x":1752910861500,"y":40.787},{"x":1752910801343,"y":40.807},{"x":1752910740806,"y":36.309},{"x":1752910680650,"y":33.177},{"x":1752910620556,"y":50.494},{"x":1752910560296,"y":65.26},{"x":1752910502955,"y":42.375},{"x":1752910442480,"y":43.855},{"x":1752910382285,"y":40.618},{"x":1752910322107,"y":28.124},{"x":1752910261925,"y":26.118},{"x":1752910201780,"y":41.091},{"x":1752910141225,"y":32.6},{"x":1752910081036,"y":45.923},{"x":1752910020839,"y":42.072},{"x":1752909960532,"y":52.453},{"x":1752909900103,"y":52.522},{"x":1752909842865,"y":38.632},{"x":1752909782708,"y":35.914},{"x":1752909722548,"y":46.207},{"x":1752909662391,"y":43.974},{"x":1752909602232,"y":33.5},{"x":1752909541764,"y":35.926},{"x":1752909481605,"y":26.658},{"x":1752909421449,"y":35.203},{"x":1752909361274,"y":30.13},{"x":1752909301141,"y":46.585},{"x":1752909240451,"y":48.099},{"x":1752909180272,"y":56.314},{"x":1752909122932,"y":46.374},{"x":1752909062790,"y":55.091},{"x":1752909002608,"y":41.654},{"x":1752908942189,"y":34.461},{"x":1752908882013,"y":35.495},{"x":1752908821873,"y":42.815},{"x":1752908761679,"y":42.427},{"x":1752908701515,"y":46.804},{"x":1752908640961,"y":49.537},{"x":1752908580802,"y":56.606},{"x":1752908520642,"y":52.563},{"x":1752908460552,"y":54.021},{"x":1752908403246,"y":41.411},{"x":1752908342710,"y":43.885},{"x":1752908282547,"y":40.322},{"x":1752908222366,"y":39.47},{"x":1752908162208,"y":50.38},{"x":1752908102043,"y":53.591},{"x":1752908041577,"y":49.625},{"x":1752907981429,"y":59.957},{"x":1752907921262,"y":65.464},{"x":1752907861099,"y":47.264},{"x":1752907800881,"y":57.853},{"x":1752907742885,"y":42.176},{"x":1752907682707,"y":37.505},{"x":1752907622534,"y":42.123},{"x":1752907562361,"y":52.982},{"x":1752907502233,"y":32.272},{"x":1752907441755,"y":45.211},{"x":1752907381596,"y":44.433},{"x":1752907321437,"y":51.357},{"x":1752907261254,"y":50.851},{"x":1752907201091,"y":51.044},{"x":1752907142907,"y":58.434},{"x":1752907082730,"y":47.985},{"x":1752907022554,"y":35.837},{"x":1752906962374,"y":34.2},{"x":1752906902213,"y":43.87},{"x":1752906841768,"y":53.299},{"x":1752906781609,"y":39.024},{"x":1752906721458,"y":42.15},{"x":1752906661258,"y":34.9},{"x":1752906601240,"y":35.019},{"x":1752906540519,"y":34.461},{"x":1752906480395,"y":42.718},{"x":1752906422993,"y":52.12},{"x":1752906362835,"y":48.609},{"x":1752906302669,"y":42.144},{"x":1752906242194,"y":40.023},{"x":1752906182019,"y":57.284},{"x":1752906121854,"y":30.954},{"x":1752906061653,"y":57.699},{"x":1752906001489,"y":33.766},{"x":1752905940988,"y":39.557},{"x":1752905880847,"y":55.455},{"x":1752905820659,"y":62.912},{"x":1752905760540,"y":44.527},{"x":1752905700943,"y":48.268},{"x":1752905642881,"y":43.078},{"x":1752905582716,"y":55.533},{"x":1752905522552,"y":41.449},{"x":1752905462386,"y":67.534},{"x":1752905402215,"y":50.573},{"x":1752905341771,"y":61.383},{"x":1752905281612,"y":61.294},{"x":1752905221444,"y":63.768},{"x":1752905161284,"y":42.677},{"x":1752905101129,"y":34.566},{"x":1752905040635,"y":27.387},{"x":1752904980486,"y":28.329},{"x":1752904920277,"y":29.635},{"x":1752904862921,"y":35.757},{"x":1752904802762,"y":41.484},{"x":1752904742076,"y":35.313},{"x":1752904681908,"y":35.313},{"x":1752904621743,"y":32.1},{"x":1752904561564,"y":25.317},{"x":1752904501402,"y":24.56},{"x":1752904440918,"y":29.448},{"x":1752904380764,"y":28.914},{"x":1752904320625,"y":32.013},{"x":1752904260448,"y":46.375},{"x":1752904203112,"y":40.096},{"x":1752904142664,"y":39.587},{"x":1752904082498,"y":41.558},{"x":1752904022325,"y":32.747},{"x":1752903962184,"y":29.482},{"x":1752903901961,"y":26.196},{"x":1752903841536,"y":28.518},{"x":1752903781347,"y":30.184},{"x":1752903721160,"y":29.422},{"x":1752903660994,"y":25.957},{"x":1752903601062,"y":29.443},{"x":1752903540293,"y":32.089},{"x":1752903482917,"y":38.494},{"x":1752903422751,"y":41.269},{"x":1752903362510,"y":45.538},{"x":1752903302346,"y":45.666},{"x":1752903241881,"y":41.363},{"x":1752903181726,"y":31.538},{"x":1752903121526,"y":31.029},{"x":1752903061279,"y":25.082},{"x":1752903001109,"y":25.195},{"x":1752902940402,"y":28.237},{"x":1752902883016,"y":32.822},{"x":1752902822837,"y":33.34},{"x":1752902762681,"y":38.099},{"x":1752902702517,"y":39.286},{"x":1752902642095,"y":37.122},{"x":1752902581924,"y":39.998},{"x":1752902521755,"y":35.438},{"x":1752902461598,"y":33.261},{"x":1752902401428,"y":31.642},{"x":1752902340928,"y":33.899},{"x":1752902280769,"y":32.807},{"x":1752902220639,"y":41.11},{"x":1752902160503,"y":40.662},{"x":1752902103197,"y":40.868},{"x":1752902042739,"y":36.576},{"x":1752901982591,"y":39.105},{"x":1752901922412,"y":32.544},{"x":1752901862236,"y":40.991},{"x":1752901802045,"y":28.912},{"x":1752901741615,"y":33.211},{"x":1752901681442,"y":33.551},{"x":1752901621278,"y":31.016},{"x":1752901561119,"y":30.224},{"x":1752901500953,"y":27.866},{"x":1752901440306,"y":30.804},{"x":1752901382948,"y":28.815},{"x":1752901322794,"y":26.636},{"x":1752901262730,"y":26.364},{"x":1752901202773,"y":30.18},{"x":1752901141776,"y":36.244},{"x":1752901081620,"y":40.105},{"x":1752901021444,"y":51.817},{"x":1752900961279,"y":48.611},{"x":1752900901115,"y":49.259},{"x":1752900840641,"y":36.106},{"x":1752900780479,"y":35.577},{"x":1752900720359,"y":28.296},{"x":1752900662939,"y":25.926},{"x":1752900602783,"y":26.911},{"x":1752900542331,"y":39.445},{"x":1752900482155,"y":38.735},{"x":1752900421973,"y":50.898},{"x":1752900361733,"y":46.566},{"x":1752900301543,"y":51.988},{"x":1752900240921,"y":49.72},{"x":1752900180764,"y":50.771},{"x":1752900120610,"y":50.295},{"x":1752900060450,"y":50.643},{"x":1752900003251,"y":51.282},{"x":1752899942804,"y":47.192},{"x":1752899882647,"y":37.425},{"x":1752899822489,"y":27.197},{"x":1752899762313,"y":34.147},{"x":1752899702155,"y":35.321},{"x":1752899641721,"y":29.066},{"x":1752899581552,"y":30.499},{"x":1752899521384,"y":30.08},{"x":1752899461223,"y":30.625},{"x":1752899401217,"y":31.846},{"x":1752899340492,"y":29.723},{"x":1752899280213,"y":29.45},{"x":1752899222921,"y":37.028},{"x":1752899162761,"y":35.928},{"x":1752899102601,"y":37.019},{"x":1752899042186,"y":40.368},{"x":1752898982005,"y":30.878},{"x":1752898921833,"y":28.349},{"x":1752898861672,"y":27.776},{"x":1752898801488,"y":30.665},{"x":1752898740998,"y":29.232},{"x":1752898680837,"y":31.762},{"x":1752898620715,"y":34.504},{"x":1752898560508,"y":31.341},{"x":1752898500872,"y":28.636},{"x":1752898442897,"y":29.648},{"x":1752898382744,"y":32.904},{"x":1752898322584,"y":30.126},{"x":1752898262416,"y":29.823},{"x":1752898202262,"y":28.112},{"x":1752898141783,"y":30.7},{"x":1752898081624,"y":32.594},{"x":1752898021453,"y":33.89},{"x":1752897961208,"y":30.914},{"x":1752897901038,"y":30.022},{"x":1752897840628,"y":29.501},{"x":1752897780367,"y":28.873},{"x":1752897723036,"y":32.544},{"x":1752897662839,"y":34.048},{"x":1752897602590,"y":30.77},{"x":1752897541677,"y":30.53},{"x":1752897481516,"y":34.56},{"x":1752897421377,"y":34.641},{"x":1752897361155,"y":40.928},{"x":1752897300969,"y":36.175},{"x":1752897242885,"y":32.383},{"x":1752897182710,"y":36.1},{"x":1752897122552,"y":34.451},{"x":1752897062380,"y":34.016},{"x":1752897002212,"y":28.633},{"x":1752896941762,"y":31.828},{"x":1752896881583,"y":28.419},{"x":1752896821419,"y":28.37},{"x":1752896761244,"y":26.303},{"x":1752896701441,"y":33.913},{"x":1752896640758,"y":33.729},{"x":1752896580599,"y":31.879},{"x":1752896520509,"y":28.849},{"x":1752896460310,"y":32.268},{"x":1752896402999,"y":27.943},{"x":1752896342551,"y":29.736},{"x":1752896282374,"y":30.255},{"x":1752896222224,"y":35.128},{"x":1752896162047,"y":32.235},{"x":1752896101866,"y":28.405},{"x":1752896041358,"y":36.586},{"x":1752895981201,"y":30.194},{"x":1752895921022,"y":32.936},{"x":1752895860868,"y":29.818},{"x":1752895801231,"y":31.339},{"x":1752895740255,"y":28.605},{"x":1752895682876,"y":37.079},{"x":1752895622705,"y":34.524},{"x":1752895562533,"y":35.155},{"x":1752895502349,"y":31.243},{"x":1752895441888,"y":33.167},{"x":1752895381735,"y":32.701},{"x":1752895321575,"y":30.265},{"x":1752895261400,"y":30.331},{"x":1752895201223,"y":29.675},{"x":1752895140676,"y":29.201},{"x":1752895080528,"y":28.113},{"x":1752895020416,"y":27.773},{"x":1752894960066,"y":27.215},{"x":1752894902846,"y":33.652},{"x":1752894842425,"y":33.366},{"x":1752894782266,"y":32.802},{"x":1752894722093,"y":36.463},{"x":1752894661922,"y":33.864},{"x":1752894601749,"y":30.505},{"x":1752894541272,"y":29.548},{"x":1752894481059,"y":28.388},{"x":1752894420862,"y":32.096},{"x":1752894360702,"y":33.071},{"x":1752894303129,"y":32.874},{"x":1752894241413,"y":31.338},{"x":1752894181552,"y":37.395},{"x":1752894121343,"y":29.399},{"x":1752894061150,"y":33.521},{"x":1752894001848,"y":27.789},{"x":1752893942892,"y":29.082},{"x":1752893882740,"y":30.861},{"x":1752893822518,"y":32.422},{"x":1752893762347,"y":30.154},{"x":1752893702169,"y":32.684},{"x":1752893641667,"y":31.448},{"x":1752893581502,"y":33.615},{"x":1752893521337,"y":32.375},{"x":1752893461151,"y":28.187},{"x":1752893400957,"y":35.242},{"x":1752893340352,"y":28.996},{"x":1752893282965,"y":29.747},{"x":1752893222810,"y":28.278},{"x":1752893162651,"y":28.298},{"x":1752893102475,"y":26.613},{"x":1752893042029,"y":32.404},{"x":1752892981873,"y":36.934},{"x":1752892921697,"y":33.019},{"x":1752892861519,"y":28.321},{"x":1752892801347,"y":30.015},{"x":1752892740631,"y":33.177},{"x":1752892680646,"y":40.939},{"x":1752892620246,"y":38.122},{"x":1752892562977,"y":41.117},{"x":1752892502767,"y":41.155},{"x":1752892442332,"y":47.134},{"x":1752892382176,"y":46.867},{"x":1752892321985,"y":41.655},{"x":1752892261834,"y":36.679},{"x":1752892201594,"y":39.915},{"x":1752892141006,"y":28.456},{"x":1752892080794,"y":28.497},{"x":1752892020614,"y":29.169},{"x":1752891960515,"y":31.362},{"x":1752891903255,"y":33.446},{"x":1752891842801,"y":33.981},{"x":1752891782634,"y":35.517},{"x":1752891722471,"y":41.226},{"x":1752891662312,"y":32.744},{"x":1752891602149,"y":40.298},{"x":1752891541702,"y":41.843},{"x":1752891481552,"y":39.609},{"x":1752891421369,"y":43.737},{"x":1752891361202,"y":42.972},{"x":1752891301086,"y":37.198},{"x":1752891240284,"y":38.919},{"x":1752891183015,"y":39.881},{"x":1752891122804,"y":36.513},{"x":1752891062637,"y":40.658},{"x":1752891002481,"y":36.129},{"x":1752890942035,"y":35.438},{"x":1752890881864,"y":37.515},{"x":1752890821698,"y":33.216},{"x":1752890761542,"y":30.739},{"x":1752890701385,"y":34.404},{"x":1752890640916,"y":34.666},{"x":1752890580732,"y":34.678},{"x":1752890520626,"y":39.013},{"x":1752890460412,"y":38.7},{"x":1752890403175,"y":36.07},{"x":1752890342008,"y":32.931},{"x":1752890281845,"y":29.642},{"x":1752890221690,"y":30.262},{"x":1752890161526,"y":31.571},{"x":1752890101363,"y":32.366},{"x":1752890040883,"y":31.681},{"x":1752889980722,"y":30.908},{"x":1752889920565,"y":31.317},{"x":1752889860355,"y":31.443},{"x":1752889803045,"y":35.013},{"x":1752889742605,"y":43.159},{"x":1752889682445,"y":38.527},{"x":1752889622286,"y":38.75},{"x":1752889562125,"y":43.753},{"x":1752889501942,"y":39.327},{"x":1752889441499,"y":34.834},{"x":1752889381334,"y":31.971},{"x":1752889321148,"y":30.31},{"x":1752889260970,"y":37.594},{"x":1752889201052,"y":36.0},{"x":1752889140239,"y":34.936},{"x":1752889082875,"y":34.38},{"x":1752889022708,"y":32.931},{"x":1752888962543,"y":30.302},{"x":1752888902373,"y":29.861},{"x":1752888841899,"y":29.963},{"x":1752888781725,"y":28.045},{"x":1752888721565,"y":33.205},{"x":1752888661394,"y":29.702},{"x":1752888601317,"y":30.593},{"x":1752888540589,"y":29.73},{"x":1752888480405,"y":32.392},{"x":1752888423005,"y":44.072},{"x":1752888362822,"y":35.624},{"x":1752888302656,"y":36.046},{"x":1752888242226,"y":36.381},{"x":1752888182072,"y":35.295},{"x":1752888121901,"y":33.478},{"x":1752888061722,"y":29.751},{"x":1752888001536,"y":30.035},{"x":1752887941077,"y":31.933},{"x":1752887880897,"y":37.451},{"x":1752887820744,"y":45.431},{"x":1752887760623,"y":57.531},{"x":1752887701009,"y":53.299},{"x":1752887640118,"y":54.108},{"x":1752887582889,"y":52.124},{"x":1752887522710,"y":38.615},{"x":1752887462550,"y":28.22},{"x":1752887402381,"y":28.59},{"x":1752887341907,"y":30.514},{"x":1752887281736,"y":35.371},{"x":1752887221559,"y":30.912},{"x":1752887161394,"y":30.53},{"x":1752887101219,"y":36.082},{"x":1752887040745,"y":37.532},{"x":1752886980570,"y":32.002},{"x":1752886920468,"y":30.804},{"x":1752886860321,"y":32.291},{"x":1752886802910,"y":40.294},{"x":1752886742332,"y":47.524},{"x":1752886682174,"y":48.282},{"x":1752886622000,"y":43.774},{"x":1752886561803,"y":42.968},{"x":1752886501635,"y":32.513},{"x":1752886441182,"y":34.762},{"x":1752886380996,"y":30.505},{"x":1752886320836,"y":31.231},{"x":1752886260646,"y":29.965},{"x":1752886200930,"y":31.579},{"x":1752886140258,"y":39.969},{"x":1752886082923,"y":41.196},{"x":1752886022748,"y":37.842},{"x":1752885962585,"y":40.27},{"x":1752885902421,"y":39.398},{"x":1752885841947,"y":30.492},{"x":1752885781775,"y":36.7},{"x":1752885721616,"y":34.95},{"x":1752885661437,"y":30.341},{"x":1752885601270,"y":31.645},{"x":1752885540757,"y":30.346},{"x":1752885480589,"y":35.471},{"x":1752885420451,"y":33.365},{"x":1752885360329,"y":35.579},{"x":1752885302931,"y":35.071},{"x":1752885242464,"y":33.918},{"x":1752885182303,"y":36.924},{"x":1752885122137,"y":31.857},{"x":1752885061954,"y":33.112},{"x":1752885001733,"y":34.664},{"x":1752884941101,"y":35.497},{"x":1752884880840,"y":32.152},{"x":1752884820677,"y":29.905},{"x":1752884760515,"y":34.637},{"x":1752884703314,"y":31.243},{"x":1752884642855,"y":35.071},{"x":1752884582690,"y":32.28},{"x":1752884522503,"y":31.77},{"x":1752884462346,"y":30.111},{"x":1752884402187,"y":29.789},{"x":1752884341703,"y":29.556},{"x":1752884281524,"y":30.657},{"x":1752884221360,"y":29.288},{"x":1752884161194,"y":29.616},{"x":1752884101170,"y":38.194},{"x":1752884040513,"y":35.236},{"x":1752883980343,"y":34.956},{"x":1752883923019,"y":33.842},{"x":1752883862855,"y":31.702},{"x":1752883802693,"y":33.765},{"x":1752883742253,"y":43.46},{"x":1752883682084,"y":38.383},{"x":1752883621916,"y":37.274},{"x":1752883561750,"y":35.637},{"x":1752883501585,"y":32.806},{"x":1752883441129,"y":37.568},{"x":1752883380947,"y":40.471},{"x":1752883320790,"y":48.198},{"x":1752883260631,"y":45.208},{"x":1752883202244,"y":46.417},{"x":1752883140310,"y":44.469},{"x":1752883082981,"y":41.463},{"x":1752883022788,"y":32.482},{"x":1752882962605,"y":43.993},{"x":1752882902452,"y":33.57},{"x":1752882842005,"y":33.851},{"x":1752882781845,"y":37.153},{"x":1752882721668,"y":31.942},{"x":1752882661529,"y":32.492},{"x":1752882601356,"y":39.251},{"x":1752882540867,"y":36.126},{"x":1752882480716,"y":41.268},{"x":1752882420545,"y":43.094},{"x":1752882360378,"y":37.171},{"x":1752882303096,"y":32.126},{"x":1752882242641,"y":33.701},{"x":1752882182477,"y":31.844},{"x":1752882122317,"y":44.807},{"x":1752882062149,"y":37.953},{"x":1752882001945,"y":37.81},{"x":1752881941474,"y":44.232},{"x":1752881881316,"y":36.656},{"x":1752881821146,"y":37.815},{"x":1752881760947,"y":33.928},{"x":1752881700784,"y":35.118},{"x":1752881642885,"y":38.877},{"x":1752881582701,"y":35.612},{"x":1752881522534,"y":37.922},{"x":1752881462378,"y":33.077},{"x":1752881402147,"y":32.339},{"x":1752881341628,"y":31.147},{"x":1752881281399,"y":34.557},{"x":1752881221240,"y":36.436},{"x":1752881161055,"y":37.536},{"x":1752881100877,"y":33.065},{"x":1752881042911,"y":36.802},{"x":1752880982750,"y":36.563},{"x":1752880922590,"y":35.828},{"x":1752880862413,"y":38.743},{"x":1752880802275,"y":33.266},{"x":1752880741802,"y":35.063},{"x":1752880681642,"y":34.458},{"x":1752880621475,"y":34.516},{"x":1752880561288,"y":39.001},{"x":1752880501190,"y":41.841},{"x":1752880440417,"y":35.623},{"x":1752880380258,"y":39.817},{"x":1752880322916,"y":37.791},{"x":1752880262752,"y":42.113},{"x":1752880202570,"y":35.426},{"x":1752880142133,"y":33.821},{"x":1752880081926,"y":35.744},{"x":1752880021763,"y":35.636},{"x":1752879961599,"y":33.334},{"x":1752879901435,"y":34.923},{"x":1752879840937,"y":33.019},{"x":1752879780759,"y":36.044},{"x":1752879720620,"y":32.679},{"x":1752879660452,"y":33.091},{"x":1752879603194,"y":36.761},{"x":1752879542711,"y":51.257},{"x":1752879482565,"y":57.152},{"x":1752879422395,"y":67.05},{"x":1752879362209,"y":64.891},{"x":1752879302044,"y":63.927},{"x":1752879241636,"y":48.581},{"x":1752879181402,"y":48.002},{"x":1752879121237,"y":46.562},{"x":1752879061053,"y":46.046},{"x":1752879000868,"y":45.135},{"x":1752878940046,"y":44.53},{"x":1752878882853,"y":39.521},{"x":1752878822699,"y":36.714},{"x":1752878762537,"y":37.081},{"x":1752878702364,"y":41.245},{"x":1752878641913,"y":48.193},{"x":1752878581753,"y":50.283},{"x":1752878521607,"y":52.172},{"x":1752878461426,"y":53.672},{"x":1752878401239,"y":53.507},{"x":1752878340547,"y":51.663},{"x":1752878280344,"y":41.436},{"x":1752878223015,"y":39.036},{"x":1752878162842,"y":40.996},{"x":1752878102679,"y":38.319},{"x":1752878042250,"y":43.465},{"x":1752877982092,"y":40.665},{"x":1752877921921,"y":41.18},{"x":1752877861755,"y":44.509},{"x":1752877801596,"y":43.384},{"x":1752877741070,"y":54.998},{"x":1752877680799,"y":56.83},{"x":1752877620616,"y":55.964},{"x":1752877560532,"y":51.843},{"x":1752877503279,"y":40.912},{"x":1752877442828,"y":40.884},{"x":1752877382663,"y":40.668},{"x":1752877322499,"y":45.624},{"x":1752877262330,"y":44.582},{"x":1752877202148,"y":44.872},{"x":1752877141692,"y":53.796},{"x":1752877081517,"y":53.166},{"x":1752877021393,"y":55.134},{"x":1752876961190,"y":48.948},{"x":1752876901094,"y":48.977},{"x":1752876840479,"y":41.605},{"x":1752876780356,"y":37.653},{"x":1752876722986,"y":38.348},{"x":1752876662826,"y":40.466},{"x":1752876602660,"y":44.083},{"x":1752876542189,"y":43.358},{"x":1752876482017,"y":56.735},{"x":1752876421850,"y":47.215},{"x":1752876361681,"y":48.559},{"x":1752876301523,"y":49.202},{"x":1752876241073,"y":45.439},{"x":1752876180905,"y":48.408},{"x":1752876120748,"y":47.951},{"x":1752876060613,"y":43.204},{"x":1752876003365,"y":46.805},{"x":1752875942827,"y":43.805},{"x":1752875882649,"y":47.235},{"x":1752875822481,"y":38.252},{"x":1752875762308,"y":42.174},{"x":1752875702150,"y":40.334},{"x":1752875641715,"y":44.182},{"x":1752875581531,"y":42.154},{"x":1752875521352,"y":37.982},{"x":1752875461181,"y":39.7},{"x":1752875400990,"y":50.018},{"x":1752875340392,"y":70.742},{"x":1752875280324,"y":60.543},{"x":1752875222871,"y":60.847},{"x":1752875162718,"y":70.59},{"x":1752875102571,"y":50.273},{"x":1752875042102,"y":41.569},{"x":1752874981928,"y":49.083},{"x":1752874921753,"y":56.67},{"x":1752874861581,"y":42.004},{"x":1752874801423,"y":39.9},{"x":1752874740898,"y":47.337},{"x":1752874680735,"y":45.158},{"x":1752874620565,"y":47.902},{"x":1752874560552,"y":45.086},{"x":1752874503124,"y":42.89},{"x":1752874442703,"y":58.511},{"x":1752874382520,"y":47.205},{"x":1752874322353,"y":49.475},{"x":1752874262219,"y":47.444},{"x":1752874202001,"y":43.354},{"x":1752874141529,"y":48.7},{"x":1752874081348,"y":51.131},{"x":1752874021158,"y":45.726},{"x":1752873960977,"y":48.84},{"x":1752873900814,"y":55.426},{"x":1752873842894,"y":48.128},{"x":1752873782742,"y":50.394},{"x":1752873722563,"y":51.639},{"x":1752873662402,"y":45.627},{"x":1752873602245,"y":42.106},{"x":1752873541757,"y":45.263},{"x":1752873481592,"y":46.212},{"x":1752873421423,"y":45.777},{"x":1752873361200,"y":50.941},{"x":1752873301146,"y":50.401},{"x":1752873240556,"y":59.633},{"x":1752873180353,"y":60.896},{"x":1752873120248,"y":57.353},{"x":1752873062883,"y":61.34},{"x":1752873002732,"y":55.034},{"x":1752872942286,"y":40.51},{"x":1752872882128,"y":38.941},{"x":1752872821952,"y":45.167},{"x":1752872761784,"y":40.221},{"x":1752872701625,"y":43.908},{"x":1752872641188,"y":40.683},{"x":1752872581014,"y":40.804},{"x":1752872520839,"y":38.828},{"x":1752872460677,"y":32.744},{"x":1752872401830,"y":36.74},{"x":1752872340365,"y":35.181},{"x":1752872280170,"y":33.706},{"x":1752872222862,"y":33.647},{"x":1752872162713,"y":45.042},{"x":1752872102551,"y":55.416},{"x":1752872042115,"y":48.66},{"x":1752871981931,"y":46.187},{"x":1752871921764,"y":52.763},{"x":1752871861584,"y":39.871},{"x":1752871801425,"y":37.46},{"x":1752871740953,"y":34.011},{"x":1752871680795,"y":45.944},{"x":1752871620631,"y":39.688},{"x":1752871560481,"y":41.132},{"x":1752871503210,"y":55.675},{"x":1752871442764,"y":43.105},{"x":1752871382606,"y":40.114},{"x":1752871322415,"y":43.631},{"x":1752871262260,"y":31.613},{"x":1752871202105,"y":32.574},{"x":1752871141645,"y":32.748},{"x":1752871081476,"y":44.031},{"x":1752871021295,"y":54.539},{"x":1752870961127,"y":57.099},{"x":1752870900946,"y":58.985},{"x":1752870840202,"y":54.285},{"x":1752870782971,"y":46.999},{"x":1752870722799,"y":44.516},{"x":1752870662637,"y":41.49},{"x":1752870602437,"y":48.404},{"x":1752870541666,"y":29.978},{"x":1752870481428,"y":29.979},{"x":1752870421244,"y":46.9},{"x":1752870361056,"y":39.931},{"x":1752870300894,"y":34.885},{"x":1752870242870,"y":55.905},{"x":1752870182712,"y":52.41},{"x":1752870122539,"y":51.535},{"x":1752870062352,"y":55.817},{"x":1752870002162,"y":46.769},{"x":1752869941681,"y":33.21},{"x":1752869881530,"y":32.208},{"x":1752869821350,"y":45.272},{"x":1752869761189,"y":45.553},{"x":1752869701216,"y":44.534},{"x":1752869640659,"y":45.557},{"x":1752869580546,"y":47.538},{"x":1752869520452,"y":43.208},{"x":1752869460095,"y":42.059},{"x":1752869402855,"y":51.75},{"x":1752869342411,"y":47.361},{"x":1752869282239,"y":55.559},{"x":1752869222070,"y":41.423},{"x":1752869161901,"y":36.341},{"x":1752869101727,"y":30.572},{"x":1752869041289,"y":28.5},{"x":1752868981124,"y":29.08},{"x":1752868920936,"y":38.94},{"x":1752868860781,"y":43.571},{"x":1752868802275,"y":60.438},{"x":1752868740424,"y":57.738},{"x":1752868680342,"y":57.356},{"x":1752868622893,"y":55.501},{"x":1752868562738,"y":49.39},{"x":1752868502575,"y":48.964},{"x":1752868442128,"y":40.786},{"x":1752868381962,"y":42.113},{"x":1752868321800,"y":43.728},{"x":1752868261626,"y":40.291},{"x":1752868201422,"y":52.381},{"x":1752868140953,"y":47.561},{"x":1752868080792,"y":46.803},{"x":1752868020637,"y":41.481},{"x":1752867960483,"y":36.373},{"x":1752867903186,"y":43.29},{"x":1752867842756,"y":34.58},{"x":1752867782587,"y":34.128},{"x":1752867722431,"y":40.993},{"x":1752867662256,"y":53.656},{"x":1752867602086,"y":39.251},{"x":1752867541532,"y":43.388},{"x":1752867481358,"y":52.372},{"x":1752867421198,"y":52.24},{"x":1752867360929,"y":42.46},{"x":1752867300877,"y":44.687},{"x":1752867242977,"y":43.915},{"x":1752867182821,"y":31.428},{"x":1752867122650,"y":31.892},{"x":1752867062485,"y":30.886},{"x":1752867002296,"y":31.208},{"x":1752866941733,"y":36.754},{"x":1752866881556,"y":54.514},{"x":1752866821347,"y":58.506},{"x":1752866761173,"y":61.474},{"x":1752866701012,"y":55.093},{"x":1752866640461,"y":54.525},{"x":1752866580303,"y":49.136},{"x":1752866522949,"y":38.213},{"x":1752866462768,"y":53.84},{"x":1752866402614,"y":41.595},{"x":1752866342171,"y":44.536},{"x":1752866281991,"y":55.795},{"x":1752866221822,"y":42.229},{"x":1752866161654,"y":36.084},{"x":1752866101478,"y":54.618},{"x":1752866040990,"y":44.783},{"x":1752865980837,"y":36.702},{"x":1752865920679,"y":32.168},{"x":1752865860482,"y":37.891},{"x":1752865803267,"y":39.697},{"x":1752865742799,"y":36.91},{"x":1752865682637,"y":38.947},{"x":1752865622477,"y":61.237},{"x":1752865562299,"y":50.388},{"x":1752865502095,"y":54.085},{"x":1752865441657,"y":51.539},{"x":1752865381499,"y":44.364},{"x":1752865321335,"y":37.586},{"x":1752865261157,"y":38.601},{"x":1752865201840,"y":49.685},{"x":1752865140532,"y":44.638},{"x":1752865080479,"y":39.867},{"x":1752865022955,"y":38.966},{"x":1752864962803,"y":56.909},{"x":1752864902627,"y":34.868},{"x":1752864842182,"y":35.104},{"x":1752864782004,"y":34.973},{"x":1752864721829,"y":31.725},{"x":1752864661652,"y":36.102},{"x":1752864601531,"y":34.746},{"x":1752864541005,"y":47.216},{"x":1752864480844,"y":61.993},{"x":1752864420669,"y":68.87},{"x":1752864360510,"y":53.648},{"x":1752864303272,"y":59.431},{"x":1752864242823,"y":44.019},{"x":1752864182651,"y":34.039},{"x":1752864122484,"y":42.18},{"x":1752864062322,"y":41.787},{"x":1752864002180,"y":45.94},{"x":1752863941721,"y":39.274},{"x":1752863881560,"y":42.147},{"x":1752863821386,"y":43.042},{"x":1752863761214,"y":36.845},{"x":1752863701047,"y":47.736},{"x":1752863640287,"y":33.961},{"x":1752863582948,"y":31.043},{"x":1752863522779,"y":33.466},{"x":1752863462624,"y":49.047},{"x":1752863402443,"y":55.732},{"x":1752863341817,"y":50.667},{"x":1752863281609,"y":51.518},{"x":1752863221430,"y":46.788},{"x":1752863161269,"y":32.788},{"x":1752863101116,"y":43.699},{"x":1752863042921,"y":45.596},{"x":1752862982756,"y":32.408},{"x":1752862922581,"y":49.108},{"x":1752862862383,"y":36.776},{"x":1752862802196,"y":37.561},{"x":1752862741744,"y":43.436},{"x":1752862681571,"y":52.087},{"x":1752862621396,"y":49.613},{"x":1752862561227,"y":48.833},{"x":1752862501381,"y":62.66},{"x":1752862440728,"y":38.923},{"x":1752862380571,"y":45.611},{"x":1752862320518,"y":47.135},{"x":1752862260245,"y":44.288},{"x":1752862202909,"y":44.108},{"x":1752862142474,"y":53.417},{"x":1752862082303,"y":47.327},{"x":1752862022140,"y":40.957},{"x":1752861961971,"y":50.926},{"x":1752861901751,"y":54.522},{"x":1752861841249,"y":42.895},{"x":1752861781077,"y":42.221},{"x":1752861720882,"y":41.679},{"x":1752861660730,"y":30.416},{"x":1752861601931,"y":29.104},{"x":1752861540386,"y":27.656},{"x":1752861480148,"y":41.656},{"x":1752861422871,"y":43.233},{"x":1752861362696,"y":36.905},{"x":1752861302525,"y":50.416},{"x":1752861242048,"y":43.603},{"x":1752861181871,"y":41.029},{"x":1752861121707,"y":39.998},{"x":1752861061543,"y":44.061},{"x":1752861001375,"y":46.639},{"x":1752860940882,"y":44.772},{"x":1752860880727,"y":33.528},{"x":1752860820592,"y":42.976},{"x":1752860760397,"y":32.272},{"x":1752860703151,"y":36.554},{"x":1752860642703,"y":30.907},{"x":1752860582547,"y":29.392},{"x":1752860522388,"y":31.506},{"x":1752860462225,"y":49.776},{"x":1752860402055,"y":46.784},{"x":1752860341608,"y":44.354},{"x":1752860281432,"y":44.678},{"x":1752860221270,"y":49.764},{"x":1752860161094,"y":28.942},{"x":1752860100903,"y":24.397},{"x":1752860040175,"y":41.51},{"x":1752859982904,"y":37.944},{"x":1752859922714,"y":36.846},{"x":1752859862545,"y":30.586},{"x":1752859802341,"y":40.188},{"x":1752859741853,"y":40.748},{"x":1752859681629,"y":33.038},{"x":1752859621464,"y":25.045},{"x":1752859561298,"y":25.161},{"x":1752859501109,"y":25.406},{"x":1752859440496,"y":36.373},{"x":1752859380284,"y":58.003},{"x":1752859322941,"y":54.171},{"x":1752859262777,"y":50.307},{"x":1752859202604,"y":52.312},{"x":1752859142165,"y":40.896},{"x":1752859081976,"y":36.572},{"x":1752859021805,"y":28.832},{"x":1752858961643,"y":27.767},{"x":1752858901474,"y":37.494},{"x":1752858840979,"y":36.919},{"x":1752858780799,"y":34.394},{"x":1752858720665,"y":33.965},{"x":1752858660506,"y":40.362},{"x":1752858603252,"y":37.246},{"x":1752858542789,"y":49.131},{"x":1752858482596,"y":26.553},{"x":1752858422419,"y":26.242},{"x":1752858362228,"y":23.592},{"x":1752858302055,"y":25.311},{"x":1752858241605,"y":40.14},{"x":1752858181427,"y":42.218},{"x":1752858121267,"y":44.803},{"x":1752858061109,"y":46.094},{"x":1752858002186,"y":50.186},{"x":1752857940554,"y":43.965},{"x":1752857880431,"y":32.103},{"x":1752857820152,"y":26.098},{"x":1752857762872,"y":34.851},{"x":1752857702695,"y":36.096},{"x":1752857642266,"y":32.466},{"x":1752857582101,"y":33.847},{"x":1752857521918,"y":32.282},{"x":1752857461751,"y":33.989},{"x":1752857401525,"y":25.817},{"x":1752857341060,"y":23.444},{"x":1752857280865,"y":27.448},{"x":1752857220706,"y":30.68},{"x":1752857160556,"y":30.586},{"x":1752857103345,"y":34.816},{"x":1752857042810,"y":29.145},{"x":1752856982633,"y":36.088},{"x":1752856922472,"y":29.939},{"x":1752856862306,"y":32.554},{"x":1752856802166,"y":33.035},{"x":1752856741666,"y":34.702},{"x":1752856681487,"y":31.252},{"x":1752856621340,"y":33.464},{"x":1752856561146,"y":36.266},{"x":1752856500961,"y":37.928},{"x":1752856443022,"y":36.418},{"x":1752856382821,"y":30.809},{"x":1752856322658,"y":34.161},{"x":1752856262498,"y":16.845},{"x":1752856202297,"y":36.407},{"x":1752856141703,"y":30.316},{"x":1752856081628,"y":34.257},{"x":1752856021336,"y":32.309},{"x":1752855961025,"y":37.461},{"x":1752855900878,"y":42.394},{"x":1752855842890,"y":42.097},{"x":1752855782734,"y":43.627},{"x":1752855722574,"y":41.72},{"x":1752855662365,"y":34.631},{"x":1752855602194,"y":18.861},{"x":1752855541748,"y":19.076},{"x":1752855481586,"y":40.947},{"x":1752855421425,"y":38.235},{"x":1752855361246,"y":37.702},{"x":1752855301190,"y":33.07},{"x":1752855240525,"y":41.173},{"x":1752855180373,"y":35.2},{"x":1752855120143,"y":47.533},{"x":1752855062876,"y":32.344},{"x":1752855002707,"y":40.88},{"x":1752854942276,"y":31.03},{"x":1752854882115,"y":25.323},{"x":1752854821936,"y":30.211},{"x":1752854761741,"y":38.368},{"x":1752854701574,"y":29.698},{"x":1752854641130,"y":40.27},{"x":1752854580920,"y":37.48},{"x":1752854520763,"y":52.25},{"x":1752854460629,"y":32.299},{"x":1752854401621,"y":28.032},{"x":1752854342959,"y":19.609},{"x":1752854282789,"y":20.114},{"x":1752854222631,"y":18.756},{"x":1752854162457,"y":17.133},{"x":1752854102299,"y":23.326},{"x":1752854041808,"y":37.67},{"x":1752853981652,"y":34.983},{"x":1752853921483,"y":35.609},{"x":1752853861310,"y":41.981},{"x":1752853801140,"y":28.828},{"x":1752853740513,"y":28.066},{"x":1752853680347,"y":26.602},{"x":1752853623012,"y":28.58},{"x":1752853562852,"y":29.966},{"x":1752853502666,"y":23.911},{"x":1752853442254,"y":28.978},{"x":1752853382056,"y":35.006},{"x":1752853321880,"y":40.278},{"x":1752853261711,"y":23.068},{"x":1752853201533,"y":22.317},{"x":1752853141000,"y":29.58},{"x":1752853080851,"y":24.106},{"x":1752853020681,"y":24.18},{"x":1752852960482,"y":29.006},{"x":1752852903158,"y":47.725},{"x":1752852842729,"y":37.615},{"x":1752852782565,"y":46.048},{"x":1752852722407,"y":39.719},{"x":1752852662235,"y":23.782},{"x":1752852602325,"y":23.313},{"x":1752852541853,"y":21.693},{"x":1752852481635,"y":27.175},{"x":1752852421444,"y":41.662},{"x":1752852361279,"y":23.216},{"x":1752852301115,"y":34.621},{"x":1752852240635,"y":33.085},{"x":1752852180330,"y":33.674},{"x":1752852120035,"y":39.002},{"x":1752852062838,"y":26.987},{"x":1752852002683,"y":20.993},{"x":1752851942228,"y":35.116},{"x":1752851882051,"y":36.821},{"x":1752851821875,"y":37.009},{"x":1752851761699,"y":39.452},{"x":1752851701535,"y":45.984},{"x":1752851641038,"y":44.536},{"x":1752851580862,"y":26.191},{"x":1752851520696,"y":24.687},{"x":1752851460584,"y":34.767},{"x":1752851403302,"y":20.031},{"x":1752851342877,"y":24.29},{"x":1752851282626,"y":22.76},{"x":1752851222439,"y":24.105},{"x":1752851162297,"y":48.961},{"x":1752851102062,"y":33.784},{"x":1752851041614,"y":46.837},{"x":1752850981444,"y":35.464},{"x":1752850921280,"y":36.804},{"x":1752850861111,"y":13.259},{"x":1752850802155,"y":12.423},{"x":1752850740603,"y":26.231},{"x":1752850680261,"y":32.251},{"x":1752850622902,"y":33.705},{"x":1752850562734,"y":37.971},{"x":1752850502564,"y":23.047},{"x":1752850442128,"y":23.445},{"x":1752850381965,"y":35.647},{"x":1752850321799,"y":25.975},{"x":1752850261634,"y":28.666},{"x":1752850201467,"y":15.442},{"x":1752850140932,"y":36.717},{"x":1752850080774,"y":27.988},{"x":1752850020636,"y":44.394},{"x":1752849960464,"y":33.846},{"x":1752849903170,"y":31.359},{"x":1752849842707,"y":27.094},{"x":1752849782539,"y":28.678},{"x":1752849722374,"y":19.834},{"x":1752849662213,"y":19.254},{"x":1752849602060,"y":35.122},{"x":1752849541602,"y":39.035},{"x":1752849481431,"y":38.18},{"x":1752849421269,"y":33.298},{"x":1752849361091,"y":24.111},{"x":1752849300926,"y":28.508},{"x":1752849240119,"y":22.463},{"x":1752849182862,"y":16.422},{"x":1752849122701,"y":26.089},{"x":1752849062549,"y":19.136},{"x":1752849002329,"y":41.718},{"x":1752848941720,"y":41.193},{"x":1752848881503,"y":39.652},{"x":1752848821325,"y":23.543},{"x":1752848761132,"y":25.131},{"x":1752848700948,"y":31.284},{"x":1752848640091,"y":15.447},{"x":1752848582893,"y":15.589},{"x":1752848522705,"y":14.83},{"x":1752848462537,"y":14.687},{"x":1752848402369,"y":30.824},{"x":1752848341802,"y":23.536},{"x":1752848281641,"y":29.63},{"x":1752848221485,"y":47.511},{"x":1752848161306,"y":31.843},{"x":1752848101295,"y":33.464},{"x":1752848040603,"y":35.633},{"x":1752847980394,"y":13.953},{"x":1752847920070,"y":9.362},{"x":1752847862868,"y":19.191},{"x":1752847802704,"y":27.992},{"x":1752847742265,"y":28.358},{"x":1752847682084,"y":25.833},{"x":1752847621867,"y":33.686},{"x":1752847561682,"y":30.841},{"x":1752847501499,"y":52.879},{"x":1752847441034,"y":36.874},{"x":1752847380887,"y":23.534},{"x":1752847320715,"y":21.994},{"x":1752847260633,"y":21.023},{"x":1752847201332,"y":31.221},{"x":1752847142851,"y":51.127},{"x":1752847082685,"y":46.209},{"x":1752847022523,"y":29.061},{"x":1752846962366,"y":36.595},{"x":1752846902184,"y":37.888},{"x":1752846841747,"y":20.364},{"x":1752846781565,"y":23.305},{"x":1752846721397,"y":23.216},{"x":1752846661216,"y":32.92},{"x":1752846601041,"y":27.285},{"x":1752846540446,"y":17.726},{"x":1752846480328,"y":19.149},{"x":1752846422962,"y":14.597},{"x":1752846362777,"y":18.414},{"x":1752846302616,"y":34.038},{"x":1752846242184,"y":35.216},{"x":1752846181992,"y":31.759},{"x":1752846121831,"y":34.644},{"x":1752846061653,"y":28.582},{"x":1752846001497,"y":27.467},{"x":1752845940993,"y":27.941},{"x":1752845880821,"y":9.55},{"x":1752845820661,"y":15.883},{"x":1752845760457,"y":14.825},{"x":1752845703181,"y":32.286},{"x":1752845642744,"y":30.235},{"x":1752845582580,"y":33.196},{"x":1752845522432,"y":32.83},{"x":1752845462260,"y":23.715},{"x":1752845402084,"y":15.946},{"x":1752845341633,"y":27.556},{"x":1752845281359,"y":26.586},{"x":1752845221204,"y":21.098},{"x":1752845161009,"y":16.774},{"x":1752845100859,"y":26.901},{"x":1752845042883,"y":41.152},{"x":1752844982719,"y":28.793},{"x":1752844922556,"y":32.631},{"x":1752844862391,"y":23.042},{"x":1752844802219,"y":22.275},{"x":1752844741742,"y":19.731},{"x":1752844681578,"y":21.913},{"x":1752844621415,"y":5.904},{"x":1752844561239,"y":6.752},{"x":1752844501363,"y":16.377},{"x":1752844440633,"y":23.228},{"x":1752844380481,"y":31.932},{"x":1752844320358,"y":34.063},{"x":1752844262905,"y":33.49},{"x":1752844202738,"y":26.922},{"x":1752844142305,"y":28.424},{"x":1752844082139,"y":23.835},{"x":1752844021945,"y":22.058},{"x":1752843961765,"y":19.573},{"x":1752843901586,"y":46.933},{"x":1752843841136,"y":35.359},{"x":1752843780951,"y":20.116},{"x":1752843720779,"y":22.417},{"x":1752843660645,"y":43.496},{"x":1752843603420,"y":25.639},{"x":1752843542840,"y":4.431},{"x":1752843482673,"y":3.634},{"x":1752843422505,"y":33.826},{"x":1752843362341,"y":23.943},{"x":1752843302178,"y":37.182},{"x":1752843241742,"y":53.225},{"x":1752843181570,"y":37.42},{"x":1752843121400,"y":21.102},{"x":1752843061234,"y":20.463},{"x":1752843001049,"y":11.343},{"x":1752842940502,"y":7.194},{"x":1752842880367,"y":8.285},{"x":1752842823004,"y":12.139},{"x":1752842762812,"y":12.199},{"x":1752842702639,"y":32.252},{"x":1752842642170,"y":29.434},{"x":1752842581975,"y":46.216},{"x":1752842521804,"y":46.796},{"x":1752842461629,"y":22.774},{"x":1752842401471,"y":25.014},{"x":1752842340981,"y":26.409},{"x":1752842280768,"y":21.837},{"x":1752842220596,"y":21.882},{"x":1752842160511,"y":33.101},{"x":1752842103238,"y":26.72},{"x":1752842042793,"y":25.081},{"x":1752841982635,"y":29.582},{"x":1752841922480,"y":39.208},{"x":1752841862333,"y":29.198},{"x":1752841802124,"y":23.437},{"x":1752841741551,"y":20.495},{"x":1752841681392,"y":17.299},{"x":1752841621157,"y":18.645},{"x":1752841560917,"y":34.186},{"x":1752841501174,"y":27.852},{"x":1752841440407,"y":35.699},{"x":1752841380302,"y":47.288},{"x":1752841322917,"y":47.101},{"x":1752841262752,"y":39.374},{"x":1752841202593,"y":41.84},{"x":1752841142162,"y":53.781},{"x":1752841081986,"y":41.794},{"x":1752841021801,"y":38.522},{"x":1752840961650,"y":22.937},{"x":1752840901470,"y":29.084},{"x":1752840840963,"y":26.56},{"x":1752840780806,"y":18.007},{"x":1752840720665,"y":15.217},{"x":1752840660490,"y":25.003},{"x":1752840603198,"y":38.536},{"x":1752840542763,"y":27.068},{"x":1752840482586,"y":42.742},{"x":1752840422416,"y":39.102},{"x":1752840362246,"y":43.611},{"x":1752840302086,"y":22.203},{"x":1752840241635,"y":23.674},{"x":1752840181449,"y":47.234},{"x":1752840121326,"y":44.288},{"x":1752840061095,"y":58.136},{"x":1752840002064,"y":53.214},{"x":1752839940678,"y":54.853},{"x":1752839880555,"y":52.177},{"x":1752839820513,"y":47.136},{"x":1752839762930,"y":58.43},{"x":1752839702760,"y":61.88},{"x":1752839642326,"y":62.948},{"x":1752839582164,"y":60.325},{"x":1752839521983,"y":61.432},{"x":1752839461818,"y":51.432},{"x":1752839401675,"y":53.192},{"x":1752839341127,"y":58.887},{"x":1752839280956,"y":54.441},{"x":1752839220799,"y":53.039},{"x":1752839160586,"y":54.613},{"x":1752839101241,"y":70.22},{"x":1752839042888,"y":74.219},{"x":1752838982724,"y":61.572},{"x":1752838922556,"y":64.855},{"x":1752838862388,"y":63.745},{"x":1752838802204,"y":52.117},{"x":1752838741748,"y":53.008},{"x":1752838681583,"y":50.85},{"x":1752838621386,"y":62.92},{"x":1752838561231,"y":68.216},{"x":1752838501024,"y":63.541},{"x":1752838440468,"y":74.554},{"x":1752838380342,"y":69.74},{"x":1752838322976,"y":70.455},{"x":1752838262791,"y":53.169},{"x":1752838202592,"y":67.701},{"x":1752838141850,"y":49.335},{"x":1752838081664,"y":49.749},{"x":1752838021456,"y":49.711},{"x":1752837961287,"y":42.159},{"x":1752837901116,"y":44.533},{"x":1752837840588,"y":44.085},{"x":1752837780295,"y":37.189},{"x":1752837722919,"y":37.804},{"x":1752837662754,"y":32.97},{"x":1752837602588,"y":48.238},{"x":1752837542135,"y":46.916},{"x":1752837481923,"y":48.311},{"x":1752837421760,"y":54.43},{"x":1752837361593,"y":50.802},{"x":1752837301433,"y":37.707},{"x":1752837240904,"y":56.015},{"x":1752837180747,"y":51.604},{"x":1752837120640,"y":41.598},{"x":1752837060439,"y":47.494},{"x":1752837003155,"y":44.287},{"x":1752836942719,"y":43.915},{"x":1752836882550,"y":35.282},{"x":1752836822386,"y":34.894},{"x":1752836762246,"y":40.892},{"x":1752836702036,"y":51.889},{"x":1752836641596,"y":49.66},{"x":1752836581435,"y":59.314},{"x":1752836521267,"y":64.466},{"x":1752836461097,"y":71.525},{"x":1752836402110,"y":55.176},{"x":1752836340443,"y":55.227},{"x":1752836280280,"y":63.715},{"x":1752836222929,"y":46.169},{"x":1752836162754,"y":51.101},{"x":1752836102594,"y":58.829},{"x":1752836042112,"y":69.184},{"x":1752835981932,"y":71.615},{"x":1752835921779,"y":59.163},{"x":1752835861597,"y":49.205},{"x":1752835801432,"y":58.886},{"x":1752835740957,"y":68.576},{"x":1752835680808,"y":70.267},{"x":1752835620605,"y":72.902},{"x":1752835560421,"y":64.981},{"x":1752835503196,"y":41.734},{"x":1752835442768,"y":37.249},{"x":1752835382584,"y":55.349},{"x":1752835322425,"y":58.192},{"x":1752835262266,"y":49.783},{"x":1752835202098,"y":46.886},{"x":1752835141639,"y":54.603},{"x":1752835081472,"y":46.064},{"x":1752835021307,"y":32.654},{"x":1752834961135,"y":42.253},{"x":1752834900960,"y":41.121},{"x":1752834840308,"y":22.313},{"x":1752834782961,"y":22.731},{"x":1752834722803,"y":35.516},{"x":1752834662619,"y":24.612},{"x":1752834602390,"y":34.743},{"x":1752834541849,"y":51.402},{"x":1752834481620,"y":39.169},{"x":1752834421459,"y":30.435},{"x":1752834361232,"y":28.614},{"x":1752834301058,"y":27.219},{"x":1752834242909,"y":24.227},{"x":1752834182733,"y":29.453},{"x":1752834122575,"y":29.066},{"x":1752834062381,"y":31.07},{"x":1752834002216,"y":28.13},{"x":1752833941749,"y":39.574},{"x":1752833881590,"y":23.878},{"x":1752833821404,"y":23.332},{"x":1752833761260,"y":20.088},{"x":1752833701222,"y":27.864},{"x":1752833640643,"y":31.433},{"x":1752833580526,"y":32.527},{"x":1752833520433,"y":23.321},{"x":1752833462948,"y":24.719},{"x":1752833402787,"y":35.437},{"x":1752833342357,"y":17.179},{"x":1752833282174,"y":36.992},{"x":1752833221985,"y":27.371},{"x":1752833161828,"y":11.578},{"x":1752833101611,"y":41.555},{"x":1752833041164,"y":43.276},{"x":1752832980987,"y":39.43},{"x":1752832920809,"y":47.247},{"x":1752832860642,"y":37.973},{"x":1752832803471,"y":17.619},{"x":1752832742803,"y":22.983},{"x":1752832682649,"y":28.067},{"x":1752832622477,"y":25.792},{"x":1752832562320,"y":29.432},{"x":1752832502147,"y":32.79},{"x":1752832441708,"y":32.337},{"x":1752832381575,"y":25.11},{"x":1752832321382,"y":18.678},{"x":1752832261202,"y":19.528},{"x":1752832201035,"y":37.078},{"x":1752832140418,"y":29.027},{"x":1752832082962,"y":48.896},{"x":1752832022799,"y":38.703},{"x":1752831962625,"y":36.74},{"x":1752831902460,"y":30.653},{"x":1752831842015,"y":23.324},{"x":1752831781854,"y":34.262},{"x":1752831721670,"y":40.334},{"x":1752831661532,"y":38.936},{"x":1752831601349,"y":42.695},{"x":1752831540769,"y":36.88},{"x":1752831480582,"y":32.465},{"x":1752831420469,"y":26.335},{"x":1752831360269,"y":29.415},{"x":1752831302966,"y":29.249},{"x":1752831242521,"y":30.256},{"x":1752831182346,"y":26.845},{"x":1752831122182,"y":32.815},{"x":1752831061993,"y":28.817},{"x":1752831001891,"y":18.584},{"x":1752830940514,"y":35.993},{"x":1752830880319,"y":18.858},{"x":1752830822973,"y":35.396},{"x":1752830762820,"y":45.615},{"x":1752830702638,"y":48.249},{"x":1752830642194,"y":49.208},{"x":1752830581998,"y":35.697},{"x":1752830521843,"y":46.553},{"x":1752830461678,"y":35.663},{"x":1752830402018,"y":31.815},{"x":1752830341434,"y":35.196},{"x":1752830281145,"y":28.461},{"x":1752830221018,"y":34.46},{"x":1752830160935,"y":24.341},{"x":1752830101449,"y":43.262},{"x":1752830040409,"y":42.446},{"x":1752829980362,"y":35.123},{"x":1752829922929,"y":35.723},{"x":1752829862765,"y":44.518},{"x":1752829802604,"y":48.311},{"x":1752829742180,"y":32.583},{"x":1752829682008,"y":34.254},{"x":1752829621829,"y":34.828},{"x":1752829561663,"y":38.558},{"x":1752829501510,"y":34.572},{"x":1752829441033,"y":31.381},{"x":1752829380857,"y":51.422},{"x":1752829320702,"y":49.998},{"x":1752829260661,"y":49.753},{"x":1752829201761,"y":50.43},{"x":1752829142972,"y":47.595},{"x":1752829082771,"y":45.075},{"x":1752829022604,"y":32.913},{"x":1752828962436,"y":29.791},{"x":1752828902256,"y":48.563},{"x":1752828841805,"y":43.899},{"x":1752828781638,"y":35.427},{"x":1752828721457,"y":29.228},{"x":1752828661280,"y":45.422},{"x":1752828601110,"y":48.849},{"x":1752828540528,"y":42.904},{"x":1752828480413,"y":41.147},{"x":1752828422991,"y":56.915},{"x":1752828362816,"y":32.205},{"x":1752828302645,"y":38.087},{"x":1752828242210,"y":40.155},{"x":1752828182065,"y":40.293},{"x":1752828121931,"y":36.892},{"x":1752828061716,"y":39.871},{"x":1752828001575,"y":40.057},{"x":1752827941035,"y":43.726},{"x":1752827880862,"y":47.019},{"x":1752827820706,"y":42.77},{"x":1752827760530,"y":43.898},{"x":1752827700127,"y":42.807},{"x":1752827642861,"y":39.426},{"x":1752827582692,"y":32.104},{"x":1752827522527,"y":33.1},{"x":1752827462340,"y":35.733},{"x":1752827402183,"y":42.255},{"x":1752827341689,"y":44.762},{"x":1752827281522,"y":38.42},{"x":1752827221317,"y":39.677},{"x":1752827161049,"y":48.906},{"x":1752827100887,"y":34.279},{"x":1752827042866,"y":33.107},{"x":1752826982707,"y":53.084},{"x":1752826922536,"y":55.886},{"x":1752826862382,"y":51.444},{"x":1752826802213,"y":46.055},{"x":1752826741765,"y":43.884},{"x":1752826681585,"y":45.239},{"x":1752826621399,"y":34.178},{"x":1752826561225,"y":33.87},{"x":1752826501377,"y":35.974},{"x":1752826440836,"y":38.831},{"x":1752826380662,"y":40.711},{"x":1752826320592,"y":44.212},{"x":1752826260291,"y":50.296},{"x":1752826202975,"y":41.067},{"x":1752826142536,"y":38.72},{"x":1752826082370,"y":40.281},{"x":1752826022198,"y":36.559},{"x":1752825962019,"y":29.995},{"x":1752825901844,"y":29.664},{"x":1752825841334,"y":45.513},{"x":1752825781153,"y":53.803},{"x":1752825720975,"y":47.728},{"x":1752825660814,"y":40.189},{"x":1752825602099,"y":49.64},{"x":1752825540460,"y":26.034},{"x":1752825480497,"y":44.807},{"x":1752825422987,"y":45.549},{"x":1752825362846,"y":41.544},{"x":1752825302645,"y":51.104},{"x":1752825242134,"y":48.285},{"x":1752825181949,"y":37.997},{"x":1752825121777,"y":52.031},{"x":1752825061631,"y":44.53},{"x":1752825001448,"y":40.313},{"x":1752824940963,"y":49.5},{"x":1752824880806,"y":39.323},{"x":1752824820682,"y":36.725},{"x":1752824760470,"y":40.858},{"x":1752824703285,"y":37.316},{"x":1752824642852,"y":37.832},{"x":1752824582687,"y":39.723},{"x":1752824522517,"y":39.829},{"x":1752824462346,"y":40.566},{"x":1752824402176,"y":43.129},{"x":1752824341706,"y":44.926},{"x":1752824281547,"y":39.015},{"x":1752824221378,"y":56.041},{"x":1752824161211,"y":60.541},{"x":1752824101019,"y":58.073},{"x":1752824040288,"y":50.597},{"x":1752823982879,"y":46.033},{"x":1752823922710,"y":31.393},{"x":1752823862509,"y":51.196},{"x":1752823802286,"y":52.956},{"x":1752823741703,"y":52.126},{"x":1752823681515,"y":63.549},{"x":1752823621335,"y":49.32},{"x":1752823561202,"y":33.436},{"x":1752823500961,"y":32.459},{"x":1752823442930,"y":53.11},{"x":1752823382751,"y":31.885},{"x":1752823322589,"y":30.253},{"x":1752823262411,"y":40.362},{"x":1752823202227,"y":41.646},{"x":1752823141771,"y":50.196},{"x":1752823081575,"y":49.636},{"x":1752823021412,"y":49.154},{"x":1752822961224,"y":54.139},{"x":1752822901330,"y":59.474},{"x":1752822840618,"y":40.491},{"x":1752822780520,"y":47.412},{"x":1752822720304,"y":54.903},{"x":1752822662940,"y":50.349},{"x":1752822602777,"y":46.414},{"x":1752822542324,"y":59.042},{"x":1752822482154,"y":37.819},{"x":1752822421973,"y":51.37},{"x":1752822361774,"y":47.268},{"x":1752822301613,"y":52.155},{"x":1752822241155,"y":51.63},{"x":1752822180951,"y":50.437},{"x":1752822120788,"y":68.629},{"x":1752822060690,"y":67.85},{"x":1752822001242,"y":64.078},{"x":1752821942914,"y":54.451},{"x":1752821882752,"y":51.118},{"x":1752821822573,"y":47.122},{"x":1752821762446,"y":42.921},{"x":1752821702219,"y":51.46},{"x":1752821641770,"y":39.85},{"x":1752821581603,"y":37.467},{"x":1752821521416,"y":45.983},{"x":1752821461241,"y":49.71},{"x":1752821401066,"y":43.076},{"x":1752821340448,"y":44.525},{"x":1752821282937,"y":55.909},{"x":1752821222781,"y":61.668},{"x":1752821162618,"y":45.167},{"x":1752821102452,"y":55.819},{"x":1752821041993,"y":55.015},{"x":1752820981827,"y":68.541},{"x":1752820921662,"y":61.476},{"x":1752820861480,"y":57.666},{"x":1752820801320,"y":44.162},{"x":1752820740674,"y":44.591},{"x":1752820680587,"y":40.506},{"x":1752820620293,"y":41.847},{"x":1752820560021,"y":41.276},{"x":1752820502864,"y":36.426},{"x":1752820442419,"y":39.51},{"x":1752820382255,"y":60.426},{"x":1752820322090,"y":48.253},{"x":1752820261914,"y":42.824},{"x":1752820201775,"y":47.448},{"x":1752820141134,"y":57.855},{"x":1752820080888,"y":40.109},{"x":1752820020724,"y":67.182},{"x":1752819960578,"y":60.98},{"x":1752819903274,"y":67.411},{"x":1752819842829,"y":67.838},{"x":1752819782663,"y":57.478},{"x":1752819722486,"y":52.461},{"x":1752819662336,"y":49.173},{"x":1752819602150,"y":48.13},{"x":1752819541712,"y":35.662},{"x":1752819481551,"y":40.834},{"x":1752819421410,"y":48.964},{"x":1752819361215,"y":45.257},{"x":1752819301181,"y":43.31},{"x":1752819240544,"y":43.008},{"x":1752819180362,"y":52.717},{"x":1752819120069,"y":46.397},{"x":1752819062865,"y":43.947},{"x":1752819002700,"y":36.92},{"x":1752818942195,"y":51.395},{"x":1752818882024,"y":48.022},{"x":1752818821841,"y":47.219},{"x":1752818761657,"y":46.37},{"x":1752818701491,"y":40.156},{"x":1752818641021,"y":39.297},{"x":1752818580856,"y":37.212},{"x":1752818520750,"y":41.905},{"x":1752818460613,"y":38.304},{"x":1752818403302,"y":46.141},{"x":1752818342546,"y":33.461},{"x":1752818282374,"y":32.918},{"x":1752818222189,"y":32.16},{"x":1752818162046,"y":43.741},{"x":1752818101858,"y":54.245},{"x":1752818041418,"y":53.688},{"x":1752817981261,"y":53.711},{"x":1752817921088,"y":65.774},{"x":1752817860910,"y":49.034},{"x":1752817801067,"y":41.04},{"x":1752817740210,"y":41.153},{"x":1752817682902,"y":43.038},{"x":1752817622727,"y":42.402},{"x":1752817562563,"y":49.71},{"x":1752817502397,"y":62.769},{"x":1752817441952,"y":59.462},{"x":1752817381782,"y":59.371},{"x":1752817321671,"y":54.46},{"x":1752817261473,"y":44.797},{"x":1752817201310,"y":32.441},{"x":1752817140816,"y":36.417},{"x":1752817080654,"y":46.341},{"x":1752817020501,"y":54.4},{"x":1752816960331,"y":59.902},{"x":1752816902972,"y":59.691},{"x":1752816842535,"y":59.995},{"x":1752816782362,"y":57.057},{"x":1752816722211,"y":34.513},{"x":1752816661995,"y":34.428},{"x":1752816601774,"y":34.31},{"x":1752816541094,"y":37.413},{"x":1752816480900,"y":37.069},{"x":1752816420721,"y":36.009},{"x":1752816360543,"y":39.639},{"x":1752816300071,"y":42.424},{"x":1752816242837,"y":36.899},{"x":1752816182679,"y":39.081},{"x":1752816122520,"y":39.298},{"x":1752816062342,"y":39.766},{"x":1752816002173,"y":37.904},{"x":1752815941710,"y":34.835},{"x":1752815881537,"y":37.492},{"x":1752815821371,"y":57.178},{"x":1752815761200,"y":43.721},{"x":1752815701242,"y":43.432},{"x":1752815640703,"y":41.527},{"x":1752815580584,"y":40.066},{"x":1752815520505,"y":39.594},{"x":1752815460222,"y":34.27},{"x":1752815402906,"y":34.781},{"x":1752815342466,"y":37.508},{"x":1752815282306,"y":33.658},{"x":1752815222146,"y":35.36},{"x":1752815161968,"y":34.021},{"x":1752815101812,"y":37.597},{"x":1752815041333,"y":34.825},{"x":1752814981166,"y":37.94},{"x":1752814920948,"y":36.979},{"x":1752814860788,"y":40.042},{"x":1752814803628,"y":34.764},{"x":1752814742840,"y":33.071},{"x":1752814682667,"y":33.258},{"x":1752814622503,"y":39.717},{"x":1752814562342,"y":35.335},{"x":1752814502139,"y":38.124},{"x":1752814441691,"y":48.561},{"x":1752814381524,"y":37.229},{"x":1752814321338,"y":34.977},{"x":1752814261171,"y":33.97},{"x":1752814200998,"y":52.634},{"x":1752814143070,"y":46.316},{"x":1752814082859,"y":55.234},{"x":1752814022688,"y":53.282},{"x":1752813962504,"y":55.324},{"x":1752813902299,"y":54.759},{"x":1752813841876,"y":37.74},{"x":1752813781687,"y":29.937},{"x":1752813721507,"y":29.585},{"x":1752813661344,"y":28.353},{"x":1752813601208,"y":30.594},{"x":1752813542942,"y":36.564},{"x":1752813482749,"y":29.363},{"x":1752813422585,"y":28.46},{"x":1752813362421,"y":27.666},{"x":1752813302253,"y":32.643},{"x":1752813241816,"y":32.221},{"x":1752813181640,"y":28.767},{"x":1752813121482,"y":28.689},{"x":1752813061327,"y":28.233},{"x":1752813001434,"y":25.774},{"x":1752812940684,"y":25.881},{"x":1752812880488,"y":39.628},{"x":1752812820369,"y":39.799},{"x":1752812762966,"y":39.324},{"x":1752812702797,"y":40.378},{"x":1752812642343,"y":48.577},{"x":1752812582178,"y":30.506},{"x":1752812521985,"y":27.069},{"x":1752812461810,"y":26.917},{"x":1752812401659,"y":26.442},{"x":1752812341200,"y":23.67},{"x":1752812281006,"y":29.035},{"x":1752812220828,"y":27.49},{"x":1752812160622,"y":29.58},{"x":1752812101133,"y":31.349},{"x":1752812042952,"y":31.012},{"x":1752811982786,"y":32.432},{"x":1752811922623,"y":34.618},{"x":1752811862464,"y":29.273},{"x":1752811802295,"y":36.85},{"x":1752811741847,"y":35.701},{"x":1752811681701,"y":34.106},{"x":1752811621510,"y":36.325},{"x":1752811561341,"y":35.163},{"x":1752811501147,"y":36.8},{"x":1752811440538,"y":33.026},{"x":1752811380313,"y":40.562},{"x":1752811322891,"y":32.516},{"x":1752811262687,"y":36.674},{"x":1752811202461,"y":43.975},{"x":1752811141722,"y":43.589},{"x":1752811081540,"y":57.168},{"x":1752811021371,"y":56.329},{"x":1752810961224,"y":59.734},{"x":1752810901028,"y":38.174},{"x":1752810840557,"y":41.885},{"x":1752810780416,"y":28.888},{"x":1752810720139,"y":27.402},{"x":1752810662885,"y":32.826},{"x":1752810602719,"y":28.066},{"x":1752810542290,"y":26.657},{"x":1752810482070,"y":28.622},{"x":1752810421874,"y":29.197},{"x":1752810361714,"y":29.036},{"x":1752810301546,"y":30.253},{"x":1752810241040,"y":31.497},{"x":1752810180862,"y":30.81},{"x":1752810120700,"y":28.943},{"x":1752810060558,"y":32.525},{"x":1752810003351,"y":40.932},{"x":1752809942787,"y":43.494},{"x":1752809882625,"y":44.959},{"x":1752809822467,"y":40.84},{"x":1752809762301,"y":35.944},{"x":1752809702149,"y":32.183},{"x":1752809641707,"y":31.181},{"x":1752809581546,"y":30.387},{"x":1752809521393,"y":33.124},{"x":1752809461217,"y":27.561},{"x":1752809401323,"y":30.118},{"x":1752809340507,"y":33.193},{"x":1752809280351,"y":32.744},{"x":1752809222942,"y":28.662},{"x":1752809162782,"y":28.409},{"x":1752809102617,"y":30.486},{"x":1752809042181,"y":36.264},{"x":1752808981997,"y":30.711},{"x":1752808921821,"y":34.205},{"x":1752808861658,"y":30.577},{"x":1752808801500,"y":28.702},{"x":1752808740991,"y":28.917},{"x":1752808680831,"y":29.936},{"x":1752808620773,"y":26.708},{"x":1752808560593,"y":25.591},{"x":1752808503170,"y":27.749},{"x":1752808442715,"y":26.456},{"x":1752808382560,"y":31.307},{"x":1752808322384,"y":31.41},{"x":1752808262218,"y":29.149},{"x":1752808202054,"y":29.329},{"x":1752808141614,"y":27.15},{"x":1752808081447,"y":33.115},{"x":1752808021272,"y":30.082},{"x":1752807961073,"y":35.173},{"x":1752807903379,"y":28.9},{"x":1752807840724,"y":27.855},{"x":1752807781084,"y":31.819},{"x":1752807720869,"y":46.184},{"x":1752807660703,"y":54.37},{"x":1752807602696,"y":55.126},{"x":1752807541572,"y":53.076},{"x":1752807481428,"y":51.396},{"x":1752807421234,"y":41.858},{"x":1752807361045,"y":29.577},{"x":1752807300878,"y":32.302},{"x":1752807242884,"y":32.94},{"x":1752807182723,"y":34.128},{"x":1752807122550,"y":33.427},{"x":1752807062392,"y":32.284},{"x":1752807002233,"y":29.635},{"x":1752806941781,"y":27.417},{"x":1752806881606,"y":30.711},{"x":1752806821453,"y":27.664},{"x":1752806761277,"y":32.468},{"x":1752806701562,"y":30.841},{"x":1752806640586,"y":30.017},{"x":1752806580447,"y":41.644},{"x":1752806523028,"y":40.774},{"x":1752806462862,"y":46.642},{"x":1752806402695,"y":29.971},{"x":1752806342215,"y":29.82},{"x":1752806282042,"y":28.536},{"x":1752806221845,"y":30.276},{"x":1752806161684,"y":28.936},{"x":1752806101507,"y":28.569},{"x":1752806041029,"y":27.627},{"x":1752805980862,"y":32.04},{"x":1752805920766,"y":39.507},{"x":1752805860534,"y":43.1},{"x":1752805803273,"y":56.851},{"x":1752805742748,"y":63.263},{"x":1752805682586,"y":48.618},{"x":1752805622346,"y":42.231},{"x":1752805562165,"y":40.696},{"x":1752805501985,"y":34.295},{"x":1752805441537,"y":29.148},{"x":1752805381367,"y":33.587},{"x":1752805321169,"y":29.582},{"x":1752805260990,"y":28.346},{"x":1752805201101,"y":29.274},{"x":1752805140038,"y":27.643},{"x":1752805082863,"y":22.864},{"x":1752805022687,"y":31.405},{"x":1752804962508,"y":31.669},{"x":1752804902364,"y":27.139},{"x":1752804841878,"y":30.169},{"x":1752804781704,"y":40.843},{"x":1752804721539,"y":32.441},{"x":1752804661352,"y":36.329},{"x":1752804601204,"y":31.252},{"x":1752804540325,"y":42.879},{"x":1752804482933,"y":40.47},{"x":1752804422756,"y":39.901},{"x":1752804362576,"y":43.269},{"x":1752804302412,"y":39.039},{"x":1752804241963,"y":27.444},{"x":1752804181795,"y":43.162},{"x":1752804121642,"y":46.703},{"x":1752804061478,"y":47.458},{"x":1752804002074,"y":48.914},{"x":1752803940555,"y":50.477},{"x":1752803880598,"y":41.069},{"x":1752803822973,"y":51.768},{"x":1752803762794,"y":37.763},{"x":1752803702640,"y":35.836},{"x":1752803642192,"y":36.189},{"x":1752803582029,"y":28.768},{"x":1752803521847,"y":28.44},{"x":1752803461685,"y":31.449},{"x":1752803401505,"y":28.945},{"x":1752803341019,"y":35.165},{"x":1752803280829,"y":30.949},{"x":1752803220663,"y":40.404},{"x":1752803160521,"y":39.466},{"x":1752803103291,"y":39.775},{"x":1752803042856,"y":33.376},{"x":1752802982719,"y":31.002},{"x":1752802922543,"y":33.73},{"x":1752802862353,"y":29.608},{"x":1752802802179,"y":29.7},{"x":1752802741740,"y":27.297},{"x":1752802681566,"y":31.288},{"x":1752802621405,"y":28.763},{"x":1752802561241,"y":28.777},{"x":1752802501074,"y":38.038},{"x":1752802440578,"y":36.337},{"x":1752802380437,"y":33.958},{"x":1752802320272,"y":33.737},{"x":1752802260194,"y":36.007},{"x":1752802202871,"y":38.633},{"x":1752802142336,"y":32.026},{"x":1752802082149,"y":31.125},{"x":1752802021923,"y":32.283},{"x":1752801961755,"y":29.128},{"x":1752801901495,"y":29.495},{"x":1752801841010,"y":28.349},{"x":1752801780846,"y":32.738},{"x":1752801720658,"y":32.741},{"x":1752801660534,"y":32.291},{"x":1752801603282,"y":36.683},{"x":1752801542814,"y":34.215},{"x":1752801482646,"y":29.194},{"x":1752801422468,"y":31.847},{"x":1752801362306,"y":34.903},{"x":1752801302125,"y":29.993},{"x":1752801241734,"y":33.176},{"x":1752801181512,"y":30.341},{"x":1752801121339,"y":30.368},{"x":1752801061177,"y":42.265},{"x":1752801000986,"y":55.867},{"x":1752800943018,"y":62.066},{"x":1752800882843,"y":53.731},{"x":1752800822676,"y":52.482},{"x":1752800762512,"y":34.977},{"x":1752800702345,"y":29.449},{"x":1752800641872,"y":29.099},{"x":1752800581697,"y":35.318},{"x":1752800521531,"y":32.27},{"x":1752800461356,"y":29.26},{"x":1752800401798,"y":29.606},{"x":1752800340419,"y":29.763},{"x":1752800280190,"y":32.168},{"x":1752800222883,"y":32.467},{"x":1752800162724,"y":31.718},{"x":1752800102563,"y":35.78},{"x":1752800042127,"y":30.15},{"x":1752799981929,"y":30.507},{"x":1752799921757,"y":48.467},{"x":1752799861575,"y":42.161},{"x":1752799801408,"y":44.947},{"x":1752799740900,"y":56.311},{"x":1752799680750,"y":53.697},{"x":1752799620600,"y":51.735},{"x":1752799560467,"y":41.34},{"x":1752799503193,"y":45.95},{"x":1752799442751,"y":47.792},{"x":1752799382581,"y":34.187},{"x":1752799322410,"y":45.842},{"x":1752799262248,"y":31.234},{"x":1752799202080,"y":34.138},{"x":1752799141623,"y":31.38},{"x":1752799081455,"y":31.647},{"x":1752799021293,"y":41.131},{"x":1752798961115,"y":43.959},{"x":1752798900941,"y":33.165},{"x":1752798842971,"y":39.544},{"x":1752798782821,"y":40.873},{"x":1752798722649,"y":42.042},{"x":1752798662474,"y":45.073},{"x":1752798602269,"y":39.297},{"x":1752798541792,"y":31.888},{"x":1752798481570,"y":27.965},{"x":1752798421400,"y":39.013},{"x":1752798361236,"y":42.441},{"x":1752798301061,"y":39.82},{"x":1752798240536,"y":41.452},{"x":1752798180416,"y":38.722},{"x":1752798120270,"y":31.405},{"x":1752798062878,"y":29.381},{"x":1752798002721,"y":34.749},{"x":1752797942259,"y":35.519},{"x":1752797882086,"y":47.548},{"x":1752797821916,"y":55.533},{"x":1752797761748,"y":58.628},{"x":1752797701589,"y":61.152},{"x":1752797641025,"y":58.612},{"x":1752797580838,"y":61.954},{"x":1752797520697,"y":56.353},{"x":1752797460525,"y":59.073},{"x":1752797400952,"y":54.184},{"x":1752797342906,"y":55.434},{"x":1752797282737,"y":29.028},{"x":1752797222580,"y":33.788},{"x":1752797162410,"y":33.406},{"x":1752797102255,"y":33.1},{"x":1752797041820,"y":38.289},{"x":1752796981654,"y":52.41},{"x":1752796921482,"y":52.515},{"x":1752796861351,"y":52.775},{"x":1752796801980,"y":54.971},{"x":1752796740422,"y":51.902},{"x":1752796680348,"y":29.666},{"x":1752796622939,"y":31.326},{"x":1752796562778,"y":30.056},{"x":1752796502622,"y":30.517},{"x":1752796442192,"y":32.637},{"x":1752796382024,"y":38.814},{"x":1752796321872,"y":34.702},{"x":1752796261696,"y":31.245},{"x":1752796201535,"y":28.911},{"x":1752796141077,"y":31.744},{"x":1752796080908,"y":32.52},{"x":1752796020736,"y":29.24},{"x":1752795960582,"y":32.716},{"x":1752795901313,"y":35.825},{"x":1752795840181,"y":32.836},{"x":1752795782905,"y":35.036},{"x":1752795722713,"y":33.604},{"x":1752795662545,"y":33.864},{"x":1752795602386,"y":32.261},{"x":1752795541921,"y":32.705},{"x":1752795481735,"y":36.389},{"x":1752795421567,"y":35.245},{"x":1752795361408,"y":31.758},{"x":1752795301233,"y":30.875},{"x":1752795240717,"y":37.467},{"x":1752795180560,"y":33.945},{"x":1752795120425,"y":38.043},{"x":1752795060256,"y":32.372},{"x":1752795002852,"y":36.302},{"x":1752794942211,"y":29.25},{"x":1752794881995,"y":30.433},{"x":1752794821810,"y":29.739},{"x":1752794761650,"y":28.345},{"x":1752794701477,"y":30.793},{"x":1752794641015,"y":28.505},{"x":1752794580840,"y":28.558},{"x":1752794520680,"y":28.992},{"x":1752794460567,"y":33.543},{"x":1752794400210,"y":30.068},{"x":1752794342841,"y":38.862},{"x":1752794282655,"y":51.896},{"x":1752794222496,"y":48.142},{"x":1752794162291,"y":50.895},{"x":1752794102123,"y":51.178},{"x":1752794041687,"y":36.445},{"x":1752793981525,"y":38.356},{"x":1752793921358,"y":28.344},{"x":1752793861186,"y":31.888},{"x":1752793801008,"y":31.336},{"x":1752793740288,"y":33.403},{"x":1752793682882,"y":57.98},{"x":1752793622718,"y":53.54},{"x":1752793562553,"y":60.825},{"x":1752793502384,"y":64.568},{"x":1752793441961,"y":61.592},{"x":1752793381756,"y":36.254},{"x":1752793321570,"y":35.587},{"x":1752793261401,"y":31.975},{"x":1752793201824,"y":37.357},{"x":1752793140556,"y":29.483},{"x":1752793080383,"y":33.033},{"x":1752793023025,"y":31.608},{"x":1752792962856,"y":31.17},{"x":1752792902664,"y":31.39},{"x":1752792842190,"y":29.047},{"x":1752792781995,"y":33.983},{"x":1752792721827,"y":33.072},{"x":1752792661666,"y":32.979},{"x":1752792601499,"y":34.083},{"x":1752792541013,"y":34.252},{"x":1752792480849,"y":30.409},{"x":1752792420662,"y":31.777},{"x":1752792360521,"y":33.36},{"x":1752792303227,"y":30.66},{"x":1752792242768,"y":32.29},{"x":1752792182586,"y":45.98},{"x":1752792122416,"y":40.812},{"x":1752792062243,"y":43.302},{"x":1752792002058,"y":45.466},{"x":1752791941602,"y":37.314},{"x":1752791881431,"y":34.258},{"x":1752791821252,"y":33.377},{"x":1752791761043,"y":33.851},{"x":1752791700874,"y":34.76},{"x":1752791642943,"y":31.946},{"x":1752791582775,"y":34.001},{"x":1752791522604,"y":37.379},{"x":1752791462427,"y":33.2},{"x":1752791402278,"y":31.894},{"x":1752791341729,"y":30.207},{"x":1752791281508,"y":33.41},{"x":1752791221316,"y":34.178},{"x":1752791161134,"y":30.722},{"x":1752791100939,"y":31.785},{"x":1752791042907,"y":29.874},{"x":1752790982733,"y":33.135},{"x":1752790922540,"y":31.362},{"x":1752790862372,"y":32.75},{"x":1752790802182,"y":35.847},{"x":1752790741736,"y":34.252},{"x":1752790681575,"y":36.856},{"x":1752790621393,"y":35.239},{"x":1752790561225,"y":39.428},{"x":1752790501282,"y":42.774},{"x":1752790440663,"y":43.504},{"x":1752790380556,"y":41.571},{"x":1752790320444,"y":46.913},{"x":1752790262965,"y":39.924},{"x":1752790202795,"y":34.659},{"x":1752790142350,"y":34.058},{"x":1752790082167,"y":34.396},{"x":1752790021980,"y":34.971},{"x":1752789961813,"y":35.835},{"x":1752789901647,"y":41.049},{"x":1752789841179,"y":38.231},{"x":1752789780973,"y":38.018},{"x":1752789720810,"y":32.137},{"x":1752789660655,"y":41.849},{"x":1752789603362,"y":40.938},{"x":1752789542809,"y":37.779},{"x":1752789482651,"y":39.944},{"x":1752789422470,"y":40.855},{"x":1752789362286,"y":34.43},{"x":1752789302129,"y":39.781},{"x":1752789241684,"y":38.417},{"x":1752789181497,"y":30.98},{"x":1752789121325,"y":36.564},{"x":1752789061131,"y":36.096},{"x":1752789000913,"y":39.623},{"x":1752788942961,"y":43.195},{"x":1752788882791,"y":34.268},{"x":1752788822630,"y":36.433},{"x":1752788762454,"y":33.839},{"x":1752788702277,"y":38.651},{"x":1752788641827,"y":44.504},{"x":1752788581660,"y":40.072},{"x":1752788521489,"y":39.003},{"x":1752788461313,"y":36.127},{"x":1752788401151,"y":41.602},{"x":1752788343019,"y":44.445},{"x":1752788282843,"y":59.191},{"x":1752788222639,"y":55.77},{"x":1752788162472,"y":60.825},{"x":1752788102310,"y":56.857},{"x":1752788041841,"y":58.212},{"x":1752787981638,"y":37.372},{"x":1752787921462,"y":43.965},{"x":1752787861295,"y":45.437},{"x":1752787801223,"y":44.487},{"x":1752787740579,"y":38.751},{"x":1752787680606,"y":49.922},{"x":1752787623026,"y":52.275},{"x":1752787562856,"y":46.948},{"x":1752787502652,"y":46.918},{"x":1752787442217,"y":49.135},{"x":1752787382045,"y":40.441},{"x":1752787321866,"y":34.934},{"x":1752787261723,"y":36.681},{"x":1752787201556,"y":37.809},{"x":1752787141054,"y":41.113},{"x":1752787080842,"y":43.95},{"x":1752787020687,"y":40.072},{"x":1752786960572,"y":41.462},{"x":1752786901166,"y":45.033},{"x":1752786842959,"y":41.866},{"x":1752786782783,"y":47.308},{"x":1752786722610,"y":39.633},{"x":1752786662429,"y":41.215},{"x":1752786602268,"y":34.141},{"x":1752786541818,"y":37.88},{"x":1752786481655,"y":37.466},{"x":1752786421486,"y":38.539},{"x":1752786361321,"y":34.663},{"x":1752786301138,"y":40.235},{"x":1752786240654,"y":37.587},{"x":1752786180532,"y":36.606},{"x":1752786120319,"y":35.03},{"x":1752786062969,"y":35.015},{"x":1752786002801,"y":35.985},{"x":1752785942210,"y":39.626},{"x":1752785882043,"y":37.883},{"x":1752785821861,"y":44.447},{"x":1752785761695,"y":52.23},{"x":1752785701514,"y":57.849},{"x":1752785640983,"y":45.913},{"x":1752785580819,"y":44.084},{"x":1752785520664,"y":36.228},{"x":1752785460485,"y":37.094},{"x":1752785403262,"y":45.646},{"x":1752785342816,"y":40.304},{"x":1752785282645,"y":37.671},{"x":1752785222437,"y":43.174},{"x":1752785162259,"y":38.629},{"x":1752785102083,"y":46.997},{"x":1752785041601,"y":52.418},{"x":1752784981430,"y":38.616},{"x":1752784921251,"y":39.162},{"x":1752784861073,"y":41.235},{"x":1752784800890,"y":44.797},{"x":1752784742953,"y":46.82},{"x":1752784682761,"y":48.785},{"x":1752784622588,"y":41.553},{"x":1752784562423,"y":51.411},{"x":1752784502238,"y":64.622},{"x":1752784441796,"y":46.008},{"x":1752784381618,"y":41.184},{"x":1752784321447,"y":54.63},{"x":1752784261275,"y":39.296},{"x":1752784201389,"y":46.447},{"x":1752784140135,"y":42.708},{"x":1752784082858,"y":42.543},{"x":1752784022670,"y":43.002},{"x":1752783962473,"y":48.24},{"x":1752783902307,"y":53.311},{"x":1752783841853,"y":48.089},{"x":1752783781709,"y":59.217},{"x":1752783721516,"y":42.407},{"x":1752783661303,"y":41.299},{"x":1752783601117,"y":60.836},{"x":1752783540146,"y":57.16},{"x":1752783482866,"y":52.656},{"x":1752783422699,"y":54.509},{"x":1752783362510,"y":54.838},{"x":1752783302290,"y":65.411},{"x":1752783241844,"y":51.08},{"x":1752783181677,"y":48.69},{"x":1752783121510,"y":46.973},{"x":1752783061337,"y":57.171},{"x":1752783001160,"y":48.486},{"x":1752782940553,"y":44.34},{"x":1752782880427,"y":47.73},{"x":1752782820149,"y":50.729},{"x":1752782762887,"y":52.138},{"x":1752782702792,"y":56.312},{"x":1752782642331,"y":56.682},{"x":1752782582154,"y":54.185},{"x":1752782521968,"y":50.577},{"x":1752782461782,"y":53.523},{"x":1752782402092,"y":56.822},{"x":1752782340689,"y":49.5},{"x":1752782280546,"y":48.647},{"x":1752782220347,"y":48.275},{"x":1752782162985,"y":53.35},{"x":1752782102803,"y":50.493},{"x":1752782042344,"y":45.925},{"x":1752781982181,"y":55.736},{"x":1752781921962,"y":40.076},{"x":1752781861793,"y":45.506},{"x":1752781801638,"y":54.877},{"x":1752781741160,"y":54.202},{"x":1752781680985,"y":50.705},{"x":1752781620769,"y":50.14},{"x":1752781560606,"y":58.486},{"x":1752781501284,"y":49.363},{"x":1752781440247,"y":41.982},{"x":1752781382852,"y":44.782},{"x":1752781322648,"y":50.415},{"x":1752781262473,"y":41.554},{"x":1752781202300,"y":47.699},{"x":1752781141819,"y":56.257},{"x":1752781081649,"y":71.444},{"x":1752781021449,"y":62.316},{"x":1752780961282,"y":61.657},{"x":1752780901094,"y":59.722},{"x":1752780840341,"y":46.813},{"x":1752780782985,"y":35.052},{"x":1752780722804,"y":38.97},{"x":1752780662638,"y":35.328},{"x":1752780602436,"y":44.959},{"x":1752780541769,"y":49.697},{"x":1752780481535,"y":43.067},{"x":1752780421364,"y":47.587},{"x":1752780361164,"y":52.067},{"x":1752780300984,"y":52.72},{"x":1752780242950,"y":40.454},{"x":1752780182772,"y":46.041},{"x":1752780122574,"y":51.006},{"x":1752780062386,"y":44.28},{"x":1752780002215,"y":47.655},{"x":1752779941723,"y":59.812},{"x":1752779881588,"y":67.565},{"x":1752779821402,"y":58.141},{"x":1752779761203,"y":55.345},{"x":1752779701130,"y":65.749},{"x":1752779642959,"y":45.437},{"x":1752779582788,"y":49.307},{"x":1752779522609,"y":52.417},{"x":1752779462426,"y":35.361},{"x":1752779402243,"y":44.24},{"x":1752779341791,"y":48.335},{"x":1752779281613,"y":37.898},{"x":1752779221427,"y":50.962},{"x":1752779161251,"y":57.852},{"x":1752779101082,"y":43.577},{"x":1752779040585,"y":40.845},{"x":1752778980261,"y":41.265},{"x":1752778922901,"y":44.513},{"x":1752778862710,"y":32.736},{"x":1752778802580,"y":36.85},{"x":1752778741795,"y":46.024},{"x":1752778681616,"y":32.106},{"x":1752778621437,"y":50.007},{"x":1752778561251,"y":55.044},{"x":1752778501077,"y":61.653},{"x":1752778440348,"y":41.361},{"x":1752778382984,"y":43.197},{"x":1752778322808,"y":52.796},{"x":1752778262633,"y":47.616},{"x":1752778202455,"y":45.455},{"x":1752778141990,"y":52.792},{"x":1752778081809,"y":60.826},{"x":1752778021638,"y":54.781},{"x":1752777961445,"y":56.457},{"x":1752777901617,"y":50.004},{"x":1752777840955,"y":50.207},{"x":1752777780772,"y":55.874},{"x":1752777720605,"y":46.171},{"x":1752777660349,"y":37.627},{"x":1752777602959,"y":54.906},{"x":1752777542493,"y":51.597},{"x":1752777482331,"y":48.036},{"x":1752777422110,"y":51.596},{"x":1752777361916,"y":48.289},{"x":1752777301743,"y":38.683},{"x":1752777241202,"y":47.661},{"x":1752777181013,"y":42.263},{"x":1752777120838,"y":41.391},{"x":1752777060680,"y":45.217},{"x":1752777001354,"y":45.998},{"x":1752776943029,"y":46.264},{"x":1752776882793,"y":48.627},{"x":1752776822593,"y":37.756},{"x":1752776762408,"y":46.79},{"x":1752776702241,"y":41.928},{"x":1752776641775,"y":40.587},{"x":1752776581595,"y":50.479},{"x":1752776521415,"y":40.13},{"x":1752776461227,"y":49.016},{"x":1752776401041,"y":52.282},{"x":1752776342957,"y":39.752},{"x":1752776282777,"y":37.289},{"x":1752776222606,"y":38.947},{"x":1752776162430,"y":33.682},{"x":1752776102255,"y":39.757},{"x":1752776041804,"y":60.823},{"x":1752775981630,"y":60.933},{"x":1752775921437,"y":58.797},{"x":1752775861256,"y":70.702},{"x":1752775801086,"y":75.604},{"x":1752775740305,"y":51.812},{"x":1752775682923,"y":41.765},{"x":1752775622748,"y":42.372},{"x":1752775562529,"y":40.182},{"x":1752775502349,"y":40.055},{"x":1752775441869,"y":35.858},{"x":1752775381675,"y":45.257},{"x":1752775321496,"y":45.969},{"x":1752775261300,"y":43.83},{"x":1752775202110,"y":44.363},{"x":1752775143028,"y":52.275},{"x":1752775082829,"y":45.888},{"x":1752775022657,"y":39.935},{"x":1752774962460,"y":40.372},{"x":1752774902279,"y":41.418},{"x":1752774841816,"y":66.707},{"x":1752774781641,"y":46.369},{"x":1752774721439,"y":48.834},{"x":1752774661264,"y":47.263},{"x":1752774601122,"y":42.585},{"x":1752774540273,"y":38.94},{"x":1752774482883,"y":34.015},{"x":1752774422705,"y":45.361},{"x":1752774362530,"y":35.621},{"x":1752774302358,"y":35.597},{"x":1752774241906,"y":34.381},{"x":1752774181721,"y":48.154},{"x":1752774121544,"y":46.286},{"x":1752774061361,"y":48.089},{"x":1752774001188,"y":45.242},{"x":1752773940301,"y":49.187},{"x":1752773882977,"y":41.741},{"x":1752773822756,"y":39.938},{"x":1752773762570,"y":41.345},{"x":1752773702396,"y":35.563},{"x":1752773641937,"y":53.462},{"x":1752773581788,"y":36.298},{"x":1752773521589,"y":37.987},{"x":1752773461420,"y":46.298},{"x":1752773401542,"y":39.955},{"x":1752773340381,"y":36.223},{"x":1752773283030,"y":41.077},{"x":1752773222799,"y":48.5},{"x":1752773162628,"y":41.122},{"x":1752773102454,"y":48.851},{"x":1752773041979,"y":47.321},{"x":1752772981798,"y":67.035},{"x":1752772921624,"y":60.695},{"x":1752772861447,"y":75.495},{"x":1752772801226,"y":67.403},{"x":1752772740643,"y":57.797},{"x":1752772680370,"y":42.208},{"x":1752772622980,"y":44.266},{"x":1752772562791,"y":32.11},{"x":1752772502579,"y":36.57},{"x":1752772442130,"y":54.236},{"x":1752772381927,"y":52.64},{"x":1752772321751,"y":55.261},{"x":1752772261576,"y":45.939},{"x":1752772201388,"y":48.821},{"x":1752772140766,"y":37.7},{"x":1752772080716,"y":41.667},{"x":1752772020361,"y":48.305},{"x":1752771962972,"y":51.058},{"x":1752771902806,"y":47.713},{"x":1752771842352,"y":45.354},{"x":1752771782148,"y":57.395},{"x":1752771721949,"y":51.791},{"x":1752771661772,"y":50.066},{"x":1752771602150,"y":37.475},{"x":1752771540736,"y":43.898},{"x":1752771480571,"y":46.024},{"x":1752771420398,"y":40.001},{"x":1752771362991,"y":45.64},{"x":1752771302817,"y":45.653},{"x":1752771242365,"y":50.849},{"x":1752771182192,"y":36.581},{"x":1752771122009,"y":46.855},{"x":1752771061823,"y":42.842},{"x":1752771001651,"y":45.882},{"x":1752770941195,"y":39.53},{"x":1752770880971,"y":53.126},{"x":1752770820797,"y":36.278},{"x":1752770760632,"y":36.577},{"x":1752770701429,"y":33.28},{"x":1752770640133,"y":30.123},{"x":1752770582881,"y":60.815},{"x":1752770522692,"y":38.557},{"x":1752770462517,"y":37.157},{"x":1752770402332,"y":37.547},{"x":1752770341869,"y":39.45},{"x":1752770281683,"y":34.547},{"x":1752770221499,"y":34.843},{"x":1752770161298,"y":32.447},{"x":1752770101126,"y":33.274},{"x":1752770040555,"y":34.256},{"x":1752769980413,"y":44.104},{"x":1752769922960,"y":55.163},{"x":1752769862785,"y":55.244},{"x":1752769802602,"y":51.464},{"x":1752769742139,"y":54.568},{"x":1752769681896,"y":48.938},{"x":1752769621699,"y":35.566},{"x":1752769561521,"y":29.885},{"x":1752769501330,"y":33.129},{"x":1752769440843,"y":38.094},{"x":1752769380639,"y":46.294},{"x":1752769320473,"y":33.076},{"x":1752769260250,"y":34.282},{"x":1752769202774,"y":45.425},{"x":1752769142295,"y":26.167},{"x":1752769082112,"y":36.39},{"x":1752769021924,"y":38.773},{"x":1752768961744,"y":37.878},{"x":1752768901587,"y":43.659},{"x":1752768840957,"y":37.911},{"x":1752768780791,"y":36.098},{"x":1752768720633,"y":26.27},{"x":1752768660434,"y":28.361},{"x":1752768603117,"y":27.812},{"x":1752768542613,"y":42.139},{"x":1752768482435,"y":46.834},{"x":1752768422254,"y":23.924},{"x":1752768362051,"y":31.925},{"x":1752768301859,"y":41.63},{"x":1752768241401,"y":35.619},{"x":1752768181226,"y":38.146},{"x":1752768121052,"y":42.53},{"x":1752768060829,"y":42.285},{"x":1752768002141,"y":45.703},{"x":1752767940529,"y":25.664},{"x":1752767880283,"y":25.247},{"x":1752767822941,"y":33.2},{"x":1752767762760,"y":28.736},{"x":1752767702590,"y":35.204},{"x":1752767642077,"y":46.477},{"x":1752767581889,"y":37.792},{"x":1752767521766,"y":53.034},{"x":1752767461621,"y":48.552},{"x":1752767401706,"y":31.173},{"x":1752767341110,"y":29.968},{"x":1752767280979,"y":30.481},{"x":1752767220730,"y":31.045},{"x":1752767160585,"y":20.057},{"x":1752767101370,"y":30.558},{"x":1752767042967,"y":30.712},{"x":1752766982781,"y":33.752},{"x":1752766922607,"y":22.459},{"x":1752766862421,"y":28.551},{"x":1752766802250,"y":30.084},{"x":1752766741786,"y":32.908},{"x":1752766681574,"y":35.288},{"x":1752766621391,"y":35.877},{"x":1752766561216,"y":32.658},{"x":1752766501044,"y":37.03},{"x":1752766440273,"y":24.536},{"x":1752766382933,"y":24.593},{"x":1752766322753,"y":35.006},{"x":1752766262576,"y":31.755},{"x":1752766202347,"y":37.614},{"x":1752766141798,"y":52.681},{"x":1752766081570,"y":51.302},{"x":1752766021369,"y":43.458},{"x":1752765961195,"y":46.124},{"x":1752765901017,"y":51.953},{"x":1752765840131,"y":37.398},{"x":1752765782902,"y":36.67},{"x":1752765722726,"y":46.523},{"x":1752765662534,"y":36.489},{"x":1752765602359,"y":42.941},{"x":1752765541955,"y":54.131},{"x":1752765481706,"y":46.667},{"x":1752765421512,"y":44.966},{"x":1752765361322,"y":39.162},{"x":1752765301428,"y":36.29},{"x":1752765240861,"y":32.159},{"x":1752765180694,"y":27.912},{"x":1752765120690,"y":30.008},{"x":1752765060367,"y":27.976},{"x":1752765002972,"y":27.293},{"x":1752764942520,"y":37.312},{"x":1752764882332,"y":36.101},{"x":1752764822149,"y":39.638},{"x":1752764761955,"y":39.654},{"x":1752764701688,"y":38.425},{"x":1752764641166,"y":25.678},{"x":1752764580966,"y":21.856},{"x":1752764520794,"y":24.705},{"x":1752764460659,"y":29.596},{"x":1752764403397,"y":24.654},{"x":1752764342735,"y":25.802},{"x":1752764282563,"y":27.743},{"x":1752764222392,"y":35.702},{"x":1752764162223,"y":30.556},{"x":1752764102037,"y":22.029},{"x":1752764041591,"y":38.596},{"x":1752763981382,"y":29.044},{"x":1752763921164,"y":31.512},{"x":1752763860953,"y":31.618},{"x":1752763800764,"y":41.562},{"x":1752763742903,"y":38.739},{"x":1752763682725,"y":52.123},{"x":1752763622557,"y":47.458},{"x":1752763562370,"y":37.167},{"x":1752763502208,"y":53.472},{"x":1752763441718,"y":43.967},{"x":1752763381557,"y":29.501},{"x":1752763321385,"y":40.48},{"x":1752763261184,"y":39.683},{"x":1752763202688,"y":38.158},{"x":1752763141844,"y":45.31},{"x":1752763081741,"y":48.607},{"x":1752763020527,"y":45.63},{"x":1752762962662,"y":45.091},{"x":1752762902460,"y":35.409},{"x":1752762840615,"y":36.095},{"x":1752762780342,"y":29.803},{"x":1752762722906,"y":36.389},{"x":1752762662726,"y":28.502},{"x":1752762602524,"y":35.166},{"x":1752762541931,"y":44.696},{"x":1752762485020,"y":45.213},{"x":1752762420662,"y":45.355},{"x":1752762360428,"y":37.402},{"x":1752762303148,"y":31.082},{"x":1752762242701,"y":26.91},{"x":1752762182545,"y":25.022},{"x":1752762121788,"y":24.415},{"x":1752762061596,"y":19.865},{"x":1752762001420,"y":26.768},{"x":1752761942215,"y":20.33},{"x":1752761880601,"y":45.539},{"x":1752761820394,"y":36.293},{"x":1752761762986,"y":35.825},{"x":1752761702166,"y":44.761},{"x":1752761641676,"y":34.876},{"x":1752761581352,"y":31.472},{"x":1752761520762,"y":24.803},{"x":1752761460557,"y":30.46},{"x":1752761403301,"y":34.453},{"x":1752761342038,"y":26.652},{"x":1752761281818,"y":27.962},{"x":1752761221650,"y":34.233},{"x":1752761161469,"y":28.855},{"x":1752761101300,"y":25.468},{"x":1752761040823,"y":27.957},{"x":1752760980680,"y":32.299},{"x":1752760922884,"y":49.734},{"x":1752760862523,"y":52.537},{"x":1752760802036,"y":57.896},{"x":1752760740749,"y":39.256},{"x":1752760681544,"y":40.474},{"x":1752760622741,"y":29.019},{"x":1752760562567,"y":30.333},{"x":1752760502651,"y":29.262},{"x":1752760440376,"y":22.171},{"x":1752760382580,"y":25.638},{"x":1752760322893,"y":40.705},{"x":1752760262723,"y":34.598},{"x":1752760202863,"y":52.611},{"x":1752760142390,"y":49.496},{"x":1752760082220,"y":46.961},{"x":1752760022054,"y":49.015},{"x":1752759961865,"y":21.967},{"x":1752759902134,"y":22.752},{"x":1752759841526,"y":21.221},{"x":1752759781349,"y":24.625},{"x":1752759721164,"y":16.842},{"x":1752759660972,"y":29.327},{"x":1752759601441,"y":53.078},{"x":1752759540632,"y":50.382},{"x":1752759480487,"y":54.876},{"x":1752759420338,"y":51.546},{"x":1752759362922,"y":45.045},{"x":1752759302978,"y":30.062},{"x":1752759242542,"y":26.158},{"x":1752759182374,"y":22.507},{"x":1752759122193,"y":32.937},{"x":1752759062029,"y":22.283},{"x":1752759002283,"y":34.162},{"x":1752758941517,"y":24.526},{"x":1752758881292,"y":50.711},{"x":1752758821088,"y":34.101},{"x":1752758760896,"y":28.316},{"x":1752758701081,"y":24.686},{"x":1752758640635,"y":16.73},{"x":1752758580497,"y":29.641},{"x":1752758520102,"y":24.413},{"x":1752758462838,"y":27.558},{"x":1752758402964,"y":27.147},{"x":1752758342475,"y":30.011},{"x":1752758282279,"y":38.679},{"x":1752758222120,"y":37.535},{"x":1752758161891,"y":28.237},{"x":1752758101979,"y":15.477},{"x":1752758041507,"y":19.121},{"x":1752757981331,"y":25.473},{"x":1752757921152,"y":24.123},{"x":1752757860940,"y":29.453},{"x":1752757801130,"y":24.122},{"x":1752757740629,"y":26.286},{"x":1752757680511,"y":38.594},{"x":1752757620300,"y":33.263},{"x":1752757562930,"y":30.89},{"x":1752757503048,"y":38.756},{"x":1752757442406,"y":36.179},{"x":1752757382219,"y":21.945},{"x":1752757322017,"y":25.071},{"x":1752757261842,"y":24.983},{"x":1752757202503,"y":16.669},{"x":1752757141399,"y":33.204},{"x":1752757081227,"y":41.975},{"x":1752757021032,"y":38.448},{"x":1752756960892,"y":69.891},{"x":1752756901127,"y":65.234},{"x":1752756840470,"y":42.493},{"x":1752756780300,"y":44.909},{"x":1752756722930,"y":33.904},{"x":1752756662739,"y":24.21},{"x":1752756602864,"y":16.083},{"x":1752756542397,"y":17.111},{"x":1752756482233,"y":20.91},{"x":1752756422066,"y":26.493},{"x":1752756361874,"y":43.418},{"x":1752756302031,"y":33.056},{"x":1752756241521,"y":34.686},{"x":1752756181339,"y":27.96},{"x":1752756121136,"y":31.476},{"x":1752756060930,"y":29.818},{"x":1752756001196,"y":22.43},{"x":1752755940477,"y":37.858},{"x":1752755880486,"y":37.819},{"x":1752755821982,"y":24.683},{"x":1752755761808,"y":37.17},{"x":1752755701914,"y":48.979},{"x":1752755641494,"y":35.825},{"x":1752755581292,"y":16.338},{"x":1752755521076,"y":24.055},{"x":1752755460897,"y":13.616},{"x":1752755401306,"y":16.154},{"x":1752755340376,"y":23.958},{"x":1752755282877,"y":21.015},{"x":1752755222659,"y":25.471},{"x":1752755162461,"y":20.651},{"x":1752755102565,"y":21.329},{"x":1752755042114,"y":42.283},{"x":1752754981917,"y":38.127},{"x":1752754921751,"y":28.971},{"x":1752754861578,"y":19.125},{"x":1752754801686,"y":15.013},{"x":1752754741233,"y":19.108},{"x":1752754681008,"y":5.288},{"x":1752754620856,"y":15.813},{"x":1752754560645,"y":7.213},{"x":1752754501121,"y":9.729},{"x":1752754442959,"y":20.087},{"x":1752754382792,"y":15.765},{"x":1752754322633,"y":10.76},{"x":1752754262431,"y":11.506},{"x":1752754202595,"y":6.172},{"x":1752754142078,"y":8.682},{"x":1752754081933,"y":7.162},{"x":1752754021716,"y":24.564},{"x":1752753961562,"y":27.895},{"x":1752753901650,"y":28.661},{"x":1752753841203,"y":35.065},{"x":1752753781001,"y":25.453},{"x":1752753720830,"y":19.563},{"x":1752753660664,"y":19.024},{"x":1752753601907,"y":11.152},{"x":1752753540253,"y":10.909},{"x":1752753482887,"y":9.997},{"x":1752753422721,"y":35.721},{"x":1752753362551,"y":27.571},{"x":1752753302671,"y":26.464},{"x":1752753242220,"y":37.794},{"x":1752753182038,"y":21.857},{"x":1752753121847,"y":18.105},{"x":1752753061672,"y":11.59},{"x":1752753001833,"y":11.851},{"x":1752752941323,"y":16.317},{"x":1752752881151,"y":17.029},{"x":1752752820935,"y":22.181},{"x":1752752760763,"y":16.023},{"x":1752752701418,"y":22.058},{"x":1752752640447,"y":25.568},{"x":1752752580295,"y":27.714},{"x":1752752522869,"y":36.917},{"x":1752752462693,"y":28.266},{"x":1752752402773,"y":18.668},{"x":1752752342332,"y":14.208},{"x":1752752282159,"y":13.52},{"x":1752752221980,"y":29.076},{"x":1752752161764,"y":17.344},{"x":1752752101873,"y":18.885},{"x":1752752041448,"y":25.995},{"x":1752751981254,"y":29.065},{"x":1752751921039,"y":40.332},{"x":1752751860868,"y":17.407},{"x":1752751801717,"y":13.77},{"x":1752751740304,"y":9.452},{"x":1752751682860,"y":19.822},{"x":1752751621947,"y":21.721},{"x":1752751562740,"y":18.139},{"x":1752751501260,"y":13.289},{"x":1752751440738,"y":23.157},{"x":1752751380459,"y":21.773},{"x":1752751320396,"y":17.68},{"x":1752751262957,"y":10.241},{"x":1752751203112,"y":16.254},{"x":1752751142610,"y":15.35},{"x":1752751082409,"y":16.953},{"x":1752751022233,"y":21.367},{"x":1752750962055,"y":20.243},{"x":1752750901957,"y":24.431},{"x":1752750841553,"y":9.795},{"x":1752750781330,"y":8.869},{"x":1752750721154,"y":37.48},{"x":1752750660970,"y":36.094},{"x":1752750601329,"y":33.893},{"x":1752750540488,"y":35.536},{"x":1752750480301,"y":34.793},{"x":1752750422908,"y":22.711},{"x":1752750362743,"y":20.918},{"x":1752750302831,"y":16.398},{"x":1752750242388,"y":19.614},{"x":1752750182204,"y":27.047},{"x":1752750121976,"y":23.914},{"x":1752750061810,"y":36.423},{"x":1752750002541,"y":38.855},{"x":1752749941366,"y":24.332},{"x":1752749881193,"y":22.934},{"x":1752749821018,"y":23.782},{"x":1752749760845,"y":20.92},{"x":1752749701122,"y":8.737},{"x":1752749640565,"y":15.194},{"x":1752749580308,"y":25.17},{"x":1752749522916,"y":22.247},{"x":1752749462747,"y":18.684},{"x":1752749402860,"y":30.564},{"x":1752749342403,"y":21.177},{"x":1752749282223,"y":27.821},{"x":1752749222049,"y":25.056},{"x":1752749161875,"y":30.052},{"x":1752749102016,"y":20.679},{"x":1752749041537,"y":31.778},{"x":1752748981346,"y":44.274},{"x":1752748921161,"y":34.21},{"x":1752748860979,"y":46.524},{"x":1752748801283,"y":30.357},{"x":1752748740624,"y":27.957},{"x":1752748680515,"y":21.881},{"x":1752748620276,"y":16.844},{"x":1752748562875,"y":13.016},{"x":1752748502971,"y":12.419},{"x":1752748442528,"y":25.878},{"x":1752748382359,"y":30.424},{"x":1752748322177,"y":33.326},{"x":1752748261986,"y":30.36},{"x":1752748202139,"y":39.454},{"x":1752748141665,"y":27.548},{"x":1752748081391,"y":15.538},{"x":1752748021174,"y":20.219},{"x":1752747960992,"y":22.753},{"x":1752747901145,"y":24.785},{"x":1752747840652,"y":26.842},{"x":1752747780512,"y":45.438},{"x":1752747720314,"y":41.917},{"x":1752747662976,"y":53.197},{"x":1752747603100,"y":64.839},{"x":1752747542633,"y":48.004},{"x":1752747482461,"y":52.366},{"x":1752747422276,"y":49.867},{"x":1752747362101,"y":44.043},{"x":1752747302181,"y":45.572},{"x":1752747241752,"y":48.304},{"x":1752747181564,"y":49.667},{"x":1752747121396,"y":47.15},{"x":1752747061232,"y":51.784},{"x":1752747001466,"y":54.389},{"x":1752746940846,"y":54.243},{"x":1752746880676,"y":37.078},{"x":1752746820476,"y":25.4},{"x":1752746760411,"y":34.669},{"x":1752746703300,"y":21.331},{"x":1752746642828,"y":33.62},{"x":1752746582644,"y":40.385},{"x":1752746522458,"y":34.216},{"x":1752746462283,"y":45.576},{"x":1752746402812,"y":43.343},{"x":1752746341879,"y":47.88},{"x":1752746281680,"y":36.856},{"x":1752746221519,"y":47.284},{"x":1752746161304,"y":48.486},{"x":1752746101434,"y":39.315},{"x":1752746040960,"y":39.2},{"x":1752745980768,"y":19.816},{"x":1752745920654,"y":24.779},{"x":1752745860395,"y":20.125},{"x":1752745801053,"y":25.524},{"x":1752745742866,"y":23.981},{"x":1752745682703,"y":22.22},{"x":1752745620778,"y":18.87},{"x":1752745560617,"y":17.981},{"x":1752745501890,"y":29.412},{"x":1752745441425,"y":28.195},{"x":1752745381238,"y":25.894},{"x":1752745321038,"y":26.334},{"x":1752745260854,"y":26.93},{"x":1752745201551,"y":36.382},{"x":1752745141015,"y":26.635},{"x":1752745080859,"y":15.155},{"x":1752745020971,"y":12.504},{"x":1752744960822,"y":18.497},{"x":1752744901132,"y":20.313},{"x":1752744840488,"y":24.718},{"x":1752744780282,"y":14.87},{"x":1752744722956,"y":21.112},{"x":1752744662813,"y":28.968},{"x":1752744602924,"y":35.355},{"x":1752744542440,"y":32.428},{"x":1752744482255,"y":21.001},{"x":1752744422088,"y":25.995},{"x":1752744362225,"y":15.522},{"x":1752744302154,"y":16.801},{"x":1752744241617,"y":17.446},{"x":1752744181439,"y":18.072},{"x":1752744121276,"y":18.26},{"x":1752744061091,"y":17.182},{"x":1752744001504,"y":21.312},{"x":1752743940863,"y":30.086},{"x":1752743880642,"y":30.81},{"x":1752743820364,"y":31.976},{"x":1752743762948,"y":29.54},{"x":1752743703068,"y":28.438},{"x":1752743642621,"y":30.303},{"x":1752743582483,"y":25.414},{"x":1752743522281,"y":24.667},{"x":1752743461390,"y":22.506},{"x":1752743401643,"y":22.809},{"x":1752743341209,"y":32.632},{"x":1752743281045,"y":37.961},{"x":1752743220874,"y":37.76},{"x":1752743160709,"y":36.249},{"x":1752743100984,"y":30.64},{"x":1752743040492,"y":24.608},{"x":1752742983025,"y":27.696},{"x":1752742922851,"y":21.506},{"x":1752742862699,"y":35.473},{"x":1752742803077,"y":38.56},{"x":1752742742371,"y":41.007},{"x":1752742682215,"y":26.802},{"x":1752742622045,"y":34.462},{"x":1752742561874,"y":33.438},{"x":1752742502034,"y":21.298},{"x":1752742441541,"y":26.373},{"x":1752742381374,"y":22.744},{"x":1752742321194,"y":18.496},{"x":1752742261024,"y":22.946},{"x":1752742201192,"y":34.448},{"x":1752742140682,"y":31.29},{"x":1752742080589,"y":22.004},{"x":1752742020360,"y":22.071},{"x":1752741960112,"y":22.879},{"x":1752741903145,"y":23.778},{"x":1752741842685,"y":33.007},{"x":1752741782515,"y":32.52},{"x":1752741722357,"y":31.466},{"x":1752741662201,"y":36.056},{"x":1752741602325,"y":43.329},{"x":1752741541880,"y":32.524},{"x":1752741481691,"y":33.125},{"x":1752741421543,"y":31.782},{"x":1752741361358,"y":19.079},{"x":1752741301490,"y":24.632},{"x":1752741241012,"y":24.312},{"x":1752741180836,"y":24.065},{"x":1752741120738,"y":32.568},{"x":1752741060591,"y":29.851},{"x":1752741003162,"y":37.597},{"x":1752740940688,"y":30.835},{"x":1752740880577,"y":33.325},{"x":1752740823061,"y":31.55},{"x":1752740762880,"y":31.21},{"x":1752740702969,"y":19.837},{"x":1752740642536,"y":24.16},{"x":1752740582350,"y":22.64},{"x":1752740522178,"y":17.904},{"x":1752740461991,"y":22.318},{"x":1752740402139,"y":34.742},{"x":1752740341376,"y":47.295},{"x":1752740281210,"y":35.731},{"x":1752740221032,"y":31.769},{"x":1752740162913,"y":40.172},{"x":1752740101273,"y":30.399},{"x":1752740042564,"y":24.266},{"x":1752739982436,"y":33.522},{"x":1752739920937,"y":26.107},{"x":1752739861724,"y":22.947},{"x":1752739801168,"y":29.852},{"x":1752739742366,"y":40.703},{"x":1752739682385,"y":29.327},{"x":1752739621629,"y":31.095},{"x":1752739560435,"y":37.856},{"x":1752739500750,"y":52.101},{"x":1752739442860,"y":43.315},{"x":1752739382704,"y":39.882},{"x":1752739322551,"y":40.206},{"x":1752739262377,"y":44.56},{"x":1752739202854,"y":42.031},{"x":1752739141997,"y":32.961},{"x":1752739081811,"y":43.725},{"x":1752739021647,"y":26.829},{"x":1752738961494,"y":26.022},{"x":1752738901610,"y":36.808},{"x":1752738841203,"y":39.774},{"x":1752738780963,"y":28.043},{"x":1752738720819,"y":32.132},{"x":1752738660645,"y":35.792},{"x":1752738601032,"y":40.992},{"x":1752738540363,"y":40.89},{"x":1752738483017,"y":37.468},{"x":1752738422853,"y":32.441},{"x":1752738362693,"y":32.181},{"x":1752738302821,"y":20.94},{"x":1752738242368,"y":19.034},{"x":1752738182190,"y":32.46},{"x":1752738122041,"y":34.649},{"x":1752738061872,"y":46.117},{"x":1752738002011,"y":41.905},{"x":1752737941526,"y":45.733},{"x":1752737881354,"y":28.091},{"x":1752737821194,"y":26.036},{"x":1752737761004,"y":34.554},{"x":1752737701151,"y":22.684},{"x":1752737640679,"y":21.943},{"x":1752737580504,"y":26.561},{"x":1752737520417,"y":26.355},{"x":1752737462317,"y":20.327},{"x":1752737402348,"y":48.965},{"x":1752737341167,"y":36.722},{"x":1752737280916,"y":34.296},{"x":1752737220740,"y":30.877},{"x":1752737160632,"y":32.458},{"x":1752737102911,"y":35.003},{"x":1752737041748,"y":31.703},{"x":1752736981580,"y":46.668},{"x":1752736921422,"y":38.265},{"x":1752736861255,"y":37.818},{"x":1752736801373,"y":31.641},{"x":1752736740877,"y":34.175},{"x":1752736680723,"y":21.482},{"x":1752736620603,"y":30.503},{"x":1752736560435,"y":30.027},{"x":1752736501089,"y":33.835},{"x":1752736442901,"y":52.718},{"x":1752736382731,"y":38.852},{"x":1752736322558,"y":33.813},{"x":1752736262400,"y":34.866},{"x":1752736201090,"y":40.171},{"x":1752736141781,"y":27.382},{"x":1752736082734,"y":30.322},{"x":1752736022578,"y":22.523},{"x":1752735961148,"y":26.64},{"x":1752735901261,"y":40.933},{"x":1752735840762,"y":37.095},{"x":1752735780620,"y":32.429},{"x":1752735721446,"y":34.312},{"x":1752735661302,"y":38.843},{"x":1752735602264,"y":30.604},{"x":1752735540898,"y":29.845},{"x":1752735480747,"y":30.397},{"x":1752735420597,"y":33.932},{"x":1752735360459,"y":40.628},{"x":1752735300975,"y":33.709},{"x":1752735242962,"y":24.451},{"x":1752735182800,"y":37.413},{"x":1752735122650,"y":42.844},{"x":1752735062454,"y":41.5},{"x":1752735002574,"y":45.787},{"x":1752734942122,"y":46.007},{"x":1752734881929,"y":51.715},{"x":1752734821756,"y":43.285},{"x":1752734761589,"y":60.493},{"x":1752734701786,"y":45.033},{"x":1752734641246,"y":52.874},{"x":1752734581069,"y":46.451},{"x":1752734520898,"y":48.216},{"x":1752734460721,"y":43.197},{"x":1752734401280,"y":53.96},{"x":1752734340435,"y":33.026},{"x":1752734283007,"y":33.934},{"x":1752734222841,"y":38.33},{"x":1752734162667,"y":29.551},{"x":1752734102772,"y":30.284},{"x":1752734042338,"y":37.733},{"x":1752733982167,"y":40.9},{"x":1752733921989,"y":31.798},{"x":1752733861836,"y":24.423},{"x":1752733801931,"y":37.005},{"x":1752733741393,"y":48.94},{"x":1752733681147,"y":36.518},{"x":1752733620951,"y":28.993},{"x":1752733560780,"y":38.478},{"x":1752733501092,"y":44.057},{"x":1752733440460,"y":31.621},{"x":1752733380248,"y":41.529},{"x":1752733322963,"y":51.289},{"x":1752733262806,"y":43.311},{"x":1752733202926,"y":69.714},{"x":1752733142501,"y":53.678},{"x":1752733082337,"y":66.202},{"x":1752733022171,"y":59.134},{"x":1752732961993,"y":48.494},{"x":1752732902115,"y":56.227},{"x":1752732841676,"y":52.857},{"x":1752732781516,"y":62.871},{"x":1752732721353,"y":48.472},{"x":1752732661207,"y":51.825},{"x":1752732601402,"y":34.149},{"x":1752732540839,"y":44.688},{"x":1752732480721,"y":45.364},{"x":1752732420477,"y":41.599},{"x":1752732360273,"y":45.84},{"x":1752732300786,"y":30.829},{"x":1752732242863,"y":30.262},{"x":1752732182696,"y":27.956},{"x":1752732122552,"y":27.274},{"x":1752732062373,"y":39.203},{"x":1752732002621,"y":34.457},{"x":1752731941980,"y":42.963},{"x":1752731881807,"y":42.768},{"x":1752731821642,"y":41.598},{"x":1752731761478,"y":44.38},{"x":1752731701609,"y":40.534},{"x":1752731641176,"y":34.992},{"x":1752731580968,"y":35.934},{"x":1752731520818,"y":37.567},{"x":1752731460658,"y":35.034},{"x":1752731400978,"y":44.717},{"x":1752731340474,"y":35.003},{"x":1752731280190,"y":36.578},{"x":1752731222869,"y":39.282},{"x":1752731162709,"y":42.82},{"x":1752731102802,"y":38.28},{"x":1752731042378,"y":37.552},{"x":1752730982211,"y":33.104},{"x":1752730922030,"y":33.382},{"x":1752730861867,"y":28.22},{"x":1752730801979,"y":26.89},{"x":1752730741530,"y":29.895},{"x":1752730681350,"y":27.712},{"x":1752730621187,"y":27.391},{"x":1752730561018,"y":30.327},{"x":1752730501161,"y":27.494},{"x":1752730440687,"y":26.84},{"x":1752730380526,"y":29.45},{"x":1752730320402,"y":27.061},{"x":1752730260173,"y":25.019},{"x":1752730203092,"y":29.175},{"x":1752730142641,"y":26.264},{"x":1752730082503,"y":26.587},{"x":1752730022291,"y":40.279},{"x":1752729962131,"y":40.11},{"x":1752729902226,"y":48.849},{"x":1752729841796,"y":47.617},{"x":1752729781636,"y":48.55},{"x":1752729721468,"y":36.867},{"x":1752729661310,"y":36.439},{"x":1752729601476,"y":24.58},{"x":1752729540943,"y":34.436},{"x":1752729480766,"y":34.193},{"x":1752729420673,"y":32.024},{"x":1752729360408,"y":41.744},{"x":1752729303262,"y":35.754},{"x":1752729242818,"y":37.434},{"x":1752729182648,"y":37.079},{"x":1752729122489,"y":33.155},{"x":1752729062317,"y":37.273},{"x":1752729002430,"y":37.061},{"x":1752728941971,"y":33.129},{"x":1752728881811,"y":29.456},{"x":1752728821661,"y":32.184},{"x":1752728761501,"y":28.172},{"x":1752728701571,"y":28.47},{"x":1752728641131,"y":26.228},{"x":1752728580958,"y":30.317},{"x":1752728520792,"y":30.281},{"x":1752728460707,"y":33.463},{"x":1752728401931,"y":35.247},{"x":1752728340255,"y":30.958},{"x":1752728282986,"y":27.827},{"x":1752728222813,"y":27.65},{"x":1752728162656,"y":26.401},{"x":1752728102767,"y":25.147},{"x":1752728042342,"y":28.954},{"x":1752727982188,"y":24.911},{"x":1752727922016,"y":27.178},{"x":1752727861849,"y":29.695},{"x":1752727801979,"y":30.598},{"x":1752727741499,"y":34.143},{"x":1752727681327,"y":29.728},{"x":1752727621152,"y":27.108},{"x":1752727560951,"y":39.133},{"x":1752727501404,"y":43.418},{"x":1752727440637,"y":47.706},{"x":1752727380448,"y":44.564},{"x":1752727320170,"y":42.105},{"x":1752727262869,"y":39.589},{"x":1752727202981,"y":31.268},{"x":1752727142556,"y":33.168},{"x":1752727082402,"y":33.564},{"x":1752727022243,"y":32.272},{"x":1752726962071,"y":31.262},{"x":1752726902161,"y":34.298},{"x":1752726841734,"y":30.304},{"x":1752726781568,"y":33.609},{"x":1752726721406,"y":29.75},{"x":1752726661236,"y":29.162},{"x":1752726601483,"y":29.959},{"x":1752726540838,"y":30.065},{"x":1752726480693,"y":38.905},{"x":1752726420605,"y":28.276},{"x":1752726360367,"y":30.044},{"x":1752726303291,"y":35.406},{"x":1752726242830,"y":31.09},{"x":1752726182662,"y":46.141},{"x":1752726122502,"y":52.778},{"x":1752726062348,"y":47.229},{"x":1752726002447,"y":46.028},{"x":1752725942020,"y":45.124},{"x":1752725881852,"y":39.513},{"x":1752725821689,"y":30.784},{"x":1752725761520,"y":30.894},{"x":1752725701633,"y":30.388},{"x":1752725641186,"y":28.415},{"x":1752725581016,"y":30.122},{"x":1752725520856,"y":29.081},{"x":1752725460711,"y":28.993},{"x":1752725401073,"y":28.608},{"x":1752725340399,"y":30.1},{"x":1752725282998,"y":29.767},{"x":1752725222847,"y":29.423},{"x":1752725162661,"y":30.224},{"x":1752725102777,"y":29.729},{"x":1752725042329,"y":28.332},{"x":1752724982171,"y":28.274},{"x":1752724921986,"y":21.583},{"x":1752724861817,"y":37.626},{"x":1752724802246,"y":36.386},{"x":1752724741167,"y":34.476},{"x":1752724680991,"y":33.945},{"x":1752724620825,"y":39.377},{"x":1752724560675,"y":38.167},{"x":1752724500955,"y":36.29},{"x":1752724440366,"y":37.031},{"x":1752724380194,"y":35.233},{"x":1752724322880,"y":30.0},{"x":1752724262707,"y":30.848},{"x":1752724202799,"y":31.927},{"x":1752724142378,"y":32.897},{"x":1752724082219,"y":30.425},{"x":1752724022062,"y":28.778},{"x":1752723961874,"y":30.197},{"x":1752723901948,"y":30.647},{"x":1752723841509,"y":30.297},{"x":1752723781357,"y":27.696},{"x":1752723721201,"y":28.265},{"x":1752723661023,"y":27.636},{"x":1752723601248,"y":31.568},{"x":1752723540666,"y":32.586},{"x":1752723480547,"y":27.794},{"x":1752723420582,"y":34.605},{"x":1752723363029,"y":31.542},{"x":1752723303144,"y":30.702},{"x":1752723242673,"y":36.991},{"x":1752723182510,"y":28.447},{"x":1752723122352,"y":27.199},{"x":1752723062192,"y":31.027},{"x":1752723002299,"y":27.559},{"x":1752722941829,"y":27.629},{"x":1752722881654,"y":29.481},{"x":1752722821512,"y":28.506},{"x":1752722761306,"y":45.529},{"x":1752722701427,"y":46.494},{"x":1752722640950,"y":48.517},{"x":1752722580788,"y":54.252},{"x":1752722520635,"y":50.032},{"x":1752722460555,"y":31.487},{"x":1752722400872,"y":31.837},{"x":1752722342944,"y":29.855},{"x":1752722282769,"y":32.128},{"x":1752722222624,"y":28.903},{"x":1752722162437,"y":27.479},{"x":1752722102549,"y":49.203},{"x":1752722042109,"y":53.32},{"x":1752721981933,"y":50.648},{"x":1752721921776,"y":53.064},{"x":1752721861610,"y":55.935},{"x":1752721801782,"y":32.974},{"x":1752721741294,"y":33.17},{"x":1752721681074,"y":31.277},{"x":1752721620898,"y":35.005},{"x":1752721560735,"y":29.287},{"x":1752721504315,"y":32.274},{"x":1752721441993,"y":27.82},{"x":1752721381131,"y":26.748},{"x":1752721320898,"y":30.645},{"x":1752721260709,"y":29.611},{"x":1752721202692,"y":34.274},{"x":1752721140783,"y":34.263},{"x":1752721080619,"y":31.635},{"x":1752721020496,"y":30.783},{"x":1752720960366,"y":28.533},{"x":1752720900024,"y":28.578},{"x":1752720842868,"y":29.13},{"x":1752720782660,"y":28.344},{"x":1752720722509,"y":27.996},{"x":1752720662332,"y":32.848},{"x":1752720602439,"y":30.275},{"x":1752720542015,"y":29.976},{"x":1752720481859,"y":28.629},{"x":1752720421692,"y":32.32},{"x":1752720361530,"y":32.64},{"x":1752720301678,"y":31.55},{"x":1752720241213,"y":32.633},{"x":1752720181043,"y":29.786},{"x":1752720120877,"y":33.697},{"x":1752720060717,"y":30.584},{"x":1752720001222,"y":28.518},{"x":1752719940416,"y":27.558},{"x":1752719880119,"y":33.173},{"x":1752719822873,"y":32.26},{"x":1752719762712,"y":36.316},{"x":1752719702814,"y":41.435},{"x":1752719642358,"y":37.405},{"x":1752719582200,"y":31.693},{"x":1752719522029,"y":31.945},{"x":1752719461862,"y":28.157},{"x":1752719402027,"y":31.086},{"x":1752719341507,"y":28.967},{"x":1752719281302,"y":29.323},{"x":1752719221120,"y":28.864},{"x":1752719160944,"y":30.479},{"x":1752719101058,"y":30.557},{"x":1752719040625,"y":32.56},{"x":1752718980370,"y":32.286},{"x":1752718920167,"y":31.732},{"x":1752718862904,"y":31.516},{"x":1752718803055,"y":30.459},{"x":1752718742582,"y":32.622},{"x":1752718682419,"y":27.784},{"x":1752718622348,"y":31.018},{"x":1752718562149,"y":32.991},{"x":1752718502191,"y":38.54},{"x":1752718441754,"y":40.971},{"x":1752718381604,"y":48.922},{"x":1752718321450,"y":46.191},{"x":1752718261285,"y":50.275},{"x":1752718201411,"y":39.279},{"x":1752718140891,"y":36.011},{"x":1752718080749,"y":35.627},{"x":1752718020579,"y":29.502},{"x":1752717960529,"y":28.413},{"x":1752717900867,"y":30.097},{"x":1752717842959,"y":45.76},{"x":1752717782833,"y":55.504},{"x":1752717722637,"y":51.753},{"x":1752717662491,"y":53.017},{"x":1752717602846,"y":48.566},{"x":1752717542155,"y":34.848},{"x":1752717481984,"y":35.946},{"x":1752717421809,"y":30.795},{"x":1752717361658,"y":30.46},{"x":1752717301771,"y":32.663},{"x":1752717241331,"y":28.557},{"x":1752717181164,"y":29.427},{"x":1752717120969,"y":44.593},{"x":1752717060816,"y":45.495},{"x":1752717001037,"y":41.881},{"x":1752716940505,"y":43.043},{"x":1752716880333,"y":41.829},{"x":1752716822981,"y":32.678},{"x":1752716762832,"y":40.165},{"x":1752716702980,"y":33.41},{"x":1752716642495,"y":31.2},{"x":1752716582332,"y":34.364},{"x":1752716522167,"y":31.647},{"x":1752716461999,"y":32.028},{"x":1752716402136,"y":29.631},{"x":1752716341668,"y":29.536},{"x":1752716281497,"y":30.934},{"x":1752716221339,"y":33.402},{"x":1752716161192,"y":37.351},{"x":1752716101321,"y":37.836},{"x":1752716040870,"y":29.889},{"x":1752715980726,"y":32.404},{"x":1752715920636,"y":29.278},{"x":1752715860334,"y":31.548},{"x":1752715801119,"y":33.727},{"x":1752715742898,"y":32.205},{"x":1752715682689,"y":29.638},{"x":1752715622504,"y":28.92},{"x":1752715562334,"y":28.832},{"x":1752715502505,"y":28.156},{"x":1752715442006,"y":28.128},{"x":1752715381838,"y":28.539},{"x":1752715321687,"y":38.962},{"x":1752715261527,"y":38.785},{"x":1752715201688,"y":43.292},{"x":1752715141162,"y":44.32},{"x":1752715080990,"y":39.634},{"x":1752715020827,"y":31.185},{"x":1752714960672,"y":33.481},{"x":1752714901144,"y":29.828},{"x":1752714840362,"y":33.068},{"x":1752714780214,"y":28.443},{"x":1752714722874,"y":27.853},{"x":1752714662720,"y":28.673},{"x":1752714602847,"y":58.267},{"x":1752714542401,"y":51.749},{"x":1752714482219,"y":50.37},{"x":1752714422058,"y":51.07},{"x":1752714361866,"y":51.488},{"x":1752714301997,"y":29.433},{"x":1752714241544,"y":34.613},{"x":1752714181359,"y":39.481},{"x":1752714121206,"y":35.862},{"x":1752714061021,"y":34.102},{"x":1752714001925,"y":33.063},{"x":1752713940659,"y":30.426},{"x":1752713880559,"y":36.883},{"x":1752713820365,"y":41.382},{"x":1752713760087,"y":39.859},{"x":1752713703147,"y":39.246},{"x":1752713642716,"y":38.005},{"x":1752713582566,"y":35.091},{"x":1752713522414,"y":28.23},{"x":1752713462250,"y":28.85},{"x":1752713402396,"y":31.124},{"x":1752713341905,"y":32.105},{"x":1752713281741,"y":30.272},{"x":1752713221575,"y":31.293},{"x":1752713161435,"y":29.264},{"x":1752713101575,"y":31.823},{"x":1752713041069,"y":32.962},{"x":1752712980901,"y":33.126},{"x":1752712920739,"y":36.573},{"x":1752712860586,"y":32.952},{"x":1752712801168,"y":31.643},{"x":1752712740323,"y":40.184},{"x":1752712682975,"y":38.249},{"x":1752712622778,"y":38.649},{"x":1752712562628,"y":39.612},{"x":1752712502740,"y":36.95},{"x":1752712442292,"y":31.069},{"x":1752712382108,"y":32.975},{"x":1752712321941,"y":30.853},{"x":1752712261805,"y":34.257},{"x":1752712201957,"y":31.092},{"x":1752712141374,"y":32.698},{"x":1752712081193,"y":29.483},{"x":1752712020987,"y":33.027},{"x":1752711960824,"y":36.399},{"x":1752711901097,"y":33.385},{"x":1752711840473,"y":34.704},{"x":1752711780363,"y":42.657},{"x":1752711720068,"y":41.97},{"x":1752711662879,"y":40.59},{"x":1752711602994,"y":39.766},{"x":1752711542555,"y":43.741},{"x":1752711482398,"y":30.355},{"x":1752711422240,"y":32.046},{"x":1752711362078,"y":33.29},{"x":1752711302103,"y":37.073},{"x":1752711241666,"y":33.199},{"x":1752711181508,"y":34.973},{"x":1752711121339,"y":33.843},{"x":1752711061183,"y":34.353},{"x":1752711001346,"y":41.559},{"x":1752710940813,"y":38.806},{"x":1752710880680,"y":40.268},{"x":1752710820576,"y":37.04},{"x":1752710760390,"y":36.142},{"x":1752710703272,"y":36.815},{"x":1752710642848,"y":34.357},{"x":1752710582692,"y":32.133},{"x":1752710522529,"y":36.855},{"x":1752710462353,"y":32.778},{"x":1752710402576,"y":31.352},{"x":1752710341972,"y":36.535},{"x":1752710281789,"y":31.107},{"x":1752710221626,"y":31.945},{"x":1752710161466,"y":36.184},{"x":1752710101585,"y":36.544},{"x":1752710041148,"y":36.033},{"x":1752709980952,"y":34.542},{"x":1752709920785,"y":35.404},{"x":1752709860583,"y":44.098},{"x":1752709800937,"y":57.681},{"x":1752709740251,"y":54.915},{"x":1752709682917,"y":53.368},{"x":1752709622739,"y":52.268},{"x":1752709562584,"y":32.002},{"x":1752709502684,"y":31.991},{"x":1752709442269,"y":39.287},{"x":1752709382111,"y":39.845},{"x":1752709321942,"y":35.134},{"x":1752709261763,"y":32.636},{"x":1752709201889,"y":34.413},{"x":1752709141441,"y":36.022},{"x":1752709081282,"y":37.602},{"x":1752709021120,"y":38.306},{"x":1752708960944,"y":35.168},{"x":1752708901137,"y":33.032},{"x":1752708840626,"y":37.955},{"x":1752708780472,"y":32.652},{"x":1752708720346,"y":30.636},{"x":1752708662998,"y":32.823},{"x":1752708603171,"y":32.77},{"x":1752708542633,"y":32.941},{"x":1752708482378,"y":32.443},{"x":1752708422180,"y":37.246},{"x":1752708361995,"y":31.779},{"x":1752708302136,"y":31.744},{"x":1752708241681,"y":36.03},{"x":1752708181515,"y":31.37},{"x":1752708121357,"y":34.782},{"x":1752708061198,"y":33.062},{"x":1752708001390,"y":31.505},{"x":1752707940777,"y":39.594},{"x":1752707880612,"y":50.172},{"x":1752707820567,"y":55.537},{"x":1752707760338,"y":52.96},{"x":1752707703242,"y":53.497},{"x":1752707642824,"y":40.204},{"x":1752707582670,"y":35.274},{"x":1752707522496,"y":35.995},{"x":1752707462339,"y":39.198},{"x":1752707402453,"y":33.81},{"x":1752707342011,"y":32.091},{"x":1752707281856,"y":36.285},{"x":1752707221688,"y":33.213},{"x":1752707161510,"y":32.5},{"x":1752707101626,"y":41.942},{"x":1752707041231,"y":42.162},{"x":1752706981015,"y":36.697},{"x":1752706920852,"y":37.092},{"x":1752706860682,"y":38.22},{"x":1752706801944,"y":29.871},{"x":1752706740417,"y":31.906},{"x":1752706680214,"y":32.929},{"x":1752706622890,"y":35.482},{"x":1752706562739,"y":38.059},{"x":1752706502793,"y":36.26},{"x":1752706442364,"y":36.852},{"x":1752706382204,"y":41.733},{"x":1752706322047,"y":49.626},{"x":1752706261881,"y":50.67},{"x":1752706201998,"y":45.551},{"x":1752706141565,"y":44.101},{"x":1752706081405,"y":42.519},{"x":1752706021237,"y":37.655},{"x":1752705961068,"y":35.508},{"x":1752705901312,"y":36.979},{"x":1752705840667,"y":37.495},{"x":1752705780481,"y":37.391},{"x":1752705720300,"y":34.822},{"x":1752705662983,"y":40.896},{"x":1752705603111,"y":37.304},{"x":1752705542665,"y":35.395},{"x":1752705482512,"y":34.562},{"x":1752705422362,"y":32.263},{"x":1752705362202,"y":32.915},{"x":1752705302348,"y":42.234},{"x":1752705241847,"y":45.729},{"x":1752705181673,"y":40.763},{"x":1752705121511,"y":39.503},{"x":1752705061373,"y":33.689},{"x":1752705001628,"y":33.468},{"x":1752704940885,"y":36.404},{"x":1752704880695,"y":39.193},{"x":1752704820552,"y":36.474},{"x":1752704760400,"y":35.033},{"x":1752704703317,"y":59.621},{"x":1752704642837,"y":54.332},{"x":1752704582663,"y":54.382},{"x":1752704522513,"y":54.872},{"x":1752704462354,"y":52.695},{"x":1752704402457,"y":33.065},{"x":1752704342003,"y":38.151},{"x":1752704281828,"y":30.517},{"x":1752704221677,"y":31.273},{"x":1752704161507,"y":35.4},{"x":1752704101640,"y":37.507},{"x":1752704041190,"y":36.941},{"x":1752703981040,"y":33.217},{"x":1752703920876,"y":34.072},{"x":1752703860711,"y":31.651},{"x":1752703801154,"y":32.278},{"x":1752703740376,"y":36.499},{"x":1752703680299,"y":32.104},{"x":1752703622936,"y":31.304},{"x":1752703562765,"y":33.276},{"x":1752703502904,"y":45.567},{"x":1752703442445,"y":47.692},{"x":1752703382275,"y":44.263},{"x":1752703322114,"y":51.507},{"x":1752703261944,"y":42.477},{"x":1752703202602,"y":41.586},{"x":1753912740493,"y":45.556},{"x":1753912680359,"y":49.147},{"x":1753912620229,"y":46.516},{"x":1753912562947,"y":42.227},{"x":1753912502815,"y":43.416},{"x":1753912442694,"y":45.025},{"x":1753912382570,"y":51.976},{"x":1753912322451,"y":55.552},{"x":1753912262328,"y":48.373},{"x":1753912202217,"y":50.538},{"x":1753912142090,"y":63.637},{"x":1753912081974,"y":62.064},{"x":1753912021837,"y":64.474},{"x":1753911961718,"y":60.463},{"x":1753911901600,"y":58.547},{"x":1753911841471,"y":48.737},{"x":1753911781340,"y":52.327},{"x":1753911721218,"y":51.871},{"x":1753911661100,"y":51.715},{"x":1753911600975,"y":51.904},{"x":1753911540836,"y":55.68},{"x":1753911480706,"y":59.273},{"x":1753911420619,"y":51.14},{"x":1753911360520,"y":47.018},{"x":1753911300403,"y":47.872},{"x":1753911240191,"y":48.941},{"x":1753911182959,"y":55.099},{"x":1753911122837,"y":54.57},{"x":1753911062723,"y":54.616},{"x":1753911002622,"y":51.661},{"x":1753910942473,"y":52.524},{"x":1753910882343,"y":55.422},{"x":1753910822226,"y":55.421},{"x":1753910762120,"y":55.847},{"x":1753910701979,"y":52.63},{"x":1753910641853,"y":52.718},{"x":1753910581738,"y":56.288},{"x":1753910521619,"y":61.327},{"x":1753910461493,"y":64.087},{"x":1753910401375,"y":66.812},{"x":1753910341255,"y":61.933},{"x":1753910281135,"y":66.973},{"x":1753910221007,"y":61.39},{"x":1753910160872,"y":62.722},{"x":1753910100806,"y":64.759},{"x":1753910040619,"y":60.48},{"x":1753909980486,"y":56.225},{"x":1753909920419,"y":51.943},{"x":1753909860311,"y":51.872},{"x":1753909803015,"y":48.846},{"x":1753909742879,"y":54.794},{"x":1753909682758,"y":51.293},{"x":1753909622633,"y":75.032},{"x":1753909562517,"y":78.833},{"x":1753909502404,"y":75.854},{"x":1753909442281,"y":83.051},{"x":1753909382167,"y":74.077},{"x":1753909322036,"y":51.844},{"x":1753909261907,"y":53.172},{"x":1753909201854,"y":63.576},{"x":1753909141631,"y":51.565},{"x":1753909081506,"y":53.233},{"x":1753909021389,"y":48.983},{"x":1753908961274,"y":49.534},{"x":1753908901164,"y":52.775},{"x":1753908841013,"y":53.634},{"x":1753908780896,"y":57.61},{"x":1753908720810,"y":69.908},{"x":1753908660607,"y":52.88},{"x":1753908600530,"y":51.142},{"x":1753908540314,"y":50.706},{"x":1753908480185,"y":52.789},{"x":1753908422931,"y":69.29},{"x":1753908362803,"y":54.588},{"x":1753908302683,"y":74.008},{"x":1753908242556,"y":68.146},{"x":1753908182430,"y":59.755},{"x":1753908122313,"y":53.189},{"x":1753908062198,"y":54.107},{"x":1753908002071,"y":73.979},{"x":1753907941925,"y":56.236},{"x":1753907881797,"y":66.982},{"x":1753907821675,"y":51.121},{"x":1753907761550,"y":47.976},{"x":1753907701430,"y":60.594},{"x":1753907641305,"y":48.792},{"x":1753907581182,"y":50.719},{"x":1753907521053,"y":57.059},{"x":1753907460928,"y":62.152},{"x":1753907400816,"y":61.982},{"x":1753907340695,"y":59.522},{"x":1753907280566,"y":56.006},{"x":1753907220256,"y":53.218},{"x":1753907160119,"y":57.481},{"x":1753907102899,"y":69.816},{"x":1753907042789,"y":60.733},{"x":1753906982648,"y":62.497},{"x":1753906922525,"y":73.243},{"x":1753906862406,"y":71.567},{"x":1753906802281,"y":62.999},{"x":1753906742133,"y":66.912},{"x":1753906682006,"y":73.052},{"x":1753906621886,"y":69.563},{"x":1753906561765,"y":84.626},{"x":1753906501642,"y":73.126},{"x":1753906441509,"y":69.553},{"x":1753906381392,"y":68.153},{"x":1753906321277,"y":63.041},{"x":1753906261151,"y":84.167},{"x":1753906201008,"y":53.234},{"x":1753906140878,"y":73.426},{"x":1753906080786,"y":60.793},{"x":1753906020655,"y":58.747},{"x":1753905960562,"y":58.064},{"x":1753905900245,"y":50.353},{"x":1753905843018,"y":55.511},{"x":1753905782846,"y":63.134},{"x":1753905722684,"y":56.939},{"x":1753905662563,"y":62.176},{"x":1753905602419,"y":61.936},{"x":1753905542307,"y":68.417},{"x":1753905482167,"y":63.749},{"x":1753905422050,"y":63.942},{"x":1753905361915,"y":60.516},{"x":1753905301792,"y":59.287},{"x":1753905241668,"y":68.376},{"x":1753905181538,"y":82.88},{"x":1753905121418,"y":66.122},{"x":1753905061291,"y":62.323},{"x":1753905001176,"y":52.373},{"x":1753904941020,"y":54.601},{"x":1753904880880,"y":72.708},{"x":1753904820750,"y":65.143},{"x":1753904760637,"y":58.168},{"x":1753904700588,"y":54.752},{"x":1753904640383,"y":52.196},{"x":1753904580218,"y":57.196},{"x":1753904522956,"y":64.184},{"x":1753904462834,"y":57.176},{"x":1753904402712,"y":65.178},{"x":1753904342604,"y":84.454},{"x":1753904282453,"y":83.392},{"x":1753904222351,"y":75.79},{"x":1753904162212,"y":92.366},{"x":1753904102086,"y":70.981},{"x":1753904041951,"y":56.1},{"x":1753903981817,"y":53.422},{"x":1753903921692,"y":57.167},{"x":1753903861562,"y":59.131},{"x":1753903801459,"y":59.785},{"x":1753903741330,"y":58.462},{"x":1753903681192,"y":58.16},{"x":1753903620932,"y":59.428},{"x":1753903560766,"y":58.807},{"x":1753903500688,"y":57.676},{"x":1753903440523,"y":63.738},{"x":1753903380409,"y":61.955},{"x":1753903320274,"y":80.126},{"x":1753903262968,"y":75.582},{"x":1753903202830,"y":62.507},{"x":1753903142706,"y":46.278},{"x":1753903082588,"y":50.174},{"x":1753903022465,"y":54.748},{"x":1753902962338,"y":51.798},{"x":1753902902210,"y":44.784},{"x":1753902842085,"y":43.482},{"x":1753902781954,"y":51.481},{"x":1753902721827,"y":63.349},{"x":1753902661723,"y":53.606},{"x":1753902601576,"y":55.848},{"x":1753902541448,"y":55.687},{"x":1753902481312,"y":45.307},{"x":1753902421160,"y":50.398},{"x":1753902361017,"y":57.282},{"x":1753902300897,"y":51.593},{"x":1753902240779,"y":52.706},{"x":1753902180654,"y":50.058},{"x":1753902120543,"y":50.23},{"x":1753902060427,"y":49.862},{"x":1753902000460,"y":47.347},{"x":1753901942960,"y":46.772},{"x":1753901882839,"y":46.871},{"x":1753901822710,"y":53.275},{"x":1753901762581,"y":52.238},{"x":1753901702443,"y":49.386},{"x":1753901642318,"y":43.981},{"x":1753901582200,"y":48.313},{"x":1753901522074,"y":42.481},{"x":1753901461940,"y":43.129},{"x":1753901401811,"y":43.452},{"x":1753901341688,"y":38.748},{"x":1753901281555,"y":48.782},{"x":1753901221432,"y":65.95},{"x":1753901161306,"y":64.074},{"x":1753901101188,"y":66.131},{"x":1753901041051,"y":64.979},{"x":1753900980914,"y":57.512},{"x":1753900920775,"y":44.142},{"x":1753900860669,"y":36.244},{"x":1753900800548,"y":36.025},{"x":1753900740447,"y":39.93},{"x":1753900680336,"y":43.074},{"x":1753900620095,"y":38.957},{"x":1753900562885,"y":53.06},{"x":1753900502759,"y":54.388},{"x":1753900442633,"y":57.491},{"x":1753900382514,"y":50.935},{"x":1753900322377,"y":46.804},{"x":1753900262252,"y":40.354},{"x":1753900202131,"y":51.912},{"x":1753900142053,"y":33.132},{"x":1753900081842,"y":32.405},{"x":1753900021686,"y":43.386},{"x":1753899961528,"y":47.276},{"x":1753899901406,"y":49.141},{"x":1753899841282,"y":56.352},{"x":1753899781155,"y":52.678},{"x":1753899721025,"y":48.194},{"x":1753899660899,"y":46.175},{"x":1753899600790,"y":40.123},{"x":1753899540636,"y":46.358},{"x":1753899480557,"y":57.002},{"x":1753899420301,"y":55.592},{"x":1753899360212,"y":52.168},{"x":1753899302937,"y":58.007},{"x":1753899242812,"y":51.06},{"x":1753899182690,"y":51.937},{"x":1753899122559,"y":48.995},{"x":1753899062447,"y":39.902},{"x":1753899002306,"y":39.575},{"x":1753898942186,"y":54.907},{"x":1753898882054,"y":40.728},{"x":1753898821921,"y":40.29},{"x":1753898761804,"y":38.206},{"x":1753898701680,"y":39.812},{"x":1753898641537,"y":44.875},{"x":1753898581409,"y":41.942},{"x":1753898521284,"y":41.48},{"x":1753898461155,"y":39.599},{"x":1753898401110,"y":40.483},{"x":1753898340813,"y":36.78},{"x":1753898280696,"y":51.342},{"x":1753898220636,"y":62.87},{"x":1753898160454,"y":65.563},{"x":1753898100224,"y":64.234},{"x":1753898042974,"y":63.316},{"x":1753897982854,"y":58.322},{"x":1753897922717,"y":45.138},{"x":1753897862596,"y":32.18},{"x":1753897802466,"y":32.674},{"x":1753897742343,"y":34.738},{"x":1753897682215,"y":40.578},{"x":1753897622080,"y":33.432},{"x":1753897561961,"y":38.748},{"x":1753897501836,"y":43.48},{"x":1753897441706,"y":41.365},{"x":1753897381576,"y":43.865},{"x":1753897321449,"y":48.655},{"x":1753897261306,"y":49.393},{"x":1753897201188,"y":40.327},{"x":1753897141034,"y":35.725},{"x":1753897080889,"y":41.164},{"x":1753897020757,"y":62.034},{"x":1753896960678,"y":46.789},{"x":1753896900540,"y":47.183},{"x":1753896840350,"y":37.048},{"x":1753896780199,"y":41.94},{"x":1753896722905,"y":32.068},{"x":1753896662774,"y":38.665},{"x":1753896602647,"y":40.17},{"x":1753896542516,"y":38.536},{"x":1753896482364,"y":35.851},{"x":1753896422254,"y":35.794},{"x":1753896362087,"y":40.298},{"x":1753896301946,"y":35.106},{"x":1753896241824,"y":35.299},{"x":1753896181690,"y":40.226},{"x":1753896121563,"y":36.209},{"x":1753896061426,"y":39.472},{"x":1753896001299,"y":44.821},{"x":1753895941165,"y":42.137},{"x":1753895881031,"y":48.589},{"x":1753895820903,"y":75.412},{"x":1753895760772,"y":74.509},{"x":1753895700626,"y":65.509},{"x":1753895640520,"y":65.178},{"x":1753895580325,"y":71.108},{"x":1753895523013,"y":48.72},{"x":1753895462875,"y":32.591},{"x":1753895402738,"y":34.883},{"x":1753895342656,"y":34.866},{"x":1753895282474,"y":38.418},{"x":1753895222353,"y":48.0},{"x":1753895162215,"y":36.534},{"x":1753895102086,"y":68.638},{"x":1753895041940,"y":61.0},{"x":1753894981811,"y":65.932},{"x":1753894921679,"y":67.09},{"x":1753894861545,"y":63.054},{"x":1753894801462,"y":48.112},{"x":1753894741215,"y":36.982},{"x":1753894681084,"y":50.23},{"x":1753894620927,"y":49.76},{"x":1753894560801,"y":53.076},{"x":1753894500697,"y":62.98},{"x":1753894440517,"y":74.758},{"x":1753894380454,"y":68.045},{"x":1753894320349,"y":68.179},{"x":1753894262984,"y":61.452},{"x":1753894202857,"y":54.034},{"x":1753894142719,"y":63.706},{"x":1753894082587,"y":40.534},{"x":1753894022454,"y":39.962},{"x":1753893962315,"y":49.412},{"x":1753893902174,"y":56.459},{"x":1753893842039,"y":35.857},{"x":1753893781903,"y":37.976},{"x":1753893721757,"y":37.112},{"x":1753893661620,"y":33.058},{"x":1753893601482,"y":56.491},{"x":1753893541347,"y":40.302},{"x":1753893481215,"y":48.329},{"x":1753893421066,"y":33.158},{"x":1753893360919,"y":34.832},{"x":1753893300800,"y":37.921},{"x":1753893240656,"y":34.764},{"x":1753893180557,"y":33.042},{"x":1753893120483,"y":32.131},{"x":1753893060312,"y":36.218},{"x":1753893003028,"y":44.695},{"x":1753892942934,"y":37.273},{"x":1753892882736,"y":46.674},{"x":1753892822574,"y":47.512},{"x":1753892762435,"y":54.845},{"x":1753892702316,"y":39.378},{"x":1753892642193,"y":44.48},{"x":1753892582046,"y":47.85},{"x":1753892521896,"y":37.54},{"x":1753892461765,"y":37.349},{"x":1753892401638,"y":38.22},{"x":1753892341509,"y":38.386},{"x":1753892281374,"y":38.197},{"x":1753892221244,"y":35.466},{"x":1753892161110,"y":32.192},{"x":1753892100955,"y":30.731},{"x":1753892040805,"y":32.4},{"x":1753891980685,"y":32.573},{"x":1753891920536,"y":36.221},{"x":1753891860465,"y":33.044},{"x":1753891800219,"y":30.799},{"x":1753891742946,"y":41.903},{"x":1753891682785,"y":38.976},{"x":1753891622653,"y":43.939},{"x":1753891562535,"y":45.002},{"x":1753891502378,"y":45.325},{"x":1753891442242,"y":40.928},{"x":1753891382087,"y":34.514},{"x":1753891321940,"y":46.877},{"x":1753891261812,"y":31.27},{"x":1753891201679,"y":32.983},{"x":1753891141514,"y":43.928},{"x":1753891081374,"y":31.55},{"x":1753891021241,"y":41.014},{"x":1753890961082,"y":48.593},{"x":1753890900931,"y":27.743},{"x":1753890840787,"y":43.469},{"x":1753890780653,"y":30.017},{"x":1753890720536,"y":33.145},{"x":1753890660399,"y":28.316},{"x":1753890600315,"y":24.371},{"x":1753890542945,"y":42.235},{"x":1753890482814,"y":24.677},{"x":1753890422684,"y":27.325},{"x":1753890362557,"y":37.796},{"x":1753890302423,"y":26.972},{"x":1753890242296,"y":19.453},{"x":1753890182154,"y":17.042},{"x":1753890122006,"y":24.218},{"x":1753890061855,"y":26.386},{"x":1753890001720,"y":24.384},{"x":1753889941588,"y":19.733},{"x":1753889881445,"y":27.013},{"x":1753889821309,"y":27.109},{"x":1753889761175,"y":23.249},{"x":1753889701050,"y":39.312},{"x":1753889640894,"y":23.641},{"x":1753889580783,"y":19.604},{"x":1753889520707,"y":27.374},{"x":1753889460578,"y":23.059},{"x":1753889400480,"y":26.612},{"x":1753889340098,"y":29.338},{"x":1753889282886,"y":30.719},{"x":1753889222721,"y":28.8},{"x":1753889162559,"y":23.533},{"x":1753889102448,"y":35.894},{"x":1753889042305,"y":25.933},{"x":1753888982166,"y":25.915},{"x":1753888922042,"y":26.644},{"x":1753888861901,"y":20.743},{"x":1753888801791,"y":16.385},{"x":1753888741624,"y":27.82},{"x":1753888681518,"y":20.507},{"x":1753888621362,"y":18.685},{"x":1753888561249,"y":21.244},{"x":1753888501093,"y":38.334},{"x":1753888440912,"y":25.489},{"x":1753888380789,"y":21.802},{"x":1753888320701,"y":20.102},{"x":1753888260474,"y":19.862},{"x":1753888200390,"y":22.216},{"x":1753888140177,"y":23.418},{"x":1753888082935,"y":17.532},{"x":1753888022811,"y":29.422},{"x":1753887962679,"y":44.488},{"x":1753887902584,"y":41.593},{"x":1753887842424,"y":38.224},{"x":1753887782297,"y":39.682},{"x":1753887722169,"y":32.256},{"x":1753887662027,"y":42.455},{"x":1753887601903,"y":37.232},{"x":1753887541678,"y":42.144},{"x":1753887481556,"y":34.138},{"x":1753887421406,"y":37.972},{"x":1753887361278,"y":43.132},{"x":1753887301149,"y":41.468},{"x":1753887241000,"y":35.977},{"x":1753887180868,"y":31.507},{"x":1753887120772,"y":44.656},{"x":1753887060614,"y":24.617},{"x":1753887000533,"y":21.954},{"x":1753886940335,"y":17.894},{"x":1753886880248,"y":22.174},{"x":1753886822908,"y":13.201},{"x":1753886762763,"y":10.244},{"x":1753886702624,"y":17.542},{"x":1753886642482,"y":15.427},{"x":1753886582345,"y":19.703},{"x":1753886522214,"y":17.737},{"x":1753886462078,"y":15.86},{"x":1753886401931,"y":17.982},{"x":1753886341790,"y":18.428},{"x":1753886281660,"y":19.122},{"x":1753886221532,"y":18.031},{"x":1753886161400,"y":29.531},{"x":1753886101264,"y":23.257},{"x":1753886041118,"y":38.704},{"x":1753885980976,"y":17.686},{"x":1753885920850,"y":33.959},{"x":1753885860712,"y":23.076},{"x":1753885800626,"y":8.27},{"x":1753885740503,"y":12.254},{"x":1753885680379,"y":26.327},{"x":1753885622934,"y":19.228},{"x":1753885562752,"y":21.69},{"x":1753885502619,"y":17.55},{"x":1753885442503,"y":18.074},{"x":1753885382353,"y":31.534},{"x":1753885322221,"y":32.66},{"x":1753885262085,"y":28.062},{"x":1753885201943,"y":26.284},{"x":1753885141806,"y":24.655},{"x":1753885081661,"y":26.622},{"x":1753885021569,"y":27.67},{"x":1753884961363,"y":11.238},{"x":1753884901226,"y":11.867},{"x":1753884841073,"y":30.684},{"x":1753884780926,"y":20.407},{"x":1753884720838,"y":15.935},{"x":1753884660659,"y":10.763},{"x":1753884600613,"y":11.406},{"x":1753884540417,"y":23.821},{"x":1753884480224,"y":35.087},{"x":1753884422908,"y":39.373},{"x":1753884362797,"y":35.845},{"x":1753884302686,"y":34.09},{"x":1753884242520,"y":23.518},{"x":1753884182378,"y":21.737},{"x":1753884122245,"y":23.021},{"x":1753884062109,"y":24.304},{"x":1753884002017,"y":22.241},{"x":1753883941779,"y":20.248},{"x":1753883881641,"y":24.733},{"x":1753883821443,"y":43.058},{"x":1753883761304,"y":29.06},{"x":1753883701152,"y":25.582},{"x":1753883640997,"y":35.927},{"x":1753883580866,"y":38.342},{"x":1753883520804,"y":36.658},{"x":1753883460570,"y":38.708},{"x":1753883400474,"y":38.729},{"x":1753883340358,"y":28.427},{"x":1753883280031,"y":24.671},{"x":1753883222883,"y":16.331},{"x":1753883162764,"y":15.137},{"x":1753883102637,"y":12.452},{"x":1753883042530,"y":16.244},{"x":1753882982356,"y":17.752},{"x":1753882922226,"y":24.438},{"x":1753882862090,"y":30.01},{"x":1753882801932,"y":36.566},{"x":1753882741790,"y":23.567},{"x":1753882681648,"y":15.863},{"x":1753882621521,"y":30.996},{"x":1753882561361,"y":21.752},{"x":1753882501221,"y":21.157},{"x":1753882441109,"y":26.71},{"x":1753882380914,"y":36.816},{"x":1753882320811,"y":25.583},{"x":1753882260659,"y":18.73},{"x":1753882200572,"y":36.671},{"x":1753882140314,"y":10.75},{"x":1753882082997,"y":8.227},{"x":1753882022850,"y":12.924},{"x":1753881962716,"y":14.464},{"x":1753881902584,"y":20.575},{"x":1753881842433,"y":15.289},{"x":1753881782289,"y":33.077},{"x":1753881722149,"y":17.563},{"x":1753881661989,"y":26.138},{"x":1753881601853,"y":28.162},{"x":1753881541712,"y":41.476},{"x":1753881481564,"y":29.362},{"x":1753881421469,"y":21.072},{"x":1753881361288,"y":23.183},{"x":1753881301079,"y":23.515},{"x":1753881240870,"y":21.824},{"x":1753881180721,"y":11.844},{"x":1753881120622,"y":26.694},{"x":1753881060531,"y":13.068},{"x":1753881000367,"y":19.424},{"x":1753880942980,"y":24.252},{"x":1753880882826,"y":28.139},{"x":1753880822653,"y":24.925},{"x":1753880762523,"y":28.406},{"x":1753880702382,"y":29.118},{"x":1753880642235,"y":15.349},{"x":1753880582101,"y":17.234},{"x":1753880521941,"y":20.21},{"x":1753880461806,"y":43.453},{"x":1753880401738,"y":18.079},{"x":1753880341512,"y":15.022},{"x":1753880281371,"y":9.923},{"x":1753880221221,"y":16.48},{"x":1753880161014,"y":13.381},{"x":1753880100898,"y":12.056},{"x":1753880040721,"y":36.359},{"x":1753879980572,"y":18.815},{"x":1753879920465,"y":25.096},{"x":1753879860340,"y":24.391},{"x":1753879803023,"y":28.397},{"x":1753879742869,"y":23.986},{"x":1753879682729,"y":24.368},{"x":1753879622592,"y":19.58},{"x":1753879562456,"y":16.534},{"x":1753879502296,"y":9.043},{"x":1753879442179,"y":11.178},{"x":1753879382028,"y":16.824},{"x":1753879321889,"y":20.756},{"x":1753879261738,"y":21.224},{"x":1753879201610,"y":32.81},{"x":1753879141472,"y":30.413},{"x":1753879081328,"y":17.026},{"x":1753879021188,"y":17.983},{"x":1753878961049,"y":9.689},{"x":1753878900913,"y":10.604},{"x":1753878840762,"y":26.707},{"x":1753878780630,"y":26.422},{"x":1753878720596,"y":26.633},{"x":1753878660377,"y":29.102},{"x":1753878602996,"y":43.243},{"x":1753878542817,"y":40.96},{"x":1753878482675,"y":28.572},{"x":1753878422542,"y":22.187},{"x":1753878362410,"y":29.074},{"x":1753878302268,"y":35.504},{"x":1753878242138,"y":47.844},{"x":1753878181996,"y":45.077},{"x":1753878121845,"y":40.435},{"x":1753878061716,"y":46.334},{"x":1753878001587,"y":46.326},{"x":1753877941449,"y":43.127},{"x":1753877881309,"y":29.426},{"x":1753877821187,"y":20.759},{"x":1753877761043,"y":29.62},{"x":1753877700916,"y":30.296},{"x":1753877640744,"y":30.058},{"x":1753877580616,"y":37.168},{"x":1753877520497,"y":47.404},{"x":1753877460370,"y":29.108},{"x":1753877403023,"y":60.612},{"x":1753877342891,"y":36.15},{"x":1753877282733,"y":18.006},{"x":1753877222608,"y":29.402},{"x":1753877162443,"y":20.71},{"x":1753877102328,"y":49.434},{"x":1753877042172,"y":30.154},{"x":1753876982028,"y":35.698},{"x":1753876921868,"y":37.29},{"x":1753876861711,"y":47.514},{"x":1753876801590,"y":29.494},{"x":1753876741340,"y":41.063},{"x":1753876681207,"y":30.521},{"x":1753876621068,"y":23.674},{"x":1753876560927,"y":34.523},{"x":1753876500785,"y":24.622},{"x":1753876440684,"y":31.57},{"x":1753876380517,"y":32.591},{"x":1753876320392,"y":35.497},{"x":1753876263025,"y":32.09},{"x":1753876202885,"y":31.866},{"x":1753876142748,"y":34.261},{"x":1753876082614,"y":24.106},{"x":1753876022480,"y":26.734},{"x":1753875962346,"y":19.721},{"x":1753875902212,"y":20.527},{"x":1753875842081,"y":16.979},{"x":1753875781931,"y":20.971},{"x":1753875721809,"y":22.548},{"x":1753875661657,"y":25.726},{"x":1753875601522,"y":28.177},{"x":1753875541387,"y":17.782},{"x":1753875481256,"y":16.829},{"x":1753875421040,"y":11.483},{"x":1753875360899,"y":26.892},{"x":1753875300773,"y":35.065},{"x":1753875240652,"y":37.999},{"x":1753875180575,"y":11.455},{"x":1753875120386,"y":21.211},{"x":1753875060263,"y":31.32},{"x":1753875002946,"y":44.785},{"x":1753874942788,"y":46.343},{"x":1753874882641,"y":30.868},{"x":1753874822505,"y":35.86},{"x":1753874762364,"y":15.566},{"x":1753874702219,"y":22.552},{"x":1753874642090,"y":19.973},{"x":1753874581940,"y":54.193},{"x":1753874521795,"y":27.233},{"x":1753874461651,"y":14.46},{"x":1753874401509,"y":25.3},{"x":1753874341378,"y":26.382},{"x":1753874281240,"y":31.382},{"x":1753874221094,"y":39.503},{"x":1753874160931,"y":35.396},{"x":1753874100798,"y":33.541},{"x":1753874040669,"y":30.004},{"x":1753873980577,"y":28.324},{"x":1753873920400,"y":22.486},{"x":1753873863017,"y":27.11},{"x":1753873802872,"y":34.193},{"x":1753873742755,"y":35.658},{"x":1753873682566,"y":37.714},{"x":1753873622423,"y":35.554},{"x":1753873562274,"y":42.409},{"x":1753873502125,"y":47.177},{"x":1753873441949,"y":48.521},{"x":1753873381816,"y":58.596},{"x":1753873321612,"y":33.128},{"x":1753873261497,"y":24.312},{"x":1753873202005,"y":10.298},{"x":1753873140662,"y":18.121},{"x":1753873080579,"y":33.592},{"x":1753873020398,"y":39.995},{"x":1753872963033,"y":35.016},{"x":1753872902857,"y":31.668},{"x":1753872842720,"y":27.047},{"x":1753872782582,"y":16.628},{"x":1753872722480,"y":26.39},{"x":1753872662308,"y":28.35},{"x":1753872602163,"y":25.91},{"x":1753872542012,"y":18.278},{"x":1753872481865,"y":21.245},{"x":1753872420448,"y":24.812},{"x":1753872361594,"y":27.288},{"x":1753872301487,"y":20.599},{"x":1753872241298,"y":28.337},{"x":1753872181172,"y":23.845},{"x":1753872121010,"y":22.61},{"x":1753872060868,"y":10.998},{"x":1753872000891,"y":10.646},{"x":1753871940599,"y":18.383},{"x":1753871880477,"y":14.702},{"x":1753871820345,"y":23.446},{"x":1753871763024,"y":7.733},{"x":1753871702875,"y":12.088},{"x":1753871642739,"y":20.003},{"x":1753871582593,"y":20.099},{"x":1753871522458,"y":26.442},{"x":1753871462327,"y":34.344},{"x":1753871402172,"y":37.019},{"x":1753871341999,"y":33.563},{"x":1753871281858,"y":33.176},{"x":1753871221733,"y":13.9},{"x":1753871161595,"y":18.184},{"x":1753871101463,"y":17.548},{"x":1753871041311,"y":15.264},{"x":1753870981165,"y":14.058},{"x":1753870921014,"y":26.998},{"x":1753870860852,"y":38.269},{"x":1753870800757,"y":32.773},{"x":1753870740565,"y":37.624},{"x":1753870680412,"y":36.685},{"x":1753870621553,"y":38.582},{"x":1753870561399,"y":25.002},{"x":1753870501251,"y":33.277},{"x":1753870441054,"y":38.828},{"x":1753870380921,"y":32.126},{"x":1753870320805,"y":35.136},{"x":1753870260701,"y":28.504},{"x":1753870200511,"y":36.536},{"x":1753870140252,"y":21.811},{"x":1753870082933,"y":24.977},{"x":1753870022784,"y":11.911},{"x":1753869962647,"y":7.98},{"x":1753869902500,"y":10.028},{"x":1753869842344,"y":18.858},{"x":1753869782210,"y":17.87},{"x":1753869722077,"y":18.02},{"x":1753869661925,"y":24.474},{"x":1753869602057,"y":20.747},{"x":1753869541566,"y":17.299},{"x":1753869481416,"y":17.554},{"x":1753869421285,"y":20.659},{"x":1753869361131,"y":19.963},{"x":1753869301012,"y":28.872},{"x":1753869240787,"y":20.596},{"x":1753869182276,"y":22.037},{"x":1753869120599,"y":24.013},{"x":1753869060216,"y":19.12},{"x":1753869002837,"y":19.562},{"x":1753868942698,"y":28.969},{"x":1753868882567,"y":25.74},{"x":1753868822426,"y":39.731},{"x":1753868762239,"y":43.723},{"x":1753868702088,"y":37.348},{"x":1753868641883,"y":64.708},{"x":1753868581749,"y":52.739},{"x":1753868521627,"y":41.105},{"x":1753868461461,"y":40.584},{"x":1753868401328,"y":35.524},{"x":1753868341180,"y":45.061},{"x":1753868281017,"y":41.318},{"x":1753868220873,"y":35.645},{"x":1753868160734,"y":39.143},{"x":1753868100598,"y":40.66},{"x":1753868040406,"y":31.829},{"x":1753867980215,"y":35.592},{"x":1753867922943,"y":17.084},{"x":1753867862767,"y":2.87},{"x":1753867802625,"y":12.971},{"x":1753867742444,"y":-1.702},{"x":1753867682287,"y":-1.984},{"x":1753867622091,"y":11.348},{"x":1753867561907,"y":17.667},{"x":1753866445747,"y":29.145},{"x":1753866442791,"y":29.145},{"x":1753865943018,"y":34.807},{"x":1753865882895,"y":38.033},{"x":1753865822761,"y":32.447},{"x":1753865762628,"y":30.68},{"x":1753865702498,"y":39.185},{"x":1753865642372,"y":34.259},{"x":1753865582255,"y":34.427},{"x":1753865522107,"y":32.963},{"x":1753865461864,"y":49.021},{"x":1753865401723,"y":35.874},{"x":1753865341595,"y":42.815},{"x":1753865281443,"y":41.699},{"x":1753865221308,"y":41.411},{"x":1753865161178,"y":41.135},{"x":1753865101064,"y":52.235},{"x":1753865040887,"y":30.924},{"x":1753864980759,"y":26.057},{"x":1753864920643,"y":41.309},{"x":1753864860521,"y":37.06},{"x":1753864800415,"y":33.259},{"x":1753864740302,"y":30.013},{"x":1753864682949,"y":29.756},{"x":1753864620678,"y":39.094},{"x":1753864560465,"y":32.017},{"x":1753864500252,"y":42.55},{"x":1753864443036,"y":42.617},{"x":1753864382864,"y":44.208},{"x":1753864322724,"y":31.122},{"x":1753864262596,"y":25.013},{"x":1753864202463,"y":31.876},{"x":1753864142331,"y":50.71},{"x":1753864082204,"y":43.031},{"x":1753864022085,"y":48.46},{"x":1753863961941,"y":42.056},{"x":1753863901816,"y":31.883},{"x":1753863841690,"y":29.142},{"x":1753863781564,"y":24.631},{"x":1753863721439,"y":33.776},{"x":1753863661301,"y":38.858},{"x":1753863601170,"y":47.132},{"x":1753863541015,"y":35.777},{"x":1753863480896,"y":45.642},{"x":1753863420779,"y":42.023},{"x":1753863360683,"y":31.59},{"x":1753863300581,"y":37.418},{"x":1753863240335,"y":37.741},{"x":1753863180117,"y":42.252},{"x":1753863122919,"y":50.494},{"x":1753863062795,"y":34.829},{"x":1753863002665,"y":38.521},{"x":1753862942527,"y":35.712},{"x":1753862882396,"y":32.837},{"x":1753862822264,"y":33.264},{"x":1753862762123,"y":35.464},{"x":1753862701979,"y":37.9},{"x":1753862641843,"y":57.391},{"x":1753862581715,"y":52.225},{"x":1753862521588,"y":55.648},{"x":1753862461470,"y":36.937},{"x":1753862401451,"y":32.304},{"x":1753862341128,"y":32.777},{"x":1753862280982,"y":28.303},{"x":1753862220328,"y":44.098},{"x":1753862162427,"y":42.66},{"x":1753862100796,"y":32.723},{"x":1753862040608,"y":45.689},{"x":1753861980514,"y":35.172},{"x":1753861920422,"y":42.662},{"x":1753861860279,"y":44.449},{"x":1753861802968,"y":50.77},{"x":1753861742863,"y":42.07},{"x":1753861682712,"y":46.345},{"x":1753861622571,"y":50.946},{"x":1753861562424,"y":36.876},{"x":1753861502264,"y":31.37},{"x":1753861442155,"y":40.817},{"x":1753861381930,"y":39.41},{"x":1753861321051,"y":37.609},{"x":1753861260850,"y":34.838},{"x":1753861200597,"y":45.518},{"x":1753861140226,"y":57.472},{"x":1753861082951,"y":59.932},{"x":1753861022835,"y":56.281},{"x":1753860962676,"y":59.617},{"x":1753860902564,"y":76.362},{"x":1753860842422,"y":53.137},{"x":1753860782306,"y":47.387},{"x":1753860722148,"y":38.832},{"x":1753860661995,"y":47.616},{"x":1753860601874,"y":41.195},{"x":1753860541729,"y":42.81},{"x":1753860481604,"y":35.688},{"x":1753860421474,"y":37.954},{"x":1753860361341,"y":44.47},{"x":1753860301204,"y":41.112},{"x":1753860241067,"y":48.272},{"x":1753860180921,"y":46.786},{"x":1753860120794,"y":53.28},{"x":1753860060671,"y":47.027},{"x":1753860000607,"y":42.685},{"x":1753859940489,"y":45.812},{"x":1753859880309,"y":38.351},{"x":1753859822979,"y":37.216},{"x":1753859762864,"y":45.617},{"x":1753859702718,"y":49.212},{"x":1753859642581,"y":45.473},{"x":1753859582453,"y":45.124},{"x":1753859522291,"y":48.637},{"x":1753859462080,"y":42.763},{"x":1753859401928,"y":43.547},{"x":1753859341794,"y":51.163},{"x":1753859281672,"y":49.204},{"x":1753859221541,"y":57.596},{"x":1753859161417,"y":54.306},{"x":1753859101281,"y":51.709},{"x":1753859041158,"y":52.651},{"x":1753858981005,"y":49.642},{"x":1753858920869,"y":45.485},{"x":1753858860730,"y":41.732},{"x":1753858800799,"y":37.29},{"x":1753858740424,"y":37.691},{"x":1753858680335,"y":54.706},{"x":1753858620181,"y":49.922},{"x":1753858562914,"y":49.021},{"x":1753858502782,"y":45.674},{"x":1753858442656,"y":50.048},{"x":1753858382532,"y":48.995},{"x":1753858322430,"y":51.641},{"x":1753858262263,"y":48.985},{"x":1753858202075,"y":51.359},{"x":1753858141928,"y":47.311},{"x":1753858081799,"y":43.398},{"x":1753858021674,"y":43.008},{"x":1753857961548,"y":39.053},{"x":1753857901426,"y":44.852},{"x":1753857841297,"y":58.154},{"x":1753857781162,"y":59.285},{"x":1753857721004,"y":64.398},{"x":1753857660858,"y":61.17},{"x":1753857600777,"y":55.714},{"x":1753857540622,"y":48.776},{"x":1753857480475,"y":45.92},{"x":1753857420294,"y":45.803},{"x":1753857360055,"y":49.099},{"x":1753857302896,"y":53.088},{"x":1753857242767,"y":53.038},{"x":1753857182651,"y":61.73},{"x":1753857122528,"y":46.874},{"x":1753857062409,"y":62.488},{"x":1753857002251,"y":46.937},{"x":1753856942127,"y":52.309},{"x":1753856881995,"y":65.491},{"x":1753856821865,"y":48.587},{"x":1753856761710,"y":64.738},{"x":1753856701588,"y":56.581},{"x":1753856641459,"y":72.282},{"x":1753856581342,"y":56.584},{"x":1753856521197,"y":58.364},{"x":1753856461073,"y":68.986},{"x":1753856400977,"y":64.615},{"x":1753856340778,"y":42.647},{"x":1753856280659,"y":45.133},{"x":1753856220588,"y":52.019},{"x":1753856160418,"y":45.014},{"x":1753856100367,"y":50.141},{"x":1753856042979,"y":56.785},{"x":1753855982854,"y":50.232},{"x":1753855922712,"y":46.834},{"x":1753855862590,"y":45.794},{"x":1753855802443,"y":44.323},{"x":1753855742300,"y":55.632},{"x":1753855682157,"y":53.732},{"x":1753855622033,"y":50.73},{"x":1753855561882,"y":50.851},{"x":1753855501753,"y":52.2},{"x":1753855441625,"y":43.266},{"x":1753855381500,"y":40.594},{"x":1753855321364,"y":44.938},{"x":1753855261246,"y":51.443},{"x":1753855201159,"y":54.228},{"x":1753855140872,"y":47.593},{"x":1753855080746,"y":47.92},{"x":1753855020608,"y":48.826},{"x":1753854960433,"y":43.295},{"x":1753854900336,"y":42.91},{"x":1753854843005,"y":42.577},{"x":1753854782881,"y":42.185},{"x":1753854722722,"y":45.274},{"x":1753854662552,"y":43.303},{"x":1753854602415,"y":43.014},{"x":1753854542264,"y":44.09},{"x":1753854482122,"y":44.257},{"x":1753854421965,"y":42.872},{"x":1753854361838,"y":44.666},{"x":1753854301717,"y":47.354},{"x":1753854241582,"y":43.1},{"x":1753854181507,"y":45.481},{"x":1753854121312,"y":44.509},{"x":1753854061184,"y":39.889},{"x":1753854001063,"y":31.192},{"x":1753853940892,"y":29.268},{"x":1753853880764,"y":39.617},{"x":1753853820650,"y":33.343},{"x":1753853760558,"y":33.614},{"x":1753853700416,"y":33.26},{"x":1753853640216,"y":55.648},{"x":1753853582978,"y":57.92},{"x":1753853522855,"y":54.359},{"x":1753853462726,"y":51.262},{"x":1753853402602,"y":52.126},{"x":1753853342473,"y":29.614},{"x":1753853282348,"y":32.59},{"x":1753853222213,"y":30.69},{"x":1753853162082,"y":30.888},{"x":1753853101976,"y":34.625},{"x":1753853041804,"y":36.644},{"x":1753852981681,"y":31.523},{"x":1753852921560,"y":31.13},{"x":1753852861416,"y":31.411},{"x":1753852801295,"y":31.589},{"x":1753852741158,"y":30.358},{"x":1753852681009,"y":30.096},{"x":1753852620884,"y":31.97},{"x":1753852560763,"y":34.625},{"x":1753852500685,"y":35.134},{"x":1753852440528,"y":34.489},{"x":1753852380339,"y":40.933},{"x":1753852320264,"y":37.823},{"x":1753852262935,"y":34.249},{"x":1753852202801,"y":33.806},{"x":1753852142668,"y":35.072},{"x":1753852082546,"y":33.272},{"x":1753852022419,"y":30.588},{"x":1753851962293,"y":29.13},{"x":1753851902162,"y":29.702},{"x":1753851842038,"y":29.208},{"x":1753851781907,"y":31.775},{"x":1753851721775,"y":36.94},{"x":1753851661649,"y":31.9},{"x":1753851601585,"y":35.323},{"x":1753851541360,"y":41.258},{"x":1753851481240,"y":52.67},{"x":1753851421106,"y":57.97},{"x":1753851360972,"y":53.818},{"x":1753851300814,"y":54.372},{"x":1753851240673,"y":42.136},{"x":1753851180575,"y":31.264},{"x":1753851120506,"y":34.798},{"x":1753851060278,"y":29.914},{"x":1753851000021,"y":35.719},{"x":1753850942927,"y":36.912},{"x":1753850882762,"y":36.038},{"x":1753850822627,"y":40.037},{"x":1753850762495,"y":32.052},{"x":1753850702367,"y":32.399},{"x":1753850642243,"y":29.898},{"x":1753850582110,"y":29.214},{"x":1753850521985,"y":29.612},{"x":1753850461841,"y":28.643},{"x":1753850401719,"y":32.767},{"x":1753850341589,"y":36.649},{"x":1753850281479,"y":35.342},{"x":1753850221332,"y":34.372},{"x":1753850161214,"y":30.59},{"x":1753850101076,"y":32.602},{"x":1753850040933,"y":29.705},{"x":1753849980804,"y":30.341},{"x":1753849920743,"y":31.856},{"x":1753849860560,"y":31.367},{"x":1753849800508,"y":34.757},{"x":1753849740259,"y":43.246},{"x":1753849682974,"y":42.893},{"x":1753849622851,"y":43.637},{"x":1753849562726,"y":44.494},{"x":1753849502598,"y":45.078},{"x":1753849442458,"y":34.021},{"x":1753849382331,"y":36.876},{"x":1753849322196,"y":34.694},{"x":1753849262066,"y":35.561},{"x":1753849201917,"y":34.555},{"x":1753849141788,"y":34.709},{"x":1753849081653,"y":38.221},{"x":1753849021529,"y":40.541},{"x":1753848961390,"y":39.245},{"x":1753848901272,"y":33.355},{"x":1753848841140,"y":33.103},{"x":1753848781001,"y":31.97},{"x":1753848720878,"y":36.632},{"x":1753848660746,"y":39.92},{"x":1753848600701,"y":38.123},{"x":1753848540562,"y":38.424},{"x":1753848480354,"y":34.277},{"x":1753848420232,"y":34.116},{"x":1753848362957,"y":37.384},{"x":1753848302846,"y":30.634},{"x":1753848242700,"y":30.886},{"x":1753848182576,"y":31.652},{"x":1753848122440,"y":37.085},{"x":1753848062284,"y":27.337},{"x":1753848002152,"y":37.495},{"x":1753847941925,"y":37.159},{"x":1753847881797,"y":35.032},{"x":1753847821667,"y":35.736},{"x":1753847761546,"y":37.067},{"x":1753847701404,"y":34.306},{"x":1753847641282,"y":51.424},{"x":1753847581130,"y":39.49},{"x":1753847520975,"y":37.844},{"x":1753847460850,"y":36.462},{"x":1753847400757,"y":34.546},{"x":1753847340562,"y":49.573},{"x":1753847280527,"y":48.137},{"x":1753847220319,"y":50.65},{"x":1753847160226,"y":48.016},{"x":1753847102907,"y":49.796},{"x":1753847042788,"y":29.957},{"x":1753846982627,"y":32.578},{"x":1753846922511,"y":32.948},{"x":1753846862267,"y":33.92},{"x":1753846802147,"y":38.257},{"x":1753846741983,"y":32.111},{"x":1753846681851,"y":34.837},{"x":1753846621719,"y":34.823},{"x":1753846561587,"y":32.927},{"x":1753846501452,"y":37.008},{"x":1753846441317,"y":32.172},{"x":1753846381208,"y":35.473},{"x":1753846321059,"y":34.522},{"x":1753846260933,"y":33.247},{"x":1753846200816,"y":40.124},{"x":1753846140656,"y":31.132},{"x":1753846080564,"y":30.961},{"x":1753846020506,"y":33.563},{"x":1753845960488,"y":38.458},{"x":1753845903016,"y":40.295},{"x":1753845842896,"y":36.812},{"x":1753845782758,"y":39.128},{"x":1753845722616,"y":31.859},{"x":1753845662476,"y":31.409},{"x":1753845602348,"y":34.484},{"x":1753845542213,"y":35.659},{"x":1753845482088,"y":34.361},{"x":1753845421978,"y":35.648},{"x":1753845361797,"y":32.306},{"x":1753845301677,"y":32.125},{"x":1753845241551,"y":31.637},{"x":1753845181412,"y":31.166},{"x":1753845121289,"y":31.957},{"x":1753845061160,"y":36.196},{"x":1753845001022,"y":40.66},{"x":1753844940879,"y":43.432},{"x":1753844880759,"y":40.675},{"x":1753844820627,"y":38.128},{"x":1753844760493,"y":35.512},{"x":1753844700404,"y":33.194},{"x":1753844640341,"y":36.382},{"x":1753844581857,"y":32.526},{"x":1753844521683,"y":37.195},{"x":1753844461520,"y":38.346},{"x":1753844402700,"y":32.965},{"x":1753844341450,"y":35.494},{"x":1753844281329,"y":30.9},{"x":1753844221198,"y":35.515},{"x":1753844161058,"y":36.406},{"x":1753844100925,"y":36.511},{"x":1753844040796,"y":42.454},{"x":1753843980671,"y":34.781},{"x":1753843920667,"y":32.767},{"x":1753843860526,"y":35.719},{"x":1753843800212,"y":30.926},{"x":1753843742882,"y":31.459},{"x":1753843682739,"y":31.646},{"x":1753843622596,"y":35.914},{"x":1753843562462,"y":35.095},{"x":1753843502331,"y":32.065},{"x":1753843442200,"y":33.401},{"x":1753843382075,"y":32.84},{"x":1753843321923,"y":33.149},{"x":1753843261793,"y":33.989},{"x":1753843201680,"y":36.133},{"x":1753843141544,"y":34.363},{"x":1753843081399,"y":34.903},{"x":1753843021276,"y":37.319},{"x":1753842961141,"y":33.284},{"x":1753842900993,"y":32.647},{"x":1753842840843,"y":35.044},{"x":1753842780719,"y":36.329},{"x":1753842720611,"y":33.378},{"x":1753842660534,"y":35.453},{"x":1753842600344,"y":33.263},{"x":1753842540127,"y":32.585},{"x":1753842482901,"y":36.704},{"x":1753842422772,"y":36.716},{"x":1753842362637,"y":34.945},{"x":1753842302503,"y":35.539},{"x":1753842242366,"y":35.72},{"x":1753842182244,"y":42.156},{"x":1753842122114,"y":38.4},{"x":1753842061978,"y":36.194},{"x":1753842001848,"y":36.216},{"x":1753841941715,"y":35.963},{"x":1753841881586,"y":42.62},{"x":1753841821464,"y":38.674},{"x":1753841761330,"y":37.81},{"x":1753841701228,"y":35.317},{"x":1753841641023,"y":34.366},{"x":1753841580885,"y":31.198},{"x":1753841520769,"y":32.165},{"x":1753841460628,"y":34.424},{"x":1753841400637,"y":35.003},{"x":1753841340457,"y":31.423},{"x":1753841280206,"y":31.667},{"x":1753841222906,"y":37.517},{"x":1753841162780,"y":38.681},{"x":1753841102663,"y":37.855},{"x":1753841042525,"y":37.469},{"x":1753840982396,"y":37.362},{"x":1753840922273,"y":37.084},{"x":1753840862141,"y":33.367},{"x":1753840802060,"y":30.392},{"x":1753840741839,"y":31.49},{"x":1753840681713,"y":30.852},{"x":1753840621585,"y":37.012},{"x":1753840561462,"y":36.727},{"x":1753840501338,"y":35.982},{"x":1753840441206,"y":43.544},{"x":1753840381078,"y":39.373},{"x":1753840320941,"y":38.07},{"x":1753840260773,"y":36.37},{"x":1753840200718,"y":31.834},{"x":1753840140498,"y":33.99},{"x":1753840080362,"y":33.889},{"x":1753840020073,"y":39.091},{"x":1753839962900,"y":41.137},{"x":1753839902764,"y":34.802},{"x":1753839842628,"y":34.235},{"x":1753839782485,"y":33.294},{"x":1753839722371,"y":36.748},{"x":1753839662232,"y":35.123},{"x":1753839602099,"y":34.156},{"x":1753839541945,"y":34.801},{"x":1753839481822,"y":34.374},{"x":1753839421677,"y":30.986},{"x":1753839361554,"y":35.952},{"x":1753839301421,"y":35.389},{"x":1753839241292,"y":38.878},{"x":1753839181167,"y":38.629},{"x":1753839121014,"y":35.591},{"x":1753839060886,"y":35.188},{"x":1753839000781,"y":37.133},{"x":1753838940611,"y":35.987},{"x":1753838880487,"y":36.049},{"x":1753838820296,"y":34.838},{"x":1753838762961,"y":34.432},{"x":1753838702850,"y":41.712},{"x":1753838642710,"y":34.117},{"x":1753838582586,"y":33.824},{"x":1753838522449,"y":35.887},{"x":1753838462329,"y":36.707},{"x":1753838402200,"y":37.099},{"x":1753838342069,"y":34.259},{"x":1753838281925,"y":34.574},{"x":1753838221799,"y":34.637},{"x":1753838161667,"y":37.51},{"x":1753838101537,"y":44.255},{"x":1753838041410,"y":39.098},{"x":1753837981305,"y":39.25},{"x":1753837921164,"y":38.928},{"x":1753837861033,"y":35.436},{"x":1753837800906,"y":34.47},{"x":1753837740776,"y":34.746},{"x":1753837680638,"y":34.386},{"x":1753837620528,"y":32.342},{"x":1753837560326,"y":31.702},{"x":1753837500226,"y":32.48},{"x":1753837442930,"y":38.665},{"x":1753837382801,"y":39.05},{"x":1753837322677,"y":38.568},{"x":1753837262551,"y":39.504},{"x":1753837202459,"y":41.088},{"x":1753837142244,"y":42.982},{"x":1753837082104,"y":36.821},{"x":1753837021951,"y":33.521},{"x":1753836961802,"y":33.804},{"x":1753836901683,"y":34.398},{"x":1753836841552,"y":32.844},{"x":1753836781418,"y":35.939},{"x":1753836721328,"y":35.752},{"x":1753836661157,"y":35.519},{"x":1753836600960,"y":35.206},{"x":1753836540782,"y":39.234},{"x":1753836480668,"y":32.12},{"x":1753836420549,"y":32.94},{"x":1753836360434,"y":30.06},{"x":1753836300285,"y":28.987},{"x":1753836243010,"y":32.671},{"x":1753836182885,"y":30.181},{"x":1753836122761,"y":30.246},{"x":1753836062637,"y":33.318},{"x":1753836002514,"y":39.053},{"x":1753835942385,"y":40.471},{"x":1753835882263,"y":47.868},{"x":1753835822145,"y":46.952},{"x":1753835762004,"y":44.174},{"x":1753835701883,"y":39.78},{"x":1753835641748,"y":46.074},{"x":1753835581626,"y":38.131},{"x":1753835521495,"y":33.74},{"x":1753835461369,"y":35.176},{"x":1753835401244,"y":32.232},{"x":1753835341107,"y":37.009},{"x":1753835280962,"y":30.468},{"x":1753835220844,"y":34.231},{"x":1753835160720,"y":36.986},{"x":1753835100641,"y":39.97},{"x":1753835040526,"y":43.396},{"x":1753834980313,"y":38.923},{"x":1753834920135,"y":33.749},{"x":1753834862918,"y":30.816},{"x":1753834802777,"y":30.66},{"x":1753834742629,"y":36.463},{"x":1753834682501,"y":33.84},{"x":1753834622373,"y":32.302},{"x":1753834562248,"y":32.309},{"x":1753834502112,"y":35.263},{"x":1753834441953,"y":39.185},{"x":1753834381837,"y":37.865},{"x":1753834321697,"y":34.58},{"x":1753834261572,"y":33.518},{"x":1753834201444,"y":32.981},{"x":1753834141297,"y":36.584},{"x":1753834081181,"y":31.754},{"x":1753834021031,"y":31.129},{"x":1753833960893,"y":30.882},{"x":1753833900808,"y":36.408},{"x":1753833840677,"y":39.95},{"x":1753833780541,"y":34.267},{"x":1753833720359,"y":32.962},{"x":1753833660247,"y":32.345},{"x":1753833602937,"y":33.578},{"x":1753833542774,"y":38.476},{"x":1753833482652,"y":34.126},{"x":1753833422521,"y":32.645},{"x":1753833362410,"y":32.053},{"x":1753833302270,"y":34.111},{"x":1753833242110,"y":36.68},{"x":1753833181965,"y":34.17},{"x":1753833121868,"y":32.652},{"x":1753833061707,"y":32.963},{"x":1753833001532,"y":31.211},{"x":1753832941372,"y":33.872},{"x":1753832881252,"y":37.39},{"x":1753832821135,"y":34.344},{"x":1753832760999,"y":32.55},{"x":1753832700898,"y":35.242},{"x":1753832640698,"y":36.612},{"x":1753832580569,"y":36.727},{"x":1753832520460,"y":37.166},{"x":1753832460375,"y":34.186},{"x":1753832400196,"y":32.434},{"x":1753832342943,"y":33.257},{"x":1753832282801,"y":33.097},{"x":1753832222681,"y":32.971},{"x":1753832162546,"y":35.276},{"x":1753832102419,"y":34.846},{"x":1753832042291,"y":37.835},{"x":1753831982155,"y":38.664},{"x":1753831922027,"y":36.612},{"x":1753831861845,"y":33.569},{"x":1753831801725,"y":31.969},{"x":1753831741580,"y":35.092},{"x":1753831681457,"y":31.124},{"x":1753831621328,"y":32.867},{"x":1753831561201,"y":35.467},{"x":1753831501068,"y":33.179},{"x":1753831440911,"y":38.252},{"x":1753831380781,"y":42.48},{"x":1753831320659,"y":40.346},{"x":1753831260518,"y":41.725},{"x":1753831200428,"y":39.341},{"x":1753831140242,"y":34.18},{"x":1753831082967,"y":33.788},{"x":1753831022872,"y":31.081},{"x":1753830962693,"y":31.811},{"x":1753830902594,"y":34.066},{"x":1753830842448,"y":30.558},{"x":1753830782334,"y":32.776},{"x":1753830722183,"y":32.555},{"x":1753830662057,"y":31.684},{"x":1753830601927,"y":34.814},{"x":1753830541792,"y":34.111},{"x":1753830481645,"y":38.862},{"x":1753830421525,"y":38.036},{"x":1753830361425,"y":35.018},{"x":1753830301264,"y":34.367},{"x":1753830241140,"y":36.222},{"x":1753830180974,"y":34.402},{"x":1753830120848,"y":33.446},{"x":1753830060709,"y":31.758},{"x":1753830000653,"y":31.417},{"x":1753829940305,"y":32.448},{"x":1753829883004,"y":36.445},{"x":1753829822871,"y":35.52},{"x":1753829762743,"y":36.286},{"x":1753829702611,"y":34.496},{"x":1753829642482,"y":39.04},{"x":1753829582344,"y":33.736},{"x":1753829522216,"y":32.536},{"x":1753829462044,"y":38.662},{"x":1753829401862,"y":37.589},{"x":1753829341713,"y":35.129},{"x":1753829281584,"y":35.477},{"x":1753829221473,"y":36.63},{"x":1753829161328,"y":34.763},{"x":1753829101210,"y":35.788},{"x":1753829041073,"y":38.693},{"x":1753828980930,"y":42.642},{"x":1753828920804,"y":39.44},{"x":1753828860671,"y":35.674},{"x":1753828800633,"y":31.436},{"x":1753828740423,"y":33.911},{"x":1753828680242,"y":38.364},{"x":1753828622938,"y":34.208},{"x":1753828562810,"y":37.04},{"x":1753828502669,"y":37.898},{"x":1753828442549,"y":39.355},{"x":1753828382415,"y":40.024},{"x":1753828322291,"y":35.334},{"x":1753828262159,"y":37.404},{"x":1753828202020,"y":37.987},{"x":1753828141891,"y":37.354},{"x":1753828081811,"y":38.021},{"x":1753828021638,"y":34.204},{"x":1753827961506,"y":34.861},{"x":1753827901376,"y":37.522},{"x":1753827841254,"y":37.5},{"x":1753827781118,"y":40.882},{"x":1753827720963,"y":38.036},{"x":1753827660832,"y":40.139},{"x":1753827600819,"y":38.87},{"x":1753827540564,"y":37.141},{"x":1753827480433,"y":35.167},{"x":1753827420282,"y":34.026},{"x":1753827362977,"y":34.496},{"x":1753827302836,"y":32.918},{"x":1753827242712,"y":34.758},{"x":1753827182597,"y":39.824},{"x":1753827122470,"y":46.286},{"x":1753827062332,"y":40.854},{"x":1753827002210,"y":43.279},{"x":1753826942082,"y":45.929},{"x":1753826881941,"y":49.805},{"x":1753826821777,"y":45.622},{"x":1753826761654,"y":45.34},{"x":1753826701524,"y":45.913},{"x":1753826641399,"y":40.662},{"x":1753826581272,"y":35.076},{"x":1753826521148,"y":34.112},{"x":1753826460937,"y":34.89},{"x":1753826401082,"y":35.968},{"x":1753826340648,"y":38.616},{"x":1753826280534,"y":42.145},{"x":1753826220461,"y":38.867},{"x":1753826160291,"y":37.614},{"x":1753826100089,"y":43.496},{"x":1753826042892,"y":42.134},{"x":1753825982766,"y":43.775},{"x":1753825922624,"y":39.481},{"x":1753825862475,"y":40.912},{"x":1753825802325,"y":36.583},{"x":1753825742171,"y":40.756},{"x":1753825682039,"y":39.143},{"x":1753825621902,"y":38.854},{"x":1753825561776,"y":38.88},{"x":1753825501641,"y":42.605},{"x":1753825441517,"y":43.384},{"x":1753825381374,"y":38.045},{"x":1753825321275,"y":41.256},{"x":1753825261121,"y":39.533},{"x":1753825200998,"y":39.796},{"x":1753825140834,"y":43.512},{"x":1753825080706,"y":42.353},{"x":1753825020580,"y":44.474},{"x":1753824960447,"y":45.889},{"x":1753824900369,"y":42.356},{"x":1753824840192,"y":43.981},{"x":1753824782925,"y":39.791},{"x":1753824722802,"y":38.612},{"x":1753824662667,"y":38.335},{"x":1753824602536,"y":41.772},{"x":1753824542412,"y":43.96},{"x":1753824482280,"y":44.042},{"x":1753824422153,"y":47.736},{"x":1753824362029,"y":43.284},{"x":1753824301866,"y":42.373},{"x":1753824241737,"y":49.832},{"x":1753824181618,"y":51.899},{"x":1753824121490,"y":49.698},{"x":1753824061360,"y":48.284},{"x":1753824001225,"y":46.854},{"x":1753823941095,"y":47.141},{"x":1753823880944,"y":47.358},{"x":1753823820826,"y":53.225},{"x":1753823760722,"y":51.173},{"x":1753823700644,"y":56.701},{"x":1753823640525,"y":51.524},{"x":1753823580404,"y":52.385},{"x":1753823520228,"y":50.711},{"x":1753823462955,"y":45.869},{"x":1753823402791,"y":52.62},{"x":1753823342668,"y":47.213},{"x":1753823282549,"y":46.001},{"x":1753823222425,"y":46.634},{"x":1753823162301,"y":45.048},{"x":1753823102183,"y":51.636},{"x":1753823042049,"y":49.34},{"x":1753822981904,"y":48.646},{"x":1753822921776,"y":49.265},{"x":1753822861657,"y":46.24},{"x":1753822801609,"y":49.866},{"x":1753822741371,"y":45.221},{"x":1753822681246,"y":45.618},{"x":1753822621119,"y":48.696},{"x":1753822560966,"y":47.848},{"x":1753822500867,"y":51.022},{"x":1753822440697,"y":48.907},{"x":1753822380572,"y":49.58},{"x":1753822320463,"y":53.238},{"x":1753822260269,"y":48.922},{"x":1753822202961,"y":46.865},{"x":1753822142780,"y":49.392},{"x":1753822082641,"y":46.649},{"x":1753822022519,"y":50.275},{"x":1753821962389,"y":48.962},{"x":1753821902237,"y":45.96},{"x":1753821842087,"y":44.215},{"x":1753821781944,"y":51.181},{"x":1753821721806,"y":53.566},{"x":1753821661676,"y":70.702},{"x":1753821601561,"y":53.924},{"x":1753821541424,"y":52.463},{"x":1753821481294,"y":58.217},{"x":1753821421174,"y":51.76},{"x":1753821361034,"y":58.03},{"x":1753821300910,"y":45.037},{"x":1753821240767,"y":56.645},{"x":1753821180654,"y":57.878},{"x":1753821120570,"y":72.578},{"x":1753821060358,"y":85.914},{"x":1753821000266,"y":64.646},{"x":1753820942981,"y":73.092},{"x":1753820882859,"y":47.756},{"x":1753820822734,"y":46.823},{"x":1753820762612,"y":56.41},{"x":1753820702475,"y":53.837},{"x":1753820642349,"y":54.694},{"x":1753820582228,"y":55.278},{"x":1753820522101,"y":51.838},{"x":1753820461951,"y":57.901},{"x":1753820401841,"y":51.017},{"x":1753820341701,"y":50.273},{"x":1753820281564,"y":49.609},{"x":1753820221439,"y":51.802},{"x":1753820161317,"y":48.338},{"x":1753820101194,"y":55.174},{"x":1753820041056,"y":47.041},{"x":1753819980915,"y":49.532},{"x":1753819920798,"y":62.186},{"x":1753819860678,"y":52.322},{"x":1753819800681,"y":64.922},{"x":1753819740498,"y":63.433},{"x":1753819680253,"y":67.639},{"x":1753819623006,"y":69.163},{"x":1753819562883,"y":62.354},{"x":1753819502751,"y":52.226},{"x":1753819442630,"y":48.368},{"x":1753819382495,"y":66.356},{"x":1753819322366,"y":56.783},{"x":1753819262247,"y":53.366},{"x":1753819202149,"y":55.229},{"x":1753819141938,"y":54.913},{"x":1753819081810,"y":58.051},{"x":1753819021686,"y":59.102},{"x":1753818961558,"y":69.324},{"x":1753818901438,"y":53.018},{"x":1753818841309,"y":59.722},{"x":1753818781189,"y":74.106},{"x":1753818721061,"y":73.758},{"x":1753818660853,"y":61.712},{"x":1753818600824,"y":58.336},{"x":1753818540599,"y":54.604},{"x":1753818480608,"y":50.424},{"x":1753818420334,"y":51.39},{"x":1753818360058,"y":53.387},{"x":1753818302899,"y":53.188},{"x":1753818242768,"y":78.791},{"x":1753818182643,"y":63.245},{"x":1753818122521,"y":60.166},{"x":1753818062385,"y":81.241},{"x":1753818002264,"y":64.303},{"x":1753817942120,"y":59.371},{"x":1753817881974,"y":61.668},{"x":1753817821842,"y":54.973},{"x":1753817761718,"y":53.267},{"x":1753817701593,"y":71.296},{"x":1753817641465,"y":45.443},{"x":1753817581335,"y":46.123},{"x":1753817521201,"y":44.354},{"x":1753817461073,"y":44.0},{"x":1753817400973,"y":43.724},{"x":1753817340772,"y":42.575},{"x":1753817280663,"y":43.692},{"x":1753817220549,"y":47.501},{"x":1753817160362,"y":44.647},{"x":1753817100246,"y":44.692},{"x":1753817042957,"y":42.33},{"x":1753816982851,"y":41.246},{"x":1753816922701,"y":40.616},{"x":1753816862541,"y":39.853},{"x":1753816802420,"y":44.426},{"x":1753816742295,"y":44.716},{"x":1753816682166,"y":41.836},{"x":1753816622039,"y":43.078},{"x":1753816561896,"y":42.014},{"x":1753816501763,"y":42.6},{"x":1753816441640,"y":37.736},{"x":1753816381513,"y":37.231},{"x":1753816321386,"y":34.914},{"x":1753816261271,"y":39.03},{"x":1753816201141,"y":35.165},{"x":1753816141018,"y":37.386},{"x":1753816080860,"y":38.688},{"x":1753816020717,"y":36.065},{"x":1753815960610,"y":49.046},{"x":1753815900444,"y":46.94},{"x":1753815840392,"y":44.44},{"x":1753815780284,"y":54.575},{"x":1753815722911,"y":67.697},{"x":1753815662781,"y":65.347},{"x":1753815602690,"y":62.158},{"x":1753815542506,"y":58.15},{"x":1753815482381,"y":45.98},{"x":1753815422251,"y":40.57},{"x":1753815362116,"y":41.143},{"x":1753815301984,"y":41.381},{"x":1753815241843,"y":40.368},{"x":1753815181708,"y":38.942},{"x":1753815121580,"y":46.001},{"x":1753815061457,"y":48.798},{"x":1753815001345,"y":53.452},{"x":1753814941158,"y":48.871},{"x":1753814881016,"y":48.0},{"x":1753814820884,"y":59.164},{"x":1753814760753,"y":57.404},{"x":1753814700709,"y":39.863},{"x":1753814640511,"y":38.315},{"x":1753814580305,"y":44.098},{"x":1753814520158,"y":53.395},{"x":1753814462916,"y":56.472},{"x":1753814402774,"y":55.363},{"x":1753814342643,"y":54.169},{"x":1753814282522,"y":72.355},{"x":1753814222391,"y":52.512},{"x":1753814162267,"y":43.837},{"x":1753814102125,"y":42.004},{"x":1753814041972,"y":42.854},{"x":1753813981835,"y":48.312},{"x":1753813921704,"y":47.96},{"x":1753813861551,"y":45.317},{"x":1753813801427,"y":41.228},{"x":1753813741290,"y":40.574},{"x":1753813681172,"y":48.882},{"x":1753813621050,"y":38.069},{"x":1753813560893,"y":41.242},{"x":1753813500820,"y":43.348},{"x":1753813440716,"y":44.425},{"x":1753813380561,"y":42.78},{"x":1753813320265,"y":44.617},{"x":1753813260014,"y":44.719},{"x":1753813202905,"y":43.361},{"x":1753813142762,"y":41.624},{"x":1753813082623,"y":46.42},{"x":1753813022492,"y":43.634},{"x":1753812962361,"y":46.308},{"x":1753812902232,"y":44.022},{"x":1753812842095,"y":42.29},{"x":1753812781947,"y":45.721},{"x":1753812721819,"y":48.262},{"x":1753812661679,"y":48.551},{"x":1753812601568,"y":42.899},{"x":1753812541425,"y":46.841},{"x":1753812481293,"y":42.936},{"x":1753812421175,"y":40.667},{"x":1753812361029,"y":39.929},{"x":1753812300906,"y":39.503},{"x":1753812240803,"y":52.638},{"x":1753812180625,"y":61.249},{"x":1753812120453,"y":68.539},{"x":1753812060297,"y":65.84},{"x":1753812002971,"y":84.446},{"x":1753811942847,"y":81.404},{"x":1753811882713,"y":63.094},{"x":1753811822585,"y":50.834},{"x":1753811762439,"y":44.288},{"x":1753811702309,"y":42.932},{"x":1753811642171,"y":41.834},{"x":1753811582038,"y":39.997},{"x":1753811521907,"y":38.777},{"x":1753811461722,"y":45.499},{"x":1753811401612,"y":43.848},{"x":1753811341412,"y":44.288},{"x":1753811281288,"y":57.268},{"x":1753811221190,"y":56.378},{"x":1753811161029,"y":57.114},{"x":1753811100899,"y":65.756},{"x":1753811040783,"y":56.893},{"x":1753810980663,"y":53.777},{"x":1753810920565,"y":44.766},{"x":1753810860374,"y":42.962},{"x":1753810800214,"y":48.318},{"x":1753810742922,"y":52.561},{"x":1753810682800,"y":44.603},{"x":1753810622655,"y":42.037},{"x":1753810562543,"y":38.854},{"x":1753810502391,"y":43.5},{"x":1753810442259,"y":40.324},{"x":1753810382134,"y":44.37},{"x":1753810321990,"y":54.718},{"x":1753810261850,"y":51.317},{"x":1753810201723,"y":54.655},{"x":1753810141580,"y":51.664},{"x":1753810081466,"y":58.428},{"x":1753810021311,"y":41.132},{"x":1753809961187,"y":41.846},{"x":1753809901062,"y":44.35},{"x":1753809840893,"y":36.264},{"x":1753809780740,"y":35.773},{"x":1753809720654,"y":50.669},{"x":1753809660498,"y":38.999},{"x":1753809600395,"y":54.728},{"x":1753809543022,"y":49.396},{"x":1753809482887,"y":52.416},{"x":1753809422751,"y":50.831},{"x":1753809362593,"y":50.168},{"x":1753809302474,"y":46.393},{"x":1753809242328,"y":41.082},{"x":1753809182192,"y":36.606},{"x":1753809122047,"y":45.205},{"x":1753809061893,"y":43.552},{"x":1753809001756,"y":44.179},{"x":1753808941626,"y":38.26},{"x":1753808881484,"y":44.604},{"x":1753808821351,"y":63.176},{"x":1753808761214,"y":55.628},{"x":1753808701070,"y":61.68},{"x":1753808640897,"y":54.553},{"x":1753808580779,"y":51.505},{"x":1753808520636,"y":45.965},{"x":1753808460425,"y":36.662},{"x":1753808400479,"y":37.136},{"x":1753808342921,"y":35.762},{"x":1753808282786,"y":31.925},{"x":1753808222653,"y":33.925},{"x":1753808162524,"y":48.204},{"x":1753808102379,"y":54.54},{"x":1753808042235,"y":47.978},{"x":1753807982097,"y":48.176},{"x":1753807921943,"y":44.806},{"x":1753807861809,"y":42.262},{"x":1753807801684,"y":41.254},{"x":1753807741510,"y":38.652},{"x":1753807681371,"y":36.487},{"x":1753807621241,"y":33.394},{"x":1753807561105,"y":33.314},{"x":1753807501002,"y":58.878},{"x":1753807440782,"y":47.249},{"x":1753807380639,"y":48.011},{"x":1753807320521,"y":61.608},{"x":1753807260332,"y":46.104},{"x":1753807200192,"y":34.228},{"x":1753807142909,"y":34.368},{"x":1753807082772,"y":37.237},{"x":1753807022621,"y":40.666},{"x":1753806962516,"y":55.236},{"x":1753806902358,"y":62.436},{"x":1753806842222,"y":52.548},{"x":1753806782072,"y":57.004},{"x":1753806721937,"y":50.39},{"x":1753806661788,"y":45.668},{"x":1753806601699,"y":43.453},{"x":1753806541502,"y":41.742},{"x":1753806481354,"y":36.346},{"x":1753806421215,"y":36.145},{"x":1753806361083,"y":38.461},{"x":1753806300947,"y":41.353},{"x":1753806240790,"y":37.913},{"x":1753806180614,"y":49.092},{"x":1753806120550,"y":40.915},{"x":1753806060313,"y":36.296},{"x":1753806003023,"y":37.384},{"x":1753805942880,"y":35.586},{"x":1753805882733,"y":36.064},{"x":1753805822597,"y":28.576},{"x":1753805762453,"y":30.326},{"x":1753805702318,"y":25.186},{"x":1753805642180,"y":32.672},{"x":1753805582027,"y":43.98},{"x":1753805521879,"y":36.6},{"x":1753805461732,"y":44.652},{"x":1753805401601,"y":36.75},{"x":1753805341441,"y":32.717},{"x":1753805281314,"y":46.727},{"x":1753805221172,"y":54.342},{"x":1753805161032,"y":59.436},{"x":1753805100899,"y":51.86},{"x":1753805040762,"y":56.653},{"x":1753804980668,"y":49.37},{"x":1753804920451,"y":44.412},{"x":1753804860447,"y":38.106},{"x":1753804802988,"y":36.893},{"x":1753804742847,"y":47.386},{"x":1753804682705,"y":43.109},{"x":1753804622563,"y":42.173},{"x":1753804562431,"y":37.098},{"x":1753804502299,"y":36.599},{"x":1753804442162,"y":21.286},{"x":1753804381986,"y":22.956},{"x":1753804321824,"y":25.33},{"x":1753804261660,"y":32.009},{"x":1753804201511,"y":37.543},{"x":1753804141347,"y":40.037},{"x":1753804081221,"y":48.673},{"x":1753804021060,"y":41.826},{"x":1753803960911,"y":50.132},{"x":1753803900873,"y":46.171},{"x":1753803840677,"y":25.266},{"x":1753803780530,"y":23.263},{"x":1753803720311,"y":20.932},{"x":1753803663009,"y":21.352},{"x":1753803602874,"y":28.086},{"x":1753803542736,"y":24.42},{"x":1753803482606,"y":23.051},{"x":1753803422458,"y":23.221},{"x":1753803362316,"y":23.641},{"x":1753803302204,"y":29.93},{"x":1753803242057,"y":35.483},{"x":1753803181909,"y":45.253},{"x":1753803121760,"y":50.87},{"x":1753803061629,"y":53.322},{"x":1753803001511,"y":51.022},{"x":1753802941351,"y":38.79},{"x":1753802881217,"y":27.562},{"x":1753802821068,"y":22.007},{"x":1753802760908,"y":21.023},{"x":1753802700774,"y":48.372},{"x":1753802640716,"y":33.62},{"x":1753802580606,"y":36.077},{"x":1753802520340,"y":28.678},{"x":1753802460210,"y":43.786},{"x":1753802402933,"y":21.81},{"x":1753802342788,"y":33.136},{"x":1753802282657,"y":23.102},{"x":1753802222528,"y":39.264},{"x":1753802162396,"y":35.815},{"x":1753802102263,"y":48.19},{"x":1753802042113,"y":32.484},{"x":1753801981949,"y":25.152},{"x":1753801921810,"y":14.3},{"x":1753801861657,"y":25.865},{"x":1753801801517,"y":34.426},{"x":1753801741378,"y":20.426},{"x":1753801681250,"y":25.938},{"x":1753801621111,"y":21.19},{"x":1753801560952,"y":24.607},{"x":1753801500821,"y":39.623},{"x":1753801440760,"y":63.242},{"x":1753801380538,"y":34.733},{"x":1753801320367,"y":38.142},{"x":1753801260247,"y":40.049},{"x":1753801202962,"y":35.891},{"x":1753801142787,"y":26.563},{"x":1753801082650,"y":22.513},{"x":1753801022495,"y":29.527},{"x":1753800962355,"y":39.104},{"x":1753800902218,"y":45.886},{"x":1753800842079,"y":40.64},{"x":1753800781904,"y":42.682},{"x":1753800721756,"y":39.055},{"x":1753800661620,"y":32.166},{"x":1753800601501,"y":25.552},{"x":1753800541321,"y":24.484},{"x":1753800481189,"y":28.868},{"x":1753800421034,"y":24.82},{"x":1753800360896,"y":33.157},{"x":1753800300888,"y":30.455},{"x":1753800240689,"y":30.149},{"x":1753800180466,"y":33.031},{"x":1753800120317,"y":29.446},{"x":1753800063023,"y":28.32},{"x":1753800002881,"y":38.48},{"x":1753799942738,"y":37.26},{"x":1753799882593,"y":28.162},{"x":1753799822448,"y":34.117},{"x":1753799762311,"y":27.004},{"x":1753799702167,"y":20.995},{"x":1753799642020,"y":15.638},{"x":1753799581872,"y":10.33},{"x":1753799521724,"y":16.998},{"x":1753799461597,"y":16.68},{"x":1753799401467,"y":18.374},{"x":1753799341305,"y":26.912},{"x":1753799281176,"y":27.722},{"x":1753799221011,"y":23.9},{"x":1753799160875,"y":49.636},{"x":1753799100772,"y":49.571},{"x":1753799040584,"y":56.525},{"x":1753798980356,"y":54.898},{"x":1753798923028,"y":62.321},{"x":1753798862896,"y":39.538},{"x":1753798802738,"y":44.921},{"x":1753798742605,"y":27.696},{"x":1753798682469,"y":26.334},{"x":1753798622333,"y":29.099},{"x":1753798562192,"y":45.488},{"x":1753798502043,"y":36.628},{"x":1753798441897,"y":37.937},{"x":1753798381758,"y":36.366},{"x":1753798321624,"y":31.106},{"x":1753798261472,"y":35.972},{"x":1753798201334,"y":16.828},{"x":1753798141184,"y":15.383},{"x":1753798081036,"y":37.651},{"x":1753798020889,"y":21.883},{"x":1753797960754,"y":20.436},{"x":1753797900678,"y":25.573},{"x":1753797840509,"y":34.384},{"x":1753797780264,"y":35.636},{"x":1753797723020,"y":20.052},{"x":1753797662872,"y":43.204},{"x":1753797602768,"y":40.17},{"x":1753797542560,"y":39.308},{"x":1753797482421,"y":39.112},{"x":1753797422281,"y":42.554},{"x":1753797362155,"y":16.876},{"x":1753797301994,"y":20.01},{"x":1753797241851,"y":14.597},{"x":1753797181721,"y":32.347},{"x":1753797121549,"y":28.098},{"x":1753797061353,"y":39.132},{"x":1753797001266,"y":31.296},{"x":1753796940995,"y":53.358},{"x":1753796880859,"y":35.905},{"x":1753796820723,"y":46.751},{"x":1753796760645,"y":41.122},{"x":1753796700632,"y":49.668},{"x":1753796640357,"y":29.788},{"x":1753796582939,"y":28.937},{"x":1753796522804,"y":22.382},{"x":1753796462663,"y":19.601},{"x":1753796402519,"y":16.362},{"x":1753796342378,"y":24.728},{"x":1753796282248,"y":41.252},{"x":1753796222112,"y":23.251},{"x":1753796161955,"y":25.415},{"x":1753796101803,"y":26.626},{"x":1753796041661,"y":36.509},{"x":1753795981515,"y":53.04},{"x":1753795921353,"y":48.589},{"x":1753795861204,"y":54.608},{"x":1753795801049,"y":44.753},{"x":1753795740858,"y":42.778},{"x":1753795680767,"y":32.654},{"x":1753795620622,"y":26.996},{"x":1753795560358,"y":34.301},{"x":1753795500146,"y":31.319},{"x":1753795442918,"y":30.6},{"x":1753795382769,"y":29.047},{"x":1753795322625,"y":31.6},{"x":1753795262491,"y":33.706},{"x":1753795202326,"y":28.606},{"x":1753795142182,"y":27.605},{"x":1753795082035,"y":28.888},{"x":1753795021895,"y":33.274},{"x":1753794961763,"y":42.164},{"x":1753794901602,"y":39.325},{"x":1753794841457,"y":32.03},{"x":1753794781305,"y":33.5},{"x":1753794721164,"y":23.918},{"x":1753794661002,"y":23.466},{"x":1753794600896,"y":23.935},{"x":1753794540706,"y":23.646},{"x":1753794480646,"y":19.254},{"x":1753794420482,"y":39.886},{"x":1753794360312,"y":51.809},{"x":1753794302979,"y":43.199},{"x":1753794242845,"y":35.118},{"x":1753794182692,"y":40.274},{"x":1753794122549,"y":30.286},{"x":1753794062415,"y":27.28},{"x":1753794002273,"y":23.844},{"x":1753793942085,"y":14.35},{"x":1753793881939,"y":31.04},{"x":1753793821785,"y":16.452},{"x":1753793761642,"y":15.726},{"x":1753793701505,"y":25.102},{"x":1753793641353,"y":29.761},{"x":1753793581220,"y":26.675},{"x":1753793521075,"y":39.588},{"x":1753793460915,"y":43.33},{"x":1753793400899,"y":27.181},{"x":1753793340631,"y":24.229},{"x":1753793280479,"y":19.892},{"x":1753793220348,"y":17.024},{"x":1753793162971,"y":22.586},{"x":1753793102847,"y":37.387},{"x":1753793042677,"y":25.442},{"x":1753792982537,"y":31.902},{"x":1753792922396,"y":29.152},{"x":1753792862258,"y":23.054},{"x":1753792802107,"y":19.452},{"x":1753792741947,"y":29.118},{"x":1753792681801,"y":17.66},{"x":1753792621663,"y":21.084},{"x":1753792561521,"y":23.284},{"x":1753792501390,"y":42.439},{"x":1753792441227,"y":47.68},{"x":1753792381078,"y":32.342},{"x":1753792320926,"y":28.458},{"x":1753792260784,"y":24.796},{"x":1753792200763,"y":10.001},{"x":1753792140481,"y":14.712},{"x":1753792080382,"y":16.061},{"x":1753792020186,"y":17.21},{"x":1753791962895,"y":24.934},{"x":1753791902744,"y":27.492},{"x":1753791842619,"y":25.777},{"x":1753791782482,"y":21.464},{"x":1753791722327,"y":16.528},{"x":1753791662209,"y":38.536},{"x":1753791602020,"y":39.906},{"x":1753791541860,"y":34.644},{"x":1753791481716,"y":47.519},{"x":1753791421560,"y":46.885},{"x":1753791361426,"y":42.144},{"x":1753791301279,"y":33.75},{"x":1753791241135,"y":24.18},{"x":1753791180967,"y":38.452},{"x":1753791120837,"y":24.222},{"x":1753791060690,"y":31.41},{"x":1753791000627,"y":46.208},{"x":1753790940383,"y":44.284},{"x":1753790880144,"y":40.308},{"x":1753790822889,"y":46.294},{"x":1753790762746,"y":48.702},{"x":1753790702603,"y":25.273},{"x":1753790642447,"y":21.509},{"x":1753790582310,"y":30.643},{"x":1753790522159,"y":17.018},{"x":1753790461993,"y":26.308},{"x":1753790401914,"y":51.212},{"x":1753790341678,"y":43.044},{"x":1753790281567,"y":34.024},{"x":1753790221394,"y":36.192},{"x":1753790161265,"y":48.454},{"x":1753790101120,"y":29.731},{"x":1753790040960,"y":24.348},{"x":1753789980810,"y":16.23},{"x":1753789920731,"y":16.566},{"x":1753789860445,"y":20.942},{"x":1753789800276,"y":36.134},{"x":1753789742995,"y":36.418},{"x":1753789682853,"y":28.894},{"x":1753789622699,"y":52.304},{"x":1753789562557,"y":27.577},{"x":1753789502410,"y":19.405},{"x":1753789442264,"y":29.016},{"x":1753789382124,"y":26.622},{"x":1753789321953,"y":18.137},{"x":1753789261803,"y":23.045},{"x":1753789201665,"y":17.507},{"x":1753789141525,"y":19.87},{"x":1753789081364,"y":17.264},{"x":1753789021233,"y":38.141},{"x":1753788961079,"y":47.5},{"x":1753788900925,"y":58.898},{"x":1753788840769,"y":41.903},{"x":1753788780672,"y":42.456},{"x":1753788720526,"y":32.557},{"x":1753788660381,"y":12.106},{"x":1753788602917,"y":25.502},{"x":1753788542771,"y":34.109},{"x":1753788482603,"y":49.246},{"x":1753788422453,"y":56.437},{"x":1753788362310,"y":54.544},{"x":1753788302177,"y":52.318},{"x":1753788242013,"y":44.879},{"x":1753788181874,"y":23.599},{"x":1753788121724,"y":16.933},{"x":1753788061578,"y":15.798},{"x":1753788001438,"y":10.973},{"x":1753787941316,"y":18.943},{"x":1753787881137,"y":40.316},{"x":1753787820934,"y":45.56},{"x":1753787760797,"y":46.966},{"x":1753787700624,"y":39.505},{"x":1753787640612,"y":31.508},{"x":1753787580425,"y":30.176},{"x":1753787520055,"y":39.53},{"x":1753787462891,"y":15.095},{"x":1753787402781,"y":8.569},{"x":1753787342621,"y":18.69},{"x":1753787282471,"y":25.294},{"x":1753787222332,"y":38.128},{"x":1753787162191,"y":43.372},{"x":1753787102057,"y":36.774},{"x":1753787041899,"y":20.606},{"x":1753786981759,"y":12.854},{"x":1753786921623,"y":15.606},{"x":1753786861481,"y":19.622},{"x":1753786801587,"y":17.736},{"x":1753786741138,"y":19.001},{"x":1753786680978,"y":19.12},{"x":1753786620850,"y":21.634},{"x":1753786560723,"y":34.044},{"x":1753786500610,"y":32.786},{"x":1753786440448,"y":41.771},{"x":1753786380194,"y":37.342},{"x":1753786322916,"y":27.911},{"x":1753786262773,"y":22.757},{"x":1753786202669,"y":20.879},{"x":1753786142453,"y":11.028},{"x":1753786082303,"y":6.722},{"x":1753786022148,"y":5.392},{"x":1753785961997,"y":26.986},{"x":1753785901839,"y":24.338},{"x":1753785841695,"y":24.286},{"x":1753785781556,"y":26.395},{"x":1753785721436,"y":37.213},{"x":1753785661282,"y":18.329},{"x":1753785601214,"y":17.723},{"x":1753785540964,"y":30.198},{"x":1753785480815,"y":36.646},{"x":1753785420677,"y":31.458},{"x":1753785360592,"y":43.415},{"x":1753785300495,"y":36.566},{"x":1753785240261,"y":19.046},{"x":1753785182902,"y":22.511},{"x":1753785122763,"y":29.372},{"x":1753785062612,"y":18.604},{"x":1753785002471,"y":32.582},{"x":1753784942331,"y":28.361},{"x":1753784882180,"y":33.3},{"x":1753784822021,"y":31.574},{"x":1753784761858,"y":15.947},{"x":1753784701719,"y":18.722},{"x":1753784641580,"y":43.512},{"x":1753784581422,"y":26.987},{"x":1753784521280,"y":27.718},{"x":1753784461150,"y":38.688},{"x":1753784401043,"y":31.574},{"x":1753784340793,"y":35.844},{"x":1753784280639,"y":36.972},{"x":1753784220553,"y":38.284},{"x":1753784160368,"y":45.187},{"x":1753784103003,"y":34.978},{"x":1753784042894,"y":31.237},{"x":1753783982730,"y":41.94},{"x":1753783922581,"y":30.696},{"x":1753783862427,"y":37.891},{"x":1753783802299,"y":23.792},{"x":1753783742121,"y":37.675},{"x":1753783681976,"y":30.701},{"x":1753783621826,"y":24.971},{"x":1753783561680,"y":9.397},{"x":1753783501458,"y":14.712},{"x":1753783441308,"y":20.178},{"x":1753783381153,"y":13.3},{"x":1753783320978,"y":14.908},{"x":1753783260844,"y":23.546},{"x":1753783200958,"y":27.768},{"x":1753783140583,"y":27.738},{"x":1753783080416,"y":20.47},{"x":1753783020312,"y":31.103},{"x":1753782962935,"y":23.814},{"x":1753782902785,"y":15.284},{"x":1753782842664,"y":24.534},{"x":1753782782501,"y":14.984},{"x":1753782722363,"y":37.019},{"x":1753782662227,"y":47.104},{"x":1753782602085,"y":58.579},{"x":1753782541881,"y":41.088},{"x":1753782481728,"y":37.943},{"x":1753782421597,"y":12.997},{"x":1753782361466,"y":20.741},{"x":1753782301348,"y":20.851},{"x":1753782241163,"y":27.53},{"x":1753782180999,"y":19.984},{"x":1753782120850,"y":47.855},{"x":1753782060714,"y":31.854},{"x":1753782000830,"y":41.839},{"x":1753781940378,"y":30.31},{"x":1753781882975,"y":32.452},{"x":1753781822840,"y":23.476},{"x":1753781762666,"y":26.173},{"x":1753781702471,"y":30.619},{"x":1753781642316,"y":37.758},{"x":1753781582164,"y":37.618},{"x":1753781521987,"y":32.05},{"x":1753781461841,"y":29.551},{"x":1753781401713,"y":33.173},{"x":1753781341537,"y":32.286},{"x":1753781281375,"y":25.591},{"x":1753781221236,"y":38.516},{"x":1753781161091,"y":51.353},{"x":1753781100953,"y":34.352},{"x":1753781040790,"y":31.206},{"x":1753780980671,"y":35.31},{"x":1753780920407,"y":21.22},{"x":1753780860263,"y":16.927},{"x":1753780802942,"y":16.648},{"x":1753780742809,"y":21.098},{"x":1753780682665,"y":23.963},{"x":1753780622520,"y":27.337},{"x":1753780562390,"y":32.378},{"x":1753780502231,"y":38.059},{"x":1753780442030,"y":27.624},{"x":1753780381856,"y":24.731},{"x":1753780321733,"y":30.065},{"x":1753780261562,"y":20.346},{"x":1753780201416,"y":20.312},{"x":1753780141260,"y":49.818},{"x":1753780081112,"y":54.812},{"x":1753780020870,"y":51.718},{"x":1753779960723,"y":47.087},{"x":1753779900649,"y":31.809},{"x":1753779840399,"y":31.247},{"x":1753779680688,"y":28.951},{"x":1753779677758,"y":35.146},{"x":1753729921074,"y":43.624},{"x":1753729860903,"y":45.946},{"x":1753729800804,"y":55.624},{"x":1753729740607,"y":59.585},{"x":1753729682745,"y":54.986},{"x":1753729622602,"y":65.618},{"x":1753729562443,"y":59.107},{"x":1753729502297,"y":50.234},{"x":1753729442149,"y":41.592},{"x":1753729381952,"y":54.876},{"x":1753729321812,"y":49.7},{"x":1753729261683,"y":48.034},{"x":1753729202932,"y":46.972},{"x":1753729142770,"y":47.97},{"x":1753729082626,"y":52.255},{"x":1753729022485,"y":47.824},{"x":1753728962336,"y":61.28},{"x":1753728902192,"y":66.553},{"x":1753728842042,"y":58.534},{"x":1753728781891,"y":63.364},{"x":1753728721755,"y":63.436},{"x":1753728661603,"y":54.408},{"x":1753728601157,"y":66.941},{"x":1753728540978,"y":52.85},{"x":1753728480825,"y":59.263},{"x":1753728420681,"y":51.265},{"x":1753728360587,"y":45.265},{"x":1753728300729,"y":44.618},{"x":1753728240352,"y":47.082},{"x":1753728182976,"y":51.258},{"x":1753728122802,"y":57.068},{"x":1753728062660,"y":63.137},{"x":1753728002501,"y":46.82},{"x":1753727942126,"y":58.104},{"x":1753727881970,"y":41.384},{"x":1753727821822,"y":47.262},{"x":1753727761377,"y":42.108},{"x":1753727701239,"y":49.934},{"x":1753727641019,"y":49.808},{"x":1753727580873,"y":64.148},{"x":1753727520732,"y":60.214},{"x":1753727460595,"y":60.954},{"x":1753727400512,"y":67.29},{"x":1753727340350,"y":48.97},{"x":1753727282956,"y":39.545},{"x":1753727222814,"y":38.154},{"x":1753727162662,"y":43.3},{"x":1753727102513,"y":42.584},{"x":1753727042159,"y":45.27},{"x":1753726981993,"y":43.627},{"x":1753726921849,"y":47.449},{"x":1753726861702,"y":51.847},{"x":1753726801565,"y":45.554},{"x":1753726741410,"y":43.387},{"x":1753726681264,"y":46.69},{"x":1753726621120,"y":45.971},{"x":1753726560955,"y":47.418},{"x":1753726500846,"y":41.06},{"x":1753726440663,"y":37.382},{"x":1753726380642,"y":44.472},{"x":1753726320291,"y":44.692},{"x":1753726260170,"y":43.871},{"x":1753726202893,"y":50.532},{"x":1753726142752,"y":43.026},{"x":1753726082597,"y":41.072},{"x":1753726022428,"y":39.748},{"x":1753725962284,"y":42.413},{"x":1753725902156,"y":34.414},{"x":1753725841997,"y":35.474},{"x":1753725781865,"y":38.165},{"x":1753725721704,"y":33.08},{"x":1753725661575,"y":32.86},{"x":1753725601890,"y":34.691},{"x":1753725541680,"y":35.356},{"x":1753725481453,"y":39.148},{"x":1753725421310,"y":33.931},{"x":1753725361161,"y":34.697},{"x":1753725300990,"y":41.806},{"x":1753725240836,"y":43.198},{"x":1753725180707,"y":50.449},{"x":1753725120532,"y":64.765},{"x":1753725063365,"y":59.509},{"x":1753725000123,"y":60.982},{"x":1753724942886,"y":55.17},{"x":1753724882740,"y":35.837},{"x":1753724822598,"y":36.414},{"x":1753724762443,"y":48.486},{"x":1753724702296,"y":40.504},{"x":1753724642157,"y":38.552},{"x":1753724581990,"y":36.002},{"x":1753724521850,"y":37.01},{"x":1753724461689,"y":34.138},{"x":1753724401546,"y":37.693},{"x":1753724340867,"y":37.105},{"x":1753724280711,"y":33.918},{"x":1753724220579,"y":54.671},{"x":1753724162925,"y":56.092},{"x":1753724102775,"y":51.947},{"x":1753724042626,"y":64.06},{"x":1753723982479,"y":52.062},{"x":1753723922304,"y":50.994},{"x":1753723862125,"y":41.352},{"x":1753723801942,"y":31.723},{"x":1753723741714,"y":30.606},{"x":1753723681552,"y":31.565},{"x":1753723621378,"y":30.691},{"x":1753723561240,"y":33.452},{"x":1753723501083,"y":43.447},{"x":1753723440938,"y":57.271},{"x":1753723380797,"y":58.896},{"x":1753723320647,"y":57.186},{"x":1753723260528,"y":54.344},{"x":1753723200380,"y":45.012},{"x":1753723140083,"y":34.391},{"x":1753723082872,"y":40.424},{"x":1753723022731,"y":41.036},{"x":1753722962527,"y":45.773},{"x":1753722902382,"y":42.38},{"x":1753722842257,"y":60.84},{"x":1753722782105,"y":59.513},{"x":1753722721932,"y":58.758},{"x":1753722661789,"y":52.346},{"x":1753722601658,"y":45.836},{"x":1753722541516,"y":33.941},{"x":1753722481390,"y":41.948},{"x":1753722421256,"y":39.913},{"x":1753722361118,"y":40.02},{"x":1753722300947,"y":34.18},{"x":1753722240805,"y":42.498},{"x":1753722180631,"y":37.906},{"x":1753722120550,"y":45.986},{"x":1753722060392,"y":33.71},{"x":1753722001408,"y":30.436},{"x":1753721941013,"y":32.719},{"x":1753721880777,"y":32.51},{"x":1753721820650,"y":28.946},{"x":1753721760513,"y":32.797},{"x":1753721700387,"y":31.474},{"x":1753721640169,"y":38.489},{"x":1753721582883,"y":35.99},{"x":1753721522740,"y":41.464},{"x":1753721462593,"y":45.848},{"x":1753721402447,"y":42.587},{"x":1753721342276,"y":46.393},{"x":1753721282130,"y":54.437},{"x":1753721221983,"y":42.938},{"x":1753721161830,"y":34.459},{"x":1753721101695,"y":31.44},{"x":1753721041539,"y":32.303},{"x":1753720981383,"y":34.888},{"x":1753720921237,"y":30.972},{"x":1753720861050,"y":31.615},{"x":1753720800989,"y":58.114},{"x":1753720740672,"y":62.815},{"x":1753720680595,"y":54.043},{"x":1753720620414,"y":51.802},{"x":1753720560311,"y":31.159},{"x":1753720502942,"y":36.905},{"x":1753720442790,"y":41.201},{"x":1753720382644,"y":30.787},{"x":1753720322497,"y":32.586},{"x":1753720262352,"y":40.082},{"x":1753720202209,"y":29.934},{"x":1753720142066,"y":28.489},{"x":1753720081889,"y":35.356},{"x":1753720021715,"y":40.064},{"x":1753719961566,"y":46.201},{"x":1753719901432,"y":45.67},{"x":1753719841297,"y":45.712},{"x":1753719781157,"y":42.409},{"x":1753719721011,"y":34.29},{"x":1753719660870,"y":27.252},{"x":1753719600822,"y":32.012},{"x":1753719540589,"y":35.368},{"x":1753719480605,"y":29.509},{"x":1753719420059,"y":29.066},{"x":1753719362859,"y":28.051},{"x":1753719302716,"y":52.951},{"x":1753719242571,"y":47.77},{"x":1753719182421,"y":48.157},{"x":1753719122283,"y":46.394},{"x":1753719062125,"y":48.362},{"x":1753719001976,"y":43.343},{"x":1753718941825,"y":32.209},{"x":1753718881691,"y":33.853},{"x":1753718821535,"y":37.412},{"x":1753718761405,"y":27.133},{"x":1753718701263,"y":26.419},{"x":1753718641113,"y":26.251},{"x":1753718580942,"y":47.837},{"x":1753718520789,"y":33.775},{"x":1753718460681,"y":32.854},{"x":1753718400834,"y":28.032},{"x":1753718340637,"y":41.1},{"x":1753718280464,"y":34.484},{"x":1753718220051,"y":40.6},{"x":1753718162857,"y":35.278},{"x":1753718102709,"y":36.503},{"x":1753718042560,"y":37.04},{"x":1753717982426,"y":21.728},{"x":1753717922251,"y":25.536},{"x":1753717862104,"y":26.155},{"x":1753717801939,"y":38.089},{"x":1753717741793,"y":22.669},{"x":1753717681653,"y":21.563},{"x":1753717621514,"y":23.394},{"x":1753717561356,"y":25.037},{"x":1753717501238,"y":24.163},{"x":1753717441058,"y":23.359},{"x":1753717380887,"y":25.141},{"x":1753717320763,"y":19.027},{"x":1753717260613,"y":37.512},{"x":1753717200538,"y":34.0},{"x":1753717140290,"y":48.57},{"x":1753717080118,"y":49.3},{"x":1753717022920,"y":48.48},{"x":1753716962769,"y":31.615},{"x":1753716902627,"y":33.934},{"x":1753716842500,"y":21.539},{"x":1753716782332,"y":27.137},{"x":1753716722158,"y":20.328},{"x":1753716661994,"y":19.402},{"x":1753716601838,"y":33.803},{"x":1753716541680,"y":34.328},{"x":1753716481510,"y":36.64},{"x":1753716421365,"y":33.377},{"x":1753716361228,"y":43.144},{"x":1753716301076,"y":24.349},{"x":1753716240901,"y":20.954},{"x":1753716180757,"y":19.784},{"x":1753716120608,"y":20.784},{"x":1753716060487,"y":29.15},{"x":1753716000286,"y":26.386},{"x":1753715940208,"y":27.755},{"x":1753715882861,"y":30.532},{"x":1753715822722,"y":38.538},{"x":1753715762527,"y":30.829},{"x":1753715702371,"y":29.054},{"x":1753715642237,"y":22.31},{"x":1753715582079,"y":19.026},{"x":1753715521915,"y":23.86},{"x":1753715461769,"y":18.508},{"x":1753715401635,"y":17.084},{"x":1753715341484,"y":17.3},{"x":1753715281328,"y":19.429},{"x":1753715221195,"y":18.958},{"x":1753715161031,"y":21.478},{"x":1753715100894,"y":22.124},{"x":1753715040747,"y":23.234},{"x":1753714980592,"y":18.751},{"x":1753714920441,"y":28.088},{"x":1753714860365,"y":47.687},{"x":1753714801236,"y":50.972},{"x":1753714740884,"y":35.317},{"x":1753714680750,"y":46.234},{"x":1753714620646,"y":46.166},{"x":1753714560601,"y":45.167},{"x":1753714500396,"y":32.1},{"x":1753714443017,"y":21.96},{"x":1753714382873,"y":17.285},{"x":1753714322728,"y":27.209},{"x":1753714262583,"y":55.172},{"x":1753714202442,"y":51.388},{"x":1753714142301,"y":37.25},{"x":1753714082157,"y":35.476},{"x":1753714022016,"y":42.912},{"x":1753713961846,"y":59.338},{"x":1753713901704,"y":33.089},{"x":1753713841554,"y":30.985},{"x":1753713781423,"y":25.156},{"x":1753713721286,"y":35.794},{"x":1753713661139,"y":28.117},{"x":1753713600986,"y":24.788},{"x":1753713540775,"y":21.205},{"x":1753713480630,"y":23.857},{"x":1753713420522,"y":25.279},{"x":1753713360505,"y":19.739},{"x":1753713303013,"y":36.473},{"x":1753713242879,"y":31.35},{"x":1753713182716,"y":5.898},{"x":1753713122566,"y":12.424},{"x":1753713062424,"y":17.834},{"x":1753713002275,"y":17.473},{"x":1753712942141,"y":9.092},{"x":1753712881954,"y":34.675},{"x":1753712821788,"y":27.295},{"x":1753712761648,"y":32.412},{"x":1753712701514,"y":20.76},{"x":1753712641375,"y":28.64},{"x":1753712581230,"y":15.121},{"x":1753712521075,"y":35.632},{"x":1753712460887,"y":31.432},{"x":1753712400828,"y":35.072},{"x":1753712340594,"y":31.986},{"x":1753712280435,"y":30.946},{"x":1753712220321,"y":31.628},{"x":1753712163035,"y":30.782},{"x":1753712102885,"y":29.582},{"x":1753712042737,"y":22.349},{"x":1753711982573,"y":27.312},{"x":1753711922443,"y":25.028},{"x":1753711862290,"y":21.715},{"x":1753711802135,"y":16.145},{"x":1753711741981,"y":33.23},{"x":1753711681841,"y":28.65},{"x":1753711621695,"y":31.792},{"x":1753711561546,"y":50.756},{"x":1753711501404,"y":51.029},{"x":1753711441270,"y":44.804},{"x":1753711381127,"y":45.216},{"x":1753711320960,"y":47.448},{"x":1753711260826,"y":24.552},{"x":1753711202033,"y":25.838},{"x":1753711141597,"y":28.433},{"x":1753711081448,"y":29.862},{"x":1753711021305,"y":34.934},{"x":1753710961157,"y":37.109},{"x":1753710900977,"y":27.078},{"x":1753710840814,"y":37.901},{"x":1753710780708,"y":41.386},{"x":1753710720548,"y":39.446},{"x":1753710660378,"y":37.494},{"x":1753710600115,"y":21.862},{"x":1753710542883,"y":23.162},{"x":1753710482740,"y":25.51},{"x":1753710422583,"y":28.745},{"x":1753710362406,"y":35.528},{"x":1753710302265,"y":30.568},{"x":1753710242136,"y":42.858},{"x":1753710181963,"y":26.082},{"x":1753710121818,"y":26.047},{"x":1753710061666,"y":46.938},{"x":1753710001528,"y":35.254},{"x":1753709941375,"y":35.443},{"x":1753709881236,"y":23.502},{"x":1753709821083,"y":31.874},{"x":1753709760954,"y":24.282},{"x":1753709700810,"y":25.793},{"x":1753709640655,"y":26.171},{"x":1753709580536,"y":24.859},{"x":1753709520420,"y":31.354},{"x":1753709462956,"y":45.08},{"x":1753709402816,"y":48.697},{"x":1753709342676,"y":36.866},{"x":1753709282535,"y":42.708},{"x":1753709222374,"y":34.152},{"x":1753709162111,"y":34.409},{"x":1753709101962,"y":38.963},{"x":1753709041821,"y":29.341},{"x":1753708981675,"y":11.872},{"x":1753708921543,"y":16.172},{"x":1753708861387,"y":20.974},{"x":1753708801239,"y":29.602},{"x":1753708741077,"y":17.84},{"x":1753708680918,"y":24.212},{"x":1753708620783,"y":10.114},{"x":1753708560680,"y":13.811},{"x":1753708500761,"y":32.052},{"x":1753708440290,"y":32.161},{"x":1753708382973,"y":15.727},{"x":1753708322804,"y":28.916},{"x":1753708262657,"y":26.12},{"x":1753708202510,"y":43.603},{"x":1753708142164,"y":35.472},{"x":1753708081901,"y":34.082},{"x":1753708021753,"y":44.003},{"x":1753707961607,"y":44.765},{"x":1753707901472,"y":50.462},{"x":1753707841330,"y":37.775},{"x":1753707781225,"y":48.007},{"x":1753707721062,"y":31.956},{"x":1753707660914,"y":29.62},{"x":1753707601621,"y":37.844},{"x":1753707541320,"y":35.4},{"x":1753707481177,"y":25.799},{"x":1753707421037,"y":21.678},{"x":1753707360871,"y":23.914},{"x":1753707300765,"y":43.004},{"x":1753707240632,"y":14.729},{"x":1753707180461,"y":28.498},{"x":1753707120462,"y":5.011},{"x":1753707062965,"y":6.907},{"x":1753707002827,"y":12.473},{"x":1753706942685,"y":6.425},{"x":1753706882549,"y":15.671},{"x":1753706822413,"y":14.381},{"x":1753706762263,"y":17.542},{"x":1753706702121,"y":18.91},{"x":1753706641973,"y":19.976},{"x":1753706581806,"y":13.324},{"x":1753706521664,"y":11.971},{"x":1753706461514,"y":11.687},{"x":1753706401353,"y":16.415},{"x":1753706341213,"y":12.932},{"x":1753706281063,"y":10.381},{"x":1753706220897,"y":8.676},{"x":1753706160762,"y":12.292},{"x":1753706100693,"y":11.622},{"x":1753706040450,"y":14.442},{"x":1753705980254,"y":12.961},{"x":1753705920117,"y":21.224},{"x":1753705862887,"y":25.416},{"x":1753705802723,"y":32.107},{"x":1753705742589,"y":31.814},{"x":1753705682407,"y":29.914},{"x":1753705622254,"y":35.092},{"x":1753705562110,"y":14.578},{"x":1753705501952,"y":12.215},{"x":1753705441805,"y":18.4},{"x":1753705381658,"y":14.353},{"x":1753705321521,"y":22.092},{"x":1753705261365,"y":12.65},{"x":1753705201230,"y":19.752},{"x":1753705141051,"y":38.38},{"x":1753705080881,"y":25.75},{"x":1753705020830,"y":28.318},{"x":1753704960564,"y":18.874},{"x":1753704900426,"y":15.241},{"x":1753704840311,"y":17.107},{"x":1753704782973,"y":16.169},{"x":1753704722836,"y":14.281},{"x":1753704662686,"y":13.037},{"x":1753704602536,"y":16.121},{"x":1753704542254,"y":23.309},{"x":1753704482085,"y":16.782},{"x":1753704421914,"y":18.496},{"x":1753704361780,"y":26.33},{"x":1753704301637,"y":32.537},{"x":1753704241469,"y":20.986},{"x":1753704181330,"y":14.117},{"x":1753704121199,"y":8.4},{"x":1753704061017,"y":11.015},{"x":1753704000974,"y":10.886},{"x":1753703940357,"y":10.337},{"x":1753703883029,"y":21.197},{"x":1753703822872,"y":14.246},{"x":1753703762720,"y":20.663},{"x":1753703702579,"y":25.93},{"x":1753703642298,"y":18.608},{"x":1753703582139,"y":11.462},{"x":1753703521989,"y":9.042},{"x":1753703461848,"y":29.969},{"x":1753703401703,"y":15.454},{"x":1753703341556,"y":40.097},{"x":1753703281413,"y":16.193},{"x":1753703221268,"y":53.996},{"x":1753703161133,"y":47.837},{"x":1753703100956,"y":26.34},{"x":1753703040766,"y":44.696},{"x":1753702980620,"y":22.421},{"x":1753702920498,"y":7.448},{"x":1753702860328,"y":18.548},{"x":1753702802917,"y":8.326},{"x":1753702742674,"y":22.439},{"x":1753702682531,"y":21.934},{"x":1753702622387,"y":15.068},{"x":1753702562239,"y":31.777},{"x":1753702502089,"y":12.072},{"x":1753702441934,"y":17.027},{"x":1753702381786,"y":7.464},{"x":1753702321609,"y":6.714},{"x":1753702261476,"y":7.469},{"x":1753702201375,"y":9.09},{"x":1753702141188,"y":11.144},{"x":1753702080950,"y":23.203},{"x":1753702020782,"y":28.188},{"x":1753701960646,"y":32.495},{"x":1753701900574,"y":12.056},{"x":1753701840508,"y":20.617},{"x":1753701782991,"y":23.636},{"x":1753701722843,"y":22.264},{"x":1753701662498,"y":42.324},{"x":1753701602352,"y":30.268},{"x":1753701542204,"y":20.107},{"x":1753701482059,"y":24.344},{"x":1753701421883,"y":40.292},{"x":1753701361742,"y":17.718},{"x":1753701301429,"y":34.356},{"x":1753701241295,"y":33.565},{"x":1753701181160,"y":24.593},{"x":1753701121008,"y":16.711},{"x":1753701060860,"y":17.041},{"x":1753701000800,"y":33.283},{"x":1753700940558,"y":32.964},{"x":1753700882973,"y":39.643},{"x":1753700822826,"y":20.168},{"x":1753700762690,"y":45.924},{"x":1753700702548,"y":32.171},{"x":1753700642402,"y":34.369},{"x":1753700582256,"y":20.376},{"x":1753700522114,"y":21.184},{"x":1753700461943,"y":18.576},{"x":1753700401749,"y":17.845},{"x":1753700341260,"y":17.096},{"x":1753700281117,"y":19.819},{"x":1753700220954,"y":30.761},{"x":1753700160799,"y":25.465},{"x":1753700100776,"y":30.89},{"x":1753700040353,"y":22.436},{"x":1753699980224,"y":18.468},{"x":1753699922885,"y":16.578},{"x":1753699862724,"y":16.764},{"x":1753699802576,"y":17.977},{"x":1753699742420,"y":15.557},{"x":1753699682278,"y":14.045},{"x":1753699622137,"y":17.003},{"x":1753699561974,"y":15.838},{"x":1753699501831,"y":30.223},{"x":1753699441691,"y":37.946},{"x":1753699381548,"y":22.158},{"x":1753699321400,"y":17.443},{"x":1753699261272,"y":33.413},{"x":1753699201111,"y":28.624},{"x":1753699140956,"y":42.899},{"x":1753699080773,"y":53.856},{"x":1753699020645,"y":53.096},{"x":1753698960599,"y":22.132},{"x":1753698900402,"y":32.863},{"x":1753698840150,"y":30.941},{"x":1753698782875,"y":25.424},{"x":1753698722711,"y":15.229},{"x":1753698662563,"y":6.146},{"x":1753698602412,"y":11.868},{"x":1753698542275,"y":16.262},{"x":1753698482116,"y":9.661},{"x":1753698421946,"y":12.389},{"x":1753698361794,"y":32.6},{"x":1753698301656,"y":31.672},{"x":1753698241511,"y":33.217},{"x":1753698181354,"y":25.322},{"x":1753698121211,"y":23.593},{"x":1753698061058,"y":20.178},{"x":1753698000939,"y":10.294},{"x":1753697940730,"y":10.346},{"x":1753697880591,"y":12.674},{"x":1753697820462,"y":27.784},{"x":1753697760367,"y":26.633},{"x":1753697702958,"y":13.499},{"x":1753697642790,"y":20.609},{"x":1753697582648,"y":46.829},{"x":1753697522492,"y":28.566},{"x":1753697462354,"y":23.012},{"x":1753697402196,"y":16.699},{"x":1753697341992,"y":8.867},{"x":1753697281850,"y":3.066},{"x":1753697221696,"y":20.287},{"x":1753697161550,"y":24.448},{"x":1753697101367,"y":44.711},{"x":1753697041229,"y":50.395},{"x":1753696981076,"y":54.277},{"x":1753696920913,"y":52.276},{"x":1753696860771,"y":47.302},{"x":1753696800890,"y":43.852},{"x":1753696740319,"y":33.025},{"x":1753696682943,"y":43.363},{"x":1753696622819,"y":42.264},{"x":1753696562668,"y":27.772},{"x":1753696502496,"y":28.878},{"x":1753696442125,"y":33.088},{"x":1753696381971,"y":29.254},{"x":1753696321831,"y":29.777},{"x":1753696261692,"y":31.811},{"x":1753696201510,"y":36.854},{"x":1753696141371,"y":45.73},{"x":1753696081221,"y":41.882},{"x":1753696021075,"y":38.792},{"x":1753695960919,"y":38.41},{"x":1753695900872,"y":32.888},{"x":1753695840607,"y":31.918},{"x":1753695780486,"y":32.344},{"x":1753695720314,"y":39.336},{"x":1753695663007,"y":45.494},{"x":1753695602861,"y":42.01},{"x":1753695542712,"y":45.506},{"x":1753695482554,"y":53.18},{"x":1753695422419,"y":49.826},{"x":1753695362282,"y":36.805},{"x":1753695302122,"y":42.497},{"x":1753695241957,"y":39.577},{"x":1753695181789,"y":38.24},{"x":1753695121654,"y":37.38},{"x":1753695061522,"y":37.588},{"x":1753695001410,"y":39.67},{"x":1753694941277,"y":38.861},{"x":1753694881088,"y":39.566},{"x":1753694820895,"y":43.067},{"x":1753694775790,"y":48.469},{"x":1753694701576,"y":44.356},{"x":1753694641432,"y":49.373},{"x":1753694581299,"y":49.873},{"x":1753694521148,"y":42.46},{"x":1753694460991,"y":39.504},{"x":1753694400887,"y":34.256},{"x":1753694340698,"y":44.126},{"x":1753694280573,"y":38.825},{"x":1753694220401,"y":37.484},{"x":1753694160256,"y":42.338},{"x":1753694102981,"y":44.947},{"x":1753694042839,"y":47.844},{"x":1753693982684,"y":35.908},{"x":1753693922523,"y":35.16},{"x":1753693862350,"y":45.926},{"x":1753693802204,"y":52.375},{"x":1753693742035,"y":55.913},{"x":1753693681882,"y":43.31},{"x":1753693621719,"y":45.362},{"x":1753693561563,"y":41.394},{"x":1753693501399,"y":45.527},{"x":1753693441251,"y":58.934},{"x":1753693381111,"y":49.999},{"x":1753693320948,"y":47.602},{"x":1753693260795,"y":45.985},{"x":1753693202949,"y":58.708},{"x":1753693142777,"y":44.735},{"x":1753693082644,"y":50.797},{"x":1753693022507,"y":50.621},{"x":1753692962356,"y":47.987},{"x":1753692902228,"y":42.386},{"x":1753692842062,"y":42.715},{"x":1753692781906,"y":45.402},{"x":1753692721759,"y":38.266},{"x":1753692661615,"y":39.749},{"x":1753692601363,"y":37.337},{"x":1753692541223,"y":40.882},{"x":1753692481072,"y":42.703},{"x":1753692420917,"y":35.435},{"x":1753692360756,"y":31.657},{"x":1753692300809,"y":35.878},{"x":1753692240523,"y":26.006},{"x":1753692180393,"y":27.124},{"x":1753692120191,"y":46.634},{"x":1753692062869,"y":35.608},{"x":1753692002719,"y":36.683},{"x":1753691942556,"y":40.92},{"x":1753691882404,"y":43.016},{"x":1753691822249,"y":36.876},{"x":1753691762108,"y":31.606},{"x":1753691701949,"y":35.773},{"x":1753691641788,"y":32.623},{"x":1753691581635,"y":31.933},{"x":1753691521495,"y":39.666},{"x":1753691461349,"y":34.987},{"x":1753691401263,"y":33.82},{"x":1753691341024,"y":38.257},{"x":1753691280857,"y":39.308},{"x":1753691220716,"y":39.914},{"x":1753691160574,"y":35.372},{"x":1753691100543,"y":34.088},{"x":1753691040306,"y":42.859},{"x":1753690982997,"y":43.262},{"x":1753690922857,"y":46.622},{"x":1753690862531,"y":42.176},{"x":1753690802362,"y":40.246},{"x":1753690742226,"y":34.482},{"x":1753690682027,"y":36.967},{"x":1753690621868,"y":55.927},{"x":1753690561504,"y":39.881},{"x":1753690501368,"y":38.012},{"x":1753690441233,"y":36.133},{"x":1753690381091,"y":37.058},{"x":1753690320935,"y":36.601},{"x":1753690260784,"y":41.129},{"x":1753690200755,"y":40.05},{"x":1753690140556,"y":40.393},{"x":1753690082902,"y":39.923},{"x":1753690022762,"y":59.704},{"x":1753689962617,"y":47.432},{"x":1753689902468,"y":46.585},{"x":1753689842319,"y":46.145},{"x":1753689782180,"y":46.115},{"x":1753689722021,"y":47.408},{"x":1753689661876,"y":45.107},{"x":1753689601849,"y":43.181},{"x":1753689541611,"y":42.06},{"x":1753689481461,"y":45.727},{"x":1753689421320,"y":46.124},{"x":1753689361163,"y":43.313},{"x":1753689301028,"y":53.396},{"x":1753689240856,"y":48.344},{"x":1753689180715,"y":50.102},{"x":1753689120680,"y":46.912},{"x":1753689060390,"y":45.101},{"x":1753689000257,"y":48.934},{"x":1753688942910,"y":48.822},{"x":1753688882764,"y":49.578},{"x":1753688822615,"y":49.198},{"x":1753688762468,"y":49.88},{"x":1753688702319,"y":49.403},{"x":1753688642157,"y":52.746},{"x":1753688581995,"y":48.686},{"x":1753688521848,"y":45.154},{"x":1753688461700,"y":42.959},{"x":1753688401566,"y":42.275},{"x":1753688341408,"y":45.878},{"x":1753688281266,"y":44.14},{"x":1753688221129,"y":45.323},{"x":1753688160975,"y":47.731},{"x":1753688100842,"y":45.064},{"x":1753688040672,"y":44.665},{"x":1753687980569,"y":49.795},{"x":1753687920399,"y":46.132},{"x":1753687860286,"y":43.757},{"x":1753687802956,"y":44.438},{"x":1753687742796,"y":42.866},{"x":1753687682621,"y":56.203},{"x":1753687622470,"y":55.112},{"x":1753687562317,"y":60.444},{"x":1753687502178,"y":69.68},{"x":1753687442035,"y":62.832},{"x":1753687381875,"y":57.146},{"x":1753687321728,"y":58.238},{"x":1753687261585,"y":54.152},{"x":1753687201454,"y":54.19},{"x":1753687141330,"y":55.775},{"x":1753687081170,"y":71.938},{"x":1753687021025,"y":61.525},{"x":1753686960864,"y":54.242},{"x":1753686900766,"y":73.727},{"x":1753686840517,"y":56.798},{"x":1753686780415,"y":52.279},{"x":1753686720159,"y":51.073},{"x":1753686662893,"y":49.183},{"x":1753686602737,"y":53.464},{"x":1753686542594,"y":56.028},{"x":1753686480744,"y":49.583},{"x":1753686420618,"y":51.833},{"x":1753686360488,"y":49.057},{"x":1753686300370,"y":48.845},{"x":1753686242988,"y":49.144},{"x":1753686182843,"y":50.317},{"x":1753686122710,"y":52.789},{"x":1753686062526,"y":48.53},{"x":1753686001933,"y":47.455},{"x":1753685941144,"y":53.37},{"x":1753685880976,"y":52.412},{"x":1753685820811,"y":49.77},{"x":1753685760747,"y":51.695},{"x":1753685700631,"y":54.427},{"x":1753685640413,"y":55.708},{"x":1753685580231,"y":58.087},{"x":1753685522901,"y":53.158},{"x":1753685462755,"y":54.082},{"x":1753685402610,"y":57.325},{"x":1753685342463,"y":52.646},{"x":1753685282314,"y":54.029},{"x":1753685222178,"y":48.942},{"x":1753685162026,"y":47.956},{"x":1753685101886,"y":52.698},{"x":1753685041712,"y":52.739},{"x":1753684981551,"y":56.995},{"x":1753684921417,"y":48.052},{"x":1753684861276,"y":48.0},{"x":1753684801136,"y":47.155},{"x":1753684740863,"y":49.271},{"x":1753684680726,"y":48.007},{"x":1753684620635,"y":47.687},{"x":1753684560506,"y":58.909},{"x":1753684500335,"y":46.282},{"x":1753684440127,"y":47.219},{"x":1753684382889,"y":47.692},{"x":1753684322746,"y":56.092},{"x":1753684262576,"y":54.388},{"x":1753684202399,"y":51.746},{"x":1753684142257,"y":53.888},{"x":1753684082097,"y":67.406},{"x":1753684021924,"y":47.396},{"x":1753683961771,"y":47.017},{"x":1753683901639,"y":49.331},{"x":1753683841499,"y":53.226},{"x":1753683781355,"y":44.539},{"x":1753683721223,"y":64.226},{"x":1753683661116,"y":48.088},{"x":1753683600990,"y":47.387},{"x":1753683540740,"y":49.109},{"x":1753683480616,"y":51.65},{"x":1753683420500,"y":48.271},{"x":1753683360368,"y":47.647},{"x":1753683302954,"y":56.394},{"x":1753683242811,"y":55.049},{"x":1753683182655,"y":54.107},{"x":1753683122514,"y":49.22},{"x":1753683062365,"y":47.291},{"x":1753683002226,"y":51.76},{"x":1753682942075,"y":51.864},{"x":1753682881926,"y":45.956},{"x":1753682821783,"y":39.263},{"x":1753682761652,"y":38.708},{"x":1753682701499,"y":39.702},{"x":1753682641350,"y":40.542},{"x":1753682581213,"y":39.24},{"x":1753682521075,"y":40.072},{"x":1753682460910,"y":39.817},{"x":1753682400469,"y":39.424},{"x":1753682340187,"y":40.367},{"x":1753682282928,"y":42.43},{"x":1753682222799,"y":49.178},{"x":1753682162656,"y":45.781},{"x":1753682102537,"y":45.884},{"x":1753682042161,"y":43.63},{"x":1753681982015,"y":43.886},{"x":1753681921866,"y":43.165},{"x":1753681861718,"y":42.067},{"x":1753681801299,"y":43.226},{"x":1753681741149,"y":40.188},{"x":1753681681003,"y":37.33},{"x":1753681620844,"y":36.94},{"x":1753681560707,"y":43.098},{"x":1753681500691,"y":37.358},{"x":1753681440466,"y":37.241},{"x":1753681380330,"y":37.516},{"x":1753681322988,"y":38.957},{"x":1753681262848,"y":43.972},{"x":1753681202705,"y":39.515},{"x":1753681142561,"y":45.248},{"x":1753681082413,"y":42.673},{"x":1753681022273,"y":39.773},{"x":1753680962131,"y":40.339},{"x":1753680901980,"y":38.352},{"x":1753680841866,"y":38.054},{"x":1753680781700,"y":38.446},{"x":1753680721561,"y":42.341},{"x":1753680661417,"y":42.146},{"x":1753680601342,"y":40.733},{"x":1753680541114,"y":40.642},{"x":1753680480961,"y":37.384},{"x":1753680420797,"y":38.261},{"x":1753680360652,"y":39.692},{"x":1753680300577,"y":43.412},{"x":1753680240440,"y":38.058},{"x":1753680180153,"y":39.53},{"x":1753680122882,"y":39.448},{"x":1753680062476,"y":39.908},{"x":1753680002352,"y":39.84},{"x":1753679942192,"y":41.78},{"x":1753679882052,"y":36.97},{"x":1753679821916,"y":36.187},{"x":1753679761728,"y":37.007},{"x":1753679701514,"y":36.769},{"x":1753679641336,"y":44.966},{"x":1753679581190,"y":28.212},{"x":1753679521033,"y":31.264},{"x":1753679460887,"y":33.122},{"x":1753679400768,"y":30.769},{"x":1753679340585,"y":45.334},{"x":1753679280286,"y":36.853},{"x":1753679222991,"y":36.512},{"x":1753679162843,"y":38.682},{"x":1753679102695,"y":36.464},{"x":1753679042536,"y":25.828},{"x":1753678982383,"y":25.59},{"x":1753678922236,"y":28.906},{"x":1753678862101,"y":32.141},{"x":1753678801290,"y":37.356},{"x":1753678740861,"y":38.526},{"x":1753678680730,"y":42.761},{"x":1753678620635,"y":34.783},{"x":1753678560549,"y":34.572},{"x":1753678500256,"y":29.538},{"x":1753678442976,"y":41.029},{"x":1753678382834,"y":32.57},{"x":1753678322689,"y":29.906},{"x":1753678262528,"y":34.642},{"x":1753678202388,"y":37.164},{"x":1753678142243,"y":33.396},{"x":1753678082114,"y":31.957},{"x":1753678021981,"y":34.286},{"x":1753677961842,"y":32.635},{"x":1753677901690,"y":32.521},{"x":1753677841548,"y":32.128},{"x":1753677781404,"y":30.696},{"x":1753677721264,"y":36.145},{"x":1753677661124,"y":30.911},{"x":1753677600955,"y":30.182},{"x":1753677540791,"y":32.786},{"x":1753677480646,"y":32.869},{"x":1753677420538,"y":36.026},{"x":1753677360472,"y":33.646},{"x":1753677300149,"y":33.726},{"x":1753677242972,"y":36.094},{"x":1753677182791,"y":34.381},{"x":1753677122649,"y":32.812},{"x":1753677062504,"y":33.22},{"x":1753677002362,"y":30.032},{"x":1753676942213,"y":28.628},{"x":1753676882019,"y":29.023},{"x":1753676821878,"y":29.702},{"x":1753676761705,"y":30.692},{"x":1753676701577,"y":34.512},{"x":1753676641442,"y":33.672},{"x":1753676581305,"y":31.654},{"x":1753676521178,"y":34.567},{"x":1753676461018,"y":38.294},{"x":1753676400893,"y":40.097},{"x":1753676340729,"y":33.544},{"x":1753676282926,"y":33.257},{"x":1753676221507,"y":34.739},{"x":1753676160591,"y":30.482},{"x":1753676100481,"y":29.855},{"x":1753676042978,"y":33.331},{"x":1753675982821,"y":35.924},{"x":1753675922673,"y":33.436},{"x":1753675862533,"y":36.745},{"x":1753675802390,"y":31.805},{"x":1753675742455,"y":37.076},{"x":1753675680610,"y":38.096},{"x":1753675620355,"y":33.151},{"x":1753675563022,"y":38.512},{"x":1753675502880,"y":40.468},{"x":1753675442166,"y":49.639},{"x":1753675382067,"y":44.923},{"x":1753675321872,"y":44.512},{"x":1753675261569,"y":39.247},{"x":1753675201736,"y":34.681},{"x":1753675141446,"y":41.31},{"x":1753675081304,"y":51.468},{"x":1753675021162,"y":45.796},{"x":1753674961016,"y":47.176},{"x":1753674900879,"y":42.223},{"x":1753674840717,"y":34.441},{"x":1753674780585,"y":40.384},{"x":1753674720493,"y":34.056},{"x":1753674660349,"y":34.157},{"x":1753674600213,"y":37.037},{"x":1753674542881,"y":33.77},{"x":1753674482673,"y":40.436},{"x":1753674422538,"y":33.641},{"x":1753674362389,"y":31.732},{"x":1753674302263,"y":30.715},{"x":1753674242122,"y":30.865},{"x":1753674181969,"y":36.413},{"x":1753674121828,"y":36.373},{"x":1753674061679,"y":35.261},{"x":1753674001541,"y":34.517},{"x":1753673941398,"y":31.721},{"x":1753673881259,"y":30.818},{"x":1753673821118,"y":33.7},{"x":1753673760952,"y":30.557},{"x":1753673700809,"y":30.815},{"x":1753673640668,"y":30.18},{"x":1753673580581,"y":31.948},{"x":1753673520390,"y":30.391},{"x":1753673463036,"y":32.07},{"x":1753673402869,"y":38.052},{"x":1753673342733,"y":36.674},{"x":1753673282476,"y":36.524},{"x":1753673222329,"y":37.88},{"x":1753673162158,"y":37.498},{"x":1753673102006,"y":35.146},{"x":1753673041857,"y":33.353},{"x":1753672981753,"y":30.977},{"x":1753672921563,"y":29.492},{"x":1753672861412,"y":34.267},{"x":1753672801281,"y":30.847},{"x":1753672741127,"y":32.689},{"x":1753672680960,"y":32.034},{"x":1753672620864,"y":37.536},{"x":1753672560656,"y":36.652},{"x":1753672500678,"y":34.025},{"x":1753672440355,"y":33.77},{"x":1753672382967,"y":32.53},{"x":1753672322811,"y":33.695},{"x":1753672262656,"y":30.695},{"x":1753672202518,"y":34.205},{"x":1753672140382,"y":34.584},{"x":1753672081254,"y":34.877},{"x":1753672021125,"y":40.655},{"x":1753671960947,"y":37.324},{"x":1753671900818,"y":36.917},{"x":1753671834606,"y":39.618},{"x":1753671828280,"y":33.437},{"x":1753671540331,"y":31.186},{"x":1753671482971,"y":31.67},{"x":1753671422806,"y":34.75},{"x":1753671362668,"y":35.525},{"x":1753671302497,"y":35.436},{"x":1753671242117,"y":34.981},{"x":1753671181979,"y":36.43},{"x":1753671121799,"y":31.313},{"x":1753671061661,"y":36.745},{"x":1753671001423,"y":38.056},{"x":1753670941273,"y":35.776},{"x":1753670881135,"y":35.285},{"x":1753670820968,"y":35.694},{"x":1753670760815,"y":40.044},{"x":1753670700730,"y":47.374},{"x":1753670640549,"y":43.932},{"x":1753670580434,"y":45.809},{"x":1753670523015,"y":43.39},{"x":1753670462844,"y":42.176},{"x":1753670402703,"y":31.776},{"x":1753670342559,"y":29.684},{"x":1753670282385,"y":34.717},{"x":1753670222241,"y":37.38},{"x":1753670162096,"y":43.478},{"x":1753670101944,"y":40.075},{"x":1753670041799,"y":37.519},{"x":1753669981655,"y":36.347},{"x":1753669921511,"y":36.079},{"x":1753669861378,"y":41.546},{"x":1753669801245,"y":34.217},{"x":1753669741065,"y":31.849},{"x":1753669680883,"y":30.866},{"x":1753669620727,"y":31.94},{"x":1753669560609,"y":33.743},{"x":1753669500508,"y":41.236},{"x":1753669440323,"y":35.148},{"x":1753669382954,"y":33.17},{"x":1753669322810,"y":33.175},{"x":1753669262467,"y":30.808},{"x":1753669202323,"y":36.302},{"x":1753669142184,"y":29.466},{"x":1753669082038,"y":29.814},{"x":1753669021889,"y":31.068},{"x":1753668961747,"y":32.92},{"x":1753668901415,"y":36.768},{"x":1753668841274,"y":30.192},{"x":1753668781152,"y":32.671},{"x":1753668720972,"y":33.276},{"x":1753668660830,"y":33.665},{"x":1753668600710,"y":33.169},{"x":1753668540582,"y":33.432},{"x":1753668480264,"y":39.404},{"x":1753668422892,"y":37.609},{"x":1753668362753,"y":35.604},{"x":1753668302617,"y":35.074},{"x":1753668242471,"y":34.392},{"x":1753668182320,"y":33.031},{"x":1753668122188,"y":34.337},{"x":1753668062054,"y":42.716},{"x":1753668002939,"y":42.787},{"x":1753667942775,"y":48.376},{"x":1753667882629,"y":43.26},{"x":1753667822489,"y":44.705},{"x":1753667762353,"y":34.193},{"x":1753667702209,"y":34.956},{"x":1753667642076,"y":38.928},{"x":1753667581920,"y":33.931},{"x":1753667521783,"y":33.299},{"x":1753667461647,"y":32.652},{"x":1753667401265,"y":30.383},{"x":1753667341111,"y":31.693},{"x":1753667280947,"y":35.268},{"x":1753667220807,"y":32.642},{"x":1753667160696,"y":34.04},{"x":1753667100583,"y":31.741},{"x":1753667040434,"y":33.167},{"x":1753666980201,"y":31.566},{"x":1753666923067,"y":31.174},{"x":1753666862832,"y":31.814},{"x":1753666802696,"y":30.316},{"x":1753666742583,"y":30.342},{"x":1753666682405,"y":33.102},{"x":1753666622255,"y":28.98},{"x":1753666562115,"y":30.359},{"x":1753666501945,"y":32.868},{"x":1753666441789,"y":37.858},{"x":1753666381643,"y":41.3},{"x":1753666321502,"y":36.474},{"x":1753666261355,"y":34.92},{"x":1753666201231,"y":30.654},{"x":1753666141055,"y":29.879},{"x":1753666080869,"y":34.202},{"x":1753666020713,"y":30.977},{"x":1753665960571,"y":31.519},{"x":1753665900496,"y":29.9},{"x":1753665840240,"y":34.722},{"x":1753665782997,"y":37.426},{"x":1753665722852,"y":37.994},{"x":1753665662467,"y":37.03},{"x":1753665602330,"y":33.632},{"x":1753665542166,"y":34.518},{"x":1753665482031,"y":32.236},{"x":1753665421868,"y":32.006},{"x":1753665361717,"y":30.534},{"x":1753665301540,"y":30.911},{"x":1753665241395,"y":32.216},{"x":1753665181256,"y":32.71},{"x":1753665121109,"y":33.917},{"x":1753665060950,"y":38.113},{"x":1753665000813,"y":38.562},{"x":1753664940648,"y":34.156},{"x":1753664880417,"y":33.221},{"x":1753664820210,"y":33.544},{"x":1753664762897,"y":43.622},{"x":1753664702761,"y":34.286},{"x":1753664642609,"y":38.788},{"x":1753664582485,"y":34.585},{"x":1753664522338,"y":36.424},{"x":1753664462203,"y":36.464},{"x":1753664400552,"y":34.271},{"x":1753664340287,"y":34.118},{"x":1753664282984,"y":33.494},{"x":1753664222838,"y":35.532},{"x":1753664162684,"y":36.752},{"x":1753664102524,"y":37.069},{"x":1753664042129,"y":36.022},{"x":1753663981978,"y":35.39},{"x":1753663921814,"y":33.511},{"x":1753663861668,"y":31.568},{"x":1753663801460,"y":32.682},{"x":1753663741299,"y":33.054},{"x":1753663681127,"y":30.706},{"x":1753663620970,"y":29.888},{"x":1753663560842,"y":30.269},{"x":1753663500845,"y":33.27},{"x":1753663440610,"y":32.374},{"x":1753663380347,"y":36.414},{"x":1753663320412,"y":39.152},{"x":1753663262952,"y":37.198},{"x":1753663202810,"y":39.085},{"x":1753663142659,"y":30.793},{"x":1753663082515,"y":30.181},{"x":1753663022350,"y":30.943},{"x":1753662962213,"y":32.194},{"x":1753662902031,"y":35.8},{"x":1753662841879,"y":32.005},{"x":1753662781736,"y":33.359},{"x":1753662721598,"y":32.686},{"x":1753662661455,"y":35.666},{"x":1753662601332,"y":35.227},{"x":1753662541163,"y":35.092},{"x":1753662480937,"y":34.123},{"x":1753662420791,"y":33.412},{"x":1753662360632,"y":32.812},{"x":1753662300578,"y":31.284},{"x":1753662240484,"y":32.984},{"x":1753662180323,"y":32.822},{"x":1753662122897,"y":33.832},{"x":1753662062520,"y":34.873},{"x":1753662002363,"y":33.378},{"x":1753661942202,"y":38.845},{"x":1753661882060,"y":41.612},{"x":1753661821911,"y":37.483},{"x":1753661761769,"y":32.647},{"x":1753661701484,"y":33.072},{"x":1753661641346,"y":37.486},{"x":1753661581204,"y":33.582},{"x":1753661521029,"y":34.288},{"x":1753661460914,"y":34.074},{"x":1753661400755,"y":30.829},{"x":1753661340594,"y":35.056},{"x":1753661280581,"y":32.18},{"x":1753661220270,"y":32.484},{"x":1753661162965,"y":40.838},{"x":1753661102817,"y":41.718},{"x":1753661042685,"y":39.828},{"x":1753660982522,"y":37.646},{"x":1753660922381,"y":35.836},{"x":1753660862251,"y":33.047},{"x":1753660800553,"y":32.887},{"x":1753660740277,"y":31.438},{"x":1753660682976,"y":32.074},{"x":1753660622830,"y":31.524},{"x":1753660562693,"y":32.144},{"x":1753660502548,"y":32.306},{"x":1753660442119,"y":30.917},{"x":1753660381962,"y":33.353},{"x":1753660321822,"y":38.87},{"x":1753660261677,"y":38.572},{"x":1753660201265,"y":38.464},{"x":1753660141124,"y":35.569},{"x":1753660080935,"y":40.997},{"x":1753660020822,"y":34.266},{"x":1753659960676,"y":34.098},{"x":1753659900639,"y":33.541},{"x":1753659840419,"y":35.753},{"x":1753659780247,"y":42.126},{"x":1753659722989,"y":40.54},{"x":1753659662854,"y":40.466},{"x":1753659602708,"y":41.867},{"x":1753659542545,"y":40.535},{"x":1753659482394,"y":41.741},{"x":1753659422258,"y":36.332},{"x":1753659362078,"y":33.646},{"x":1753659301927,"y":32.294},{"x":1753659241776,"y":32.412},{"x":1753659181635,"y":37.562},{"x":1753659121483,"y":35.858},{"x":1753659061356,"y":35.368},{"x":1753659001246,"y":35.304},{"x":1753658941039,"y":38.766},{"x":1753658880897,"y":35.788},{"x":1753658820746,"y":34.859},{"x":1753658760617,"y":37.115},{"x":1753658700533,"y":36.347},{"x":1753658640412,"y":33.329},{"x":1753658583015,"y":36.223},{"x":1753658522866,"y":39.328},{"x":1753658462446,"y":37.798},{"x":1753658402305,"y":36.979},{"x":1753658342160,"y":33.144},{"x":1753658282028,"y":45.102},{"x":1753658221874,"y":47.753},{"x":1753658161724,"y":42.684},{"x":1753658101559,"y":48.114},{"x":1753658041403,"y":47.837},{"x":1753657981249,"y":49.27},{"x":1753657921086,"y":57.004},{"x":1753657860927,"y":47.149},{"x":1753657800912,"y":49.717},{"x":1753657740629,"y":48.536},{"x":1753657682958,"y":43.985},{"x":1753657622825,"y":48.278},{"x":1753657562680,"y":45.793},{"x":1753657502527,"y":48.995},{"x":1753657442386,"y":46.594},{"x":1753657382220,"y":46.822},{"x":1753657322079,"y":52.901},{"x":1753657261933,"y":51.923},{"x":1753657200589,"y":51.55},{"x":1753657140301,"y":50.966},{"x":1753657082946,"y":49.009},{"x":1753657022800,"y":48.775},{"x":1753656962668,"y":50.608},{"x":1753656902514,"y":48.415},{"x":1753656842246,"y":47.449},{"x":1753656782101,"y":47.556},{"x":1753656721941,"y":48.708},{"x":1753656661800,"y":48.43},{"x":1753656601390,"y":57.134},{"x":1753656541250,"y":55.298},{"x":1753656481116,"y":54.346},{"x":1753656420958,"y":53.244},{"x":1753656360829,"y":52.805},{"x":1753656300823,"y":47.135},{"x":1753656240481,"y":49.193},{"x":1753656180374,"y":47.672},{"x":1753656120025,"y":47.518},{"x":1753656062877,"y":53.224},{"x":1753656002734,"y":47.303},{"x":1753655942589,"y":49.501},{"x":1753655882438,"y":48.882},{"x":1753655822290,"y":51.966},{"x":1753655762153,"y":58.506},{"x":1753655702014,"y":54.046},{"x":1753655641863,"y":53.39},{"x":1753655581715,"y":51.434},{"x":1753655521587,"y":49.687},{"x":1753655461444,"y":49.996},{"x":1753655401312,"y":48.414},{"x":1753655341174,"y":47.7},{"x":1753655280998,"y":46.848},{"x":1753655220854,"y":46.848},{"x":1753655160714,"y":48.335},{"x":1753655100622,"y":52.848},{"x":1753655040546,"y":49.716},{"x":1753654980180,"y":47.732},{"x":1753654922940,"y":48.376},{"x":1753654862528,"y":49.728},{"x":1753654802391,"y":51.304},{"x":1753654742233,"y":50.569},{"x":1753654682080,"y":50.77},{"x":1753654621930,"y":46.646},{"x":1753654561779,"y":46.582},{"x":1753654501512,"y":54.65},{"x":1753654441368,"y":47.242},{"x":1753654381231,"y":51.47},{"x":1753654321066,"y":54.809},{"x":1753654260902,"y":52.118},{"x":1753654200736,"y":54.922},{"x":1753654082912,"y":48.007},{"x":1753654022762,"y":47.262},{"x":1753653962624,"y":45.502},{"x":1753653902478,"y":48.296},{"x":1753653842325,"y":50.968},{"x":1753653782176,"y":46.18},{"x":1753653722024,"y":46.682},{"x":1753653661883,"y":49.222},{"x":1753653601087,"y":48.504},{"x":1753653540584,"y":53.275},{"x":1753653480479,"y":51.907},{"x":1753653420256,"y":51.15},{"x":1753653362937,"y":51.89},{"x":1753653302802,"y":52.538},{"x":1753653242645,"y":55.9},{"x":1753653182498,"y":50.453},{"x":1753653122353,"y":49.849},{"x":1753653062188,"y":52.298},{"x":1753653002046,"y":51.917},{"x":1753652941906,"y":57.703},{"x":1753652881744,"y":52.591},{"x":1753652821608,"y":50.898},{"x":1753652761469,"y":49.89},{"x":1753652701339,"y":51.589},{"x":1753652641193,"y":62.107},{"x":1753652581040,"y":61.442},{"x":1753652520879,"y":60.788},{"x":1753652460723,"y":66.954},{"x":1753652400720,"y":64.71},{"x":1753652340414,"y":48.839},{"x":1753652280220,"y":52.615},{"x":1753652222922,"y":47.088},{"x":1753652162781,"y":46.237},{"x":1753652102595,"y":51.031},{"x":1753652042453,"y":56.582},{"x":1753651982305,"y":58.456},{"x":1753651922168,"y":51.156},{"x":1753651862002,"y":50.399},{"x":1753651801855,"y":51.251},{"x":1753651741733,"y":51.791},{"x":1753651681567,"y":55.934},{"x":1753651621419,"y":51.575},{"x":1753651561284,"y":51.959},{"x":1753651501138,"y":49.835},{"x":1753651440990,"y":54.404},{"x":1753651380830,"y":54.688},{"x":1753651320708,"y":47.236},{"x":1753651260568,"y":50.534},{"x":1753651200483,"y":54.175},{"x":1753651140208,"y":53.867},{"x":1753651082850,"y":57.655},{"x":1753651022725,"y":53.656},{"x":1753650962403,"y":51.594},{"x":1753650902264,"y":51.277},{"x":1753650842130,"y":50.064},{"x":1753650781981,"y":55.902},{"x":1753650721834,"y":51.372},{"x":1753650661693,"y":53.17},{"x":1753650601546,"y":53.527},{"x":1753650541402,"y":54.618},{"x":1753650481264,"y":55.36},{"x":1753650421113,"y":50.43},{"x":1753650360960,"y":48.816},{"x":1753650300829,"y":47.998},{"x":1753650240748,"y":60.178},{"x":1753650180600,"y":63.473},{"x":1753650120451,"y":59.272},{"x":1753650060276,"y":61.747},{"x":1753650000952,"y":63.709},{"x":1753649940669,"y":49.934},{"x":1753649880553,"y":57.235},{"x":1753649820421,"y":52.417},{"x":1753649760341,"y":53.461},{"x":1753649700083,"y":53.749},{"x":1753649642868,"y":60.618},{"x":1753649582732,"y":63.514},{"x":1753649522580,"y":58.766},{"x":1753649462432,"y":62.454},{"x":1753649402283,"y":71.268},{"x":1753649342143,"y":66.078},{"x":1753649281984,"y":71.954},{"x":1753649221848,"y":67.708},{"x":1753649161711,"y":67.127},{"x":1753649101591,"y":62.995},{"x":1753649041450,"y":67.019},{"x":1753648981288,"y":66.166},{"x":1753648921117,"y":63.575},{"x":1753648860972,"y":70.206},{"x":1753648800865,"y":68.992},{"x":1753648740661,"y":70.172},{"x":1753648680555,"y":72.556},{"x":1753648620366,"y":66.595},{"x":1753648562951,"y":61.606},{"x":1753648502797,"y":62.831},{"x":1753648442647,"y":64.432},{"x":1753648382505,"y":66.251},{"x":1753648322359,"y":58.672},{"x":1753648262223,"y":59.538},{"x":1753648202081,"y":58.86},{"x":1753648141923,"y":57.761},{"x":1753648081679,"y":63.781},{"x":1753648021523,"y":59.472},{"x":1753647961377,"y":59.537},{"x":1753647901242,"y":60.397},{"x":1753647841088,"y":63.226},{"x":1753647780929,"y":63.888},{"x":1753647720762,"y":62.825},{"x":1753647660629,"y":62.82},{"x":1753647600587,"y":61.093},{"x":1753647540288,"y":64.598},{"x":1753647482998,"y":63.845},{"x":1753647422861,"y":72.962},{"x":1753647362712,"y":79.668},{"x":1753647302560,"y":79.439},{"x":1753647242432,"y":86.12},{"x":1753647182293,"y":79.955},{"x":1753647122149,"y":73.648},{"x":1753647061999,"y":81.847},{"x":1753647001855,"y":80.0},{"x":1753646941690,"y":79.547},{"x":1753646881482,"y":82.116},{"x":1753646821338,"y":82.3},{"x":1753646761208,"y":74.316},{"x":1753646701053,"y":84.324},{"x":1753646640863,"y":80.362},{"x":1753646580719,"y":68.314},{"x":1753646520565,"y":63.508},{"x":1753646460628,"y":65.984},{"x":1753646401628,"y":68.735},{"x":1753646341352,"y":72.799},{"x":1753646281223,"y":73.382},{"x":1753646221080,"y":74.046},{"x":1753646160933,"y":64.338},{"x":1753646100783,"y":54.002},{"x":1753646040648,"y":52.828},{"x":1753645980517,"y":52.441},{"x":1753645920376,"y":59.684},{"x":1753645860122,"y":64.116},{"x":1753645802921,"y":62.354},{"x":1753645742774,"y":63.178},{"x":1753645682637,"y":61.213},{"x":1753645622484,"y":69.324},{"x":1753645562349,"y":70.66},{"x":1753645502208,"y":52.735},{"x":1753645442063,"y":64.817},{"x":1753645381916,"y":65.148},{"x":1753645321775,"y":63.388},{"x":1753645261623,"y":76.43},{"x":1753645201489,"y":68.406},{"x":1753645141338,"y":57.731},{"x":1753645081202,"y":57.33},{"x":1753645021048,"y":55.697},{"x":1753644960869,"y":59.653},{"x":1753644900749,"y":74.009},{"x":1753644840606,"y":50.822},{"x":1753644780469,"y":46.898},{"x":1753644720261,"y":39.33},{"x":1753644662924,"y":52.003},{"x":1753644602783,"y":55.711},{"x":1753644542646,"y":59.946},{"x":1753644482479,"y":56.665},{"x":1753644422318,"y":78.271},{"x":1753644362177,"y":48.845},{"x":1753644302033,"y":43.098},{"x":1753644241884,"y":42.672},{"x":1753644181746,"y":41.036},{"x":1753644121613,"y":47.828},{"x":1753644061493,"y":47.052},{"x":1753644001346,"y":60.032},{"x":1753643941207,"y":58.427},{"x":1753643880973,"y":55.292},{"x":1753643820871,"y":51.097},{"x":1753643760725,"y":48.988},{"x":1753643700525,"y":40.439},{"x":1753643640273,"y":41.407},{"x":1753643582988,"y":47.812},{"x":1753643522847,"y":43.842},{"x":1753643462708,"y":44.722},{"x":1753643402568,"y":43.766},{"x":1753643342416,"y":48.294},{"x":1753643282271,"y":48.96},{"x":1753643222122,"y":47.248},{"x":1753643161964,"y":47.218},{"x":1753643101829,"y":42.529},{"x":1753643041693,"y":37.817},{"x":1753642981542,"y":44.111},{"x":1753642921394,"y":39.19},{"x":1753642861261,"y":38.062},{"x":1753642800664,"y":37.716},{"x":1753642740527,"y":44.2},{"x":1753642680319,"y":49.304},{"x":1753642623006,"y":48.799},{"x":1753642562859,"y":46.553},{"x":1753642502717,"y":44.75},{"x":1753642442569,"y":42.554},{"x":1753642382427,"y":46.519},{"x":1753642322290,"y":43.633},{"x":1753642262152,"y":43.087},{"x":1753642201984,"y":42.186},{"x":1753642141833,"y":45.642},{"x":1753642081692,"y":47.46},{"x":1753642021543,"y":46.726},{"x":1753641961410,"y":46.324},{"x":1753641901288,"y":54.497},{"x":1753641841090,"y":52.526},{"x":1753641780928,"y":50.257},{"x":1753641720799,"y":49.403},{"x":1753641660668,"y":49.859},{"x":1753641600619,"y":60.978},{"x":1753641540386,"y":67.26},{"x":1753641482982,"y":67.132},{"x":1753641422708,"y":74.197},{"x":1753641362565,"y":68.562},{"x":1753641302423,"y":64.658},{"x":1753641242277,"y":50.432},{"x":1753641182135,"y":50.83},{"x":1753641121990,"y":50.536},{"x":1753641061852,"y":47.396},{"x":1753641001728,"y":48.481},{"x":1753640941616,"y":44.711},{"x":1753640881378,"y":43.198},{"x":1753640821233,"y":50.423},{"x":1753640761102,"y":60.007},{"x":1753640700969,"y":71.316},{"x":1753640640823,"y":58.988},{"x":1753640580677,"y":54.876},{"x":1753640520275,"y":45.952},{"x":1753640462922,"y":41.416},{"x":1753640402780,"y":41.395},{"x":1753640342618,"y":46.078},{"x":1753640282472,"y":46.134},{"x":1753640222328,"y":53.218},{"x":1753640162177,"y":57.035},{"x":1753640102024,"y":57.379},{"x":1753640041859,"y":55.486},{"x":1753639981717,"y":39.935},{"x":1753639921577,"y":39.9},{"x":1753639861447,"y":38.185},{"x":1753639801315,"y":40.937},{"x":1753639741175,"y":41.038},{"x":1753639681020,"y":42.596},{"x":1753639620857,"y":50.502},{"x":1753639560710,"y":48.347},{"x":1753639500622,"y":48.382},{"x":1753639440435,"y":48.02},{"x":1753639380266,"y":50.442},{"x":1753639322984,"y":47.322},{"x":1753639262835,"y":39.92},{"x":1753639201632,"y":39.986},{"x":1753639141116,"y":57.628},{"x":1753639080963,"y":43.092},{"x":1753639020818,"y":43.736},{"x":1753638960750,"y":40.906},{"x":1753638900618,"y":42.649},{"x":1753638840404,"y":49.108},{"x":1753638780227,"y":55.777},{"x":1753638722937,"y":51.906},{"x":1753638662803,"y":43.036},{"x":1753638602644,"y":36.721},{"x":1753638542503,"y":41.819},{"x":1753638482357,"y":38.923},{"x":1753638422221,"y":43.319},{"x":1753638362083,"y":43.993},{"x":1753638301936,"y":44.662},{"x":1753638241792,"y":47.179},{"x":1753638181646,"y":42.763},{"x":1753638121518,"y":41.141},{"x":1753638061359,"y":54.559},{"x":1753638001223,"y":38.74},{"x":1753637941071,"y":42.57},{"x":1753637880908,"y":48.601},{"x":1753637820767,"y":58.866},{"x":1753637760796,"y":71.153},{"x":1753637700424,"y":75.715},{"x":1753637640274,"y":73.129},{"x":1753637582971,"y":70.536},{"x":1753637522815,"y":69.726},{"x":1753637462682,"y":57.625},{"x":1753637402492,"y":55.091},{"x":1753637342347,"y":79.13},{"x":1753637282189,"y":51.026},{"x":1753637221999,"y":45.86},{"x":1753637161858,"y":52.366},{"x":1753637101659,"y":48.524},{"x":1753637041505,"y":39.55},{"x":1753636981361,"y":53.044},{"x":1753636921207,"y":51.952},{"x":1753636861023,"y":60.32},{"x":1753636800917,"y":74.591},{"x":1753636740686,"y":52.903},{"x":1753636680553,"y":41.616},{"x":1753636620469,"y":52.118},{"x":1753636560268,"y":51.169},{"x":1753636502953,"y":51.12},{"x":1753636442808,"y":54.761},{"x":1753636382663,"y":67.19},{"x":1753636322517,"y":61.88},{"x":1753636262366,"y":43.814},{"x":1753636202223,"y":42.61},{"x":1753636142072,"y":51.251},{"x":1753636081898,"y":43.907},{"x":1753636021757,"y":43.42},{"x":1753635961583,"y":49.642},{"x":1753635901448,"y":45.686},{"x":1753635841325,"y":47.333},{"x":1753635781142,"y":49.526},{"x":1753635720984,"y":43.264},{"x":1753635660848,"y":44.522},{"x":1753635602095,"y":57.698},{"x":1753635541680,"y":57.256},{"x":1753635481539,"y":70.457},{"x":1753635421404,"y":69.572},{"x":1753635361254,"y":67.188},{"x":1753635301090,"y":69.607},{"x":1753635240906,"y":62.22},{"x":1753635180765,"y":50.438},{"x":1753635120692,"y":47.615},{"x":1753635060517,"y":45.817},{"x":1753635000328,"y":60.593},{"x":1753634942958,"y":64.81},{"x":1753634882757,"y":66.126},{"x":1753634822608,"y":70.027},{"x":1753634762467,"y":76.038},{"x":1753634702322,"y":50.741},{"x":1753634642208,"y":53.024},{"x":1753634581990,"y":45.33},{"x":1753634521849,"y":54.118},{"x":1753634461702,"y":51.904},{"x":1753634401562,"y":63.44},{"x":1753634341385,"y":62.346},{"x":1753634281244,"y":61.937},{"x":1753634221104,"y":59.542},{"x":1753634160950,"y":68.923},{"x":1753634100859,"y":42.697},{"x":1753634040642,"y":47.293},{"x":1753633980504,"y":47.725},{"x":1753633920441,"y":48.929},{"x":1753633860197,"y":48.373},{"x":1753633802911,"y":47.051},{"x":1753633742644,"y":45.463},{"x":1753633682426,"y":61.927},{"x":1753633622268,"y":56.08},{"x":1753633562125,"y":60.713},{"x":1753633501974,"y":64.894},{"x":1753633441831,"y":57.87},{"x":1753633381715,"y":42.194},{"x":1753633321549,"y":61.111},{"x":1753633261401,"y":45.482},{"x":1753633201280,"y":40.718},{"x":1753633141111,"y":54.535},{"x":1753633080959,"y":56.006},{"x":1753633020848,"y":51.802},{"x":1753632960712,"y":57.644},{"x":1753632900630,"y":62.903},{"x":1753632840314,"y":52.29},{"x":1753632782967,"y":55.162},{"x":1753632722822,"y":56.608},{"x":1753632662689,"y":49.524},{"x":1753632602538,"y":39.443},{"x":1753632542128,"y":54.992},{"x":1753632481956,"y":56.869},{"x":1753632421806,"y":58.181},{"x":1753632361664,"y":55.124},{"x":1753632301522,"y":65.839},{"x":1753632241375,"y":41.771},{"x":1753632181231,"y":40.205},{"x":1753632121077,"y":54.067},{"x":1753632060928,"y":51.386},{"x":1753632001734,"y":49.34},{"x":1753631941501,"y":53.942},{"x":1753631881359,"y":48.755},{"x":1753631821223,"y":46.897},{"x":1753631761058,"y":52.118},{"x":1753631700932,"y":53.473},{"x":1753631640724,"y":48.4},{"x":1753631580673,"y":48.947},{"x":1753631520483,"y":52.244},{"x":1753631460185,"y":35.65},{"x":1753631402970,"y":38.3},{"x":1753631342829,"y":46.249},{"x":1753631282707,"y":42.265},{"x":1753631222537,"y":39.178},{"x":1753631162388,"y":51.343},{"x":1753631102242,"y":58.045},{"x":1753631042096,"y":42.943},{"x":1753630981933,"y":47.578},{"x":1753630921780,"y":47.256},{"x":1753630861629,"y":50.359},{"x":1753630801500,"y":42.554},{"x":1753630741360,"y":43.723},{"x":1753630681192,"y":47.231},{"x":1753630621017,"y":48.337},{"x":1753630560883,"y":44.675},{"x":1753630500772,"y":36.124},{"x":1753630440577,"y":36.373},{"x":1753630380459,"y":44.312},{"x":1753630320243,"y":47.312},{"x":1753630262921,"y":47.129},{"x":1753630202774,"y":45.834},{"x":1753630142629,"y":54.646},{"x":1753630082469,"y":63.114},{"x":1753630022323,"y":74.844},{"x":1753629962178,"y":60.074},{"x":1753629902022,"y":55.826},{"x":1753629841869,"y":46.643},{"x":1753629781719,"y":46.037},{"x":1753629721577,"y":40.469},{"x":1753629661471,"y":42.168},{"x":1753629601286,"y":63.929},{"x":1753629541135,"y":46.631},{"x":1753629480977,"y":50.879},{"x":1753629420888,"y":56.465},{"x":1753629360651,"y":54.858},{"x":1753629300610,"y":52.052},{"x":1753629240375,"y":44.767},{"x":1753629180193,"y":41.893},{"x":1753629122914,"y":39.436},{"x":1753629062773,"y":48.574},{"x":1753629002637,"y":51.17},{"x":1753628942496,"y":41.964},{"x":1753628882328,"y":41.411},{"x":1753628822176,"y":40.211},{"x":1753628762035,"y":67.13},{"x":1753628701874,"y":46.637},{"x":1753628641724,"y":38.119},{"x":1753628581580,"y":53.728},{"x":1753628521425,"y":38.84},{"x":1753628461278,"y":46.115},{"x":1753628401018,"y":39.619},{"x":1753628340771,"y":37.826},{"x":1753628280647,"y":59.875},{"x":1753628220514,"y":55.954},{"x":1753628160457,"y":54.733},{"x":1753628100246,"y":53.1},{"x":1753628042936,"y":68.441},{"x":1753627982788,"y":52.867},{"x":1753627922645,"y":59.185},{"x":1753627862505,"y":69.106},{"x":1753627802350,"y":60.372},{"x":1753627742198,"y":70.104},{"x":1753627682051,"y":68.947},{"x":1753627621903,"y":78.335},{"x":1753627561742,"y":63.719},{"x":1753627501580,"y":65.444},{"x":1753627441422,"y":44.449},{"x":1753627381281,"y":41.405},{"x":1753627321133,"y":39.385},{"x":1753627260978,"y":40.422},{"x":1753627200868,"y":44.669},{"x":1753627140680,"y":45.796},{"x":1753627080607,"y":45.962},{"x":1753627020463,"y":47.904},{"x":1753626962882,"y":47.346},{"x":1753626902727,"y":42.323},{"x":1753626842576,"y":40.061},{"x":1753626782427,"y":40.675},{"x":1753626722287,"y":38.612},{"x":1753626662158,"y":41.723},{"x":1753626602022,"y":43.151},{"x":1753626541886,"y":42.11},{"x":1753626481672,"y":37.338},{"x":1753626421509,"y":38.806},{"x":1753626361365,"y":29.164},{"x":1753626301230,"y":28.271},{"x":1753626241080,"y":35.789},{"x":1753626180931,"y":34.999},{"x":1753626120774,"y":29.053},{"x":1753626060660,"y":50.498},{"x":1753626000469,"y":53.545},{"x":1753625940247,"y":56.825},{"x":1753625882991,"y":52.999},{"x":1753625822847,"y":57.682},{"x":1753625762493,"y":38.231},{"x":1753625702352,"y":38.988},{"x":1753625642208,"y":32.971},{"x":1753625582055,"y":26.843},{"x":1753625521901,"y":25.181},{"x":1753625461759,"y":28.668},{"x":1753625401618,"y":64.808},{"x":1753625341481,"y":65.796},{"x":1753625280539,"y":59.856},{"x":1753625220216,"y":65.011},{"x":1753625162919,"y":60.992},{"x":1753625102772,"y":48.697},{"x":1753625042622,"y":49.4},{"x":1753624982483,"y":49.379},{"x":1753624922334,"y":51.199},{"x":1753624862186,"y":49.481},{"x":1753624801880,"y":45.434},{"x":1753624741615,"y":37.76},{"x":1753624681468,"y":40.624},{"x":1753624621318,"y":37.466},{"x":1753624561189,"y":52.18},{"x":1753624501022,"y":44.368},{"x":1753624440861,"y":50.231},{"x":1753624380725,"y":45.228},{"x":1753624320643,"y":53.174},{"x":1753624260578,"y":37.152},{"x":1753624201731,"y":28.18},{"x":1753624141572,"y":38.46},{"x":1753624081424,"y":44.39},{"x":1753624021287,"y":43.666},{"x":1753623961152,"y":42.576},{"x":1753623901122,"y":37.052},{"x":1753623840792,"y":37.898},{"x":1753623780648,"y":31.196},{"x":1753623720587,"y":33.617},{"x":1753623660321,"y":52.9},{"x":1753623602965,"y":35.938},{"x":1753623542826,"y":39.523},{"x":1753623482689,"y":39.713},{"x":1753623422550,"y":39.898},{"x":1753623362400,"y":36.554},{"x":1753623302261,"y":32.744},{"x":1753623241986,"y":44.533},{"x":1753623181840,"y":44.178},{"x":1753623121694,"y":67.795},{"x":1753623061542,"y":55.033},{"x":1753623001382,"y":55.361},{"x":1753622941182,"y":42.752},{"x":1753622881031,"y":48.33},{"x":1753622820851,"y":30.994},{"x":1753622760723,"y":27.804},{"x":1753622700601,"y":36.806},{"x":1753622640510,"y":39.905},{"x":1753622580235,"y":42.108},{"x":1753622522882,"y":56.434},{"x":1753622462456,"y":55.088},{"x":1753622402298,"y":31.673},{"x":1753622342154,"y":43.967},{"x":1753622282025,"y":28.886},{"x":1753622221855,"y":31.842},{"x":1753622161719,"y":39.857},{"x":1753622101434,"y":43.633},{"x":1753622041317,"y":41.705},{"x":1753621981159,"y":39.641},{"x":1753621921012,"y":40.276},{"x":1753621860862,"y":36.236},{"x":1753621800775,"y":38.058},{"x":1753621740565,"y":30.127},{"x":1753621682802,"y":30.139},{"x":1753621622666,"y":21.686},{"x":1753621562520,"y":21.049},{"x":1753621502371,"y":28.948},{"x":1753621442238,"y":47.549},{"x":1753621382098,"y":64.711},{"x":1753621321925,"y":81.104},{"x":1753621261792,"y":63.824},{"x":1753621200825,"y":61.07},{"x":1753621140283,"y":54.382},{"x":1753621082955,"y":27.78},{"x":1753621022820,"y":33.097},{"x":1753620962679,"y":32.501},{"x":1753620902535,"y":32.867},{"x":1753620842166,"y":38.328},{"x":1753620782020,"y":30.755},{"x":1753620721874,"y":33.935},{"x":1753620661723,"y":37.861},{"x":1753620601458,"y":40.068},{"x":1753620541307,"y":39.692},{"x":1753620481172,"y":52.228},{"x":1753620421021,"y":56.384},{"x":1753620360875,"y":57.434},{"x":1753620300850,"y":68.85},{"x":1753620240626,"y":60.996},{"x":1753620180559,"y":58.537},{"x":1753620062952,"y":38.167},{"x":1753620002817,"y":44.35},{"x":1753619942674,"y":41.455},{"x":1753619882529,"y":43.836},{"x":1753619822383,"y":37.745},{"x":1753619762244,"y":33.511},{"x":1753619702099,"y":21.871},{"x":1753619641933,"y":31.04},{"x":1753619581789,"y":34.232},{"x":1753619521648,"y":41.231},{"x":1753619461508,"y":50.472},{"x":1753619401395,"y":34.774},{"x":1753619341228,"y":27.96},{"x":1753619281019,"y":20.344},{"x":1753619220868,"y":22.41},{"x":1753619160622,"y":30.662},{"x":1753619100530,"y":29.227},{"x":1753619040383,"y":31.152},{"x":1753618982994,"y":25.58},{"x":1753618922845,"y":23.542},{"x":1753618862444,"y":35.777},{"x":1753618802297,"y":35.039},{"x":1753618742155,"y":22.675},{"x":1753618682008,"y":27.402},{"x":1753618621865,"y":30.39},{"x":1753618561720,"y":33.972},{"x":1753618501506,"y":46.277},{"x":1753618441355,"y":46.462},{"x":1753618381227,"y":45.875},{"x":1753618321077,"y":48.871},{"x":1753618260912,"y":36.508},{"x":1753618200838,"y":42.787},{"x":1753618140609,"y":28.092},{"x":1753618080443,"y":31.88},{"x":1753618023025,"y":36.818},{"x":1753617962875,"y":36.252},{"x":1753617902740,"y":34.046},{"x":1753617842586,"y":37.12},{"x":1753617782440,"y":38.132},{"x":1753617722299,"y":35.09},{"x":1753617662163,"y":46.457},{"x":1753617602743,"y":49.895},{"x":1753617541069,"y":45.995},{"x":1753617480914,"y":46.476},{"x":1753617420774,"y":44.741},{"x":1753617360727,"y":24.766},{"x":1753617300385,"y":32.024},{"x":1753617243012,"y":34.895},{"x":1753617182869,"y":36.989},{"x":1753617122725,"y":39.145},{"x":1753617062584,"y":46.25},{"x":1753617002438,"y":45.35},{"x":1753616942293,"y":45.072},{"x":1753616882150,"y":33.911},{"x":1753616821985,"y":44.014},{"x":1753616761839,"y":33.21},{"x":1753616701697,"y":37.931},{"x":1753616641559,"y":32.544},{"x":1753616581406,"y":28.488},{"x":1753616521259,"y":31.247},{"x":1753616461103,"y":44.723},{"x":1753616400982,"y":57.24},{"x":1753616340767,"y":57.672},{"x":1753616280640,"y":55.603},{"x":1753616220487,"y":46.163},{"x":1753616160443,"y":45.956},{"x":1753616102996,"y":22.903},{"x":1753616042850,"y":36.473},{"x":1753615982712,"y":38.233},{"x":1753615922562,"y":39.646},{"x":1753615862414,"y":44.483},{"x":1753615802267,"y":43.597},{"x":1753615742126,"y":30.995},{"x":1753615681922,"y":17.238},{"x":1753615621767,"y":30.992},{"x":1753615561631,"y":30.162},{"x":1753615501501,"y":25.789},{"x":1753615441367,"y":29.659},{"x":1753615381233,"y":28.931},{"x":1753615321072,"y":42.22},{"x":1753615260920,"y":11.371},{"x":1753615200786,"y":15.823},{"x":1753615140625,"y":11.244},{"x":1753615080514,"y":29.123},{"x":1753615020346,"y":23.958},{"x":1753614963027,"y":22.982},{"x":1753614902843,"y":31.454},{"x":1753614842691,"y":44.792},{"x":1753614782541,"y":41.268},{"x":1753614722402,"y":43.415},{"x":1753614662253,"y":55.89},{"x":1753614602113,"y":30.66},{"x":1753614541955,"y":33.594},{"x":1753614481817,"y":31.1},{"x":1753614421672,"y":31.192},{"x":1753614361543,"y":25.345},{"x":1753614301417,"y":17.982},{"x":1753614241279,"y":24.072},{"x":1753614181136,"y":25.644},{"x":1753614120958,"y":62.886},{"x":1753614060834,"y":46.136},{"x":1753614000821,"y":32.03},{"x":1753613940205,"y":41.053},{"x":1753613882988,"y":24.776},{"x":1753613822827,"y":15.544},{"x":1753613762697,"y":26.767},{"x":1753613702559,"y":29.304},{"x":1753613642413,"y":35.766},{"x":1753613582279,"y":40.027},{"x":1753613522134,"y":36.576},{"x":1753613461977,"y":31.198},{"x":1753613401838,"y":48.922},{"x":1753613341697,"y":48.635},{"x":1753613281563,"y":43.504},{"x":1753613221424,"y":30.272},{"x":1753613161321,"y":28.278},{"x":1753613101180,"y":16.895},{"x":1753613040957,"y":23.479},{"x":1753612980806,"y":26.694},{"x":1753612920676,"y":42.702},{"x":1753612860549,"y":41.382},{"x":1753612800417,"y":41.918},{"x":1753612740290,"y":40.692},{"x":1753612682993,"y":31.865},{"x":1753612622733,"y":50.432},{"x":1753612562595,"y":41.668},{"x":1753612502452,"y":41.071},{"x":1753612442290,"y":34.022},{"x":1753612382137,"y":46.741},{"x":1753612321987,"y":51.599},{"x":1753612261841,"y":34.253},{"x":1753612201472,"y":33.511},{"x":1753612141217,"y":40.733},{"x":1753612081009,"y":36.388},{"x":1753612020857,"y":38.033},{"x":1753611960736,"y":38.074},{"x":1753611900612,"y":45.785},{"x":1753611840458,"y":44.658},{"x":1753611780331,"y":29.677},{"x":1753611722984,"y":33.882},{"x":1753611662656,"y":36.73},{"x":1753611602511,"y":48.378},{"x":1753611542368,"y":54.509},{"x":1753611482232,"y":56.838},{"x":1753611422079,"y":57.884},{"x":1753611361931,"y":67.921},{"x":1753611301791,"y":42.089},{"x":1753611241655,"y":32.754},{"x":1753611181510,"y":44.54},{"x":1753611121342,"y":38.764},{"x":1753611061202,"y":34.13},{"x":1753611001058,"y":41.341},{"x":1753610940870,"y":62.297},{"x":1753610882856,"y":58.216},{"x":1753610822718,"y":56.615},{"x":1753610762576,"y":66.182},{"x":1753610702408,"y":42.523},{"x":1753610642263,"y":28.454},{"x":1753610582117,"y":42.322},{"x":1753610521964,"y":43.418},{"x":1753610461821,"y":41.276},{"x":1753610400503,"y":53.093},{"x":1753610340431,"y":43.75},{"x":1753610282943,"y":44.896},{"x":1753610222816,"y":41.544},{"x":1753610162662,"y":43.234},{"x":1753610102521,"y":22.162},{"x":1753610042154,"y":17.894},{"x":1753609981981,"y":18.27},{"x":1753609921845,"y":25.583},{"x":1753609861680,"y":27.526},{"x":1753609801292,"y":54.064},{"x":1753609741153,"y":42.871},{"x":1753609681008,"y":39.108},{"x":1753609621050,"y":48.71},{"x":1753609560763,"y":44.101},{"x":1753609501070,"y":36.216},{"x":1753609440573,"y":43.223},{"x":1753609380199,"y":28.822},{"x":1753609322960,"y":18.383},{"x":1753609262814,"y":23.706},{"x":1753609202667,"y":26.298},{"x":1753609142501,"y":22.277},{"x":1753609082363,"y":22.1},{"x":1753609022210,"y":23.724},{"x":1753608962071,"y":27.584},{"x":1753608901920,"y":32.204},{"x":1753608841769,"y":49.266},{"x":1753608781631,"y":62.4},{"x":1753608721498,"y":69.571},{"x":1753608661366,"y":55.394},{"x":1753608601246,"y":50.381},{"x":1753608540945,"y":66.608},{"x":1753608480799,"y":31.548},{"x":1753608420662,"y":30.974},{"x":1753608375522,"y":28.375},{"x":1753608300677,"y":28.016},{"x":1753608240403,"y":36.103},{"x":1753608180103,"y":58.934},{"x":1753608122884,"y":60.137},{"x":1753608062491,"y":66.502},{"x":1753608002334,"y":61.808},{"x":1753607942198,"y":64.544},{"x":1753607882055,"y":67.674},{"x":1753607821901,"y":36.342},{"x":1753607761742,"y":39.594},{"x":1753607701523,"y":33.205},{"x":1753607641372,"y":35.449},{"x":1753607581225,"y":30.412},{"x":1753607521077,"y":34.651},{"x":1753607460926,"y":49.92},{"x":1753607400833,"y":40.975},{"x":1753607340592,"y":44.604},{"x":1753607282778,"y":44.618},{"x":1753607222643,"y":29.506},{"x":1753607162502,"y":34.546},{"x":1753607102361,"y":34.702},{"x":1753607042198,"y":39.017},{"x":1753606982055,"y":33.541},{"x":1753606921891,"y":40.618},{"x":1753606861740,"y":35.225},{"x":1753606802948,"y":49.577},{"x":1753606742766,"y":40.082},{"x":1753606682618,"y":41.426},{"x":1753606622466,"y":44.68},{"x":1753606562312,"y":51.757},{"x":1753606502167,"y":40.777},{"x":1753606441986,"y":38.836},{"x":1753606381869,"y":44.735},{"x":1753606321713,"y":37.476},{"x":1753606261560,"y":37.43},{"x":1753606201428,"y":47.921},{"x":1753606141278,"y":43.334},{"x":1753606081131,"y":38.159},{"x":1753606020959,"y":39.469},{"x":1753605960812,"y":38.548},{"x":1753605900746,"y":40.224},{"x":1753605840575,"y":38.977},{"x":1753605780388,"y":40.22},{"x":1753605720307,"y":37.708},{"x":1753605662925,"y":56.836},{"x":1753605602778,"y":60.115},{"x":1753605542626,"y":73.796},{"x":1753605482475,"y":71.954},{"x":1753605422323,"y":74.908},{"x":1753605362179,"y":63.289},{"x":1753605302032,"y":59.174},{"x":1753605241883,"y":52.626},{"x":1753605181745,"y":44.454},{"x":1753605121606,"y":52.315},{"x":1753605061465,"y":48.5},{"x":1753605001340,"y":54.256},{"x":1753604941164,"y":57.419},{"x":1753604880962,"y":71.855},{"x":1753604820814,"y":86.756},{"x":1753604760667,"y":76.364},{"x":1753604700623,"y":81.288},{"x":1753604640404,"y":67.398},{"x":1753604580332,"y":59.498},{"x":1753604522892,"y":59.638},{"x":1753604462680,"y":73.552},{"x":1753604402532,"y":65.015},{"x":1753604342378,"y":80.621},{"x":1753604282229,"y":62.467},{"x":1753604222084,"y":60.136},{"x":1753604161899,"y":44.91},{"x":1753604101750,"y":51.386},{"x":1753604041610,"y":49.703},{"x":1753603981466,"y":47.194},{"x":1753603921334,"y":48.3},{"x":1753603861182,"y":48.998},{"x":1753603801091,"y":55.315},{"x":1753603740854,"y":55.277},{"x":1753603680719,"y":56.552},{"x":1753603620567,"y":56.696},{"x":1753603560449,"y":55.717},{"x":1753603500320,"y":45.508},{"x":1753603442954,"y":43.538},{"x":1753603382817,"y":41.657},{"x":1753603322672,"y":40.162},{"x":1753603262534,"y":57.378},{"x":1753603200488,"y":57.826},{"x":1753603140357,"y":59.473},{"x":1753603082947,"y":69.248},{"x":1753603022822,"y":68.184},{"x":1753602962651,"y":67.35},{"x":1753602902493,"y":66.368},{"x":1753602842128,"y":76.805},{"x":1753602781974,"y":67.483},{"x":1753602721832,"y":62.828},{"x":1753602661682,"y":65.23},{"x":1753602601412,"y":63.03},{"x":1753602541259,"y":49.751},{"x":1753602481121,"y":52.85},{"x":1753602420967,"y":54.408},{"x":1753602360821,"y":55.834},{"x":1753602300855,"y":52.592},{"x":1753602240439,"y":59.446},{"x":1753602180224,"y":42.364},{"x":1753602122944,"y":61.534},{"x":1753602062816,"y":76.927},{"x":1753602002652,"y":79.192},{"x":1753601942495,"y":75.126},{"x":1753601882344,"y":89.318},{"x":1753601822201,"y":62.922},{"x":1753601762054,"y":46.974},{"x":1753601701907,"y":45.623},{"x":1753601641746,"y":48.486},{"x":1753601581594,"y":47.515},{"x":1753601521464,"y":47.104},{"x":1753601461311,"y":43.5},{"x":1753601401239,"y":44.485},{"x":1753601341007,"y":45.476},{"x":1753601280850,"y":46.016},{"x":1753601220705,"y":49.606},{"x":1753601160589,"y":50.201},{"x":1753601100454,"y":51.409},{"x":1753601040264,"y":53.936},{"x":1753600982970,"y":53.292},{"x":1753600922826,"y":50.016},{"x":1753600862508,"y":44.849},{"x":1753600802349,"y":57.946},{"x":1753600742212,"y":50.972},{"x":1753600682033,"y":57.54},{"x":1753600621888,"y":51.877},{"x":1753600561727,"y":57.661},{"x":1753600501578,"y":58.508},{"x":1753600441439,"y":64.589},{"x":1753600381295,"y":59.358},{"x":1753600321159,"y":57.904},{"x":1753600260997,"y":67.084},{"x":1753600200968,"y":76.232},{"x":1753600140661,"y":66.881},{"x":1753600082828,"y":67.272},{"x":1753600022598,"y":68.67},{"x":1753599962445,"y":53.64},{"x":1753599902309,"y":45.149},{"x":1753599842165,"y":50.1},{"x":1753599782021,"y":46.964},{"x":1753599721868,"y":42.803},{"x":1753599661724,"y":40.31},{"x":1753599601647,"y":43.41},{"x":1753599541448,"y":43.316},{"x":1753599481310,"y":48.793},{"x":1753599421157,"y":53.879},{"x":1753599360999,"y":48.522},{"x":1753599300856,"y":46.633},{"x":1753599240704,"y":41.696},{"x":1753599180563,"y":39.989},{"x":1753599120531,"y":40.564},{"x":1753599060336,"y":39.233},{"x":1753599003027,"y":38.161},{"x":1753598942868,"y":39.649},{"x":1753598882743,"y":42.868},{"x":1753598822569,"y":42.174},{"x":1753598762419,"y":55.15},{"x":1753598702270,"y":70.546},{"x":1753598642119,"y":76.817},{"x":1753598581960,"y":71.944},{"x":1753598521820,"y":70.579},{"x":1753598461683,"y":50.117},{"x":1753598401546,"y":44.824},{"x":1753598341361,"y":59.19},{"x":1753598281255,"y":59.123},{"x":1753598221104,"y":57.492},{"x":1753598160943,"y":55.609},{"x":1753598100883,"y":56.748},{"x":1753598040672,"y":44.258},{"x":1753597980719,"y":46.268},{"x":1753597920330,"y":48.366},{"x":1753597862970,"y":48.227},{"x":1753597802828,"y":47.378},{"x":1753597742726,"y":43.732},{"x":1753597682511,"y":54.776},{"x":1753597622379,"y":53.753},{"x":1753597562236,"y":54.57},{"x":1753597502087,"y":53.521},{"x":1753597441959,"y":67.7},{"x":1753597381818,"y":66.362},{"x":1753597321672,"y":54.05},{"x":1753597261512,"y":64.301},{"x":1753597201372,"y":47.346},{"x":1753597141233,"y":43.441},{"x":1753597081090,"y":42.284},{"x":1753597020936,"y":56.218},{"x":1753596960779,"y":57.472},{"x":1753596900650,"y":42.442},{"x":1753596840588,"y":54.694},{"x":1753596780320,"y":66.556},{"x":1753596722928,"y":80.339},{"x":1753596662786,"y":68.036},{"x":1753596602639,"y":88.216},{"x":1753596542492,"y":82.492},{"x":1753596482352,"y":84.846},{"x":1753596422204,"y":68.165},{"x":1753596362056,"y":69.042},{"x":1753596301876,"y":65.886},{"x":1753596241721,"y":62.338},{"x":1753596181577,"y":79.948},{"x":1753596121430,"y":77.662},{"x":1753596061302,"y":80.238},{"x":1753596001811,"y":72.174},{"x":1753595941374,"y":71.682},{"x":1753595881144,"y":59.137},{"x":1753595820980,"y":56.612},{"x":1753595760831,"y":59.394},{"x":1753595700701,"y":36.664},{"x":1753595640572,"y":39.076},{"x":1753595580445,"y":38.213},{"x":1753595520340,"y":42.7},{"x":1753595462947,"y":42.472},{"x":1753595402800,"y":45.016},{"x":1753595342667,"y":53.587},{"x":1753595282510,"y":48.923},{"x":1753595222367,"y":60.218},{"x":1753595162222,"y":59.987},{"x":1753595102078,"y":58.217},{"x":1753595041928,"y":53.832},{"x":1753594981785,"y":39.682},{"x":1753594921634,"y":32.429},{"x":1753594861500,"y":34.58},{"x":1753594801364,"y":34.962},{"x":1753594741224,"y":34.481},{"x":1753594681079,"y":36.746},{"x":1753594620917,"y":35.693},{"x":1753594560781,"y":38.494},{"x":1753594500671,"y":34.772},{"x":1753594440530,"y":44.353},{"x":1753594380380,"y":47.472},{"x":1753594323033,"y":48.054},{"x":1753594262854,"y":49.811},{"x":1753594202695,"y":46.822},{"x":1753594142551,"y":40.447},{"x":1753594082393,"y":37.872},{"x":1753594022243,"y":36.87},{"x":1753593962109,"y":38.45},{"x":1753593901966,"y":38.824},{"x":1753593841811,"y":42.313},{"x":1753593781674,"y":57.485},{"x":1753593721538,"y":68.226},{"x":1753593661384,"y":55.23},{"x":1753593601254,"y":58.007},{"x":1753593541102,"y":49.637},{"x":1753593480939,"y":39.325},{"x":1753593420838,"y":40.823},{"x":1753593360666,"y":39.155},{"x":1753593300557,"y":38.195},{"x":1753593240365,"y":40.865},{"x":1753593180242,"y":40.126},{"x":1753593122966,"y":34.456},{"x":1753593062807,"y":34.823},{"x":1753593002653,"y":36.847},{"x":1753592942514,"y":41.74},{"x":1753592882362,"y":45.391},{"x":1753592822228,"y":41.917},{"x":1753592762065,"y":38.88},{"x":1753592701899,"y":38.621},{"x":1753592641743,"y":36.272},{"x":1753592581619,"y":35.798},{"x":1753592521474,"y":36.352},{"x":1753592461349,"y":35.743},{"x":1753592401358,"y":36.055},{"x":1753592341006,"y":33.842},{"x":1753592280867,"y":38.209},{"x":1753592220755,"y":40.597},{"x":1753592160627,"y":37.21},{"x":1753592100463,"y":37.628},{"x":1753592040247,"y":53.059},{"x":1753591982994,"y":48.402},{"x":1753591922854,"y":61.54},{"x":1753591862704,"y":60.773},{"x":1753591802545,"y":60.983},{"x":1753591742392,"y":46.22},{"x":1753591682240,"y":46.326},{"x":1753591622101,"y":39.548},{"x":1753591561951,"y":39.246},{"x":1753591501813,"y":37.351},{"x":1753591441658,"y":36.865},{"x":1753591381520,"y":35.828},{"x":1753591321382,"y":34.754},{"x":1753591261239,"y":40.29},{"x":1753591201187,"y":41.255},{"x":1753591140899,"y":40.514},{"x":1753591080759,"y":40.234},{"x":1753591020632,"y":40.29},{"x":1753590960546,"y":44.036},{"x":1753590900401,"y":36.306},{"x":1753590840395,"y":37.453},{"x":1753590782919,"y":42.882},{"x":1753590722793,"y":41.647},{"x":1753590662632,"y":43.603},{"x":1753590602496,"y":39.634},{"x":1753590542334,"y":36.131},{"x":1753590482170,"y":35.696},{"x":1753590422007,"y":34.541},{"x":1753590361867,"y":37.727},{"x":1753590301746,"y":40.055},{"x":1753590241585,"y":35.515},{"x":1753590181437,"y":44.278},{"x":1753590121300,"y":44.503},{"x":1753590061164,"y":42.169},{"x":1753590001066,"y":49.721},{"x":1753589940815,"y":44.243},{"x":1753589882769,"y":37.048},{"x":1753589821437,"y":38.801},{"x":1753589760325,"y":38.382},{"x":1753589702920,"y":39.583},{"x":1753589642765,"y":43.946},{"x":1753589582612,"y":42.388},{"x":1753589522467,"y":40.744},{"x":1753589462322,"y":41.117},{"x":1753589402173,"y":38.66},{"x":1753589342665,"y":45.924},{"x":1753589281160,"y":40.559},{"x":1753589220884,"y":42.149},{"x":1753589160749,"y":42.268},{"x":1753589100643,"y":39.442},{"x":1753589040405,"y":49.757},{"x":1753588982626,"y":38.116},{"x":1753588922452,"y":39.972},{"x":1753588862301,"y":35.886},{"x":1753588801858,"y":35.482},{"x":1753588741439,"y":51.172},{"x":1753588681289,"y":38.546},{"x":1753588621141,"y":40.769},{"x":1753588560980,"y":41.059},{"x":1753588500857,"y":47.941},{"x":1753588440689,"y":33.409},{"x":1753588380608,"y":37.699},{"x":1753588320536,"y":32.495},{"x":1753588260248,"y":33.922},{"x":1753588202964,"y":34.283},{"x":1753588142817,"y":36.685},{"x":1753588082590,"y":47.557},{"x":1753588022448,"y":44.677},{"x":1753587962312,"y":44.056},{"x":1753587902201,"y":45.624},{"x":1753587842026,"y":45.192},{"x":1753587781863,"y":45.733},{"x":1753587721723,"y":45.784},{"x":1753587661587,"y":48.413},{"x":1753587601443,"y":47.358},{"x":1753587541305,"y":46.402},{"x":1753587481164,"y":44.479},{"x":1753587421015,"y":53.695},{"x":1753587360864,"y":46.306},{"x":1753587300747,"y":46.871},{"x":1753587240599,"y":45.691},{"x":1753587180526,"y":45.247},{"x":1753587120271,"y":58.668},{"x":1753587062963,"y":54.577},{"x":1753587002823,"y":55.12},{"x":1753586942666,"y":57.131},{"x":1753586882496,"y":55.783},{"x":1753586822346,"y":44.843},{"x":1753586762084,"y":43.822},{"x":1753586701921,"y":40.492},{"x":1753586641775,"y":42.451},{"x":1753586581633,"y":42.091},{"x":1753586521493,"y":42.776},{"x":1753586461360,"y":46.147},{"x":1753586401227,"y":45.199},{"x":1753586341028,"y":45.737},{"x":1753586280890,"y":44.497},{"x":1753586220771,"y":42.682},{"x":1753586160650,"y":41.827},{"x":1753586100496,"y":41.867},{"x":1753586040443,"y":44.749},{"x":1753585983012,"y":45.196},{"x":1753585922868,"y":44.828},{"x":1753585862724,"y":44.946},{"x":1753585802577,"y":41.502},{"x":1753585742828,"y":46.727},{"x":1753585680665,"y":34.888},{"x":1753585620475,"y":37.548},{"x":1753585502955,"y":36.269},{"x":1753585441765,"y":38.388},{"x":1753585426726,"y":35.867},{"x":1753585423720,"y":36.012},{"x":1753585420386,"y":34.309},{"x":1753585140516,"y":38.897},{"x":1753585080530,"y":40.574},{"x":1753585023013,"y":39.854},{"x":1753584962837,"y":39.782},{"x":1753584902699,"y":39.278},{"x":1753584842565,"y":45.022},{"x":1753584782430,"y":38.46},{"x":1753584722289,"y":39.89},{"x":1753584662144,"y":37.07},{"x":1753584601989,"y":38.32},{"x":1753584541856,"y":40.481},{"x":1753584481715,"y":37.133},{"x":1753584421581,"y":32.317},{"x":1753584361424,"y":33.011},{"x":1753584301282,"y":33.214},{"x":1753584241120,"y":41.824},{"x":1753584180962,"y":36.962},{"x":1753584120822,"y":41.963},{"x":1753584060673,"y":44.316},{"x":1753584000652,"y":42.396},{"x":1753583940398,"y":40.489},{"x":1753583880252,"y":39.628},{"x":1753583822677,"y":34.345},{"x":1753583762533,"y":35.069},{"x":1753583702382,"y":33.817},{"x":1753583642242,"y":34.238},{"x":1753583582071,"y":38.614},{"x":1753583521904,"y":32.209},{"x":1753583461768,"y":33.223},{"x":1753583401458,"y":34.502},{"x":1753583341224,"y":37.972},{"x":1753583281030,"y":47.756},{"x":1753583220871,"y":39.787},{"x":1753583160734,"y":39.115},{"x":1753583100681,"y":37.718},{"x":1753583040444,"y":34.789},{"x":1753582980230,"y":40.276},{"x":1753582922962,"y":33.46},{"x":1753582862817,"y":34.051},{"x":1753582802687,"y":35.332},{"x":1753582742550,"y":47.137},{"x":1753582682406,"y":47.381},{"x":1753582622266,"y":45.3},{"x":1753582562115,"y":46.99},{"x":1753582501961,"y":44.358},{"x":1753582441814,"y":35.3},{"x":1753582381653,"y":36.629},{"x":1753582321518,"y":37.23},{"x":1753582261371,"y":37.229},{"x":1753582201221,"y":34.062},{"x":1753582141076,"y":34.853},{"x":1753582080921,"y":35.904},{"x":1753582020769,"y":41.291},{"x":1753581960633,"y":35.464},{"x":1753581900561,"y":35.098},{"x":1753581840396,"y":34.736},{"x":1753581780278,"y":35.519},{"x":1753581722948,"y":37.891},{"x":1753581662807,"y":38.01},{"x":1753581600818,"y":39.115},{"x":1753581540640,"y":38.364},{"x":1753581480570,"y":39.715},{"x":1753581420405,"y":41.374},{"x":1753581360108,"y":36.791},{"x":1753581302897,"y":33.355},{"x":1753581242754,"y":32.194},{"x":1753581182601,"y":33.69},{"x":1753581122455,"y":32.992},{"x":1753581062287,"y":35.921},{"x":1753581002125,"y":45.109},{"x":1753580941939,"y":52.495},{"x":1753580881795,"y":50.136},{"x":1753580821640,"y":48.524},{"x":1753580761482,"y":46.306},{"x":1753580701345,"y":45.936},{"x":1753580641181,"y":45.935},{"x":1753580581014,"y":46.15},{"x":1753580520866,"y":43.7},{"x":1753580460712,"y":48.036},{"x":1753580400755,"y":42.208},{"x":1753580340437,"y":42.406},{"x":1753580280321,"y":45.848},{"x":1753580222686,"y":56.638},{"x":1753580162544,"y":50.878},{"x":1753580102391,"y":58.308},{"x":1753580042247,"y":59.982},{"x":1753579982082,"y":54.595},{"x":1753579921920,"y":51.019},{"x":1753579861784,"y":58.465},{"x":1753579801403,"y":41.609},{"x":1753579741198,"y":42.188},{"x":1753579680972,"y":45.144},{"x":1753579620801,"y":46.132},{"x":1753579560651,"y":48.523},{"x":1753579500605,"y":36.179},{"x":1753579440498,"y":46.694},{"x":1753579380308,"y":47.659},{"x":1753579322906,"y":44.028},{"x":1753579262478,"y":44.618},{"x":1753579202323,"y":45.923},{"x":1753579142162,"y":44.875},{"x":1753579082026,"y":42.878},{"x":1753579021874,"y":42.253},{"x":1753578961725,"y":42.6},{"x":1753578901432,"y":58.596},{"x":1753578841289,"y":35.771},{"x":1753578781146,"y":44.754},{"x":1753578720984,"y":49.381},{"x":1753578660832,"y":43.988},{"x":1753578600722,"y":49.135},{"x":1753578540594,"y":44.388},{"x":1753578480294,"y":42.946},{"x":1753578422975,"y":42.944},{"x":1753578362838,"y":44.143},{"x":1753578302691,"y":52.057},{"x":1753578242542,"y":44.358},{"x":1753578182401,"y":44.002},{"x":1753578122268,"y":45.0},{"x":1753578062118,"y":43.205},{"x":1753578000919,"y":43.412},{"x":1753577940348,"y":44.357},{"x":1753577883004,"y":52.469},{"x":1753577822860,"y":45.583},{"x":1753577762716,"y":50.178},{"x":1753577702571,"y":47.732},{"x":1753577642123,"y":51.533},{"x":1753577581967,"y":51.767},{"x":1753577521824,"y":51.294},{"x":1753577461675,"y":52.144},{"x":1753577401499,"y":49.888},{"x":1753577341349,"y":48.468},{"x":1753577281205,"y":47.593},{"x":1753577221052,"y":46.338},{"x":1753577160907,"y":41.983},{"x":1753577100873,"y":48.398},{"x":1753577040428,"y":41.089},{"x":1753576980373,"y":37.854},{"x":1753576922957,"y":40.273},{"x":1753576862813,"y":38.084},{"x":1753576802676,"y":43.511},{"x":1753576742531,"y":44.366},{"x":1753576682376,"y":41.465},{"x":1753576622220,"y":42.04},{"x":1753576562079,"y":45.46},{"x":1753576501927,"y":43.648},{"x":1753576441821,"y":44.334},{"x":1753576381632,"y":39.276},{"x":1753576321495,"y":37.367},{"x":1753576261363,"y":37.084},{"x":1753576201280,"y":38.365},{"x":1753576141066,"y":42.397},{"x":1753576080894,"y":39.973},{"x":1753576020756,"y":40.796},{"x":1753575960609,"y":39.53},{"x":1753575900622,"y":41.894},{"x":1753575840385,"y":44.917},{"x":1753575780212,"y":41.828},{"x":1753575722910,"y":39.332},{"x":1753575662762,"y":37.978},{"x":1753575602609,"y":34.536},{"x":1753575542459,"y":37.388},{"x":1753575482309,"y":38.252},{"x":1753575422176,"y":37.222},{"x":1753575362014,"y":37.846},{"x":1753575301866,"y":39.654},{"x":1753575241725,"y":40.32},{"x":1753575181576,"y":39.863},{"x":1753575121437,"y":39.64},{"x":1753575061298,"y":35.885},{"x":1753575001179,"y":34.733},{"x":1753574941009,"y":36.587},{"x":1753574880864,"y":34.976},{"x":1753574820729,"y":39.032},{"x":1753574760591,"y":36.961},{"x":1753574700476,"y":40.429},{"x":1753574640207,"y":39.286},{"x":1753574582951,"y":37.67},{"x":1753574522807,"y":42.365},{"x":1753574462666,"y":37.56},{"x":1753574401029,"y":37.585},{"x":1753574340320,"y":38.143},{"x":1753574282979,"y":38.546},{"x":1753574222814,"y":41.689},{"x":1753574162663,"y":39.7},{"x":1753574102508,"y":42.604},{"x":1753574042139,"y":42.607},{"x":1753573981985,"y":43.321},{"x":1753573921832,"y":50.268},{"x":1753573861695,"y":46.051},{"x":1753573801379,"y":44.717},{"x":1753573741206,"y":41.566},{"x":1753573681037,"y":40.519},{"x":1753573620878,"y":44.767},{"x":1753573560730,"y":38.34},{"x":1753573500761,"y":38.267},{"x":1753573440538,"y":39.184},{"x":1753573380288,"y":39.228},{"x":1753573322997,"y":47.334},{"x":1753573262860,"y":43.241},{"x":1753573202710,"y":45.691},{"x":1753573142566,"y":40.822},{"x":1753573082416,"y":41.802},{"x":1753573022265,"y":49.274},{"x":1753572962113,"y":49.199},{"x":1753572901959,"y":44.12},{"x":1753572841810,"y":40.162},{"x":1753572781674,"y":41.262},{"x":1753572721544,"y":45.706},{"x":1753572661426,"y":39.23},{"x":1753572601275,"y":44.862},{"x":1753572541024,"y":41.239},{"x":1753572480832,"y":42.236},{"x":1753572420695,"y":45.197},{"x":1753572360574,"y":42.941},{"x":1753572300496,"y":39.512},{"x":1753572240293,"y":40.606},{"x":1753572182985,"y":44.108},{"x":1753572122826,"y":53.868},{"x":1753572062539,"y":44.164},{"x":1753572002373,"y":43.878},{"x":1753571942236,"y":40.847},{"x":1753571882080,"y":39.928},{"x":1753571821936,"y":54.157},{"x":1753571761788,"y":38.31},{"x":1753571701561,"y":39.295},{"x":1753571641405,"y":46.105},{"x":1753571581266,"y":40.979},{"x":1753571521112,"y":51.661},{"x":1753571460893,"y":45.329},{"x":1753571400781,"y":47.71},{"x":1753571340600,"y":49.284},{"x":1753571280379,"y":43.594},{"x":1753571220233,"y":46.744},{"x":1753571162961,"y":42.083},{"x":1753571102796,"y":42.156},{"x":1753571042668,"y":38.249},{"x":1753570982518,"y":43.399},{"x":1753570922389,"y":53.01},{"x":1753570862264,"y":45.697},{"x":1753570802143,"y":47.564},{"x":1753570741860,"y":43.93},{"x":1753570681723,"y":47.352},{"x":1753570621586,"y":51.58},{"x":1753570561399,"y":45.323},{"x":1753570501253,"y":47.443},{"x":1753570441106,"y":43.445},{"x":1753570380938,"y":44.628},{"x":1753570320803,"y":50.028},{"x":1753570260672,"y":46.624},{"x":1753570200561,"y":43.987},{"x":1753570140406,"y":44.716},{"x":1753570080135,"y":46.306},{"x":1753570022882,"y":48.059},{"x":1753569962741,"y":42.751},{"x":1753569902601,"y":43.049},{"x":1753569842470,"y":43.852},{"x":1753569782322,"y":43.704},{"x":1753569722186,"y":48.152},{"x":1753569662017,"y":48.962},{"x":1753569601885,"y":42.752},{"x":1753569541734,"y":43.201},{"x":1753569481588,"y":51.894},{"x":1753569421393,"y":56.032},{"x":1753569361227,"y":55.846},{"x":1753569301078,"y":54.098},{"x":1753569240925,"y":46.363},{"x":1753569180767,"y":46.304},{"x":1753569120696,"y":53.03},{"x":1753569060555,"y":50.404},{"x":1753569000465,"y":43.328},{"x":1753568940205,"y":44.192},{"x":1753568882932,"y":41.382},{"x":1753568822783,"y":47.698},{"x":1753568762637,"y":44.976},{"x":1753568702488,"y":48.167},{"x":1753568642174,"y":51.276},{"x":1753568582016,"y":47.918},{"x":1753568521869,"y":51.19},{"x":1753568461721,"y":45.179},{"x":1753568401587,"y":42.331},{"x":1753568341426,"y":44.473},{"x":1753568281288,"y":47.845},{"x":1753568221145,"y":47.22},{"x":1753568160989,"y":42.374},{"x":1753568100882,"y":50.374},{"x":1753568040694,"y":49.013},{"x":1753567980624,"y":46.71},{"x":1753567920497,"y":43.475},{"x":1753567860298,"y":44.346},{"x":1753567802973,"y":46.064},{"x":1753567742806,"y":45.013},{"x":1753567682697,"y":49.732},{"x":1753567622512,"y":48.221},{"x":1753567562371,"y":47.032},{"x":1753567502226,"y":46.842},{"x":1753567442078,"y":60.859},{"x":1753567381928,"y":48.562},{"x":1753567321759,"y":53.953},{"x":1753567261621,"y":42.738},{"x":1753567200715,"y":62.117},{"x":1753567140557,"y":52.08},{"x":1753567080243,"y":54.166},{"x":1753567022948,"y":47.13},{"x":1753566962803,"y":45.066},{"x":1753566902672,"y":46.115},{"x":1753566842525,"y":63.224},{"x":1753566782379,"y":50.224},{"x":1753566722242,"y":54.23},{"x":1753566662107,"y":53.528},{"x":1753566601939,"y":44.216},{"x":1753566541795,"y":44.519},{"x":1753566481654,"y":43.194},{"x":1753566421513,"y":46.019},{"x":1753566361377,"y":50.11},{"x":1753566301246,"y":64.372},{"x":1753566241075,"y":53.909},{"x":1753566180912,"y":56.545},{"x":1753566120783,"y":61.265},{"x":1753566060621,"y":58.564},{"x":1753566000550,"y":56.34},{"x":1753565940329,"y":74.401},{"x":1753565882981,"y":61.991},{"x":1753565822657,"y":57.193},{"x":1753565762520,"y":56.702},{"x":1753565702363,"y":53.378},{"x":1753565642223,"y":58.463},{"x":1753565582073,"y":60.492},{"x":1753565521904,"y":50.022},{"x":1753565461774,"y":48.702},{"x":1753565401432,"y":68.422},{"x":1753565341200,"y":52.264},{"x":1753565281016,"y":57.698},{"x":1753565220874,"y":52.663},{"x":1753565160714,"y":50.896},{"x":1753565100625,"y":49.649},{"x":1753565040441,"y":46.894},{"x":1753564980233,"y":50.742},{"x":1753564923014,"y":63.564},{"x":1753564862855,"y":49.21},{"x":1753564802697,"y":66.917},{"x":1753564742575,"y":60.752},{"x":1753564682421,"y":74.408},{"x":1753564622275,"y":72.974},{"x":1753564562136,"y":67.901},{"x":1753564502003,"y":56.916},{"x":1753564441833,"y":85.277},{"x":1753564381676,"y":53.772},{"x":1753564321545,"y":55.89},{"x":1753564261403,"y":68.582},{"x":1753564201393,"y":43.966},{"x":1753564141124,"y":52.25},{"x":1753564080952,"y":46.516},{"x":1753564020809,"y":47.644},{"x":1753563960677,"y":52.915},{"x":1753563900613,"y":54.055},{"x":1753563840446,"y":48.077},{"x":1753563780246,"y":51.288},{"x":1753563722925,"y":65.174},{"x":1753563662786,"y":50.162},{"x":1753563601266,"y":60.007},{"x":1753563540829,"y":56.429},{"x":1753563480631,"y":61.993},{"x":1753563420534,"y":56.648},{"x":1753563360441,"y":52.148},{"x":1753563300214,"y":47.946},{"x":1753563242913,"y":47.012},{"x":1753563182756,"y":51.534},{"x":1753563122629,"y":44.027},{"x":1753563062464,"y":42.484},{"x":1753563002322,"y":44.448},{"x":1753562942187,"y":42.026},{"x":1753562882041,"y":43.573},{"x":1753562821893,"y":45.235},{"x":1753562761760,"y":61.445},{"x":1753562701507,"y":57.871},{"x":1753562641367,"y":64.442},{"x":1753562581236,"y":64.055},{"x":1753562521101,"y":68.845},{"x":1753562460938,"y":53.645},{"x":1753562400851,"y":51.449},{"x":1753562340642,"y":51.762},{"x":1753562280500,"y":42.719},{"x":1753562220441,"y":39.414},{"x":1753562162989,"y":37.626},{"x":1753562102851,"y":37.625},{"x":1753562042696,"y":41.006},{"x":1753561982550,"y":41.981},{"x":1753561922409,"y":54.959},{"x":1753561862264,"y":57.488},{"x":1753561802124,"y":58.55},{"x":1753561741900,"y":62.602},{"x":1753561681780,"y":63.654},{"x":1753561621591,"y":48.624},{"x":1753561561453,"y":51.692},{"x":1753561501317,"y":68.282},{"x":1753561441172,"y":64.201},{"x":1753561381035,"y":46.819},{"x":1753561320877,"y":48.469},{"x":1753561260744,"y":50.282},{"x":1753561200685,"y":59.638},{"x":1753561140570,"y":57.355},{"x":1753561080304,"y":71.861},{"x":1753561022811,"y":54.143},{"x":1753560962623,"y":51.11},{"x":1753560902485,"y":49.394},{"x":1753560842352,"y":54.654},{"x":1753560782212,"y":62.101},{"x":1753560722067,"y":63.73},{"x":1753560661896,"y":77.832},{"x":1753560601759,"y":75.812},{"x":1753560541624,"y":79.631},{"x":1753560481500,"y":66.512},{"x":1753560421361,"y":72.232},{"x":1753560361227,"y":59.776},{"x":1753560301081,"y":56.184},{"x":1753560240918,"y":58.764},{"x":1753560180803,"y":58.97},{"x":1753560120664,"y":63.109},{"x":1753560060398,"y":84.334},{"x":1753560000920,"y":67.664},{"x":1753559940698,"y":61.355},{"x":1753559880602,"y":61.306},{"x":1753559820452,"y":64.619},{"x":1753559760326,"y":56.732},{"x":1753559702999,"y":74.626},{"x":1753559642863,"y":64.292},{"x":1753559582706,"y":78.622},{"x":1753559522560,"y":73.562},{"x":1753559462416,"y":67.139},{"x":1753559402275,"y":80.015},{"x":1753559342134,"y":73.331},{"x":1753559281987,"y":61.964},{"x":1753559221857,"y":56.154},{"x":1753559161725,"y":50.65},{"x":1753559101543,"y":48.758},{"x":1753559041383,"y":47.836},{"x":1753558981258,"y":55.703},{"x":1753558921105,"y":59.941},{"x":1753558860958,"y":54.91},{"x":1753558800834,"y":56.383},{"x":1753558740640,"y":57.233},{"x":1753558680549,"y":57.113},{"x":1753558620343,"y":62.234},{"x":1753558562988,"y":76.316},{"x":1753558502821,"y":81.941},{"x":1753558442680,"y":86.738},{"x":1753558382527,"y":86.381},{"x":1753558322393,"y":85.327},{"x":1753558262259,"y":70.29},{"x":1753558202086,"y":58.858},{"x":1753558141941,"y":54.722},{"x":1753558081755,"y":53.621},{"x":1753558021617,"y":54.076},{"x":1753557961475,"y":63.103},{"x":1753557901340,"y":67.127},{"x":1753557841192,"y":72.299},{"x":1753557781039,"y":70.738},{"x":1753557720885,"y":74.663},{"x":1753557660744,"y":74.789},{"x":1753557600726,"y":58.243},{"x":1753557540479,"y":56.768},{"x":1753557480373,"y":55.951},{"x":1753557422946,"y":59.468},{"x":1753557362794,"y":53.742},{"x":1753557302646,"y":66.372},{"x":1753557242504,"y":67.51},{"x":1753557182359,"y":66.744},{"x":1753557122227,"y":71.502},{"x":1753557062076,"y":71.72},{"x":1753557001927,"y":76.81},{"x":1753556941780,"y":72.833},{"x":1753556881646,"y":65.898},{"x":1753556821504,"y":58.334},{"x":1753556761365,"y":64.312},{"x":1753556701227,"y":52.681},{"x":1753556641083,"y":58.084},{"x":1753556580936,"y":51.322},{"x":1753556520802,"y":61.613},{"x":1753556460686,"y":57.028},{"x":1753556400796,"y":69.89},{"x":1753556340529,"y":90.61},{"x":1753556280418,"y":64.266},{"x":1753556220320,"y":61.877},{"x":1753556162951,"y":60.139},{"x":1753556102794,"y":53.687},{"x":1753556042649,"y":54.024},{"x":1753555982496,"y":54.15},{"x":1753555922351,"y":52.433},{"x":1753555862225,"y":56.791},{"x":1753555801442,"y":61.613},{"x":1753555741295,"y":58.232},{"x":1753555681156,"y":59.981},{"x":1753555621008,"y":81.605},{"x":1753555560866,"y":51.253},{"x":1753555500800,"y":55.127},{"x":1753555440634,"y":49.006},{"x":1753555380441,"y":53.022},{"x":1753555320283,"y":57.647},{"x":1753555262981,"y":59.011},{"x":1753555202834,"y":49.83},{"x":1753555142686,"y":47.024},{"x":1753555082559,"y":50.273},{"x":1753555022396,"y":47.044},{"x":1753554962257,"y":53.87},{"x":1753554902097,"y":54.372},{"x":1753554841943,"y":59.288},{"x":1753554781817,"y":83.225},{"x":1753554721662,"y":74.495},{"x":1753554661565,"y":78.236},{"x":1753554601398,"y":76.247},{"x":1753554541210,"y":73.092},{"x":1753554481033,"y":49.045},{"x":1753554420887,"y":54.385},{"x":1753554360621,"y":49.123},{"x":1753554300553,"y":48.524},{"x":1753554240315,"y":46.824},{"x":1753554180130,"y":55.74},{"x":1753554122917,"y":65.206},{"x":1753554062501,"y":56.458},{"x":1753554002356,"y":54.858},{"x":1753553942201,"y":54.236},{"x":1753553882059,"y":44.395},{"x":1753553821913,"y":44.495},{"x":1753553761721,"y":55.103},{"x":1753553701414,"y":52.994},{"x":1753553641267,"y":56.065},{"x":1753553581129,"y":62.888},{"x":1753553520942,"y":66.133},{"x":1753553460793,"y":61.379},{"x":1753553400684,"y":53.088},{"x":1753553340537,"y":46.849},{"x":1753553282800,"y":44.88},{"x":1753553222621,"y":45.293},{"x":1753553162584,"y":41.232},{"x":1753553102347,"y":50.226},{"x":1753553042203,"y":53.508},{"x":1753552982061,"y":52.727},{"x":1753552921912,"y":51.67},{"x":1753552861792,"y":61.112},{"x":1753552801869,"y":70.448},{"x":1753552740944,"y":69.842},{"x":1753552680797,"y":63.235},{"x":1753552620653,"y":62.41},{"x":1753552560586,"y":54.64},{"x":1753552500558,"y":69.781},{"x":1753552440184,"y":51.612},{"x":1753552382886,"y":47.34},{"x":1753552322748,"y":49.628},{"x":1753552262599,"y":52.57},{"x":1753552202453,"y":51.029},{"x":1753552142315,"y":60.733},{"x":1753552082168,"y":62.791},{"x":1753552022008,"y":64.277},{"x":1753551961842,"y":51.145},{"x":1753551901688,"y":49.795},{"x":1753551841553,"y":49.051},{"x":1753551781391,"y":51.028},{"x":1753551721250,"y":50.558},{"x":1753551661104,"y":48.274},{"x":1753551600961,"y":48.348},{"x":1753551540770,"y":51.336},{"x":1753551480618,"y":46.456},{"x":1753551420503,"y":49.974},{"x":1753551360401,"y":51.98},{"x":1753551303010,"y":53.874},{"x":1753551242840,"y":95.038},{"x":1753551182703,"y":71.268},{"x":1753551122539,"y":77.498},{"x":1753551062378,"y":71.086},{"x":1753551002233,"y":77.72},{"x":1753550942077,"y":43.068},{"x":1753550881908,"y":42.881},{"x":1753550821751,"y":46.669},{"x":1753550761604,"y":59.788},{"x":1753550701476,"y":64.169},{"x":1753550641340,"y":62.684},{"x":1753550581228,"y":63.494},{"x":1753550521056,"y":69.07},{"x":1753550460903,"y":51.706},{"x":1753550400815,"y":51.636},{"x":1753550340596,"y":53.909},{"x":1753550280553,"y":60.08},{"x":1753550223039,"y":57.727},{"x":1753550162867,"y":63.292},{"x":1753550102717,"y":56.003},{"x":1753550042574,"y":62.618},{"x":1753549982437,"y":77.335},{"x":1753549922273,"y":57.155},{"x":1753549862117,"y":64.165},{"x":1753549801956,"y":61.901},{"x":1753549741808,"y":73.72},{"x":1753549681656,"y":51.244},{"x":1753549621525,"y":49.636},{"x":1753549561368,"y":60.004},{"x":1753549501222,"y":42.36},{"x":1753549441062,"y":53.746},{"x":1753549380903,"y":52.794},{"x":1753549320771,"y":60.498},{"x":1753549260687,"y":85.122},{"x":1753549201718,"y":72.142},{"x":1753549141408,"y":72.403},{"x":1753549081262,"y":73.608},{"x":1753549021071,"y":56.77},{"x":1753548960923,"y":47.683},{"x":1753548900847,"y":48.958},{"x":1753548840641,"y":54.919},{"x":1753548780558,"y":63.923},{"x":1753548720402,"y":59.563},{"x":1753548660175,"y":55.073},{"x":1753548602930,"y":58.303},{"x":1753548542777,"y":67.894},{"x":1753548482642,"y":47.256},{"x":1753548422494,"y":43.248},{"x":1753548362350,"y":45.569},{"x":1753548302218,"y":42.284},{"x":1753548242058,"y":43.448},{"x":1753548181907,"y":48.817},{"x":1753548121763,"y":45.592},{"x":1753548061621,"y":55.434},{"x":1753548001486,"y":50.155},{"x":1753547941328,"y":47.63},{"x":1753547881196,"y":52.86},{"x":1753547821043,"y":75.211},{"x":1753547760889,"y":76.391},{"x":1753547700750,"y":68.521},{"x":1753547640599,"y":70.384},{"x":1753547580510,"y":72.696},{"x":1753547520326,"y":60.6},{"x":1753547460079,"y":55.504},{"x":1753547402862,"y":55.358},{"x":1753547342684,"y":67.3},{"x":1753547282520,"y":68.216},{"x":1753547222375,"y":58.393},{"x":1753547162229,"y":62.839},{"x":1753547102079,"y":64.408},{"x":1753547041923,"y":48.948},{"x":1753546981786,"y":43.525},{"x":1753546921654,"y":49.393},{"x":1753546861512,"y":38.698},{"x":1753546801379,"y":45.052},{"x":1753546741222,"y":41.083},{"x":1753546681075,"y":44.17},{"x":1753546620904,"y":47.646},{"x":1753546560802,"y":41.783},{"x":1753546500452,"y":45.728},{"x":1753546440222,"y":39.475},{"x":1753546382943,"y":55.607},{"x":1753546322795,"y":52.016},{"x":1753546262650,"y":56.363},{"x":1753546202492,"y":77.215},{"x":1753546142161,"y":57.154},{"x":1753546081997,"y":41.549},{"x":1753546021836,"y":45.167},{"x":1753545961694,"y":46.104},{"x":1753545901555,"y":60.246},{"x":1753545841386,"y":71.837},{"x":1753545781244,"y":61.48},{"x":1753545721105,"y":63.05},{"x":1753545660957,"y":56.057},{"x":1753545601665,"y":50.077},{"x":1753545541422,"y":67.792},{"x":1753545481286,"y":59.413},{"x":1753545421132,"y":53.669},{"x":1753545360972,"y":54.482},{"x":1753545300861,"y":58.205},{"x":1753545240668,"y":60.512},{"x":1753545180553,"y":64.476},{"x":1753545120405,"y":48.496},{"x":1753545060236,"y":52.842},{"x":1753545002971,"y":42.552},{"x":1753544942824,"y":41.47},{"x":1753544882573,"y":37.723},{"x":1753544822418,"y":42.539},{"x":1753544762278,"y":41.362},{"x":1753544702125,"y":25.522},{"x":1753544641976,"y":35.256},{"x":1753544581827,"y":52.015},{"x":1753544521680,"y":52.854},{"x":1753544461536,"y":56.135},{"x":1753544401396,"y":54.058},{"x":1753544341259,"y":53.539},{"x":1753544281099,"y":36.486},{"x":1753544220929,"y":23.234},{"x":1753544160798,"y":30.008},{"x":1753544100656,"y":27.61},{"x":1753544040537,"y":40.069},{"x":1753543980401,"y":39.588},{"x":1753543920237,"y":39.966},{"x":1753543862960,"y":34.572},{"x":1753543802778,"y":37.765},{"x":1753543742615,"y":52.62},{"x":1753543682416,"y":49.345},{"x":1753543622266,"y":46.938},{"x":1753543562127,"y":49.435},{"x":1753543501960,"y":48.503},{"x":1753543441818,"y":70.753},{"x":1753543381672,"y":50.999},{"x":1753543321538,"y":52.853},{"x":1753543261401,"y":47.374},{"x":1753543201260,"y":38.214},{"x":1753543141103,"y":43.444},{"x":1753543080937,"y":73.304},{"x":1753543020807,"y":74.047},{"x":1753542960667,"y":80.194},{"x":1753542900605,"y":67.672},{"x":1753542840438,"y":81.256},{"x":1753542780278,"y":45.616},{"x":1753542722924,"y":42.337},{"x":1753542662783,"y":42.726},{"x":1753542602645,"y":54.713},{"x":1753542542502,"y":50.694},{"x":1753542482357,"y":50.258},{"x":1753542422223,"y":43.289},{"x":1753542362086,"y":44.869},{"x":1753542301939,"y":43.706},{"x":1753542241793,"y":37.759},{"x":1753542181642,"y":43.84},{"x":1753542121470,"y":52.777},{"x":1753542061346,"y":66.451},{"x":1753542001765,"y":51.397},{"x":1753541941361,"y":52.1},{"x":1753541881224,"y":51.05},{"x":1753541821101,"y":36.482},{"x":1753541760929,"y":53.532},{"x":1753541700799,"y":47.69},{"x":1753541640665,"y":46.92},{"x":1753541580570,"y":61.364},{"x":1753541520616,"y":40.562},{"x":1753541462993,"y":40.7},{"x":1753541402835,"y":38.041},{"x":1753541342687,"y":50.537},{"x":1753541282547,"y":57.872},{"x":1753541222402,"y":59.738},{"x":1753541162254,"y":52.657},{"x":1753541102110,"y":59.262},{"x":1753541041953,"y":55.584},{"x":1753540981809,"y":40.247},{"x":1753540921663,"y":37.95},{"x":1753540861518,"y":42.92},{"x":1753540801377,"y":49.543},{"x":1753540741228,"y":50.552},{"x":1753540681080,"y":47.291},{"x":1753540620911,"y":44.83},{"x":1753540560766,"y":49.97},{"x":1753540500631,"y":36.216},{"x":1753540440486,"y":37.648},{"x":1753540380382,"y":39.293},{"x":1753540320187,"y":39.901},{"x":1753540262954,"y":38.776},{"x":1753540202818,"y":39.168},{"x":1753540142596,"y":41.172},{"x":1753540082423,"y":38.924},{"x":1753540022266,"y":32.633},{"x":1753539962116,"y":56.831},{"x":1753539901953,"y":65.965},{"x":1753539841811,"y":68.316},{"x":1753539781669,"y":71.164},{"x":1753539721525,"y":71.44},{"x":1753539661390,"y":52.375},{"x":1753539601229,"y":41.882},{"x":1753539541065,"y":43.154},{"x":1753539480906,"y":38.423},{"x":1753539420780,"y":46.037},{"x":1753539360619,"y":48.804},{"x":1753539300496,"y":53.279},{"x":1753539240420,"y":44.629},{"x":1753539183006,"y":41.592},{"x":1753539122856,"y":32.657},{"x":1753539062696,"y":30.608},{"x":1753539002549,"y":47.498},{"x":1753538942177,"y":46.72},{"x":1753538882019,"y":56.046},{"x":1753538821863,"y":58.361},{"x":1753538761713,"y":50.221},{"x":1753538701556,"y":37.021},{"x":1753538641397,"y":30.972},{"x":1753538581261,"y":36.469},{"x":1753538521109,"y":47.432},{"x":1753538460948,"y":32.846},{"x":1753538400835,"y":36.845},{"x":1753538340334,"y":49.931},{"x":1753538282998,"y":37.841},{"x":1753538222861,"y":45.173},{"x":1753538162723,"y":42.539},{"x":1753538102565,"y":61.604},{"x":1753538042179,"y":70.492},{"x":1753537982015,"y":86.51},{"x":1753537921863,"y":73.634},{"x":1753537861720,"y":62.029},{"x":1753537801232,"y":59.29},{"x":1753537741079,"y":53.851},{"x":1753537680915,"y":65.16},{"x":1753537620765,"y":60.652},{"x":1753537560633,"y":63.18},{"x":1753537500658,"y":62.948},{"x":1753537440318,"y":72.88},{"x":1753537382951,"y":60.536},{"x":1753537322805,"y":56.605},{"x":1753537262666,"y":46.11},{"x":1753537202526,"y":49.606},{"x":1753537142130,"y":61.056},{"x":1753537081975,"y":58.751},{"x":1753537021826,"y":71.86},{"x":1753536961563,"y":72.814},{"x":1753536901417,"y":46.069},{"x":1753536841273,"y":36.197},{"x":1753536781132,"y":35.765},{"x":1753536720955,"y":46.7},{"x":1753536660801,"y":44.35},{"x":1753536600720,"y":40.769},{"x":1753536540441,"y":39.576},{"x":1753536480325,"y":43.362},{"x":1753536422988,"y":36.586},{"x":1753536362664,"y":50.345},{"x":1753536302530,"y":56.353},{"x":1753536242165,"y":65.058},{"x":1753536182020,"y":69.27},{"x":1753536121859,"y":72.937},{"x":1753536061715,"y":69.181},{"x":1753536001570,"y":56.386},{"x":1753535941403,"y":42.964},{"x":1753535881263,"y":42.325},{"x":1753535821121,"y":37.986},{"x":1753535760944,"y":46.381},{"x":1753535700841,"y":43.06},{"x":1753535640616,"y":38.423},{"x":1753535580560,"y":48.335},{"x":1753535520482,"y":36.566},{"x":1753535462985,"y":39.968},{"x":1753535402829,"y":36.649},{"x":1753535342677,"y":41.016},{"x":1753535282529,"y":52.745},{"x":1753535222385,"y":70.081},{"x":1753535162245,"y":58.486},{"x":1753535102108,"y":57.368},{"x":1753535041963,"y":57.475},{"x":1753534981795,"y":45.011},{"x":1753534921650,"y":43.698},{"x":1753534861516,"y":48.548},{"x":1753534800400,"y":45.648},{"x":1753534740245,"y":59.921},{"x":1753534682951,"y":36.622},{"x":1753534622805,"y":45.91},{"x":1753534562648,"y":54.244},{"x":1753534502498,"y":58.772},{"x":1753534442143,"y":60.528},{"x":1753534381993,"y":63.032},{"x":1753534321853,"y":72.503},{"x":1753534261707,"y":87.367},{"x":1753534201571,"y":65.434},{"x":1753534141427,"y":60.038},{"x":1753534081286,"y":57.257},{"x":1753534021137,"y":72.332},{"x":1753533960974,"y":43.861},{"x":1753533900848,"y":68.467},{"x":1753533840693,"y":62.028},{"x":1753533780571,"y":64.076},{"x":1753533720333,"y":60.436},{"x":1753533660048,"y":57.952},{"x":1753533602889,"y":44.82},{"x":1753533542750,"y":43.649},{"x":1753533482604,"y":48.625},{"x":1753533422432,"y":45.709},{"x":1753533362287,"y":48.376},{"x":1753533302129,"y":63.148},{"x":1753533241953,"y":62.611},{"x":1753533181799,"y":68.058},{"x":1753533121657,"y":73.079},{"x":1753533061520,"y":59.539},{"x":1753533001384,"y":44.93},{"x":1753532941224,"y":53.309},{"x":1753532881044,"y":46.663},{"x":1753532820882,"y":46.218},{"x":1753532760734,"y":51.398},{"x":1753532700697,"y":48.83},{"x":1753532640510,"y":47.965},{"x":1753532580341,"y":55.814},{"x":1753532522903,"y":63.733},{"x":1753532462480,"y":73.528},{"x":1753532402337,"y":86.321},{"x":1753532342180,"y":74.441},{"x":1753532282019,"y":64.978},{"x":1753532221871,"y":62.168},{"x":1753532161715,"y":54.271},{"x":1753532101472,"y":56.618},{"x":1753532041331,"y":56.772},{"x":1753531981183,"y":61.996},{"x":1753531921019,"y":75.528},{"x":1753531860873,"y":71.334},{"x":1753531800769,"y":50.485},{"x":1753531740559,"y":57.128},{"x":1753531682772,"y":47.354},{"x":1753531622632,"y":50.31},{"x":1753531562490,"y":69.172},{"x":1753531502353,"y":58.546},{"x":1753531442208,"y":57.07},{"x":1753531382070,"y":38.942},{"x":1753531321923,"y":50.09},{"x":1753531261788,"y":33.208},{"x":1753531202958,"y":24.409},{"x":1753531142798,"y":27.667},{"x":1753531082637,"y":46.691},{"x":1753531022498,"y":65.482},{"x":1753530962374,"y":70.597},{"x":1753530902243,"y":76.73},{"x":1753530842083,"y":61.21},{"x":1753530781913,"y":34.714},{"x":1753530721770,"y":43.242},{"x":1753530661631,"y":37.103},{"x":1753530601387,"y":40.588},{"x":1753530541247,"y":47.765},{"x":1753530481104,"y":54.385},{"x":1753530420952,"y":51.626},{"x":1753530360886,"y":60.444},{"x":1753530300805,"y":31.104},{"x":1753530240672,"y":32.957},{"x":1753530180618,"y":20.958},{"x":1753530120213,"y":35.832},{"x":1753530062919,"y":39.773},{"x":1753530002765,"y":43.806},{"x":1753529942615,"y":46.531},{"x":1753529882480,"y":40.571},{"x":1753529822335,"y":42.072},{"x":1753529762194,"y":28.45},{"x":1753529702054,"y":41.857},{"x":1753529641874,"y":26.804},{"x":1753529581742,"y":24.511},{"x":1753529521586,"y":30.098},{"x":1753529461443,"y":58.643},{"x":1753529401337,"y":45.727},{"x":1753529341098,"y":47.274},{"x":1753529280925,"y":67.284},{"x":1753529220762,"y":67.751},{"x":1753529160625,"y":62.778},{"x":1753529100686,"y":49.952},{"x":1753529040318,"y":40.801},{"x":1753528982991,"y":30.324},{"x":1753528922843,"y":34.298},{"x":1753528862459,"y":24.061},{"x":1753528802326,"y":50.099},{"x":1753528742192,"y":35.076},{"x":1753528682046,"y":28.91},{"x":1753528621875,"y":40.038},{"x":1753528561722,"y":33.803},{"x":1753528501486,"y":34.771},{"x":1753528441344,"y":27.083},{"x":1753528381216,"y":33.233},{"x":1753528321050,"y":20.309},{"x":1753528260903,"y":22.674},{"x":1753528200843,"y":22.058},{"x":1753528140647,"y":34.715},{"x":1753528082895,"y":45.355},{"x":1753528022751,"y":44.006},{"x":1753527962604,"y":31.444},{"x":1753527902460,"y":20.894},{"x":1753527842320,"y":32.474},{"x":1753527782173,"y":40.573},{"x":1753527722030,"y":49.175},{"x":1753527661874,"y":52.175},{"x":1753527602956,"y":48.418},{"x":1753527542803,"y":33.678},{"x":1753527482665,"y":24.72},{"x":1753527422525,"y":32.197},{"x":1753527362409,"y":32.887},{"x":1753527302245,"y":40.991},{"x":1753527242105,"y":49.818},{"x":1753527181952,"y":39.221},{"x":1753527121814,"y":39.983},{"x":1753527061684,"y":42.995},{"x":1753527001438,"y":42.367},{"x":1753526941305,"y":35.461},{"x":1753526881158,"y":31.987},{"x":1753526820997,"y":28.309},{"x":1753526760854,"y":35.532},{"x":1753526700847,"y":32.131},{"x":1753526640651,"y":30.364},{"x":1753526580368,"y":32.52},{"x":1753526523022,"y":29.935},{"x":1753526462876,"y":31.261},{"x":1753526402737,"y":31.104},{"x":1753526342595,"y":63.988},{"x":1753526282460,"y":55.692},{"x":1753526222317,"y":56.959},{"x":1753526162187,"y":51.858},{"x":1753526102053,"y":40.716},{"x":1753526041903,"y":19.366},{"x":1753525981743,"y":25.493},{"x":1753525921609,"y":21.944},{"x":1753525861462,"y":32.244},{"x":1753525801326,"y":36.882},{"x":1753525741175,"y":33.511},{"x":1753525681014,"y":37.642},{"x":1753525620846,"y":40.121},{"x":1753525560697,"y":39.066},{"x":1753525500578,"y":29.942},{"x":1753525440483,"y":28.612},{"x":1753525380341,"y":23.176},{"x":1753525322945,"y":23.371},{"x":1753525262598,"y":35.635},{"x":1753525202454,"y":35.594},{"x":1753525142306,"y":39.46},{"x":1753525082158,"y":34.447},{"x":1753525021998,"y":28.754},{"x":1753524961852,"y":30.562},{"x":1753524901705,"y":24.788},{"x":1753524841568,"y":27.797},{"x":1753524781436,"y":34.47},{"x":1753524721299,"y":32.776},{"x":1753524661192,"y":32.718},{"x":1753524601010,"y":36.985},{"x":1753524540832,"y":55.616},{"x":1753524480608,"y":52.648},{"x":1753524420071,"y":35.941},{"x":1753524362903,"y":44.533},{"x":1753524302763,"y":40.658},{"x":1753524242631,"y":29.951},{"x":1753524182486,"y":33.494},{"x":1753524122341,"y":26.207},{"x":1753524062206,"y":29.406},{"x":1753524000500,"y":27.63},{"x":1753523940308,"y":30.808},{"x":1753523883015,"y":30.968},{"x":1753523822865,"y":37.022},{"x":1753523762713,"y":32.815},{"x":1753523702559,"y":27.323},{"x":1753523642406,"y":50.638},{"x":1753523582269,"y":52.378},{"x":1753523522130,"y":52.745},{"x":1753523461980,"y":51.058},{"x":1753523401228,"y":65.106},{"x":1753523341014,"y":41.413},{"x":1753523280871,"y":34.937},{"x":1753523220737,"y":29.269},{"x":1753523160629,"y":40.955},{"x":1753523100515,"y":32.672},{"x":1753523040387,"y":36.042},{"x":1753522980125,"y":38.939},{"x":1753522922904,"y":39.588},{"x":1753522862750,"y":45.187},{"x":1753522802605,"y":39.224},{"x":1753522742470,"y":35.192},{"x":1753522682321,"y":31.324},{"x":1753522622198,"y":33.276},{"x":1753522562027,"y":41.914},{"x":1753522501877,"y":36.126},{"x":1753522441714,"y":45.433},{"x":1753522381574,"y":35.088},{"x":1753522321432,"y":28.938},{"x":1753522261283,"y":26.562},{"x":1753522201142,"y":23.884},{"x":1753522140938,"y":39.289},{"x":1753522080796,"y":35.43},{"x":1753522020657,"y":48.856},{"x":1753521972498,"y":52.222},{"x":1753521901946,"y":48.104},{"x":1753521841797,"y":56.729},{"x":1753521781649,"y":38.933},{"x":1753521721511,"y":31.458},{"x":1753521661372,"y":20.279},{"x":1753521601233,"y":26.488},{"x":1753521541016,"y":26.564},{"x":1753521480861,"y":29.422},{"x":1753521420776,"y":29.591},{"x":1753521360612,"y":21.281},{"x":1753521300490,"y":26.326},{"x":1753521240318,"y":52.645},{"x":1753521182961,"y":71.12},{"x":1753521122818,"y":65.756},{"x":1753521062676,"y":61.346},{"x":1753521002532,"y":58.152},{"x":1753520942274,"y":56.23},{"x":1753520882086,"y":25.364},{"x":1753520821917,"y":25.688},{"x":1753520761778,"y":23.93},{"x":1753520701640,"y":46.213},{"x":1753520641511,"y":47.01},{"x":1753520581361,"y":40.932},{"x":1753520521225,"y":45.396},{"x":1753520461079,"y":47.192},{"x":1753520400726,"y":45.661},{"x":1753520340586,"y":49.609},{"x":1753520280344,"y":52.506},{"x":1753520220205,"y":53.171},{"x":1753520162908,"y":32.25},{"x":1753520102764,"y":32.668},{"x":1753520042621,"y":30.078},{"x":1753519982480,"y":32.639},{"x":1753519922322,"y":43.891},{"x":1753519862176,"y":43.238},{"x":1753519802031,"y":35.068},{"x":1753519741876,"y":46.626},{"x":1753519681737,"y":61.673},{"x":1753519621629,"y":59.648},{"x":1753519561482,"y":54.9},{"x":1753519501353,"y":50.942},{"x":1753519441196,"y":30.037},{"x":1753519381037,"y":28.979},{"x":1753519320895,"y":37.004},{"x":1753519260758,"y":49.3},{"x":1753519200718,"y":51.553},{"x":1753519140511,"y":54.994},{"x":1753519080191,"y":54.473},{"x":1753519022959,"y":48.194},{"x":1753518962830,"y":65.6},{"x":1753518902682,"y":50.334},{"x":1753518842535,"y":52.038},{"x":1753518782385,"y":51.202},{"x":1753518722244,"y":40.105},{"x":1753518662130,"y":45.982},{"x":1753518601958,"y":38.548},{"x":1753518541787,"y":36.151},{"x":1753518481653,"y":45.329},{"x":1753518421503,"y":36.262},{"x":1753518361370,"y":43.428},{"x":1753518301205,"y":45.007},{"x":1753518241022,"y":54.916},{"x":1753518180874,"y":60.097},{"x":1753518120719,"y":63.662},{"x":1753518060591,"y":63.827},{"x":1753518000504,"y":60.791},{"x":1753517940359,"y":51.934},{"x":1753517882997,"y":44.12},{"x":1753517822855,"y":43.486},{"x":1753517762704,"y":58.98},{"x":1753517702557,"y":47.192},{"x":1753517642411,"y":65.67},{"x":1753517582267,"y":61.186},{"x":1753517522119,"y":60.365},{"x":1753517461958,"y":63.319},{"x":1753517401797,"y":46.286},{"x":1753517341648,"y":42.642},{"x":1753517281494,"y":45.589},{"x":1753517221351,"y":55.494},{"x":1753517161228,"y":58.248},{"x":1753517101059,"y":55.95},{"x":1753517040893,"y":41.777},{"x":1753516980758,"y":40.571},{"x":1753516920629,"y":30.509},{"x":1753516860619,"y":42.12},{"x":1753516801619,"y":46.217},{"x":1753516741321,"y":49.013},{"x":1753516681189,"y":45.947},{"x":1753516621035,"y":33.686},{"x":1753516560896,"y":33.647},{"x":1753516500773,"y":43.674},{"x":1753516440605,"y":45.752},{"x":1753516380444,"y":58.222},{"x":1753516320504,"y":60.047},{"x":1753516262969,"y":61.493},{"x":1753516202825,"y":50.812},{"x":1753516142679,"y":45.881},{"x":1753516082541,"y":40.298},{"x":1753516022379,"y":47.299},{"x":1753515962236,"y":60.108},{"x":1753515902094,"y":32.65},{"x":1753515841947,"y":41.32},{"x":1753515781805,"y":39.739},{"x":1753515721673,"y":38.652},{"x":1753515661541,"y":44.48},{"x":1753515601401,"y":41.959},{"x":1753515541259,"y":41.28},{"x":1753515481125,"y":46.374},{"x":1753515420954,"y":42.016},{"x":1753515360862,"y":40.129},{"x":1753515300733,"y":39.876},{"x":1753515240551,"y":42.203},{"x":1753515180443,"y":45.329},{"x":1753515120208,"y":40.079},{"x":1753515062939,"y":39.134},{"x":1753515002783,"y":42.128},{"x":1753514942663,"y":47.076},{"x":1753514882490,"y":44.819},{"x":1753514822345,"y":38.582},{"x":1753514762206,"y":60.251},{"x":1753514702064,"y":63.011},{"x":1753514641914,"y":59.486},{"x":1753514581773,"y":56.318},{"x":1753514521611,"y":56.605},{"x":1753514461477,"y":42.286},{"x":1753514401350,"y":56.482},{"x":1753514341202,"y":50.597},{"x":1753514281020,"y":59.231},{"x":1753514220873,"y":56.005},{"x":1753514160724,"y":52.031},{"x":1753514100606,"y":49.022},{"x":1753514040438,"y":56.918},{"x":1753513980347,"y":42.208},{"x":1753513922993,"y":41.239},{"x":1753513862852,"y":44.681},{"x":1753513802709,"y":43.441},{"x":1753513742551,"y":40.154},{"x":1753513682415,"y":45.853},{"x":1753513622247,"y":38.196},{"x":1753513562103,"y":41.096},{"x":1753513501956,"y":41.118},{"x":1753513441788,"y":37.054},{"x":1753513381652,"y":36.635},{"x":1753513321508,"y":43.282},{"x":1753513261365,"y":33.325},{"x":1753513201309,"y":34.756},{"x":1753513140853,"y":32.303},{"x":1753513080712,"y":35.948},{"x":1753513020582,"y":34.952},{"x":1753512960461,"y":45.92},{"x":1753512900202,"y":54.378},{"x":1753512842936,"y":57.59},{"x":1753512782798,"y":71.089},{"x":1753512722649,"y":70.103},{"x":1753512662499,"y":49.832},{"x":1753512602355,"y":50.874},{"x":1753512542219,"y":37.156},{"x":1753512482083,"y":39.236},{"x":1753512421963,"y":40.825},{"x":1753512361794,"y":43.956},{"x":1753512301660,"y":53.678},{"x":1753512241525,"y":67.871},{"x":1753512181373,"y":52.34},{"x":1753512121234,"y":56.968},{"x":1753512061077,"y":49.344},{"x":1753512000936,"y":43.586},{"x":1753511940727,"y":56.428},{"x":1753511880602,"y":38.764},{"x":1753511820487,"y":43.464},{"x":1753511760330,"y":59.104},{"x":1753511700140,"y":53.094},{"x":1753511642886,"y":55.348},{"x":1753511582740,"y":49.102},{"x":1753511522610,"y":48.119},{"x":1753511462440,"y":51.943},{"x":1753511402266,"y":37.924},{"x":1753511342118,"y":56.902},{"x":1753511281937,"y":51.956},{"x":1753511221781,"y":56.305},{"x":1753511161491,"y":40.013},{"x":1753511101343,"y":52.19},{"x":1753511041202,"y":57.845},{"x":1753510981042,"y":53.102},{"x":1753510920491,"y":52.078},{"x":1753510862680,"y":43.28},{"x":1753510802549,"y":38.538},{"x":1753510742406,"y":37.206},{"x":1753510682269,"y":36.986},{"x":1753510622129,"y":37.037},{"x":1753510561980,"y":44.108},{"x":1753510501842,"y":46.235},{"x":1753510441699,"y":45.371},{"x":1753510381564,"y":45.685},{"x":1753510321431,"y":36.853},{"x":1753510261294,"y":29.436},{"x":1753510201160,"y":37.027},{"x":1753510140994,"y":30.746},{"x":1753510080629,"y":34.954},{"x":1753510020508,"y":34.602},{"x":1753509960293,"y":32.182},{"x":1753509900167,"y":29.353},{"x":1753509842908,"y":28.387},{"x":1753509782756,"y":27.886},{"x":1753509722619,"y":35.566},{"x":1753509662471,"y":32.285},{"x":1753509600838,"y":36.476},{"x":1753509540548,"y":39.394},{"x":1753509480467,"y":31.072},{"x":1753509420269,"y":29.418},{"x":1753509362958,"y":26.776},{"x":1753509302817,"y":27.823},{"x":1753509242677,"y":31.624},{"x":1753509182529,"y":29.38},{"x":1753509122391,"y":30.605},{"x":1753509062235,"y":29.707},{"x":1753509001322,"y":32.729},{"x":1753508941156,"y":32.323},{"x":1753508881016,"y":36.636},{"x":1753508820870,"y":35.496},{"x":1753508760729,"y":48.023},{"x":1753508700841,"y":44.788},{"x":1753508640465,"y":54.121},{"x":1753508580287,"y":57.55},{"x":1753508520204,"y":52.655},{"x":1753508462903,"y":41.98},{"x":1753508402744,"y":44.683},{"x":1753508342576,"y":36.391},{"x":1753508282457,"y":38.438},{"x":1753508222295,"y":34.079},{"x":1753508162155,"y":32.309},{"x":1753508101995,"y":32.971},{"x":1753508041857,"y":33.353},{"x":1753507981738,"y":33.074},{"x":1753507921586,"y":36.86},{"x":1753507861455,"y":34.474},{"x":1753507801258,"y":34.466},{"x":1753507741081,"y":40.724},{"x":1753507680924,"y":44.544},{"x":1753507620901,"y":47.226},{"x":1753507560757,"y":43.835},{"x":1753507500613,"y":42.038},{"x":1753507440525,"y":31.368},{"x":1753507383018,"y":30.821},{"x":1753507322866,"y":30.994},{"x":1753507262510,"y":34.47},{"x":1753507202363,"y":36.085},{"x":1753507142203,"y":33.839},{"x":1753507082056,"y":34.528},{"x":1753507021901,"y":35.398},{"x":1753506961732,"y":38.711},{"x":1753506901562,"y":47.836},{"x":1753506841394,"y":48.318},{"x":1753506781250,"y":49.78},{"x":1753506721110,"y":47.873},{"x":1753506660939,"y":50.042},{"x":1753506600826,"y":35.014},{"x":1753506540599,"y":33.475},{"x":1753506482775,"y":33.439},{"x":1753506422618,"y":34.607},{"x":1753506362474,"y":32.976},{"x":1753506302329,"y":34.104},{"x":1753506242183,"y":34.645},{"x":1753506182036,"y":31.732},{"x":1753506121884,"y":33.211},{"x":1753506061747,"y":50.244},{"x":1753506001867,"y":44.97},{"x":1753505941679,"y":48.793},{"x":1753505881539,"y":46.765},{"x":1753505821385,"y":43.638},{"x":1753505761231,"y":34.535},{"x":1753505701092,"y":34.788},{"x":1753505640929,"y":39.215},{"x":1753505580795,"y":35.884},{"x":1753505520718,"y":52.259},{"x":1753505460530,"y":64.235},{"x":1753505400452,"y":64.016},{"x":1753505340217,"y":64.535},{"x":1753505282845,"y":64.674},{"x":1753505222698,"y":56.23},{"x":1753505162547,"y":53.491},{"x":1753505102399,"y":54.071},{"x":1753505042272,"y":52.36},{"x":1753504982114,"y":44.563},{"x":1753504921959,"y":30.85},{"x":1753504861794,"y":36.244},{"x":1753504801656,"y":36.708},{"x":1753504741519,"y":37.391},{"x":1753504681377,"y":39.114},{"x":1753504621236,"y":36.928},{"x":1753504561084,"y":36.002},{"x":1753504500936,"y":38.13},{"x":1753504440785,"y":33.802},{"x":1753504380644,"y":33.982},{"x":1753504320572,"y":45.691},{"x":1753504260371,"y":38.029},{"x":1753504200219,"y":40.774},{"x":1753504142889,"y":42.583},{"x":1753504082608,"y":37.48},{"x":1753504022460,"y":34.57},{"x":1753503962326,"y":35.746},{"x":1753503902200,"y":35.36},{"x":1753503842070,"y":38.905},{"x":1753503781915,"y":34.831},{"x":1753503721773,"y":35.848},{"x":1753503661628,"y":46.061},{"x":1753503601484,"y":46.332},{"x":1753503541347,"y":44.274},{"x":1753503481207,"y":43.921},{"x":1753503421029,"y":45.372},{"x":1753503360825,"y":44.212},{"x":1753503300743,"y":52.981},{"x":1753503242952,"y":50.268},{"x":1753503182845,"y":53.243},{"x":1753503122682,"y":47.194},{"x":1753503062565,"y":50.802},{"x":1753503002399,"y":47.962},{"x":1753502942632,"y":46.445},{"x":1753502881246,"y":51.77},{"x":1753502821105,"y":40.879},{"x":1753502760947,"y":41.164},{"x":1753502700805,"y":41.279},{"x":1753502640694,"y":39.542},{"x":1753502580404,"y":44.321},{"x":1753502522997,"y":40.924},{"x":1753502462831,"y":46.654},{"x":1753502401733,"y":47.01},{"x":1753502341267,"y":48.443},{"x":1753502281121,"y":52.962},{"x":1753502220963,"y":45.338},{"x":1753502160834,"y":45.352},{"x":1753502100727,"y":47.3},{"x":1753502040595,"y":46.178},{"x":1753501980435,"y":43.801},{"x":1753501920251,"y":42.779},{"x":1753501862969,"y":47.101},{"x":1753501802822,"y":43.996},{"x":1753501742696,"y":42.94},{"x":1753501682548,"y":46.681},{"x":1753501622400,"y":44.632},{"x":1753501562261,"y":44.749},{"x":1753501502107,"y":44.504},{"x":1753501441948,"y":40.992},{"x":1753501381807,"y":41.576},{"x":1753501321670,"y":45.75},{"x":1753501261540,"y":41.196},{"x":1753501201405,"y":46.415},{"x":1753501141249,"y":46.565},{"x":1753501081105,"y":56.011},{"x":1753501020938,"y":59.8},{"x":1753500960806,"y":50.744},{"x":1753500900698,"y":52.079},{"x":1753500840526,"y":43.633},{"x":1753500780421,"y":41.756},{"x":1753500720367,"y":47.621},{"x":1753500662941,"y":41.224},{"x":1753500602798,"y":41.234},{"x":1753500542660,"y":39.222},{"x":1753500482496,"y":40.307},{"x":1753500422348,"y":39.574},{"x":1753500362200,"y":40.159},{"x":1753500302046,"y":42.536},{"x":1753500241899,"y":44.778},{"x":1753500181751,"y":51.653},{"x":1753500121607,"y":54.421},{"x":1753500061469,"y":57.223},{"x":1753500001333,"y":42.936},{"x":1753499941188,"y":48.574},{"x":1753499881062,"y":48.379},{"x":1753499820904,"y":45.352},{"x":1753499760735,"y":40.568},{"x":1753499700602,"y":41.12},{"x":1753499640503,"y":41.796},{"x":1753499580199,"y":42.481},{"x":1753499522961,"y":45.709},{"x":1753499462803,"y":49.829},{"x":1753499402667,"y":46.926},{"x":1753499340234,"y":45.724},{"x":1753499280533,"y":45.551},{"x":1753499220344,"y":41.455},{"x":1753499160135,"y":41.668},{"x":1753499102934,"y":42.235},{"x":1753499047275,"y":41.062},{"x":1753499041265,"y":46.754},{"x":1753498741604,"y":50.881},{"x":1753498681430,"y":38.327},{"x":1753498621287,"y":37.159},{"x":1753498561140,"y":38.58},{"x":1753498500977,"y":41.378},{"x":1753498440821,"y":33.608},{"x":1753498380680,"y":35.012},{"x":1753498320612,"y":35.425},{"x":1753498260423,"y":33.145},{"x":1753498200239,"y":35.579},{"x":1753498142943,"y":35.093},{"x":1753498082803,"y":36.15},{"x":1753498022662,"y":36.054},{"x":1753497962528,"y":36.695},{"x":1753497902372,"y":44.016},{"x":1753497842232,"y":49.624},{"x":1753497782046,"y":50.806},{"x":1753497721885,"y":51.55},{"x":1753497661740,"y":49.89},{"x":1753497601600,"y":46.888},{"x":1753497541461,"y":39.329},{"x":1753497481289,"y":36.786},{"x":1753497421159,"y":33.967},{"x":1753497361008,"y":35.074},{"x":1753497300862,"y":33.956},{"x":1753497240710,"y":38.006},{"x":1753497180557,"y":37.892},{"x":1753497120531,"y":38.316},{"x":1753497060195,"y":40.787},{"x":1753497002943,"y":38.149},{"x":1753496942818,"y":37.379},{"x":1753496882646,"y":38.195},{"x":1753496822494,"y":37.351},{"x":1753496762352,"y":40.052},{"x":1753496702196,"y":37.199},{"x":1753496642035,"y":40.121},{"x":1753496581881,"y":39.388},{"x":1753496521745,"y":37.294},{"x":1753496461626,"y":43.805},{"x":1753496401469,"y":41.516},{"x":1753496341315,"y":45.55},{"x":1753496281173,"y":44.708},{"x":1753496221018,"y":40.916},{"x":1753496160869,"y":36.082},{"x":1753496100748,"y":37.3},{"x":1753496040607,"y":39.996},{"x":1753495980483,"y":34.691},{"x":1753495920322,"y":38.446},{"x":1753495862926,"y":36.398},{"x":1753495802783,"y":38.646},{"x":1753495742636,"y":36.82},{"x":1753495682494,"y":35.539},{"x":1753495622360,"y":41.95},{"x":1753495562208,"y":41.377},{"x":1753495502075,"y":42.708},{"x":1753495441921,"y":42.274},{"x":1753495381792,"y":39.724},{"x":1753495321642,"y":37.886},{"x":1753495261511,"y":39.142},{"x":1753495200859,"y":37.06},{"x":1753495140402,"y":37.262},{"x":1753495080265,"y":41.854},{"x":1753495022951,"y":45.216},{"x":1753494962816,"y":39.28},{"x":1753494902676,"y":38.905},{"x":1753494842532,"y":36.766},{"x":1753494782399,"y":36.155},{"x":1753494722256,"y":39.113},{"x":1753494662117,"y":35.184},{"x":1753494601962,"y":35.82},{"x":1753494541825,"y":35.94},{"x":1753494481694,"y":34.756},{"x":1753494421547,"y":38.874},{"x":1753494361406,"y":33.556},{"x":1753494301287,"y":33.228},{"x":1753494241159,"y":32.32},{"x":1753494180975,"y":40.75},{"x":1753494120835,"y":40.252},{"x":1753494060697,"y":40.134},{"x":1753494000600,"y":42.274},{"x":1753493940428,"y":39.442},{"x":1753493880228,"y":37.208},{"x":1753493822708,"y":40.722},{"x":1753493762569,"y":40.267},{"x":1753493702452,"y":40.452},{"x":1753493642282,"y":47.814},{"x":1753493582147,"y":48.03},{"x":1753493521983,"y":44.988},{"x":1753493461826,"y":46.74},{"x":1753493401428,"y":47.822},{"x":1753493341197,"y":36.922},{"x":1753493281033,"y":35.777},{"x":1753493220872,"y":34.423},{"x":1753493160738,"y":38.659},{"x":1753493100675,"y":34.082},{"x":1753493040440,"y":33.203},{"x":1753492980226,"y":36.176},{"x":1753492922996,"y":36.053},{"x":1753492862479,"y":41.549},{"x":1753492802319,"y":36.599},{"x":1753492742183,"y":36.212},{"x":1753492682027,"y":38.236},{"x":1753492621884,"y":38.057},{"x":1753492561726,"y":39.454},{"x":1753492501545,"y":32.538},{"x":1753492441392,"y":31.856},{"x":1753492381252,"y":34.231},{"x":1753492321113,"y":43.444},{"x":1753492260944,"y":44.336},{"x":1753492200827,"y":44.155},{"x":1753492140613,"y":44.994},{"x":1753492082873,"y":41.352},{"x":1753492022730,"y":41.82},{"x":1753491962588,"y":42.263},{"x":1753491902437,"y":41.724},{"x":1753491842293,"y":36.977},{"x":1753491782151,"y":35.905},{"x":1753491721994,"y":33.365},{"x":1753491661814,"y":33.305},{"x":1753491601843,"y":41.977},{"x":1753491541586,"y":42.803},{"x":1753491481441,"y":42.479},{"x":1753491421279,"y":41.94},{"x":1753491361122,"y":38.05},{"x":1753491300989,"y":40.16},{"x":1753491240810,"y":33.503},{"x":1753491180678,"y":33.566},{"x":1753491120623,"y":33.137},{"x":1753491060391,"y":34.366},{"x":1753491000277,"y":43.578},{"x":1753490942973,"y":37.085},{"x":1753490882701,"y":36.704},{"x":1753490822560,"y":37.046},{"x":1753490762416,"y":38.202},{"x":1753490702277,"y":38.372},{"x":1753490642134,"y":39.689},{"x":1753490581978,"y":36.936},{"x":1753490521832,"y":36.179},{"x":1753490461684,"y":33.63},{"x":1753490401553,"y":34.698},{"x":1753490341411,"y":39.6},{"x":1753490281269,"y":39.82},{"x":1753490221129,"y":39.302},{"x":1753490160972,"y":47.719},{"x":1753490100865,"y":44.927},{"x":1753490040652,"y":47.008},{"x":1753489980534,"y":48.049},{"x":1753489920415,"y":55.38},{"x":1753489860199,"y":44.9},{"x":1753489802935,"y":46.078},{"x":1753489742767,"y":51.304},{"x":1753489682552,"y":44.263},{"x":1753489622404,"y":36.847},{"x":1753489562276,"y":58.543},{"x":1753489502109,"y":45.78},{"x":1753489441945,"y":49.432},{"x":1753489381802,"y":45.469},{"x":1753489321660,"y":47.52},{"x":1753489261498,"y":45.359},{"x":1753489201363,"y":49.969},{"x":1753489141213,"y":52.183},{"x":1753489081056,"y":51.214},{"x":1753489020904,"y":46.592},{"x":1753488960759,"y":44.632},{"x":1753488900793,"y":44.252},{"x":1753488840530,"y":44.828},{"x":1753488780353,"y":43.48},{"x":1753488720181,"y":43.028},{"x":1753488662915,"y":43.909},{"x":1753488602773,"y":45.316},{"x":1753488542625,"y":45.806},{"x":1753488482478,"y":45.708},{"x":1753488422339,"y":46.714},{"x":1753488362190,"y":51.162},{"x":1753488302042,"y":47.612},{"x":1753488241888,"y":48.125},{"x":1753488181750,"y":47.912},{"x":1753488121616,"y":45.298},{"x":1753488061488,"y":44.087},{"x":1753488001631,"y":45.14},{"x":1753487941362,"y":44.134},{"x":1753487881222,"y":45.365},{"x":1753487821004,"y":45.054},{"x":1753487760852,"y":42.607},{"x":1753487700721,"y":42.414},{"x":1753487640564,"y":50.372},{"x":1753487580465,"y":53.742},{"x":1753487520308,"y":46.986},{"x":1753487462995,"y":51.565},{"x":1753487402851,"y":44.918},{"x":1753487342704,"y":42.517},{"x":1753487282561,"y":45.44},{"x":1753487222408,"y":43.986},{"x":1753487162268,"y":39.388},{"x":1753487102131,"y":38.483},{"x":1753487041970,"y":36.174},{"x":1753486981833,"y":43.135},{"x":1753486921687,"y":40.478},{"x":1753486861546,"y":37.204},{"x":1753486801404,"y":38.707},{"x":1753486741249,"y":36.545},{"x":1753486681105,"y":42.023},{"x":1753486620949,"y":37.252},{"x":1753486560814,"y":41.117},{"x":1753486500684,"y":39.146},{"x":1753486440560,"y":34.48},{"x":1753486380441,"y":35.731},{"x":1753486320216,"y":44.252},{"x":1753486262983,"y":44.658},{"x":1753486202828,"y":44.384},{"x":1753486142680,"y":46.412},{"x":1753486082472,"y":50.017},{"x":1753486022297,"y":42.736},{"x":1753485962154,"y":41.34},{"x":1753485902014,"y":41.623},{"x":1753485841856,"y":39.334},{"x":1753485781714,"y":35.036},{"x":1753485721564,"y":33.688},{"x":1753485661425,"y":34.087},{"x":1753485601292,"y":34.244},{"x":1753485541177,"y":33.38},{"x":1753485480976,"y":41.381},{"x":1753485420845,"y":46.088},{"x":1753485360736,"y":41.725},{"x":1753485300621,"y":43.316},{"x":1753485240374,"y":40.924},{"x":1753485180114,"y":38.153},{"x":1753485122893,"y":44.476},{"x":1753485062742,"y":41.857},{"x":1753485002599,"y":42.078},{"x":1753484942459,"y":39.775},{"x":1753484882308,"y":38.802},{"x":1753484822156,"y":45.089},{"x":1753484761989,"y":37.618},{"x":1753484701853,"y":40.128},{"x":1753484641717,"y":40.267},{"x":1753484581589,"y":38.928},{"x":1753484521429,"y":51.685},{"x":1753484461309,"y":56.208},{"x":1753484401624,"y":64.645},{"x":1753484341384,"y":51.635},{"x":1753484281218,"y":51.954},{"x":1753484221071,"y":56.35},{"x":1753484160919,"y":51.518},{"x":1753484100781,"y":53.752},{"x":1753484040630,"y":49.832},{"x":1753483980525,"y":51.084},{"x":1753483920438,"y":59.404},{"x":1753483860234,"y":54.06},{"x":1753483802935,"y":53.305},{"x":1753483742792,"y":53.71},{"x":1753483682647,"y":57.818},{"x":1753483622537,"y":54.431},{"x":1753483562375,"y":54.587},{"x":1753483502235,"y":54.499},{"x":1753483442093,"y":52.052},{"x":1753483381931,"y":49.572},{"x":1753483321792,"y":52.074},{"x":1753483261649,"y":51.493},{"x":1753483201521,"y":54.844},{"x":1753483141377,"y":54.964},{"x":1753483081237,"y":53.221},{"x":1753483021046,"y":55.729},{"x":1753482960894,"y":53.138},{"x":1753482900758,"y":53.731},{"x":1753482840607,"y":52.903},{"x":1753482780513,"y":53.46},{"x":1753482720334,"y":49.912},{"x":1753482660103,"y":51.902},{"x":1753482602893,"y":51.584},{"x":1753482542688,"y":50.843},{"x":1753482482550,"y":61.12},{"x":1753482422390,"y":68.297},{"x":1753482362245,"y":73.832},{"x":1753482302100,"y":70.338},{"x":1753482241953,"y":61.478},{"x":1753482181785,"y":52.71},{"x":1753482121631,"y":46.861},{"x":1753482061491,"y":51.961},{"x":1753482001352,"y":50.812},{"x":1753481941211,"y":52.422},{"x":1753481881020,"y":50.231},{"x":1753481820871,"y":47.79},{"x":1753481760723,"y":60.029},{"x":1753481700636,"y":56.782},{"x":1753481640434,"y":57.463},{"x":1753481580283,"y":62.113},{"x":1753481522943,"y":68.246},{"x":1753481462797,"y":61.538},{"x":1753481402649,"y":60.104},{"x":1753481342384,"y":59.339},{"x":1753481282252,"y":57.66},{"x":1753481222103,"y":54.724},{"x":1753481161948,"y":58.103},{"x":1753481101805,"y":52.996},{"x":1753481041649,"y":56.815},{"x":1753480981503,"y":53.88},{"x":1753480921360,"y":56.26},{"x":1753480861224,"y":62.49},{"x":1753480802932,"y":56.683},{"x":1753480742787,"y":56.929},{"x":1753480682634,"y":66.658},{"x":1753480622480,"y":59.479},{"x":1753480562337,"y":79.333},{"x":1753480502207,"y":57.774},{"x":1753480442056,"y":62.968},{"x":1753480381889,"y":72.14},{"x":1753480321745,"y":74.616},{"x":1753480261604,"y":76.868},{"x":1753480201457,"y":70.949},{"x":1753480141318,"y":67.639},{"x":1753480081172,"y":58.037},{"x":1753480021019,"y":58.087},{"x":1753479960871,"y":55.445},{"x":1753479900964,"y":59.134},{"x":1753479840653,"y":59.503},{"x":1753479780437,"y":60.3},{"x":1753479720284,"y":73.318},{"x":1753479662925,"y":65.501},{"x":1753479602779,"y":61.07},{"x":1753479542638,"y":74.396},{"x":1753479482481,"y":88.007},{"x":1753479422335,"y":84.41},{"x":1753479362189,"y":85.127},{"x":1753479302033,"y":102.277},{"x":1753479241878,"y":66.299},{"x":1753479181743,"y":55.404},{"x":1753479121601,"y":66.378},{"x":1753479061454,"y":59.141},{"x":1753479001324,"y":57.731},{"x":1753478941152,"y":55.789},{"x":1753478880973,"y":74.953},{"x":1753478820810,"y":75.33},{"x":1753478760664,"y":82.559},{"x":1753478700572,"y":72.559},{"x":1753478640402,"y":69.384},{"x":1753478580235,"y":59.068},{"x":1753478522948,"y":42.223},{"x":1753478462471,"y":41.28},{"x":1753478402331,"y":42.82},{"x":1753478342192,"y":48.516},{"x":1753478282034,"y":53.323},{"x":1753478221890,"y":54.948},{"x":1753478161712,"y":59.267},{"x":1753478101506,"y":53.832},{"x":1753478041352,"y":52.603},{"x":1753477981219,"y":55.246},{"x":1753477921064,"y":45.726},{"x":1753477860916,"y":63.703},{"x":1753477800812,"y":43.723},{"x":1753477740630,"y":47.278},{"x":1753477682723,"y":50.065},{"x":1753477622520,"y":46.104},{"x":1753477562338,"y":50.707},{"x":1753477502189,"y":53.1},{"x":1753477442043,"y":49.457},{"x":1753477381887,"y":68.146},{"x":1753477321745,"y":50.306},{"x":1753477261604,"y":43.663},{"x":1753477201138,"y":44.232},{"x":1753477140796,"y":43.692},{"x":1753477080662,"y":48.379},{"x":1753477020536,"y":47.506},{"x":1753476960383,"y":49.396},{"x":1753476900281,"y":54.53},{"x":1753476842958,"y":62.204},{"x":1753476782814,"y":52.271},{"x":1753476722661,"y":52.585},{"x":1753476662507,"y":56.429},{"x":1753476602277,"y":48.132},{"x":1753476542139,"y":51.382},{"x":1753476481993,"y":46.914},{"x":1753476421856,"y":66.016},{"x":1753476361726,"y":54.125},{"x":1753476301504,"y":54.668},{"x":1753476241355,"y":62.806},{"x":1753476181214,"y":59.881},{"x":1753476121067,"y":72.779},{"x":1753476060945,"y":63.842},{"x":1753476000909,"y":50.87},{"x":1753475940636,"y":53.896},{"x":1753475880544,"y":51.565},{"x":1753475820391,"y":52.235},{"x":1753475762889,"y":52.915},{"x":1753475702734,"y":55.567},{"x":1753475642601,"y":50.305},{"x":1753475582421,"y":48.889},{"x":1753475522284,"y":50.039},{"x":1753475462130,"y":47.527},{"x":1753475401944,"y":53.218},{"x":1753475341762,"y":47.622},{"x":1753475281613,"y":52.04},{"x":1753475221479,"y":49.504},{"x":1753475161334,"y":52.474},{"x":1753475101189,"y":50.993},{"x":1753475041027,"y":52.801},{"x":1753474980875,"y":48.415},{"x":1753474920198,"y":48.379},{"x":1753474862941,"y":49.608},{"x":1753474802793,"y":51.941},{"x":1753474742650,"y":54.316},{"x":1753474682455,"y":54.45},{"x":1753474622309,"y":52.561},{"x":1753474562158,"y":55.344},{"x":1753474502003,"y":50.42},{"x":1753474441852,"y":54.037},{"x":1753474381706,"y":54.708},{"x":1753474321552,"y":44.542},{"x":1753474261397,"y":50.466},{"x":1753474201260,"y":59.384},{"x":1753474141102,"y":47.778},{"x":1753474080950,"y":48.95},{"x":1753474020799,"y":65.831},{"x":1753473960667,"y":75.652},{"x":1753473900596,"y":76.67},{"x":1753473840479,"y":71.059},{"x":1753473780313,"y":68.435},{"x":1753473722992,"y":64.206},{"x":1753473662856,"y":54.235},{"x":1753473601364,"y":56.864},{"x":1753473540967,"y":54.224},{"x":1753473480821,"y":50.302},{"x":1753473420683,"y":58.292},{"x":1753473360617,"y":58.252},{"x":1753473300392,"y":61.962},{"x":1753473240256,"y":75.152},{"x":1753473182875,"y":66.739},{"x":1753473122732,"y":52.582},{"x":1753473062580,"y":46.237},{"x":1753473002437,"y":50.665},{"x":1753472942287,"y":52.553},{"x":1753472882127,"y":62.413},{"x":1753472821890,"y":60.632},{"x":1753472761752,"y":57.107},{"x":1753472701613,"y":66.115},{"x":1753472641469,"y":60.068},{"x":1753472581320,"y":52.238},{"x":1753472521173,"y":56.983},{"x":1753472461015,"y":50.242},{"x":1753472400893,"y":47.051},{"x":1753472340710,"y":50.664},{"x":1753472280572,"y":76.253},{"x":1753472220490,"y":60.791},{"x":1753472162835,"y":62.111},{"x":1753472102687,"y":57.503},{"x":1753472042546,"y":54.264},{"x":1753471982402,"y":45.6},{"x":1753471922252,"y":54.172},{"x":1753471862089,"y":47.203},{"x":1753471801937,"y":51.74},{"x":1753471741715,"y":52.978},{"x":1753471681579,"y":50.975},{"x":1753471621426,"y":50.618},{"x":1753471561295,"y":66.277},{"x":1753471501170,"y":50.656},{"x":1753471441014,"y":67.841},{"x":1753471380856,"y":62.106},{"x":1753471320728,"y":69.172},{"x":1753471260619,"y":72.334},{"x":1753471200463,"y":75.9},{"x":1753471140249,"y":60.054},{"x":1753471082895,"y":77.363},{"x":1753471022760,"y":49.999},{"x":1753470962538,"y":49.693},{"x":1753470902394,"y":46.903},{"x":1753470842253,"y":43.315},{"x":1753470782114,"y":49.35},{"x":1753470721958,"y":58.025},{"x":1753470661815,"y":54.199},{"x":1753470601686,"y":52.069},{"x":1753470541545,"y":51.755},{"x":1753470481408,"y":59.556},{"x":1753470421279,"y":46.228},{"x":1753470361140,"y":50.473},{"x":1753470300986,"y":45.188},{"x":1753470240868,"y":47.694},{"x":1753470180687,"y":43.458},{"x":1753470120569,"y":51.304},{"x":1753470060488,"y":49.171},{"x":1753470001403,"y":47.694},{"x":1753469940855,"y":44.716},{"x":1753469880711,"y":53.4},{"x":1753469820578,"y":41.86},{"x":1753469760459,"y":40.645},{"x":1753469700219,"y":62.174},{"x":1753469642893,"y":67.037},{"x":1753469582758,"y":66.06},{"x":1753469522586,"y":67.572},{"x":1753469462445,"y":75.066},{"x":1753469402298,"y":47.62},{"x":1753469342156,"y":59.016},{"x":1753469282008,"y":54.414},{"x":1753469221866,"y":53.252},{"x":1753469161722,"y":45.992},{"x":1753469101555,"y":62.24},{"x":1753469041410,"y":55.264},{"x":1753468981265,"y":56.234},{"x":1753468921126,"y":55.832},{"x":1753468860947,"y":53.971},{"x":1753468800854,"y":48.505},{"x":1753468740651,"y":57.988},{"x":1753468680539,"y":43.776},{"x":1753468620374,"y":54.64},{"x":1753468562931,"y":57.935},{"x":1753468502789,"y":67.613},{"x":1753468442635,"y":58.943},{"x":1753468382497,"y":66.76},{"x":1753468322356,"y":40.972},{"x":1753468262221,"y":38.566},{"x":1753468202088,"y":42.012},{"x":1753468141938,"y":48.205},{"x":1753468081778,"y":45.029},{"x":1753468021619,"y":43.501},{"x":1753467961484,"y":42.194},{"x":1753467901328,"y":64.247},{"x":1753467841118,"y":64.82},{"x":1753467780960,"y":62.044},{"x":1753467720705,"y":72.667},{"x":1753467660565,"y":74.368},{"x":1753467600601,"y":65.29},{"x":1753467540280,"y":58.057},{"x":1753467482911,"y":60.864},{"x":1753467422762,"y":50.218},{"x":1753467362523,"y":52.88},{"x":1753467302371,"y":55.091},{"x":1753467242214,"y":69.508},{"x":1753467182063,"y":54.654},{"x":1753467121905,"y":55.175},{"x":1753467061766,"y":54.9},{"x":1753467001620,"y":52.834},{"x":1753466941479,"y":56.704},{"x":1753466881338,"y":57.983},{"x":1753466821219,"y":53.347},{"x":1753466761026,"y":51.158},{"x":1753466700870,"y":51.832},{"x":1753466640732,"y":55.988},{"x":1753466580609,"y":72.342},{"x":1753466520552,"y":76.578},{"x":1753466460300,"y":82.128},{"x":1753466400529,"y":74.856},{"x":1753466340343,"y":62.48},{"x":1753466282949,"y":47.614},{"x":1753466222818,"y":53.302},{"x":1753466162670,"y":46.84},{"x":1753466102519,"y":53.846},{"x":1753466042239,"y":57.234},{"x":1753465982096,"y":63.378},{"x":1753465921923,"y":60.331},{"x":1753465861780,"y":56.912},{"x":1753465801326,"y":64.477},{"x":1753465741182,"y":52.787},{"x":1753465681015,"y":57.11},{"x":1753465620833,"y":67.842},{"x":1753465560688,"y":64.997},{"x":1753465500666,"y":61.062},{"x":1753465440163,"y":60.862},{"x":1753465382965,"y":51.806},{"x":1753465322825,"y":51.108},{"x":1753465262674,"y":50.374},{"x":1753465202553,"y":46.625},{"x":1753465142287,"y":57.98},{"x":1753465082134,"y":55.319},{"x":1753465022000,"y":55.476},{"x":1753464961424,"y":62.837},{"x":1753464901289,"y":51.673},{"x":1753464841115,"y":41.512},{"x":1753464780960,"y":39.377},{"x":1753464720826,"y":51.34},{"x":1753464660654,"y":44.71},{"x":1753464600503,"y":44.806},{"x":1753464540345,"y":48.247},{"x":1753464482998,"y":63.966},{"x":1753464422877,"y":49.175},{"x":1753464362705,"y":49.373},{"x":1753464302558,"y":51.37},{"x":1753464242168,"y":60.103},{"x":1753464182012,"y":64.13},{"x":1753464121869,"y":69.598},{"x":1753464061761,"y":51.774},{"x":1753464001586,"y":52.308},{"x":1753463941438,"y":40.277},{"x":1753463881293,"y":59.777},{"x":1753463821153,"y":69.383},{"x":1753463760987,"y":46.187},{"x":1753463700894,"y":53.952},{"x":1753463640691,"y":52.597},{"x":1753463580604,"y":44.059},{"x":1753463520474,"y":49.324},{"x":1753463460216,"y":47.891},{"x":1753463402946,"y":40.777},{"x":1753463342790,"y":34.008},{"x":1753463282628,"y":45.416},{"x":1753463222487,"y":35.569},{"x":1753463162341,"y":37.045},{"x":1753463102193,"y":43.033},{"x":1753463042043,"y":51.299},{"x":1753462981849,"y":64.027},{"x":1753462921711,"y":46.969},{"x":1753462861560,"y":52.393},{"x":1753462802011,"y":56.206},{"x":1753462741164,"y":54.924},{"x":1753462681012,"y":59.227},{"x":1753462620864,"y":57.868},{"x":1753462560719,"y":62.976},{"x":1753462500604,"y":64.778},{"x":1753462440290,"y":62.491},{"x":1753462382973,"y":68.004},{"x":1753462322836,"y":40.078},{"x":1753462262686,"y":43.831},{"x":1753462202535,"y":48.947},{"x":1753462142389,"y":42.076},{"x":1753462082244,"y":60.182},{"x":1753462022090,"y":48.922},{"x":1753461961935,"y":55.088},{"x":1753461901780,"y":55.289},{"x":1753461841630,"y":59.292},{"x":1753461781489,"y":51.12},{"x":1753461721345,"y":41.549},{"x":1753461661198,"y":49.2},{"x":1753461601056,"y":74.476},{"x":1753461540881,"y":50.902},{"x":1753461480739,"y":48.715},{"x":1753461420619,"y":40.224},{"x":1753461360491,"y":38.332},{"x":1753461300456,"y":37.373},{"x":1753461242996,"y":37.482},{"x":1753461182862,"y":41.771},{"x":1753461122705,"y":54.064},{"x":1753461062562,"y":50.376},{"x":1753461002413,"y":51.424},{"x":1753460942260,"y":50.778},{"x":1753460882137,"y":58.849},{"x":1753460821918,"y":36.86},{"x":1753460761780,"y":36.631},{"x":1753460701641,"y":48.684},{"x":1753460641479,"y":48.558},{"x":1753460581339,"y":47.612},{"x":1753460521191,"y":46.706},{"x":1753460461031,"y":43.574},{"x":1753460400922,"y":42.989},{"x":1753460340728,"y":32.203},{"x":1753460280605,"y":39.664},{"x":1753460220744,"y":35.327},{"x":1753460160276,"y":39.354},{"x":1753460103010,"y":31.675},{"x":1753460042860,"y":30.398},{"x":1753459982715,"y":47.586},{"x":1753459922566,"y":47.821},{"x":1753459862413,"y":57.812},{"x":1753459802260,"y":69.854},{"x":1753459742116,"y":68.525},{"x":1753459681960,"y":59.598},{"x":1753459621800,"y":55.547},{"x":1753459561649,"y":51.364},{"x":1753459501498,"y":34.378},{"x":1753459441356,"y":32.056},{"x":1753459381217,"y":37.622},{"x":1753459321056,"y":39.324},{"x":1753459260917,"y":52.29},{"x":1753459201068,"y":50.095},{"x":1753459140664,"y":54.738},{"x":1753459080483,"y":47.893},{"x":1753459020343,"y":48.622},{"x":1753458960134,"y":33.523},{"x":1753458902917,"y":27.336},{"x":1753458842762,"y":49.055},{"x":1753458782601,"y":47.67},{"x":1753458722447,"y":46.398},{"x":1753458662289,"y":52.501},{"x":1753458602054,"y":56.478},{"x":1753458541853,"y":45.176},{"x":1753458481710,"y":40.039},{"x":1753458421577,"y":36.788},{"x":1753458361429,"y":35.83},{"x":1753458301353,"y":31.78},{"x":1753458241151,"y":41.042},{"x":1753458180984,"y":34.771},{"x":1753458120850,"y":37.049},{"x":1753458060707,"y":31.493},{"x":1753458000793,"y":34.853},{"x":1753457940404,"y":42.272},{"x":1753457883000,"y":33.316},{"x":1753457822676,"y":41.6},{"x":1753457762530,"y":41.353},{"x":1753457702380,"y":51.912},{"x":1753457642238,"y":73.95},{"x":1753457582076,"y":56.45},{"x":1753457521921,"y":59.1},{"x":1753457461755,"y":46.46},{"x":1753457401609,"y":31.93},{"x":1753457341055,"y":34.826},{"x":1753457280880,"y":49.008},{"x":1753457220733,"y":50.26},{"x":1753457160675,"y":57.92},{"x":1753457100443,"y":51.611},{"x":1753457040283,"y":58.886},{"x":1753456982998,"y":41.21},{"x":1753456922839,"y":28.139},{"x":1753456862467,"y":35.395},{"x":1753456802321,"y":37.61},{"x":1753456742177,"y":36.674},{"x":1753456682035,"y":38.215},{"x":1753456621881,"y":41.324},{"x":1753456561711,"y":39.036},{"x":1753456501583,"y":37.7},{"x":1753456441390,"y":29.359},{"x":1753456381246,"y":31.63},{"x":1753456321103,"y":35.624},{"x":1753456260920,"y":59.962},{"x":1753456200822,"y":38.638},{"x":1753456140627,"y":33.612},{"x":1753456082667,"y":31.542},{"x":1753456022502,"y":39.218},{"x":1753455962355,"y":27.455},{"x":1753455902215,"y":33.724},{"x":1753455842074,"y":25.561},{"x":1753455781925,"y":54.034},{"x":1753455721778,"y":53.216},{"x":1753455661648,"y":47.704},{"x":1753455600649,"y":50.014},{"x":1753455540438,"y":53.801},{"x":1753455480237,"y":32.018},{"x":1753455422918,"y":23.975},{"x":1753455362775,"y":32.028},{"x":1753455302620,"y":44.842},{"x":1753455242480,"y":49.153},{"x":1753455182326,"y":51.692},{"x":1753455122187,"y":43.068},{"x":1753455062045,"y":40.285},{"x":1753455001902,"y":33.293},{"x":1753454941754,"y":36.652},{"x":1753454881609,"y":36.408},{"x":1753454821456,"y":60.293},{"x":1753454761293,"y":43.104},{"x":1753454701182,"y":42.199},{"x":1753454640957,"y":51.848},{"x":1753454580823,"y":44.471},{"x":1753454520702,"y":35.128},{"x":1753454460577,"y":35.945},{"x":1753454400552,"y":29.561},{"x":1753454340282,"y":27.797},{"x":1753454282977,"y":30.404},{"x":1753454222713,"y":42.679},{"x":1753454162563,"y":40.567},{"x":1753454102366,"y":29.67},{"x":1753454042202,"y":27.74},{"x":1753453982057,"y":32.359},{"x":1753453921882,"y":33.026},{"x":1753453861732,"y":32.832},{"x":1753453801522,"y":40.158},{"x":1753453741352,"y":45.725},{"x":1753453681020,"y":70.919},{"x":1753453620874,"y":44.227},{"x":1753453560740,"y":41.094},{"x":1753453500625,"y":35.202},{"x":1753453440488,"y":35.352},{"x":1753453380315,"y":31.741},{"x":1753453323038,"y":36.648},{"x":1753453262866,"y":39.776},{"x":1753453202719,"y":58.565},{"x":1753453142571,"y":40.891},{"x":1753453082418,"y":38.484},{"x":1753453022270,"y":26.764},{"x":1753452962120,"y":27.704},{"x":1753452901956,"y":28.188},{"x":1753452841790,"y":30.901},{"x":1753452781654,"y":44.768},{"x":1753452721516,"y":45.133},{"x":1753452661374,"y":54.976},{"x":1753452601228,"y":52.249},{"x":1753452541069,"y":33.215},{"x":1753452480871,"y":27.997},{"x":1753452420727,"y":28.831},{"x":1753452360615,"y":26.546},{"x":1753452300522,"y":26.524},{"x":1753452240304,"y":34.222},{"x":1753452182978,"y":28.218},{"x":1753452122836,"y":33.851},{"x":1753452062681,"y":50.368},{"x":1753452002899,"y":47.614},{"x":1753451942745,"y":57.42},{"x":1753451882583,"y":70.818},{"x":1753451822429,"y":38.227},{"x":1753451762300,"y":48.65},{"x":1753451702142,"y":45.194},{"x":1753451641989,"y":47.618},{"x":1753451581846,"y":25.132},{"x":1753451521699,"y":31.42},{"x":1753451461556,"y":35.869},{"x":1753451401230,"y":29.297},{"x":1753451341039,"y":32.84},{"x":1753451280968,"y":42.248},{"x":1753451220798,"y":33.944},{"x":1753451160698,"y":28.36},{"x":1753451100869,"y":27.182},{"x":1753451040221,"y":36.109},{"x":1753450982965,"y":30.714},{"x":1753450922837,"y":46.763},{"x":1753450862667,"y":35.436},{"x":1753450802529,"y":30.478},{"x":1753450742139,"y":25.328},{"x":1753450681978,"y":26.783},{"x":1753450621839,"y":21.781},{"x":1753450561484,"y":22.657},{"x":1753450501342,"y":18.434},{"x":1753450441206,"y":20.594},{"x":1753450381003,"y":15.878},{"x":1753450320855,"y":25.422},{"x":1753450260709,"y":30.03},{"x":1753450200666,"y":37.386},{"x":1753450140289,"y":33.13},{"x":1753450082933,"y":30.586},{"x":1753450022788,"y":42.018},{"x":1753449962637,"y":44.327},{"x":1753449902533,"y":41.795},{"x":1753449842129,"y":34.405},{"x":1753449781963,"y":27.566},{"x":1753449721834,"y":19.561},{"x":1753449661694,"y":26.936},{"x":1753449601551,"y":41.761},{"x":1753449541406,"y":34.464},{"x":1753449481266,"y":38.791},{"x":1753449421127,"y":38.549},{"x":1753449360954,"y":44.207},{"x":1753449300807,"y":29.822},{"x":1753449240625,"y":35.489},{"x":1753449180603,"y":16.936},{"x":1753449120324,"y":23.395},{"x":1753449060223,"y":41.096},{"x":1753449002901,"y":58.788},{"x":1753448942752,"y":47.082},{"x":1753448882620,"y":49.655},{"x":1753448822465,"y":59.826},{"x":1753448762321,"y":34.382},{"x":1753448702182,"y":23.843},{"x":1753448642022,"y":31.325},{"x":1753448581865,"y":22.76},{"x":1753448521722,"y":17.564},{"x":1753448461575,"y":16.646},{"x":1753448401591,"y":21.728},{"x":1753448341267,"y":15.5},{"x":1753448281120,"y":11.0},{"x":1753448220957,"y":18.743},{"x":1753448160802,"y":27.311},{"x":1753448100706,"y":45.83},{"x":1753448040561,"y":48.376},{"x":1753447980360,"y":46.986},{"x":1753447923028,"y":50.393},{"x":1753447862886,"y":50.891},{"x":1753447802727,"y":47.431},{"x":1753447742581,"y":27.815},{"x":1753447682441,"y":29.561},{"x":1753447622301,"y":27.805},{"x":1753447562152,"y":39.702},{"x":1753447501973,"y":45.961},{"x":1753447441814,"y":37.078},{"x":1753447381683,"y":38.251},{"x":1753447321549,"y":45.179},{"x":1753447261391,"y":33.792},{"x":1753447201272,"y":32.804},{"x":1753447141108,"y":32.29},{"x":1753447080951,"y":36.048},{"x":1753447020811,"y":47.657},{"x":1753446960694,"y":47.383},{"x":1753446900644,"y":36.857},{"x":1753446840404,"y":49.978},{"x":1753446780422,"y":41.626},{"x":1753446722959,"y":26.171},{"x":1753446662796,"y":31.216},{"x":1753446602638,"y":34.368},{"x":1753446542497,"y":34.612},{"x":1753446482333,"y":33.083},{"x":1753446422196,"y":38.098},{"x":1753446362036,"y":37.193},{"x":1753446301891,"y":33.019},{"x":1753446241746,"y":40.352},{"x":1753446181564,"y":34.346},{"x":1753446121428,"y":34.135},{"x":1753446061290,"y":47.7},{"x":1753446001138,"y":34.103},{"x":1753445940966,"y":37.265},{"x":1753445880800,"y":45.566},{"x":1753445820681,"y":57.338},{"x":1753445760575,"y":39.824},{"x":1753445700351,"y":59.482},{"x":1753445640191,"y":55.158},{"x":1753445582922,"y":51.913},{"x":1753445522783,"y":65.352},{"x":1753445462641,"y":58.738},{"x":1753445402499,"y":55.447},{"x":1753445342159,"y":25.58},{"x":1753445281994,"y":29.551},{"x":1753445221850,"y":28.722},{"x":1753445161710,"y":32.158},{"x":1753445101557,"y":42.408},{"x":1753445041422,"y":37.35},{"x":1753444981285,"y":48.038},{"x":1753444921138,"y":57.024},{"x":1753444860982,"y":35.746},{"x":1753444801672,"y":37.454},{"x":1753444741142,"y":41.094},{"x":1753444680989,"y":43.609},{"x":1753444620855,"y":34.734},{"x":1753444560730,"y":19.457},{"x":1753444500683,"y":37.126},{"x":1753444440467,"y":47.173},{"x":1753444380281,"y":45.168},{"x":1753444322951,"y":39.896},{"x":1753444262821,"y":43.36},{"x":1753444201981,"y":33.012},{"x":1753444141813,"y":29.102},{"x":1753444081662,"y":30.233},{"x":1753444021513,"y":20.996},{"x":1753443961373,"y":34.334},{"x":1753443901242,"y":33.481},{"x":1753443841035,"y":32.963},{"x":1753443780892,"y":42.57},{"x":1753443720759,"y":33.743},{"x":1753443660633,"y":24.82},{"x":1753443600524,"y":22.104},{"x":1753443540281,"y":23.255},{"x":1753443480156,"y":22.67},{"x":1753443422743,"y":23.616},{"x":1753443362596,"y":25.982},{"x":1753443302442,"y":25.03},{"x":1753443242310,"y":28.565},{"x":1753443182152,"y":32.7},{"x":1753443121993,"y":28.661},{"x":1753443061850,"y":33.925},{"x":1753443001417,"y":40.903},{"x":1753442941215,"y":43.577},{"x":1753442881038,"y":43.571},{"x":1753442820883,"y":56.484},{"x":1753442760734,"y":60.647},{"x":1753442700630,"y":68.516},{"x":1753442640482,"y":55.026},{"x":1753442580382,"y":50.728},{"x":1753442522923,"y":38.006},{"x":1753442462579,"y":32.608},{"x":1753442402425,"y":27.166},{"x":1753442342276,"y":42.257},{"x":1753442282133,"y":47.172},{"x":1753442221975,"y":44.138},{"x":1753442161863,"y":50.485},{"x":1753442101541,"y":44.846},{"x":1753442041393,"y":23.11},{"x":1753441981241,"y":17.495},{"x":1753441921093,"y":48.188},{"x":1753441860936,"y":32.714},{"x":1753441800809,"y":50.999},{"x":1753441740641,"y":53.473},{"x":1753441682962,"y":55.844},{"x":1753441622825,"y":53.369},{"x":1753441562657,"y":49.823},{"x":1753441502507,"y":48.796},{"x":1753441442345,"y":44.689},{"x":1753441382207,"y":44.6},{"x":1753441322062,"y":46.453},{"x":1753441261927,"y":55.225},{"x":1753441203057,"y":43.037},{"x":1753441142811,"y":33.995},{"x":1753441082704,"y":23.946},{"x":1753441022517,"y":13.356},{"x":1753440962354,"y":14.912},{"x":1753440902203,"y":19.938},{"x":1753440842055,"y":23.102},{"x":1753440781901,"y":26.149},{"x":1753440721747,"y":9.652},{"x":1753440661603,"y":30.473},{"x":1753440601423,"y":19.507},{"x":1753440541291,"y":23.351},{"x":1753440481144,"y":27.864},{"x":1753440420983,"y":27.678},{"x":1753440360838,"y":35.066},{"x":1753440300804,"y":47.75},{"x":1753440240636,"y":41.19},{"x":1753440180449,"y":34.82},{"x":1753440120287,"y":30.901},{"x":1753440062935,"y":35.546},{"x":1753440002794,"y":14.31},{"x":1753439942651,"y":8.844},{"x":1753439882508,"y":11.063},{"x":1753439822363,"y":25.189},{"x":1753439762238,"y":18.041},{"x":1753439702091,"y":15.172},{"x":1753439641930,"y":17.5},{"x":1753439581799,"y":23.514},{"x":1753439521676,"y":23.842},{"x":1753439461532,"y":24.239},{"x":1753439401400,"y":31.184},{"x":1753439341152,"y":38.19},{"x":1753439281006,"y":24.401},{"x":1753439220852,"y":30.12},{"x":1753439160732,"y":28.414},{"x":1753439100588,"y":27.904},{"x":1753439040453,"y":33.068},{"x":1753438980277,"y":33.586},{"x":1753438922983,"y":37.506},{"x":1753438862524,"y":45.163},{"x":1753438802370,"y":46.404},{"x":1753438742198,"y":41.105},{"x":1753438682034,"y":39.841},{"x":1753438621878,"y":36.694},{"x":1753438561735,"y":35.42},{"x":1753438501532,"y":48.394},{"x":1753438441369,"y":32.053},{"x":1753438381246,"y":40.276},{"x":1753438321139,"y":40.009},{"x":1753438260926,"y":38.418},{"x":1753438201087,"y":37.344},{"x":1753438140663,"y":41.161},{"x":1753438082928,"y":47.674},{"x":1753438022766,"y":42.698},{"x":1753437962610,"y":40.332},{"x":1753437902457,"y":36.13},{"x":1753437842310,"y":52.073},{"x":1753437782161,"y":41.872},{"x":1753437722015,"y":43.02},{"x":1753437661861,"y":44.959},{"x":1753437601330,"y":45.164},{"x":1753437540932,"y":39.382},{"x":1753437480792,"y":51.667},{"x":1753437420669,"y":52.634},{"x":1753437360637,"y":35.513},{"x":1753437300274,"y":32.29},{"x":1753437242964,"y":33.072},{"x":1753437182831,"y":35.117},{"x":1753437122675,"y":46.364},{"x":1753437062533,"y":47.843},{"x":1753437002352,"y":59.796},{"x":1753436942198,"y":60.748},{"x":1753436882053,"y":65.554},{"x":1753436821895,"y":50.815},{"x":1753436761731,"y":43.802},{"x":1753436701509,"y":43.447},{"x":1753436641343,"y":43.181},{"x":1753436581195,"y":49.748},{"x":1753436521036,"y":42.252},{"x":1753436460878,"y":40.771},{"x":1753436400740,"y":44.116},{"x":1753436340553,"y":56.267},{"x":1753436282134,"y":40.247},{"x":1753436221982,"y":44.111},{"x":1753436161474,"y":60.805},{"x":1753436101338,"y":48.025},{"x":1753436041172,"y":47.035},{"x":1753435980997,"y":43.205},{"x":1753435920856,"y":54.745},{"x":1753435860715,"y":65.034},{"x":1753435800722,"y":50.807},{"x":1753435740508,"y":51.235},{"x":1753435681547,"y":49.961},{"x":1753435621389,"y":42.638},{"x":1753435573281,"y":43.955},{"x":1753435500957,"y":46.574},{"x":1753435440815,"y":54.959},{"x":1753435380679,"y":55.634},{"x":1753435320541,"y":61.195},{"x":1753435260278,"y":54.25},{"x":1753435200250,"y":61.426},{"x":1753435142895,"y":43.946},{"x":1753435082052,"y":38.828},{"x":1753435021900,"y":37.46},{"x":1753434961757,"y":37.717},{"x":1753434901544,"y":38.005},{"x":1753434841411,"y":36.928},{"x":1753434781277,"y":39.59},{"x":1753434721140,"y":48.794},{"x":1753434660977,"y":41.125},{"x":1753434600867,"y":46.828},{"x":1753434540684,"y":62.941},{"x":1753434482733,"y":45.685},{"x":1753434422590,"y":39.366},{"x":1753434362438,"y":45.914},{"x":1753434302294,"y":39.38},{"x":1753434242140,"y":37.354},{"x":1753434181980,"y":39.461},{"x":1753434121845,"y":37.057},{"x":1753434061712,"y":41.753},{"x":1753434000487,"y":41.664},{"x":1753433940410,"y":36.048},{"x":1753433882945,"y":48.404},{"x":1753433822787,"y":42.778},{"x":1753433762664,"y":43.921},{"x":1753433702494,"y":51.282},{"x":1753433642349,"y":46.457},{"x":1753433582209,"y":43.897},{"x":1753433522062,"y":55.078},{"x":1753433461897,"y":53.994},{"x":1753433401709,"y":63.406},{"x":1753433341557,"y":52.621},{"x":1753433281408,"y":66.152},{"x":1753433221256,"y":41.308},{"x":1753433161102,"y":46.246},{"x":1753433100961,"y":45.889},{"x":1753433040789,"y":41.879},{"x":1753432980642,"y":41.358},{"x":1753432920518,"y":39.092},{"x":1753432860417,"y":42.318},{"x":1753432800047,"y":37.697},{"x":1753432742875,"y":38.824},{"x":1753432682734,"y":35.497},{"x":1753432622588,"y":33.817},{"x":1753432562446,"y":39.756},{"x":1753432502299,"y":42.914},{"x":1753432442151,"y":43.604},{"x":1753432382025,"y":39.731},{"x":1753432321862,"y":42.463},{"x":1753432261719,"y":46.621},{"x":1753432201438,"y":50.471},{"x":1753432141277,"y":49.807},{"x":1753432081135,"y":50.629},{"x":1753432020946,"y":49.128},{"x":1753431960678,"y":57.958},{"x":1753431900590,"y":38.364},{"x":1753431840460,"y":36.924},{"x":1753431782982,"y":40.355},{"x":1753431722838,"y":40.993},{"x":1753431662527,"y":37.116},{"x":1753431602370,"y":37.043},{"x":1753431542224,"y":35.125},{"x":1753431482029,"y":43.272},{"x":1753431421883,"y":39.508},{"x":1753431361501,"y":37.004},{"x":1753431301372,"y":38.048},{"x":1753431241227,"y":35.153},{"x":1753431181078,"y":44.941},{"x":1753431120917,"y":37.814},{"x":1753431060769,"y":40.931},{"x":1753431000636,"y":41.515},{"x":1753430940494,"y":43.738},{"x":1753430882995,"y":38.419},{"x":1753430822849,"y":50.732},{"x":1753430762698,"y":31.372},{"x":1753430702553,"y":32.714},{"x":1753430642407,"y":37.121},{"x":1753430582281,"y":54.324},{"x":1753430522137,"y":54.619},{"x":1753430462006,"y":53.801},{"x":1753430401071,"y":54.052},{"x":1753430340545,"y":44.574},{"x":1753430280478,"y":53.712},{"x":1753430220244,"y":38.129},{"x":1753430162984,"y":53.348},{"x":1753430102843,"y":39.944},{"x":1753430042684,"y":44.681},{"x":1753429982537,"y":41.386},{"x":1753429922395,"y":38.365},{"x":1753429862234,"y":43.522},{"x":1753429802090,"y":40.974},{"x":1753429741938,"y":43.678},{"x":1753429681781,"y":39.695},{"x":1753429621641,"y":44.552},{"x":1753429561492,"y":44.801},{"x":1753429501355,"y":53.766},{"x":1753429441206,"y":49.488},{"x":1753429381048,"y":48.552},{"x":1753429320882,"y":58.446},{"x":1753429260720,"y":54.839},{"x":1753429200779,"y":45.878},{"x":1753429140456,"y":59.324},{"x":1753429080294,"y":45.264},{"x":1753429022623,"y":43.806},{"x":1753428962475,"y":44.635},{"x":1753428902324,"y":42.354},{"x":1753428842186,"y":37.979},{"x":1753428782041,"y":45.978},{"x":1753428721885,"y":49.805},{"x":1753428661733,"y":40.117},{"x":1753428601424,"y":52.01},{"x":1753428541267,"y":50.558},{"x":1753428481073,"y":53.92},{"x":1753428420914,"y":50.768},{"x":1753428360764,"y":51.403},{"x":1753428300639,"y":53.286},{"x":1753428240613,"y":52.057},{"x":1753428180276,"y":61.174},{"x":1753428123044,"y":61.145},{"x":1753428062646,"y":56.422},{"x":1753428002498,"y":48.45},{"x":1753427942358,"y":54.774},{"x":1753427882227,"y":53.76},{"x":1753427822088,"y":46.019},{"x":1753427761926,"y":51.708},{"x":1753427701766,"y":55.903},{"x":1753427641633,"y":59.238},{"x":1753427581479,"y":58.22},{"x":1753427521333,"y":58.706},{"x":1753427461183,"y":61.166},{"x":1753427401055,"y":64.009},{"x":1753427340858,"y":77.092},{"x":1753427280335,"y":53.809},{"x":1753427222958,"y":54.36},{"x":1753427162818,"y":57.662},{"x":1753427102636,"y":52.273},{"x":1753427042491,"y":51.644},{"x":1753426982352,"y":55.225},{"x":1753426922213,"y":49.15},{"x":1753426862085,"y":61.492},{"x":1753426800911,"y":51.193},{"x":1753426740423,"y":50.64},{"x":1753426680321,"y":54.682},{"x":1753426622956,"y":56.874},{"x":1753426562803,"y":56.555},{"x":1753426502655,"y":57.03},{"x":1753426442518,"y":53.359},{"x":1753426382373,"y":54.112},{"x":1753426322233,"y":49.45},{"x":1753426262081,"y":48.335},{"x":1753426201486,"y":55.73},{"x":1753426141329,"y":55.883},{"x":1753426081187,"y":54.322},{"x":1753426021020,"y":57.576},{"x":1753425960871,"y":54.702},{"x":1753425900835,"y":53.143},{"x":1753425840684,"y":64.89},{"x":1753425780503,"y":66.752},{"x":1753425720294,"y":54.455},{"x":1753425662978,"y":54.744},{"x":1753425602834,"y":69.079},{"x":1753425542668,"y":60.044},{"x":1753425482527,"y":56.054},{"x":1753425422379,"y":57.03},{"x":1753425362226,"y":57.911},{"x":1753425302080,"y":53.08},{"x":1753425241927,"y":57.578},{"x":1753425181759,"y":73.135},{"x":1753425121613,"y":61.668},{"x":1753425061451,"y":57.757},{"x":1753425001309,"y":53.374},{"x":1753424941110,"y":48.094},{"x":1753424880935,"y":47.723},{"x":1753424820784,"y":48.673},{"x":1753424760638,"y":51.725},{"x":1753424700587,"y":69.4},{"x":1753424640397,"y":69.427},{"x":1753424580087,"y":92.998},{"x":1753424522877,"y":81.246},{"x":1753424462528,"y":96.84},{"x":1753424402383,"y":74.978},{"x":1753424342233,"y":82.633},{"x":1753424282072,"y":66.252},{"x":1753424221918,"y":54.756},{"x":1753424161775,"y":73.003},{"x":1753424101650,"y":69.4},{"x":1753424041490,"y":70.942},{"x":1753423981350,"y":55.601},{"x":1753423921229,"y":50.302},{"x":1753423861040,"y":50.234},{"x":1753423800880,"y":48.31},{"x":1753423740687,"y":46.086},{"x":1753423680523,"y":50.436},{"x":1753423620360,"y":50.128},{"x":1753423562983,"y":56.734},{"x":1753423502830,"y":52.637},{"x":1753423442664,"y":51.42},{"x":1753423382521,"y":54.036},{"x":1753423322374,"y":50.353},{"x":1753423262220,"y":49.159},{"x":1753423203019,"y":49.009},{"x":1753423142845,"y":48.82},{"x":1753423082670,"y":48.845},{"x":1753423022514,"y":51.326},{"x":1753422962368,"y":46.818},{"x":1753422902220,"y":46.736},{"x":1753422842087,"y":44.674},{"x":1753422781934,"y":58.889},{"x":1753422721796,"y":61.909},{"x":1753422661656,"y":62.302},{"x":1753422601248,"y":60.784},{"x":1753422541102,"y":60.973},{"x":1753422480943,"y":47.299},{"x":1753422420810,"y":46.04},{"x":1753422360673,"y":53.629},{"x":1753422300715,"y":49.174},{"x":1753422240351,"y":48.319},{"x":1753422183032,"y":47.123},{"x":1753422122879,"y":52.882},{"x":1753422062752,"y":51.468},{"x":1753422002609,"y":45.101},{"x":1753421942476,"y":46.843},{"x":1753421882345,"y":44.299},{"x":1753421822203,"y":44.712},{"x":1753421762051,"y":42.954},{"x":1753421701901,"y":42.992},{"x":1753421641751,"y":42.541},{"x":1753421581620,"y":47.596},{"x":1753421521486,"y":49.775},{"x":1753421461360,"y":52.453},{"x":1753421401266,"y":56.208},{"x":1753421341086,"y":49.454},{"x":1753421280919,"y":50.218},{"x":1753421220775,"y":49.727},{"x":1753421160645,"y":49.63},{"x":1753421100580,"y":49.822},{"x":1753421040398,"y":45.077},{"x":1753420980272,"y":47.384},{"x":1753420922914,"y":44.59},{"x":1753420862455,"y":46.717},{"x":1753420802312,"y":53.408},{"x":1753420742175,"y":53.636},{"x":1753420682036,"y":55.541},{"x":1753420621877,"y":44.362},{"x":1753420561719,"y":45.961},{"x":1753420501464,"y":37.273},{"x":1753420441341,"y":38.987},{"x":1753420381210,"y":34.108},{"x":1753420321070,"y":33.21},{"x":1753420260895,"y":29.665},{"x":1753420200773,"y":31.18},{"x":1753420140623,"y":38.358},{"x":1753420082769,"y":34.784},{"x":1753420022634,"y":34.651},{"x":1753419962496,"y":36.412},{"x":1753419902340,"y":35.574},{"x":1753419842202,"y":28.163},{"x":1753419782074,"y":42.968},{"x":1753419721929,"y":28.543},{"x":1753419661792,"y":29.423},{"x":1753419600819,"y":30.778},{"x":1753419540311,"y":31.493},{"x":1753419480094,"y":35.737},{"x":1753419422879,"y":31.865},{"x":1753419362749,"y":30.962},{"x":1753419302608,"y":36.349},{"x":1753419242483,"y":36.094},{"x":1753419182358,"y":45.269},{"x":1753419122222,"y":43.41},{"x":1753419062100,"y":39.557},{"x":1753419001977,"y":37.202},{"x":1753418941803,"y":36.503},{"x":1753418881678,"y":40.535},{"x":1753418821544,"y":37.562},{"x":1753418761394,"y":49.301},{"x":1753418701345,"y":37.506},{"x":1753418641088,"y":37.65},{"x":1753418580962,"y":37.099},{"x":1753418520839,"y":58.12},{"x":1753418460688,"y":46.262},{"x":1753418400600,"y":46.558},{"x":1753418340455,"y":43.999},{"x":1753418280236,"y":43.127},{"x":1753418222909,"y":39.752},{"x":1753418162776,"y":34.562},{"x":1753418102641,"y":33.853},{"x":1753418042494,"y":36.326},{"x":1753417982375,"y":35.335},{"x":1753417922239,"y":38.717},{"x":1753417862111,"y":34.457},{"x":1753417801933,"y":33.75},{"x":1753417741850,"y":32.982},{"x":1753417681647,"y":41.407},{"x":1753417621507,"y":40.512},{"x":1753417561362,"y":38.689},{"x":1753417501230,"y":37.729},{"x":1753417441099,"y":34.0},{"x":1753417380950,"y":33.827},{"x":1753417320394,"y":35.018},{"x":1753417260235,"y":37.092},{"x":1753417202910,"y":35.25},{"x":1753417142759,"y":36.882},{"x":1753417082636,"y":36.127},{"x":1753417021318,"y":35.653},{"x":1753416960575,"y":38.279},{"x":1753416900475,"y":36.884},{"x":1753416842974,"y":50.591},{"x":1753416782851,"y":48.088},{"x":1753416722709,"y":48.155},{"x":1753416662585,"y":46.014},{"x":1753416602458,"y":48.745},{"x":1753416540385,"y":34.26},{"x":1753416481431,"y":34.441},{"x":1753416421295,"y":33.287},{"x":1753416361160,"y":34.771},{"x":1753416301033,"y":35.639},{"x":1753416240889,"y":35.096},{"x":1753416180757,"y":34.816},{"x":1753416120630,"y":36.493},{"x":1753416060651,"y":37.15},{"x":1753416001715,"y":41.724},{"x":1753415941132,"y":38.972},{"x":1753415880972,"y":41.536},{"x":1753415820842,"y":39.076},{"x":1753415760704,"y":38.73},{"x":1753415700587,"y":56.616},{"x":1753415640469,"y":38.356},{"x":1753415580232,"y":39.883},{"x":1753415523032,"y":41.02},{"x":1753415462888,"y":40.271},{"x":1753415402755,"y":36.672},{"x":1753415342614,"y":35.358},{"x":1753415282469,"y":33.288},{"x":1753415222315,"y":43.002},{"x":1753415162169,"y":42.302},{"x":1753415102009,"y":46.481},{"x":1753415041870,"y":50.473},{"x":1753414981743,"y":49.276},{"x":1753414921606,"y":38.99},{"x":1753414861484,"y":35.982},{"x":1753414801350,"y":35.424},{"x":1753414741225,"y":38.562},{"x":1753414681089,"y":44.89},{"x":1753414620936,"y":45.203},{"x":1753414560800,"y":45.341},{"x":1753414500697,"y":43.643},{"x":1753414440523,"y":44.13},{"x":1753414380437,"y":39.924},{"x":1753414320175,"y":39.552},{"x":1753414262927,"y":36.721},{"x":1753414202793,"y":36.496},{"x":1753414142649,"y":37.105},{"x":1753414082507,"y":36.194},{"x":1753414022365,"y":47.693},{"x":1753413962226,"y":47.051},{"x":1753413902089,"y":55.915},{"x":1753413841933,"y":52.296},{"x":1753413781798,"y":53.209},{"x":1753413721665,"y":38.948},{"x":1753413661536,"y":35.866},{"x":1753413601400,"y":34.594},{"x":1753413541255,"y":34.944},{"x":1753413481121,"y":38.748},{"x":1753413420965,"y":33.936},{"x":1753413360778,"y":37.769},{"x":1753413300700,"y":35.044},{"x":1753413240518,"y":34.928},{"x":1753413180486,"y":36.707},{"x":1753413120325,"y":40.398},{"x":1753413062954,"y":37.661},{"x":1753413002830,"y":36.553},{"x":1753412942825,"y":37.465},{"x":1753412880627,"y":32.692},{"x":1753412820424,"y":38.165},{"x":1753412760328,"y":32.1},{"x":1753412647373,"y":47.596},{"x":1753412641354,"y":39.425},{"x":1753412635307,"y":39.352},{"x":1753412340411,"y":39.199},{"x":1753412282978,"y":33.826},{"x":1753412222866,"y":37.262},{"x":1753412162672,"y":33.658},{"x":1753412102541,"y":34.254},{"x":1753412042176,"y":35.058},{"x":1753411982046,"y":35.111},{"x":1753411921901,"y":33.616},{"x":1753411861765,"y":36.419},{"x":1753411801259,"y":38.909},{"x":1753411741123,"y":37.133},{"x":1753411680979,"y":36.187},{"x":1753411620842,"y":35.242},{"x":1753411560697,"y":37.15},{"x":1753411500708,"y":32.802},{"x":1753411440370,"y":31.926},{"x":1753411380241,"y":32.686},{"x":1753411322964,"y":32.344},{"x":1753411262866,"y":35.099},{"x":1753411202703,"y":38.302},{"x":1753411142540,"y":40.357},{"x":1753411082407,"y":38.076},{"x":1753411022276,"y":34.271},{"x":1753410962135,"y":35.182},{"x":1753410901983,"y":34.375},{"x":1753410841852,"y":33.364},{"x":1753410781724,"y":33.922},{"x":1753410721592,"y":34.523},{"x":1753410661447,"y":34.253},{"x":1753410601313,"y":33.179},{"x":1753410541105,"y":31.624},{"x":1753410480981,"y":34.618},{"x":1753410420817,"y":34.848},{"x":1753410360666,"y":42.775},{"x":1753410300604,"y":43.224},{"x":1753410240423,"y":44.576},{"x":1753410180369,"y":38.515},{"x":1753410122984,"y":38.987},{"x":1753410062844,"y":36.655},{"x":1753410002714,"y":33.658},{"x":1753409942581,"y":39.481},{"x":1753409882053,"y":37.392},{"x":1753409821921,"y":38.89},{"x":1753409761782,"y":37.757},{"x":1753409701655,"y":36.464},{"x":1753409641515,"y":36.436},{"x":1753409581417,"y":35.659},{"x":1753409521251,"y":38.892},{"x":1753409461101,"y":36.746},{"x":1753409400951,"y":35.704},{"x":1753409340778,"y":35.458},{"x":1753409282741,"y":44.016},{"x":1753409222610,"y":52.688},{"x":1753409162478,"y":55.414},{"x":1753409102349,"y":55.244},{"x":1753409042217,"y":55.579},{"x":1753408982076,"y":54.09},{"x":1753408921930,"y":39.131},{"x":1753408861795,"y":35.16},{"x":1753408800950,"y":34.782},{"x":1753408740621,"y":40.034},{"x":1753408680508,"y":41.74},{"x":1753408620359,"y":39.049},{"x":1753408560223,"y":39.112},{"x":1753408502945,"y":38.742},{"x":1753408442813,"y":40.72},{"x":1753408382683,"y":39.456},{"x":1753408322550,"y":39.515},{"x":1753408262418,"y":37.894},{"x":1753408202284,"y":32.638},{"x":1753408142129,"y":33.3},{"x":1753408081991,"y":34.136},{"x":1753408021861,"y":33.642},{"x":1753407961730,"y":33.542},{"x":1753407901515,"y":34.588},{"x":1753407841388,"y":34.634},{"x":1753407781257,"y":35.796},{"x":1753407721117,"y":41.951},{"x":1753407660978,"y":36.53},{"x":1753407600887,"y":35.839},{"x":1753407540683,"y":38.083},{"x":1753407480597,"y":33.932},{"x":1753407420402,"y":50.798},{"x":1753407360154,"y":46.56},{"x":1753407302904,"y":46.06},{"x":1753407242765,"y":45.032},{"x":1753407182638,"y":41.86},{"x":1753407122512,"y":36.738},{"x":1753407062373,"y":34.294},{"x":1753407002205,"y":36.595},{"x":1753406942038,"y":31.867},{"x":1753406881917,"y":42.385},{"x":1753406821738,"y":43.774},{"x":1753406761608,"y":41.696},{"x":1753406701481,"y":40.249},{"x":1753406641336,"y":36.406},{"x":1753406581232,"y":34.549},{"x":1753406521055,"y":32.704},{"x":1753406460909,"y":37.19},{"x":1753406400815,"y":32.942},{"x":1753406340623,"y":34.862},{"x":1753406280542,"y":37.639},{"x":1753406220432,"y":38.676},{"x":1753406160204,"y":43.872},{"x":1753406102923,"y":38.792},{"x":1753406042762,"y":36.796},{"x":1753405982638,"y":38.261},{"x":1753405922498,"y":35.515},{"x":1753405862364,"y":34.859},{"x":1753405802232,"y":37.399},{"x":1753405742124,"y":31.968},{"x":1753405681958,"y":34.864},{"x":1753405621825,"y":34.987},{"x":1753405561687,"y":40.806},{"x":1753405501558,"y":51.822},{"x":1753405441416,"y":52.176},{"x":1753405381293,"y":49.709},{"x":1753405321167,"y":46.172},{"x":1753405261018,"y":41.014},{"x":1753405201560,"y":37.637},{"x":1753405141067,"y":34.127},{"x":1753405080929,"y":34.519},{"x":1753405020723,"y":33.528},{"x":1753404960643,"y":34.231},{"x":1753404900508,"y":40.764},{"x":1753404840319,"y":38.654},{"x":1753404783020,"y":36.365},{"x":1753404722871,"y":44.8},{"x":1753404662733,"y":42.748},{"x":1753404602601,"y":40.094},{"x":1753404542469,"y":40.475},{"x":1753404482243,"y":39.534},{"x":1753404422110,"y":38.017},{"x":1753404361973,"y":39.175},{"x":1753404301826,"y":41.094},{"x":1753404241700,"y":43.22},{"x":1753404181545,"y":41.309},{"x":1753404121413,"y":38.82},{"x":1753404061285,"y":37.249},{"x":1753404001146,"y":33.076},{"x":1753403940988,"y":37.601},{"x":1753403880860,"y":38.426},{"x":1753403820727,"y":34.834},{"x":1753403760645,"y":35.111},{"x":1753403700525,"y":38.159},{"x":1753403640312,"y":42.554},{"x":1753403580230,"y":34.14},{"x":1753403522933,"y":33.787},{"x":1753403462789,"y":33.647},{"x":1753403402653,"y":44.327},{"x":1753403342520,"y":49.494},{"x":1753403282365,"y":53.713},{"x":1753403222221,"y":53.092},{"x":1753403162073,"y":50.46},{"x":1753403101906,"y":36.409},{"x":1753403041777,"y":34.728},{"x":1753402981638,"y":39.728},{"x":1753402921501,"y":33.859},{"x":1753402861393,"y":36.756},{"x":1753402801253,"y":35.478},{"x":1753402741115,"y":35.17},{"x":1753402680934,"y":37.873},{"x":1753402620792,"y":38.056},{"x":1753402560678,"y":36.461},{"x":1753402500535,"y":37.259},{"x":1753402440434,"y":36.563},{"x":1753402380304,"y":41.875},{"x":1753402323012,"y":36.844},{"x":1753402262867,"y":34.8},{"x":1753402202696,"y":37.236},{"x":1753402142563,"y":37.094},{"x":1753402082421,"y":36.071},{"x":1753402022285,"y":35.927},{"x":1753401962156,"y":40.799},{"x":1753401902021,"y":39.024},{"x":1753401841868,"y":38.935},{"x":1753401781733,"y":39.618},{"x":1753401721605,"y":46.843},{"x":1753401661472,"y":44.975},{"x":1753401601656,"y":46.438},{"x":1753401540996,"y":49.997},{"x":1753401480851,"y":48.056},{"x":1753401420723,"y":47.708},{"x":1753401360646,"y":34.945},{"x":1753401300662,"y":36.685},{"x":1753401240513,"y":36.024},{"x":1753401180174,"y":36.51},{"x":1753401122843,"y":42.022},{"x":1753401062723,"y":48.468},{"x":1753401002591,"y":43.816},{"x":1753400942447,"y":41.076},{"x":1753400882309,"y":39.762},{"x":1753400822174,"y":38.509},{"x":1753400762034,"y":37.538},{"x":1753400701897,"y":35.731},{"x":1753400641748,"y":38.875},{"x":1753400581638,"y":38.018},{"x":1753400521477,"y":36.082},{"x":1753400461337,"y":34.994},{"x":1753400401206,"y":34.711},{"x":1753400341071,"y":34.643},{"x":1753400280934,"y":36.176},{"x":1753400220793,"y":37.091},{"x":1753400160678,"y":47.207},{"x":1753400100535,"y":41.094},{"x":1753400040415,"y":52.03},{"x":1753399980252,"y":48.394},{"x":1753399922954,"y":49.292},{"x":1753399862825,"y":48.232},{"x":1753399802661,"y":52.301},{"x":1753399742441,"y":41.515},{"x":1753399682304,"y":41.654},{"x":1753399622155,"y":39.57},{"x":1753399562049,"y":38.177},{"x":1753399501880,"y":38.022},{"x":1753399441757,"y":37.36},{"x":1753399381618,"y":41.893},{"x":1753399321488,"y":40.58},{"x":1753399261342,"y":38.939},{"x":1753399201226,"y":38.376},{"x":1753399141003,"y":36.437},{"x":1753399080872,"y":38.858},{"x":1753399020732,"y":35.489},{"x":1753398960662,"y":37.988},{"x":1753398900645,"y":39.155},{"x":1753398840184,"y":43.939},{"x":1753398782941,"y":42.307},{"x":1753398722802,"y":53.35},{"x":1753398662662,"y":51.746},{"x":1753398602536,"y":56.668},{"x":1753398542336,"y":55.866},{"x":1753398482207,"y":46.576},{"x":1753398422038,"y":47.464},{"x":1753398361917,"y":37.891},{"x":1753398301755,"y":49.157},{"x":1753398241629,"y":52.507},{"x":1753398181499,"y":47.104},{"x":1753398121366,"y":44.774},{"x":1753398061230,"y":45.637},{"x":1753398001766,"y":38.428},{"x":1753397941161,"y":38.342},{"x":1753397881023,"y":41.923},{"x":1753397820898,"y":40.61},{"x":1753397760782,"y":39.84},{"x":1753397700661,"y":40.146},{"x":1753397640526,"y":42.28},{"x":1753397580389,"y":36.592},{"x":1753397522988,"y":37.757},{"x":1753397462865,"y":35.834},{"x":1753397402736,"y":36.072},{"x":1753397342585,"y":33.274},{"x":1753397282447,"y":41.305},{"x":1753397222316,"y":38.453},{"x":1753397162177,"y":46.578},{"x":1753397102016,"y":46.621},{"x":1753397041865,"y":43.506},{"x":1753396981738,"y":45.847},{"x":1753396921591,"y":49.792},{"x":1753396861461,"y":53.077},{"x":1753396801327,"y":57.355},{"x":1753396741180,"y":50.376},{"x":1753396681024,"y":56.645},{"x":1753396620876,"y":41.077},{"x":1753396560763,"y":40.997},{"x":1753396500655,"y":40.07},{"x":1753396440465,"y":42.032},{"x":1753396380339,"y":42.452},{"x":1753396323003,"y":40.459},{"x":1753396262869,"y":40.049},{"x":1753396202696,"y":41.998},{"x":1753396142516,"y":43.325},{"x":1753396082373,"y":37.758},{"x":1753396022202,"y":38.452},{"x":1753395961885,"y":38.483},{"x":1753395901730,"y":39.23},{"x":1753395841617,"y":49.966},{"x":1753395781472,"y":47.533},{"x":1753395721069,"y":50.543},{"x":1753395660925,"y":50.706},{"x":1753395600813,"y":49.43},{"x":1753395540644,"y":51.053},{"x":1753395482928,"y":48.889},{"x":1753395422786,"y":49.886},{"x":1753395362425,"y":46.828},{"x":1753395302294,"y":46.756},{"x":1753395242150,"y":50.629},{"x":1753395182004,"y":44.327},{"x":1753395121858,"y":48.871},{"x":1753395061718,"y":42.055},{"x":1753395001583,"y":43.084},{"x":1753394941401,"y":41.897},{"x":1753394882657,"y":40.676},{"x":1753394822518,"y":43.458},{"x":1753394762374,"y":40.84},{"x":1753394702236,"y":47.592},{"x":1753394642104,"y":44.735},{"x":1753394581956,"y":47.108},{"x":1753394521824,"y":56.033},{"x":1753394461676,"y":50.766},{"x":1753394401586,"y":49.626},{"x":1753394341091,"y":48.88},{"x":1753394280943,"y":48.652},{"x":1753394220798,"y":52.681},{"x":1753394160687,"y":48.875},{"x":1753394100560,"y":47.957},{"x":1753394040349,"y":47.933},{"x":1753393980194,"y":48.982},{"x":1753393922931,"y":46.997},{"x":1753393862794,"y":50.106},{"x":1753393802654,"y":55.289},{"x":1753393742540,"y":52.922},{"x":1753393682297,"y":56.358},{"x":1753393622120,"y":51.019},{"x":1753393561967,"y":47.008},{"x":1753393501847,"y":44.707},{"x":1753393441702,"y":44.755},{"x":1753393381563,"y":47.642},{"x":1753393321423,"y":47.218},{"x":1753393261295,"y":48.785},{"x":1753393201125,"y":46.672},{"x":1753393140979,"y":44.797},{"x":1753393080851,"y":49.844},{"x":1753393020701,"y":49.204},{"x":1753392960635,"y":46.91},{"x":1753392900514,"y":50.317},{"x":1753392840222,"y":50.318},{"x":1753392782984,"y":44.251},{"x":1753392722864,"y":44.069},{"x":1753392662690,"y":44.472},{"x":1753392602542,"y":39.125},{"x":1753392542351,"y":39.463},{"x":1753392482132,"y":47.064},{"x":1753392421973,"y":47.124},{"x":1753392361843,"y":47.855},{"x":1753392301711,"y":46.435},{"x":1753392241597,"y":43.598},{"x":1753392181433,"y":38.597},{"x":1753392121300,"y":40.306},{"x":1753392061170,"y":46.585},{"x":1753392001043,"y":43.679},{"x":1753391940894,"y":47.195},{"x":1753391880766,"y":46.236},{"x":1753391820678,"y":46.284},{"x":1753391760525,"y":53.56},{"x":1753391700586,"y":48.548},{"x":1753391640294,"y":49.801},{"x":1753391582947,"y":47.095},{"x":1753391522787,"y":51.325},{"x":1753391462654,"y":52.24},{"x":1753391402528,"y":56.869},{"x":1753391342133,"y":60.593},{"x":1753391281067,"y":59.696},{"x":1753391220912,"y":60.752},{"x":1753391160770,"y":51.244},{"x":1753391100660,"y":43.867},{"x":1753391040539,"y":41.035},{"x":1753390980421,"y":44.459},{"x":1753390920247,"y":49.248},{"x":1753390862961,"y":47.286},{"x":1753390802641,"y":45.593},{"x":1753390742483,"y":42.649},{"x":1753390682344,"y":45.236},{"x":1753390622202,"y":45.64},{"x":1753390562069,"y":46.405},{"x":1753390501900,"y":43.054},{"x":1753390441755,"y":44.862},{"x":1753390381632,"y":47.07},{"x":1753390321494,"y":45.655},{"x":1753390261396,"y":49.342},{"x":1753390202345,"y":51.289},{"x":1753390142181,"y":49.807},{"x":1753390082036,"y":53.24},{"x":1753390021892,"y":52.106},{"x":1753389961757,"y":51.241},{"x":1753389901621,"y":46.001},{"x":1753389841483,"y":45.518},{"x":1753389781336,"y":49.92},{"x":1753389721205,"y":51.188},{"x":1753389661065,"y":55.252},{"x":1753389600931,"y":55.781},{"x":1753389540813,"y":52.874},{"x":1753389480713,"y":55.814},{"x":1753389420546,"y":55.312},{"x":1753389360417,"y":76.184},{"x":1753389300277,"y":82.574},{"x":1753389242935,"y":70.178},{"x":1753389182788,"y":68.262},{"x":1753389122649,"y":66.758},{"x":1753389062485,"y":53.569},{"x":1753389002350,"y":57.686},{"x":1753388942099,"y":59.184},{"x":1753388881905,"y":59.976},{"x":1753388821742,"y":67.106},{"x":1753388761599,"y":75.481},{"x":1753388701460,"y":68.371},{"x":1753388641315,"y":77.634},{"x":1753388581180,"y":85.212},{"x":1753388521048,"y":80.515},{"x":1753388460914,"y":69.628},{"x":1753388400816,"y":67.164},{"x":1753388340606,"y":73.076},{"x":1753388280435,"y":53.162},{"x":1753388220286,"y":57.784},{"x":1753388162966,"y":71.489},{"x":1753388102832,"y":63.294},{"x":1753388042684,"y":66.15},{"x":1753387982528,"y":67.13},{"x":1753387922402,"y":69.461},{"x":1753387862275,"y":62.216},{"x":1753387802134,"y":49.663},{"x":1753387742006,"y":50.442},{"x":1753387681863,"y":48.328},{"x":1753387621726,"y":45.907},{"x":1753387561590,"y":75.041},{"x":1753387501456,"y":84.454},{"x":1753387441325,"y":76.59},{"x":1753387381186,"y":73.859},{"x":1753387321029,"y":75.845},{"x":1753387260883,"y":72.389},{"x":1753387201477,"y":71.606},{"x":1753387140887,"y":62.326},{"x":1753387080756,"y":55.669},{"x":1753387020642,"y":64.754},{"x":1753386960481,"y":69.053},{"x":1753386900333,"y":67.06},{"x":1753386843000,"y":74.148},{"x":1753386782848,"y":60.894},{"x":1753386722721,"y":53.923},{"x":1753386662579,"y":45.632},{"x":1753386602433,"y":59.26},{"x":1753386542303,"y":71.744},{"x":1753386482155,"y":65.375},{"x":1753386422006,"y":58.444},{"x":1753386361881,"y":59.3},{"x":1753386301756,"y":65.652},{"x":1753386241602,"y":74.172},{"x":1753386181478,"y":57.811},{"x":1753386121342,"y":57.176},{"x":1753386061215,"y":56.869},{"x":1753386001071,"y":77.939},{"x":1753385940907,"y":72.941},{"x":1753385880754,"y":70.184},{"x":1753385820629,"y":67.357},{"x":1753385760591,"y":66.52},{"x":1753385700388,"y":61.879},{"x":1753385640220,"y":52.279},{"x":1753385582969,"y":59.092},{"x":1753385522822,"y":61.301},{"x":1753385462684,"y":60.692},{"x":1753385402556,"y":64.708},{"x":1753385342429,"y":62.484},{"x":1753385282271,"y":58.474},{"x":1753385222150,"y":75.058},{"x":1753385161952,"y":76.764},{"x":1753385101819,"y":86.947},{"x":1753385041667,"y":88.199},{"x":1753384981535,"y":85.432},{"x":1753384921249,"y":80.124},{"x":1753384861074,"y":70.849},{"x":1753384800966,"y":61.361},{"x":1753384740797,"y":72.946},{"x":1753384680679,"y":59.954},{"x":1753384620522,"y":72.796},{"x":1753384562008,"y":68.96},{"x":1753384501877,"y":63.179},{"x":1753384441735,"y":65.233},{"x":1753384381607,"y":67.866},{"x":1753384321445,"y":60.671},{"x":1753384261332,"y":55.97},{"x":1753384201195,"y":57.058},{"x":1753384141027,"y":55.573},{"x":1753384082201,"y":54.46},{"x":1753384022070,"y":60.914},{"x":1753383961931,"y":58.673},{"x":1753383901798,"y":57.434},{"x":1753383841600,"y":54.442},{"x":1753383781460,"y":59.597},{"x":1753383721328,"y":57.101},{"x":1753383661193,"y":53.488},{"x":1753383600513,"y":79.258},{"x":1753383540242,"y":74.922},{"x":1753383482965,"y":73.462},{"x":1753383422835,"y":72.967},{"x":1753383362679,"y":76.643},{"x":1753383302539,"y":56.027},{"x":1753383242168,"y":55.248},{"x":1753383182030,"y":58.2},{"x":1753383121896,"y":68.555},{"x":1753383064761,"y":72.078},{"x":1753383002611,"y":69.646},{"x":1753382942480,"y":71.986},{"x":1753382882348,"y":68.05},{"x":1753382822211,"y":78.88},{"x":1753382762071,"y":51.348},{"x":1753382701939,"y":51.415},{"x":1753382641798,"y":54.654},{"x":1753382581667,"y":63.173},{"x":1753382521569,"y":67.96},{"x":1753382461417,"y":68.213},{"x":1753382401287,"y":81.241},{"x":1753382342252,"y":89.215},{"x":1753382282109,"y":63.068},{"x":1753382221130,"y":59.676},{"x":1753382160643,"y":58.607},{"x":1753382100529,"y":61.498},{"x":1753382040195,"y":64.033},{"x":1753381983007,"y":52.975},{"x":1753381922872,"y":73.04},{"x":1753381862757,"y":53.633},{"x":1753381802577,"y":52.002},{"x":1753381742418,"y":55.184},{"x":1753381682259,"y":70.135},{"x":1753381622107,"y":81.38},{"x":1753381561968,"y":78.509},{"x":1753381501805,"y":81.2},{"x":1753381441674,"y":84.558},{"x":1753381381540,"y":69.464},{"x":1753381321404,"y":54.196},{"x":1753381261264,"y":48.348},{"x":1753381201127,"y":68.544},{"x":1753381140968,"y":69.824},{"x":1753381080840,"y":66.622},{"x":1753381020738,"y":63.443},{"x":1753380960591,"y":69.791},{"x":1753380900431,"y":87.173},{"x":1753380840270,"y":58.891},{"x":1753380782986,"y":57.582},{"x":1753380722835,"y":57.338},{"x":1753380662685,"y":67.297},{"x":1753380602541,"y":69.289},{"x":1753380542389,"y":64.559},{"x":1753380482241,"y":65.11},{"x":1753380422125,"y":63.004},{"x":1753380361975,"y":56.635},{"x":1753380301840,"y":73.094},{"x":1753380241679,"y":55.85},{"x":1753380181548,"y":54.256},{"x":1753380121407,"y":64.91},{"x":1753380061285,"y":60.088},{"x":1753380001304,"y":49.787},{"x":1753379940981,"y":56.924},{"x":1753379880843,"y":52.456},{"x":1753379820715,"y":62.045},{"x":1753379760631,"y":63.644},{"x":1753379700481,"y":78.535},{"x":1753379640284,"y":85.009},{"x":1753379583020,"y":86.976},{"x":1753379522893,"y":73.855},{"x":1753379462745,"y":68.276},{"x":1753379402598,"y":65.724},{"x":1753379342507,"y":68.399},{"x":1753379282328,"y":81.122},{"x":1753379222212,"y":56.198},{"x":1753379162065,"y":60.182},{"x":1753379101917,"y":68.341},{"x":1753379041758,"y":70.346},{"x":1753378981625,"y":54.702},{"x":1753378921509,"y":55.626},{"x":1753378861386,"y":58.038},{"x":1753378801264,"y":74.629},{"x":1753378741123,"y":70.109},{"x":1753378680964,"y":66.398},{"x":1753378620838,"y":61.921},{"x":1753378560732,"y":60.925},{"x":1753378500601,"y":67.315},{"x":1753378440380,"y":53.754},{"x":1753378380296,"y":51.791},{"x":1753378322935,"y":47.96},{"x":1753378262805,"y":48.682},{"x":1753378202647,"y":45.877},{"x":1753378142532,"y":46.02},{"x":1753378082354,"y":47.76},{"x":1753378022217,"y":49.579},{"x":1753377962072,"y":47.285},{"x":1753377901935,"y":48.832},{"x":1753377841781,"y":50.886},{"x":1753377781644,"y":61.07},{"x":1753377721507,"y":74.471},{"x":1753377661374,"y":98.01},{"x":1753377601249,"y":89.032},{"x":1753377541096,"y":76.476},{"x":1753377480946,"y":60.682},{"x":1753377420820,"y":52.652},{"x":1753377360689,"y":56.701},{"x":1753377300615,"y":46.555},{"x":1753377240359,"y":50.046},{"x":1753377180225,"y":63.168},{"x":1753377122975,"y":62.263},{"x":1753377062833,"y":63.396},{"x":1753377002696,"y":65.159},{"x":1753376942567,"y":62.023},{"x":1753376882435,"y":52.646},{"x":1753376822292,"y":60.409},{"x":1753376762158,"y":57.991},{"x":1753376702011,"y":58.676},{"x":1753376641867,"y":62.735},{"x":1753376581724,"y":64.29},{"x":1753376521598,"y":62.425},{"x":1753376461463,"y":67.628},{"x":1753376402961,"y":47.356},{"x":1753376342806,"y":39.988},{"x":1753376282668,"y":52.559},{"x":1753376222457,"y":46.1},{"x":1753376162321,"y":45.985},{"x":1753376102184,"y":47.43},{"x":1753376042045,"y":46.84},{"x":1753375981891,"y":44.933},{"x":1753375921750,"y":49.852},{"x":1753375861616,"y":59.033},{"x":1753375801232,"y":54.456},{"x":1753375741016,"y":61.835},{"x":1753375680888,"y":63.03},{"x":1753375620750,"y":70.18},{"x":1753375560624,"y":68.55},{"x":1753375500717,"y":49.06},{"x":1753375440220,"y":48.787},{"x":1753375382940,"y":56.659},{"x":1753375322814,"y":56.893},{"x":1753375262669,"y":52.399},{"x":1753375202529,"y":53.358},{"x":1753375142380,"y":53.273},{"x":1753375082253,"y":64.044},{"x":1753375022124,"y":55.6},{"x":1753374961971,"y":53.784},{"x":1753374901842,"y":38.776},{"x":1753374841740,"y":34.858},{"x":1753374781560,"y":49.902},{"x":1753374721438,"y":39.552},{"x":1753374661290,"y":35.389},{"x":1753374601181,"y":37.163},{"x":1753374540996,"y":35.93},{"x":1753374480844,"y":39.499},{"x":1753374420721,"y":50.566},{"x":1753374360600,"y":50.01},{"x":1753374300574,"y":50.923},{"x":1753374240479,"y":64.541},{"x":1753374183021,"y":63.078},{"x":1753374122875,"y":64.964},{"x":1753374062486,"y":71.071},{"x":1753374002337,"y":75.142},{"x":1753373942193,"y":42.748},{"x":1753373882050,"y":43.368},{"x":1753373821903,"y":45.548},{"x":1753373761729,"y":52.391},{"x":1753373701519,"y":49.984},{"x":1753373641371,"y":52.168},{"x":1753373581201,"y":44.509},{"x":1753373521070,"y":47.456},{"x":1753373460912,"y":54.913},{"x":1753373400830,"y":45.642},{"x":1753373340635,"y":38.441},{"x":1753373282871,"y":31.66},{"x":1753373222730,"y":32.674},{"x":1753373162600,"y":41.639},{"x":1753373102409,"y":39.424},{"x":1753373042254,"y":42.8},{"x":1753372982107,"y":43.476},{"x":1753372921957,"y":46.813},{"x":1753372861810,"y":39.298},{"x":1753372801678,"y":39.394},{"x":1753372741189,"y":49.361},{"x":1753372681026,"y":63.738},{"x":1753372620887,"y":51.55},{"x":1753372560745,"y":53.84},{"x":1753372500675,"y":51.85},{"x":1753372440525,"y":41.068},{"x":1753372380404,"y":34.058},{"x":1753372320212,"y":44.674},{"x":1753372262923,"y":36.832},{"x":1753372202774,"y":51.353},{"x":1753372142638,"y":46.957},{"x":1753372082505,"y":38.429},{"x":1753372022364,"y":46.896},{"x":1753371962228,"y":40.902},{"x":1753371902075,"y":31.318},{"x":1753371841922,"y":28.267},{"x":1753371781771,"y":45.018},{"x":1753371721614,"y":44.305},{"x":1753371661478,"y":41.048},{"x":1753371601349,"y":44.918},{"x":1753371541193,"y":53.97},{"x":1753371481031,"y":40.254},{"x":1753371420886,"y":39.995},{"x":1753371360759,"y":36.247},{"x":1753371300661,"y":47.152},{"x":1753371240406,"y":47.862},{"x":1753371180196,"y":31.45},{"x":1753371122883,"y":39.029},{"x":1753371062723,"y":29.682},{"x":1753371002594,"y":26.62},{"x":1753370942468,"y":29.02},{"x":1753370882272,"y":27.797},{"x":1753370822108,"y":42.235},{"x":1753370761962,"y":33.282},{"x":1753370701823,"y":70.112},{"x":1753370641681,"y":64.482},{"x":1753370581546,"y":62.748},{"x":1753370521405,"y":62.51},{"x":1753370461256,"y":49.728},{"x":1753370401138,"y":34.416},{"x":1753370340946,"y":33.494},{"x":1753370280808,"y":49.709},{"x":1753370220772,"y":58.346},{"x":1753370160589,"y":41.022},{"x":1753370100371,"y":42.656},{"x":1753370040239,"y":41.893},{"x":1753369982908,"y":27.281},{"x":1753369922770,"y":31.771},{"x":1753369862627,"y":42.731},{"x":1753369802503,"y":36.037},{"x":1753369742218,"y":42.79},{"x":1753369682082,"y":35.348},{"x":1753369621939,"y":38.556},{"x":1753369561783,"y":30.677},{"x":1753369501654,"y":43.078},{"x":1753369441513,"y":42.036},{"x":1753369381382,"y":30.162},{"x":1753369321250,"y":44.135},{"x":1753369261103,"y":55.912},{"x":1753369202000,"y":27.115},{"x":1753369141103,"y":34.081},{"x":1753369080943,"y":27.822},{"x":1753369020808,"y":35.628},{"x":1753368960697,"y":55.416},{"x":1753368900604,"y":50.888},{"x":1753368840410,"y":56.454},{"x":1753368780207,"y":51.322},{"x":1753368722930,"y":40.926},{"x":1753368662778,"y":31.361},{"x":1753368601450,"y":29.09},{"x":1753368541311,"y":34.825},{"x":1753368481179,"y":44.753},{"x":1753368421026,"y":42.311},{"x":1753368360895,"y":42.683},{"x":1753368300937,"y":50.575},{"x":1753368240602,"y":59.044},{"x":1753368180371,"y":32.033},{"x":1753368123026,"y":30.019},{"x":1753368062892,"y":37.007},{"x":1753368002753,"y":38.998},{"x":1753367942619,"y":37.699},{"x":1753367882485,"y":33.25},{"x":1753367822355,"y":32.23},{"x":1753367762252,"y":34.997},{"x":1753367702078,"y":44.713},{"x":1753367641911,"y":53.348},{"x":1753367581770,"y":56.453},{"x":1753367521642,"y":64.375},{"x":1753367461500,"y":59.782},{"x":1753367401343,"y":50.436},{"x":1753367341103,"y":70.585},{"x":1753367280956,"y":33.917},{"x":1753367220792,"y":30.264},{"x":1753367160668,"y":26.765},{"x":1753367100513,"y":30.12},{"x":1753367040295,"y":37.477},{"x":1753366983023,"y":41.267},{"x":1753366922872,"y":36.76},{"x":1753366862548,"y":39.552},{"x":1753366802413,"y":36.253},{"x":1753366742278,"y":32.292},{"x":1753366682149,"y":43.91},{"x":1753366621884,"y":36.557},{"x":1753366561528,"y":38.422},{"x":1753366501394,"y":38.618},{"x":1753366441226,"y":42.119},{"x":1753366381097,"y":41.512},{"x":1753366320933,"y":31.25},{"x":1753366260798,"y":37.812},{"x":1753366200757,"y":29.821},{"x":1753366140541,"y":28.693},{"x":1753366082719,"y":35.144},{"x":1753366022581,"y":30.866},{"x":1753365962452,"y":29.46},{"x":1753365902320,"y":22.303},{"x":1753365842175,"y":43.813},{"x":1753365782022,"y":39.662},{"x":1753365721871,"y":48.424},{"x":1753365661727,"y":41.26},{"x":1753365601710,"y":44.654},{"x":1753365541268,"y":61.428},{"x":1753365481142,"y":51.462},{"x":1753365420873,"y":43.52},{"x":1753365360757,"y":47.402},{"x":1753365300690,"y":37.333},{"x":1753365240470,"y":49.39},{"x":1753365180354,"y":42.444},{"x":1753365120322,"y":41.146},{"x":1753365062896,"y":46.776},{"x":1753365002763,"y":44.483},{"x":1753364942607,"y":37.411},{"x":1753364882482,"y":24.325},{"x":1753364822340,"y":29.628},{"x":1753364762206,"y":29.9},{"x":1753364702079,"y":33.938},{"x":1753364641899,"y":46.646},{"x":1753364581762,"y":53.364},{"x":1753364521627,"y":55.99},{"x":1753364461495,"y":37.412},{"x":1753364401361,"y":28.513},{"x":1753364341228,"y":29.575},{"x":1753364281089,"y":27.931},{"x":1753364220935,"y":22.002},{"x":1753364160806,"y":23.365},{"x":1753364100757,"y":49.889},{"x":1753364040575,"y":38.056},{"x":1753363980368,"y":52.894},{"x":1753363923018,"y":54.056},{"x":1753363862880,"y":46.045},{"x":1753363802751,"y":35.615},{"x":1753363742692,"y":42.576},{"x":1753363682406,"y":42.955},{"x":1753363622272,"y":32.27},{"x":1753363562127,"y":22.618},{"x":1753363501973,"y":21.314},{"x":1753363441835,"y":18.574},{"x":1753363381692,"y":24.192},{"x":1753363321549,"y":27.726},{"x":1753363261414,"y":37.996},{"x":1753363201313,"y":31.985},{"x":1753363141145,"y":26.353},{"x":1753363080989,"y":26.785},{"x":1753363020868,"y":48.715},{"x":1753362960775,"y":49.727},{"x":1753362900562,"y":53.668},{"x":1753362840282,"y":52.031},{"x":1753362780136,"y":51.509},{"x":1753362722886,"y":29.705},{"x":1753362662750,"y":48.095},{"x":1753362602623,"y":49.603},{"x":1753362542467,"y":36.365},{"x":1753362481355,"y":31.668},{"x":1753362421233,"y":32.266},{"x":1753362361089,"y":35.047},{"x":1753362300941,"y":31.192},{"x":1753362240802,"y":33.911},{"x":1753362180644,"y":36.961},{"x":1753362120549,"y":24.724},{"x":1753362060406,"y":37.546},{"x":1753362002319,"y":52.205},{"x":1753361941536,"y":34.73},{"x":1753361881395,"y":53.411},{"x":1753361821256,"y":46.027},{"x":1753361761121,"y":39.559},{"x":1753361701007,"y":29.957},{"x":1753361640853,"y":24.139},{"x":1753361580726,"y":29.087},{"x":1753361520614,"y":24.188},{"x":1753361463320,"y":23.176},{"x":1753361402900,"y":25.474},{"x":1753361342760,"y":33.541},{"x":1753361282639,"y":37.373},{"x":1753361222507,"y":35.243},{"x":1753361162361,"y":44.652},{"x":1753361102224,"y":46.29},{"x":1753361042080,"y":47.594},{"x":1753360981930,"y":38.908},{"x":1753360921786,"y":29.327},{"x":1753360861652,"y":21.397},{"x":1753360801516,"y":35.792},{"x":1753360741385,"y":30.407},{"x":1753360681258,"y":30.476},{"x":1753360621127,"y":54.446},{"x":1753360560977,"y":50.069},{"x":1753360500848,"y":46.393},{"x":1753360440723,"y":48.224},{"x":1753360380603,"y":42.19},{"x":1753360320464,"y":40.032},{"x":1753360260251,"y":36.713},{"x":1753360202972,"y":28.292},{"x":1753360142779,"y":24.605},{"x":1753360082644,"y":17.438},{"x":1753360022492,"y":24.66},{"x":1753359962341,"y":21.708},{"x":1753359902217,"y":32.567},{"x":1753359842085,"y":19.502},{"x":1753359781939,"y":41.047},{"x":1753359721802,"y":53.62},{"x":1753359661654,"y":73.259},{"x":1753359601501,"y":75.127},{"x":1753359541352,"y":79.988},{"x":1753359481228,"y":52.993},{"x":1753359421089,"y":58.276},{"x":1753359360935,"y":35.603},{"x":1753359300806,"y":44.471},{"x":1753359240654,"y":34.21},{"x":1753359180537,"y":19.001},{"x":1753359120379,"y":21.102},{"x":1753359060175,"y":27.845},{"x":1753359002902,"y":28.774},{"x":1753358942772,"y":21.739},{"x":1753358882959,"y":19.585},{"x":1753358822721,"y":26.455},{"x":1753358762572,"y":40.604},{"x":1753358702410,"y":49.565},{"x":1753358642262,"y":50.048},{"x":1753358582110,"y":49.266},{"x":1753358521957,"y":33.53},{"x":1753358461823,"y":27.28},{"x":1753358402505,"y":29.611},{"x":1753358342345,"y":32.542},{"x":1753358282193,"y":58.355},{"x":1753358222038,"y":52.775},{"x":1753358161898,"y":63.133},{"x":1753358101762,"y":49.673},{"x":1753358041624,"y":62.588},{"x":1753357981483,"y":51.712},{"x":1753357921341,"y":46.271},{"x":1753357861211,"y":23.4},{"x":1753357802568,"y":29.599},{"x":1753357742437,"y":33.455},{"x":1753357682281,"y":39.499},{"x":1753357622147,"y":48.936},{"x":1753357562031,"y":51.612},{"x":1753357501874,"y":41.1},{"x":1753357441737,"y":26.018},{"x":1753357381606,"y":30.22},{"x":1753357321474,"y":23.194},{"x":1753357261326,"y":17.974},{"x":1753357201200,"y":10.517},{"x":1753357140995,"y":19.871},{"x":1753357080862,"y":32.71},{"x":1753357022994,"y":39.284},{"x":1753356960639,"y":47.624},{"x":1753356900455,"y":47.392},{"x":1753356840293,"y":55.313},{"x":1753356782953,"y":31.64},{"x":1753356722807,"y":29.326},{"x":1753356662692,"y":24.368},{"x":1753356602507,"y":30.662},{"x":1753356542282,"y":29.093},{"x":1753356482141,"y":29.185},{"x":1753356421975,"y":27.556},{"x":1753356361880,"y":21.642},{"x":1753356301711,"y":22.174},{"x":1753356241580,"y":32.406},{"x":1753356181454,"y":16.135},{"x":1753356121155,"y":16.175},{"x":1753356060997,"y":34.795},{"x":1753356000884,"y":34.484},{"x":1753355940730,"y":47.818},{"x":1753355882635,"y":43.973},{"x":1753355822365,"y":44.785},{"x":1753355762159,"y":27.823},{"x":1753355702019,"y":27.094},{"x":1753355641914,"y":42.986},{"x":1753355581733,"y":40.126},{"x":1753355521601,"y":47.701},{"x":1753355461454,"y":34.145},{"x":1753355401337,"y":36.455},{"x":1753355341203,"y":33.662},{"x":1753355281032,"y":31.206},{"x":1753355220867,"y":24.582},{"x":1753355160738,"y":26.246},{"x":1753355100664,"y":24.832},{"x":1753355040476,"y":44.815},{"x":1753354980364,"y":45.092},{"x":1753354922965,"y":42.643},{"x":1753354862824,"y":46.298},{"x":1753354801252,"y":42.083},{"x":1753354740187,"y":33.704},{"x":1753354682932,"y":28.685},{"x":1753354622762,"y":27.632},{"x":1753354562627,"y":24.491},{"x":1753354502501,"y":24.18},{"x":1753354442306,"y":21.539},{"x":1753354382157,"y":28.15},{"x":1753354321993,"y":37.224},{"x":1753354261863,"y":36.78},{"x":1753354202517,"y":61.358},{"x":1753354142381,"y":45.682},{"x":1753354082235,"y":47.382},{"x":1753354022021,"y":35.802},{"x":1753353961882,"y":45.1},{"x":1753353901739,"y":40.495},{"x":1753353841605,"y":34.805},{"x":1753353781466,"y":30.824},{"x":1753353721324,"y":46.495},{"x":1753353661203,"y":44.749},{"x":1753353601115,"y":43.009},{"x":1753353540883,"y":46.27},{"x":1753353480739,"y":65.476},{"x":1753353422990,"y":33.542},{"x":1753353362167,"y":35.927},{"x":1753353302002,"y":40.622},{"x":1753353241865,"y":56.233},{"x":1753353181727,"y":51.653},{"x":1753353121661,"y":60.818},{"x":1753353061403,"y":50.647},{"x":1753353001301,"y":40.616},{"x":1753352941059,"y":46.765},{"x":1753352880919,"y":25.208},{"x":1753352820764,"y":25.492},{"x":1753352760686,"y":27.061},{"x":1753352700546,"y":21.54},{"x":1753352640258,"y":27.432},{"x":1753352583025,"y":34.309},{"x":1753352522886,"y":18.42},{"x":1753352462603,"y":20.042},{"x":1753352402450,"y":26.477},{"x":1753352342321,"y":54.496},{"x":1753352282185,"y":51.818},{"x":1753352222028,"y":46.754},{"x":1753352161866,"y":38.256},{"x":1753352101733,"y":33.589},{"x":1753352041592,"y":51.98},{"x":1753351981469,"y":21.318},{"x":1753351921331,"y":26.764},{"x":1753351861190,"y":31.044},{"x":1753351801066,"y":34.23},{"x":1753351740814,"y":45.662},{"x":1753351680722,"y":55.284},{"x":1753351620586,"y":43.284},{"x":1753351560457,"y":32.81},{"x":1753351500253,"y":34.222},{"x":1753351442950,"y":19.621},{"x":1753351382805,"y":32.543},{"x":1753351322672,"y":27.299},{"x":1753351262576,"y":39.619},{"x":1753351200484,"y":31.482},{"x":1753351140254,"y":36.574},{"x":1753351082957,"y":35.06},{"x":1753351022810,"y":31.56},{"x":1753350962678,"y":32.447},{"x":1753350902525,"y":23.119},{"x":1753350842256,"y":31.386},{"x":1753350782106,"y":35.798},{"x":1753350721942,"y":36.431},{"x":1753350661807,"y":35.953},{"x":1753350601252,"y":31.324},{"x":1753350541118,"y":53.338},{"x":1753350480967,"y":54.968},{"x":1753350420821,"y":62.022},{"x":1753350360700,"y":54.485},{"x":1753350300524,"y":34.378},{"x":1753350240344,"y":37.453},{"x":1753350183034,"y":40.826},{"x":1753350122880,"y":47.35},{"x":1753350062746,"y":46.747},{"x":1753350002613,"y":55.688},{"x":1753349942467,"y":49.292},{"x":1753349882333,"y":43.051},{"x":1753349822175,"y":22.614},{"x":1753349761977,"y":21.853},{"x":1753349701839,"y":15.598},{"x":1753349641706,"y":24.908},{"x":1753349581582,"y":41.621},{"x":1753349521441,"y":48.952},{"x":1753349461304,"y":52.727},{"x":1753349401207,"y":44.455},{"x":1753349341003,"y":52.316},{"x":1753349280841,"y":37.495},{"x":1753349220710,"y":42.049},{"x":1753349169571,"y":45.302},{"x":1753349100684,"y":51.844},{"x":1753349040390,"y":47.465},{"x":1753348980328,"y":44.947},{"x":1753348922940,"y":43.787},{"x":1753348862450,"y":55.367},{"x":1753348802298,"y":44.468},{"x":1753348742166,"y":34.459},{"x":1753348682019,"y":27.308},{"x":1753348621862,"y":33.162},{"x":1753348561491,"y":24.82},{"x":1753348501363,"y":25.038},{"x":1753348441216,"y":26.82},{"x":1753348381089,"y":24.42},{"x":1753348320928,"y":24.252},{"x":1753348260797,"y":23.291},{"x":1753348200728,"y":26.742},{"x":1753348140600,"y":26.856},{"x":1753348082760,"y":37.53},{"x":1753348022629,"y":57.14},{"x":1753347962484,"y":59.842},{"x":1753347902338,"y":64.085},{"x":1753347842183,"y":66.92},{"x":1753347782045,"y":48.97},{"x":1753347721896,"y":36.845},{"x":1753347661762,"y":37.163},{"x":1753347601071,"y":34.291},{"x":1753347540306,"y":47.117},{"x":1753347482932,"y":42.564},{"x":1753347422801,"y":46.584},{"x":1753347362653,"y":42.6},{"x":1753347302512,"y":40.685},{"x":1753347242355,"y":27.692},{"x":1753347182225,"y":30.817},{"x":1753347122087,"y":21.138},{"x":1753347061914,"y":27.304},{"x":1753347001818,"y":28.25},{"x":1753346941652,"y":24.092},{"x":1753346881535,"y":27.51},{"x":1753346821404,"y":37.876},{"x":1753346761311,"y":43.374},{"x":1753346701152,"y":47.438},{"x":1753346640966,"y":39.726},{"x":1753346580831,"y":31.015},{"x":1753346520681,"y":30.017},{"x":1753346460614,"y":21.677},{"x":1753346400491,"y":28.943},{"x":1753346340298,"y":24.74},{"x":1753346280075,"y":41.118},{"x":1753346222893,"y":63.128},{"x":1753346162790,"y":69.553},{"x":1753346102614,"y":67.604},{"x":1753346042476,"y":78.277},{"x":1753345982337,"y":57.071},{"x":1753345922959,"y":44.26},{"x":1753345862821,"y":46.172},{"x":1753345802695,"y":52.213},{"x":1753345742585,"y":57.858},{"x":1753345682369,"y":32.246},{"x":1753345622235,"y":36.122},{"x":1753345562084,"y":33.462},{"x":1753345501938,"y":52.475},{"x":1753345441803,"y":57.88},{"x":1753345381671,"y":46.22},{"x":1753345320429,"y":44.14},{"x":1753345260321,"y":58.207},{"x":1753345203030,"y":41.168},{"x":1753345142872,"y":43.774},{"x":1753345081436,"y":35.999},{"x":1753345021242,"y":38.744},{"x":1753344961121,"y":32.764},{"x":1753344900948,"y":33.396},{"x":1753344840794,"y":34.678},{"x":1753344780649,"y":35.946},{"x":1753344720607,"y":39.785},{"x":1753344660463,"y":37.668},{"x":1753344602934,"y":41.642},{"x":1753344542779,"y":46.028},{"x":1753344482955,"y":40.663},{"x":1753344422800,"y":61.889},{"x":1753344362667,"y":60.958},{"x":1753344302531,"y":57.955},{"x":1753344242394,"y":55.859},{"x":1753344182259,"y":53.173},{"x":1753344122118,"y":45.563},{"x":1753344061968,"y":30.398},{"x":1753344000781,"y":46.001},{"x":1753343940491,"y":58.13},{"x":1753343880301,"y":52.854},{"x":1753343822965,"y":63.434},{"x":1753343762819,"y":72.086},{"x":1753343702681,"y":69.865},{"x":1753343642551,"y":64.799},{"x":1753343582418,"y":71.062},{"x":1753343522279,"y":59.593},{"x":1753343462118,"y":61.57},{"x":1753343401710,"y":55.25},{"x":1753343341126,"y":39.983},{"x":1753343280981,"y":53.572},{"x":1753343220860,"y":31.147},{"x":1753343160727,"y":35.942},{"x":1753343100788,"y":44.735},{"x":1753343040521,"y":37.127},{"x":1753342980372,"y":38.521},{"x":1753342922947,"y":37.853},{"x":1753342862812,"y":50.4},{"x":1753342802686,"y":55.636},{"x":1753342742548,"y":57.044},{"x":1753342682423,"y":61.084},{"x":1753342622289,"y":47.406},{"x":1753342562154,"y":43.45},{"x":1753342502010,"y":39.616},{"x":1753342441872,"y":48.503},{"x":1753342381720,"y":41.219},{"x":1753342321600,"y":37.741},{"x":1753342261455,"y":75.85},{"x":1753342201367,"y":63.464},{"x":1753342141080,"y":66.13},{"x":1753342080910,"y":66.331},{"x":1753342020734,"y":63.893},{"x":1753341960586,"y":70.662},{"x":1753341900550,"y":58.472},{"x":1753341840355,"y":56.556},{"x":1753341783000,"y":51.283},{"x":1753341722861,"y":47.849},{"x":1753341662456,"y":51.079},{"x":1753341602312,"y":46.044},{"x":1753341542182,"y":47.557},{"x":1753341482041,"y":57.731},{"x":1753341421905,"y":60.368},{"x":1753341361764,"y":55.794},{"x":1753341301395,"y":56.527},{"x":1753341241255,"y":63.996},{"x":1753341181123,"y":47.033},{"x":1753341120946,"y":42.257},{"x":1753341060825,"y":39.44},{"x":1753341000769,"y":39.306},{"x":1753340940538,"y":35.134},{"x":1753340882745,"y":43.693},{"x":1753340822513,"y":45.118},{"x":1753340762375,"y":46.655},{"x":1753340702224,"y":47.958},{"x":1753340642086,"y":51.089},{"x":1753340581943,"y":44.212},{"x":1753340521813,"y":39.366},{"x":1753340461690,"y":39.422},{"x":1753340401651,"y":39.036},{"x":1753340341300,"y":43.048},{"x":1753340281145,"y":43.914},{"x":1753340220998,"y":50.159},{"x":1753340160872,"y":53.521},{"x":1753340100824,"y":53.707},{"x":1753340040544,"y":51.671},{"x":1753339980361,"y":51.588},{"x":1753339920205,"y":48.39},{"x":1753339862946,"y":45.725},{"x":1753339802803,"y":44.722},{"x":1753339742675,"y":57.778},{"x":1753339682547,"y":44.778},{"x":1753339622391,"y":48.564},{"x":1753339562259,"y":46.798},{"x":1753339502122,"y":47.144},{"x":1753339441970,"y":53.917},{"x":1753339381818,"y":59.364},{"x":1753339321674,"y":58.633},{"x":1753339261543,"y":52.202},{"x":1753339201406,"y":44.849},{"x":1753339141262,"y":49.415},{"x":1753339081136,"y":46.1},{"x":1753339020994,"y":56.596},{"x":1753338960864,"y":55.775},{"x":1753338900738,"y":55.141},{"x":1753338840618,"y":78.804},{"x":1753338780520,"y":50.128},{"x":1753338720278,"y":44.201},{"x":1753338662971,"y":38.096},{"x":1753338602843,"y":45.842},{"x":1753338542689,"y":44.129},{"x":1753338482529,"y":46.774},{"x":1753338422381,"y":44.812},{"x":1753338362249,"y":43.901},{"x":1753338302105,"y":49.207},{"x":1753338241980,"y":46.158},{"x":1753338181817,"y":42.721},{"x":1753338121663,"y":57.084},{"x":1753338061541,"y":45.6},{"x":1753338001419,"y":58.909},{"x":1753337941281,"y":40.918},{"x":1753337881140,"y":63.094},{"x":1753337820993,"y":45.986},{"x":1753337760866,"y":62.095},{"x":1753337700758,"y":50.514},{"x":1753337640549,"y":47.519},{"x":1753337580394,"y":65.797},{"x":1753337520349,"y":51.888},{"x":1753337460062,"y":64.934},{"x":1753337402892,"y":66.286},{"x":1753337342751,"y":50.616},{"x":1753337282631,"y":67.517},{"x":1753337222498,"y":65.942},{"x":1753337162370,"y":63.053},{"x":1753337102218,"y":49.132},{"x":1753337042075,"y":47.526},{"x":1753336981914,"y":49.194},{"x":1753336921761,"y":42.052},{"x":1753336861638,"y":41.326},{"x":1753336802461,"y":40.406},{"x":1753336742279,"y":39.34},{"x":1753336682138,"y":43.879},{"x":1753336622005,"y":42.28},{"x":1753336561847,"y":39.378},{"x":1753336501723,"y":40.212},{"x":1753336441589,"y":41.593},{"x":1753336381461,"y":56.809},{"x":1753336321328,"y":53.474},{"x":1753336261185,"y":54.521},{"x":1753336202922,"y":58.89},{"x":1753336142781,"y":62.122},{"x":1753336082645,"y":49.583},{"x":1753336022436,"y":48.576},{"x":1753335962295,"y":42.893},{"x":1753335902161,"y":40.626},{"x":1753335842041,"y":41.111},{"x":1753335781884,"y":37.903},{"x":1753335721737,"y":45.401},{"x":1753335661600,"y":41.993},{"x":1753335601476,"y":40.867},{"x":1753335541353,"y":38.275},{"x":1753335481220,"y":41.558},{"x":1753335421080,"y":43.886},{"x":1753335360638,"y":39.982},{"x":1753335300486,"y":38.764},{"x":1753335240317,"y":41.102},{"x":1753335183016,"y":41.038},{"x":1753335122858,"y":41.201},{"x":1753335062710,"y":41.525},{"x":1753335002512,"y":42.104},{"x":1753334942374,"y":44.628},{"x":1753334882219,"y":46.267},{"x":1753334822067,"y":47.297},{"x":1753334761810,"y":51.979},{"x":1753334701674,"y":47.377},{"x":1753334641551,"y":46.207},{"x":1753334581413,"y":43.345},{"x":1753334521294,"y":39.932},{"x":1753334461169,"y":46.408},{"x":1753334401058,"y":28.238},{"x":1753334340870,"y":43.132},{"x":1753334280738,"y":47.513},{"x":1753334220664,"y":44.9},{"x":1753334160628,"y":51.535},{"x":1753334100325,"y":52.116},{"x":1753334040164,"y":50.41},{"x":1753333982890,"y":47.473},{"x":1753333922747,"y":47.884},{"x":1753333862626,"y":45.325},{"x":1753333802495,"y":44.294},{"x":1753333742334,"y":44.137},{"x":1753333682204,"y":44.93},{"x":1753333622033,"y":52.775},{"x":1753333561878,"y":53.022},{"x":1753333501753,"y":56.051},{"x":1753333441624,"y":51.329},{"x":1753333381496,"y":58.421},{"x":1753333321334,"y":62.94},{"x":1753333261200,"y":63.173},{"x":1753333201090,"y":66.043},{"x":1753333140692,"y":59.305},{"x":1753333080579,"y":57.104},{"x":1753333020504,"y":53.622},{"x":1753332960435,"y":53.52},{"x":1753332902973,"y":54.334},{"x":1753332842888,"y":64.56},{"x":1753332782707,"y":65.335},{"x":1753332722566,"y":65.08},{"x":1753332662426,"y":66.348},{"x":1753332602286,"y":57.234},{"x":1753332542150,"y":61.958},{"x":1753332482023,"y":60.829},{"x":1753332421857,"y":57.979},{"x":1753332361716,"y":56.912},{"x":1753332301546,"y":57.138},{"x":1753332241402,"y":59.148},{"x":1753332181281,"y":53.794},{"x":1753332121148,"y":56.327},{"x":1753332060990,"y":55.742},{"x":1753332000879,"y":70.451},{"x":1753331940726,"y":61.925},{"x":1753331880594,"y":61.692},{"x":1753331820475,"y":61.297},{"x":1753331760127,"y":57.654},{"x":1753331702892,"y":54.653},{"x":1753331642755,"y":53.648},{"x":1753331582619,"y":59.73},{"x":1753331522475,"y":53.441},{"x":1753331462324,"y":53.737},{"x":1753331402199,"y":51.986},{"x":1753331342074,"y":54.683},{"x":1753331281809,"y":57.746},{"x":1753331221614,"y":55.518},{"x":1753331161488,"y":56.24},{"x":1753331101364,"y":55.848},{"x":1753331041244,"y":52.116},{"x":1753330981107,"y":59.83},{"x":1753330920356,"y":56.347},{"x":1753330862929,"y":53.584},{"x":1753330802802,"y":54.181},{"x":1753330742672,"y":53.957},{"x":1753330682482,"y":55.152},{"x":1753330621412,"y":54.268},{"x":1753330561202,"y":55.326},{"x":1753330501082,"y":55.114},{"x":1753330440921,"y":54.628},{"x":1753330380770,"y":58.015},{"x":1753330320685,"y":59.76},{"x":1753330260551,"y":53.88},{"x":1753330200445,"y":53.173},{"x":1753330142410,"y":55.344},{"x":1753330083008,"y":57.934},{"x":1753330022865,"y":61.168},{"x":1753329962736,"y":55.939},{"x":1753329902608,"y":59.84},{"x":1753329842471,"y":55.002},{"x":1753329782329,"y":55.868},{"x":1753329722187,"y":59.908},{"x":1753329662034,"y":58.358},{"x":1753329601327,"y":54.989},{"x":1753329540905,"y":56.971},{"x":1753329480767,"y":57.864},{"x":1753329420635,"y":55.638},{"x":1753329360523,"y":54.374},{"x":1753329300381,"y":43.888},{"x":1753329240227,"y":40.675},{"x":1753329182956,"y":41.471},{"x":1753329122821,"y":43.375},{"x":1753329062675,"y":61.084},{"x":1753329002377,"y":42.926},{"x":1753328942243,"y":41.191},{"x":1753328882101,"y":40.94},{"x":1753328821963,"y":40.73},{"x":1753328761834,"y":45.038},{"x":1753328701700,"y":41.248},{"x":1753328641560,"y":40.506},{"x":1753328581425,"y":41.78},{"x":1753328521288,"y":42.678},{"x":1753328461161,"y":48.281},{"x":1753328401032,"y":47.873},{"x":1753328340886,"y":46.656},{"x":1753328280758,"y":49.991},{"x":1753328220630,"y":49.954},{"x":1753328160533,"y":47.854},{"x":1753328100316,"y":51.016},{"x":1753328040162,"y":42.691},{"x":1753327982913,"y":35.404},{"x":1753327922801,"y":33.467},{"x":1753327862649,"y":31.584},{"x":1753327802522,"y":32.849},{"x":1753327742392,"y":34.397},{"x":1753327682217,"y":35.801},{"x":1753327622088,"y":36.935},{"x":1753327561960,"y":41.646},{"x":1753327501806,"y":41.708},{"x":1753327441663,"y":36.475},{"x":1753327381541,"y":37.234},{"x":1753327321398,"y":36.899},{"x":1753327261249,"y":32.707},{"x":1753327201104,"y":36.896},{"x":1753327140964,"y":30.428},{"x":1753327080830,"y":31.886},{"x":1753327020727,"y":32.97},{"x":1753326961767,"y":37.865},{"x":1753326901459,"y":39.023},{"x":1753326841324,"y":36.778},{"x":1753326781205,"y":40.654},{"x":1753326721060,"y":36.938},{"x":1753326660916,"y":33.194},{"x":1753326600804,"y":33.118},{"x":1753326540664,"y":35.266},{"x":1753326480449,"y":31.904},{"x":1753326420203,"y":32.254},{"x":1753326362903,"y":35.228},{"x":1753326302762,"y":34.405},{"x":1753326238735,"y":37.058},{"x":1753326232738,"y":33.268},{"x":1753325941131,"y":37.034},{"x":1753325880970,"y":36.125},{"x":1753325820764,"y":35.707},{"x":1753325760678,"y":36.842},{"x":1753325700595,"y":36.938},{"x":1753325640360,"y":34.866},{"x":1753325580211,"y":36.254},{"x":1753325522977,"y":33.889},{"x":1753325462819,"y":32.206},{"x":1753325402693,"y":31.628},{"x":1753325342557,"y":31.002},{"x":1753325282422,"y":39.522},{"x":1753325222293,"y":35.974},{"x":1753325162161,"y":40.486},{"x":1753325102031,"y":41.14},{"x":1753325041891,"y":39.41},{"x":1753324981757,"y":42.422},{"x":1753324921611,"y":35.977},{"x":1753324861484,"y":32.662},{"x":1753324801352,"y":33.504},{"x":1753324741213,"y":32.363},{"x":1753324681064,"y":33.557},{"x":1753324620918,"y":32.808},{"x":1753324560790,"y":34.314},{"x":1753324500683,"y":37.141},{"x":1753324440513,"y":35.448},{"x":1753324380447,"y":34.192},{"x":1753324320293,"y":34.585},{"x":1753324262970,"y":39.529},{"x":1753324202842,"y":37.746},{"x":1753324142633,"y":39.413},{"x":1753324082458,"y":36.827},{"x":1753324022245,"y":39.464},{"x":1753323962099,"y":35.407},{"x":1753323901950,"y":36.486},{"x":1753323841819,"y":35.084},{"x":1753323781678,"y":33.856},{"x":1753323721544,"y":41.849},{"x":1753323661439,"y":37.229},{"x":1753323601319,"y":36.14},{"x":1753323541153,"y":33.422},{"x":1753323480995,"y":33.463},{"x":1753323420858,"y":35.273},{"x":1753323360720,"y":34.681},{"x":1753323300694,"y":36.056},{"x":1753323240151,"y":36.781},{"x":1753323182924,"y":33.698},{"x":1753323122776,"y":32.046},{"x":1753323062652,"y":33.356},{"x":1753323002533,"y":33.708},{"x":1753322942388,"y":34.651},{"x":1753322882244,"y":35.124},{"x":1753322822101,"y":37.68},{"x":1753322761960,"y":45.062},{"x":1753322701824,"y":37.194},{"x":1753322641700,"y":34.02},{"x":1753322581570,"y":33.119},{"x":1753322521417,"y":32.387},{"x":1753322461295,"y":36.535},{"x":1753322401569,"y":33.457},{"x":1753322341091,"y":33.092},{"x":1753322280940,"y":36.146},{"x":1753322220812,"y":36.106},{"x":1753322160684,"y":40.63},{"x":1753322100615,"y":40.255},{"x":1753322040427,"y":37.541},{"x":1753321980280,"y":36.761},{"x":1753321922966,"y":34.423},{"x":1753321862823,"y":33.63},{"x":1753321802685,"y":34.168},{"x":1753321742547,"y":29.99},{"x":1753321682411,"y":30.594},{"x":1753321622263,"y":32.974},{"x":1753321562127,"y":36.436},{"x":1753321501993,"y":37.687},{"x":1753321441851,"y":41.773},{"x":1753321381720,"y":37.5},{"x":1753321321589,"y":34.1},{"x":1753321261448,"y":33.57},{"x":1753321201305,"y":33.751},{"x":1753321141159,"y":34.703},{"x":1753321081018,"y":32.44},{"x":1753321020884,"y":31.985},{"x":1753320960757,"y":32.24},{"x":1753320900658,"y":32.934},{"x":1753320840488,"y":38.288},{"x":1753320780395,"y":40.765},{"x":1753320720256,"y":39.498},{"x":1753320662953,"y":39.622},{"x":1753320602815,"y":39.962},{"x":1753320542683,"y":41.742},{"x":1753320482510,"y":36.308},{"x":1753320422351,"y":33.33},{"x":1753320362221,"y":34.345},{"x":1753320302093,"y":34.975},{"x":1753320241948,"y":33.502},{"x":1753320181818,"y":38.989},{"x":1753320121687,"y":34.133},{"x":1753320061534,"y":34.277},{"x":1753320001395,"y":35.393},{"x":1753319941248,"y":38.3},{"x":1753319881110,"y":41.614},{"x":1753319820972,"y":36.991},{"x":1753319760830,"y":36.15},{"x":1753319700807,"y":33.577},{"x":1753319640558,"y":34.711},{"x":1753319580420,"y":39.709},{"x":1753319520222,"y":36.599},{"x":1753319462940,"y":36.085},{"x":1753319402795,"y":35.128},{"x":1753319342669,"y":36.089},{"x":1753319282014,"y":37.805},{"x":1753319221879,"y":36.593},{"x":1753319161734,"y":35.834},{"x":1753319101586,"y":34.632},{"x":1753319041435,"y":33.5},{"x":1753318981309,"y":32.557},{"x":1753318921190,"y":43.187},{"x":1753318861059,"y":45.271},{"x":1753318802930,"y":48.142},{"x":1753318742793,"y":46.862},{"x":1753318682666,"y":48.881},{"x":1753318622521,"y":45.971},{"x":1753318562382,"y":42.287},{"x":1753318502239,"y":42.476},{"x":1753318442104,"y":40.806},{"x":1753318381946,"y":39.718},{"x":1753318321811,"y":40.742},{"x":1753318261686,"y":32.072},{"x":1753318201316,"y":33.079},{"x":1753318141180,"y":32.818},{"x":1753318081030,"y":33.913},{"x":1753318020896,"y":37.54},{"x":1753317960759,"y":35.41},{"x":1753317900700,"y":37.619},{"x":1753317840501,"y":36.17},{"x":1753317780371,"y":35.49},{"x":1753317720202,"y":36.214},{"x":1753317662933,"y":35.636},{"x":1753317602791,"y":33.282},{"x":1753317542648,"y":34.464},{"x":1753317482516,"y":34.879},{"x":1753317422386,"y":34.48},{"x":1753317362223,"y":32.807},{"x":1753317302095,"y":36.368},{"x":1753317241938,"y":38.78},{"x":1753317181805,"y":43.54},{"x":1753317121672,"y":37.728},{"x":1753317061541,"y":42.919},{"x":1753317001483,"y":36.868},{"x":1753316941122,"y":34.484},{"x":1753316880959,"y":37.973},{"x":1753316820739,"y":34.897},{"x":1753316760597,"y":38.35},{"x":1753316700470,"y":37.96},{"x":1753316640267,"y":39.186},{"x":1753316582964,"y":39.386},{"x":1753316522822,"y":35.917},{"x":1753316462463,"y":40.082},{"x":1753316402324,"y":33.403},{"x":1753316342175,"y":33.584},{"x":1753316282034,"y":37.406},{"x":1753316221869,"y":35.84},{"x":1753316161726,"y":35.57},{"x":1753316101467,"y":35.37},{"x":1753316041340,"y":36.342},{"x":1753315981195,"y":36.13},{"x":1753315921058,"y":34.508},{"x":1753315860914,"y":38.368},{"x":1753315800806,"y":37.26},{"x":1753315740628,"y":35.608},{"x":1753315682792,"y":34.577},{"x":1753315622641,"y":33.28},{"x":1753315562487,"y":33.568},{"x":1753315502353,"y":34.453},{"x":1753315442218,"y":36.622},{"x":1753315382078,"y":37.442},{"x":1753315321932,"y":39.707},{"x":1753315261787,"y":38.767},{"x":1753315201138,"y":41.645},{"x":1753315140775,"y":36.988},{"x":1753315080646,"y":49.315},{"x":1753315020445,"y":47.304},{"x":1753314960294,"y":47.878},{"x":1753314902977,"y":51.635},{"x":1753314842828,"y":47.549},{"x":1753314782688,"y":33.474},{"x":1753314722541,"y":33.353},{"x":1753314662407,"y":33.04},{"x":1753314602274,"y":39.954},{"x":1753314542142,"y":36.076},{"x":1753314481995,"y":36.92},{"x":1753314421855,"y":37.16},{"x":1753314361713,"y":34.061},{"x":1753314301541,"y":39.523},{"x":1753314241368,"y":34.94},{"x":1753314181253,"y":33.793},{"x":1753314121110,"y":32.608},{"x":1753314060979,"y":34.012},{"x":1753314000862,"y":37.354},{"x":1753313940703,"y":36.706},{"x":1753313880635,"y":37.556},{"x":1753313820457,"y":39.061},{"x":1753313760303,"y":44.432},{"x":1753313702956,"y":37.262},{"x":1753313642774,"y":37.187},{"x":1753313582651,"y":35.718},{"x":1753313522482,"y":37.409},{"x":1753313462354,"y":34.769},{"x":1753313402217,"y":35.628},{"x":1753313342082,"y":35.288},{"x":1753313281894,"y":37.808},{"x":1753313221736,"y":38.782},{"x":1753313161605,"y":39.494},{"x":1753313101477,"y":37.981},{"x":1753313041348,"y":34.745},{"x":1753312981219,"y":35.213},{"x":1753312921087,"y":33.606},{"x":1753312860940,"y":34.871},{"x":1753312800869,"y":35.928},{"x":1753312740637,"y":41.022},{"x":1753312680535,"y":37.333},{"x":1753312620339,"y":35.167},{"x":1753312560205,"y":37.338},{"x":1753312502908,"y":39.328},{"x":1753312442780,"y":53.134},{"x":1753312382642,"y":47.956},{"x":1753312322513,"y":46.032},{"x":1753312262383,"y":44.646},{"x":1753312202242,"y":38.478},{"x":1753312142095,"y":42.444},{"x":1753312081949,"y":47.189},{"x":1753312021749,"y":45.593},{"x":1753311961632,"y":48.066},{"x":1753311901499,"y":48.24},{"x":1753311841328,"y":46.955},{"x":1753311781208,"y":37.321},{"x":1753311721069,"y":38.675},{"x":1753311660931,"y":42.64},{"x":1753311600948,"y":41.089},{"x":1753311540744,"y":46.044},{"x":1753311480620,"y":45.533},{"x":1753311420604,"y":39.238},{"x":1753311360372,"y":36.523},{"x":1753311300143,"y":35.191},{"x":1753311242921,"y":34.856},{"x":1753311182784,"y":37.952},{"x":1753311122633,"y":40.932},{"x":1753311062503,"y":40.025},{"x":1753311002367,"y":41.518},{"x":1753310942212,"y":46.498},{"x":1753310882076,"y":40.132},{"x":1753310821927,"y":38.004},{"x":1753310761793,"y":35.693},{"x":1753310701496,"y":33.446},{"x":1753310641356,"y":35.471},{"x":1753310581222,"y":36.72},{"x":1753310521073,"y":38.586},{"x":1753310460933,"y":34.64},{"x":1753310400868,"y":35.876},{"x":1753310340611,"y":35.818},{"x":1753310280546,"y":36.047},{"x":1753310220412,"y":39.234},{"x":1753310160202,"y":36.523},{"x":1753310103037,"y":36.065},{"x":1753310042825,"y":35.267},{"x":1753309982643,"y":36.203},{"x":1753309922507,"y":32.616},{"x":1753309862368,"y":34.867},{"x":1753309802242,"y":32.922},{"x":1753309742090,"y":33.557},{"x":1753309681918,"y":34.325},{"x":1753309621732,"y":34.183},{"x":1753309561598,"y":32.494},{"x":1753309501463,"y":34.567},{"x":1753309441325,"y":35.706},{"x":1753309381182,"y":37.48},{"x":1753309321033,"y":39.182},{"x":1753309260901,"y":48.822},{"x":1753309200813,"y":48.797},{"x":1753309140610,"y":42.409},{"x":1753309080442,"y":40.2},{"x":1753309020236,"y":45.626},{"x":1753308962871,"y":48.164},{"x":1753308902719,"y":46.59},{"x":1753308842607,"y":46.355},{"x":1753308782468,"y":42.667},{"x":1753308722332,"y":36.695},{"x":1753308662178,"y":40.997},{"x":1753308602047,"y":37.558},{"x":1753308541907,"y":38.011},{"x":1753308480569,"y":43.03},{"x":1753308420471,"y":42.698},{"x":1753308360342,"y":38.623},{"x":1753308303019,"y":38.395},{"x":1753308242877,"y":36.721},{"x":1753308182751,"y":42.804},{"x":1753308122623,"y":45.961},{"x":1753308062492,"y":40.008},{"x":1753308000913,"y":40.462},{"x":1754517541938,"y":55.57},{"x":1754517481811,"y":49.561},{"x":1754517421687,"y":36.818},{"x":1754517361574,"y":35.918},{"x":1754517301436,"y":32.838},{"x":1754517241312,"y":34.087},{"x":1754517181180,"y":30.311},{"x":1754517121048,"y":44.46},{"x":1754517060893,"y":43.976},{"x":1754517000788,"y":45.739},{"x":1754516940642,"y":45.401},{"x":1754516880568,"y":45.229},{"x":1754516820362,"y":46.85},{"x":1754516760233,"y":54.57},{"x":1754516702959,"y":54.049},{"x":1754516642840,"y":53.533},{"x":1754516582714,"y":50.928},{"x":1754516522600,"y":46.824},{"x":1754516462456,"y":29.756},{"x":1754516402319,"y":29.657},{"x":1754516342195,"y":30.433},{"x":1754516282067,"y":29.196},{"x":1754516221926,"y":33.535},{"x":1754516161806,"y":43.043},{"x":1754516101677,"y":44.232},{"x":1754516041555,"y":42.721},{"x":1754515981422,"y":41.708},{"x":1754515921297,"y":41.372},{"x":1754515861164,"y":32.54},{"x":1754515801017,"y":38.377},{"x":1754515740877,"y":34.267},{"x":1754515680768,"y":32.528},{"x":1754515620624,"y":28.672},{"x":1754515560513,"y":28.962},{"x":1754515500420,"y":35.831},{"x":1754515440209,"y":31.318},{"x":1754515382989,"y":31.925},{"x":1754515322892,"y":34.982},{"x":1754515262689,"y":34.934},{"x":1754515202547,"y":32.501},{"x":1754515142380,"y":36.77},{"x":1754515082257,"y":31.789},{"x":1754515022125,"y":46.686},{"x":1754514961983,"y":49.693},{"x":1754514901851,"y":52.667},{"x":1754514841711,"y":67.303},{"x":1754514781588,"y":66.365},{"x":1754514721471,"y":64.027},{"x":1754514661348,"y":49.402},{"x":1754514601229,"y":56.346},{"x":1754514541094,"y":55.27},{"x":1754514480939,"y":51.704},{"x":1754514420823,"y":50.028},{"x":1754514360686,"y":44.218},{"x":1754514300614,"y":43.955},{"x":1754514240416,"y":58.717},{"x":1754514180278,"y":42.688},{"x":1754514120134,"y":42.008},{"x":1754514062895,"y":43.003},{"x":1754514002780,"y":53.311},{"x":1754513942638,"y":48.922},{"x":1754513882517,"y":57.208},{"x":1754513822338,"y":57.456},{"x":1754513762220,"y":44.027},{"x":1754513702089,"y":47.743},{"x":1754513641942,"y":41.212},{"x":1754513581815,"y":29.168},{"x":1754513521687,"y":46.591},{"x":1754513461543,"y":31.733},{"x":1754513401412,"y":41.501},{"x":1754513341296,"y":34.424},{"x":1754513281159,"y":44.257},{"x":1754513221020,"y":34.018},{"x":1754513160883,"y":44.704},{"x":1754513100893,"y":49.904},{"x":1754513040643,"y":57.391},{"x":1754512980490,"y":70.327},{"x":1754512920282,"y":61.607},{"x":1754512860220,"y":51.334},{"x":1754512802914,"y":49.36},{"x":1754512742785,"y":33.521},{"x":1754512682664,"y":50.653},{"x":1754512622538,"y":42.257},{"x":1754512562412,"y":43.037},{"x":1754512502284,"y":58.8},{"x":1754512442161,"y":67.456},{"x":1754512382034,"y":73.774},{"x":1754512321900,"y":70.213},{"x":1754512261765,"y":73.169},{"x":1754512201638,"y":53.785},{"x":1754512141501,"y":51.918},{"x":1754512081381,"y":35.503},{"x":1754512021265,"y":35.896},{"x":1754511961138,"y":42.805},{"x":1754511901009,"y":38.207},{"x":1754511840875,"y":47.518},{"x":1754511780743,"y":51.308},{"x":1754511720687,"y":49.426},{"x":1754511660444,"y":53.519},{"x":1754511600338,"y":47.154},{"x":1754511540179,"y":38.087},{"x":1754511482914,"y":33.69},{"x":1754511422792,"y":34.69},{"x":1754511362664,"y":40.408},{"x":1754511302547,"y":36.152},{"x":1754511242404,"y":38.31},{"x":1754511182296,"y":40.916},{"x":1754511122156,"y":58.429},{"x":1754511061995,"y":55.003},{"x":1754511001864,"y":54.169},{"x":1754510941739,"y":51.149},{"x":1754510881618,"y":50.489},{"x":1754510821503,"y":53.626},{"x":1754510761366,"y":51.004},{"x":1754510701249,"y":47.644},{"x":1754510641115,"y":49.582},{"x":1754510580983,"y":49.493},{"x":1754510520860,"y":37.848},{"x":1754510460762,"y":46.289},{"x":1754510400651,"y":39.668},{"x":1754510340438,"y":40.429},{"x":1754510280409,"y":50.704},{"x":1754510220210,"y":36.724},{"x":1754510162939,"y":41.453},{"x":1754510102813,"y":38.984},{"x":1754510042687,"y":38.327},{"x":1754509982562,"y":38.899},{"x":1754509922440,"y":37.092},{"x":1754509862322,"y":38.749},{"x":1754509802202,"y":50.248},{"x":1754509742072,"y":38.518},{"x":1754509681946,"y":35.824},{"x":1754509621816,"y":38.156},{"x":1754509561681,"y":53.513},{"x":1754509501553,"y":51.496},{"x":1754509441418,"y":52.536},{"x":1754509381299,"y":51.028},{"x":1754509321173,"y":56.969},{"x":1754509261017,"y":44.614},{"x":1754509200946,"y":59.171},{"x":1754509140750,"y":37.752},{"x":1754509080625,"y":48.85},{"x":1754509020544,"y":38.987},{"x":1754508960398,"y":39.43},{"x":1754508900239,"y":42.342},{"x":1754508842923,"y":44.783},{"x":1754508782797,"y":37.048},{"x":1754508722666,"y":38.91},{"x":1754508662542,"y":40.241},{"x":1754508602412,"y":51.275},{"x":1754508542290,"y":44.45},{"x":1754508482168,"y":46.934},{"x":1754508422040,"y":44.758},{"x":1754508361894,"y":44.936},{"x":1754508301770,"y":41.884},{"x":1754508241641,"y":45.101},{"x":1754508181516,"y":47.566},{"x":1754508121406,"y":53.364},{"x":1754508061218,"y":50.87},{"x":1754508001050,"y":50.345},{"x":1754507940854,"y":52.385},{"x":1754507880724,"y":46.3},{"x":1754507820609,"y":45.822},{"x":1754507760503,"y":48.06},{"x":1754507700288,"y":41.682},{"x":1754507642998,"y":38.959},{"x":1754507582881,"y":45.058},{"x":1754507522753,"y":41.01},{"x":1754507462625,"y":46.177},{"x":1754507402487,"y":62.566},{"x":1754507342350,"y":67.374},{"x":1754507282233,"y":64.669},{"x":1754507222099,"y":63.476},{"x":1754507161942,"y":53.917},{"x":1754507101809,"y":46.908},{"x":1754507041679,"y":48.074},{"x":1754506981557,"y":45.184},{"x":1754506921407,"y":47.354},{"x":1754506861278,"y":60.018},{"x":1754506800956,"y":46.412},{"x":1754506740738,"y":56.466},{"x":1754506680614,"y":56.822},{"x":1754506620555,"y":66.77},{"x":1754506560389,"y":66.338},{"x":1754506500015,"y":67.914},{"x":1754506442886,"y":48.55},{"x":1754506382753,"y":54.877},{"x":1754506322628,"y":60.758},{"x":1754506262503,"y":60.138},{"x":1754506202380,"y":56.718},{"x":1754506142248,"y":53.971},{"x":1754506082113,"y":64.528},{"x":1754506021970,"y":74.152},{"x":1754505961844,"y":78.665},{"x":1754505901707,"y":64.648},{"x":1754505841581,"y":59.2},{"x":1754505781456,"y":50.836},{"x":1754505721334,"y":43.981},{"x":1754505661183,"y":50.987},{"x":1754505601079,"y":49.924},{"x":1754505540896,"y":47.471},{"x":1754505480776,"y":44.246},{"x":1754505420640,"y":37.492},{"x":1754505360602,"y":63.24},{"x":1754505300398,"y":49.667},{"x":1754505240260,"y":48.902},{"x":1754505182929,"y":44.022},{"x":1754505122800,"y":47.22},{"x":1754505062677,"y":34.181},{"x":1754505002553,"y":34.001},{"x":1754504942413,"y":34.904},{"x":1754504882291,"y":35.372},{"x":1754504822159,"y":35.645},{"x":1754504762022,"y":35.188},{"x":1754504701895,"y":36.582},{"x":1754504641763,"y":39.448},{"x":1754504581628,"y":38.544},{"x":1754504521515,"y":36.33},{"x":1754504461380,"y":41.875},{"x":1754504401216,"y":41.011},{"x":1754504341022,"y":50.272},{"x":1754504280892,"y":42.799},{"x":1754504220770,"y":43.078},{"x":1754504160643,"y":33.871},{"x":1754504100531,"y":39.31},{"x":1754504040347,"y":33.6},{"x":1754503980352,"y":29.929},{"x":1754503922933,"y":27.785},{"x":1754503862818,"y":57.78},{"x":1754503802668,"y":60.65},{"x":1754503742542,"y":61.922},{"x":1754503682417,"y":60.116},{"x":1754503622275,"y":51.302},{"x":1754503562164,"y":28.516},{"x":1754503502027,"y":45.28},{"x":1754503441880,"y":32.25},{"x":1754503381754,"y":31.799},{"x":1754503321629,"y":29.664},{"x":1754503261504,"y":28.468},{"x":1754503201449,"y":28.344},{"x":1754503141242,"y":33.812},{"x":1754503081103,"y":30.058},{"x":1754503020955,"y":36.26},{"x":1754502960834,"y":31.598},{"x":1754502900739,"y":30.409},{"x":1754502840565,"y":50.526},{"x":1754502780442,"y":42.917},{"x":1754502720273,"y":45.242},{"x":1754502663008,"y":43.744},{"x":1754502602879,"y":47.345},{"x":1754502542754,"y":35.694},{"x":1754502482635,"y":43.752},{"x":1754502422507,"y":46.71},{"x":1754502362419,"y":44.984},{"x":1754502302228,"y":50.182},{"x":1754502242089,"y":48.511},{"x":1754502181952,"y":34.333},{"x":1754502121798,"y":48.259},{"x":1754502061673,"y":66.172},{"x":1754502001553,"y":59.96},{"x":1754501941428,"y":52.595},{"x":1754501881309,"y":49.873},{"x":1754501821191,"y":29.972},{"x":1754501761038,"y":38.885},{"x":1754501700909,"y":37.694},{"x":1754501640771,"y":42.58},{"x":1754501580653,"y":35.68},{"x":1754501520595,"y":33.702},{"x":1754501460394,"y":34.067},{"x":1754501400255,"y":37.147},{"x":1754501342962,"y":44.779},{"x":1754501282845,"y":33.362},{"x":1754501222729,"y":32.621},{"x":1754501162598,"y":28.907},{"x":1754501102466,"y":36.808},{"x":1754501042331,"y":31.692},{"x":1754500982204,"y":32.959},{"x":1754500922071,"y":30.146},{"x":1754500861920,"y":31.054},{"x":1754500801761,"y":44.026},{"x":1754500741603,"y":43.686},{"x":1754500681485,"y":54.614},{"x":1754500621363,"y":60.095},{"x":1754500561234,"y":51.649},{"x":1754500501138,"y":45.203},{"x":1754500440930,"y":47.002},{"x":1754500380808,"y":31.313},{"x":1754500320727,"y":29.364},{"x":1754500260569,"y":30.688},{"x":1754500200508,"y":42.498},{"x":1754500140315,"y":53.116},{"x":1754500080173,"y":49.624},{"x":1754500022948,"y":51.734},{"x":1754499962819,"y":46.358},{"x":1754499902695,"y":35.903},{"x":1754499842563,"y":29.848},{"x":1754499782444,"y":27.534},{"x":1754499722317,"y":31.343},{"x":1754499662207,"y":28.918},{"x":1754499602180,"y":42.836},{"x":1754499541904,"y":40.438},{"x":1754499481768,"y":40.948},{"x":1754499421644,"y":39.121},{"x":1754499361519,"y":42.832},{"x":1754499301383,"y":29.479},{"x":1754499241258,"y":47.128},{"x":1754499181118,"y":33.286},{"x":1754499120982,"y":29.191},{"x":1754499060844,"y":35.458},{"x":1754499000739,"y":24.75},{"x":1754498940579,"y":32.526},{"x":1754498880493,"y":61.08},{"x":1754498820366,"y":59.077},{"x":1754498760176,"y":56.735},{"x":1754498702938,"y":57.03},{"x":1754498642820,"y":41.99},{"x":1754498582693,"y":28.27},{"x":1754498522562,"y":28.969},{"x":1754498462441,"y":29.582},{"x":1754498402320,"y":31.504},{"x":1754498342197,"y":25.547},{"x":1754498282070,"y":28.991},{"x":1754498221927,"y":23.18},{"x":1754498161790,"y":24.118},{"x":1754498101667,"y":37.109},{"x":1754498041542,"y":50.789},{"x":1754497981405,"y":50.125},{"x":1754497921282,"y":45.043},{"x":1754497861154,"y":41.432},{"x":1754497801027,"y":33.76},{"x":1754497740861,"y":31.608},{"x":1754497680707,"y":28.224},{"x":1754497620541,"y":22.555},{"x":1754497560406,"y":23.365},{"x":1754497500285,"y":22.357},{"x":1754497442974,"y":22.459},{"x":1754497382848,"y":39.311},{"x":1754497322738,"y":27.559},{"x":1754497262534,"y":25.956},{"x":1754497202391,"y":32.297},{"x":1754497142231,"y":22.608},{"x":1754497082108,"y":28.74},{"x":1754497021947,"y":41.084},{"x":1754496961815,"y":33.968},{"x":1754496901696,"y":37.198},{"x":1754496841568,"y":36.89},{"x":1754496781447,"y":37.031},{"x":1754496721322,"y":39.728},{"x":1754496661195,"y":31.787},{"x":1754496601094,"y":30.476},{"x":1754496540915,"y":42.798},{"x":1754496480829,"y":44.177},{"x":1754496420653,"y":43.95},{"x":1754496360509,"y":39.749},{"x":1754496300401,"y":39.536},{"x":1754496240245,"y":35.993},{"x":1754496182917,"y":57.084},{"x":1754496122790,"y":46.354},{"x":1754496062663,"y":69.64},{"x":1754496002614,"y":63.704},{"x":1754495942400,"y":38.068},{"x":1754495882276,"y":27.343},{"x":1754495822144,"y":44.291},{"x":1754495762001,"y":26.797},{"x":1754495701877,"y":26.74},{"x":1754495641733,"y":21.829},{"x":1754495581601,"y":31.92},{"x":1754495521476,"y":27.053},{"x":1754495461324,"y":42.716},{"x":1754495401206,"y":23.429},{"x":1754495341068,"y":19.189},{"x":1754495280949,"y":20.534},{"x":1754495220809,"y":16.152},{"x":1754495160689,"y":33.002},{"x":1754495100622,"y":33.43},{"x":1754495040448,"y":33.385},{"x":1754494980314,"y":42.743},{"x":1754494922999,"y":41.935},{"x":1754494862868,"y":27.917},{"x":1754494802737,"y":29.926},{"x":1754494742614,"y":33.72},{"x":1754494682470,"y":19.158},{"x":1754494622325,"y":19.438},{"x":1754494562207,"y":34.13},{"x":1754494502076,"y":19.759},{"x":1754494441927,"y":22.951},{"x":1754494381799,"y":20.184},{"x":1754494321666,"y":18.253},{"x":1754494261532,"y":40.073},{"x":1754494201412,"y":33.22},{"x":1754494141274,"y":30.258},{"x":1754494081150,"y":28.24},{"x":1754494021011,"y":18.828},{"x":1754493960877,"y":17.713},{"x":1754493900776,"y":12.596},{"x":1754493840607,"y":12.73},{"x":1754493780414,"y":17.495},{"x":1754493720349,"y":14.557},{"x":1754493660089,"y":18.239},{"x":1754493602900,"y":14.582},{"x":1754493542742,"y":21.874},{"x":1754493482615,"y":17.826},{"x":1754493422478,"y":16.717},{"x":1754493362352,"y":33.721},{"x":1754493302214,"y":44.141},{"x":1754493242103,"y":39.224},{"x":1754493181928,"y":37.199},{"x":1754493121795,"y":40.76},{"x":1754493061664,"y":24.388},{"x":1754493001545,"y":27.416},{"x":1754492941422,"y":10.187},{"x":1754492881294,"y":9.732},{"x":1754492821151,"y":21.614},{"x":1754492761033,"y":22.183},{"x":1754492700881,"y":33.468},{"x":1754492640760,"y":30.006},{"x":1754492580579,"y":32.336},{"x":1754492520453,"y":27.62},{"x":1754492460261,"y":31.429},{"x":1754492403181,"y":15.802},{"x":1754492342821,"y":12.394},{"x":1754492282601,"y":11.63},{"x":1754492222476,"y":21.151},{"x":1754492162366,"y":12.132},{"x":1754492102216,"y":12.941},{"x":1754492042123,"y":28.28},{"x":1754491981944,"y":30.174},{"x":1754491921817,"y":43.601},{"x":1754491861690,"y":43.362},{"x":1754491801557,"y":39.875},{"x":1754491741420,"y":25.124},{"x":1754491681283,"y":38.298},{"x":1754491621168,"y":13.136},{"x":1754491561014,"y":20.545},{"x":1754491500923,"y":32.866},{"x":1754491440731,"y":16.246},{"x":1754491380614,"y":31.201},{"x":1754491320512,"y":32.102},{"x":1754491260377,"y":30.244},{"x":1754491200264,"y":43.362},{"x":1754491142905,"y":43.47},{"x":1754491082786,"y":27.376},{"x":1754491022638,"y":26.686},{"x":1754490962526,"y":31.17},{"x":1754490902376,"y":22.951},{"x":1754490842255,"y":14.593},{"x":1754490782126,"y":23.85},{"x":1754490721988,"y":19.302},{"x":1754490661861,"y":14.749},{"x":1754490601740,"y":30.404},{"x":1754490541600,"y":24.481},{"x":1754490481461,"y":29.311},{"x":1754490421337,"y":40.705},{"x":1754490361225,"y":32.075},{"x":1754490301077,"y":21.775},{"x":1754490240939,"y":34.181},{"x":1754490180794,"y":36.865},{"x":1754490120688,"y":14.414},{"x":1754490060614,"y":17.522},{"x":1754490000421,"y":11.624},{"x":1754489940275,"y":10.512},{"x":1754489880032,"y":17.339},{"x":1754489822896,"y":27.94},{"x":1754489762749,"y":28.754},{"x":1754489702625,"y":35.944},{"x":1754489642502,"y":35.339},{"x":1754489582376,"y":51.922},{"x":1754489522249,"y":21.92},{"x":1754489462128,"y":27.395},{"x":1754489401977,"y":19.675},{"x":1754489341834,"y":25.506},{"x":1754489281714,"y":25.726},{"x":1754489221599,"y":52.366},{"x":1754489161461,"y":38.491},{"x":1754489101334,"y":47.357},{"x":1754489041204,"y":21.404},{"x":1754488981075,"y":35.167},{"x":1754488920939,"y":26.266},{"x":1754488860827,"y":29.306},{"x":1754488800762,"y":38.616},{"x":1754488740558,"y":23.538},{"x":1754488680471,"y":53.412},{"x":1754488620303,"y":41.718},{"x":1754488560157,"y":35.76},{"x":1754488502915,"y":34.649},{"x":1754488442794,"y":31.062},{"x":1754488382683,"y":14.773},{"x":1754488322539,"y":16.962},{"x":1754488262435,"y":15.978},{"x":1754488202280,"y":9.515},{"x":1754488142147,"y":13.019},{"x":1754488082023,"y":14.941},{"x":1754488021884,"y":12.994},{"x":1754487961762,"y":18.737},{"x":1754487901648,"y":12.238},{"x":1754487841516,"y":10.597},{"x":1754487781385,"y":10.175},{"x":1754487721263,"y":7.175},{"x":1754487661122,"y":16.06},{"x":1754487600980,"y":27.461},{"x":1754487540780,"y":36.055},{"x":1754487480663,"y":35.843},{"x":1754487420549,"y":29.357},{"x":1754487360433,"y":35.407},{"x":1754487300290,"y":30.394},{"x":1754487243001,"y":11.37},{"x":1754487182878,"y":12.396},{"x":1754487122765,"y":11.935},{"x":1754487062629,"y":12.635},{"x":1754487002499,"y":23.332},{"x":1754486942363,"y":13.806},{"x":1754486882240,"y":26.437},{"x":1754486822125,"y":28.984},{"x":1754486761985,"y":27.792},{"x":1754486701850,"y":22.324},{"x":1754486641718,"y":32.108},{"x":1754486581597,"y":24.524},{"x":1754486521470,"y":41.528},{"x":1754486461333,"y":61.304},{"x":1754486401189,"y":33.564},{"x":1754486340995,"y":25.195},{"x":1754486280871,"y":25.946},{"x":1754486220757,"y":8.497},{"x":1754486160658,"y":10.582},{"x":1754486100578,"y":13.555},{"x":1754486043017,"y":9.738},{"x":1754485982909,"y":7.301},{"x":1754485922763,"y":5.748},{"x":1754485862661,"y":5.558},{"x":1754485802520,"y":26.341},{"x":1754485742413,"y":28.908},{"x":1754485682267,"y":29.35},{"x":1754485622135,"y":28.3},{"x":1754485561993,"y":42.022},{"x":1754485501863,"y":30.623},{"x":1754485441738,"y":37.152},{"x":1754485381608,"y":35.086},{"x":1754485321468,"y":43.502},{"x":1754485261378,"y":27.701},{"x":1754485201322,"y":21.012},{"x":1754485141039,"y":16.388},{"x":1754485080891,"y":17.195},{"x":1754485020778,"y":12.763},{"x":1754484960699,"y":18.787},{"x":1754484900541,"y":15.274},{"x":1754484840399,"y":17.258},{"x":1754484780276,"y":25.241},{"x":1754484722949,"y":24.286},{"x":1754484662821,"y":17.993},{"x":1754484602698,"y":15.98},{"x":1754484542588,"y":13.448},{"x":1754484482426,"y":9.362},{"x":1754484422301,"y":12.757},{"x":1754484362172,"y":13.238},{"x":1754484302046,"y":29.958},{"x":1754484241921,"y":26.149},{"x":1754484181810,"y":25.112},{"x":1754484121665,"y":29.425},{"x":1754484061533,"y":13.189},{"x":1754484001403,"y":24.067},{"x":1754483941299,"y":23.207},{"x":1754483881112,"y":19.55},{"x":1754483820916,"y":35.774},{"x":1754483760786,"y":27.491},{"x":1754483700677,"y":10.888},{"x":1754483640521,"y":11.994},{"x":1754483580422,"y":19.252},{"x":1754483520265,"y":11.786},{"x":1754483462975,"y":32.747},{"x":1754483402848,"y":36.631},{"x":1754483342732,"y":32.84},{"x":1754483282576,"y":30.937},{"x":1754483222481,"y":31.973},{"x":1754483162326,"y":20.266},{"x":1754483102215,"y":20.926},{"x":1754483042072,"y":18.479},{"x":1754482981923,"y":25.078},{"x":1754482921825,"y":24.61},{"x":1754482861661,"y":21.338},{"x":1754482801510,"y":24.088},{"x":1754482741338,"y":10.768},{"x":1754482681217,"y":8.459},{"x":1754482621078,"y":4.969},{"x":1754482560941,"y":7.351},{"x":1754482500846,"y":17.485},{"x":1754482440685,"y":30.124},{"x":1754482380561,"y":22.327},{"x":1754482320401,"y":18.857},{"x":1754482260263,"y":14.884},{"x":1754482202966,"y":6.192},{"x":1754482142817,"y":26.934},{"x":1754482082690,"y":8.06},{"x":1754482022560,"y":10.436},{"x":1754481962432,"y":8.437},{"x":1754481902301,"y":47.536},{"x":1754481842177,"y":26.02},{"x":1754481782052,"y":23.621},{"x":1754481721913,"y":38.333},{"x":1754481661777,"y":26.934},{"x":1754481601776,"y":-0.718},{"x":1754481541387,"y":1.184},{"x":1754481481286,"y":15.554},{"x":1754481421126,"y":15.166},{"x":1754481360980,"y":18.814},{"x":1754481300863,"y":20.994},{"x":1754481240717,"y":22.774},{"x":1754481180594,"y":11.219},{"x":1754481120405,"y":21.734},{"x":1754481063005,"y":22.547},{"x":1754481002880,"y":15.143},{"x":1754480942759,"y":15.089},{"x":1754480882629,"y":14.783},{"x":1754480822502,"y":17.245},{"x":1754480762383,"y":10.9},{"x":1754480702262,"y":22.456},{"x":1754480642136,"y":9.544},{"x":1754480581994,"y":10.879},{"x":1754480521868,"y":12.287},{"x":1754480461740,"y":15.703},{"x":1754480401613,"y":12.815},{"x":1754480341485,"y":23.461},{"x":1754480281367,"y":27.518},{"x":1754480221229,"y":26.472},{"x":1754480161104,"y":21.28},{"x":1754480100969,"y":19.788},{"x":1754480040836,"y":21.732},{"x":1754479980715,"y":19.543},{"x":1754479920596,"y":20.023},{"x":1754479860441,"y":23.275},{"x":1754479800383,"y":11.866},{"x":1754479743011,"y":5.171},{"x":1754479682886,"y":7.907},{"x":1754479622757,"y":11.366},{"x":1754479562632,"y":12.42},{"x":1754479502492,"y":12.462},{"x":1754479442366,"y":11.933},{"x":1754479382238,"y":10.456},{"x":1754479322135,"y":17.354},{"x":1754479261951,"y":36.92},{"x":1754479201810,"y":20.983},{"x":1754479141656,"y":22.536},{"x":1754479081539,"y":20.74},{"x":1754479021418,"y":24.972},{"x":1754478961291,"y":28.158},{"x":1754478901190,"y":17.652},{"x":1754478841019,"y":19.835},{"x":1754478780877,"y":20.232},{"x":1754478720765,"y":33.065},{"x":1754478660646,"y":31.7},{"x":1754478600601,"y":31.769},{"x":1754478540397,"y":26.071},{"x":1754478480252,"y":31.836},{"x":1754478422973,"y":23.45},{"x":1754478362842,"y":21.755},{"x":1754478302689,"y":18.857},{"x":1754478242581,"y":19.805},{"x":1754478182439,"y":27.296},{"x":1754478122312,"y":23.263},{"x":1754478062188,"y":14.593},{"x":1754478002081,"y":16.681},{"x":1754477941903,"y":14.454},{"x":1754477881776,"y":26.054},{"x":1754477821653,"y":22.458},{"x":1754477761526,"y":29.843},{"x":1754477701395,"y":18.534},{"x":1754477641267,"y":18.568},{"x":1754477581142,"y":13.1},{"x":1754477520994,"y":14.854},{"x":1754477460871,"y":9.13},{"x":1754477400773,"y":8.292},{"x":1754477340605,"y":18.121},{"x":1754477280505,"y":31.519},{"x":1754477220299,"y":12.527},{"x":1754477160160,"y":6.737},{"x":1754477102930,"y":13.076},{"x":1754477042809,"y":12.283},{"x":1754476982681,"y":22.871},{"x":1754476922556,"y":36.146},{"x":1754476862433,"y":30.958},{"x":1754476802311,"y":34.199},{"x":1754476742184,"y":31.974},{"x":1754476682067,"y":24.329},{"x":1754476621921,"y":12.096},{"x":1754476561792,"y":12.776},{"x":1754476501668,"y":20.58},{"x":1754476441539,"y":19.484},{"x":1754476381420,"y":25.168},{"x":1754476321297,"y":36.661},{"x":1754476261122,"y":42.679},{"x":1754476201030,"y":46.6},{"x":1754476140796,"y":40.825},{"x":1754476080667,"y":39.025},{"x":1754476020636,"y":5.422},{"x":1754475960478,"y":4.691},{"x":1754475900310,"y":7.678},{"x":1754475842991,"y":13.086},{"x":1754475782870,"y":10.133},{"x":1754475722750,"y":24.554},{"x":1754475662601,"y":23.438},{"x":1754475602428,"y":20.291},{"x":1754475542280,"y":16.39},{"x":1754475482143,"y":12.908},{"x":1754475421985,"y":9.101},{"x":1754475361861,"y":4.52},{"x":1754475301737,"y":6.821},{"x":1754475241599,"y":8.309},{"x":1754475181473,"y":24.893},{"x":1754475121348,"y":28.416},{"x":1754475061223,"y":30.754},{"x":1754475001048,"y":34.625},{"x":1754474940909,"y":33.14},{"x":1754474880773,"y":34.351},{"x":1754474820650,"y":33.599},{"x":1754474760559,"y":33.786},{"x":1754474700388,"y":37.794},{"x":1754474640293,"y":45.191},{"x":1754474582987,"y":21.788},{"x":1754474522843,"y":14.959},{"x":1754474462717,"y":11.638},{"x":1754474402602,"y":12.058},{"x":1754474342461,"y":15.144},{"x":1754474282343,"y":15.788},{"x":1754474222216,"y":34.076},{"x":1754474162096,"y":11.446},{"x":1754474101954,"y":9.628},{"x":1754474041826,"y":15.784},{"x":1754473981703,"y":11.881},{"x":1754473921582,"y":14.413},{"x":1754473861453,"y":9.905},{"x":1754473801336,"y":17.376},{"x":1754473741201,"y":8.851},{"x":1754473681070,"y":26.058},{"x":1754473620936,"y":12.79},{"x":1754473560808,"y":27.431},{"x":1754473500833,"y":44.177},{"x":1754473440634,"y":40.058},{"x":1754473380439,"y":30.329},{"x":1754473320212,"y":23.18},{"x":1754473262991,"y":34.824},{"x":1754473202918,"y":16.447},{"x":1754473142744,"y":28.906},{"x":1754473082617,"y":33.048},{"x":1754473022495,"y":19.741},{"x":1754472962371,"y":6.704},{"x":1754472902246,"y":10.979},{"x":1754472842122,"y":32.904},{"x":1754472781975,"y":27.934},{"x":1754472721853,"y":27.222},{"x":1754472661707,"y":34.628},{"x":1754472601608,"y":16.163},{"x":1754472541428,"y":10.032},{"x":1754472481286,"y":15.452},{"x":1754472421148,"y":10.946},{"x":1754472361007,"y":12.656},{"x":1754472300873,"y":21.199},{"x":1754472240746,"y":24.965},{"x":1754472180629,"y":22.261},{"x":1754472120550,"y":29.556},{"x":1754472060381,"y":38.527},{"x":1754472000122,"y":21.187},{"x":1754471942920,"y":12.667},{"x":1754471882784,"y":18.437},{"x":1754471822668,"y":18.365},{"x":1754471762533,"y":16.13},{"x":1754471702405,"y":32.063},{"x":1754471642280,"y":30.005},{"x":1754471582159,"y":18.949},{"x":1754471522029,"y":21.404},{"x":1754471461895,"y":31.781},{"x":1754471401757,"y":26.924},{"x":1754471341633,"y":32.414},{"x":1754471281515,"y":29.063},{"x":1754471221390,"y":25.684},{"x":1754471161263,"y":11.864},{"x":1754471101141,"y":28.896},{"x":1754471041000,"y":28.211},{"x":1754470980862,"y":25.66},{"x":1754470920744,"y":31.073},{"x":1754470860672,"y":27.684},{"x":1754470800524,"y":12.052},{"x":1754470740312,"y":17.677},{"x":1754470680281,"y":17.783},{"x":1754470622927,"y":25.082},{"x":1754470562816,"y":32.348},{"x":1754470502669,"y":28.585},{"x":1754470442541,"y":28.956},{"x":1754470382420,"y":18.449},{"x":1754470322294,"y":17.346},{"x":1754470262154,"y":16.66},{"x":1754470201980,"y":17.149},{"x":1754470141854,"y":27.551},{"x":1754470081722,"y":33.223},{"x":1754470021600,"y":20.032},{"x":1754469961477,"y":37.416},{"x":1754469901361,"y":32.99},{"x":1754469841232,"y":18.976},{"x":1754469781102,"y":27.035},{"x":1754469720959,"y":20.022},{"x":1754469660837,"y":19.795},{"x":1754469600789,"y":30.522},{"x":1754469540575,"y":28.72},{"x":1754469480523,"y":31.33},{"x":1754469420317,"y":27.886},{"x":1754469360084,"y":25.625},{"x":1754469302904,"y":25.105},{"x":1754469242776,"y":38.375},{"x":1754469182679,"y":44.276},{"x":1754469122530,"y":47.0},{"x":1754469062407,"y":34.406},{"x":1754469002280,"y":41.21},{"x":1754468942151,"y":31.669},{"x":1754468882030,"y":27.215},{"x":1754468821891,"y":23.496},{"x":1754468761757,"y":24.234},{"x":1754468701619,"y":32.251},{"x":1754468641491,"y":20.664},{"x":1754468581376,"y":27.612},{"x":1754468521251,"y":21.642},{"x":1754468461085,"y":22.607},{"x":1754468401022,"y":27.88},{"x":1754468340762,"y":21.902},{"x":1754468280649,"y":22.654},{"x":1754468220502,"y":26.858},{"x":1754468160415,"y":31.337},{"x":1754468100181,"y":22.338},{"x":1754468042925,"y":22.764},{"x":1754467982801,"y":21.8},{"x":1754467922681,"y":34.262},{"x":1754467862561,"y":37.363},{"x":1754467802436,"y":41.155},{"x":1754467742276,"y":40.456},{"x":1754467682141,"y":52.742},{"x":1754467621998,"y":24.078},{"x":1754467561873,"y":24.265},{"x":1754467501738,"y":26.201},{"x":1754467441608,"y":26.081},{"x":1754467381483,"y":26.039},{"x":1754467321350,"y":29.503},{"x":1754467261238,"y":23.934},{"x":1754467201126,"y":27.6},{"x":1754467140809,"y":23.699},{"x":1754467080603,"y":28.78},{"x":1754467020444,"y":20.832},{"x":1754466960297,"y":29.538},{"x":1754466902976,"y":31.991},{"x":1754466842835,"y":29.441},{"x":1754466782721,"y":24.419},{"x":1754466722604,"y":26.142},{"x":1754466662477,"y":17.824},{"x":1754466602352,"y":17.6},{"x":1754466542218,"y":23.518},{"x":1754466482079,"y":25.688},{"x":1754466421938,"y":23.862},{"x":1754466361809,"y":23.288},{"x":1754466301711,"y":24.767},{"x":1754466241555,"y":24.257},{"x":1754466181433,"y":43.722},{"x":1754466121317,"y":28.345},{"x":1754466061192,"y":30.06},{"x":1754466001062,"y":23.604},{"x":1754465940892,"y":20.299},{"x":1754465880777,"y":38.983},{"x":1754465820671,"y":38.588},{"x":1754465760589,"y":36.221},{"x":1754465700459,"y":39.941},{"x":1754465640303,"y":41.598},{"x":1754465583009,"y":33.272},{"x":1754465522881,"y":24.194},{"x":1754465462761,"y":39.296},{"x":1754465402635,"y":37.871},{"x":1754465342500,"y":38.315},{"x":1754465282376,"y":36.354},{"x":1754465222250,"y":30.749},{"x":1754465162124,"y":18.367},{"x":1754465101990,"y":19.975},{"x":1754465041858,"y":27.916},{"x":1754464981736,"y":23.236},{"x":1754464921576,"y":24.103},{"x":1754464861405,"y":30.192},{"x":1754464801283,"y":21.557},{"x":1754464741105,"y":19.86},{"x":1754464680956,"y":25.219},{"x":1754464620826,"y":45.93},{"x":1754464560699,"y":42.912},{"x":1754464500656,"y":41.501},{"x":1754464440486,"y":45.988},{"x":1754464380282,"y":43.583},{"x":1754464323014,"y":27.994},{"x":1754464262908,"y":25.756},{"x":1754464202760,"y":35.24},{"x":1754464142641,"y":25.18},{"x":1754464082522,"y":21.203},{"x":1754464022401,"y":29.708},{"x":1754463962277,"y":22.91},{"x":1754463902154,"y":24.379},{"x":1754463842018,"y":20.18},{"x":1754463781877,"y":20.341},{"x":1754463721742,"y":25.999},{"x":1754463661614,"y":22.469},{"x":1754463601546,"y":19.025},{"x":1754463541147,"y":29.143},{"x":1754463480995,"y":33.539},{"x":1754463420871,"y":26.809},{"x":1754463360767,"y":25.435},{"x":1754463300673,"y":23.994},{"x":1754463240485,"y":20.699},{"x":1754463180381,"y":32.152},{"x":1754463120236,"y":22.063},{"x":1754463062958,"y":21.518},{"x":1754463002866,"y":31.488},{"x":1754462942719,"y":21.925},{"x":1754462882597,"y":21.868},{"x":1754462822470,"y":19.354},{"x":1754462762353,"y":34.735},{"x":1754462702231,"y":37.754},{"x":1754462642107,"y":37.391},{"x":1754462581968,"y":36.743},{"x":1754462521836,"y":35.484},{"x":1754462461725,"y":27.143},{"x":1754462401582,"y":49.678},{"x":1754462341468,"y":45.481},{"x":1754462281291,"y":45.133},{"x":1754462221154,"y":44.881},{"x":1754462161023,"y":38.826},{"x":1754462100924,"y":28.24},{"x":1754462040752,"y":27.796},{"x":1754461980631,"y":26.806},{"x":1754461920585,"y":30.066},{"x":1754461860408,"y":21.691},{"x":1754461800417,"y":22.274},{"x":1754461742974,"y":23.86},{"x":1754461682853,"y":25.406},{"x":1754461622723,"y":32.964},{"x":1754461562586,"y":33.124},{"x":1754461502470,"y":30.464},{"x":1754461442334,"y":34.138},{"x":1754461382218,"y":46.622},{"x":1754461322107,"y":43.649},{"x":1754461262061,"y":42.268},{"x":1754461201850,"y":42.042},{"x":1754461141588,"y":45.751},{"x":1754461081461,"y":56.4},{"x":1754461021337,"y":25.225},{"x":1754460961209,"y":29.572},{"x":1754460901085,"y":28.882},{"x":1754460840928,"y":39.827},{"x":1754460780793,"y":28.078},{"x":1754460720697,"y":42.331},{"x":1754460660541,"y":29.99},{"x":1754460600448,"y":42.876},{"x":1754460540344,"y":41.326},{"x":1754460483026,"y":37.841},{"x":1754460422886,"y":26.075},{"x":1754460362763,"y":29.804},{"x":1754460302631,"y":29.336},{"x":1754460242505,"y":26.621},{"x":1754460182380,"y":26.68},{"x":1754460122252,"y":25.882},{"x":1754460062103,"y":24.742},{"x":1754460002062,"y":30.391},{"x":1754459941819,"y":25.7},{"x":1754459881695,"y":26.338},{"x":1754459821574,"y":24.251},{"x":1754459761446,"y":27.168},{"x":1754459701320,"y":30.854},{"x":1754459641190,"y":23.3},{"x":1754459581060,"y":25.625},{"x":1754459520926,"y":27.023},{"x":1754459460796,"y":22.496},{"x":1754459400735,"y":23.303},{"x":1754459340563,"y":38.248},{"x":1754459280328,"y":41.245},{"x":1754459220146,"y":40.648},{"x":1754459162915,"y":40.787},{"x":1754459102772,"y":38.629},{"x":1754459042635,"y":42.9},{"x":1754458982518,"y":27.116},{"x":1754458922379,"y":26.434},{"x":1754458862247,"y":27.248},{"x":1754458802114,"y":24.748},{"x":1754458741972,"y":28.399},{"x":1754458681834,"y":21.788},{"x":1754458621711,"y":24.659},{"x":1754458561584,"y":22.374},{"x":1754458501458,"y":22.674},{"x":1754458441332,"y":33.178},{"x":1754458381205,"y":30.341},{"x":1754458321066,"y":29.459},{"x":1754458260914,"y":29.269},{"x":1754458200861,"y":26.968},{"x":1754458140617,"y":28.16},{"x":1754458080531,"y":23.556},{"x":1754458020389,"y":37.577},{"x":1754457960251,"y":42.277},{"x":1754457902948,"y":41.849},{"x":1754457842823,"y":41.852},{"x":1754457782701,"y":53.182},{"x":1754457722566,"y":35.428},{"x":1754457662418,"y":28.718},{"x":1754457602256,"y":29.471},{"x":1754457542104,"y":27.786},{"x":1754457481958,"y":43.142},{"x":1754457421819,"y":24.65},{"x":1754457361680,"y":23.646},{"x":1754457301572,"y":27.194},{"x":1754457241422,"y":25.076},{"x":1754457181293,"y":32.328},{"x":1754457121182,"y":28.222},{"x":1754457061024,"y":30.293},{"x":1754457000975,"y":28.541},{"x":1754456940756,"y":27.809},{"x":1754456880656,"y":36.244},{"x":1754456820514,"y":27.974},{"x":1754456760480,"y":27.403},{"x":1754456700265,"y":22.444},{"x":1754456643024,"y":25.159},{"x":1754456582892,"y":29.501},{"x":1754456522768,"y":28.38},{"x":1754456462629,"y":29.017},{"x":1754456402538,"y":28.122},{"x":1754456342307,"y":37.908},{"x":1754456282175,"y":34.592},{"x":1754456222048,"y":34.229},{"x":1754456161900,"y":33.534},{"x":1754456101770,"y":39.793},{"x":1754456041645,"y":26.996},{"x":1754455981477,"y":41.132},{"x":1754455921360,"y":45.514},{"x":1754455861254,"y":41.567},{"x":1754455801111,"y":44.776},{"x":1754455740959,"y":39.959},{"x":1754455680837,"y":26.344},{"x":1754455620695,"y":28.831},{"x":1754455560591,"y":25.896},{"x":1754455500533,"y":28.727},{"x":1754455440426,"y":26.033},{"x":1754455380175,"y":26.444},{"x":1754455322927,"y":32.015},{"x":1754455262806,"y":29.833},{"x":1754455202712,"y":29.742},{"x":1754455142528,"y":29.003},{"x":1754455082405,"y":27.564},{"x":1754455022281,"y":27.616},{"x":1754454962150,"y":25.616},{"x":1754454902021,"y":25.896},{"x":1754454841899,"y":25.021},{"x":1754454781789,"y":24.172},{"x":1754454721631,"y":24.524},{"x":1754454661506,"y":44.48},{"x":1754454601444,"y":45.659},{"x":1754454541240,"y":45.746},{"x":1754454480991,"y":45.181},{"x":1754454420845,"y":48.361},{"x":1754454360716,"y":36.684},{"x":1754454300651,"y":25.996},{"x":1754454240471,"y":26.741},{"x":1754454180285,"y":27.422},{"x":1754454120059,"y":27.173},{"x":1754454062867,"y":30.578},{"x":1754454002707,"y":28.841},{"x":1754453942582,"y":29.41},{"x":1754453882459,"y":28.433},{"x":1754453822348,"y":28.296},{"x":1754453762206,"y":35.412},{"x":1754453702084,"y":41.099},{"x":1754453641945,"y":31.284},{"x":1754453581807,"y":28.955},{"x":1754453521677,"y":28.226},{"x":1754453461553,"y":27.48},{"x":1754453401434,"y":26.688},{"x":1754453341294,"y":32.69},{"x":1754453281164,"y":33.965},{"x":1754453221021,"y":31.62},{"x":1754453160897,"y":30.428},{"x":1754453100799,"y":28.921},{"x":1754453040697,"y":32.464},{"x":1754452980554,"y":33.121},{"x":1754452920466,"y":31.324},{"x":1754452860339,"y":28.442},{"x":1754452802925,"y":32.622},{"x":1754452742738,"y":30.941},{"x":1754452682599,"y":44.798},{"x":1754452622397,"y":43.775},{"x":1754452562269,"y":45.684},{"x":1754452502144,"y":45.637},{"x":1754452442006,"y":41.94},{"x":1754452381876,"y":28.854},{"x":1754452321724,"y":26.578},{"x":1754452261598,"y":29.495},{"x":1754452201467,"y":35.513},{"x":1754452141332,"y":33.259},{"x":1754452081194,"y":45.914},{"x":1754452021062,"y":32.626},{"x":1754451960915,"y":39.721},{"x":1754451900877,"y":40.003},{"x":1754451840696,"y":39.109},{"x":1754451780510,"y":40.51},{"x":1754451720428,"y":38.173},{"x":1754451660238,"y":28.824},{"x":1754451602984,"y":33.554},{"x":1754451542861,"y":33.803},{"x":1754451482738,"y":33.752},{"x":1754451422614,"y":35.179},{"x":1754451362480,"y":35.094},{"x":1754451302344,"y":35.179},{"x":1754451242225,"y":49.652},{"x":1754451182102,"y":42.594},{"x":1754451121966,"y":41.185},{"x":1754451061841,"y":39.49},{"x":1754451001747,"y":38.884},{"x":1754450941597,"y":28.62},{"x":1754450881467,"y":24.725},{"x":1754450821351,"y":28.53},{"x":1754450761230,"y":33.304},{"x":1754450701106,"y":34.895},{"x":1754450640942,"y":35.911},{"x":1754450580808,"y":30.51},{"x":1754450520698,"y":28.157},{"x":1754450460541,"y":28.133},{"x":1754450400497,"y":30.554},{"x":1754450340236,"y":30.853},{"x":1754450280076,"y":30.343},{"x":1754450222911,"y":31.612},{"x":1754450162774,"y":32.672},{"x":1754450102652,"y":29.165},{"x":1754450042530,"y":28.224},{"x":1754449982402,"y":31.78},{"x":1754449922281,"y":32.527},{"x":1754449862204,"y":28.312},{"x":1754449802010,"y":28.733},{"x":1754449741868,"y":28.98},{"x":1754449681737,"y":31.272},{"x":1754449621631,"y":26.927},{"x":1754449561474,"y":26.075},{"x":1754449501343,"y":26.858},{"x":1754449441221,"y":31.253},{"x":1754449381441,"y":33.876},{"x":1754449321322,"y":29.227},{"x":1754449261115,"y":49.493},{"x":1754449202536,"y":44.921},{"x":1754449142325,"y":43.71},{"x":1754449082196,"y":48.158},{"x":1754449022071,"y":38.846},{"x":1754448961916,"y":26.718},{"x":1754448901794,"y":26.574},{"x":1754448841667,"y":28.007},{"x":1754448781511,"y":30.191},{"x":1754448721384,"y":30.253},{"x":1754448661261,"y":31.613},{"x":1754448601161,"y":30.0},{"x":1754448540988,"y":28.979},{"x":1754448480873,"y":26.773},{"x":1754448420720,"y":31.038},{"x":1754448360628,"y":34.999},{"x":1754448300626,"y":30.924},{"x":1754448240347,"y":32.617},{"x":1754448182982,"y":28.642},{"x":1754448122872,"y":27.209},{"x":1754448062735,"y":34.9},{"x":1754448002612,"y":29.513},{"x":1754447942500,"y":32.515},{"x":1754447882368,"y":30.002},{"x":1754447822238,"y":29.969},{"x":1754447762120,"y":34.153},{"x":1754447701988,"y":28.933},{"x":1754447641907,"y":43.231},{"x":1754447581740,"y":42.308},{"x":1754447521620,"y":43.477},{"x":1754447461492,"y":42.046},{"x":1754447401345,"y":41.448},{"x":1754447341196,"y":27.115},{"x":1754447281068,"y":29.605},{"x":1754447220946,"y":30.204},{"x":1754447160821,"y":32.798},{"x":1754447100723,"y":28.945},{"x":1754447040613,"y":29.446},{"x":1754446980436,"y":29.642},{"x":1754446920232,"y":32.504},{"x":1754446862982,"y":29.446},{"x":1754446802837,"y":33.707},{"x":1754446742686,"y":28.885},{"x":1754446682530,"y":26.378},{"x":1754446622425,"y":25.688},{"x":1754446562280,"y":25.988},{"x":1754446502164,"y":31.091},{"x":1754446441984,"y":27.466},{"x":1754446381860,"y":27.122},{"x":1754446321735,"y":27.383},{"x":1754446261611,"y":43.459},{"x":1754446201498,"y":48.688},{"x":1754446141372,"y":43.48},{"x":1754446081244,"y":43.243},{"x":1754446021117,"y":42.67},{"x":1754445960967,"y":28.535},{"x":1754445900864,"y":38.89},{"x":1754445840730,"y":38.281},{"x":1754445780578,"y":38.296},{"x":1754445720464,"y":36.984},{"x":1754445660345,"y":35.596},{"x":1754445600248,"y":34.73},{"x":1754445542951,"y":34.505},{"x":1754445482828,"y":35.64},{"x":1754445422708,"y":34.355},{"x":1754445362596,"y":59.072},{"x":1754445302468,"y":56.255},{"x":1754445242349,"y":52.727},{"x":1754445182228,"y":50.953},{"x":1754445122105,"y":48.702},{"x":1754445061955,"y":26.788},{"x":1754445001829,"y":26.429},{"x":1754444941696,"y":32.009},{"x":1754444881571,"y":27.299},{"x":1754444821463,"y":30.421},{"x":1754444761319,"y":29.278},{"x":1754444701197,"y":32.339},{"x":1754444641047,"y":34.297},{"x":1754444580918,"y":30.427},{"x":1754444520781,"y":29.782},{"x":1754444460659,"y":27.701},{"x":1754444400749,"y":27.918},{"x":1754444340421,"y":34.476},{"x":1754444280311,"y":27.528},{"x":1754444223022,"y":28.296},{"x":1754444162880,"y":27.869},{"x":1754444102757,"y":27.47},{"x":1754444042641,"y":27.781},{"x":1754443982529,"y":26.492},{"x":1754443922414,"y":28.776},{"x":1754443862265,"y":29.218},{"x":1754443802142,"y":32.994},{"x":1754443741990,"y":31.703},{"x":1754443681865,"y":34.316},{"x":1754443621742,"y":32.08},{"x":1754443561621,"y":29.342},{"x":1754443501498,"y":29.43},{"x":1754443441367,"y":27.677},{"x":1754443381243,"y":30.109},{"x":1754443321101,"y":26.437},{"x":1754443260934,"y":27.852},{"x":1754443200863,"y":28.193},{"x":1754443140658,"y":30.668},{"x":1754443080577,"y":36.685},{"x":1754443020381,"y":31.933},{"x":1754442960257,"y":29.712},{"x":1754442903016,"y":29.581},{"x":1754442842882,"y":31.95},{"x":1754442782759,"y":26.386},{"x":1754442722629,"y":27.277},{"x":1754442662507,"y":30.376},{"x":1754442602379,"y":31.176},{"x":1754442542253,"y":28.375},{"x":1754442482110,"y":33.514},{"x":1754442421974,"y":49.37},{"x":1754442361847,"y":46.618},{"x":1754442301728,"y":43.49},{"x":1754442241608,"y":42.457},{"x":1754442181480,"y":36.048},{"x":1754442121361,"y":32.303},{"x":1754442061236,"y":28.901},{"x":1754442001173,"y":29.486},{"x":1754441940791,"y":27.619},{"x":1754441880667,"y":28.024},{"x":1754441820548,"y":31.88},{"x":1754441760561,"y":30.569},{"x":1754441700362,"y":30.292},{"x":1754441640080,"y":29.286},{"x":1754441582903,"y":33.245},{"x":1754441522772,"y":28.397},{"x":1754441462641,"y":28.015},{"x":1754441402507,"y":28.031},{"x":1754441342369,"y":27.053},{"x":1754441282248,"y":26.932},{"x":1754441222125,"y":27.246},{"x":1754441161979,"y":46.306},{"x":1754441101853,"y":44.356},{"x":1754441041720,"y":44.075},{"x":1754440981591,"y":60.522},{"x":1754440921461,"y":57.965},{"x":1754440861344,"y":46.325},{"x":1754440801215,"y":41.49},{"x":1754440741080,"y":39.737},{"x":1754440680918,"y":25.292},{"x":1754440620794,"y":25.937},{"x":1754440560680,"y":30.124},{"x":1754440500567,"y":28.55},{"x":1754440440448,"y":28.861},{"x":1754440380300,"y":28.165},{"x":1754440320096,"y":28.276},{"x":1754440262914,"y":30.221},{"x":1754440202797,"y":29.044},{"x":1754440142670,"y":29.384},{"x":1754440082538,"y":42.94},{"x":1754440022416,"y":42.866},{"x":1754439962297,"y":48.241},{"x":1754439902166,"y":42.691},{"x":1754439842046,"y":40.241},{"x":1754439781898,"y":26.041},{"x":1754439721786,"y":26.617},{"x":1754439661639,"y":32.312},{"x":1754439601488,"y":32.57},{"x":1754439541328,"y":30.878},{"x":1754439481202,"y":33.018},{"x":1754439421060,"y":31.762},{"x":1754439360918,"y":30.684},{"x":1754439300802,"y":29.137},{"x":1754439240655,"y":26.792},{"x":1754439180532,"y":24.695},{"x":1754439120453,"y":28.012},{"x":1754439060298,"y":27.36},{"x":1754439003021,"y":29.398},{"x":1754438942886,"y":25.703},{"x":1754438882753,"y":24.658},{"x":1754438822628,"y":28.78},{"x":1754438762491,"y":29.719},{"x":1754438702366,"y":34.804},{"x":1754438642231,"y":28.924},{"x":1754438582107,"y":28.938},{"x":1754438521956,"y":30.898},{"x":1754438461818,"y":26.621},{"x":1754438401825,"y":33.446},{"x":1754438341519,"y":28.698},{"x":1754438281395,"y":30.966},{"x":1754438221271,"y":31.459},{"x":1754438161149,"y":30.647},{"x":1754438101011,"y":33.479},{"x":1754438040881,"y":30.828},{"x":1754437980757,"y":29.302},{"x":1754437920664,"y":28.142},{"x":1754437860514,"y":28.547},{"x":1754437800444,"y":29.069},{"x":1754437740311,"y":34.932},{"x":1754437682966,"y":31.81},{"x":1754437622834,"y":30.242},{"x":1754437562705,"y":30.444},{"x":1754437502581,"y":30.034},{"x":1754437442441,"y":33.319},{"x":1754437382313,"y":26.935},{"x":1754437322196,"y":27.815},{"x":1754437262093,"y":31.162},{"x":1754437201919,"y":30.749},{"x":1754437141789,"y":31.523},{"x":1754437081682,"y":40.879},{"x":1754437021545,"y":34.787},{"x":1754436961417,"y":28.578},{"x":1754436901320,"y":27.816},{"x":1754436841169,"y":26.971},{"x":1754436781042,"y":26.407},{"x":1754436721048,"y":25.57},{"x":1754436660776,"y":26.892},{"x":1754436601021,"y":26.236},{"x":1754436540629,"y":29.447},{"x":1754436480495,"y":32.906},{"x":1754436420300,"y":27.743},{"x":1754436360107,"y":30.854},{"x":1754436302922,"y":29.981},{"x":1754436242802,"y":29.734},{"x":1754436182679,"y":33.974},{"x":1754436122530,"y":28.048},{"x":1754436062390,"y":27.541},{"x":1754436002251,"y":29.293},{"x":1754435942082,"y":28.067},{"x":1754435881921,"y":30.314},{"x":1754435821765,"y":25.987},{"x":1754435761611,"y":28.631},{"x":1754435701482,"y":28.65},{"x":1754435641361,"y":28.258},{"x":1754435581245,"y":28.319},{"x":1754435521115,"y":43.471},{"x":1754435460979,"y":63.055},{"x":1754435400902,"y":60.89},{"x":1754435340704,"y":58.583},{"x":1754435280624,"y":60.691},{"x":1754435220480,"y":44.946},{"x":1754435160403,"y":32.24},{"x":1754435100145,"y":32.462},{"x":1754435042930,"y":33.546},{"x":1754434982803,"y":33.934},{"x":1754434922682,"y":33.335},{"x":1754434862555,"y":36.35},{"x":1754434802475,"y":32.888},{"x":1754434742271,"y":27.397},{"x":1754434682137,"y":33.001},{"x":1754434622017,"y":33.126},{"x":1754434561867,"y":33.937},{"x":1754434501723,"y":29.083},{"x":1754434441603,"y":26.93},{"x":1754434381478,"y":26.743},{"x":1754434321353,"y":25.789},{"x":1754434261234,"y":33.127},{"x":1754434201107,"y":30.17},{"x":1754434140972,"y":29.678},{"x":1754434080856,"y":32.638},{"x":1754434020717,"y":32.618},{"x":1754433960587,"y":33.94},{"x":1754433900464,"y":28.429},{"x":1754433840245,"y":27.17},{"x":1754433782990,"y":27.288},{"x":1754433722866,"y":31.362},{"x":1754433662754,"y":31.156},{"x":1754433602607,"y":28.402},{"x":1754433542473,"y":31.826},{"x":1754433482320,"y":32.489},{"x":1754433422170,"y":30.89},{"x":1754433362016,"y":30.118},{"x":1754433301885,"y":28.939},{"x":1754433241760,"y":27.432},{"x":1754433181626,"y":42.21},{"x":1754433121493,"y":41.837},{"x":1754433061417,"y":41.6},{"x":1754433001290,"y":46.36},{"x":1754432941156,"y":40.778},{"x":1754432880986,"y":28.898},{"x":1754432820859,"y":32.093},{"x":1754432760732,"y":32.695},{"x":1754432700648,"y":37.578},{"x":1754432640479,"y":35.956},{"x":1754432580374,"y":29.905},{"x":1754432522997,"y":28.663},{"x":1754432462832,"y":27.391},{"x":1754432402675,"y":32.044},{"x":1754432342527,"y":43.032},{"x":1754432282411,"y":41.201},{"x":1754432222279,"y":58.712},{"x":1754432162127,"y":57.674},{"x":1754432101993,"y":61.996},{"x":1754432041861,"y":60.12},{"x":1754431981737,"y":44.723},{"x":1754431921606,"y":44.878},{"x":1754431861479,"y":42.158},{"x":1754431801355,"y":43.909},{"x":1754431741229,"y":39.176},{"x":1754431681097,"y":40.393},{"x":1754431620949,"y":40.523},{"x":1754431560822,"y":41.041},{"x":1754431500749,"y":40.847},{"x":1754431440573,"y":45.098},{"x":1754431380445,"y":31.686},{"x":1754431320259,"y":35.411},{"x":1754431262958,"y":32.666},{"x":1754431202854,"y":30.83},{"x":1754431142688,"y":34.345},{"x":1754431082558,"y":29.572},{"x":1754431022440,"y":27.923},{"x":1754430962305,"y":28.406},{"x":1754430902180,"y":27.973},{"x":1754430842059,"y":31.474},{"x":1754430781913,"y":31.585},{"x":1754430721812,"y":27.137},{"x":1754430661650,"y":30.595},{"x":1754430601545,"y":35.916},{"x":1754430541408,"y":35.21},{"x":1754430481286,"y":35.822},{"x":1754430421160,"y":33.094},{"x":1754430361015,"y":33.06},{"x":1754430300877,"y":29.96},{"x":1754430240702,"y":30.19},{"x":1754430180539,"y":32.178},{"x":1754430120455,"y":34.607},{"x":1754430060320,"y":35.326},{"x":1754430002989,"y":34.9},{"x":1754429942861,"y":35.026},{"x":1754429882737,"y":37.258},{"x":1754429822612,"y":35.533},{"x":1754429762484,"y":33.632},{"x":1754429702361,"y":33.908},{"x":1754429642254,"y":34.655},{"x":1754429582124,"y":36.751},{"x":1754429521980,"y":34.669},{"x":1754429461862,"y":34.966},{"x":1754429401751,"y":35.833},{"x":1754429341610,"y":34.309},{"x":1754429281497,"y":34.793},{"x":1754429221364,"y":33.103},{"x":1754429161244,"y":33.982},{"x":1754429101122,"y":39.11},{"x":1754429040955,"y":37.232},{"x":1754428980833,"y":33.974},{"x":1754428920704,"y":34.183},{"x":1754428860504,"y":34.874},{"x":1754428800385,"y":33.68},{"x":1754428740246,"y":33.617},{"x":1754428682963,"y":34.195},{"x":1754428622809,"y":34.19},{"x":1754428562683,"y":34.727},{"x":1754428502557,"y":34.598},{"x":1754428442435,"y":34.994},{"x":1754428382298,"y":36.654},{"x":1754428322171,"y":39.817},{"x":1754428262041,"y":37.165},{"x":1754428201888,"y":41.46},{"x":1754428141773,"y":41.118},{"x":1754428081637,"y":38.964},{"x":1754428021515,"y":36.336},{"x":1754427961389,"y":34.757},{"x":1754427901257,"y":32.069},{"x":1754427841119,"y":32.562},{"x":1754427780989,"y":29.854},{"x":1754427720832,"y":30.173},{"x":1754427660702,"y":30.355},{"x":1754427600615,"y":37.402},{"x":1754427540435,"y":35.749},{"x":1754427480282,"y":34.672},{"x":1754427423022,"y":33.883},{"x":1754427362889,"y":31.123},{"x":1754427302768,"y":36.248},{"x":1754427242632,"y":31.004},{"x":1754427182515,"y":30.527},{"x":1754427122388,"y":30.838},{"x":1754427062264,"y":29.578},{"x":1754427002143,"y":34.261},{"x":1754426941983,"y":31.963},{"x":1754426881859,"y":32.126},{"x":1754426821733,"y":37.283},{"x":1754426761605,"y":37.272},{"x":1754426701486,"y":41.676},{"x":1754426641355,"y":35.832},{"x":1754426581236,"y":31.787},{"x":1754426521096,"y":28.498},{"x":1754426460948,"y":30.286},{"x":1754426400949,"y":29.884},{"x":1754426340625,"y":33.39},{"x":1754426280536,"y":35.555},{"x":1754426220523,"y":35.837},{"x":1754426160245,"y":35.534},{"x":1754426102958,"y":35.898},{"x":1754426042836,"y":39.736},{"x":1754425982718,"y":32.021},{"x":1754425922596,"y":32.291},{"x":1754425862465,"y":35.984},{"x":1754425802343,"y":36.056},{"x":1754425742215,"y":34.302},{"x":1754425682097,"y":34.332},{"x":1754425621949,"y":34.177},{"x":1754425561827,"y":43.691},{"x":1754425501711,"y":53.189},{"x":1754425441574,"y":51.232},{"x":1754425381435,"y":35.066},{"x":1754425321318,"y":34.264},{"x":1754425261156,"y":38.459},{"x":1754425201143,"y":39.442},{"x":1754425140818,"y":38.576},{"x":1754425080699,"y":35.161},{"x":1754425020569,"y":39.724},{"x":1754424960346,"y":39.215},{"x":1754424900263,"y":37.126},{"x":1754424842913,"y":62.419},{"x":1754424782794,"y":61.138},{"x":1754424722682,"y":66.881},{"x":1754424662550,"y":61.049},{"x":1754424602442,"y":58.729},{"x":1754424542300,"y":34.032},{"x":1754424482183,"y":34.176},{"x":1754424422048,"y":38.065},{"x":1754424361912,"y":37.07},{"x":1754424301788,"y":36.074},{"x":1754424241659,"y":39.683},{"x":1754424181539,"y":41.728},{"x":1754424121421,"y":35.858},{"x":1754424061301,"y":39.161},{"x":1754424001150,"y":37.582},{"x":1754423940772,"y":35.566},{"x":1754423880659,"y":40.386},{"x":1754423820528,"y":26.924},{"x":1754423760437,"y":39.269},{"x":1754423700263,"y":35.23},{"x":1754423642991,"y":42.571},{"x":1754423582873,"y":40.88},{"x":1754423522750,"y":45.017},{"x":1754423462619,"y":52.77},{"x":1754423402487,"y":52.889},{"x":1754423342366,"y":54.466},{"x":1754423282237,"y":54.152},{"x":1754423222106,"y":52.367},{"x":1754423161955,"y":49.31},{"x":1754423101840,"y":49.402},{"x":1754423041704,"y":33.185},{"x":1754422981584,"y":47.284},{"x":1754422921453,"y":33.511},{"x":1754422861331,"y":37.963},{"x":1754422801216,"y":39.116},{"x":1754422741070,"y":39.24},{"x":1754422680904,"y":37.811},{"x":1754422620768,"y":38.594},{"x":1754422560697,"y":56.843},{"x":1754422500648,"y":34.214},{"x":1754422440401,"y":33.266},{"x":1754422380457,"y":48.38},{"x":1754422322991,"y":33.096},{"x":1754422262871,"y":31.423},{"x":1754422202728,"y":52.669},{"x":1754422142618,"y":33.377},{"x":1754422082474,"y":42.032},{"x":1754422022370,"y":42.996},{"x":1754421962218,"y":44.29},{"x":1754421902103,"y":49.181},{"x":1754421841947,"y":45.473},{"x":1754421781824,"y":46.2},{"x":1754421721682,"y":48.454},{"x":1754421661502,"y":49.554},{"x":1754421601377,"y":38.674},{"x":1754421541075,"y":42.744},{"x":1754421480929,"y":41.334},{"x":1754421420819,"y":36.896},{"x":1754421360663,"y":35.147},{"x":1754421300563,"y":39.281},{"x":1754421240440,"y":47.735},{"x":1754421180252,"y":37.021},{"x":1754421122974,"y":33.094},{"x":1754421062845,"y":34.993},{"x":1754421002699,"y":49.44},{"x":1754420942574,"y":45.092},{"x":1754420882444,"y":48.187},{"x":1754420822329,"y":47.227},{"x":1754420762200,"y":44.484},{"x":1754420702077,"y":34.543},{"x":1754420641942,"y":40.271},{"x":1754420581811,"y":32.771},{"x":1754420521677,"y":37.002},{"x":1754420461554,"y":35.707},{"x":1754420401492,"y":31.154},{"x":1754420341269,"y":36.689},{"x":1754420281143,"y":33.95},{"x":1754420221007,"y":59.906},{"x":1754420160887,"y":45.187},{"x":1754420100774,"y":50.558},{"x":1754420040646,"y":50.17},{"x":1754419980507,"y":50.784},{"x":1754419920432,"y":34.046},{"x":1754419860175,"y":38.88},{"x":1754419802989,"y":31.854},{"x":1754419742831,"y":35.945},{"x":1754419682714,"y":36.47},{"x":1754419622596,"y":32.581},{"x":1754419562452,"y":36.445},{"x":1754419502324,"y":34.904},{"x":1754419442202,"y":34.304},{"x":1754419382056,"y":35.942},{"x":1754419321920,"y":37.189},{"x":1754419261780,"y":37.853},{"x":1754419201662,"y":37.764},{"x":1754419141532,"y":50.288},{"x":1754419081406,"y":48.584},{"x":1754419021285,"y":43.649},{"x":1754418961158,"y":43.799},{"x":1754418901030,"y":48.944},{"x":1754418840886,"y":42.964},{"x":1754418780769,"y":40.471},{"x":1754418720653,"y":35.296},{"x":1754418660571,"y":40.548},{"x":1754418600437,"y":33.61},{"x":1754418540306,"y":51.844},{"x":1754418482951,"y":57.491},{"x":1754418422832,"y":49.181},{"x":1754418362693,"y":54.276},{"x":1754418302571,"y":49.59},{"x":1754418242440,"y":52.642},{"x":1754418182311,"y":57.27},{"x":1754418122229,"y":49.277},{"x":1754418062030,"y":47.755},{"x":1754418001902,"y":37.712},{"x":1754417941694,"y":44.182},{"x":1754417881597,"y":32.058},{"x":1754417821448,"y":34.384},{"x":1754417761320,"y":35.726},{"x":1754417701217,"y":37.296},{"x":1754417641029,"y":37.32},{"x":1754417580899,"y":48.842},{"x":1754417520786,"y":45.032},{"x":1754417460625,"y":44.822},{"x":1754417400539,"y":45.223},{"x":1754417340376,"y":38.95},{"x":1754417280201,"y":36.959},{"x":1754417222968,"y":33.6},{"x":1754417162835,"y":37.94},{"x":1754417102703,"y":33.175},{"x":1754417042583,"y":35.812},{"x":1754416982452,"y":33.101},{"x":1754416922318,"y":32.923},{"x":1754416862183,"y":36.194},{"x":1754416802090,"y":35.058},{"x":1754416741870,"y":37.061},{"x":1754416681727,"y":35.844},{"x":1754416621525,"y":34.11},{"x":1754416561406,"y":34.824},{"x":1754416501282,"y":33.769},{"x":1754416441154,"y":32.906},{"x":1754416381009,"y":40.507},{"x":1754416320888,"y":36.94},{"x":1754416260761,"y":35.105},{"x":1754416200695,"y":34.622},{"x":1754416140527,"y":55.762},{"x":1754416080409,"y":34.336},{"x":1754416020280,"y":46.578},{"x":1754415963010,"y":53.461},{"x":1754415902887,"y":35.94},{"x":1754415842763,"y":39.674},{"x":1754415782632,"y":38.262},{"x":1754415722489,"y":36.792},{"x":1754415662368,"y":41.519},{"x":1754415602245,"y":30.721},{"x":1754415542118,"y":35.377},{"x":1754415481974,"y":34.019},{"x":1754415421845,"y":46.338},{"x":1754415361713,"y":56.168},{"x":1754415301590,"y":59.658},{"x":1754415241451,"y":58.805},{"x":1754415181331,"y":57.61},{"x":1754415121207,"y":45.197},{"x":1754415061080,"y":56.795},{"x":1754415000991,"y":40.972},{"x":1754414940743,"y":40.87},{"x":1754414880645,"y":40.372},{"x":1754414820504,"y":36.53},{"x":1754414760461,"y":30.865},{"x":1754414700128,"y":39.88},{"x":1754414642881,"y":40.081},{"x":1754414582762,"y":40.471},{"x":1754414522633,"y":41.992},{"x":1754414462481,"y":51.209},{"x":1754414402319,"y":59.029},{"x":1754414342111,"y":56.098},{"x":1754414281958,"y":52.799},{"x":1754414221843,"y":50.728},{"x":1754414161714,"y":54.574},{"x":1754414101590,"y":34.518},{"x":1754414041467,"y":38.512},{"x":1754413981348,"y":33.73},{"x":1754413921226,"y":33.708},{"x":1754413861079,"y":28.261},{"x":1754413800956,"y":35.989},{"x":1754413740770,"y":34.236},{"x":1754413680676,"y":36.833},{"x":1754413620535,"y":39.85},{"x":1754413560505,"y":50.809},{"x":1754413500273,"y":46.85},{"x":1754413443034,"y":38.066},{"x":1754413382893,"y":62.863},{"x":1754413322770,"y":46.26},{"x":1754413262642,"y":46.783},{"x":1754413202536,"y":43.582},{"x":1754413142364,"y":44.702},{"x":1754413082238,"y":32.021},{"x":1754413022114,"y":38.107},{"x":1754412961965,"y":33.644},{"x":1754412901849,"y":29.408},{"x":1754412841717,"y":29.216},{"x":1754412781602,"y":39.775},{"x":1754412721472,"y":34.943},{"x":1754412661351,"y":31.984},{"x":1754412601240,"y":38.41},{"x":1754412541060,"y":52.355},{"x":1754412480934,"y":52.074},{"x":1754412420797,"y":32.521},{"x":1754412360678,"y":32.956},{"x":1754412300620,"y":32.674},{"x":1754412240452,"y":27.498},{"x":1754412180314,"y":32.971},{"x":1754412122985,"y":35.813},{"x":1754412062867,"y":48.311},{"x":1754412002731,"y":45.546},{"x":1754411942555,"y":38.042},{"x":1754411882450,"y":57.366},{"x":1754411822303,"y":57.482},{"x":1754411762159,"y":52.212},{"x":1754411702030,"y":55.823},{"x":1754411641870,"y":56.873},{"x":1754411581745,"y":55.898},{"x":1754411521615,"y":53.498},{"x":1754411461492,"y":51.312},{"x":1754411401421,"y":50.938},{"x":1754411341232,"y":55.589},{"x":1754411281104,"y":49.675},{"x":1754411220947,"y":52.975},{"x":1754411160806,"y":48.234},{"x":1754411100687,"y":46.964},{"x":1754411040691,"y":48.887},{"x":1754410980425,"y":61.218},{"x":1754410920282,"y":61.093},{"x":1754410862917,"y":52.188},{"x":1754410802798,"y":57.245},{"x":1754410742638,"y":47.75},{"x":1754410682499,"y":48.312},{"x":1754410622293,"y":35.354},{"x":1754410562159,"y":38.508},{"x":1754410502014,"y":40.045},{"x":1754410441861,"y":34.157},{"x":1754410381730,"y":36.482},{"x":1754410321610,"y":32.388},{"x":1754410261484,"y":34.697},{"x":1754410201360,"y":37.729},{"x":1754410141249,"y":34.907},{"x":1754410081106,"y":43.573},{"x":1754410020911,"y":36.349},{"x":1754409960807,"y":35.54},{"x":1754409900676,"y":36.787},{"x":1754409840526,"y":44.575},{"x":1754409780401,"y":29.599},{"x":1754409720203,"y":34.926},{"x":1754409662929,"y":38.248},{"x":1754409602829,"y":29.654},{"x":1754409542674,"y":32.864},{"x":1754409482543,"y":25.91},{"x":1754409422420,"y":27.018},{"x":1754409362297,"y":35.167},{"x":1754409302168,"y":27.721},{"x":1754409242038,"y":29.566},{"x":1754409181903,"y":25.834},{"x":1754409121776,"y":25.253},{"x":1754409061653,"y":26.264},{"x":1754409001532,"y":27.1},{"x":1754408941414,"y":41.671},{"x":1754408881293,"y":33.99},{"x":1754408821156,"y":39.97},{"x":1754408761011,"y":38.888},{"x":1754408700889,"y":35.935},{"x":1754408640702,"y":30.562},{"x":1754408580588,"y":32.159},{"x":1754408520346,"y":45.797},{"x":1754408460285,"y":31.152},{"x":1754408402920,"y":31.982},{"x":1754408342797,"y":26.683},{"x":1754408282680,"y":39.928},{"x":1754408222540,"y":33.038},{"x":1754408162409,"y":22.624},{"x":1754408102289,"y":21.062},{"x":1754408042165,"y":20.142},{"x":1754407982036,"y":25.502},{"x":1754407921929,"y":33.382},{"x":1754407861771,"y":27.954},{"x":1754407801707,"y":30.666},{"x":1754407741520,"y":35.706},{"x":1754407681409,"y":16.844},{"x":1754407621266,"y":23.167},{"x":1754407561143,"y":28.355},{"x":1754407501026,"y":33.45},{"x":1754407440862,"y":31.015},{"x":1754407380698,"y":32.603},{"x":1754407320608,"y":23.849},{"x":1754407260397,"y":17.74},{"x":1754407200221,"y":17.734},{"x":1754407142918,"y":21.739},{"x":1754407082792,"y":24.23},{"x":1754407022602,"y":25.715},{"x":1754406962463,"y":27.179},{"x":1754406902329,"y":19.771},{"x":1754406842209,"y":18.833},{"x":1754406782079,"y":14.173},{"x":1754406721948,"y":17.783},{"x":1754406661809,"y":21.442},{"x":1754406601681,"y":22.597},{"x":1754406541542,"y":29.64},{"x":1754406481416,"y":28.43},{"x":1754406421296,"y":40.696},{"x":1754406361175,"y":42.516},{"x":1754406301049,"y":43.007},{"x":1754406240906,"y":55.116},{"x":1754406180781,"y":49.432},{"x":1754406120643,"y":57.335},{"x":1754406060551,"y":47.584},{"x":1754406000427,"y":34.876},{"x":1754405940181,"y":22.859},{"x":1754405882957,"y":24.347},{"x":1754405822833,"y":45.371},{"x":1754405762709,"y":35.716},{"x":1754405702587,"y":33.798},{"x":1754405642459,"y":39.581},{"x":1754405582328,"y":39.102},{"x":1754405522210,"y":29.77},{"x":1754405462085,"y":41.304},{"x":1754405401936,"y":39.006},{"x":1754405341801,"y":44.101},{"x":1754405281679,"y":42.53},{"x":1754405221579,"y":54.685},{"x":1754405161409,"y":31.417},{"x":1754405101417,"y":26.735},{"x":1754405041123,"y":27.878},{"x":1754404980971,"y":22.672},{"x":1754404920846,"y":31.337},{"x":1754404860725,"y":35.495},{"x":1754404800604,"y":34.711},{"x":1754404740510,"y":30.871},{"x":1754404680228,"y":15.696},{"x":1754404622915,"y":7.565},{"x":1754404562780,"y":21.18},{"x":1754404502628,"y":10.453},{"x":1754404442513,"y":12.58},{"x":1754404382372,"y":19.979},{"x":1754404322236,"y":14.408},{"x":1754404262072,"y":17.716},{"x":1754404201942,"y":12.75},{"x":1754404141764,"y":43.342},{"x":1754404081645,"y":31.183},{"x":1754404021518,"y":42.48},{"x":1754403961395,"y":25.705},{"x":1754403901261,"y":41.297},{"x":1754403841130,"y":22.246},{"x":1754403780991,"y":20.498},{"x":1754403720860,"y":5.792},{"x":1754403660713,"y":18.076},{"x":1754403600619,"y":23.089},{"x":1754403540368,"y":6.138},{"x":1754403480257,"y":23.07},{"x":1754403422974,"y":27.636},{"x":1754403362840,"y":24.347},{"x":1754403302718,"y":4.104},{"x":1754403242586,"y":47.838},{"x":1754403182461,"y":28.976},{"x":1754403122333,"y":26.632},{"x":1754403062204,"y":36.462},{"x":1754403002076,"y":30.361},{"x":1754402941932,"y":4.987},{"x":1754402881820,"y":10.688},{"x":1754402821674,"y":18.188},{"x":1754402761533,"y":8.074},{"x":1754402701414,"y":10.873},{"x":1754402641301,"y":11.546},{"x":1754402581172,"y":22.896},{"x":1754402521039,"y":22.456},{"x":1754402460911,"y":17.614},{"x":1754402400911,"y":40.72},{"x":1754402340653,"y":19.771},{"x":1754402280546,"y":17.642},{"x":1754402220476,"y":19.83},{"x":1754402160298,"y":28.861},{"x":1754402103020,"y":23.438},{"x":1754402042892,"y":42.295},{"x":1754401982764,"y":11.854},{"x":1754401922642,"y":17.849},{"x":1754401862524,"y":16.324},{"x":1754401802403,"y":16.672},{"x":1754401742285,"y":5.788},{"x":1754401682159,"y":24.649},{"x":1754401622020,"y":19.458},{"x":1754401561892,"y":23.87},{"x":1754401501763,"y":28.38},{"x":1754401441635,"y":31.297},{"x":1754401381513,"y":49.703},{"x":1754401321373,"y":58.332},{"x":1754401261246,"y":46.336},{"x":1754401201132,"y":52.639},{"x":1754401140955,"y":59.166},{"x":1754401080823,"y":33.917},{"x":1754401020696,"y":-2.274},{"x":1754400960601,"y":16.49},{"x":1754400900495,"y":0.599},{"x":1754400840354,"y":9.592},{"x":1754400780180,"y":17.443},{"x":1754400722922,"y":20.011},{"x":1754400662803,"y":4.535},{"x":1754400602669,"y":23.668},{"x":1754400542538,"y":34.358},{"x":1754400482401,"y":27.784},{"x":1754400422264,"y":26.366},{"x":1754400362137,"y":25.578},{"x":1754400301996,"y":24.235},{"x":1754400241861,"y":19.438},{"x":1754400181727,"y":20.485},{"x":1754400121601,"y":36.122},{"x":1754400061437,"y":40.25},{"x":1754400001333,"y":29.65},{"x":1754399941119,"y":38.662},{"x":1754399880945,"y":24.442},{"x":1754399820848,"y":35.736},{"x":1754399760749,"y":10.901},{"x":1754399700645,"y":19.177},{"x":1754399640451,"y":9.296},{"x":1754399580194,"y":1.229},{"x":1754399522988,"y":26.33},{"x":1754399462862,"y":23.884},{"x":1754399402701,"y":20.816},{"x":1754399342573,"y":18.096},{"x":1754399282452,"y":19.6},{"x":1754399222330,"y":23.442},{"x":1754399162207,"y":20.902},{"x":1754399102078,"y":40.22},{"x":1754399041937,"y":32.669},{"x":1754398981820,"y":36.492},{"x":1754398921660,"y":50.857},{"x":1754398861545,"y":34.427},{"x":1754398801507,"y":34.427},{"x":1754398741195,"y":18.803},{"x":1754398681063,"y":17.07},{"x":1754398620847,"y":-1.385},{"x":1754398560758,"y":6.346},{"x":1754398500625,"y":17.099},{"x":1754398440447,"y":19.061},{"x":1754398380306,"y":19.712},{"x":1754398322991,"y":25.853},{"x":1754398262866,"y":28.13},{"x":1754398202758,"y":12.074},{"x":1754398142603,"y":4.772},{"x":1754398082480,"y":10.336},{"x":1754398022356,"y":24.768},{"x":1754397962215,"y":27.114},{"x":1754397902083,"y":15.413},{"x":1754397841947,"y":31.224},{"x":1754397781829,"y":1.969},{"x":1754397721711,"y":-0.397},{"x":1754397661580,"y":2.551},{"x":1754397601452,"y":7.241},{"x":1754397541320,"y":41.314},{"x":1754397481182,"y":23.216},{"x":1754397421046,"y":32.104},{"x":1754397360898,"y":21.881},{"x":1754397300780,"y":30.406},{"x":1754397240648,"y":14.802},{"x":1754397180497,"y":25.176},{"x":1754397120376,"y":17.665},{"x":1754397060345,"y":1.884},{"x":1754397002912,"y":14.278},{"x":1754396942788,"y":18.95},{"x":1754396882649,"y":18.994},{"x":1754396822520,"y":26.336},{"x":1754396762398,"y":32.309},{"x":1754396702267,"y":27.137},{"x":1754396642147,"y":12.806},{"x":1754396582021,"y":6.68},{"x":1754396521890,"y":24.041},{"x":1754396461731,"y":30.311},{"x":1754396401570,"y":5.788},{"x":1754396341402,"y":20.598},{"x":1754396281272,"y":17.748},{"x":1754396221153,"y":14.592},{"x":1754396161008,"y":33.775},{"x":1754396100895,"y":28.934},{"x":1754396040753,"y":27.307},{"x":1754395980629,"y":36.236},{"x":1754395920533,"y":48.434},{"x":1754395860410,"y":53.719},{"x":1754395800229,"y":28.778},{"x":1754395742966,"y":49.897},{"x":1754395682836,"y":31.828},{"x":1754395622714,"y":24.901},{"x":1754395562589,"y":26.3},{"x":1754395502458,"y":27.541},{"x":1754395442329,"y":26.263},{"x":1754395382207,"y":15.409},{"x":1754395322090,"y":4.82},{"x":1754395261939,"y":8.784},{"x":1754395201865,"y":25.619},{"x":1754395141568,"y":29.549},{"x":1754395081444,"y":40.062},{"x":1754395021313,"y":43.471},{"x":1754394961219,"y":41.214},{"x":1754394901060,"y":34.506},{"x":1754394840916,"y":21.757},{"x":1754394780788,"y":24.193},{"x":1754394720676,"y":23.704},{"x":1754394660556,"y":21.103},{"x":1754394600441,"y":10.445},{"x":1754394540227,"y":4.988},{"x":1754394482988,"y":28.427},{"x":1754394422858,"y":22.764},{"x":1754394362736,"y":27.58},{"x":1754394302613,"y":35.74},{"x":1754394242484,"y":28.703},{"x":1754394182365,"y":28.37},{"x":1754394122229,"y":52.336},{"x":1754394062102,"y":36.701},{"x":1754394001967,"y":14.141},{"x":1754393941829,"y":18.265},{"x":1754393881716,"y":8.558},{"x":1754393821570,"y":6.904},{"x":1754393761433,"y":24.406},{"x":1754393701316,"y":28.313},{"x":1754393641191,"y":27.101},{"x":1754393581053,"y":27.898},{"x":1754393520940,"y":31.774},{"x":1754393460795,"y":37.655},{"x":1754393400775,"y":59.549},{"x":1754393340514,"y":40.951},{"x":1754393280394,"y":42.863},{"x":1754393220183,"y":44.382},{"x":1754393162948,"y":23.834},{"x":1754393102815,"y":2.692},{"x":1754393042691,"y":1.451},{"x":1754392982573,"y":26.161},{"x":1754392922457,"y":18.382},{"x":1754392862304,"y":14.57},{"x":1754392802168,"y":11.723},{"x":1754392741958,"y":8.026},{"x":1754392681834,"y":19.274},{"x":1754392621695,"y":9.623},{"x":1754392561550,"y":1.592},{"x":1754392501433,"y":15.804},{"x":1754392441308,"y":40.426},{"x":1754392381174,"y":40.615},{"x":1754392321038,"y":40.854},{"x":1754392260901,"y":35.344},{"x":1754392200828,"y":24.815},{"x":1754392140648,"y":34.646},{"x":1754392080561,"y":22.24},{"x":1754392020430,"y":26.983},{"x":1754391960217,"y":29.7},{"x":1754391902977,"y":23.941},{"x":1754391842860,"y":23.719},{"x":1754391782733,"y":24.062},{"x":1754391722599,"y":-0.827},{"x":1754391662459,"y":0.312},{"x":1754391602422,"y":36.244},{"x":1754391542137,"y":44.74},{"x":1754391482006,"y":18.254},{"x":1754391421885,"y":37.441},{"x":1754391361758,"y":23.854},{"x":1754391301681,"y":13.866},{"x":1754391241491,"y":52.02},{"x":1754391181370,"y":28.622},{"x":1754391121240,"y":58.328},{"x":1754391061085,"y":19.973},{"x":1754391000970,"y":49.266},{"x":1754390940814,"y":2.112},{"x":1754390880730,"y":30.676},{"x":1754390820575,"y":16.446},{"x":1754390760434,"y":1.044},{"x":1754390700292,"y":7.309},{"x":1754390642950,"y":10.88},{"x":1754390582824,"y":5.992},{"x":1754390522697,"y":20.869},{"x":1754390462567,"y":11.531},{"x":1754390402438,"y":8.507},{"x":1754390342314,"y":6.995},{"x":1754390282178,"y":5.53},{"x":1754390222050,"y":11.711},{"x":1754390161900,"y":7.424},{"x":1754390101780,"y":3.787},{"x":1754390041649,"y":5.051},{"x":1754389981520,"y":20.515},{"x":1754389921390,"y":19.664},{"x":1754389861270,"y":18.391},{"x":1754389801157,"y":35.405},{"x":1754389740997,"y":43.571},{"x":1754389680849,"y":20.63},{"x":1754389620748,"y":18.1},{"x":1754389560617,"y":26.794},{"x":1754389500621,"y":24.268},{"x":1754389440374,"y":27.114},{"x":1754389380169,"y":23.496},{"x":1754389322923,"y":22.139},{"x":1754389262750,"y":33.218},{"x":1754389202607,"y":22.174},{"x":1754389142424,"y":19.637},{"x":1754389082300,"y":21.661},{"x":1754389022128,"y":15.779},{"x":1754388961970,"y":13.176},{"x":1754388901837,"y":6.548},{"x":1754388841703,"y":23.704},{"x":1754388781578,"y":23.148},{"x":1754388721448,"y":44.886},{"x":1754388661324,"y":38.947},{"x":1754388601206,"y":35.292},{"x":1754388541045,"y":20.768},{"x":1754388480909,"y":23.329},{"x":1754388420772,"y":17.808},{"x":1754388360677,"y":8.424},{"x":1754388300574,"y":16.26},{"x":1754388240439,"y":26.189},{"x":1754388180386,"y":38.988},{"x":1754388122990,"y":46.54},{"x":1754388062861,"y":25.121},{"x":1754388002743,"y":24.786},{"x":1754387942573,"y":9.139},{"x":1754387882440,"y":8.585},{"x":1754387822320,"y":11.122},{"x":1754387762181,"y":16.099},{"x":1754387702041,"y":15.778},{"x":1754387641895,"y":22.626},{"x":1754387581753,"y":17.882},{"x":1754387521624,"y":20.304},{"x":1754387461498,"y":14.057},{"x":1754387401375,"y":26.543},{"x":1754387341244,"y":14.551},{"x":1754387281119,"y":18.06},{"x":1754387220961,"y":10.974},{"x":1754387160834,"y":14.326},{"x":1754387100814,"y":9.908},{"x":1754387040593,"y":13.05},{"x":1754386980426,"y":45.869},{"x":1754386920298,"y":29.884},{"x":1754386862973,"y":31.334},{"x":1754386802827,"y":31.937},{"x":1754386742688,"y":28.742},{"x":1754386682567,"y":15.22},{"x":1754386622428,"y":22.074},{"x":1754386562311,"y":16.064},{"x":1754386502184,"y":14.285},{"x":1754386442062,"y":14.64},{"x":1754386381915,"y":13.963},{"x":1754386321780,"y":17.665},{"x":1754386261648,"y":35.006},{"x":1754386201537,"y":26.336},{"x":1754386141382,"y":21.69},{"x":1754386081261,"y":25.837},{"x":1754386021137,"y":15.316},{"x":1754385960991,"y":29.317},{"x":1754385900869,"y":25.76},{"x":1754385840714,"y":30.514},{"x":1754385780617,"y":27.422},{"x":1754385720477,"y":28.159},{"x":1754385660279,"y":18.73},{"x":1754385602968,"y":30.943},{"x":1754385542822,"y":43.798},{"x":1754385482696,"y":55.387},{"x":1754385422573,"y":39.69},{"x":1754385362444,"y":33.452},{"x":1754385302316,"y":22.649},{"x":1754385242189,"y":29.473},{"x":1754385182057,"y":14.27},{"x":1754385121919,"y":16.349},{"x":1754385061792,"y":16.176},{"x":1754385001668,"y":21.235},{"x":1754384941512,"y":21.818},{"x":1754384881392,"y":31.051},{"x":1754384821271,"y":20.554},{"x":1754384761129,"y":38.312},{"x":1754384701007,"y":24.461},{"x":1754384640862,"y":22.247},{"x":1754384580735,"y":26.687},{"x":1754384520639,"y":25.764},{"x":1754384460458,"y":39.998},{"x":1754384400533,"y":33.596},{"x":1754384342959,"y":35.75},{"x":1754384282838,"y":36.443},{"x":1754384222705,"y":41.09},{"x":1754384162580,"y":25.854},{"x":1754384102459,"y":30.97},{"x":1754384042337,"y":24.601},{"x":1754383982213,"y":24.81},{"x":1754383922125,"y":27.034},{"x":1754383861931,"y":20.928},{"x":1754383801803,"y":19.024},{"x":1754383741667,"y":18.629},{"x":1754383681562,"y":18.63},{"x":1754383621415,"y":16.343},{"x":1754383561294,"y":16.908},{"x":1754383501180,"y":20.51},{"x":1754383441008,"y":17.848},{"x":1754383380878,"y":21.248},{"x":1754383320765,"y":16.801},{"x":1754383260624,"y":34.561},{"x":1754383200690,"y":35.255},{"x":1754383140355,"y":37.932},{"x":1754383080249,"y":34.41},{"x":1754383022904,"y":34.361},{"x":1754382962772,"y":21.112},{"x":1754382902653,"y":32.68},{"x":1754382842494,"y":28.274},{"x":1754382782359,"y":19.979},{"x":1754382722232,"y":30.707},{"x":1754382662103,"y":21.922},{"x":1754382601984,"y":29.436},{"x":1754382541837,"y":22.85},{"x":1754382481709,"y":23.076},{"x":1754382421585,"y":27.787},{"x":1754382361462,"y":17.54},{"x":1754382301346,"y":15.391},{"x":1754382241221,"y":34.328},{"x":1754382181064,"y":33.01},{"x":1754382120920,"y":19.937},{"x":1754382060746,"y":31.614},{"x":1754382000578,"y":22.637},{"x":1754381940363,"y":35.566},{"x":1754381880295,"y":32.239},{"x":1754381820088,"y":29.3},{"x":1754381762909,"y":45.344},{"x":1754381702721,"y":39.262},{"x":1754381642601,"y":26.554},{"x":1754381582481,"y":32.932},{"x":1754381522351,"y":25.384},{"x":1754381462224,"y":31.121},{"x":1754381402092,"y":25.519},{"x":1754381341943,"y":22.946},{"x":1754381281820,"y":18.373},{"x":1754381221696,"y":22.849},{"x":1754381161579,"y":39.155},{"x":1754381101435,"y":28.934},{"x":1754381041287,"y":27.498},{"x":1754380981158,"y":36.968},{"x":1754380921019,"y":37.902},{"x":1754380860897,"y":27.577},{"x":1754380800958,"y":22.8},{"x":1754380740620,"y":28.128},{"x":1754380680507,"y":25.933},{"x":1754380620273,"y":24.643},{"x":1754380562949,"y":30.281},{"x":1754380502787,"y":21.872},{"x":1754380442653,"y":42.418},{"x":1754380382527,"y":40.541},{"x":1754380322407,"y":24.488},{"x":1754380262264,"y":21.586},{"x":1754380202139,"y":37.748},{"x":1754380142027,"y":37.655},{"x":1754380081860,"y":35.646},{"x":1754380021732,"y":37.218},{"x":1754379961613,"y":39.763},{"x":1754379901491,"y":26.131},{"x":1754379841387,"y":21.641},{"x":1754379781258,"y":19.45},{"x":1754379721120,"y":22.784},{"x":1754379660983,"y":19.211},{"x":1754379600910,"y":26.048},{"x":1754379540704,"y":22.63},{"x":1754379480584,"y":20.01},{"x":1754379420465,"y":21.439},{"x":1754379360343,"y":38.698},{"x":1754379300183,"y":25.632},{"x":1754379242916,"y":35.478},{"x":1754379182786,"y":44.249},{"x":1754379122666,"y":49.374},{"x":1754379062541,"y":47.873},{"x":1754379002420,"y":46.71},{"x":1754378942290,"y":39.302},{"x":1754378882164,"y":25.153},{"x":1754378822030,"y":20.339},{"x":1754378761894,"y":26.748},{"x":1754378701767,"y":21.683},{"x":1754378641644,"y":35.072},{"x":1754378581513,"y":42.017},{"x":1754378521370,"y":43.668},{"x":1754378461219,"y":41.927},{"x":1754378401050,"y":44.243},{"x":1754378340833,"y":30.066},{"x":1754378280688,"y":26.855},{"x":1754378220568,"y":30.666},{"x":1754378160483,"y":27.119},{"x":1754378100241,"y":35.423},{"x":1754378042967,"y":28.936},{"x":1754377982840,"y":43.51},{"x":1754377922718,"y":32.623},{"x":1754377862618,"y":32.327},{"x":1754377802482,"y":38.834},{"x":1754377742333,"y":31.79},{"x":1754377682211,"y":26.677},{"x":1754377622029,"y":36.196},{"x":1754377561877,"y":31.151},{"x":1754377501768,"y":31.28},{"x":1754377441620,"y":44.153},{"x":1754377381504,"y":35.333},{"x":1754377321367,"y":51.295},{"x":1754377261260,"y":33.887},{"x":1754377201114,"y":56.611},{"x":1754377140888,"y":42.455},{"x":1754377080754,"y":56.952},{"x":1754377020650,"y":41.851},{"x":1754376960545,"y":42.136},{"x":1754376900359,"y":31.19},{"x":1754376840176,"y":34.039},{"x":1754376782922,"y":44.36},{"x":1754376722779,"y":42.506},{"x":1754376662650,"y":42.625},{"x":1754376602521,"y":43.301},{"x":1754376542391,"y":46.735},{"x":1754376482272,"y":27.724},{"x":1754376422143,"y":25.16},{"x":1754376362009,"y":40.571},{"x":1754376301878,"y":36.065},{"x":1754376241738,"y":45.382},{"x":1754376181610,"y":45.732},{"x":1754376121478,"y":42.342},{"x":1754376061320,"y":42.52},{"x":1754376001193,"y":36.406},{"x":1754375941053,"y":34.759},{"x":1754375880936,"y":32.31},{"x":1754375820798,"y":35.754},{"x":1754375760711,"y":36.923},{"x":1754375700547,"y":31.717},{"x":1754375640400,"y":49.135},{"x":1754375580352,"y":52.048},{"x":1754375520059,"y":51.319},{"x":1754375462905,"y":53.663},{"x":1754375402795,"y":51.004},{"x":1754375342659,"y":41.009},{"x":1754375282541,"y":43.134},{"x":1754375222397,"y":45.982},{"x":1754375162269,"y":39.203},{"x":1754375102144,"y":35.224},{"x":1754375042008,"y":32.386},{"x":1754374981848,"y":32.953},{"x":1754374921741,"y":30.614},{"x":1754374861599,"y":31.319},{"x":1754374801419,"y":29.678},{"x":1754374741257,"y":36.28},{"x":1754374681128,"y":34.378},{"x":1754374620995,"y":36.691},{"x":1754374560864,"y":37.162},{"x":1754374500794,"y":33.677},{"x":1754374440609,"y":30.71},{"x":1754374380532,"y":35.184},{"x":1754374320379,"y":32.947},{"x":1754374260343,"y":37.397},{"x":1754374202947,"y":31.807},{"x":1754374142823,"y":33.184},{"x":1754374082690,"y":31.766},{"x":1754374022559,"y":30.522},{"x":1754373962443,"y":34.949},{"x":1754373902340,"y":28.771},{"x":1754373842198,"y":28.148},{"x":1754373782072,"y":26.524},{"x":1754373721935,"y":28.219},{"x":1754373661831,"y":32.764},{"x":1754373601688,"y":27.572},{"x":1754373541520,"y":27.889},{"x":1754373481401,"y":31.513},{"x":1754373421284,"y":36.026},{"x":1754373361150,"y":32.55},{"x":1754373301029,"y":47.592},{"x":1754373240870,"y":51.868},{"x":1754373180715,"y":65.912},{"x":1754373120633,"y":63.979},{"x":1754373060461,"y":48.034},{"x":1754373000320,"y":48.194},{"x":1754372942987,"y":44.874},{"x":1754372882869,"y":37.169},{"x":1754372822708,"y":30.514},{"x":1754372762584,"y":32.294},{"x":1754372702473,"y":35.646},{"x":1754372642334,"y":32.486},{"x":1754372582212,"y":26.226},{"x":1754372522076,"y":26.371},{"x":1754372461941,"y":25.186},{"x":1754372401819,"y":34.136},{"x":1754372341682,"y":31.786},{"x":1754372281558,"y":32.48},{"x":1754372221431,"y":33.58},{"x":1754372161301,"y":33.672},{"x":1754372101179,"y":31.466},{"x":1754372041027,"y":32.333},{"x":1754371980892,"y":35.317},{"x":1754371920770,"y":30.358},{"x":1754371860697,"y":31.202},{"x":1754371800524,"y":31.52},{"x":1754371740301,"y":36.298},{"x":1754371680129,"y":28.212},{"x":1754371622894,"y":32.513},{"x":1754371562758,"y":34.661},{"x":1754371502647,"y":37.586},{"x":1754371442514,"y":42.052},{"x":1754371382386,"y":38.326},{"x":1754371322230,"y":32.099},{"x":1754371262076,"y":39.563},{"x":1754371201902,"y":37.956},{"x":1754371141750,"y":40.34},{"x":1754371081616,"y":33.989},{"x":1754371021493,"y":34.436},{"x":1754370961370,"y":37.027},{"x":1754370901317,"y":33.452},{"x":1754370841110,"y":32.424},{"x":1754370780979,"y":29.008},{"x":1754370720869,"y":30.218},{"x":1754370660729,"y":30.499},{"x":1754370600659,"y":34.224},{"x":1754370540533,"y":32.092},{"x":1754370480410,"y":37.212},{"x":1754370423006,"y":34.93},{"x":1754370362881,"y":32.364},{"x":1754370302755,"y":32.478},{"x":1754370242633,"y":40.469},{"x":1754370182506,"y":55.202},{"x":1754370122384,"y":51.384},{"x":1754370062255,"y":51.954},{"x":1754370002185,"y":47.612},{"x":1754369941986,"y":40.681},{"x":1754369881857,"y":38.916},{"x":1754369821733,"y":36.604},{"x":1754369761610,"y":32.612},{"x":1754369701480,"y":32.334},{"x":1754369641361,"y":29.423},{"x":1754369581240,"y":29.156},{"x":1754369521098,"y":30.226},{"x":1754369460964,"y":28.283},{"x":1754369400878,"y":29.76},{"x":1754369340697,"y":29.335},{"x":1754369280622,"y":31.931},{"x":1754369220440,"y":31.524},{"x":1754369160405,"y":31.122},{"x":1754369100228,"y":32.647},{"x":1754369042972,"y":50.322},{"x":1754368982848,"y":47.699},{"x":1754368922719,"y":64.068},{"x":1754368862597,"y":60.036},{"x":1754368802468,"y":57.403},{"x":1754368742344,"y":42.127},{"x":1754368682223,"y":43.307},{"x":1754368622062,"y":38.1},{"x":1754368561894,"y":34.922},{"x":1754368501836,"y":34.614},{"x":1754368441630,"y":38.263},{"x":1754368381514,"y":35.191},{"x":1754368321394,"y":38.138},{"x":1754368261266,"y":30.898},{"x":1754368201195,"y":31.912},{"x":1754368140985,"y":29.434},{"x":1754368080854,"y":30.635},{"x":1754368020621,"y":32.699},{"x":1754367960511,"y":34.163},{"x":1754367900345,"y":44.318},{"x":1754367840250,"y":42.526},{"x":1754367782958,"y":40.862},{"x":1754367722808,"y":39.75},{"x":1754367662611,"y":42.382},{"x":1754367602508,"y":32.099},{"x":1754367542346,"y":31.843},{"x":1754367482240,"y":31.898},{"x":1754367422107,"y":36.696},{"x":1754367361970,"y":36.96},{"x":1754367301828,"y":33.841},{"x":1754367241704,"y":32.86},{"x":1754367181584,"y":35.472},{"x":1754367121459,"y":36.138},{"x":1754367061328,"y":67.22},{"x":1754367001214,"y":66.444},{"x":1754366941068,"y":60.448},{"x":1754366880929,"y":62.671},{"x":1754366820801,"y":62.398},{"x":1754366760694,"y":36.862},{"x":1754366700594,"y":36.73},{"x":1754366640486,"y":35.989},{"x":1754366580350,"y":34.66},{"x":1754366520294,"y":32.314},{"x":1754366462916,"y":44.244},{"x":1754366402778,"y":46.505},{"x":1754366342601,"y":43.187},{"x":1754366282482,"y":46.158},{"x":1754366222346,"y":43.02},{"x":1754366162225,"y":30.725},{"x":1754366102100,"y":33.562},{"x":1754366041942,"y":33.185},{"x":1754365981814,"y":39.478},{"x":1754365921687,"y":35.314},{"x":1754365861555,"y":37.128},{"x":1754365801423,"y":42.578},{"x":1754365741296,"y":34.661},{"x":1754365681171,"y":34.747},{"x":1754365621039,"y":33.834},{"x":1754365560889,"y":34.516},{"x":1754365500995,"y":31.271},{"x":1754365440635,"y":27.805},{"x":1754365380482,"y":29.839},{"x":1754365320355,"y":31.535},{"x":1754365260247,"y":32.318},{"x":1754365202966,"y":31.109},{"x":1754365142843,"y":37.554},{"x":1754365082719,"y":35.214},{"x":1754365022591,"y":33.69},{"x":1754364962465,"y":31.682},{"x":1754364902342,"y":29.524},{"x":1754364842224,"y":35.273},{"x":1754364782092,"y":31.506},{"x":1754364721954,"y":31.724},{"x":1754364661854,"y":30.944},{"x":1754364601728,"y":34.021},{"x":1754364541580,"y":36.491},{"x":1754364481433,"y":39.761},{"x":1754364421310,"y":37.748},{"x":1754364361180,"y":36.041},{"x":1754364301027,"y":31.339},{"x":1754364240895,"y":28.656},{"x":1754364180812,"y":29.166},{"x":1754364120622,"y":27.492},{"x":1754364060481,"y":29.747},{"x":1754364000404,"y":28.699},{"x":1754363940163,"y":33.156},{"x":1754363882910,"y":36.725},{"x":1754363822799,"y":29.808},{"x":1754363762640,"y":31.075},{"x":1754363702507,"y":30.827},{"x":1754363642369,"y":46.958},{"x":1754363582254,"y":66.042},{"x":1754363522126,"y":62.066},{"x":1754363461986,"y":59.939},{"x":1754363401859,"y":57.21},{"x":1754363341723,"y":45.95},{"x":1754363281611,"y":31.511},{"x":1754363221470,"y":32.129},{"x":1754363161254,"y":32.248},{"x":1754363101129,"y":32.948},{"x":1754363040984,"y":31.462},{"x":1754362981467,"y":31.844},{"x":1754362921314,"y":31.806},{"x":1754362861175,"y":30.122},{"x":1754362803915,"y":29.234},{"x":1754362742895,"y":33.538},{"x":1754362682761,"y":34.394},{"x":1754362622639,"y":38.599},{"x":1754362562519,"y":31.985},{"x":1754362502388,"y":31.596},{"x":1754362442261,"y":28.982},{"x":1754362382137,"y":28.65},{"x":1754362321990,"y":33.424},{"x":1754362261867,"y":32.942},{"x":1754362201728,"y":32.376},{"x":1754362141592,"y":47.328},{"x":1754362081471,"y":59.892},{"x":1754362021346,"y":57.508},{"x":1754361961224,"y":59.042},{"x":1754361901116,"y":58.843},{"x":1754361840927,"y":46.673},{"x":1754361780787,"y":31.98},{"x":1754361720667,"y":31.824},{"x":1754361660543,"y":31.806},{"x":1754361600498,"y":30.692},{"x":1754361540318,"y":41.443},{"x":1754361480168,"y":49.89},{"x":1754361422921,"y":52.907},{"x":1754361362801,"y":56.855},{"x":1754361302665,"y":53.614},{"x":1754361242515,"y":42.158},{"x":1754361182396,"y":29.874},{"x":1754361122243,"y":33.306},{"x":1754361062126,"y":37.368},{"x":1754361001989,"y":34.327},{"x":1754360941847,"y":49.448},{"x":1754360881743,"y":45.701},{"x":1754360821601,"y":43.867},{"x":1754360761475,"y":46.702},{"x":1754360701350,"y":47.731},{"x":1754360641231,"y":34.588},{"x":1754360581102,"y":33.974},{"x":1754360520979,"y":34.489},{"x":1754360460805,"y":31.436},{"x":1754360400711,"y":35.524},{"x":1754360340470,"y":30.443},{"x":1754360280305,"y":28.286},{"x":1754360223033,"y":28.024},{"x":1754360162894,"y":29.594},{"x":1754360102754,"y":33.391},{"x":1754360042637,"y":29.376},{"x":1754359982504,"y":32.227},{"x":1754359922369,"y":53.135},{"x":1754359862239,"y":53.503},{"x":1754359802113,"y":49.846},{"x":1754359741978,"y":48.913},{"x":1754359681843,"y":42.773},{"x":1754359621723,"y":29.441},{"x":1754359561596,"y":29.095},{"x":1754359501469,"y":29.417},{"x":1754359441339,"y":29.299},{"x":1754359381217,"y":27.774},{"x":1754359321070,"y":45.894},{"x":1754359260922,"y":46.914},{"x":1754359200952,"y":55.172},{"x":1754359140656,"y":54.626},{"x":1754359080521,"y":42.972},{"x":1754359020480,"y":34.206},{"x":1754358960242,"y":33.308},{"x":1754358902978,"y":32.252},{"x":1754358842843,"y":36.47},{"x":1754358782717,"y":35.801},{"x":1754358722592,"y":43.294},{"x":1754358662452,"y":45.793},{"x":1754358602328,"y":43.93},{"x":1754358542190,"y":46.145},{"x":1754358482070,"y":42.146},{"x":1754358421921,"y":30.137},{"x":1754358361794,"y":30.061},{"x":1754358301670,"y":33.671},{"x":1754358241547,"y":31.704},{"x":1754358181440,"y":44.459},{"x":1754358121286,"y":44.412},{"x":1754358061162,"y":62.513},{"x":1754358001051,"y":61.53},{"x":1754357940874,"y":60.421},{"x":1754357880731,"y":52.674},{"x":1754357820633,"y":46.51},{"x":1754357760533,"y":30.752},{"x":1754357700286,"y":31.176},{"x":1754357640149,"y":29.363},{"x":1754357582900,"y":29.532},{"x":1754357522760,"y":33.372},{"x":1754357462634,"y":35.544},{"x":1754357402506,"y":32.455},{"x":1754357342372,"y":35.36},{"x":1754357282235,"y":30.988},{"x":1754357222112,"y":35.604},{"x":1754357161982,"y":35.779},{"x":1754357101855,"y":37.454},{"x":1754357041732,"y":35.082},{"x":1754356981599,"y":36.275},{"x":1754356921446,"y":37.445},{"x":1754356861303,"y":38.209},{"x":1754356801218,"y":32.365},{"x":1754356740885,"y":30.163},{"x":1754356680763,"y":42.373},{"x":1754356620728,"y":42.688},{"x":1754356560602,"y":46.95},{"x":1754356500518,"y":42.883},{"x":1754356440103,"y":43.027},{"x":1754356382903,"y":34.106},{"x":1754356322780,"y":34.595},{"x":1754356262650,"y":37.188},{"x":1754356202533,"y":30.11},{"x":1754356142408,"y":28.678},{"x":1754356082281,"y":29.279},{"x":1754356022157,"y":30.444},{"x":1754355962017,"y":29.335},{"x":1754355901875,"y":32.627},{"x":1754355841736,"y":33.96},{"x":1754355781616,"y":36.22},{"x":1754355721474,"y":34.078},{"x":1754355661366,"y":32.984},{"x":1754355601271,"y":38.627},{"x":1754355540935,"y":33.904},{"x":1754355480813,"y":37.684},{"x":1754355420697,"y":26.804},{"x":1754355360587,"y":31.956},{"x":1754355300455,"y":34.973},{"x":1754355240332,"y":33.816},{"x":1754355180243,"y":33.305},{"x":1754355122942,"y":39.422},{"x":1754355062803,"y":32.347},{"x":1754355002663,"y":37.864},{"x":1754354942539,"y":46.074},{"x":1754354882418,"y":60.391},{"x":1754354822293,"y":60.863},{"x":1754354762157,"y":60.331},{"x":1754354701988,"y":60.493},{"x":1754354641851,"y":41.654},{"x":1754354581730,"y":32.346},{"x":1754354521598,"y":31.326},{"x":1754354461482,"y":33.042},{"x":1754354401331,"y":31.296},{"x":1754354341203,"y":31.292},{"x":1754354281060,"y":31.02},{"x":1754354220864,"y":30.812},{"x":1754354160760,"y":35.087},{"x":1754354100673,"y":33.85},{"x":1754354040474,"y":37.86},{"x":1754353980285,"y":29.452},{"x":1754353920259,"y":30.298},{"x":1754353862931,"y":30.635},{"x":1754353802807,"y":30.461},{"x":1754353742678,"y":34.25},{"x":1754353682540,"y":29.701},{"x":1754353622413,"y":58.232},{"x":1754353562284,"y":61.093},{"x":1754353502147,"y":61.458},{"x":1754353442005,"y":60.924},{"x":1754353381871,"y":70.883},{"x":1754353321748,"y":37.639},{"x":1754353261600,"y":34.952},{"x":1754353201430,"y":33.077},{"x":1754353141284,"y":32.591},{"x":1754353081157,"y":31.973},{"x":1754353021032,"y":29.458},{"x":1754352960901,"y":28.892},{"x":1754352900812,"y":28.568},{"x":1754352840631,"y":31.735},{"x":1754352780536,"y":35.678},{"x":1754352720471,"y":32.881},{"x":1754352660128,"y":33.194},{"x":1754352602918,"y":58.057},{"x":1754352542793,"y":57.844},{"x":1754352482662,"y":65.075},{"x":1754352422537,"y":46.554},{"x":1754352362414,"y":58.397},{"x":1754352302291,"y":62.323},{"x":1754352242156,"y":61.553},{"x":1754352182023,"y":62.516},{"x":1754352121888,"y":58.944},{"x":1754352061767,"y":66.414},{"x":1754352001803,"y":38.93},{"x":1754351941467,"y":40.069},{"x":1754351881338,"y":37.241},{"x":1754351821215,"y":36.217},{"x":1754351761056,"y":33.126},{"x":1754351700929,"y":33.191},{"x":1754351640760,"y":33.541},{"x":1754351580651,"y":34.596},{"x":1754351520593,"y":39.282},{"x":1754351460407,"y":37.852},{"x":1754351400327,"y":38.458},{"x":1754351343025,"y":44.246},{"x":1754351282893,"y":45.085},{"x":1754351222765,"y":48.748},{"x":1754351162650,"y":67.243},{"x":1754351102505,"y":64.16},{"x":1754351042383,"y":62.243},{"x":1754350982262,"y":61.416},{"x":1754350922125,"y":58.484},{"x":1754350861982,"y":36.334},{"x":1754350801861,"y":37.069},{"x":1754350741716,"y":40.232},{"x":1754350681613,"y":38.359},{"x":1754350621454,"y":38.406},{"x":1754350561350,"y":35.374},{"x":1754350501226,"y":34.888},{"x":1754350441072,"y":32.411},{"x":1754350380942,"y":32.466},{"x":1754350320810,"y":42.971},{"x":1754350260690,"y":46.518},{"x":1754350200654,"y":40.852},{"x":1754350140395,"y":40.063},{"x":1754350080368,"y":37.994},{"x":1754350020305,"y":35.311},{"x":1754349962942,"y":40.674},{"x":1754349902805,"y":36.209},{"x":1754349842684,"y":36.312},{"x":1754349782560,"y":36.139},{"x":1754349722435,"y":34.873},{"x":1754349662255,"y":37.352},{"x":1754349602089,"y":31.276},{"x":1754349541925,"y":34.001},{"x":1754349481783,"y":35.918},{"x":1754349421664,"y":40.327},{"x":1754349361518,"y":37.256},{"x":1754349301419,"y":34.955},{"x":1754349241270,"y":36.367},{"x":1754349181142,"y":35.803},{"x":1754349120973,"y":38.84},{"x":1754349060849,"y":36.142},{"x":1754349000740,"y":41.723},{"x":1754348940614,"y":40.472},{"x":1754348880438,"y":36.568},{"x":1754348820213,"y":36.217},{"x":1754348762936,"y":35.44},{"x":1754348702806,"y":37.336},{"x":1754348642670,"y":35.534},{"x":1754348582549,"y":35.144},{"x":1754348522413,"y":34.805},{"x":1754348462283,"y":35.359},{"x":1754348402167,"y":41.564},{"x":1754348342021,"y":37.069},{"x":1754348281899,"y":37.006},{"x":1754348221767,"y":35.484},{"x":1754348161634,"y":35.86},{"x":1754348101507,"y":38.592},{"x":1754348041382,"y":37.459},{"x":1754347981259,"y":40.33},{"x":1754347921142,"y":38.359},{"x":1754347860965,"y":37.56},{"x":1754347800842,"y":38.563},{"x":1754347740708,"y":41.672},{"x":1754347680629,"y":35.95},{"x":1754347620499,"y":36.194},{"x":1754347560346,"y":45.404},{"x":1754347500263,"y":54.121},{"x":1754347442946,"y":53.328},{"x":1754347382823,"y":52.888},{"x":1754347322703,"y":54.377},{"x":1754347262583,"y":44.047},{"x":1754347202462,"y":34.813},{"x":1754347142339,"y":37.58},{"x":1754347082217,"y":33.038},{"x":1754347022088,"y":32.291},{"x":1754346961941,"y":33.47},{"x":1754346901817,"y":37.644},{"x":1754346841698,"y":42.658},{"x":1754346781559,"y":38.359},{"x":1754346721426,"y":36.016},{"x":1754346661306,"y":36.295},{"x":1754346601207,"y":37.548},{"x":1754346541040,"y":38.066},{"x":1754346480909,"y":38.722},{"x":1754346420784,"y":38.904},{"x":1754346360665,"y":39.203},{"x":1754346300650,"y":35.407},{"x":1754346240430,"y":41.164},{"x":1754346180241,"y":33.797},{"x":1754346122966,"y":36.462},{"x":1754346062806,"y":35.472},{"x":1754346002646,"y":33.833},{"x":1754345942494,"y":33.761},{"x":1754345882373,"y":35.53},{"x":1754345822233,"y":35.095},{"x":1754345762103,"y":34.528},{"x":1754345701963,"y":36.868},{"x":1754345641841,"y":39.301},{"x":1754345581715,"y":43.517},{"x":1754345521577,"y":37.411},{"x":1754345461452,"y":41.039},{"x":1754345401336,"y":36.81},{"x":1754345341206,"y":34.669},{"x":1754345281068,"y":39.534},{"x":1754345220925,"y":32.97},{"x":1754345160796,"y":34.46},{"x":1754345100714,"y":35.292},{"x":1754345040558,"y":33.761},{"x":1754344980368,"y":37.315},{"x":1754344920184,"y":36.037},{"x":1754344862906,"y":35.602},{"x":1754344802780,"y":33.112},{"x":1754344742637,"y":41.558},{"x":1754344682518,"y":49.8},{"x":1754344622398,"y":46.946},{"x":1754344562256,"y":48.434},{"x":1754344502135,"y":47.932},{"x":1754344442026,"y":49.772},{"x":1754344381862,"y":47.299},{"x":1754344321742,"y":46.504},{"x":1754344261617,"y":46.223},{"x":1754344201493,"y":43.904},{"x":1754344141365,"y":47.593},{"x":1754344081244,"y":60.03},{"x":1754344021106,"y":62.639},{"x":1754343960962,"y":58.198},{"x":1754343900922,"y":59.766},{"x":1754343840672,"y":47.056},{"x":1754343780571,"y":32.827},{"x":1754343720493,"y":40.867},{"x":1754343660204,"y":42.152},{"x":1754343602979,"y":39.172},{"x":1754343542851,"y":36.851},{"x":1754343482724,"y":48.232},{"x":1754343422600,"y":51.266},{"x":1754343362451,"y":44.704},{"x":1754343302326,"y":44.657},{"x":1754343242186,"y":43.498},{"x":1754343182053,"y":35.792},{"x":1754343121922,"y":39.814},{"x":1754343061797,"y":39.652},{"x":1754343001669,"y":36.348},{"x":1754342941536,"y":34.854},{"x":1754342881411,"y":33.395},{"x":1754342821289,"y":39.018},{"x":1754342761158,"y":34.853},{"x":1754342701035,"y":33.408},{"x":1754342640882,"y":36.762},{"x":1754342580732,"y":36.737},{"x":1754342520661,"y":36.42},{"x":1754342460334,"y":38.096},{"x":1754342400189,"y":39.095},{"x":1754342342946,"y":36.025},{"x":1754342282829,"y":38.537},{"x":1754342222717,"y":37.268},{"x":1754342162568,"y":34.978},{"x":1754342102443,"y":37.358},{"x":1754342042319,"y":39.89},{"x":1754341982184,"y":40.052},{"x":1754341922060,"y":37.784},{"x":1754341861916,"y":37.331},{"x":1754341801787,"y":35.942},{"x":1754341741659,"y":36.559},{"x":1754341681531,"y":37.165},{"x":1754341621404,"y":38.441},{"x":1754341561284,"y":39.388},{"x":1754341501156,"y":37.754},{"x":1754341441016,"y":40.001},{"x":1754341380889,"y":39.114},{"x":1754341320770,"y":34.374},{"x":1754341260639,"y":41.881},{"x":1754341200622,"y":44.677},{"x":1754341140454,"y":42.36},{"x":1754341080278,"y":42.234},{"x":1754341022979,"y":38.159},{"x":1754340962860,"y":39.972},{"x":1754340902735,"y":39.005},{"x":1754340842605,"y":36.073},{"x":1754340782478,"y":37.426},{"x":1754340722331,"y":38.914},{"x":1754340662206,"y":67.168},{"x":1754340602072,"y":59.962},{"x":1754340541926,"y":63.236},{"x":1754340481798,"y":59.168},{"x":1754340421675,"y":57.107},{"x":1754340361545,"y":38.948},{"x":1754340301442,"y":34.378},{"x":1754340241296,"y":37.33},{"x":1754340181161,"y":34.307},{"x":1754340121033,"y":47.833},{"x":1754340060903,"y":65.831},{"x":1754340000856,"y":63.404},{"x":1754339940623,"y":64.537},{"x":1754339880519,"y":62.232},{"x":1754339820427,"y":47.293},{"x":1754339762703,"y":44.59},{"x":1754339702579,"y":37.511},{"x":1754339642454,"y":36.785},{"x":1754339582329,"y":36.988},{"x":1754339521807,"y":36.18},{"x":1754339461649,"y":40.186},{"x":1754339401532,"y":38.694},{"x":1754339341385,"y":35.275},{"x":1754339281247,"y":41.754},{"x":1754339221109,"y":48.148},{"x":1754339160841,"y":43.312},{"x":1754339100723,"y":38.209},{"x":1754339040580,"y":49.374},{"x":1754338980464,"y":58.872},{"x":1754338922199,"y":60.077},{"x":1754338860684,"y":61.176},{"x":1754338800469,"y":52.086},{"x":1754338741233,"y":40.278},{"x":1754338681072,"y":36.172},{"x":1754338620949,"y":32.941},{"x":1754338561196,"y":38.119},{"x":1754338500503,"y":34.458},{"x":1754338440271,"y":37.896},{"x":1754338383023,"y":41.263},{"x":1754338322894,"y":32.17},{"x":1754338262750,"y":43.198},{"x":1754338202623,"y":40.895},{"x":1754338141646,"y":39.383},{"x":1754338081517,"y":38.07},{"x":1754338022508,"y":35.848},{"x":1754337962377,"y":38.737},{"x":1754337902255,"y":39.281},{"x":1754337842130,"y":37.994},{"x":1754337781983,"y":39.563},{"x":1754337721860,"y":41.359},{"x":1754337661725,"y":42.799},{"x":1754337601631,"y":46.345},{"x":1754337541407,"y":39.02},{"x":1754337481288,"y":41.156},{"x":1754337421143,"y":38.731},{"x":1754337361017,"y":35.38},{"x":1754337300875,"y":40.211},{"x":1754337240737,"y":38.366},{"x":1754337180638,"y":40.336},{"x":1754337120561,"y":40.039},{"x":1754337060356,"y":39.196},{"x":1754337000263,"y":47.796},{"x":1754336942940,"y":45.464},{"x":1754336882819,"y":40.502},{"x":1754336822697,"y":43.295},{"x":1754336762568,"y":40.312},{"x":1754336702440,"y":44.126},{"x":1754336642314,"y":37.146},{"x":1754336582187,"y":36.539},{"x":1754336522059,"y":35.495},{"x":1754336461924,"y":32.614},{"x":1754336401804,"y":39.361},{"x":1754336341675,"y":36.804},{"x":1754336281551,"y":37.577},{"x":1754336221423,"y":36.455},{"x":1754336161302,"y":36.562},{"x":1754336101176,"y":44.71},{"x":1754336041026,"y":36.418},{"x":1754335980891,"y":36.832},{"x":1754335920783,"y":35.834},{"x":1754335860653,"y":37.956},{"x":1754335800490,"y":41.483},{"x":1754335740373,"y":37.931},{"x":1754335683016,"y":39.379},{"x":1754335622889,"y":39.475},{"x":1754335562730,"y":39.282},{"x":1754335502599,"y":49.609},{"x":1754335442472,"y":39.859},{"x":1754335382312,"y":38.618},{"x":1754335322179,"y":38.538},{"x":1754335262005,"y":48.623},{"x":1754335201845,"y":63.518},{"x":1754335141693,"y":61.144},{"x":1754335081554,"y":58.254},{"x":1754335021428,"y":54.6},{"x":1754334961286,"y":42.989},{"x":1754334901165,"y":46.124},{"x":1754334841008,"y":41.576},{"x":1754334780878,"y":40.15},{"x":1754334720761,"y":42.284},{"x":1754334660634,"y":39.758},{"x":1754334600610,"y":43.292},{"x":1754334540484,"y":38.345},{"x":1754334482991,"y":38.516},{"x":1754334422834,"y":42.044},{"x":1754334362702,"y":40.027},{"x":1754334302571,"y":41.922},{"x":1754334242435,"y":46.339},{"x":1754334182312,"y":48.187},{"x":1754334122183,"y":47.641},{"x":1754334062059,"y":45.204},{"x":1754334001974,"y":43.552},{"x":1754333941780,"y":44.436},{"x":1754333881657,"y":50.761},{"x":1754333821532,"y":49.75},{"x":1754333761419,"y":52.603},{"x":1754333701277,"y":49.002},{"x":1754333641150,"y":47.117},{"x":1754333581004,"y":39.558},{"x":1754333520874,"y":46.417},{"x":1754333460746,"y":49.457},{"x":1754333400647,"y":46.343},{"x":1754333340544,"y":44.873},{"x":1754333280416,"y":36.865},{"x":1754333220165,"y":60.518},{"x":1754333162920,"y":60.794},{"x":1754333102801,"y":68.245},{"x":1754333042677,"y":70.788},{"x":1754332982542,"y":68.944},{"x":1754332922418,"y":49.021},{"x":1754332862291,"y":43.873},{"x":1754332802165,"y":41.322},{"x":1754332742020,"y":40.018},{"x":1754332681887,"y":43.086},{"x":1754332621755,"y":44.879},{"x":1754332561621,"y":40.314},{"x":1754332501538,"y":37.788},{"x":1754332441400,"y":36.658},{"x":1754332381237,"y":59.802},{"x":1754332321104,"y":39.58},{"x":1754332260976,"y":41.358},{"x":1754332200911,"y":52.846},{"x":1754332140714,"y":58.536},{"x":1754332080679,"y":58.451},{"x":1754332020524,"y":52.934},{"x":1754331960293,"y":52.933},{"x":1754331900107,"y":42.901},{"x":1754331842911,"y":39.512},{"x":1754331782807,"y":55.668},{"x":1754331722701,"y":37.897},{"x":1754331662495,"y":35.833},{"x":1754331602328,"y":37.836},{"x":1754331542172,"y":35.076},{"x":1754331482040,"y":37.474},{"x":1754331421906,"y":39.728},{"x":1754331361776,"y":38.485},{"x":1754331301659,"y":40.588},{"x":1754331241520,"y":51.637},{"x":1754331181388,"y":36.971},{"x":1754331121264,"y":39.739},{"x":1754331061127,"y":40.962},{"x":1754331000988,"y":44.42},{"x":1754330940815,"y":43.277},{"x":1754330880737,"y":46.302},{"x":1754330820603,"y":57.523},{"x":1754330760415,"y":73.331},{"x":1754330700239,"y":49.66},{"x":1754330642936,"y":46.21},{"x":1754330582813,"y":44.227},{"x":1754330522692,"y":40.594},{"x":1754330462560,"y":51.056},{"x":1754330402444,"y":42.055},{"x":1754330342274,"y":47.264},{"x":1754330282150,"y":45.775},{"x":1754330222015,"y":42.034},{"x":1754330161878,"y":46.021},{"x":1754330101768,"y":40.814},{"x":1754330041617,"y":34.342},{"x":1754329981510,"y":34.733},{"x":1754329921361,"y":34.14},{"x":1754329861239,"y":36.91},{"x":1754329801110,"y":36.044},{"x":1754329740956,"y":48.786},{"x":1754329680837,"y":49.882},{"x":1754329620711,"y":52.652},{"x":1754329560603,"y":50.356},{"x":1754329500500,"y":46.055},{"x":1754329440345,"y":36.76},{"x":1754329380197,"y":37.516},{"x":1754329322928,"y":41.657},{"x":1754329262806,"y":51.295},{"x":1754329202676,"y":48.245},{"x":1754329142544,"y":46.931},{"x":1754329082397,"y":47.125},{"x":1754329022273,"y":48.106},{"x":1754328962139,"y":47.304},{"x":1754328902019,"y":42.38},{"x":1754328841880,"y":36.083},{"x":1754328781757,"y":40.361},{"x":1754328721631,"y":35.818},{"x":1754328661504,"y":37.476},{"x":1754328601438,"y":35.167},{"x":1754328541228,"y":35.104},{"x":1754328481100,"y":45.708},{"x":1754328420941,"y":56.554},{"x":1754328360809,"y":53.328},{"x":1754328300728,"y":56.659},{"x":1754328240576,"y":52.4},{"x":1754328180399,"y":52.282},{"x":1754328120308,"y":37.02},{"x":1754328062947,"y":35.016},{"x":1754328002798,"y":35.708},{"x":1754327942649,"y":53.549},{"x":1754327882534,"y":42.248},{"x":1754327822398,"y":51.085},{"x":1754327762261,"y":41.042},{"x":1754327702135,"y":38.699},{"x":1754327641995,"y":41.179},{"x":1754327581869,"y":59.726},{"x":1754327521749,"y":36.77},{"x":1754327461626,"y":39.065},{"x":1754327401483,"y":55.681},{"x":1754327341359,"y":34.012},{"x":1754327281229,"y":35.304},{"x":1754327221099,"y":40.183},{"x":1754327160937,"y":36.143},{"x":1754327100818,"y":41.842},{"x":1754327040699,"y":42.695},{"x":1754326980590,"y":49.92},{"x":1754326920457,"y":47.309},{"x":1754326860416,"y":51.725},{"x":1754326802994,"y":44.162},{"x":1754326742879,"y":40.819},{"x":1754326682734,"y":58.079},{"x":1754326622601,"y":50.096},{"x":1754326562480,"y":45.421},{"x":1754326502360,"y":43.739},{"x":1754326442236,"y":57.966},{"x":1754326382099,"y":39.958},{"x":1754326321965,"y":50.419},{"x":1754326261848,"y":36.512},{"x":1754326201738,"y":43.292},{"x":1754326141606,"y":46.333},{"x":1754326081478,"y":45.428},{"x":1754326021342,"y":49.643},{"x":1754325961215,"y":48.584},{"x":1754325901089,"y":64.578},{"x":1754325840922,"y":48.955},{"x":1754325780799,"y":46.598},{"x":1754325720672,"y":43.592},{"x":1754325660576,"y":45.371},{"x":1754325600454,"y":46.655},{"x":1754325540238,"y":50.963},{"x":1754325480104,"y":49.884},{"x":1754325422905,"y":49.357},{"x":1754325362776,"y":53.162},{"x":1754325302646,"y":51.35},{"x":1754325242510,"y":51.13},{"x":1754325182391,"y":48.215},{"x":1754325122260,"y":44.696},{"x":1754325062151,"y":43.224},{"x":1754325001994,"y":39.234},{"x":1754324941870,"y":36.952},{"x":1754324881750,"y":40.052},{"x":1754324821630,"y":37.24},{"x":1754324761494,"y":39.881},{"x":1754324701374,"y":48.25},{"x":1754324641237,"y":38.788},{"x":1754324581110,"y":40.826},{"x":1754324520978,"y":38.54},{"x":1754324460822,"y":32.318},{"x":1754324400719,"y":41.808},{"x":1754324340528,"y":37.896},{"x":1754324280372,"y":35.618},{"x":1754324220298,"y":33.976},{"x":1754324162906,"y":31.715},{"x":1754324102779,"y":35.726},{"x":1754324042654,"y":43.242},{"x":1754323982534,"y":42.75},{"x":1754323922414,"y":42.275},{"x":1754323862287,"y":41.916},{"x":1754323802157,"y":40.247},{"x":1754323742015,"y":31.861},{"x":1754323681876,"y":33.122},{"x":1754323621751,"y":31.564},{"x":1754323561621,"y":49.631},{"x":1754323501498,"y":36.86},{"x":1754323441368,"y":38.737},{"x":1754323381238,"y":35.104},{"x":1754323321093,"y":35.138},{"x":1754323260956,"y":38.741},{"x":1754323200949,"y":33.192},{"x":1754323140664,"y":39.49},{"x":1754323080559,"y":38.989},{"x":1754323020424,"y":33.744},{"x":1754322960251,"y":38.866},{"x":1754322902990,"y":37.788},{"x":1754322842847,"y":37.002},{"x":1754322782726,"y":37.879},{"x":1754322722606,"y":36.047},{"x":1754322662480,"y":44.491},{"x":1754322602352,"y":43.458},{"x":1754322542240,"y":39.728},{"x":1754322482098,"y":49.549},{"x":1754322421953,"y":51.697},{"x":1754322361824,"y":68.968},{"x":1754322301700,"y":63.662},{"x":1754322241565,"y":59.693},{"x":1754322181449,"y":50.641},{"x":1754322121318,"y":51.029},{"x":1754322061185,"y":38.168},{"x":1754322001090,"y":35.296},{"x":1754321940895,"y":31.649},{"x":1754321880758,"y":37.717},{"x":1754321820634,"y":42.68},{"x":1754321760520,"y":41.281},{"x":1754321700474,"y":38.476},{"x":1754321640239,"y":40.319},{"x":1754321582996,"y":44.458},{"x":1754321522878,"y":50.104},{"x":1754321462769,"y":51.018},{"x":1754321402650,"y":49.438},{"x":1754321342513,"y":44.719},{"x":1754321282376,"y":39.634},{"x":1754321222244,"y":33.445},{"x":1754321162109,"y":36.292},{"x":1754321101978,"y":38.638},{"x":1754321041840,"y":34.962},{"x":1754320981719,"y":40.846},{"x":1754320921606,"y":42.818},{"x":1754320861458,"y":37.921},{"x":1754320801320,"y":51.067},{"x":1754320741139,"y":48.122},{"x":1754320681022,"y":42.55},{"x":1754320620876,"y":43.327},{"x":1754320560753,"y":50.338},{"x":1754320500615,"y":33.088},{"x":1754320440422,"y":31.633},{"x":1754320380296,"y":36.389},{"x":1754320322982,"y":34.349},{"x":1754320262864,"y":36.816},{"x":1754320202720,"y":39.895},{"x":1754320142601,"y":48.196},{"x":1754320082469,"y":50.011},{"x":1754320022342,"y":48.792},{"x":1754319962220,"y":54.502},{"x":1754319902075,"y":55.133},{"x":1754319841945,"y":50.264},{"x":1754319781816,"y":45.433},{"x":1754319721735,"y":43.19},{"x":1754319661561,"y":49.154},{"x":1754319601555,"y":53.293},{"x":1754319541267,"y":43.868},{"x":1754319481114,"y":48.66},{"x":1754319420975,"y":42.786},{"x":1754319360832,"y":32.802},{"x":1754319300783,"y":32.621},{"x":1754319240523,"y":31.392},{"x":1754319180421,"y":32.659},{"x":1754319120268,"y":37.879},{"x":1754319062969,"y":38.129},{"x":1754319002846,"y":30.514},{"x":1754318942722,"y":36.746},{"x":1754318882595,"y":42.821},{"x":1754318822467,"y":45.104},{"x":1754318762349,"y":39.858},{"x":1754318702175,"y":41.466},{"x":1754318642040,"y":35.767},{"x":1754318581935,"y":30.221},{"x":1754318521777,"y":29.015},{"x":1754318461654,"y":26.588},{"x":1754318401523,"y":34.171},{"x":1754318341395,"y":42.991},{"x":1754318281269,"y":42.595},{"x":1754318221140,"y":41.16},{"x":1754318161003,"y":45.156},{"x":1754318100872,"y":50.892},{"x":1754318040727,"y":49.253},{"x":1754317980609,"y":36.922},{"x":1754317920568,"y":32.623},{"x":1754317860399,"y":39.994},{"x":1754317800299,"y":36.685},{"x":1754317742919,"y":36.943},{"x":1754317682782,"y":34.841},{"x":1754317622658,"y":37.159},{"x":1754317562538,"y":34.231},{"x":1754317502395,"y":35.161},{"x":1754317442288,"y":32.932},{"x":1754317382155,"y":38.232},{"x":1754317321986,"y":42.822},{"x":1754317261859,"y":40.456},{"x":1754317201693,"y":38.567},{"x":1754317141528,"y":39.594},{"x":1754317081414,"y":47.202},{"x":1754317021280,"y":53.002},{"x":1754316961142,"y":35.765},{"x":1754316901005,"y":35.731},{"x":1754316840853,"y":30.949},{"x":1754316780733,"y":34.121},{"x":1754316720624,"y":33.292},{"x":1754316660523,"y":44.202},{"x":1754316600402,"y":53.341},{"x":1754316540234,"y":53.156},{"x":1754316482932,"y":67.006},{"x":1754316422810,"y":48.724},{"x":1754316362685,"y":40.962},{"x":1754316302562,"y":30.948},{"x":1754316242449,"y":27.719},{"x":1754316182310,"y":37.501},{"x":1754316122186,"y":39.04},{"x":1754316062060,"y":35.977},{"x":1754316002071,"y":59.984},{"x":1754315941777,"y":48.314},{"x":1754315881655,"y":45.73},{"x":1754315821522,"y":48.132},{"x":1754315761389,"y":41.764},{"x":1754315701261,"y":44.744},{"x":1754315641118,"y":25.442},{"x":1754315580973,"y":36.389},{"x":1754315520857,"y":44.756},{"x":1754315460723,"y":37.933},{"x":1754315400664,"y":37.044},{"x":1754315340498,"y":41.538},{"x":1754315280348,"y":40.304},{"x":1754315222918,"y":32.764},{"x":1754315162833,"y":35.472},{"x":1754315102674,"y":41.198},{"x":1754315042551,"y":38.485},{"x":1754314982418,"y":33.94},{"x":1754314922302,"y":49.552},{"x":1754314862161,"y":42.88},{"x":1754314802011,"y":48.056},{"x":1754314741882,"y":47.134},{"x":1754314681758,"y":43.799},{"x":1754314621634,"y":43.517},{"x":1754314561498,"y":35.304},{"x":1754314501378,"y":37.549},{"x":1754314441250,"y":31.386},{"x":1754314381121,"y":32.477},{"x":1754314320976,"y":41.779},{"x":1754314260843,"y":40.411},{"x":1754314200789,"y":38.76},{"x":1754314140575,"y":31.746},{"x":1754314080507,"y":24.463},{"x":1754314020417,"y":27.848},{"x":1754313963016,"y":26.772},{"x":1754313902894,"y":29.375},{"x":1754313842757,"y":30.456},{"x":1754313782645,"y":26.761},{"x":1754313722488,"y":24.778},{"x":1754313662326,"y":27.655},{"x":1754313602181,"y":34.112},{"x":1754313542026,"y":25.546},{"x":1754313481899,"y":35.017},{"x":1754313421761,"y":36.293},{"x":1754313361636,"y":41.782},{"x":1754313301501,"y":37.556},{"x":1754313241374,"y":45.496},{"x":1754313181255,"y":61.451},{"x":1754313121123,"y":59.671},{"x":1754313060972,"y":65.969},{"x":1754313000842,"y":63.611},{"x":1754312940708,"y":57.409},{"x":1754312880602,"y":41.814},{"x":1754312820414,"y":41.91},{"x":1754312760381,"y":37.748},{"x":1754312700192,"y":37.804},{"x":1754312642926,"y":51.172},{"x":1754312582786,"y":46.139},{"x":1754312522661,"y":43.688},{"x":1754312462531,"y":51.098},{"x":1754312402467,"y":45.703},{"x":1754312342255,"y":37.301},{"x":1754312282130,"y":47.686},{"x":1754312221992,"y":38.443},{"x":1754312161863,"y":38.849},{"x":1754312101744,"y":49.625},{"x":1754312041614,"y":57.3},{"x":1754311981496,"y":54.271},{"x":1754311921377,"y":55.174},{"x":1754311861248,"y":56.435},{"x":1754311801136,"y":55.12},{"x":1754311740960,"y":45.254},{"x":1754311680844,"y":44.946},{"x":1754311620685,"y":57.08},{"x":1754311560588,"y":64.084},{"x":1754311500473,"y":77.857},{"x":1754311440308,"y":60.85},{"x":1754311382962,"y":57.526},{"x":1754311322837,"y":60.295},{"x":1754311262718,"y":55.118},{"x":1754311202594,"y":43.828},{"x":1754311142466,"y":46.408},{"x":1754311082346,"y":45.904},{"x":1754311022217,"y":48.562},{"x":1754310962086,"y":48.546},{"x":1754310901954,"y":59.141},{"x":1754310841818,"y":56.368},{"x":1754310781686,"y":49.934},{"x":1754310721560,"y":46.172},{"x":1754310661437,"y":48.545},{"x":1754310601346,"y":52.982},{"x":1754310541167,"y":37.979},{"x":1754310481033,"y":36.666},{"x":1754310420897,"y":38.318},{"x":1754310360773,"y":53.286},{"x":1754310300736,"y":63.589},{"x":1754310240482,"y":69.53},{"x":1754310180376,"y":66.542},{"x":1754310120114,"y":61.331},{"x":1754310062903,"y":51.594},{"x":1754310002730,"y":41.503},{"x":1754309942551,"y":41.098},{"x":1754309882426,"y":41.482},{"x":1754309822297,"y":52.792},{"x":1754309762161,"y":54.205},{"x":1754309702029,"y":53.159},{"x":1754309641893,"y":55.361},{"x":1754309581752,"y":51.654},{"x":1754309521622,"y":56.912},{"x":1754309461505,"y":46.934},{"x":1754309401358,"y":48.48},{"x":1754309341264,"y":50.0},{"x":1754309281100,"y":47.62},{"x":1754309220955,"y":47.119},{"x":1754309160808,"y":41.125},{"x":1754309100760,"y":45.317},{"x":1754309040528,"y":49.182},{"x":1754308980505,"y":67.849},{"x":1754308920308,"y":61.08},{"x":1754308860178,"y":56.822},{"x":1754308802903,"y":51.751},{"x":1754308742762,"y":49.435},{"x":1754308682612,"y":45.04},{"x":1754308622484,"y":47.766},{"x":1754308562350,"y":45.637},{"x":1754308502222,"y":47.734},{"x":1754308442100,"y":43.426},{"x":1754308381962,"y":45.007},{"x":1754308321829,"y":61.597},{"x":1754308261696,"y":45.076},{"x":1754308201578,"y":46.238},{"x":1754308141450,"y":44.36},{"x":1754308081321,"y":51.893},{"x":1754308021201,"y":44.032},{"x":1754307961068,"y":45.27},{"x":1754307900952,"y":56.129},{"x":1754307840789,"y":56.894},{"x":1754307780562,"y":67.829},{"x":1754307720528,"y":66.338},{"x":1754307660362,"y":76.474},{"x":1754307602954,"y":77.017},{"x":1754307542818,"y":53.198},{"x":1754307482697,"y":45.68},{"x":1754307422562,"y":47.95},{"x":1754307362429,"y":48.641},{"x":1754307302293,"y":33.914},{"x":1754307242163,"y":30.588},{"x":1754307182033,"y":45.102},{"x":1754307121897,"y":46.958},{"x":1754307061776,"y":61.427},{"x":1754307001674,"y":50.758},{"x":1754306941506,"y":51.756},{"x":1754306881384,"y":37.858},{"x":1754306821262,"y":41.964},{"x":1754306761135,"y":41.958},{"x":1754306700993,"y":43.37},{"x":1754306640867,"y":58.918},{"x":1754306580744,"y":55.404},{"x":1754306520675,"y":63.043},{"x":1754306460574,"y":55.6},{"x":1754306400293,"y":50.372},{"x":1754306342898,"y":54.631},{"x":1754306282766,"y":42.268},{"x":1754306222649,"y":37.885},{"x":1754306162496,"y":31.056},{"x":1754306102370,"y":27.643},{"x":1754306042244,"y":27.208},{"x":1754305982121,"y":23.987},{"x":1754305921985,"y":26.154},{"x":1754305861853,"y":28.584},{"x":1754305801728,"y":36.683},{"x":1754305741632,"y":52.123},{"x":1754305681472,"y":51.728},{"x":1754305621346,"y":49.483},{"x":1754305561223,"y":45.298},{"x":1754305501096,"y":33.073},{"x":1754305440933,"y":23.284},{"x":1754305380809,"y":25.243},{"x":1754305320682,"y":40.08},{"x":1754305260623,"y":51.403},{"x":1754305200656,"y":53.1},{"x":1754305140313,"y":53.825},{"x":1754305080182,"y":52.736},{"x":1754305022901,"y":52.934},{"x":1754304962765,"y":53.401},{"x":1754304902626,"y":47.555},{"x":1754304842496,"y":46.466},{"x":1754304782369,"y":25.684},{"x":1754304722239,"y":33.606},{"x":1754304662110,"y":44.332},{"x":1754304601982,"y":36.928},{"x":1754304541812,"y":35.755},{"x":1754304481692,"y":47.368},{"x":1754304421561,"y":44.141},{"x":1754304361436,"y":54.371},{"x":1754304301331,"y":38.213},{"x":1754304241174,"y":42.692},{"x":1754304181026,"y":31.193},{"x":1754304120897,"y":35.525},{"x":1754304060757,"y":33.095},{"x":1754304000795,"y":27.643},{"x":1754303940517,"y":17.486},{"x":1754303880411,"y":10.122},{"x":1754303820202,"y":15.372},{"x":1754303762923,"y":14.593},{"x":1754303702803,"y":19.531},{"x":1754303642675,"y":19.003},{"x":1754303582540,"y":37.559},{"x":1754303522418,"y":22.792},{"x":1754303462299,"y":21.143},{"x":1754303402158,"y":40.007},{"x":1754303342029,"y":40.691},{"x":1754303281887,"y":38.364},{"x":1754303221779,"y":38.344},{"x":1754303161642,"y":35.434},{"x":1754303101513,"y":21.896},{"x":1754303041385,"y":22.622},{"x":1754302981260,"y":30.446},{"x":1754302921155,"y":23.015},{"x":1754302860955,"y":29.701},{"x":1754302800944,"y":30.678},{"x":1754302740528,"y":31.634},{"x":1754302680381,"y":34.841},{"x":1754302620193,"y":33.084},{"x":1754302562950,"y":52.78},{"x":1754302502820,"y":46.264},{"x":1754302442683,"y":47.582},{"x":1754302382566,"y":48.56},{"x":1754302322430,"y":52.382},{"x":1754302262302,"y":38.005},{"x":1754302202173,"y":36.356},{"x":1754302142044,"y":32.558},{"x":1754302081893,"y":32.444},{"x":1754302021761,"y":33.073},{"x":1754301961633,"y":34.127},{"x":1754301901509,"y":33.744},{"x":1754301841385,"y":32.988},{"x":1754301781252,"y":28.148},{"x":1754301721118,"y":28.068},{"x":1754301660967,"y":30.863},{"x":1754301601035,"y":32.329},{"x":1754301540668,"y":24.732},{"x":1754301480620,"y":28.274},{"x":1754301420457,"y":36.126},{"x":1754301360367,"y":40.644},{"x":1754301303009,"y":31.937},{"x":1754301242882,"y":31.531},{"x":1754301182753,"y":35.441},{"x":1754301122626,"y":30.804},{"x":1754301062508,"y":39.088},{"x":1754301002362,"y":40.372},{"x":1754300942224,"y":37.71},{"x":1754300882097,"y":35.02},{"x":1754300821946,"y":39.409},{"x":1754300761795,"y":31.48},{"x":1754300701695,"y":26.881},{"x":1754300641541,"y":37.367},{"x":1754300581424,"y":55.366},{"x":1754300521289,"y":51.355},{"x":1754300461169,"y":63.479},{"x":1754300400996,"y":67.303},{"x":1754300340768,"y":66.066},{"x":1754300280640,"y":42.611},{"x":1754300220508,"y":47.042},{"x":1754300160391,"y":33.755},{"x":1754300100256,"y":27.876},{"x":1754300042914,"y":31.103},{"x":1754299982790,"y":29.184},{"x":1754299922649,"y":34.105},{"x":1754299862526,"y":27.326},{"x":1754299802394,"y":43.099},{"x":1754299742269,"y":28.721},{"x":1754299682145,"y":32.374},{"x":1754299621996,"y":31.198},{"x":1754299561870,"y":25.169},{"x":1754299501744,"y":19.274},{"x":1754299441610,"y":15.493},{"x":1754299381479,"y":15.896},{"x":1754299321340,"y":19.081},{"x":1754299261196,"y":23.91},{"x":1754299201025,"y":32.449},{"x":1754299140895,"y":17.06},{"x":1754299080808,"y":19.373},{"x":1754299020804,"y":18.965},{"x":1754298960649,"y":20.501},{"x":1754298900335,"y":15.332},{"x":1754298840198,"y":21.686},{"x":1754298782924,"y":16.339},{"x":1754298722824,"y":16.04},{"x":1754298662671,"y":19.877},{"x":1754298602546,"y":25.811},{"x":1754298542426,"y":25.339},{"x":1754298482298,"y":23.808},{"x":1754298422180,"y":24.647},{"x":1754298362057,"y":21.055},{"x":1754298301903,"y":22.914},{"x":1754298241759,"y":23.467},{"x":1754298181642,"y":22.969},{"x":1754298121507,"y":33.233},{"x":1754298061387,"y":29.978},{"x":1754298001473,"y":30.424},{"x":1754297941064,"y":36.125},{"x":1754297880929,"y":30.468},{"x":1754297820803,"y":32.935},{"x":1754297760718,"y":32.134},{"x":1754297700592,"y":27.491},{"x":1754297640501,"y":28.639},{"x":1754297580213,"y":42.294},{"x":1754297522963,"y":32.927},{"x":1754297462829,"y":26.569},{"x":1754297402715,"y":25.147},{"x":1754297342584,"y":17.69},{"x":1754297282450,"y":21.012},{"x":1754297222323,"y":37.062},{"x":1754297162190,"y":31.367},{"x":1754297102072,"y":32.8},{"x":1754297041884,"y":31.457},{"x":1754296981699,"y":38.442},{"x":1754296921564,"y":46.422},{"x":1754296861436,"y":37.21},{"x":1754296801319,"y":57.313},{"x":1754296741179,"y":59.182},{"x":1754296681060,"y":60.194},{"x":1754296620866,"y":62.446},{"x":1754296560729,"y":41.296},{"x":1754296500610,"y":24.185},{"x":1754296440515,"y":27.323},{"x":1754296380268,"y":27.594},{"x":1754296323006,"y":23.998},{"x":1754296262879,"y":21.504},{"x":1754296202754,"y":27.329},{"x":1754296142615,"y":27.707},{"x":1754296082495,"y":30.334},{"x":1754296022369,"y":29.932},{"x":1754295962236,"y":29.137},{"x":1754295902106,"y":26.762},{"x":1754295841967,"y":28.495},{"x":1754295781856,"y":40.722},{"x":1754295721701,"y":45.47},{"x":1754295661529,"y":56.987},{"x":1754295601382,"y":52.792},{"x":1754295541117,"y":51.084},{"x":1754295480972,"y":34.231},{"x":1754295420853,"y":35.374},{"x":1754295360738,"y":42.295},{"x":1754295300612,"y":43.376},{"x":1754295240463,"y":41.094},{"x":1754295180272,"y":35.672},{"x":1754295122972,"y":29.244},{"x":1754295062842,"y":32.8},{"x":1754295002716,"y":29.156},{"x":1754294942585,"y":50.771},{"x":1754294882458,"y":49.552},{"x":1754294822333,"y":44.78},{"x":1754294762207,"y":51.821},{"x":1754294702082,"y":48.648},{"x":1754294641911,"y":39.107},{"x":1754294581782,"y":31.864},{"x":1754294521650,"y":30.364},{"x":1754294461530,"y":29.432},{"x":1754294401411,"y":31.588},{"x":1754294341237,"y":29.083},{"x":1754294281101,"y":29.356},{"x":1754294220965,"y":33.832},{"x":1754294160836,"y":27.815},{"x":1754294100754,"y":33.41},{"x":1754294040616,"y":35.702},{"x":1754293980501,"y":42.289},{"x":1754293920288,"y":34.586},{"x":1754293863017,"y":30.294},{"x":1754293802884,"y":31.09},{"x":1754293742758,"y":22.982},{"x":1754293682628,"y":32.792},{"x":1754293622524,"y":42.404},{"x":1754293562393,"y":34.6},{"x":1754293502252,"y":68.556},{"x":1754293442106,"y":58.477},{"x":1754293381962,"y":60.894},{"x":1754293321828,"y":49.566},{"x":1754293261693,"y":52.007},{"x":1754293201572,"y":32.231},{"x":1754293141451,"y":28.562},{"x":1754293081332,"y":25.986},{"x":1754293021189,"y":42.208},{"x":1754292961048,"y":33.458},{"x":1754292900956,"y":29.186},{"x":1754292840744,"y":28.806},{"x":1754292780634,"y":27.862},{"x":1754292720516,"y":30.438},{"x":1754292660452,"y":34.637},{"x":1754292600307,"y":33.719},{"x":1754292542969,"y":33.757},{"x":1754292482844,"y":35.558},{"x":1754292422730,"y":35.256},{"x":1754292362594,"y":39.817},{"x":1754292302471,"y":37.177},{"x":1754292242348,"y":58.033},{"x":1754292182222,"y":63.122},{"x":1754292122108,"y":61.457},{"x":1754292061933,"y":57.442},{"x":1754292001810,"y":56.608},{"x":1754291941598,"y":42.19},{"x":1754291881477,"y":42.14},{"x":1754291821355,"y":44.155},{"x":1754291761224,"y":41.986},{"x":1754291701117,"y":39.023},{"x":1754291640943,"y":38.819},{"x":1754291580820,"y":40.536},{"x":1754291520729,"y":32.107},{"x":1754291460585,"y":34.193},{"x":1754291400452,"y":39.456},{"x":1754291340305,"y":38.752},{"x":1754291280126,"y":40.416},{"x":1754291222890,"y":57.138},{"x":1754291162769,"y":60.839},{"x":1754291102629,"y":56.185},{"x":1754291042512,"y":58.361},{"x":1754290982378,"y":68.79},{"x":1754290922256,"y":45.836},{"x":1754290862115,"y":48.668},{"x":1754290802048,"y":42.691},{"x":1754290741820,"y":60.808},{"x":1754290681681,"y":57.169},{"x":1754290621559,"y":60.557},{"x":1754290561446,"y":66.991},{"x":1754290501306,"y":65.808},{"x":1754290441184,"y":84.464},{"x":1754290381055,"y":81.018},{"x":1754290320931,"y":81.1},{"x":1754290260800,"y":85.592},{"x":1754290200722,"y":80.182},{"x":1754290140505,"y":49.777},{"x":1754290080345,"y":46.819},{"x":1754290020187,"y":46.89},{"x":1754289962894,"y":47.288},{"x":1754289902773,"y":54.194},{"x":1754289842646,"y":51.155},{"x":1754289782520,"y":52.57},{"x":1754289722397,"y":50.498},{"x":1754289662272,"y":56.387},{"x":1754289602134,"y":51.511},{"x":1754289541995,"y":51.09},{"x":1754289481865,"y":52.163},{"x":1754289421745,"y":52.606},{"x":1754289361612,"y":48.068},{"x":1754289301478,"y":47.332},{"x":1754289241352,"y":47.575},{"x":1754289181230,"y":47.468},{"x":1754289121102,"y":48.709},{"x":1754289060944,"y":50.573},{"x":1754289000825,"y":51.924},{"x":1754288940647,"y":85.037},{"x":1754288880533,"y":75.233},{"x":1754288820375,"y":75.074},{"x":1754288760223,"y":79.337},{"x":1754288702971,"y":84.995},{"x":1754288642836,"y":57.691},{"x":1754288582711,"y":55.259},{"x":1754288522577,"y":51.835},{"x":1754288462429,"y":85.456},{"x":1754288402212,"y":69.17},{"x":1754288342038,"y":86.148},{"x":1754288281901,"y":74.507},{"x":1754288221770,"y":80.201},{"x":1754288161645,"y":48.21},{"x":1754288101535,"y":59.609},{"x":1754288041388,"y":48.851},{"x":1754287981249,"y":62.138},{"x":1754287921108,"y":61.855},{"x":1754287860975,"y":63.278},{"x":1754287800891,"y":79.818},{"x":1754287740713,"y":84.769},{"x":1754287680579,"y":78.138},{"x":1754287620558,"y":47.574},{"x":1754287560354,"y":47.838},{"x":1754287500118,"y":48.541},{"x":1754287442905,"y":49.76},{"x":1754287382771,"y":47.982},{"x":1754287322653,"y":52.321},{"x":1754287262511,"y":50.749},{"x":1754287202399,"y":52.331},{"x":1754287142262,"y":51.18},{"x":1754287082133,"y":52.049},{"x":1754287021921,"y":47.07},{"x":1754286961799,"y":44.29},{"x":1754286901672,"y":64.633},{"x":1754286841548,"y":75.098},{"x":1754286781428,"y":71.405},{"x":1754286721309,"y":69.228},{"x":1754286661159,"y":67.573},{"x":1754286601017,"y":68.89},{"x":1754286540883,"y":69.067},{"x":1754286480768,"y":73.493},{"x":1754286420658,"y":71.892},{"x":1754286360531,"y":72.919},{"x":1754286300440,"y":75.672},{"x":1754286240296,"y":81.655},{"x":1754286182961,"y":87.588},{"x":1754286122830,"y":74.404},{"x":1754286062720,"y":73.104},{"x":1754286002580,"y":68.28},{"x":1754285942446,"y":61.199},{"x":1754285882324,"y":46.63},{"x":1754285822199,"y":45.637},{"x":1754285762078,"y":56.225},{"x":1754285701925,"y":56.279},{"x":1754285641781,"y":57.322},{"x":1754285581627,"y":54.839},{"x":1754285521496,"y":50.23},{"x":1754285461372,"y":44.608},{"x":1754285401276,"y":46.656},{"x":1754285341103,"y":46.562},{"x":1754285280943,"y":48.9},{"x":1754285220813,"y":49.033},{"x":1754285160697,"y":46.669},{"x":1754285100636,"y":56.071},{"x":1754285040527,"y":56.578},{"x":1754284980260,"y":44.513},{"x":1754284923006,"y":49.424},{"x":1754284862804,"y":42.208},{"x":1754284802653,"y":34.878},{"x":1754284742505,"y":35.852},{"x":1754284682375,"y":36.866},{"x":1754284622261,"y":32.35},{"x":1754284562122,"y":44.454},{"x":1754284501967,"y":42.79},{"x":1754284441841,"y":41.628},{"x":1754284381714,"y":42.215},{"x":1754284321576,"y":44.024},{"x":1754284261449,"y":40.822},{"x":1754284201328,"y":33.794},{"x":1754284141198,"y":34.787},{"x":1754284081068,"y":33.968},{"x":1754284020938,"y":32.794},{"x":1754283960817,"y":35.141},{"x":1754283900703,"y":31.85},{"x":1754283840626,"y":29.684},{"x":1754283780442,"y":44.585},{"x":1754283720304,"y":44.49},{"x":1754283662970,"y":42.908},{"x":1754283602854,"y":44.194},{"x":1754283542715,"y":46.804},{"x":1754283482591,"y":44.732},{"x":1754283422473,"y":32.371},{"x":1754283362345,"y":30.184},{"x":1754283302214,"y":40.255},{"x":1754283242092,"y":33.959},{"x":1754283181940,"y":34.655},{"x":1754283121812,"y":33.46},{"x":1754283061685,"y":59.477},{"x":1754283001563,"y":63.448},{"x":1754282941432,"y":59.304},{"x":1754282881296,"y":60.337},{"x":1754282821131,"y":68.275},{"x":1754282760983,"y":42.263},{"x":1754282700916,"y":40.734},{"x":1754282640766,"y":36.077},{"x":1754282580585,"y":38.006},{"x":1754282520491,"y":36.646},{"x":1754282460335,"y":36.656},{"x":1754282400249,"y":35.563},{"x":1754282342935,"y":45.491},{"x":1754282282800,"y":48.671},{"x":1754282222681,"y":47.448},{"x":1754282162558,"y":45.695},{"x":1754282102446,"y":44.011},{"x":1754282042303,"y":40.862},{"x":1754281982185,"y":34.649},{"x":1754281922050,"y":32.593},{"x":1754281861896,"y":33.744},{"x":1754281801775,"y":30.863},{"x":1754281741651,"y":34.961},{"x":1754281681533,"y":30.37},{"x":1754281621411,"y":31.014},{"x":1754281561295,"y":32.032},{"x":1754281501165,"y":31.908},{"x":1754281441014,"y":34.502},{"x":1754281380876,"y":32.321},{"x":1754281320734,"y":42.012},{"x":1754281260577,"y":42.545},{"x":1754281200420,"y":45.45},{"x":1754281140234,"y":45.259},{"x":1754281082990,"y":48.509},{"x":1754281022850,"y":36.218},{"x":1754280962715,"y":33.686},{"x":1754280902597,"y":34.228},{"x":1754280842471,"y":43.848},{"x":1754280782359,"y":48.016},{"x":1754280722226,"y":41.965},{"x":1754280662101,"y":41.032},{"x":1754280601954,"y":54.943},{"x":1754280541812,"y":54.751},{"x":1754280481688,"y":52.708},{"x":1754280421553,"y":48.098},{"x":1754280361433,"y":37.702},{"x":1754280301303,"y":32.345},{"x":1754280241186,"y":33.733},{"x":1754280181056,"y":34.366},{"x":1754280120913,"y":31.276},{"x":1754280060783,"y":34.889},{"x":1754280001065,"y":32.095},{"x":1754279940433,"y":34.974},{"x":1754279880387,"y":36.515},{"x":1754279820128,"y":40.324},{"x":1754279762909,"y":31.961},{"x":1754279702781,"y":30.568},{"x":1754279642657,"y":29.587},{"x":1754279582537,"y":25.727},{"x":1754279522416,"y":30.75},{"x":1754279462297,"y":35.014},{"x":1754279402180,"y":34.019},{"x":1754279342039,"y":34.783},{"x":1754279281913,"y":33.08},{"x":1754279221790,"y":33.066},{"x":1754279161667,"y":34.518},{"x":1754279101549,"y":32.322},{"x":1754279041424,"y":32.56},{"x":1754278981309,"y":32.318},{"x":1754278921176,"y":31.89},{"x":1754278861036,"y":35.869},{"x":1754278800962,"y":32.66},{"x":1754278740765,"y":34.205},{"x":1754278680642,"y":33.887},{"x":1754278620532,"y":34.514},{"x":1754278560410,"y":32.85},{"x":1754278500289,"y":35.975},{"x":1754278442937,"y":35.424},{"x":1754278382818,"y":34.49},{"x":1754278322693,"y":32.592},{"x":1754278262572,"y":33.8},{"x":1754278202448,"y":34.93},{"x":1754278142329,"y":35.269},{"x":1754278082197,"y":34.277},{"x":1754278022074,"y":32.213},{"x":1754277961933,"y":32.178},{"x":1754277901806,"y":34.202},{"x":1754277841676,"y":38.071},{"x":1754277781548,"y":33.848},{"x":1754277721387,"y":45.373},{"x":1754277661216,"y":41.191},{"x":1754277601070,"y":39.485},{"x":1754277540914,"y":36.384},{"x":1754277480789,"y":33.618},{"x":1754277420711,"y":33.571},{"x":1754277360553,"y":31.207},{"x":1754277300428,"y":30.733},{"x":1754277240278,"y":31.087},{"x":1754277182975,"y":48.978},{"x":1754277122849,"y":55.094},{"x":1754277062726,"y":55.524},{"x":1754277002610,"y":56.191},{"x":1754276942516,"y":56.906},{"x":1754276882344,"y":48.156},{"x":1754276822226,"y":32.257},{"x":1754276762093,"y":31.745},{"x":1754276701951,"y":31.003},{"x":1754276641812,"y":31.355},{"x":1754276582839,"y":30.686},{"x":1754276522666,"y":31.844},{"x":1754276462529,"y":32.766},{"x":1754276402783,"y":38.426},{"x":1754276340452,"y":38.842},{"x":1754276280267,"y":37.782},{"x":1754276220164,"y":42.162},{"x":1754276162898,"y":35.206},{"x":1754276102773,"y":59.178},{"x":1754276042664,"y":56.98},{"x":1754275982524,"y":56.429},{"x":1754275922415,"y":64.422},{"x":1754275862272,"y":59.089},{"x":1754275802146,"y":38.776},{"x":1754275742012,"y":50.8},{"x":1754275681884,"y":49.844},{"x":1754275621760,"y":47.918},{"x":1754275561636,"y":41.902},{"x":1754275501509,"y":41.887},{"x":1754275441391,"y":31.206},{"x":1754275381253,"y":31.55},{"x":1754275321126,"y":34.216},{"x":1754275260982,"y":36.786},{"x":1754275200956,"y":31.512},{"x":1754275140707,"y":36.042},{"x":1754275080596,"y":35.653},{"x":1754275020475,"y":37.362},{"x":1754274960409,"y":41.418},{"x":1754274900130,"y":34.909},{"x":1754274842922,"y":31.229},{"x":1754274782802,"y":33.241},{"x":1754274722660,"y":40.776},{"x":1754274662532,"y":40.942},{"x":1754274602406,"y":38.092},{"x":1754274542290,"y":38.934},{"x":1754274482165,"y":36.288},{"x":1754274422033,"y":31.957},{"x":1754274361885,"y":33.469},{"x":1754274301771,"y":38.092},{"x":1754274241628,"y":36.468},{"x":1754274181505,"y":33.797},{"x":1754274121381,"y":35.401},{"x":1754274061231,"y":32.54},{"x":1754274001084,"y":43.249},{"x":1754273940905,"y":55.888},{"x":1754273880783,"y":55.112},{"x":1754273820689,"y":52.195},{"x":1754273760584,"y":50.485},{"x":1754273700371,"y":52.681},{"x":1754273642965,"y":32.363},{"x":1754273582834,"y":32.4},{"x":1754273522713,"y":32.858},{"x":1754273462560,"y":32.254},{"x":1754273402435,"y":36.991},{"x":1754273342311,"y":64.586},{"x":1754273282191,"y":60.266},{"x":1754273221978,"y":59.026},{"x":1754273161858,"y":56.764},{"x":1754273101741,"y":60.608},{"x":1754273041604,"y":42.974},{"x":1754272981485,"y":35.771},{"x":1754272921362,"y":36.906},{"x":1754272861251,"y":37.964},{"x":1754272801021,"y":37.132},{"x":1754272740733,"y":40.232},{"x":1754272680632,"y":35.24},{"x":1754272620578,"y":35.48},{"x":1754272560426,"y":33.217},{"x":1754272500224,"y":35.407},{"x":1754272442979,"y":36.238},{"x":1754272382865,"y":34.723},{"x":1754272322743,"y":35.624},{"x":1754272262617,"y":34.054},{"x":1754272202486,"y":34.811},{"x":1754272142370,"y":33.126},{"x":1754272082239,"y":36.023},{"x":1754272022115,"y":32.862},{"x":1754271961988,"y":42.238},{"x":1754271901868,"y":50.489},{"x":1754271841741,"y":48.468},{"x":1754271781611,"y":49.314},{"x":1754271721488,"y":44.245},{"x":1754271661358,"y":47.32},{"x":1754271601233,"y":36.934},{"x":1754271541096,"y":34.668},{"x":1754271480947,"y":35.167},{"x":1754271420816,"y":36.296},{"x":1754271360747,"y":35.237},{"x":1754271300645,"y":31.554},{"x":1754271240459,"y":29.87},{"x":1754271180310,"y":31.49},{"x":1754271120172,"y":31.984},{"x":1754271062914,"y":32.374},{"x":1754271002790,"y":36.694},{"x":1754270942664,"y":33.037},{"x":1754270882531,"y":32.6},{"x":1754270822408,"y":37.722},{"x":1754270762289,"y":31.206},{"x":1754270702164,"y":31.626},{"x":1754270642027,"y":30.799},{"x":1754270581880,"y":39.443},{"x":1754270521789,"y":42.058},{"x":1754270461590,"y":35.741},{"x":1754270401392,"y":32.48},{"x":1754270341242,"y":32.863},{"x":1754270281108,"y":33.266},{"x":1754270220962,"y":33.875},{"x":1754270160839,"y":33.77},{"x":1754270100742,"y":34.11},{"x":1754270040596,"y":32.292},{"x":1754269980500,"y":43.824},{"x":1754269920390,"y":51.857},{"x":1754269860227,"y":53.898},{"x":1754269802916,"y":47.594},{"x":1754269742790,"y":48.475},{"x":1754269682668,"y":36.506},{"x":1754269622544,"y":35.146},{"x":1754269562417,"y":39.046},{"x":1754269502288,"y":33.631},{"x":1754269442162,"y":33.392},{"x":1754269382029,"y":34.981},{"x":1754269321880,"y":32.118},{"x":1754269261762,"y":32.962},{"x":1754269201691,"y":33.372},{"x":1754269141455,"y":35.87},{"x":1754269081335,"y":34.42},{"x":1754269021179,"y":36.01},{"x":1754268961056,"y":35.909},{"x":1754268900942,"y":36.989},{"x":1754268840792,"y":36.224},{"x":1754268780673,"y":44.186},{"x":1754268720560,"y":46.628},{"x":1754268660419,"y":44.384},{"x":1754268600252,"y":51.704},{"x":1754268542954,"y":43.116},{"x":1754268482833,"y":32.347},{"x":1754268422700,"y":32.396},{"x":1754268362577,"y":33.574},{"x":1754268302449,"y":31.499},{"x":1754268242323,"y":29.92},{"x":1754268182193,"y":30.194},{"x":1754268122062,"y":31.589},{"x":1754268061929,"y":33.452},{"x":1754268001808,"y":38.312},{"x":1754267941669,"y":41.827},{"x":1754267881569,"y":36.284},{"x":1754267821416,"y":33.222},{"x":1754267761293,"y":36.701},{"x":1754267701142,"y":40.594},{"x":1754267640999,"y":43.674},{"x":1754267580856,"y":42.179},{"x":1754267520743,"y":41.141},{"x":1754267460628,"y":35.138},{"x":1754267400545,"y":31.681},{"x":1754267340368,"y":32.683},{"x":1754267280264,"y":33.523},{"x":1754267223004,"y":32.743},{"x":1754267162878,"y":31.978},{"x":1754267102752,"y":31.127},{"x":1754267042619,"y":30.611},{"x":1754266982491,"y":31.714},{"x":1754266922367,"y":30.264},{"x":1754266862222,"y":42.071},{"x":1754266802009,"y":50.453},{"x":1754266741847,"y":52.967},{"x":1754266681719,"y":56.609},{"x":1754266621522,"y":46.856},{"x":1754266561385,"y":34.681},{"x":1754266501262,"y":30.109},{"x":1754266441124,"y":29.945},{"x":1754266380983,"y":34.782},{"x":1754266320981,"y":31.942},{"x":1754266260762,"y":30.476},{"x":1754266200801,"y":30.965},{"x":1754266140806,"y":34.385},{"x":1754266080356,"y":40.219},{"x":1754266023018,"y":35.954},{"x":1754265962881,"y":37.211},{"x":1754265902771,"y":35.075},{"x":1754265842631,"y":34.306},{"x":1754265782507,"y":32.755},{"x":1754265722376,"y":32.179},{"x":1754265662265,"y":31.132},{"x":1754265602166,"y":27.968},{"x":1754265541944,"y":31.246},{"x":1754265481821,"y":31.955},{"x":1754265421691,"y":31.354},{"x":1754265361564,"y":36.527},{"x":1754265301436,"y":31.672},{"x":1754265241308,"y":31.103},{"x":1754265181178,"y":31.712},{"x":1754265121051,"y":36.569},{"x":1754265060911,"y":31.843},{"x":1754265000786,"y":33.558},{"x":1754264940658,"y":35.294},{"x":1754264880556,"y":34.033},{"x":1754264820409,"y":35.347},{"x":1754264760239,"y":34.3},{"x":1754264703002,"y":33.56},{"x":1754264642877,"y":35.8},{"x":1754264582756,"y":38.044},{"x":1754264522632,"y":37.88},{"x":1754264462482,"y":34.861},{"x":1754264402363,"y":33.65},{"x":1754264342238,"y":32.448},{"x":1754264282105,"y":34.966},{"x":1754264221972,"y":35.202},{"x":1754264161841,"y":36.868},{"x":1754264101718,"y":37.873},{"x":1754264041591,"y":31.424},{"x":1754263981453,"y":30.764},{"x":1754263921330,"y":33.614},{"x":1754263861206,"y":34.325},{"x":1754263801109,"y":39.768},{"x":1754263740931,"y":34.36},{"x":1754263680804,"y":38.357},{"x":1754263620692,"y":38.728},{"x":1754263560553,"y":38.957},{"x":1754263500541,"y":40.062},{"x":1754263440321,"y":36.566},{"x":1754263382993,"y":36.755},{"x":1754263322872,"y":33.253},{"x":1754263262731,"y":32.86},{"x":1754263202582,"y":31.831},{"x":1754263142417,"y":34.643},{"x":1754263082282,"y":31.091},{"x":1754263022156,"y":30.631},{"x":1754262962014,"y":32.545},{"x":1754262901877,"y":40.084},{"x":1754262841750,"y":46.003},{"x":1754262781622,"y":40.912},{"x":1754262721495,"y":39.804},{"x":1754262661355,"y":34.892},{"x":1754262601241,"y":32.165},{"x":1754262541112,"y":33.706},{"x":1754262480964,"y":33.902},{"x":1754262420833,"y":33.188},{"x":1754262360707,"y":33.19},{"x":1754262300592,"y":39.942},{"x":1754262240463,"y":37.986},{"x":1754262180334,"y":40.225},{"x":1754262122999,"y":36.96},{"x":1754262062880,"y":38.088},{"x":1754262002754,"y":37.991},{"x":1754261942609,"y":36.817},{"x":1754261882483,"y":41.4},{"x":1754261822368,"y":35.176},{"x":1754261762225,"y":38.911},{"x":1754261702097,"y":37.516},{"x":1754261641961,"y":37.442},{"x":1754261581833,"y":42.18},{"x":1754261521710,"y":35.31},{"x":1754261461580,"y":39.336},{"x":1754261401457,"y":39.173},{"x":1754261341335,"y":38.585},{"x":1754261281213,"y":45.301},{"x":1754261221088,"y":40.427},{"x":1754261160941,"y":43.82},{"x":1754261100891,"y":40.931},{"x":1754261040690,"y":40.802},{"x":1754260980531,"y":41.542},{"x":1754260920361,"y":40.003},{"x":1754260860224,"y":39.892},{"x":1754260802962,"y":36.52},{"x":1754260742841,"y":34.97},{"x":1754260682715,"y":35.683},{"x":1754260622591,"y":37.174},{"x":1754260562459,"y":37.626},{"x":1754260502352,"y":38.258},{"x":1754260442226,"y":36.059},{"x":1754260382103,"y":37.177},{"x":1754260321962,"y":45.191},{"x":1754260261842,"y":40.772},{"x":1754260201714,"y":43.218},{"x":1754260141590,"y":40.769},{"x":1754260081461,"y":35.41},{"x":1754260021346,"y":45.302},{"x":1754259961223,"y":39.097},{"x":1754259901098,"y":39.547},{"x":1754259840947,"y":38.472},{"x":1754259780823,"y":38.406},{"x":1754259720703,"y":42.611},{"x":1754259660588,"y":40.216},{"x":1754259600467,"y":41.707},{"x":1754259540363,"y":39.27},{"x":1754259483029,"y":39.192},{"x":1754259422894,"y":39.676},{"x":1754259362762,"y":37.662},{"x":1754259302635,"y":39.173},{"x":1754259242511,"y":34.234},{"x":1754259182388,"y":33.398},{"x":1754259122272,"y":36.18},{"x":1754259062129,"y":39.396},{"x":1754259001995,"y":39.366},{"x":1754258941856,"y":37.853},{"x":1754258881732,"y":48.204},{"x":1754258821598,"y":45.721},{"x":1754258761466,"y":43.49},{"x":1754258701346,"y":43.235},{"x":1754258641226,"y":42.336},{"x":1754258581102,"y":39.364},{"x":1754258520948,"y":40.328},{"x":1754258460818,"y":44.454},{"x":1754258400985,"y":42.29},{"x":1754258340512,"y":38.01},{"x":1754258280417,"y":39.346},{"x":1754258220292,"y":39.643},{"x":1754258162997,"y":44.976},{"x":1754258102871,"y":43.044},{"x":1754258042741,"y":40.655},{"x":1754257982622,"y":38.822},{"x":1754257922493,"y":36.137},{"x":1754257862368,"y":40.859},{"x":1754257802245,"y":36.199},{"x":1754257742120,"y":37.99},{"x":1754257681974,"y":37.746},{"x":1754257621865,"y":39.031},{"x":1754257561727,"y":47.846},{"x":1754257501599,"y":40.489},{"x":1754257441466,"y":40.415},{"x":1754257381340,"y":41.842},{"x":1754257321218,"y":39.989},{"x":1754257261090,"y":42.401},{"x":1754257200956,"y":37.646},{"x":1754257140814,"y":40.063},{"x":1754257080692,"y":37.724},{"x":1754257020596,"y":34.411},{"x":1754256960542,"y":43.218},{"x":1754256900341,"y":42.173},{"x":1754256842991,"y":40.164},{"x":1754256782863,"y":42.325},{"x":1754256722741,"y":42.874},{"x":1754256662618,"y":46.454},{"x":1754256602488,"y":41.86},{"x":1754256542363,"y":41.466},{"x":1754256482238,"y":38.441},{"x":1754256422092,"y":34.105},{"x":1754256361951,"y":41.917},{"x":1754256301818,"y":39.821},{"x":1754256241690,"y":39.872},{"x":1754256181562,"y":43.36},{"x":1754256121453,"y":44.332},{"x":1754256061273,"y":44.306},{"x":1754256001142,"y":40.159},{"x":1754255940935,"y":39.676},{"x":1754255880800,"y":38.238},{"x":1754255820693,"y":40.208},{"x":1754255760587,"y":44.456},{"x":1754255700449,"y":41.396},{"x":1754255640329,"y":41.063},{"x":1754255580167,"y":44.66},{"x":1754255522900,"y":43.307},{"x":1754255462765,"y":45.649},{"x":1754255402642,"y":41.233},{"x":1754255342513,"y":38.165},{"x":1754255282401,"y":37.842},{"x":1754255222260,"y":47.594},{"x":1754255162138,"y":50.335},{"x":1754255101998,"y":43.536},{"x":1754255041874,"y":42.02},{"x":1754254981751,"y":38.94},{"x":1754254921614,"y":41.593},{"x":1754254861493,"y":49.232},{"x":1754254801468,"y":43.856},{"x":1754254741201,"y":42.024},{"x":1754254681044,"y":38.479},{"x":1754254620920,"y":37.634},{"x":1754254560790,"y":37.357},{"x":1754254500715,"y":38.288},{"x":1754254440542,"y":39.403},{"x":1754254380383,"y":47.452},{"x":1754254320177,"y":60.11},{"x":1754254262964,"y":59.066},{"x":1754254202836,"y":58.739},{"x":1754254142711,"y":56.696},{"x":1754254082579,"y":56.06},{"x":1754254022455,"y":46.064},{"x":1754253962325,"y":45.655},{"x":1754253902199,"y":48.396},{"x":1754253842075,"y":62.4},{"x":1754253781943,"y":61.919},{"x":1754253721820,"y":80.942},{"x":1754253661694,"y":78.484},{"x":1754253601568,"y":74.118},{"x":1754253541428,"y":67.926},{"x":1754253481301,"y":63.815},{"x":1754253421181,"y":55.558},{"x":1754253361043,"y":50.656},{"x":1754253300904,"y":52.752},{"x":1754253240766,"y":53.982},{"x":1754253180648,"y":52.968},{"x":1754253120559,"y":56.056},{"x":1754253060361,"y":55.681},{"x":1754253000336,"y":52.82},{"x":1754252942986,"y":51.055},{"x":1754252882860,"y":40.306},{"x":1754252822743,"y":42.707},{"x":1754252762617,"y":39.558},{"x":1754252702493,"y":38.695},{"x":1754252642367,"y":42.414},{"x":1754252582246,"y":45.692},{"x":1754252522119,"y":46.956},{"x":1754252461945,"y":48.554},{"x":1754252401879,"y":51.769},{"x":1754252341773,"y":63.666},{"x":1754252281524,"y":59.101},{"x":1754252221407,"y":56.593},{"x":1754252161282,"y":56.047},{"x":1754252101133,"y":55.801},{"x":1754252040956,"y":46.229},{"x":1754251980833,"y":54.775},{"x":1754251920750,"y":50.251},{"x":1754251860605,"y":50.957},{"x":1754251800582,"y":50.76},{"x":1754251740240,"y":54.602},{"x":1754251682996,"y":52.612},{"x":1754251622876,"y":49.156},{"x":1754251562753,"y":51.137},{"x":1754251502629,"y":49.87},{"x":1754251442499,"y":47.309},{"x":1754251382360,"y":48.059},{"x":1754251322238,"y":49.694},{"x":1754251262091,"y":49.338},{"x":1754251202007,"y":47.285},{"x":1754251141799,"y":66.514},{"x":1754251081674,"y":46.884},{"x":1754251021553,"y":48.998},{"x":1754250961430,"y":49.294},{"x":1754250901299,"y":50.468},{"x":1754250841171,"y":52.751},{"x":1754250781020,"y":53.484},{"x":1754250720902,"y":80.878},{"x":1754250660757,"y":84.725},{"x":1754250600666,"y":79.642},{"x":1754250540560,"y":83.4},{"x":1754250480422,"y":75.162},{"x":1754250420213,"y":48.39},{"x":1754250360036,"y":50.149},{"x":1754250302904,"y":58.014},{"x":1754250242780,"y":51.142},{"x":1754250182666,"y":58.849},{"x":1754250122534,"y":54.149},{"x":1754250062410,"y":77.198},{"x":1754250002289,"y":70.33},{"x":1754249942169,"y":70.366},{"x":1754249882041,"y":87.534},{"x":1754249821901,"y":47.429},{"x":1754249761747,"y":47.759},{"x":1754249701627,"y":49.969},{"x":1754249641482,"y":57.449},{"x":1754249581349,"y":45.497},{"x":1754249521242,"y":53.342},{"x":1754249461100,"y":54.192},{"x":1754249401048,"y":66.743},{"x":1754249340804,"y":68.38},{"x":1754249280688,"y":60.482},{"x":1754249220550,"y":69.145},{"x":1754249160398,"y":65.647},{"x":1754249100283,"y":48.317},{"x":1754249042962,"y":62.635},{"x":1754248982842,"y":59.788},{"x":1754248922708,"y":57.421},{"x":1754248862585,"y":60.439},{"x":1754248802397,"y":57.497},{"x":1754248742261,"y":64.6},{"x":1754248682137,"y":55.807},{"x":1754248622009,"y":57.244},{"x":1754248561869,"y":76.729},{"x":1754248501744,"y":61.825},{"x":1754248441624,"y":59.629},{"x":1754248381499,"y":63.089},{"x":1754248321374,"y":55.748},{"x":1754248261255,"y":71.119},{"x":1754248201128,"y":60.392},{"x":1754248140956,"y":81.04},{"x":1754248080840,"y":80.258},{"x":1754248020721,"y":77.102},{"x":1754247960598,"y":110.087},{"x":1754247900617,"y":101.244},{"x":1754247840324,"y":69.257},{"x":1754247782975,"y":64.484},{"x":1754247722852,"y":63.502},{"x":1754247662715,"y":66.7},{"x":1754247602613,"y":69.535},{"x":1754247542414,"y":70.043},{"x":1754247482288,"y":83.896},{"x":1754247422163,"y":73.354},{"x":1754247362036,"y":77.209},{"x":1754247301903,"y":72.454},{"x":1754247241771,"y":75.378},{"x":1754247181634,"y":69.439},{"x":1754247121511,"y":61.222},{"x":1754247061393,"y":57.283},{"x":1754247001273,"y":55.44},{"x":1754246941145,"y":55.151},{"x":1754246880987,"y":55.046},{"x":1754246820866,"y":67.457},{"x":1754246760753,"y":66.788},{"x":1754246700659,"y":73.572},{"x":1754246640519,"y":73.307},{"x":1754246580395,"y":65.85},{"x":1754246520250,"y":57.23},{"x":1754246462981,"y":54.084},{"x":1754246402861,"y":50.834},{"x":1754246342730,"y":49.882},{"x":1754246282596,"y":52.507},{"x":1754246222395,"y":52.775},{"x":1754246162272,"y":51.853},{"x":1754246102151,"y":52.832},{"x":1754246041993,"y":54.239},{"x":1754245981859,"y":54.21},{"x":1754245921738,"y":52.195},{"x":1754245861613,"y":53.507},{"x":1754245801497,"y":52.771},{"x":1754245741357,"y":49.928},{"x":1754245681243,"y":66.518},{"x":1754245621110,"y":76.367},{"x":1754245560973,"y":74.056},{"x":1754245500877,"y":76.871},{"x":1754245440744,"y":61.808},{"x":1754245380598,"y":67.94},{"x":1754245320523,"y":61.207},{"x":1754245260313,"y":57.661},{"x":1754245200182,"y":59.45},{"x":1754245142875,"y":55.606},{"x":1754245082768,"y":66.248},{"x":1754245022641,"y":75.649},{"x":1754244962517,"y":61.206},{"x":1754244902395,"y":62.656},{"x":1754244842269,"y":62.572},{"x":1754244782163,"y":52.69},{"x":1754244722017,"y":56.078},{"x":1754244661882,"y":54.577},{"x":1754244601750,"y":47.117},{"x":1754244541622,"y":58.831},{"x":1754244481497,"y":52.601},{"x":1754244421367,"y":48.664},{"x":1754244361242,"y":40.762},{"x":1754244301113,"y":42.646},{"x":1754244240964,"y":55.59},{"x":1754244180837,"y":35.44},{"x":1754244120717,"y":36.128},{"x":1754244060603,"y":40.993},{"x":1754244000527,"y":43.267},{"x":1754243940319,"y":41.839},{"x":1754243880091,"y":42.866},{"x":1754243822911,"y":67.391},{"x":1754243762788,"y":65.039},{"x":1754243702675,"y":67.376},{"x":1754243642539,"y":82.444},{"x":1754243582408,"y":76.685},{"x":1754243522280,"y":43.668},{"x":1754243462155,"y":44.07},{"x":1754243402013,"y":43.948},{"x":1754243341857,"y":41.603},{"x":1754243281727,"y":59.125},{"x":1754243221596,"y":60.432},{"x":1754243161472,"y":58.072},{"x":1754243101359,"y":60.12},{"x":1754243041230,"y":42.896},{"x":1754242981104,"y":38.17},{"x":1754242920963,"y":54.708},{"x":1754242860831,"y":48.718},{"x":1754242800748,"y":55.46},{"x":1754242740559,"y":55.422},{"x":1754242680475,"y":81.226},{"x":1754242620341,"y":78.096},{"x":1754242560153,"y":59.569},{"x":1754242502948,"y":57.83},{"x":1754242442816,"y":54.074},{"x":1754242382686,"y":63.92},{"x":1754242322548,"y":63.32},{"x":1754242262422,"y":51.088},{"x":1754242202288,"y":52.512},{"x":1754242142151,"y":56.48},{"x":1754242082020,"y":61.554},{"x":1754242021894,"y":64.82},{"x":1754241961769,"y":56.862},{"x":1754241901645,"y":56.918},{"x":1754241841510,"y":50.489},{"x":1754241781388,"y":47.608},{"x":1754241721253,"y":53.227},{"x":1754241661042,"y":64.399},{"x":1754241600890,"y":64.673},{"x":1754241540700,"y":69.188},{"x":1754241480605,"y":70.288},{"x":1754241420527,"y":54.971},{"x":1754241360410,"y":49.211},{"x":1754241300130,"y":53.041},{"x":1754241242902,"y":51.918},{"x":1754241182783,"y":68.402},{"x":1754241122693,"y":65.905},{"x":1754241062537,"y":60.449},{"x":1754241002408,"y":56.556},{"x":1754240942286,"y":73.715},{"x":1754240882162,"y":59.713},{"x":1754240822042,"y":49.174},{"x":1754240761891,"y":51.365},{"x":1754240701772,"y":53.171},{"x":1754240641645,"y":72.725},{"x":1754240581524,"y":49.495},{"x":1754240521398,"y":57.844},{"x":1754240461281,"y":58.188},{"x":1754240401386,"y":55.218},{"x":1754240340947,"y":69.628},{"x":1754240280821,"y":50.8},{"x":1754240220689,"y":53.094},{"x":1754240160614,"y":53.087},{"x":1754240100491,"y":47.711},{"x":1754240040452,"y":51.349},{"x":1754239980101,"y":52.162},{"x":1754239922907,"y":52.158},{"x":1754239862783,"y":53.62},{"x":1754239802650,"y":50.746},{"x":1754239742526,"y":51.05},{"x":1754239682404,"y":50.875},{"x":1754239622263,"y":74.1},{"x":1754239562135,"y":72.245},{"x":1754239501997,"y":72.316},{"x":1754239441872,"y":78.199},{"x":1754239381742,"y":77.624},{"x":1754239321622,"y":59.162},{"x":1754239261494,"y":51.268},{"x":1754239201371,"y":44.178},{"x":1754239141240,"y":45.773},{"x":1754239081101,"y":45.313},{"x":1754239020950,"y":43.223},{"x":1754238960824,"y":46.024},{"x":1754238900718,"y":53.663},{"x":1754238840597,"y":54.095},{"x":1754238780483,"y":55.625},{"x":1754238720360,"y":52.043},{"x":1754238660166,"y":53.998},{"x":1754238602967,"y":51.131},{"x":1754238542837,"y":55.948},{"x":1754238482717,"y":54.396},{"x":1754238422605,"y":43.63},{"x":1754238362451,"y":56.53},{"x":1754238302332,"y":55.336},{"x":1754238242197,"y":58.805},{"x":1754238182082,"y":59.929},{"x":1754238121943,"y":67.058},{"x":1754238061779,"y":48.294},{"x":1754238001674,"y":54.481},{"x":1754237941453,"y":49.723},{"x":1754237881336,"y":55.1},{"x":1754237821214,"y":55.289},{"x":1754237761064,"y":61.108},{"x":1754237700948,"y":43.015},{"x":1754237640804,"y":45.545},{"x":1754237580690,"y":59.906},{"x":1754237520601,"y":65.306},{"x":1754237460458,"y":62.302},{"x":1754237400288,"y":58.57},{"x":1754237343018,"y":53.107},{"x":1754237282891,"y":56.831},{"x":1754237222786,"y":47.807},{"x":1754237162655,"y":50.291},{"x":1754237102534,"y":53.96},{"x":1754237042400,"y":49.937},{"x":1754236982282,"y":46.814},{"x":1754236922159,"y":48.314},{"x":1754236862040,"y":34.482},{"x":1754236801921,"y":37.55},{"x":1754236741740,"y":43.89},{"x":1754236681609,"y":35.732},{"x":1754236621493,"y":35.958},{"x":1754236561363,"y":32.268},{"x":1754236501240,"y":38.594},{"x":1754236441103,"y":53.924},{"x":1754236380956,"y":55.516},{"x":1754236320831,"y":65.204},{"x":1754236260704,"y":58.787},{"x":1754236200682,"y":48.792},{"x":1754236140486,"y":46.932},{"x":1754236080324,"y":40.104},{"x":1754236022979,"y":33.157},{"x":1754235962817,"y":32.038},{"x":1754235902709,"y":39.798},{"x":1754235842559,"y":35.03},{"x":1754235782440,"y":32.908},{"x":1754235722313,"y":35.435},{"x":1754235662193,"y":43.622},{"x":1754235602071,"y":47.179},{"x":1754235541944,"y":46.952},{"x":1754235481817,"y":49.583},{"x":1754235421693,"y":47.124},{"x":1754235361566,"y":32.776},{"x":1754235301443,"y":42.839},{"x":1754235241317,"y":35.197},{"x":1754235181199,"y":35.392},{"x":1754235121069,"y":44.304},{"x":1754235060937,"y":50.867},{"x":1754235000876,"y":50.48},{"x":1754234940672,"y":45.674},{"x":1754234880560,"y":45.208},{"x":1754234820545,"y":55.667},{"x":1754234760377,"y":30.19},{"x":1754234700220,"y":38.351},{"x":1754234642912,"y":39.697},{"x":1754234582799,"y":36.398},{"x":1754234522687,"y":34.315},{"x":1754234462529,"y":40.91},{"x":1754234402352,"y":40.055},{"x":1754234342201,"y":30.954},{"x":1754234282072,"y":31.489},{"x":1754234221948,"y":32.383},{"x":1754234161818,"y":31.201},{"x":1754234101684,"y":34.936},{"x":1754234041562,"y":34.603},{"x":1754233981436,"y":39.188},{"x":1754233921314,"y":34.021},{"x":1754233861194,"y":31.027},{"x":1754233801065,"y":30.006},{"x":1754233740923,"y":29.812},{"x":1754233680798,"y":27.907},{"x":1754233620665,"y":30.264},{"x":1754233560551,"y":28.171},{"x":1754233500409,"y":32.255},{"x":1754233440248,"y":40.447},{"x":1754233382940,"y":47.504},{"x":1754233322814,"y":36.536},{"x":1754233262686,"y":37.694},{"x":1754233202583,"y":42.336},{"x":1754233142390,"y":70.454},{"x":1754233082270,"y":61.434},{"x":1754233022148,"y":59.534},{"x":1754232962001,"y":62.731},{"x":1754232901878,"y":51.734},{"x":1754232841748,"y":43.932},{"x":1754232781622,"y":40.327},{"x":1754232721494,"y":38.974},{"x":1754232661329,"y":45.602},{"x":1754232601205,"y":38.951},{"x":1754232541077,"y":48.002},{"x":1754232480944,"y":45.79},{"x":1754232420808,"y":41.994},{"x":1754232360689,"y":39.53},{"x":1754232300717,"y":58.169},{"x":1754232240513,"y":67.727},{"x":1754232180310,"y":46.156},{"x":1754232120202,"y":52.229},{"x":1754232062934,"y":43.216},{"x":1754232002824,"y":37.816},{"x":1754231942689,"y":40.133},{"x":1754231882554,"y":45.48},{"x":1754231822432,"y":45.198},{"x":1754231762303,"y":36.103},{"x":1754231702185,"y":39.31},{"x":1754231642048,"y":33.953},{"x":1754231581914,"y":45.116},{"x":1754231521790,"y":41.568},{"x":1754231461652,"y":46.201},{"x":1754231401551,"y":53.299},{"x":1754231341405,"y":45.841},{"x":1754231281286,"y":48.581},{"x":1754231221162,"y":32.165},{"x":1754231161016,"y":23.884},{"x":1754231100885,"y":40.18},{"x":1754231040746,"y":47.19},{"x":1754230980606,"y":42.83},{"x":1754230920498,"y":46.991},{"x":1754230860379,"y":55.555},{"x":1754230800098,"y":40.135},{"x":1754230742908,"y":30.664},{"x":1754230682785,"y":33.59},{"x":1754230622651,"y":26.642},{"x":1754230562525,"y":29.429},{"x":1754230502397,"y":26.668},{"x":1754230442265,"y":26.584},{"x":1754230382141,"y":36.28},{"x":1754230322018,"y":20.816},{"x":1754230261875,"y":31.892},{"x":1754230201758,"y":28.667},{"x":1754230141622,"y":31.094},{"x":1754230081495,"y":34.045},{"x":1754230021377,"y":31.002},{"x":1754229961249,"y":29.917},{"x":1754229901123,"y":22.403},{"x":1754229840966,"y":18.125},{"x":1754229780840,"y":16.518},{"x":1754229720701,"y":13.158},{"x":1754229660607,"y":14.744},{"x":1754229600697,"y":25.573},{"x":1754229540280,"y":12.301},{"x":1754229483038,"y":23.388},{"x":1754229422897,"y":24.443},{"x":1754229362798,"y":27.319},{"x":1754229302654,"y":34.499},{"x":1754229242528,"y":24.04},{"x":1754229182404,"y":29.388},{"x":1754229122287,"y":34.868},{"x":1754229062155,"y":48.688},{"x":1754229002008,"y":41.148},{"x":1754228941880,"y":52.909},{"x":1754228881757,"y":55.669},{"x":1754228821634,"y":36.409},{"x":1754228761510,"y":29.384},{"x":1754228701392,"y":30.0},{"x":1754228641252,"y":33.024},{"x":1754228581131,"y":36.239},{"x":1754228520988,"y":39.972},{"x":1754228460865,"y":32.708},{"x":1754228400765,"y":51.766},{"x":1754228340562,"y":48.024},{"x":1754228280438,"y":44.748},{"x":1754228220319,"y":47.681},{"x":1754228160190,"y":52.315},{"x":1754228102913,"y":28.236},{"x":1754228042787,"y":26.039},{"x":1754227982653,"y":30.155},{"x":1754227922530,"y":27.247},{"x":1754227862407,"y":24.617},{"x":1754227802280,"y":42.077},{"x":1754227742147,"y":38.626},{"x":1754227682021,"y":36.256},{"x":1754227621885,"y":41.324},{"x":1754227561758,"y":47.676},{"x":1754227501642,"y":34.834},{"x":1754227441513,"y":33.69},{"x":1754227381443,"y":49.806},{"x":1754227321267,"y":29.659},{"x":1754227261104,"y":31.007},{"x":1754227200959,"y":36.602},{"x":1754227140697,"y":36.142},{"x":1754227080594,"y":34.973},{"x":1754227020435,"y":43.133},{"x":1754226960314,"y":47.513},{"x":1754226900166,"y":36.306},{"x":1754226842909,"y":34.289},{"x":1754226782789,"y":30.113},{"x":1754226722671,"y":37.901},{"x":1754226662533,"y":43.667},{"x":1754226602404,"y":27.838},{"x":1754226542272,"y":29.992},{"x":1754226482141,"y":37.97},{"x":1754226422014,"y":19.754},{"x":1754226361867,"y":20.99},{"x":1754226301759,"y":21.522},{"x":1754226241620,"y":39.174},{"x":1754226181494,"y":25.252},{"x":1754226121357,"y":22.154},{"x":1754226061242,"y":21.21},{"x":1754226001160,"y":15.53},{"x":1754225940885,"y":14.178},{"x":1754225880739,"y":14.141},{"x":1754225820617,"y":27.88},{"x":1754225760560,"y":30.75},{"x":1754225700393,"y":43.996},{"x":1754225640272,"y":49.21},{"x":1754225582937,"y":43.248},{"x":1754225522842,"y":63.637},{"x":1754225462687,"y":67.248},{"x":1754225402555,"y":47.951},{"x":1754225342457,"y":35.219},{"x":1754225282287,"y":39.794},{"x":1754225222158,"y":37.432},{"x":1754225162016,"y":34.699},{"x":1754225101884,"y":55.684},{"x":1754225041780,"y":43.673},{"x":1754224981627,"y":43.576},{"x":1754224921497,"y":44.97},{"x":1754224861378,"y":38.732},{"x":1754224801215,"y":46.916},{"x":1754224741076,"y":47.666},{"x":1754224680926,"y":44.414},{"x":1754224620807,"y":44.852},{"x":1754224560691,"y":60.496},{"x":1754224500549,"y":46.686},{"x":1754224440442,"y":40.132},{"x":1754224380188,"y":35.752},{"x":1754224322994,"y":32.557},{"x":1754224262831,"y":25.571},{"x":1754224202693,"y":30.437},{"x":1754224142570,"y":26.572},{"x":1754224082461,"y":40.64},{"x":1754224022311,"y":34.69},{"x":1754223962189,"y":53.527},{"x":1754223902053,"y":36.353},{"x":1754223841900,"y":40.277},{"x":1754223781776,"y":32.27},{"x":1754223721651,"y":30.96},{"x":1754223661485,"y":24.715},{"x":1754223601299,"y":35.082},{"x":1754223541142,"y":33.007},{"x":1754223481013,"y":47.546},{"x":1754223420906,"y":32.038},{"x":1754223360772,"y":43.709},{"x":1754223300676,"y":45.277},{"x":1754223240513,"y":49.292},{"x":1754223180344,"y":61.404},{"x":1754223120152,"y":46.789},{"x":1754223062898,"y":33.283},{"x":1754223002775,"y":33.509},{"x":1754222942648,"y":39.176},{"x":1754222882528,"y":35.023},{"x":1754222822362,"y":31.956},{"x":1754222762229,"y":32.658},{"x":1754222702102,"y":41.868},{"x":1754222641970,"y":31.592},{"x":1754222581832,"y":40.07},{"x":1754222521707,"y":43.814},{"x":1754222461569,"y":42.104},{"x":1754222401560,"y":42.264},{"x":1754222341273,"y":44.468},{"x":1754222281147,"y":43.102},{"x":1754222220998,"y":41.309},{"x":1754222160885,"y":44.416},{"x":1754222100786,"y":37.35},{"x":1754222040638,"y":35.803},{"x":1754221980561,"y":21.218},{"x":1754221920406,"y":34.865},{"x":1754221860197,"y":33.714},{"x":1754221802983,"y":29.005},{"x":1754221742853,"y":21.692},{"x":1754221682734,"y":38.996},{"x":1754221622607,"y":49.895},{"x":1754221562484,"y":44.662},{"x":1754221502354,"y":35.099},{"x":1754221442232,"y":26.015},{"x":1754221382106,"y":24.076},{"x":1754221321975,"y":26.852},{"x":1754221261850,"y":29.724},{"x":1754221201717,"y":41.82},{"x":1754221141588,"y":25.982},{"x":1754221081458,"y":36.391},{"x":1754221021324,"y":58.626},{"x":1754220961204,"y":43.981},{"x":1754220901078,"y":45.752},{"x":1754220840935,"y":34.513},{"x":1754220780801,"y":24.326},{"x":1754220720678,"y":25.304},{"x":1754220660569,"y":26.795},{"x":1754220600478,"y":55.272},{"x":1754220540258,"y":54.95},{"x":1754220482985,"y":40.246},{"x":1754220422763,"y":40.86},{"x":1754220362637,"y":38.396},{"x":1754220302507,"y":29.867},{"x":1754220242384,"y":30.883},{"x":1754220182256,"y":18.96},{"x":1754220122116,"y":17.905},{"x":1754220061951,"y":23.597},{"x":1754220001783,"y":31.496},{"x":1754219941617,"y":36.794},{"x":1754219881496,"y":26.953},{"x":1754219821373,"y":25.757},{"x":1754219761252,"y":29.896},{"x":1754219701117,"y":30.774},{"x":1754219640952,"y":18.475},{"x":1754219580827,"y":22.364},{"x":1754219520713,"y":29.501},{"x":1754219460581,"y":22.024},{"x":1754219400460,"y":15.938},{"x":1754219340234,"y":39.292},{"x":1754219283021,"y":25.075},{"x":1754219222880,"y":27.803},{"x":1754219162756,"y":28.386},{"x":1754219102628,"y":27.533},{"x":1754219042509,"y":23.31},{"x":1754218982370,"y":23.707},{"x":1754218922247,"y":30.829},{"x":1754218862126,"y":15.17},{"x":1754218802011,"y":16.222},{"x":1754218741843,"y":24.112},{"x":1754218681722,"y":31.124},{"x":1754218621584,"y":26.394},{"x":1754218561462,"y":23.094},{"x":1754218501336,"y":24.944},{"x":1754218441209,"y":21.37},{"x":1754218381083,"y":31.339},{"x":1754218320920,"y":32.888},{"x":1754218260785,"y":36.421},{"x":1754218200691,"y":45.622},{"x":1754218140543,"y":64.288},{"x":1754218080456,"y":60.374},{"x":1754218020338,"y":54.773},{"x":1754217960113,"y":46.843},{"x":1754217902923,"y":46.787},{"x":1754217842790,"y":30.402},{"x":1754217782669,"y":30.265},{"x":1754217722538,"y":37.836},{"x":1754217662412,"y":46.97},{"x":1754217602264,"y":33.608},{"x":1754217542138,"y":30.704},{"x":1754217482012,"y":33.92},{"x":1754217421881,"y":23.629},{"x":1754217361756,"y":38.959},{"x":1754217301632,"y":27.983},{"x":1754217241495,"y":33.233},{"x":1754217181366,"y":34.786},{"x":1754217121246,"y":31.548},{"x":1754217061121,"y":29.538},{"x":1754217000992,"y":20.885},{"x":1754216940840,"y":18.284},{"x":1754216880738,"y":31.603},{"x":1754216820648,"y":33.053},{"x":1754216760407,"y":43.391},{"x":1754216700302,"y":42.541},{"x":1754216640095,"y":39.034},{"x":1754216582918,"y":40.129},{"x":1754216522806,"y":54.402},{"x":1754216462686,"y":42.929},{"x":1754216402510,"y":29.172},{"x":1754216342352,"y":21.668},{"x":1754216282225,"y":27.824},{"x":1754216222102,"y":29.812},{"x":1754216161960,"y":30.079},{"x":1754216101831,"y":28.054},{"x":1754216041716,"y":20.713},{"x":1754215981582,"y":21.59},{"x":1754215921461,"y":23.424},{"x":1754215861327,"y":22.89},{"x":1754215801199,"y":30.535},{"x":1754215741065,"y":30.848},{"x":1754215680926,"y":20.472},{"x":1754215620796,"y":19.759},{"x":1754215560671,"y":22.076},{"x":1754215500602,"y":23.622},{"x":1754215440396,"y":22.627},{"x":1754215380358,"y":22.376},{"x":1754215323006,"y":21.26},{"x":1754215262868,"y":20.941},{"x":1754215202766,"y":18.697},{"x":1754215142623,"y":19.343},{"x":1754215082514,"y":19.642},{"x":1754215022372,"y":20.809},{"x":1754214962245,"y":20.875},{"x":1754214902114,"y":19.968},{"x":1754214841982,"y":34.08},{"x":1754214781858,"y":48.628},{"x":1754214721740,"y":34.902},{"x":1754214661611,"y":36.209},{"x":1754214601519,"y":30.839},{"x":1754214541371,"y":27.881},{"x":1754214481262,"y":39.848},{"x":1754214421099,"y":21.122},{"x":1754214360966,"y":19.02},{"x":1754214300876,"y":17.42},{"x":1754214240728,"y":21.247},{"x":1754214180567,"y":20.524},{"x":1754214120544,"y":26.848},{"x":1754214060328,"y":28.246},{"x":1754214003020,"y":26.082},{"x":1754213942896,"y":25.207},{"x":1754213882776,"y":34.493},{"x":1754213822651,"y":16.087},{"x":1754213762528,"y":15.919},{"x":1754213702398,"y":26.132},{"x":1754213642267,"y":16.86},{"x":1754213582144,"y":14.476},{"x":1754213521987,"y":15.791},{"x":1754213461858,"y":17.918},{"x":1754213401733,"y":15.547},{"x":1754213341605,"y":23.934},{"x":1754213281480,"y":24.388},{"x":1754213221284,"y":23.741},{"x":1754213161162,"y":27.02},{"x":1754213101027,"y":14.489},{"x":1754213040890,"y":33.382},{"x":1754212980767,"y":38.558},{"x":1754212920696,"y":42.439},{"x":1754212860479,"y":50.31},{"x":1754212800257,"y":39.944},{"x":1754212740106,"y":31.787},{"x":1754212682918,"y":28.339},{"x":1754212622813,"y":16.728},{"x":1754212562670,"y":18.79},{"x":1754212502611,"y":19.807},{"x":1754212442418,"y":23.534},{"x":1754212382299,"y":22.948},{"x":1754212322172,"y":26.495},{"x":1754212262048,"y":41.674},{"x":1754212201913,"y":36.887},{"x":1754212141760,"y":36.265},{"x":1754212081635,"y":25.147},{"x":1754212021507,"y":21.458},{"x":1754211961386,"y":25.584},{"x":1754211901262,"y":24.5},{"x":1754211841136,"y":29.846},{"x":1754211780999,"y":32.274},{"x":1754211720886,"y":32.051},{"x":1754211660797,"y":54.276},{"x":1754211600742,"y":42.996},{"x":1754211540530,"y":41.149},{"x":1754211480405,"y":45.044},{"x":1754211420234,"y":41.68},{"x":1754211362975,"y":35.137},{"x":1754211302846,"y":25.052},{"x":1754211242723,"y":23.884},{"x":1754211182600,"y":16.483},{"x":1754211122492,"y":27.414},{"x":1754211062329,"y":27.581},{"x":1754211002200,"y":27.072},{"x":1754210942068,"y":40.279},{"x":1754210881931,"y":36.802},{"x":1754210821813,"y":34.477},{"x":1754210761676,"y":35.197},{"x":1754210701546,"y":30.554},{"x":1754210641409,"y":30.017},{"x":1754210581288,"y":30.962},{"x":1754210521165,"y":29.567},{"x":1754210461012,"y":30.594},{"x":1754210400918,"y":38.292},{"x":1754210340717,"y":52.235},{"x":1754210280610,"y":51.264},{"x":1754210220500,"y":55.274},{"x":1754210160510,"y":47.483},{"x":1754210100149,"y":37.438},{"x":1754210042923,"y":42.124},{"x":1754209982788,"y":36.24},{"x":1754209922659,"y":40.12},{"x":1754209862533,"y":40.423},{"x":1754209802412,"y":37.084},{"x":1754209742274,"y":30.88},{"x":1754209682152,"y":35.009},{"x":1754209621996,"y":40.336},{"x":1754209561874,"y":43.588},{"x":1754209501706,"y":42.988},{"x":1754209441568,"y":43.734},{"x":1754209381446,"y":44.341},{"x":1754209321358,"y":44.322},{"x":1754209261143,"y":49.628},{"x":1754209200999,"y":45.986},{"x":1754209140770,"y":38.386},{"x":1754209080644,"y":43.793},{"x":1754209020579,"y":34.826},{"x":1754208960364,"y":42.692},{"x":1754208900231,"y":31.705},{"x":1754208842952,"y":37.152},{"x":1754208782820,"y":42.605},{"x":1754208722708,"y":39.055},{"x":1754208662555,"y":54.248},{"x":1754208602435,"y":47.425},{"x":1754208542311,"y":55.592},{"x":1754208482177,"y":46.885},{"x":1754208422048,"y":50.531},{"x":1754208361916,"y":54.658},{"x":1754208301786,"y":51.424},{"x":1754208241663,"y":53.267},{"x":1754208181537,"y":60.601},{"x":1754208121410,"y":45.115},{"x":1754208061307,"y":45.389},{"x":1754208000996,"y":48.002},{"x":1754207940740,"y":48.679},{"x":1754207880626,"y":49.538},{"x":1754207820538,"y":61.874},{"x":1754207760430,"y":57.264},{"x":1754207700292,"y":69.479},{"x":1754207643016,"y":64.512},{"x":1754207582881,"y":60.664},{"x":1754207522751,"y":61.954},{"x":1754207462632,"y":55.154},{"x":1754207402497,"y":53.994},{"x":1754207342371,"y":53.795},{"x":1754207282246,"y":40.89},{"x":1754207222119,"y":43.769},{"x":1754207161980,"y":36.958},{"x":1754207101856,"y":41.66},{"x":1754207041729,"y":37.916},{"x":1754206981589,"y":41.074},{"x":1754206921463,"y":34.778},{"x":1754206861340,"y":37.703},{"x":1754206801219,"y":39.314},{"x":1754206741091,"y":40.188},{"x":1754206680951,"y":38.592},{"x":1754206620830,"y":35.389},{"x":1754206560720,"y":41.846},{"x":1754206500599,"y":40.1},{"x":1754206440498,"y":40.786},{"x":1754206380313,"y":51.35},{"x":1754206320121,"y":33.733},{"x":1754206262912,"y":39.96},{"x":1754206202794,"y":33.709},{"x":1754206142676,"y":47.329},{"x":1754206082550,"y":33.46},{"x":1754206022428,"y":37.982},{"x":1754205962285,"y":36.197},{"x":1754205902157,"y":41.85},{"x":1754205841997,"y":37.968},{"x":1754205781867,"y":35.273},{"x":1754205721733,"y":39.012},{"x":1754205661579,"y":37.066},{"x":1754205601422,"y":38.851},{"x":1754205541255,"y":40.54},{"x":1754205481114,"y":34.962},{"x":1754205420960,"y":36.983},{"x":1754205360839,"y":33.166},{"x":1754205300703,"y":37.438},{"x":1754205240568,"y":37.19},{"x":1754205180446,"y":39.788},{"x":1754205120241,"y":37.136},{"x":1754205062965,"y":39.032},{"x":1754205002842,"y":33.92},{"x":1754204942715,"y":37.015},{"x":1754204882606,"y":28.513},{"x":1754204822428,"y":37.356},{"x":1754204762280,"y":46.846},{"x":1754204702154,"y":43.703},{"x":1754204642017,"y":39.734},{"x":1754204581882,"y":39.316},{"x":1754204521750,"y":33.727},{"x":1754204461629,"y":29.01},{"x":1754204401596,"y":31.7},{"x":1754204341342,"y":34.35},{"x":1754204281215,"y":37.04},{"x":1754204221090,"y":34.42},{"x":1754204160886,"y":36.575},{"x":1754204100770,"y":33.516},{"x":1754204040617,"y":35.322},{"x":1754203980482,"y":32.251},{"x":1754203920379,"y":36.737},{"x":1754203860170,"y":43.648},{"x":1754203802920,"y":38.77},{"x":1754203742794,"y":39.688},{"x":1754203682697,"y":33.667},{"x":1754203622540,"y":35.326},{"x":1754203562439,"y":38.4},{"x":1754203502299,"y":34.774},{"x":1754203442161,"y":29.767},{"x":1754203382025,"y":29.674},{"x":1754203321899,"y":34.439},{"x":1754203261771,"y":35.474},{"x":1754203201648,"y":33.205},{"x":1754203141523,"y":35.146},{"x":1754203081403,"y":30.7},{"x":1754203021260,"y":40.562},{"x":1754202961127,"y":41.602},{"x":1754202900994,"y":37.236},{"x":1754202840852,"y":36.151},{"x":1754202780725,"y":26.134},{"x":1754202720647,"y":31.189},{"x":1754202660460,"y":33.318},{"x":1754202600386,"y":31.541},{"x":1754202540212,"y":34.0},{"x":1754202482938,"y":43.638},{"x":1754202422811,"y":28.871},{"x":1754202362683,"y":27.709},{"x":1754202302547,"y":30.175},{"x":1754202242422,"y":34.912},{"x":1754202182293,"y":32.42},{"x":1754202122140,"y":34.978},{"x":1754202061989,"y":36.127},{"x":1754202001846,"y":50.092},{"x":1754201941670,"y":31.534},{"x":1754201881526,"y":57.702},{"x":1754201821399,"y":44.756},{"x":1754201761272,"y":54.577},{"x":1754201701131,"y":36.743},{"x":1754201640990,"y":49.228},{"x":1754201580866,"y":37.18},{"x":1754201520756,"y":50.226},{"x":1754201460591,"y":39.197},{"x":1754201400520,"y":50.17},{"x":1754201340336,"y":32.834},{"x":1754201280146,"y":32.045},{"x":1754201222902,"y":46.921},{"x":1754201162764,"y":49.432},{"x":1754201102645,"y":51.388},{"x":1754201042516,"y":34.978},{"x":1754200982392,"y":32.058},{"x":1754200922286,"y":33.424},{"x":1754200862154,"y":34.82},{"x":1754200802153,"y":32.393},{"x":1754200741860,"y":30.262},{"x":1754200681738,"y":30.804},{"x":1754200621619,"y":35.016},{"x":1754200561486,"y":33.51},{"x":1754200501368,"y":34.127},{"x":1754200441252,"y":36.032},{"x":1754200381118,"y":33.299},{"x":1754200320974,"y":33.529},{"x":1754200260853,"y":35.262},{"x":1754200200789,"y":37.444},{"x":1754200140615,"y":32.795},{"x":1754200080497,"y":36.972},{"x":1754200020349,"y":34.517},{"x":1754199960302,"y":33.618},{"x":1754199902967,"y":38.273},{"x":1754199842833,"y":33.508},{"x":1754199782714,"y":31.984},{"x":1754199722597,"y":33.4},{"x":1754199662467,"y":33.93},{"x":1754199602345,"y":30.991},{"x":1754199542216,"y":31.655},{"x":1754199482097,"y":28.992},{"x":1754199421950,"y":29.258},{"x":1754199361813,"y":32.622},{"x":1754199301675,"y":32.374},{"x":1754199241559,"y":37.793},{"x":1754199181410,"y":34.186},{"x":1754199121293,"y":33.463},{"x":1754199061153,"y":37.063},{"x":1754199000975,"y":37.763},{"x":1754198940834,"y":36.03},{"x":1754198880714,"y":31.57},{"x":1754198820606,"y":43.913},{"x":1754198760495,"y":42.756},{"x":1754198700351,"y":45.65},{"x":1754198640236,"y":48.936},{"x":1754198582937,"y":56.671},{"x":1754198522812,"y":41.238},{"x":1754198462633,"y":40.474},{"x":1754198402494,"y":37.328},{"x":1754198342343,"y":34.345},{"x":1754198282206,"y":38.048},{"x":1754198222072,"y":37.429},{"x":1754198161935,"y":34.675},{"x":1754198101813,"y":33.592},{"x":1754198041676,"y":35.762},{"x":1754197981552,"y":38.226},{"x":1754197921429,"y":36.781},{"x":1754197861310,"y":45.61},{"x":1754197801187,"y":38.189},{"x":1754197741064,"y":39.412},{"x":1754197680916,"y":37.625},{"x":1754197620784,"y":33.704},{"x":1754197560630,"y":34.798},{"x":1754197500560,"y":33.598},{"x":1754197440384,"y":34.873},{"x":1754197380308,"y":38.405},{"x":1754197322985,"y":45.132},{"x":1754197262856,"y":37.585},{"x":1754197202746,"y":36.619},{"x":1754197142592,"y":38.551},{"x":1754197082469,"y":37.811},{"x":1754197022330,"y":39.648},{"x":1754196962205,"y":34.844},{"x":1754196902072,"y":35.466},{"x":1754196841913,"y":32.635},{"x":1754196781779,"y":33.61},{"x":1754196721662,"y":37.634},{"x":1754196661472,"y":34.573},{"x":1754196601336,"y":35.503},{"x":1754196541209,"y":45.244},{"x":1754196481080,"y":43.561},{"x":1754196420893,"y":40.696},{"x":1754196360773,"y":41.015},{"x":1754196300791,"y":38.78},{"x":1754196240540,"y":42.013},{"x":1754196180418,"y":38.797},{"x":1754196120259,"y":37.547},{"x":1754196062990,"y":37.12},{"x":1754196002864,"y":35.477},{"x":1754195942739,"y":34.692},{"x":1754195882625,"y":36.307},{"x":1754195822504,"y":33.568},{"x":1754195762372,"y":40.073},{"x":1754195702229,"y":37.908},{"x":1754195642107,"y":38.624},{"x":1754195581972,"y":37.96},{"x":1754195521848,"y":36.197},{"x":1754195461724,"y":37.709},{"x":1754195401596,"y":42.414},{"x":1754195341433,"y":43.948},{"x":1754195281315,"y":44.16},{"x":1754195221196,"y":44.668},{"x":1754195161056,"y":45.88},{"x":1754195100887,"y":35.626},{"x":1754195040743,"y":36.385},{"x":1754194980703,"y":34.457},{"x":1754194920433,"y":39.229},{"x":1754194860314,"y":37.055},{"x":1754194802977,"y":36.122},{"x":1754194742847,"y":35.99},{"x":1754194682704,"y":36.846},{"x":1754194622583,"y":33.442},{"x":1754194562443,"y":36.978},{"x":1754194502322,"y":40.298},{"x":1754194442196,"y":35.748},{"x":1754194382074,"y":35.732},{"x":1754194321928,"y":34.631},{"x":1754194261798,"y":33.492},{"x":1754194201667,"y":39.62},{"x":1754194141537,"y":35.948},{"x":1754194081393,"y":30.814},{"x":1754194021272,"y":34.732},{"x":1754193961136,"y":37.643},{"x":1754193900981,"y":39.912},{"x":1754193840836,"y":60.462},{"x":1754193780718,"y":66.822},{"x":1754193720586,"y":59.338},{"x":1754193660531,"y":58.693},{"x":1754193600292,"y":49.229},{"x":1754193540036,"y":34.584},{"x":1754193482879,"y":36.095},{"x":1754193422753,"y":36.966},{"x":1754193362621,"y":37.073},{"x":1754193302494,"y":39.716},{"x":1754193242369,"y":37.346},{"x":1754193182243,"y":36.276},{"x":1754193122108,"y":34.762},{"x":1754193061962,"y":33.884},{"x":1754193001818,"y":35.092},{"x":1754192941690,"y":40.088},{"x":1754192881563,"y":34.711},{"x":1754192821438,"y":32.875},{"x":1754192761318,"y":35.808},{"x":1754192701193,"y":34.313},{"x":1754192641026,"y":40.886},{"x":1754192580923,"y":38.34},{"x":1754192520753,"y":43.937},{"x":1754192460636,"y":41.378},{"x":1754192400533,"y":39.946},{"x":1754192340361,"y":40.338},{"x":1754192280247,"y":36.029},{"x":1754192222958,"y":36.355},{"x":1754192162824,"y":37.261},{"x":1754192102715,"y":35.678},{"x":1754192042578,"y":35.606},{"x":1754191982450,"y":39.347},{"x":1754191922337,"y":39.426},{"x":1754191862211,"y":38.51},{"x":1754191802087,"y":36.995},{"x":1754191741951,"y":36.66},{"x":1754191681828,"y":43.39},{"x":1754191621703,"y":38.274},{"x":1754191561568,"y":37.255},{"x":1754191501447,"y":32.638},{"x":1754191441306,"y":33.064},{"x":1754191381188,"y":38.021},{"x":1754191320968,"y":37.506},{"x":1754191260807,"y":46.55},{"x":1754191200757,"y":45.762},{"x":1754191140544,"y":48.378},{"x":1754191080483,"y":52.022},{"x":1754191020257,"y":46.037},{"x":1754190962955,"y":34.229},{"x":1754190902805,"y":32.626},{"x":1754190842685,"y":32.53},{"x":1754190782556,"y":38.189},{"x":1754190722417,"y":35.632},{"x":1754190662292,"y":32.209},{"x":1754190602191,"y":35.669},{"x":1754190542041,"y":39.094},{"x":1754190481900,"y":39.344},{"x":1754190421777,"y":37.3},{"x":1754190361653,"y":36.013},{"x":1754190301530,"y":35.152},{"x":1754190241406,"y":35.035},{"x":1754190181525,"y":37.916},{"x":1754190121359,"y":40.009},{"x":1754190061225,"y":32.706},{"x":1754190002139,"y":32.736},{"x":1754189940652,"y":32.852},{"x":1754189880603,"y":38.674},{"x":1754189820426,"y":41.849},{"x":1754189760191,"y":37.536},{"x":1754189702972,"y":37.082},{"x":1754189642833,"y":32.006},{"x":1754189582709,"y":36.128},{"x":1754189522584,"y":39.988},{"x":1754189462453,"y":38.976},{"x":1754189402360,"y":39.39},{"x":1754189342207,"y":36.949},{"x":1754189282071,"y":33.929},{"x":1754189221931,"y":36.712},{"x":1754189161779,"y":35.761},{"x":1754189101642,"y":45.859},{"x":1754189041515,"y":47.314},{"x":1754188981393,"y":46.123},{"x":1754188921272,"y":45.745},{"x":1754188861145,"y":46.872},{"x":1754188801027,"y":59.504},{"x":1754188740849,"y":61.012},{"x":1754188680736,"y":60.053},{"x":1754188620605,"y":61.854},{"x":1754188560595,"y":64.424},{"x":1754188500457,"y":35.15},{"x":1754188440265,"y":36.095},{"x":1754188382965,"y":38.514},{"x":1754188322829,"y":36.888},{"x":1754188262710,"y":36.029},{"x":1754188202594,"y":38.228},{"x":1754188142469,"y":31.657},{"x":1754188082344,"y":32.945},{"x":1754188022202,"y":35.167},{"x":1754187962074,"y":34.555},{"x":1754187901938,"y":37.297},{"x":1754187841819,"y":37.168},{"x":1754187781687,"y":37.325},{"x":1754187721560,"y":36.882},{"x":1754187661394,"y":35.934},{"x":1754187601254,"y":33.798},{"x":1754187541069,"y":39.696},{"x":1754187480939,"y":35.652},{"x":1754187420820,"y":35.155},{"x":1754187360692,"y":32.243},{"x":1754187300648,"y":42.726},{"x":1754187240495,"y":50.572},{"x":1754187180345,"y":48.605},{"x":1754187120199,"y":45.472},{"x":1754187062926,"y":35.738},{"x":1754187002796,"y":36.469},{"x":1754186942674,"y":43.073},{"x":1754186882544,"y":41.34},{"x":1754186822457,"y":40.632},{"x":1754186762273,"y":41.508},{"x":1754186702153,"y":37.261},{"x":1754186641986,"y":39.076},{"x":1754186581863,"y":39.793},{"x":1754186521739,"y":38.978},{"x":1754186461617,"y":35.02},{"x":1754186401643,"y":34.432},{"x":1754186341283,"y":34.526},{"x":1754186281165,"y":37.148},{"x":1754186221022,"y":33.414},{"x":1754186160886,"y":36.302},{"x":1754186100756,"y":36.436},{"x":1754186040631,"y":36.392},{"x":1754185980501,"y":38.407},{"x":1754185920406,"y":33.601},{"x":1754185860253,"y":33.664},{"x":1754185802990,"y":36.196},{"x":1754185742865,"y":34.78},{"x":1754185682732,"y":36.822},{"x":1754185622599,"y":36.552},{"x":1754185562480,"y":36.011},{"x":1754185502365,"y":59.39},{"x":1754185442236,"y":62.159},{"x":1754185382115,"y":61.052},{"x":1754185321974,"y":64.165},{"x":1754185261851,"y":60.942},{"x":1754185201726,"y":33.964},{"x":1754185141603,"y":33.212},{"x":1754185081477,"y":46.883},{"x":1754185021338,"y":52.046},{"x":1754184961205,"y":46.824},{"x":1754184901083,"y":46.764},{"x":1754184840947,"y":48.086},{"x":1754184780812,"y":45.25},{"x":1754184720722,"y":51.804},{"x":1754184660553,"y":44.924},{"x":1754184600460,"y":44.05},{"x":1754184540297,"y":39.917},{"x":1754184482992,"y":33.942},{"x":1754184422862,"y":34.174},{"x":1754184362751,"y":33.96},{"x":1754184302609,"y":33.954},{"x":1754184242482,"y":36.089},{"x":1754184182362,"y":35.562},{"x":1754184122242,"y":32.238},{"x":1754184062093,"y":41.096},{"x":1754184001932,"y":37.396},{"x":1754183941771,"y":38.381},{"x":1754183881657,"y":35.25},{"x":1754183821536,"y":37.987},{"x":1754183761403,"y":40.955},{"x":1754183701280,"y":33.306},{"x":1754183641156,"y":34.102},{"x":1754183581024,"y":40.652},{"x":1754183520897,"y":40.504},{"x":1754183460766,"y":41.298},{"x":1754183400658,"y":36.604},{"x":1754183340533,"y":36.348},{"x":1754183280459,"y":33.93},{"x":1754183220231,"y":36.485},{"x":1754183163009,"y":35.675},{"x":1754183102875,"y":38.426},{"x":1754183042761,"y":38.468},{"x":1754182982638,"y":35.826},{"x":1754182922525,"y":35.902},{"x":1754182862407,"y":35.599},{"x":1754182802329,"y":38.29},{"x":1754182742135,"y":35.087},{"x":1754182682002,"y":31.896},{"x":1754182621875,"y":32.698},{"x":1754182561752,"y":34.14},{"x":1754182501634,"y":40.996},{"x":1754182441504,"y":38.285},{"x":1754182381376,"y":36.233},{"x":1754182321248,"y":38.466},{"x":1754182261111,"y":38.083},{"x":1754182200969,"y":41.186},{"x":1754182140831,"y":37.487},{"x":1754182080720,"y":35.081},{"x":1754182020605,"y":33.864},{"x":1754181960503,"y":37.46},{"x":1754181900317,"y":35.321},{"x":1754181840200,"y":36.366},{"x":1754181782911,"y":36.671},{"x":1754181722794,"y":39.821},{"x":1754181662659,"y":44.154},{"x":1754181602531,"y":39.923},{"x":1754181542411,"y":43.766},{"x":1754181482284,"y":36.9},{"x":1754181422151,"y":34.91},{"x":1754181362020,"y":36.134},{"x":1754181301890,"y":34.699},{"x":1754181241767,"y":62.644},{"x":1754181181651,"y":60.046},{"x":1754181121531,"y":60.63},{"x":1754181061400,"y":60.368},{"x":1754181001295,"y":63.311},{"x":1754180941149,"y":38.08},{"x":1754180881025,"y":36.738},{"x":1754180820892,"y":40.402},{"x":1754180760749,"y":37.619},{"x":1754180700650,"y":37.105},{"x":1754180640500,"y":35.946},{"x":1754180580386,"y":39.293},{"x":1754180520248,"y":32.563},{"x":1754180462903,"y":35.678},{"x":1754180402734,"y":36.913},{"x":1754180342593,"y":36.492},{"x":1754180282461,"y":42.809},{"x":1754180222343,"y":37.412},{"x":1754180162219,"y":56.747},{"x":1754180102096,"y":56.486},{"x":1754180041950,"y":57.311},{"x":1754179981816,"y":59.926},{"x":1754179921678,"y":49.638},{"x":1754179861559,"y":33.301},{"x":1754179801432,"y":39.365},{"x":1754179741309,"y":39.414},{"x":1754179681183,"y":37.482},{"x":1754179621058,"y":38.15},{"x":1754179560918,"y":38.017},{"x":1754179500804,"y":36.934},{"x":1754179440684,"y":35.844},{"x":1754179380603,"y":36.115},{"x":1754179320413,"y":39.727},{"x":1754179260253,"y":33.29},{"x":1754179203033,"y":34.818},{"x":1754179142839,"y":37.205},{"x":1754179082724,"y":40.019},{"x":1754179022583,"y":41.526},{"x":1754178962465,"y":36.337},{"x":1754178902335,"y":37.102},{"x":1754178842202,"y":34.909},{"x":1754178782078,"y":37.775},{"x":1754178721920,"y":36.7},{"x":1754178661776,"y":34.877},{"x":1754178601656,"y":35.539},{"x":1754178541530,"y":35.827},{"x":1754178481414,"y":39.892},{"x":1754178421290,"y":36.479},{"x":1754178361158,"y":37.88},{"x":1754178301061,"y":36.611},{"x":1754178240882,"y":34.523},{"x":1754178180755,"y":32.455},{"x":1754178120637,"y":36.006},{"x":1754178060514,"y":45.785},{"x":1754178000433,"y":35.478},{"x":1754177940270,"y":34.532},{"x":1754177882997,"y":34.079},{"x":1754177822812,"y":46.735},{"x":1754177762680,"y":50.086},{"x":1754177702509,"y":46.164},{"x":1754177642387,"y":47.563},{"x":1754177582252,"y":48.518},{"x":1754177522123,"y":37.284},{"x":1754177461984,"y":34.888},{"x":1754177401857,"y":33.694},{"x":1754177341729,"y":35.137},{"x":1754177281604,"y":63.475},{"x":1754177221465,"y":63.936},{"x":1754177161339,"y":63.432},{"x":1754177101211,"y":71.221},{"x":1754177041077,"y":66.985},{"x":1754176980943,"y":39.025},{"x":1754176920835,"y":42.631},{"x":1754176860654,"y":40.897},{"x":1754176800530,"y":43.321},{"x":1754176740383,"y":39.436},{"x":1754176682935,"y":39.194},{"x":1754176622808,"y":38.329},{"x":1754176562685,"y":41.522},{"x":1754176502561,"y":42.598},{"x":1754176442430,"y":40.912},{"x":1754176382313,"y":41.891},{"x":1754176322181,"y":40.493},{"x":1754176262047,"y":41.188},{"x":1754176201908,"y":38.528},{"x":1754176141784,"y":35.718},{"x":1754176081659,"y":35.033},{"x":1754176021553,"y":50.819},{"x":1754175961395,"y":52.498},{"x":1754175901276,"y":55.735},{"x":1754175841142,"y":56.808},{"x":1754175781002,"y":60.341},{"x":1754175720828,"y":39.318},{"x":1754175660705,"y":43.217},{"x":1754175600590,"y":40.466},{"x":1754175540416,"y":40.483},{"x":1754175480286,"y":44.183},{"x":1754175422997,"y":39.48},{"x":1754175362868,"y":46.538},{"x":1754175302746,"y":47.334},{"x":1754175242623,"y":45.866},{"x":1754175182498,"y":47.755},{"x":1754175122373,"y":46.807},{"x":1754175062239,"y":43.466},{"x":1754175002119,"y":42.793},{"x":1754174941989,"y":41.824},{"x":1754174881868,"y":41.077},{"x":1754174821769,"y":43.603},{"x":1754174761629,"y":37.594},{"x":1754174701506,"y":36.794},{"x":1754174641360,"y":39.01},{"x":1754174581240,"y":37.9},{"x":1754174521114,"y":44.412},{"x":1754174460963,"y":40.198},{"x":1754174400873,"y":40.054},{"x":1754174340720,"y":41.194},{"x":1754174280599,"y":40.277},{"x":1754174220514,"y":42.199},{"x":1754174160333,"y":54.157},{"x":1754174103018,"y":49.361},{"x":1754174042870,"y":48.012},{"x":1754173982750,"y":48.77},{"x":1754173922634,"y":47.75},{"x":1754173862491,"y":51.155},{"x":1754173802377,"y":46.183},{"x":1754173742242,"y":50.798},{"x":1754173682115,"y":44.545},{"x":1754173621966,"y":44.087},{"x":1754173561844,"y":47.576},{"x":1754173501715,"y":42.109},{"x":1754173441578,"y":38.179},{"x":1754173381452,"y":36.912},{"x":1754173321322,"y":36.136},{"x":1754173261152,"y":36.048},{"x":1754173201045,"y":35.603},{"x":1754173140810,"y":35.858},{"x":1754173080675,"y":49.001},{"x":1754173020574,"y":58.626},{"x":1754172960421,"y":62.731},{"x":1754172900322,"y":66.926},{"x":1754172842965,"y":52.79},{"x":1754172782843,"y":38.938},{"x":1754172722716,"y":36.746},{"x":1754172662594,"y":36.538},{"x":1754172602468,"y":41.309},{"x":1754172542337,"y":39.86},{"x":1754172482213,"y":39.367},{"x":1754172422089,"y":38.615},{"x":1754172361964,"y":40.645},{"x":1754172301835,"y":43.184},{"x":1754172241698,"y":41.057},{"x":1754172181571,"y":44.485},{"x":1754172121446,"y":44.332},{"x":1754172061333,"y":46.612},{"x":1754172001098,"y":44.252},{"x":1754171940778,"y":53.689},{"x":1754171880658,"y":46.836},{"x":1754171820566,"y":47.728},{"x":1754171760474,"y":47.689},{"x":1754171700280,"y":60.148},{"x":1754171642991,"y":59.566},{"x":1754171582858,"y":57.718},{"x":1754171522775,"y":56.412},{"x":1754171462632,"y":60.794},{"x":1754171402480,"y":48.239},{"x":1754171342350,"y":56.023},{"x":1754171282225,"y":59.078},{"x":1754171222106,"y":54.318},{"x":1754171161956,"y":55.015},{"x":1754171101816,"y":46.135},{"x":1754171041679,"y":42.217},{"x":1754170981566,"y":44.472},{"x":1754170921435,"y":43.681},{"x":1754170861300,"y":45.581},{"x":1754170801174,"y":49.806},{"x":1754170741037,"y":50.874},{"x":1754170680899,"y":56.317},{"x":1754170620779,"y":52.912},{"x":1754170560667,"y":51.743},{"x":1754170500517,"y":51.822},{"x":1754170440348,"y":51.422},{"x":1754170380169,"y":52.294},{"x":1754170322910,"y":49.541},{"x":1754170262766,"y":47.335},{"x":1754170202651,"y":59.096},{"x":1754170142509,"y":59.752},{"x":1754170082403,"y":64.499},{"x":1754170022255,"y":61.181},{"x":1754169962125,"y":56.366},{"x":1754169901990,"y":45.342},{"x":1754169841863,"y":45.115},{"x":1754169781738,"y":44.352},{"x":1754169721596,"y":48.394},{"x":1754169661459,"y":47.255},{"x":1754169601317,"y":41.09},{"x":1754169541156,"y":41.899},{"x":1754169481016,"y":45.023},{"x":1754169420877,"y":49.555},{"x":1754169360739,"y":45.766},{"x":1754169300642,"y":48.016},{"x":1754169240497,"y":50.263},{"x":1754169180369,"y":49.907},{"x":1754169120229,"y":52.826},{"x":1754169062934,"y":44.915},{"x":1754169002805,"y":48.215},{"x":1754168942672,"y":43.909},{"x":1754168882553,"y":49.277},{"x":1754168822425,"y":48.37},{"x":1754168762318,"y":48.1},{"x":1754168702168,"y":52.013},{"x":1754168642033,"y":48.668},{"x":1754168581916,"y":44.82},{"x":1754168521774,"y":42.343},{"x":1754168461647,"y":43.922},{"x":1754168401537,"y":61.547},{"x":1754168341365,"y":44.16},{"x":1754168281228,"y":45.31},{"x":1754168221098,"y":44.28},{"x":1754168160953,"y":46.367},{"x":1754168100853,"y":47.044},{"x":1754168040700,"y":45.55},{"x":1754167980573,"y":48.769},{"x":1754167920530,"y":76.462},{"x":1754167860361,"y":77.552},{"x":1754167803017,"y":76.559},{"x":1754167742889,"y":76.086},{"x":1754167682756,"y":73.974},{"x":1754167622650,"y":46.661},{"x":1754167562499,"y":44.741},{"x":1754167502385,"y":47.052},{"x":1754167442243,"y":47.518},{"x":1754167382113,"y":51.55},{"x":1754167321982,"y":54.086},{"x":1754167261859,"y":57.144},{"x":1754167201738,"y":52.54},{"x":1754167141609,"y":55.637},{"x":1754167081486,"y":55.57},{"x":1754167021357,"y":70.859},{"x":1754166961233,"y":76.789},{"x":1754166901110,"y":52.034},{"x":1754166840964,"y":52.316},{"x":1754166780825,"y":54.884},{"x":1754166720750,"y":49.471},{"x":1754166660570,"y":50.664},{"x":1754166600498,"y":52.618},{"x":1754166540269,"y":47.826},{"x":1754166480183,"y":52.476},{"x":1754166422909,"y":54.132},{"x":1754166362847,"y":55.643},{"x":1754166302656,"y":50.888},{"x":1754166242524,"y":47.312},{"x":1754166182399,"y":63.073},{"x":1754166122282,"y":75.206},{"x":1754166062106,"y":77.322},{"x":1754166001956,"y":75.768},{"x":1754165941794,"y":76.052},{"x":1754165881658,"y":74.97},{"x":1754165821532,"y":76.375},{"x":1754165761395,"y":77.256},{"x":1754165701261,"y":72.804},{"x":1754165641116,"y":73.458},{"x":1754165580959,"y":57.164},{"x":1754165520828,"y":54.859},{"x":1754165460697,"y":52.699},{"x":1754165400601,"y":47.611},{"x":1754165340397,"y":48.736},{"x":1754165280265,"y":50.713},{"x":1754165220042,"y":56.52},{"x":1754165162896,"y":55.976},{"x":1754165102762,"y":53.201},{"x":1754165042626,"y":48.936},{"x":1754164982504,"y":46.759},{"x":1754164922376,"y":48.395},{"x":1754164862263,"y":46.819},{"x":1754164802192,"y":39.368},{"x":1754164741958,"y":45.164},{"x":1754164681816,"y":42.242},{"x":1754164621684,"y":40.981},{"x":1754164561559,"y":44.316},{"x":1754164501436,"y":40.328},{"x":1754164441311,"y":45.605},{"x":1754164381189,"y":40.561},{"x":1754164321056,"y":40.436},{"x":1754164260921,"y":41.995},{"x":1754164200796,"y":41.624},{"x":1754164140659,"y":44.952},{"x":1754164080602,"y":53.011},{"x":1754164020417,"y":53.798},{"x":1754163960242,"y":51.158},{"x":1754163900032,"y":51.653},{"x":1754163842881,"y":62.874},{"x":1754163782760,"y":42.281},{"x":1754163722610,"y":44.828},{"x":1754163662478,"y":42.857},{"x":1754163602345,"y":45.034},{"x":1754163542222,"y":47.146},{"x":1754163482089,"y":52.594},{"x":1754163421952,"y":44.312},{"x":1754163361818,"y":61.468},{"x":1754163301689,"y":47.452},{"x":1754163241512,"y":48.355},{"x":1754163181390,"y":52.068},{"x":1754163121261,"y":42.714},{"x":1754163061141,"y":42.482},{"x":1754163001027,"y":40.294},{"x":1754162940829,"y":45.185},{"x":1754162880746,"y":47.585},{"x":1754162820584,"y":46.051},{"x":1754162760445,"y":43.705},{"x":1754162700301,"y":43.97},{"x":1754162640016,"y":61.858},{"x":1754162582896,"y":49.361},{"x":1754162522787,"y":47.3},{"x":1754162462597,"y":43.693},{"x":1754162402435,"y":56.546},{"x":1754162342279,"y":54.88},{"x":1754162282159,"y":40.56},{"x":1754162222043,"y":36.82},{"x":1754162161886,"y":40.698},{"x":1754162101759,"y":45.409},{"x":1754162041624,"y":49.828},{"x":1754161981503,"y":48.079},{"x":1754161921387,"y":42.924},{"x":1754161861250,"y":45.182},{"x":1754161801106,"y":42.462},{"x":1754161740947,"y":44.726},{"x":1754161680827,"y":42.46},{"x":1754161620698,"y":42.58},{"x":1754161560594,"y":41.084},{"x":1754161500481,"y":43.934},{"x":1754161440368,"y":56.59},{"x":1754161380131,"y":49.784},{"x":1754161322922,"y":49.054},{"x":1754161262803,"y":50.098},{"x":1754161202684,"y":49.846},{"x":1754161142546,"y":63.432},{"x":1754161082424,"y":66.256},{"x":1754161022303,"y":54.574},{"x":1754160962177,"y":69.224},{"x":1754160902032,"y":70.363},{"x":1754160841891,"y":89.027},{"x":1754160781772,"y":82.025},{"x":1754160721642,"y":65.832},{"x":1754160661518,"y":65.37},{"x":1754160601390,"y":63.169},{"x":1754160541261,"y":68.22},{"x":1754160481133,"y":57.104},{"x":1754160420994,"y":55.114},{"x":1754160360875,"y":54.834},{"x":1754160300831,"y":56.074},{"x":1754160240656,"y":56.527},{"x":1754160180458,"y":55.642},{"x":1754160120483,"y":57.268},{"x":1754160060216,"y":55.844},{"x":1754160002966,"y":53.658},{"x":1754159942837,"y":52.463},{"x":1754159882710,"y":51.973},{"x":1754159822579,"y":54.508},{"x":1754159762457,"y":54.352},{"x":1754159702324,"y":54.71},{"x":1754159642178,"y":58.862},{"x":1754159582050,"y":65.09},{"x":1754159521906,"y":62.231},{"x":1754159461774,"y":60.341},{"x":1754159401646,"y":54.93},{"x":1754159341499,"y":55.448},{"x":1754159281377,"y":59.384},{"x":1754159221254,"y":52.346},{"x":1754159161117,"y":56.485},{"x":1754159100974,"y":50.184},{"x":1754159040839,"y":48.203},{"x":1754158980718,"y":57.364},{"x":1754158920611,"y":53.887},{"x":1754158860465,"y":52.652},{"x":1754158800266,"y":51.299},{"x":1754158740116,"y":52.375},{"x":1754158682899,"y":52.882},{"x":1754158622775,"y":53.226},{"x":1754158562646,"y":55.799},{"x":1754158502516,"y":56.411},{"x":1754158442385,"y":61.788},{"x":1754158382261,"y":55.7},{"x":1754158322132,"y":53.688},{"x":1754158261979,"y":51.394},{"x":1754158201853,"y":53.476},{"x":1754158141722,"y":53.66},{"x":1754158081597,"y":51.983},{"x":1754158021466,"y":49.224},{"x":1754157961339,"y":55.618},{"x":1754157901209,"y":46.337},{"x":1754157841080,"y":50.279},{"x":1754157780941,"y":55.43},{"x":1754157720823,"y":62.744},{"x":1754157660710,"y":53.576},{"x":1754157600675,"y":59.402},{"x":1754157540435,"y":69.857},{"x":1754157480223,"y":70.95},{"x":1754157423016,"y":61.374},{"x":1754157362881,"y":57.98},{"x":1754157302749,"y":61.408},{"x":1754157242630,"y":69.886},{"x":1754157182532,"y":57.662},{"x":1754157122382,"y":50.413},{"x":1754157062259,"y":68.61},{"x":1754157002137,"y":74.25},{"x":1754156942007,"y":56.711},{"x":1754156881873,"y":55.799},{"x":1754156821742,"y":57.192},{"x":1754156761618,"y":58.049},{"x":1754156701480,"y":58.67},{"x":1754156641346,"y":59.478},{"x":1754156581214,"y":56.431},{"x":1754156521075,"y":53.846},{"x":1754156460923,"y":52.45},{"x":1754156400882,"y":52.609},{"x":1754156340656,"y":52.11},{"x":1754156280511,"y":67.289},{"x":1754156220418,"y":51.888},{"x":1754156160325,"y":52.619},{"x":1754156102976,"y":50.576},{"x":1754156042862,"y":53.658},{"x":1754155982720,"y":52.165},{"x":1754155922606,"y":41.734},{"x":1754155862474,"y":41.13},{"x":1754155802349,"y":43.055},{"x":1754155742224,"y":58.109},{"x":1754155682096,"y":57.792},{"x":1754155621938,"y":45.527},{"x":1754155561807,"y":50.734},{"x":1754155501675,"y":45.478},{"x":1754155441548,"y":45.731},{"x":1754155381413,"y":40.789},{"x":1754155321289,"y":42.0},{"x":1754155261116,"y":46.236},{"x":1754155200948,"y":52.463},{"x":1754155140746,"y":46.237},{"x":1754155080631,"y":46.876},{"x":1754155020542,"y":66.802},{"x":1754154960452,"y":58.225},{"x":1754154900463,"y":47.834},{"x":1754154842966,"y":37.129},{"x":1754154782836,"y":40.766},{"x":1754154722716,"y":40.298},{"x":1754154662584,"y":46.698},{"x":1754154602461,"y":45.499},{"x":1754154542337,"y":47.815},{"x":1754154482209,"y":46.207},{"x":1754154422072,"y":47.892},{"x":1754154361943,"y":50.299},{"x":1754154301818,"y":47.573},{"x":1754154241696,"y":44.124},{"x":1754154181566,"y":56.705},{"x":1754154121448,"y":46.517},{"x":1754154061352,"y":64.14},{"x":1754154001278,"y":43.142},{"x":1754153941049,"y":56.21},{"x":1754153880913,"y":52.24},{"x":1754153820760,"y":51.743},{"x":1754153760659,"y":49.0},{"x":1754153700525,"y":51.44},{"x":1754153640368,"y":46.664},{"x":1754153580169,"y":47.575},{"x":1754153522997,"y":47.614},{"x":1754153462898,"y":48.217},{"x":1754153402754,"y":48.404},{"x":1754153342620,"y":40.664},{"x":1754153282502,"y":46.02},{"x":1754153222382,"y":46.248},{"x":1754153162256,"y":43.811},{"x":1754153102118,"y":48.179},{"x":1754153041951,"y":52.6},{"x":1754152981833,"y":50.521},{"x":1754152921711,"y":51.854},{"x":1754152861612,"y":50.563},{"x":1754152801464,"y":50.107},{"x":1754152741344,"y":54.793},{"x":1754152681224,"y":64.885},{"x":1754152621122,"y":52.457},{"x":1754152560963,"y":49.501},{"x":1754152500848,"y":48.092},{"x":1754152440684,"y":57.404},{"x":1754152380595,"y":44.957},{"x":1754152320490,"y":43.469},{"x":1754152260442,"y":41.97},{"x":1754152200220,"y":46.502},{"x":1754152142916,"y":50.956},{"x":1754152082797,"y":48.701},{"x":1754152022680,"y":41.765},{"x":1754151962552,"y":48.468},{"x":1754151902428,"y":43.752},{"x":1754151842310,"y":44.249},{"x":1754151782183,"y":42.403},{"x":1754151722096,"y":41.549},{"x":1754151661903,"y":36.889},{"x":1754151601734,"y":35.039},{"x":1754151541545,"y":42.02},{"x":1754151481410,"y":44.887},{"x":1754151421290,"y":42.586},{"x":1754151361169,"y":40.459},{"x":1754151301089,"y":54.264},{"x":1754151240894,"y":37.9},{"x":1754151180769,"y":46.207},{"x":1754151120666,"y":62.947},{"x":1754151060488,"y":45.182},{"x":1754151000371,"y":44.868},{"x":1754150940178,"y":46.666},{"x":1754150882941,"y":47.513},{"x":1754150822803,"y":43.763},{"x":1754150762673,"y":47.61},{"x":1754150702545,"y":44.814},{"x":1754150642425,"y":69.03},{"x":1754150582283,"y":52.537},{"x":1754150522145,"y":54.014},{"x":1754150462013,"y":53.501},{"x":1754150401938,"y":51.163},{"x":1754150341674,"y":56.24},{"x":1754150281550,"y":67.499},{"x":1754150221428,"y":54.227},{"x":1754150161299,"y":50.227},{"x":1754150101173,"y":47.669},{"x":1754150041034,"y":42.091},{"x":1754149980906,"y":42.619},{"x":1754149920787,"y":34.466},{"x":1754149860662,"y":41.996},{"x":1754149800539,"y":41.165},{"x":1754149740308,"y":45.07},{"x":1754149680135,"y":51.508},{"x":1754149622931,"y":46.177},{"x":1754149562812,"y":57.488},{"x":1754149502685,"y":43.264},{"x":1754149442558,"y":38.384},{"x":1754149382434,"y":42.947},{"x":1754149322313,"y":41.376},{"x":1754149262182,"y":42.87},{"x":1754149202050,"y":40.889},{"x":1754149141912,"y":40.156},{"x":1754149081789,"y":45.75},{"x":1754149021665,"y":51.718},{"x":1754148961546,"y":59.842},{"x":1754148901433,"y":53.773},{"x":1754148841293,"y":51.474},{"x":1754148781181,"y":64.627},{"x":1754148721025,"y":51.57},{"x":1754148660898,"y":66.606},{"x":1754148600790,"y":43.186},{"x":1754148540639,"y":40.816},{"x":1754148480584,"y":42.041},{"x":1754148420404,"y":47.706},{"x":1754148363031,"y":45.113},{"x":1754148302899,"y":43.23},{"x":1754148242762,"y":40.916},{"x":1754148182670,"y":45.605},{"x":1754148122519,"y":50.257},{"x":1754148062369,"y":53.381},{"x":1754148002237,"y":53.436},{"x":1754147942052,"y":59.544},{"x":1754147881907,"y":51.434},{"x":1754147821783,"y":42.562},{"x":1754147761664,"y":38.29},{"x":1754147701515,"y":43.907},{"x":1754147641397,"y":45.275},{"x":1754147581273,"y":38.273},{"x":1754147521148,"y":49.052},{"x":1754147461000,"y":46.978},{"x":1754147400906,"y":42.287},{"x":1754147340736,"y":42.007},{"x":1754147280637,"y":55.708},{"x":1754147220577,"y":47.976},{"x":1754147160378,"y":48.761},{"x":1754147100244,"y":50.772},{"x":1754147043015,"y":42.186},{"x":1754146982858,"y":49.496},{"x":1754146922730,"y":40.23},{"x":1754146862590,"y":43.568},{"x":1754146802462,"y":44.999},{"x":1754146742316,"y":45.89},{"x":1754146682189,"y":45.012},{"x":1754146622065,"y":38.989},{"x":1754146561921,"y":46.759},{"x":1754146501791,"y":57.042},{"x":1754146441674,"y":52.067},{"x":1754146381534,"y":53.648},{"x":1754146321413,"y":52.231},{"x":1754146261280,"y":57.152},{"x":1754146201157,"y":48.385},{"x":1754146140992,"y":49.175},{"x":1754146080872,"y":43.589},{"x":1754146020745,"y":38.837},{"x":1754145960615,"y":51.976},{"x":1754145900652,"y":31.757},{"x":1754145840376,"y":33.055},{"x":1754145780219,"y":27.466},{"x":1754145722914,"y":30.383},{"x":1754145662787,"y":23.903},{"x":1754145602656,"y":14.652},{"x":1754145542514,"y":28.075},{"x":1754145482390,"y":43.95},{"x":1754145422265,"y":30.044},{"x":1754145362138,"y":36.701},{"x":1754145302006,"y":49.402},{"x":1754145241881,"y":35.495},{"x":1754145181752,"y":42.054},{"x":1754145121626,"y":34.397},{"x":1754145061500,"y":52.518},{"x":1754145001386,"y":31.472},{"x":1754144941248,"y":32.714},{"x":1754144881126,"y":34.364},{"x":1754144820987,"y":35.083},{"x":1754144760860,"y":32.779},{"x":1754144700741,"y":45.39},{"x":1754144640637,"y":41.077},{"x":1754144580443,"y":38.868},{"x":1754144520460,"y":47.567},{"x":1754144460181,"y":41.924},{"x":1754144402938,"y":53.089},{"x":1754144342771,"y":50.671},{"x":1754144282625,"y":49.127},{"x":1754144222495,"y":46.19},{"x":1754144162355,"y":46.097},{"x":1754144102228,"y":47.486},{"x":1754144042099,"y":39.521},{"x":1754143981953,"y":38.286},{"x":1754143921829,"y":45.422},{"x":1754143861706,"y":54.443},{"x":1754143801586,"y":46.938},{"x":1754143741483,"y":47.182},{"x":1754143681334,"y":57.116},{"x":1754143621209,"y":50.168},{"x":1754143561066,"y":43.757},{"x":1754143500941,"y":52.548},{"x":1754143440795,"y":51.964},{"x":1754143380665,"y":49.446},{"x":1754143320577,"y":49.697},{"x":1754143260539,"y":55.382},{"x":1754143200390,"y":45.145},{"x":1754143140145,"y":43.757},{"x":1754143082909,"y":47.772},{"x":1754143022788,"y":41.878},{"x":1754142962663,"y":48.15},{"x":1754142902536,"y":38.851},{"x":1754142842409,"y":43.542},{"x":1754142782283,"y":33.47},{"x":1754142722161,"y":21.469},{"x":1754142662026,"y":21.317},{"x":1754142601968,"y":17.759},{"x":1754142541770,"y":48.596},{"x":1754142481651,"y":16.104},{"x":1754142421518,"y":16.937},{"x":1754142361395,"y":14.444},{"x":1754142301284,"y":16.802},{"x":1754142241151,"y":14.158},{"x":1754142181003,"y":7.199},{"x":1754142120879,"y":43.631},{"x":1754142060749,"y":21.305},{"x":1754142000646,"y":33.559},{"x":1754141940513,"y":21.78},{"x":1754141880334,"y":13.824},{"x":1754141823027,"y":21.425},{"x":1754141762897,"y":40.129},{"x":1754141702782,"y":20.015},{"x":1754141642644,"y":22.264},{"x":1754141582517,"y":48.486},{"x":1754141522391,"y":34.002},{"x":1754141462282,"y":36.335},{"x":1754141402144,"y":50.774},{"x":1754141342006,"y":34.504},{"x":1754141281873,"y":19.61},{"x":1754141221747,"y":26.234},{"x":1754141161626,"y":27.186},{"x":1754141101495,"y":34.426},{"x":1754141041350,"y":25.643},{"x":1754140981221,"y":24.724},{"x":1754140921116,"y":19.09},{"x":1754140860953,"y":8.326},{"x":1754140800817,"y":27.786},{"x":1754140740661,"y":28.337},{"x":1754140680507,"y":33.757},{"x":1754140620442,"y":43.316},{"x":1754140560254,"y":39.574},{"x":1754140503037,"y":43.064},{"x":1754140442877,"y":43.158},{"x":1754140382773,"y":40.307},{"x":1754140322628,"y":32.533},{"x":1754140262494,"y":21.481},{"x":1754140202364,"y":14.552},{"x":1754140142236,"y":11.419},{"x":1754140082107,"y":15.407},{"x":1754140021975,"y":26.224},{"x":1754139961851,"y":10.054},{"x":1754139901720,"y":12.323},{"x":1754139841590,"y":10.708},{"x":1754139781466,"y":14.478},{"x":1754139721344,"y":13.543},{"x":1754139661219,"y":13.958},{"x":1754139600989,"y":22.148},{"x":1754139540723,"y":28.846},{"x":1754139480626,"y":27.035},{"x":1754139420504,"y":21.036},{"x":1754139360242,"y":33.592},{"x":1754139302944,"y":26.095},{"x":1754139242815,"y":41.747},{"x":1754139182686,"y":45.959},{"x":1754139122566,"y":22.404},{"x":1754139062444,"y":41.729},{"x":1754139002304,"y":19.266},{"x":1754138942182,"y":16.42},{"x":1754138882052,"y":30.746},{"x":1754138821917,"y":32.249},{"x":1754138761781,"y":22.432},{"x":1754138701656,"y":26.296},{"x":1754138641525,"y":23.735},{"x":1754138581401,"y":29.38},{"x":1754138521278,"y":14.897},{"x":1754138461139,"y":26.008},{"x":1754138401032,"y":29.623},{"x":1754138340868,"y":30.56},{"x":1754138280724,"y":33.275},{"x":1754138220634,"y":36.023},{"x":1754138160540,"y":31.486},{"x":1754138100491,"y":34.544},{"x":1754138040182,"y":41.172},{"x":1754137982961,"y":33.979},{"x":1754137922839,"y":34.753},{"x":1754137862715,"y":36.719},{"x":1754137802563,"y":38.755},{"x":1754137742444,"y":31.624},{"x":1754137682317,"y":41.468},{"x":1754137622192,"y":41.276},{"x":1754137562048,"y":36.797},{"x":1754137501922,"y":35.28},{"x":1754137441788,"y":42.486},{"x":1754137381663,"y":36.268},{"x":1754137321532,"y":31.7},{"x":1754137261376,"y":26.554},{"x":1754137201259,"y":29.922},{"x":1754137141079,"y":35.4},{"x":1754137080937,"y":21.216},{"x":1754137020820,"y":41.448},{"x":1754136960683,"y":36.523},{"x":1754136900601,"y":40.619},{"x":1754136840443,"y":27.284},{"x":1754136780225,"y":37.007},{"x":1754136722920,"y":37.104},{"x":1754136662785,"y":28.991},{"x":1754136602665,"y":21.984},{"x":1754136542541,"y":26.857},{"x":1754136482409,"y":28.962},{"x":1754136422272,"y":44.107},{"x":1754136362142,"y":36.55},{"x":1754136302013,"y":40.303},{"x":1754136241883,"y":40.92},{"x":1754136181754,"y":42.553},{"x":1754136121638,"y":38.358},{"x":1754136061522,"y":39.324},{"x":1754136001502,"y":37.093},{"x":1754135941236,"y":50.158},{"x":1754135881105,"y":30.532},{"x":1754135820962,"y":29.947},{"x":1754135760831,"y":27.934},{"x":1754135700707,"y":32.518},{"x":1754135640557,"y":50.104},{"x":1754135580427,"y":52.619},{"x":1754135520297,"y":56.237},{"x":1754135463023,"y":54.319},{"x":1754135402881,"y":52.871},{"x":1754135342754,"y":46.915},{"x":1754135282621,"y":38.299},{"x":1754135222494,"y":42.836},{"x":1754135162234,"y":52.042},{"x":1754135102116,"y":42.546},{"x":1754135041954,"y":45.062},{"x":1754134981820,"y":44.092},{"x":1754134921693,"y":49.352},{"x":1754134861562,"y":40.904},{"x":1754134801432,"y":42.172},{"x":1754134741305,"y":46.298},{"x":1754134681167,"y":41.647},{"x":1754134621032,"y":46.817},{"x":1754134560906,"y":50.128},{"x":1754134500793,"y":48.323},{"x":1754134440649,"y":53.243},{"x":1754134380534,"y":46.444},{"x":1754134320462,"y":44.71},{"x":1754134260207,"y":33.535},{"x":1754134202966,"y":59.434},{"x":1754134142842,"y":43.324},{"x":1754134082716,"y":44.765},{"x":1754134022576,"y":45.7},{"x":1754133962465,"y":61.868},{"x":1754133902317,"y":37.6},{"x":1754133842177,"y":38.137},{"x":1754133782055,"y":41.656},{"x":1754133721931,"y":52.165},{"x":1754133661774,"y":42.564},{"x":1754133601614,"y":44.641},{"x":1754133541445,"y":49.596},{"x":1754133481322,"y":45.157},{"x":1754133421205,"y":51.035},{"x":1754133361054,"y":46.542},{"x":1754133300966,"y":48.706},{"x":1754133240769,"y":39.902},{"x":1754133180641,"y":43.036},{"x":1754133120540,"y":49.111},{"x":1754133060399,"y":50.542},{"x":1754133000311,"y":50.132},{"x":1754132940117,"y":57.38},{"x":1754132882927,"y":52.775},{"x":1754132822781,"y":57.797},{"x":1754132762658,"y":59.74},{"x":1754132702532,"y":55.871},{"x":1754132642414,"y":54.068},{"x":1754132582270,"y":57.533},{"x":1754132522140,"y":54.138},{"x":1754132462021,"y":43.376},{"x":1754132401985,"y":52.792},{"x":1754132341738,"y":42.69},{"x":1754132281609,"y":37.169},{"x":1754132221483,"y":34.984},{"x":1754132161357,"y":34.922},{"x":1754132101231,"y":44.449},{"x":1754132041100,"y":54.358},{"x":1754131980956,"y":39.802},{"x":1754131920837,"y":30.445},{"x":1754131860709,"y":26.857},{"x":1754131800605,"y":34.352},{"x":1754131740502,"y":39.234},{"x":1754131680314,"y":47.34},{"x":1754131620174,"y":52.567},{"x":1754131562930,"y":50.314},{"x":1754131502806,"y":42.182},{"x":1754131442679,"y":38.842},{"x":1754131382562,"y":38.848},{"x":1754131322433,"y":62.146},{"x":1754131262299,"y":69.916},{"x":1754131202168,"y":59.968},{"x":1754131142039,"y":53.759},{"x":1754131081898,"y":38.141},{"x":1754131021747,"y":20.585},{"x":1754130961620,"y":21.625},{"x":1754130901490,"y":25.196},{"x":1754130841363,"y":18.232},{"x":1754130781236,"y":24.298},{"x":1754130721113,"y":20.215},{"x":1754130660949,"y":29.093},{"x":1754130600885,"y":28.828},{"x":1754130540710,"y":28.097},{"x":1754130480636,"y":48.164},{"x":1754130420524,"y":40.738},{"x":1754130360359,"y":31.396},{"x":1754130300166,"y":35.819},{"x":1754130242904,"y":28.615},{"x":1754130182784,"y":32.874},{"x":1754130122657,"y":25.156},{"x":1754130062495,"y":29.786},{"x":1754130002331,"y":37.412},{"x":1754129942187,"y":18.74},{"x":1754129882062,"y":33.834},{"x":1754129821932,"y":34.964},{"x":1754129761776,"y":41.878},{"x":1754129701652,"y":44.646},{"x":1754129641515,"y":42.35},{"x":1754129581390,"y":18.132},{"x":1754129521265,"y":22.158},{"x":1754129461133,"y":29.291},{"x":1754129401003,"y":38.48},{"x":1754129340866,"y":39.696},{"x":1754129280737,"y":35.108},{"x":1754129220600,"y":38.801},{"x":1754129160578,"y":33.348},{"x":1754129100354,"y":33.389},{"x":1754129040263,"y":22.594},{"x":1754128982972,"y":32.672},{"x":1754128922844,"y":20.96},{"x":1754128862717,"y":25.831},{"x":1754128802589,"y":21.557},{"x":1754128742444,"y":31.912},{"x":1754128682322,"y":34.511},{"x":1754128622198,"y":38.75},{"x":1754128562074,"y":22.271},{"x":1754128501941,"y":25.543},{"x":1754128441820,"y":34.6},{"x":1754128381697,"y":36.956},{"x":1754128321566,"y":39.47},{"x":1754128261438,"y":39.547},{"x":1754128201309,"y":41.251},{"x":1754128141179,"y":44.37},{"x":1754128081038,"y":40.195},{"x":1754128020913,"y":37.944},{"x":1754127960718,"y":54.984},{"x":1754127900727,"y":40.866},{"x":1754127840506,"y":40.126},{"x":1754127780328,"y":32.93},{"x":1754127720171,"y":31.244},{"x":1754127662925,"y":33.91},{"x":1754127602787,"y":31.774},{"x":1754127542666,"y":34.585},{"x":1754127482539,"y":35.945},{"x":1754127422414,"y":47.186},{"x":1754127362286,"y":48.712},{"x":1754127302157,"y":44.332},{"x":1754127242030,"y":44.652},{"x":1754127181895,"y":52.157},{"x":1754127121776,"y":43.228},{"x":1754127061648,"y":40.33},{"x":1754127001531,"y":44.114},{"x":1754126941393,"y":59.987},{"x":1754126881267,"y":60.287},{"x":1754126821130,"y":59.844},{"x":1754126760994,"y":64.631},{"x":1754126700890,"y":61.367},{"x":1754126640745,"y":57.014},{"x":1754126580613,"y":62.117},{"x":1754126520520,"y":55.711},{"x":1754126460354,"y":58.34},{"x":1754126400061,"y":51.527},{"x":1754126342871,"y":44.87},{"x":1754126282746,"y":46.58},{"x":1754126222619,"y":58.36},{"x":1754126162491,"y":33.99},{"x":1754126102362,"y":41.351},{"x":1754126042231,"y":43.35},{"x":1754125982108,"y":43.636},{"x":1754125921952,"y":49.529},{"x":1754125861832,"y":48.77},{"x":1754125801704,"y":33.625},{"x":1754125741574,"y":43.727},{"x":1754125681445,"y":43.961},{"x":1754125621310,"y":57.733},{"x":1754125561174,"y":56.425},{"x":1754125501050,"y":53.579},{"x":1754125440894,"y":59.69},{"x":1754125380779,"y":59.819},{"x":1754125320651,"y":65.858},{"x":1754125260584,"y":64.164},{"x":1754125200497,"y":61.754},{"x":1754125140233,"y":60.731},{"x":1754125082927,"y":68.105},{"x":1754125022798,"y":65.322},{"x":1754124962677,"y":79.261},{"x":1754124902553,"y":65.934},{"x":1754124842418,"y":64.64},{"x":1754124782311,"y":49.702},{"x":1754124722166,"y":49.2},{"x":1754124662016,"y":41.54},{"x":1754124601897,"y":44.926},{"x":1754124541747,"y":43.544},{"x":1754124481623,"y":37.088},{"x":1754124421498,"y":40.016},{"x":1754124361378,"y":40.519},{"x":1754124301255,"y":35.801},{"x":1754124241112,"y":40.885},{"x":1754124180969,"y":41.627},{"x":1754124120848,"y":43.562},{"x":1754124060722,"y":46.261},{"x":1754124000633,"y":38.09},{"x":1754123940528,"y":44.278},{"x":1754123880323,"y":40.222},{"x":1754123820131,"y":38.166},{"x":1754123762931,"y":43.21},{"x":1754123702816,"y":39.188},{"x":1754123642675,"y":43.883},{"x":1754123582565,"y":41.536},{"x":1754123522415,"y":51.74},{"x":1754123462293,"y":51.266},{"x":1754123402175,"y":45.578},{"x":1754123342038,"y":43.212},{"x":1754123281909,"y":41.684},{"x":1754123221777,"y":45.95},{"x":1754123161650,"y":46.456},{"x":1754123101517,"y":49.762},{"x":1754123041383,"y":39.75},{"x":1754122981262,"y":38.63},{"x":1754122921133,"y":43.2},{"x":1754122860954,"y":42.728},{"x":1754122800934,"y":43.266},{"x":1754122740618,"y":46.015},{"x":1754122680587,"y":38.207},{"x":1754122620435,"y":55.618},{"x":1754122560245,"y":45.887},{"x":1754122503015,"y":43.177},{"x":1754122442883,"y":44.51},{"x":1754122382752,"y":47.986},{"x":1754122322624,"y":46.004},{"x":1754122262507,"y":46.405},{"x":1754122202384,"y":44.933},{"x":1754122142264,"y":45.434},{"x":1754122082154,"y":49.404},{"x":1754122022022,"y":47.624},{"x":1754121961878,"y":48.721},{"x":1754121901761,"y":49.999},{"x":1754121841628,"y":43.526},{"x":1754121781507,"y":39.707},{"x":1754121721369,"y":46.082},{"x":1754121661242,"y":52.036},{"x":1754121601032,"y":37.916},{"x":1754121540738,"y":31.644},{"x":1754121480614,"y":36.914},{"x":1754121420514,"y":30.19},{"x":1754121360363,"y":27.113},{"x":1754121300206,"y":45.022},{"x":1754121242916,"y":46.715},{"x":1754121182800,"y":55.03},{"x":1754121122677,"y":60.32},{"x":1754121062559,"y":54.389},{"x":1754121002410,"y":58.267},{"x":1754120942272,"y":50.207},{"x":1754120882136,"y":50.311},{"x":1754120822012,"y":51.577},{"x":1754120761878,"y":50.006},{"x":1754120701759,"y":44.177},{"x":1754120641626,"y":47.719},{"x":1754120581513,"y":50.178},{"x":1754120521387,"y":42.743},{"x":1754120461257,"y":56.735},{"x":1754120401137,"y":53.982},{"x":1754120341003,"y":48.677},{"x":1754120280870,"y":52.316},{"x":1754120220740,"y":49.392},{"x":1754120160684,"y":58.872},{"x":1754120100539,"y":42.174},{"x":1754120040320,"y":45.653},{"x":1754119980206,"y":46.168},{"x":1754119922938,"y":44.464},{"x":1754119862804,"y":39.215},{"x":1754119802681,"y":31.379},{"x":1754119742554,"y":27.478},{"x":1754119682423,"y":35.526},{"x":1754119622304,"y":36.57},{"x":1754119562170,"y":48.043},{"x":1754119502035,"y":43.606},{"x":1754119441896,"y":39.392},{"x":1754119381798,"y":35.533},{"x":1754119321653,"y":43.312},{"x":1754119261513,"y":33.181},{"x":1754119201355,"y":34.297},{"x":1754119141201,"y":39.931},{"x":1754119081074,"y":44.068},{"x":1754119020926,"y":41.958},{"x":1754118960801,"y":57.965},{"x":1754118900728,"y":44.776},{"x":1754118840558,"y":45.476},{"x":1754118780417,"y":48.799},{"x":1754118720507,"y":44.402},{"x":1754118663013,"y":43.505},{"x":1754118602873,"y":44.986},{"x":1754118542755,"y":48.115},{"x":1754118482628,"y":47.161},{"x":1754118422505,"y":48.349},{"x":1754118362384,"y":47.753},{"x":1754118302262,"y":50.578},{"x":1754118242134,"y":46.091},{"x":1754118182008,"y":45.518},{"x":1754118121872,"y":45.787},{"x":1754118061754,"y":46.499},{"x":1754118001712,"y":51.292},{"x":1754117941469,"y":55.05},{"x":1754117881339,"y":72.011},{"x":1754117821233,"y":69.532},{"x":1754117761078,"y":73.723},{"x":1754117700950,"y":77.593},{"x":1754117640814,"y":60.036},{"x":1754117580694,"y":48.677},{"x":1754117520629,"y":55.595},{"x":1754117460498,"y":51.886},{"x":1754117400317,"y":50.976},{"x":1754117340231,"y":49.08},{"x":1754117282937,"y":51.836},{"x":1754117222819,"y":50.926},{"x":1754117162684,"y":54.846},{"x":1754117102547,"y":52.846},{"x":1754117042424,"y":53.112},{"x":1754116982303,"y":50.038},{"x":1754116922181,"y":52.734},{"x":1754116862037,"y":52.675},{"x":1754116801914,"y":57.649},{"x":1754116741785,"y":48.854},{"x":1754116681663,"y":48.128},{"x":1754116621539,"y":46.292},{"x":1754116561248,"y":47.129},{"x":1754116501099,"y":53.988},{"x":1754116440954,"y":61.094},{"x":1754116380837,"y":60.38},{"x":1754116320726,"y":58.115},{"x":1754116260606,"y":56.545},{"x":1754116200484,"y":63.149},{"x":1754116140397,"y":51.251},{"x":1754116080247,"y":53.111},{"x":1754116022993,"y":52.276},{"x":1754115962867,"y":52.644},{"x":1754115902739,"y":54.107},{"x":1754115842619,"y":56.052},{"x":1754115782494,"y":42.029},{"x":1754115722392,"y":62.914},{"x":1754115662251,"y":49.806},{"x":1754115602061,"y":62.68},{"x":1754115541899,"y":59.005},{"x":1754115481768,"y":76.072},{"x":1754115421644,"y":52.636},{"x":1754115361514,"y":56.711},{"x":1754115301378,"y":47.802},{"x":1754115241246,"y":64.83},{"x":1754115181128,"y":47.509},{"x":1754115120981,"y":60.751},{"x":1754115060852,"y":63.245},{"x":1754115000751,"y":58.896},{"x":1754114940585,"y":65.075},{"x":1754114880505,"y":47.106},{"x":1754114820365,"y":47.801},{"x":1754114760224,"y":51.661},{"x":1754114702940,"y":43.787},{"x":1754114642814,"y":47.233},{"x":1754114582694,"y":46.816},{"x":1754114522568,"y":46.883},{"x":1754114462441,"y":50.858},{"x":1754114402316,"y":47.491},{"x":1754114342161,"y":47.278},{"x":1754114282043,"y":52.414},{"x":1754114221914,"y":44.97},{"x":1754114161789,"y":48.031},{"x":1754114101653,"y":43.546},{"x":1754114041530,"y":42.85},{"x":1754113981407,"y":42.712},{"x":1754113921292,"y":43.825},{"x":1754113861161,"y":47.028},{"x":1754113801040,"y":43.541},{"x":1754113740893,"y":45.606},{"x":1754113680763,"y":44.896},{"x":1754113620641,"y":47.0},{"x":1754113560532,"y":43.981},{"x":1754113500545,"y":45.601},{"x":1754113440247,"y":46.76},{"x":1754113382972,"y":57.067},{"x":1754113322846,"y":66.538},{"x":1754113262727,"y":65.501},{"x":1754113202609,"y":74.917},{"x":1754113142481,"y":71.059},{"x":1754113082356,"y":52.471},{"x":1754113022234,"y":46.069},{"x":1754112962109,"y":45.092},{"x":1754112901982,"y":50.653},{"x":1754112841861,"y":45.16},{"x":1754112781744,"y":42.751},{"x":1754112721618,"y":43.819},{"x":1754112661495,"y":43.326},{"x":1754112601383,"y":48.644},{"x":1754112541244,"y":42.616},{"x":1754112481116,"y":45.913},{"x":1754112420980,"y":43.782},{"x":1754112360850,"y":43.156},{"x":1754112300774,"y":44.441},{"x":1754112240645,"y":45.336},{"x":1754112180526,"y":44.344},{"x":1754112120364,"y":45.188},{"x":1754112060218,"y":44.837},{"x":1754112002895,"y":48.598},{"x":1754111942752,"y":43.406},{"x":1754111882620,"y":44.588},{"x":1754111822497,"y":47.947},{"x":1754111762369,"y":47.112},{"x":1754111702236,"y":45.966},{"x":1754111642122,"y":45.86},{"x":1754111581966,"y":43.354},{"x":1754111521838,"y":46.04},{"x":1754111461704,"y":50.526},{"x":1754111401576,"y":47.682},{"x":1754111341450,"y":53.004},{"x":1754111281328,"y":42.481},{"x":1754111221196,"y":41.177},{"x":1754111161080,"y":41.179},{"x":1754111100934,"y":40.992},{"x":1754111040816,"y":46.288},{"x":1754110980660,"y":40.36},{"x":1754110920562,"y":47.653},{"x":1754110860441,"y":46.757},{"x":1754110800374,"y":45.662},{"x":1754110743009,"y":48.424},{"x":1754110682894,"y":68.996},{"x":1754110622751,"y":68.429},{"x":1754110562647,"y":66.372},{"x":1754110502501,"y":67.207},{"x":1754110442373,"y":59.311},{"x":1754110382252,"y":40.682},{"x":1754110322117,"y":51.032},{"x":1754110261979,"y":44.032},{"x":1754110201875,"y":43.096},{"x":1754110141735,"y":43.265},{"x":1754110081613,"y":48.344},{"x":1754110021494,"y":47.309},{"x":1754109961375,"y":45.067},{"x":1754109901255,"y":42.701},{"x":1754109841121,"y":41.245},{"x":1754109780977,"y":43.694},{"x":1754109720852,"y":38.497},{"x":1754109660729,"y":39.262},{"x":1754109600665,"y":39.737},{"x":1754109540491,"y":51.881},{"x":1754109480353,"y":57.667},{"x":1754109420241,"y":51.491},{"x":1754109363020,"y":53.291},{"x":1754109302885,"y":52.139},{"x":1754109242758,"y":45.515},{"x":1754109182622,"y":49.254},{"x":1754109122505,"y":44.204},{"x":1754109062376,"y":48.191},{"x":1754109002251,"y":42.68},{"x":1754108942131,"y":44.216},{"x":1754108881989,"y":75.619},{"x":1754108821856,"y":71.552},{"x":1754108761724,"y":74.147},{"x":1754108701608,"y":68.477},{"x":1754108641485,"y":68.862},{"x":1754108581340,"y":41.888},{"x":1754108521193,"y":42.797},{"x":1754108461052,"y":46.192},{"x":1754108400958,"y":47.012},{"x":1754108340718,"y":43.042},{"x":1754108280585,"y":45.595},{"x":1754108220485,"y":49.392},{"x":1754108160363,"y":47.663},{"x":1754108100245,"y":45.983},{"x":1754108042962,"y":45.955},{"x":1754107982834,"y":42.799},{"x":1754107922709,"y":40.258},{"x":1754107862587,"y":40.262},{"x":1754107802468,"y":39.578},{"x":1754107742338,"y":40.484},{"x":1754107682209,"y":41.992},{"x":1754107622085,"y":49.081},{"x":1754107561947,"y":47.794},{"x":1754107501821,"y":50.986},{"x":1754107441698,"y":43.331},{"x":1754107381575,"y":43.632},{"x":1754107321461,"y":48.169},{"x":1754107261351,"y":36.158},{"x":1754107201002,"y":43.766},{"x":1754107140787,"y":41.455},{"x":1754107080665,"y":44.66},{"x":1754107020552,"y":47.213},{"x":1754106960492,"y":43.884},{"x":1754106900283,"y":42.084},{"x":1754106840212,"y":42.052},{"x":1754106782899,"y":59.059},{"x":1754106722780,"y":50.393},{"x":1754106662658,"y":52.674},{"x":1754106602539,"y":28.211},{"x":1754106542400,"y":35.563},{"x":1754106482281,"y":47.478},{"x":1754106422157,"y":40.285},{"x":1754106361897,"y":34.333},{"x":1754106301775,"y":34.738},{"x":1754106241649,"y":33.892},{"x":1754106181518,"y":31.453},{"x":1754106121393,"y":40.846},{"x":1754106061275,"y":41.62},{"x":1754106001177,"y":42.108},{"x":1754105941019,"y":39.97},{"x":1754105880883,"y":40.097},{"x":1754105820758,"y":27.292},{"x":1754105760660,"y":28.634},{"x":1754105700550,"y":29.32},{"x":1754105640369,"y":31.68},{"x":1754105580238,"y":30.984},{"x":1754105522965,"y":33.245},{"x":1754105462847,"y":36.702},{"x":1754105402726,"y":33.27},{"x":1754105342608,"y":44.039},{"x":1754105282475,"y":40.925},{"x":1754105222360,"y":52.42},{"x":1754105162224,"y":56.497},{"x":1754105102102,"y":53.773},{"x":1754105041964,"y":39.677},{"x":1754104981837,"y":37.898},{"x":1754104921689,"y":30.286},{"x":1754104861514,"y":33.642},{"x":1754104801381,"y":27.479},{"x":1754104741234,"y":29.846},{"x":1754104681107,"y":30.592},{"x":1754104621059,"y":33.786},{"x":1754104560788,"y":36.929},{"x":1754104500703,"y":35.845},{"x":1754104440685,"y":34.11},{"x":1754104380278,"y":43.073},{"x":1754104322938,"y":42.991},{"x":1754104262794,"y":41.74},{"x":1754104202625,"y":40.234},{"x":1754104142501,"y":38.431},{"x":1754104082348,"y":32.098},{"x":1754104022229,"y":29.99},{"x":1754103962119,"y":31.688},{"x":1754103901980,"y":33.516},{"x":1754103841849,"y":34.691},{"x":1754103781964,"y":31.818},{"x":1754103721810,"y":33.733},{"x":1754103661619,"y":27.884},{"x":1754103602368,"y":27.743},{"x":1754103542922,"y":28.184},{"x":1754103482787,"y":27.619},{"x":1754103422669,"y":27.028},{"x":1754103362541,"y":29.706},{"x":1754103302417,"y":36.677},{"x":1754103242289,"y":35.899},{"x":1754103182166,"y":36.496},{"x":1754103122078,"y":38.758},{"x":1754103061897,"y":47.214},{"x":1754103001778,"y":35.515},{"x":1754102941646,"y":30.852},{"x":1754102881518,"y":54.139},{"x":1754102821391,"y":56.567},{"x":1754102761192,"y":54.161},{"x":1754102701067,"y":58.32},{"x":1754102640912,"y":53.71},{"x":1754102580791,"y":31.752},{"x":1754102520692,"y":31.505},{"x":1754102460538,"y":31.92},{"x":1754102400571,"y":37.088},{"x":1754102340211,"y":33.514},{"x":1754102282995,"y":33.484},{"x":1754102222877,"y":32.645},{"x":1754102162742,"y":31.792},{"x":1754102102618,"y":31.27},{"x":1754102042492,"y":30.667},{"x":1754101982355,"y":34.244},{"x":1754101922229,"y":33.692},{"x":1754101862103,"y":33.474},{"x":1754101801966,"y":35.316},{"x":1754101741835,"y":35.222},{"x":1754101681711,"y":31.57},{"x":1754101621586,"y":37.86},{"x":1754101561463,"y":37.376},{"x":1754101501342,"y":37.628},{"x":1754101441206,"y":34.344},{"x":1754101381079,"y":33.959},{"x":1754101320948,"y":35.675},{"x":1754101260808,"y":35.069},{"x":1754101200660,"y":35.746},{"x":1754101140491,"y":38.207},{"x":1754101080367,"y":33.181},{"x":1754101020169,"y":28.754},{"x":1754100962964,"y":32.974},{"x":1754100902827,"y":34.969},{"x":1754100842711,"y":41.53},{"x":1754100782588,"y":37.807},{"x":1754100722456,"y":33.74},{"x":1754100662316,"y":33.938},{"x":1754100602182,"y":32.746},{"x":1754100542050,"y":35.244},{"x":1754100481938,"y":31.409},{"x":1754100421785,"y":31.505},{"x":1754100361650,"y":29.837},{"x":1754100301522,"y":31.751},{"x":1754100241403,"y":32.557},{"x":1754100181272,"y":56.951},{"x":1754100121135,"y":55.618},{"x":1754100060981,"y":56.167},{"x":1754100001004,"y":51.344},{"x":1754099940686,"y":31.086},{"x":1754099880534,"y":33.125},{"x":1754099820403,"y":32.968},{"x":1754099760228,"y":33.286},{"x":1754099700305,"y":31.042},{"x":1754099642928,"y":30.167},{"x":1754099582780,"y":33.998},{"x":1754099522666,"y":36.29},{"x":1754099462532,"y":35.767},{"x":1754099402404,"y":33.792},{"x":1754099342272,"y":37.025},{"x":1754099282148,"y":35.996},{"x":1754099222022,"y":28.774},{"x":1754099161891,"y":28.706},{"x":1754099101759,"y":40.972},{"x":1754099041636,"y":44.406},{"x":1754098981509,"y":46.789},{"x":1754098921371,"y":44.875},{"x":1754098861243,"y":44.276},{"x":1754098801140,"y":35.893},{"x":1754098740936,"y":39.103},{"x":1754098680815,"y":42.779},{"x":1754098620700,"y":38.506},{"x":1754098560608,"y":34.039},{"x":1754098500489,"y":34.368},{"x":1754098440364,"y":31.386},{"x":1754098382988,"y":57.688},{"x":1754098322861,"y":57.476},{"x":1754098262725,"y":55.025},{"x":1754098202626,"y":53.412},{"x":1754098142465,"y":55.26},{"x":1754098082336,"y":40.058},{"x":1754098022215,"y":39.931},{"x":1754097962086,"y":40.457},{"x":1754097901929,"y":37.238},{"x":1754097841802,"y":33.122},{"x":1754097781686,"y":32.209},{"x":1754097721575,"y":32.729},{"x":1754097661410,"y":31.445},{"x":1754097601258,"y":32.965},{"x":1754097541122,"y":32.078},{"x":1754097480962,"y":31.016},{"x":1754097420846,"y":38.628},{"x":1754097360723,"y":35.712},{"x":1754097300606,"y":41.509},{"x":1754097240395,"y":37.604},{"x":1754097180268,"y":34.997},{"x":1754097122969,"y":38.08},{"x":1754097062840,"y":32.19},{"x":1754097002719,"y":31.192},{"x":1754096942593,"y":30.431},{"x":1754096882461,"y":31.596},{"x":1754096822349,"y":36.437},{"x":1754096762214,"y":30.079},{"x":1754096702093,"y":29.144},{"x":1754096641935,"y":27.852},{"x":1754096581805,"y":35.05},{"x":1754096521687,"y":39.65},{"x":1754096461559,"y":37.325},{"x":1754096401479,"y":33.816},{"x":1754096341279,"y":32.508},{"x":1754096281154,"y":31.847},{"x":1754096221019,"y":34.034},{"x":1754096160874,"y":32.016},{"x":1754096100769,"y":32.543},{"x":1754096040628,"y":32.98},{"x":1754095980511,"y":33.89},{"x":1754095920361,"y":32.393},{"x":1754095860219,"y":32.359},{"x":1754095802967,"y":33.914},{"x":1754095742831,"y":33.389},{"x":1754095682710,"y":34.033},{"x":1754095622585,"y":31.17},{"x":1754095562387,"y":43.136},{"x":1754095502264,"y":43.034},{"x":1754095442144,"y":45.397},{"x":1754095382012,"y":44.544},{"x":1754095321885,"y":43.846},{"x":1754095261754,"y":61.384},{"x":1754095201652,"y":51.575},{"x":1754095141500,"y":51.844},{"x":1754095081376,"y":55.603},{"x":1754095021240,"y":56.585},{"x":1754094961111,"y":37.856},{"x":1754094900970,"y":32.6},{"x":1754094840843,"y":34.89},{"x":1754094780719,"y":33.488},{"x":1754094720665,"y":32.366},{"x":1754094660451,"y":38.011},{"x":1754094600433,"y":36.035},{"x":1754094540180,"y":35.899},{"x":1754094482919,"y":32.712},{"x":1754094422823,"y":31.733},{"x":1754094362672,"y":40.024},{"x":1754094302565,"y":34.081},{"x":1754094242414,"y":38.922},{"x":1754094182301,"y":45.58},{"x":1754094122153,"y":46.488},{"x":1754094061993,"y":44.522},{"x":1754094001889,"y":45.122},{"x":1754093941691,"y":42.781},{"x":1754093881552,"y":33.118},{"x":1754093821418,"y":30.036},{"x":1754093761293,"y":30.611},{"x":1754093701167,"y":30.716},{"x":1754093641030,"y":31.65},{"x":1754093580904,"y":34.181},{"x":1754093520770,"y":37.492},{"x":1754093460684,"y":36.516},{"x":1754093400513,"y":35.852},{"x":1754093340383,"y":34.831},{"x":1754093280165,"y":32.629},{"x":1754093222973,"y":33.556},{"x":1754093162828,"y":30.478},{"x":1754093102701,"y":34.71},{"x":1754093042587,"y":33.115},{"x":1754092982454,"y":32.898},{"x":1754092922345,"y":35.903},{"x":1754092862214,"y":37.986},{"x":1754092802129,"y":40.252},{"x":1754092741943,"y":36.661},{"x":1754092681836,"y":35.041},{"x":1754092621699,"y":33.167},{"x":1754092561567,"y":30.343},{"x":1754092501426,"y":35.134},{"x":1754092441299,"y":33.726},{"x":1754092381180,"y":37.753},{"x":1754092321045,"y":35.221},{"x":1754092260902,"y":33.94},{"x":1754092200770,"y":36.089},{"x":1754092140616,"y":33.65},{"x":1754092080514,"y":36.732},{"x":1754092020434,"y":38.934},{"x":1754091960219,"y":39.187},{"x":1754091902994,"y":44.67},{"x":1754091842855,"y":36.984},{"x":1754091782737,"y":47.26},{"x":1754091722623,"y":41.438},{"x":1754091662492,"y":39.148},{"x":1754091602367,"y":42.575},{"x":1754091542244,"y":35.124},{"x":1754091482120,"y":32.833},{"x":1754091421987,"y":38.443},{"x":1754091361848,"y":60.372},{"x":1754091301729,"y":64.823},{"x":1754091241601,"y":59.226},{"x":1754091181478,"y":61.381},{"x":1754091121339,"y":57.256},{"x":1754091061221,"y":33.234},{"x":1754091001079,"y":36.088},{"x":1754090940893,"y":33.017},{"x":1754090880779,"y":37.087},{"x":1754090820641,"y":39.182},{"x":1754090760539,"y":35.818},{"x":1754090700365,"y":40.154},{"x":1754090640235,"y":34.886},{"x":1754090582939,"y":33.714},{"x":1754090522820,"y":37.939},{"x":1754090462658,"y":34.487},{"x":1754090402502,"y":37.148},{"x":1754090342304,"y":35.904},{"x":1754090282185,"y":50.172},{"x":1754090222058,"y":58.493},{"x":1754090161921,"y":53.54},{"x":1754090101793,"y":56.242},{"x":1754090041664,"y":48.217},{"x":1754089981536,"y":41.4},{"x":1754089921412,"y":36.769},{"x":1754089861281,"y":35.461},{"x":1754089801163,"y":43.304},{"x":1754089741036,"y":39.268},{"x":1754089680892,"y":38.982},{"x":1754089620776,"y":35.546},{"x":1754089560662,"y":34.519},{"x":1754089500660,"y":36.368},{"x":1754089440427,"y":33.122},{"x":1754089380293,"y":33.712},{"x":1754089322973,"y":40.97},{"x":1754089262853,"y":41.975},{"x":1754089202732,"y":45.809},{"x":1754089142592,"y":49.364},{"x":1754089082477,"y":37.202},{"x":1754089022358,"y":36.32},{"x":1754088962235,"y":41.519},{"x":1754088902110,"y":38.864},{"x":1754088841967,"y":42.838},{"x":1754088781843,"y":40.079},{"x":1754088721722,"y":37.134},{"x":1754088661600,"y":38.261},{"x":1754088601493,"y":38.862},{"x":1754088541340,"y":45.832},{"x":1754088481224,"y":42.167},{"x":1754088421091,"y":38.608},{"x":1754088360951,"y":38.394},{"x":1754088300883,"y":38.17},{"x":1754088240725,"y":41.936},{"x":1754088180613,"y":37.856},{"x":1754088120446,"y":41.286},{"x":1754088060287,"y":34.794},{"x":1754088003021,"y":33.286},{"x":1754087942891,"y":40.86},{"x":1754087882770,"y":36.353},{"x":1754087822647,"y":37.89},{"x":1754087762522,"y":40.854},{"x":1754087702402,"y":38.664},{"x":1754087642286,"y":40.162},{"x":1754087582148,"y":36.952},{"x":1754087522021,"y":36.156},{"x":1754087461900,"y":39.628},{"x":1754087401769,"y":36.694},{"x":1754087341595,"y":41.603},{"x":1754087281461,"y":38.028},{"x":1754087221337,"y":43.274},{"x":1754087161024,"y":63.236},{"x":1754087100909,"y":61.642},{"x":1754087040780,"y":67.232},{"x":1754086980651,"y":63.66},{"x":1754086920597,"y":49.247},{"x":1754086860354,"y":40.138},{"x":1754086800318,"y":39.151},{"x":1754086742907,"y":44.297},{"x":1754086682786,"y":40.856},{"x":1754086622670,"y":38.951},{"x":1754086562540,"y":39.059},{"x":1754086502419,"y":40.783},{"x":1754086442289,"y":45.527},{"x":1754086382166,"y":40.102},{"x":1754086322031,"y":38.329},{"x":1754086261893,"y":36.932},{"x":1754086201765,"y":37.949},{"x":1754086141630,"y":45.986},{"x":1754086081506,"y":48.595},{"x":1754086021379,"y":46.45},{"x":1754085961257,"y":45.21},{"x":1754085901130,"y":43.244},{"x":1754085840971,"y":44.168},{"x":1754085780846,"y":42.245},{"x":1754085720787,"y":43.088},{"x":1754085660634,"y":57.326},{"x":1754085600602,"y":68.479},{"x":1754085540327,"y":69.902},{"x":1754085480129,"y":66.925},{"x":1754085422918,"y":71.478},{"x":1754085362788,"y":55.493},{"x":1754085302666,"y":49.448},{"x":1754085242528,"y":43.954},{"x":1754085182416,"y":41.795},{"x":1754085122271,"y":42.25},{"x":1754085062149,"y":39.444},{"x":1754085002008,"y":46.466},{"x":1754084941866,"y":41.515},{"x":1754084881746,"y":41.899},{"x":1754084821613,"y":48.551},{"x":1754084761475,"y":45.926},{"x":1754084701360,"y":50.476},{"x":1754084641213,"y":49.909},{"x":1754084581067,"y":51.103},{"x":1754084520930,"y":50.75},{"x":1754084460803,"y":63.29},{"x":1754084400712,"y":69.126},{"x":1754084340530,"y":56.26},{"x":1754084280359,"y":55.786},{"x":1754084220210,"y":53.66},{"x":1754084162968,"y":45.934},{"x":1754084102846,"y":44.632},{"x":1754084042721,"y":45.872},{"x":1754083982581,"y":46.411},{"x":1754083922456,"y":50.234},{"x":1754083862333,"y":45.835},{"x":1754083802213,"y":41.42},{"x":1754083742091,"y":44.52},{"x":1754083681948,"y":42.586},{"x":1754083621835,"y":57.965},{"x":1754083561689,"y":58.139},{"x":1754083501554,"y":55.622},{"x":1754083441411,"y":58.837},{"x":1754083381294,"y":57.637},{"x":1754083321214,"y":44.614},{"x":1754083260996,"y":49.517},{"x":1754083200930,"y":43.43},{"x":1754083140694,"y":43.787},{"x":1754083080571,"y":43.852},{"x":1754083020479,"y":40.362},{"x":1754082960332,"y":43.794},{"x":1754082903017,"y":37.736},{"x":1754082842885,"y":38.455},{"x":1754082782766,"y":38.6},{"x":1754082722666,"y":59.782},{"x":1754082662513,"y":68.861},{"x":1754082602393,"y":70.111},{"x":1754082542258,"y":69.269},{"x":1754082482134,"y":65.923},{"x":1754082421994,"y":54.21},{"x":1754082361873,"y":46.381},{"x":1754082301748,"y":43.422},{"x":1754082241627,"y":44.45},{"x":1754082181491,"y":40.218},{"x":1754082121348,"y":54.359},{"x":1754082061221,"y":51.046},{"x":1754082001081,"y":51.984},{"x":1754081940752,"y":53.498},{"x":1754081880632,"y":55.406},{"x":1754081820530,"y":60.907},{"x":1754081760499,"y":56.749},{"x":1754081700223,"y":57.828},{"x":1754081642998,"y":58.556},{"x":1754081582857,"y":55.553},{"x":1754081522733,"y":61.717},{"x":1754081462608,"y":51.494},{"x":1754081402487,"y":51.469},{"x":1754081342360,"y":57.488},{"x":1754081282237,"y":52.844},{"x":1754081222114,"y":56.249},{"x":1754081161951,"y":51.455},{"x":1754081101821,"y":55.901},{"x":1754081041676,"y":61.15},{"x":1754080981544,"y":62.167},{"x":1754080921418,"y":63.698},{"x":1754080861299,"y":73.18},{"x":1754080801169,"y":72.451},{"x":1754080741025,"y":68.261},{"x":1754080680885,"y":82.891},{"x":1754080620766,"y":82.138},{"x":1754080560669,"y":73.224},{"x":1754080500587,"y":70.505},{"x":1754080440436,"y":59.166},{"x":1754080380281,"y":76.554},{"x":1754080322990,"y":69.598},{"x":1754080262859,"y":77.747},{"x":1754080202740,"y":78.5},{"x":1754080142617,"y":81.379},{"x":1754080082533,"y":70.906},{"x":1754080022372,"y":71.104},{"x":1754079962243,"y":65.239},{"x":1754079902114,"y":70.956},{"x":1754079841981,"y":64.595},{"x":1754079781855,"y":62.122},{"x":1754079721735,"y":64.973},{"x":1754079661603,"y":70.436},{"x":1754079601408,"y":65.78},{"x":1754079541252,"y":90.054},{"x":1754079481126,"y":73.079},{"x":1754079420990,"y":60.505},{"x":1754079360854,"y":55.098},{"x":1754079300754,"y":56.288},{"x":1754079240583,"y":58.807},{"x":1754079180461,"y":57.763},{"x":1754079120379,"y":81.269},{"x":1754079060203,"y":80.392},{"x":1754079002960,"y":76.897},{"x":1754078942824,"y":80.791},{"x":1754078882715,"y":73.439},{"x":1754078822576,"y":72.084},{"x":1754078762451,"y":75.011},{"x":1754078702325,"y":88.284},{"x":1754078642199,"y":56.286},{"x":1754078582076,"y":57.18},{"x":1754078521945,"y":71.683},{"x":1754078461807,"y":61.008},{"x":1754078401697,"y":64.445},{"x":1754078341523,"y":58.62},{"x":1754078281391,"y":56.682},{"x":1754078221266,"y":54.803},{"x":1754078161132,"y":55.836},{"x":1754078100991,"y":57.634},{"x":1754078040864,"y":54.87},{"x":1754077980763,"y":62.952},{"x":1754077920758,"y":60.055},{"x":1754077860625,"y":81.653},{"x":1754077800492,"y":58.795},{"x":1754077740216,"y":59.13},{"x":1754077682977,"y":59.53},{"x":1754077622843,"y":39.049},{"x":1754077562766,"y":43.35},{"x":1754077502593,"y":45.811},{"x":1754077442457,"y":43.022},{"x":1754077382332,"y":44.398},{"x":1754077322209,"y":45.655},{"x":1754077262076,"y":42.145},{"x":1754077201958,"y":42.065},{"x":1754077141819,"y":57.378},{"x":1754077081695,"y":54.149},{"x":1754077021563,"y":61.06},{"x":1754076961428,"y":71.352},{"x":1754076901305,"y":58.78},{"x":1754076841173,"y":70.489},{"x":1754076781039,"y":58.268},{"x":1754076720910,"y":60.21},{"x":1754076660781,"y":50.14},{"x":1754076600703,"y":53.406},{"x":1754076540591,"y":58.849},{"x":1754076480457,"y":58.157},{"x":1754076420385,"y":55.024},{"x":1754076362980,"y":55.044},{"x":1754076302848,"y":57.383},{"x":1754076242724,"y":56.67},{"x":1754076182591,"y":56.79},{"x":1754076122465,"y":51.706},{"x":1754076062301,"y":58.352},{"x":1754076002146,"y":50.101},{"x":1754075941965,"y":56.131},{"x":1754075881842,"y":52.692},{"x":1754075821713,"y":58.043},{"x":1754075761580,"y":73.994},{"x":1754075701460,"y":73.374},{"x":1754075641326,"y":78.347},{"x":1754075581199,"y":83.243},{"x":1754075521065,"y":75.946},{"x":1754075460935,"y":62.297},{"x":1754075400866,"y":65.678},{"x":1754075340656,"y":63.734},{"x":1754075280603,"y":63.655},{"x":1754075220409,"y":61.046},{"x":1754075160386,"y":56.503},{"x":1754075103035,"y":61.171},{"x":1754075042877,"y":59.959},{"x":1754074982761,"y":57.859},{"x":1754074922631,"y":61.445},{"x":1754074862506,"y":55.59},{"x":1754074802382,"y":62.692},{"x":1754074742239,"y":53.08},{"x":1754074682113,"y":59.002},{"x":1754074621952,"y":49.634},{"x":1754074561835,"y":53.111},{"x":1754074501700,"y":52.168},{"x":1754074441578,"y":45.492},{"x":1754074381445,"y":56.47},{"x":1754074321325,"y":52.458},{"x":1754074261202,"y":52.542},{"x":1754074201073,"y":46.505},{"x":1754074140933,"y":54.266},{"x":1754074080815,"y":57.332},{"x":1754074020688,"y":78.45},{"x":1754073960579,"y":60.978},{"x":1754073900476,"y":57.482},{"x":1754073840371,"y":46.541},{"x":1754073782993,"y":55.043},{"x":1754073722875,"y":47.124},{"x":1754073662754,"y":49.493},{"x":1754073602625,"y":51.275},{"x":1754073542500,"y":45.266},{"x":1754073482369,"y":46.71},{"x":1754073422241,"y":38.75},{"x":1754073362112,"y":38.778},{"x":1754073301971,"y":59.62},{"x":1754073241841,"y":50.684},{"x":1754073181745,"y":47.992},{"x":1754073121571,"y":53.917},{"x":1754073061444,"y":46.181},{"x":1754073001348,"y":49.43},{"x":1754072941198,"y":50.4},{"x":1754072881071,"y":41.846},{"x":1754072820967,"y":53.936},{"x":1754072760812,"y":57.996},{"x":1754072700699,"y":47.161},{"x":1754072640574,"y":45.93},{"x":1754072580484,"y":42.93},{"x":1754072520261,"y":69.476},{"x":1754072462973,"y":72.802},{"x":1754072402826,"y":54.425},{"x":1754072342659,"y":54.749},{"x":1754072282523,"y":61.232},{"x":1754072222388,"y":48.437},{"x":1754072162254,"y":46.208},{"x":1754072102123,"y":47.22},{"x":1754072042010,"y":44.04},{"x":1754071981864,"y":40.631},{"x":1754071921732,"y":37.698},{"x":1754071861594,"y":41.088},{"x":1754071801473,"y":43.397},{"x":1754071741345,"y":48.71},{"x":1754071681230,"y":45.587},{"x":1754071621105,"y":42.438},{"x":1754071560952,"y":63.625},{"x":1754071500829,"y":64.526},{"x":1754071440706,"y":36.571},{"x":1754071380584,"y":39.709},{"x":1754071320464,"y":42.986},{"x":1754071260305,"y":46.585},{"x":1754071203093,"y":43.871},{"x":1754071142871,"y":39.955},{"x":1754071082750,"y":40.139},{"x":1754071022618,"y":45.089},{"x":1754070962503,"y":43.865},{"x":1754070902382,"y":35.818},{"x":1754070842246,"y":36.931},{"x":1754070782122,"y":36.071},{"x":1754070721985,"y":39.031},{"x":1754070661853,"y":45.346},{"x":1754070601733,"y":39.241},{"x":1754070541581,"y":45.089},{"x":1754070481460,"y":40.534},{"x":1754070421332,"y":39.335},{"x":1754070361213,"y":57.949},{"x":1754070301163,"y":36.851},{"x":1754070240888,"y":40.127},{"x":1754070180724,"y":42.073},{"x":1754070120599,"y":44.471},{"x":1754070060474,"y":55.0},{"x":1754070000336,"y":57.155},{"x":1754069942998,"y":46.008},{"x":1754069882867,"y":52.442},{"x":1754069822721,"y":59.688},{"x":1754069762589,"y":43.688},{"x":1754069702457,"y":36.775},{"x":1754069642329,"y":58.619},{"x":1754069582198,"y":59.057},{"x":1754069522072,"y":65.983},{"x":1754069461923,"y":63.852},{"x":1754069401805,"y":64.885},{"x":1754069341660,"y":47.69},{"x":1754069281531,"y":40.696},{"x":1754069221402,"y":44.512},{"x":1754069161287,"y":38.705},{"x":1754069101148,"y":46.915},{"x":1754069040970,"y":41.014},{"x":1754068980845,"y":43.009},{"x":1754068920726,"y":35.741},{"x":1754068860634,"y":38.212},{"x":1754068800477,"y":52.825},{"x":1754068740234,"y":47.504},{"x":1754068682997,"y":47.567},{"x":1754068622877,"y":59.777},{"x":1754068562734,"y":43.766},{"x":1754068502604,"y":62.286},{"x":1754068442481,"y":32.846},{"x":1754068382356,"y":44.351},{"x":1754068322234,"y":28.279},{"x":1754068262103,"y":40.316},{"x":1754068201965,"y":41.686},{"x":1754068141831,"y":41.996},{"x":1754068081702,"y":26.876},{"x":1754068021571,"y":36.266},{"x":1754067961463,"y":35.339},{"x":1754067901326,"y":22.873},{"x":1754067841219,"y":22.859},{"x":1754067781073,"y":33.679},{"x":1754067720941,"y":31.22},{"x":1754067660832,"y":35.93},{"x":1754067600807,"y":33.98},{"x":1754067540586,"y":27.34},{"x":1754067480442,"y":36.574},{"x":1754067420263,"y":29.846},{"x":1754067362941,"y":33.23},{"x":1754067302818,"y":38.64},{"x":1754067242690,"y":31.753},{"x":1754067182560,"y":42.54},{"x":1754067122436,"y":47.215},{"x":1754067062293,"y":52.61},{"x":1754067002168,"y":39.413},{"x":1754066942020,"y":49.74},{"x":1754066881905,"y":40.098},{"x":1754066821752,"y":36.712},{"x":1754066761602,"y":35.191},{"x":1754066701481,"y":38.284},{"x":1754066641357,"y":32.094},{"x":1754066581221,"y":35.581},{"x":1754066521094,"y":43.412},{"x":1754066460950,"y":27.451},{"x":1754066400886,"y":36.03},{"x":1754066340689,"y":26.089},{"x":1754066280569,"y":33.586},{"x":1754066220584,"y":33.229},{"x":1754066160354,"y":32.519},{"x":1754066100130,"y":45.282},{"x":1754066042902,"y":42.661},{"x":1754065982780,"y":36.871},{"x":1754065922643,"y":40.206},{"x":1754065862517,"y":59.915},{"x":1754065802385,"y":58.08},{"x":1754065742261,"y":66.562},{"x":1754065682131,"y":56.476},{"x":1754065621981,"y":59.461},{"x":1754065561855,"y":54.637},{"x":1754065501716,"y":47.093},{"x":1754065441586,"y":34.964},{"x":1754065381462,"y":32.359},{"x":1754065321335,"y":37.31},{"x":1754065261201,"y":55.064},{"x":1754065201033,"y":55.794},{"x":1754065140830,"y":40.61},{"x":1754065080713,"y":37.375},{"x":1754065020642,"y":30.642},{"x":1754064960484,"y":32.524},{"x":1754064900354,"y":28.573},{"x":1754064843030,"y":25.074},{"x":1754064782896,"y":25.067},{"x":1754064722770,"y":29.78},{"x":1754064662645,"y":32.994},{"x":1754064602507,"y":41.216},{"x":1754064542385,"y":35.654},{"x":1754064482264,"y":35.694},{"x":1754064422142,"y":30.011},{"x":1754064361995,"y":40.711},{"x":1754064301890,"y":38.514},{"x":1754064241746,"y":36.422},{"x":1754064181616,"y":49.792},{"x":1754064121475,"y":49.03},{"x":1754064061348,"y":25.555},{"x":1754064001086,"y":28.422},{"x":1754063940872,"y":31.79},{"x":1754063880749,"y":25.646},{"x":1754063820645,"y":41.845},{"x":1754063760576,"y":43.009},{"x":1754063700355,"y":34.11},{"x":1754063640128,"y":35.772},{"x":1754063582925,"y":41.563},{"x":1754063522792,"y":44.536},{"x":1754063462677,"y":34.752},{"x":1754063402564,"y":27.551},{"x":1754063342432,"y":37.375},{"x":1754063282301,"y":38.514},{"x":1754063222178,"y":51.486},{"x":1754063162051,"y":46.988},{"x":1754063101916,"y":48.635},{"x":1754063041791,"y":43.06},{"x":1754062981662,"y":43.349},{"x":1754062921536,"y":47.377},{"x":1754062861425,"y":28.657},{"x":1754062801289,"y":27.769},{"x":1754062741164,"y":27.589},{"x":1754062681036,"y":40.818},{"x":1754062620906,"y":28.928},{"x":1754062560768,"y":26.56},{"x":1754062500621,"y":30.425},{"x":1754062440476,"y":27.612},{"x":1754062380412,"y":33.838},{"x":1754062320225,"y":34.06},{"x":1754062262939,"y":46.57},{"x":1754062202797,"y":42.125},{"x":1754062142687,"y":46.082},{"x":1754062082551,"y":50.718},{"x":1754062022448,"y":45.031},{"x":1754061962302,"y":36.472},{"x":1754061902176,"y":52.447},{"x":1754061842052,"y":39.97},{"x":1754061781913,"y":34.972},{"x":1754061721821,"y":39.125},{"x":1754061661638,"y":39.274},{"x":1754061601431,"y":35.11},{"x":1754061541238,"y":29.412},{"x":1754061481092,"y":22.784},{"x":1754061420958,"y":16.81},{"x":1754061360832,"y":19.646},{"x":1754061300741,"y":24.398},{"x":1754061240552,"y":20.987},{"x":1754061180505,"y":21.541},{"x":1754061120352,"y":32.147},{"x":1754061060120,"y":41.332},{"x":1754061002903,"y":47.665},{"x":1754060942781,"y":39.982},{"x":1754060882633,"y":37.751},{"x":1754060822500,"y":40.454},{"x":1754060762379,"y":33.332},{"x":1754060702255,"y":32.879},{"x":1754060642138,"y":41.893},{"x":1754060581991,"y":36.852},{"x":1754060521858,"y":55.128},{"x":1754060461734,"y":40.804},{"x":1754060401726,"y":39.012},{"x":1754060341409,"y":38.981},{"x":1754060281248,"y":53.012},{"x":1754060221111,"y":33.116},{"x":1754060160964,"y":26.992},{"x":1754060100844,"y":27.997},{"x":1754060040708,"y":35.856},{"x":1754059980622,"y":30.046},{"x":1754059920519,"y":37.565},{"x":1754059860303,"y":53.506},{"x":1754059800164,"y":36.995},{"x":1754059742906,"y":33.961},{"x":1754059682760,"y":29.568},{"x":1754059622636,"y":32.071},{"x":1754059562512,"y":32.148},{"x":1754059502380,"y":46.664},{"x":1754059442252,"y":45.172},{"x":1754059382112,"y":46.494},{"x":1754059321960,"y":39.854},{"x":1754059261829,"y":43.555},{"x":1754059201703,"y":46.242},{"x":1754059141575,"y":37.01},{"x":1754059081454,"y":37.248},{"x":1754059021318,"y":35.838},{"x":1754058961193,"y":32.666},{"x":1754058901066,"y":37.675},{"x":1754058840926,"y":35.986},{"x":1754058780791,"y":41.221},{"x":1754058720673,"y":35.07},{"x":1754058660555,"y":40.41},{"x":1754058600502,"y":56.568},{"x":1754058540347,"y":42.138},{"x":1754058482993,"y":54.482},{"x":1754058422863,"y":48.889},{"x":1754058362737,"y":45.571},{"x":1754058302600,"y":56.544},{"x":1754058242442,"y":33.412},{"x":1754058182320,"y":35.879},{"x":1754058122191,"y":38.088},{"x":1754058062052,"y":34.868},{"x":1754058001889,"y":41.327},{"x":1754057941730,"y":40.183},{"x":1754057881598,"y":61.709},{"x":1754057821468,"y":38.99},{"x":1754057761345,"y":47.652},{"x":1754057701251,"y":46.954},{"x":1754057641083,"y":33.127},{"x":1754057580949,"y":24.824},{"x":1754057520826,"y":25.186},{"x":1754057460661,"y":9.948},{"x":1754057400583,"y":27.498},{"x":1754057340411,"y":35.908},{"x":1754057280212,"y":35.314},{"x":1754057222905,"y":15.662},{"x":1754057162775,"y":35.837},{"x":1754057102649,"y":41.864},{"x":1754057042538,"y":21.979},{"x":1754056982399,"y":18.892},{"x":1754056922274,"y":15.397},{"x":1754056862151,"y":10.051},{"x":1754056802083,"y":13.902},{"x":1754056741859,"y":9.092},{"x":1754056681734,"y":14.802},{"x":1754056621608,"y":21.78},{"x":1754056561486,"y":19.016},{"x":1754056501358,"y":44.165},{"x":1754056441233,"y":35.926},{"x":1754056381110,"y":44.274},{"x":1754056320970,"y":39.342},{"x":1754056260838,"y":37.115},{"x":1754056200759,"y":46.349},{"x":1754056140612,"y":62.591},{"x":1754056080500,"y":49.619},{"x":1754056020285,"y":65.081},{"x":1754055962972,"y":42.394},{"x":1754055902846,"y":28.512},{"x":1754055842718,"y":15.5},{"x":1754055782592,"y":30.134},{"x":1754055722464,"y":23.035},{"x":1754055662337,"y":25.651},{"x":1754055602218,"y":29.644},{"x":1754055542079,"y":39.62},{"x":1754055481945,"y":44.112},{"x":1754055421820,"y":46.984},{"x":1754055361685,"y":28.058},{"x":1754055301555,"y":35.693},{"x":1754055241431,"y":35.225},{"x":1754055181298,"y":20.969},{"x":1754055121171,"y":24.065},{"x":1754055061034,"y":21.871},{"x":1754055000959,"y":28.693},{"x":1754054940753,"y":37.168},{"x":1754054880664,"y":33.438},{"x":1754054820550,"y":34.28},{"x":1754054760579,"y":40.002},{"x":1754054700150,"y":49.874},{"x":1754054642968,"y":43.53},{"x":1754054582841,"y":44.069},{"x":1754054522711,"y":33.102},{"x":1754054462536,"y":27.719},{"x":1754054402375,"y":24.056},{"x":1754054342220,"y":20.154},{"x":1754054282090,"y":31.349},{"x":1754054221961,"y":37.58},{"x":1754054161814,"y":38.776},{"x":1754054101690,"y":29.79},{"x":1754054041540,"y":41.898},{"x":1754053981399,"y":37.112},{"x":1754053921270,"y":42.263},{"x":1754053861142,"y":46.684},{"x":1754053800957,"y":46.006},{"x":1754053740793,"y":40.256},{"x":1754053680719,"y":37.298},{"x":1754053620517,"y":37.65},{"x":1754053560323,"y":36.9},{"x":1754053500182,"y":38.932},{"x":1754053442922,"y":39.049},{"x":1754053382796,"y":49.288},{"x":1754053322673,"y":57.196},{"x":1754053262544,"y":56.282},{"x":1754053202441,"y":49.895},{"x":1754053142237,"y":59.339},{"x":1754053082109,"y":43.422},{"x":1754053021966,"y":34.792},{"x":1754052961842,"y":34.097},{"x":1754052901721,"y":34.567},{"x":1754052841588,"y":43.626},{"x":1754052781456,"y":24.967},{"x":1754052721326,"y":43.862},{"x":1754052661197,"y":43.642},{"x":1754052601060,"y":15.713},{"x":1754052540914,"y":17.008},{"x":1754052480805,"y":12.421},{"x":1754052420670,"y":11.612},{"x":1754052360541,"y":21.37},{"x":1754052300509,"y":23.084},{"x":1754052240276,"y":24.457},{"x":1754052182973,"y":22.585},{"x":1754052122834,"y":31.501},{"x":1754052062705,"y":18.66},{"x":1754052002576,"y":13.796},{"x":1754051942450,"y":22.582},{"x":1754051882318,"y":17.588},{"x":1754051822195,"y":14.888},{"x":1754051762069,"y":35.155},{"x":1754051701941,"y":22.531},{"x":1754051641803,"y":21.154},{"x":1754051581698,"y":30.186},{"x":1754051521543,"y":42.551},{"x":1754051461416,"y":39.114},{"x":1754051401321,"y":44.599},{"x":1754051341160,"y":60.86},{"x":1754051281023,"y":52.199},{"x":1754051220924,"y":49.472},{"x":1754051160801,"y":65.002},{"x":1754051100707,"y":47.377},{"x":1754051040682,"y":37.446},{"x":1754050980686,"y":41.378},{"x":1754050920407,"y":37.218},{"x":1754050862888,"y":53.818},{"x":1754050802740,"y":32.032},{"x":1754050742592,"y":37.656},{"x":1754050682466,"y":37.172},{"x":1754050622349,"y":36.452},{"x":1754050562222,"y":26.926},{"x":1754050502098,"y":30.071},{"x":1754050441956,"y":45.266},{"x":1754050381835,"y":51.065},{"x":1754050321708,"y":54.538},{"x":1754050261581,"y":48.706},{"x":1754050201448,"y":49.802},{"x":1754050141324,"y":76.768},{"x":1754050081212,"y":44.98},{"x":1754050021076,"y":43.036},{"x":1754049960939,"y":27.396},{"x":1754049900825,"y":27.096},{"x":1754049840742,"y":25.336},{"x":1754049780598,"y":31.936},{"x":1754049720427,"y":40.188},{"x":1754049660399,"y":18.584},{"x":1754049603005,"y":36.396},{"x":1754049542859,"y":35.926},{"x":1754049482724,"y":45.442},{"x":1754049422599,"y":32.134},{"x":1754049362473,"y":36.208},{"x":1754049302346,"y":14.987},{"x":1754049242219,"y":18.118},{"x":1754049182082,"y":29.281},{"x":1754049121946,"y":34.879},{"x":1754049061828,"y":33.324},{"x":1754049001698,"y":36.97},{"x":1754048941565,"y":31.874},{"x":1754048881445,"y":34.793},{"x":1754048821311,"y":29.773},{"x":1754048761184,"y":38.597},{"x":1754048701065,"y":32.94},{"x":1754048640917,"y":24.485},{"x":1754048580787,"y":28.919},{"x":1754048520692,"y":31.844},{"x":1754048460581,"y":39.959},{"x":1754048400423,"y":36.484},{"x":1754048340263,"y":31.89},{"x":1754048282961,"y":29.632},{"x":1754048222817,"y":24.492},{"x":1754048162697,"y":52.088},{"x":1754048102575,"y":35.191},{"x":1754048042444,"y":21.276},{"x":1754047982311,"y":42.772},{"x":1754047922186,"y":32.898},{"x":1754047862051,"y":42.491},{"x":1754047801929,"y":56.622},{"x":1754047741791,"y":50.657},{"x":1754047681636,"y":43.487},{"x":1754047621512,"y":54.383},{"x":1754047561401,"y":36.696},{"x":1754047501277,"y":61.445},{"x":1754047441122,"y":41.453},{"x":1754047380971,"y":22.486},{"x":1754047320857,"y":39.347},{"x":1754047260701,"y":41.016},{"x":1754047200831,"y":30.625},{"x":1754047140430,"y":56.533},{"x":1754047080218,"y":63.107},{"x":1754047022940,"y":52.338},{"x":1754046962809,"y":49.775},{"x":1754046902678,"y":36.221},{"x":1754046842555,"y":25.234},{"x":1754046782430,"y":20.146},{"x":1754046722307,"y":17.005},{"x":1754046662198,"y":13.798},{"x":1754046602061,"y":13.39},{"x":1754046541914,"y":23.395},{"x":1754046481781,"y":15.354},{"x":1754046421649,"y":39.077},{"x":1754046361522,"y":35.969},{"x":1754046301410,"y":29.298},{"x":1754046241282,"y":37.252},{"x":1754046181154,"y":38.951},{"x":1754046121013,"y":12.294},{"x":1754046060878,"y":18.614},{"x":1754046000855,"y":19.343},{"x":1754045940606,"y":17.012},{"x":1754045880493,"y":16.714},{"x":1754045820332,"y":21.223},{"x":1754045762987,"y":16.73},{"x":1754045702844,"y":12.794},{"x":1754045642713,"y":15.402},{"x":1754045582586,"y":14.868},{"x":1754045522464,"y":27.106},{"x":1754045462328,"y":18.568},{"x":1754045402151,"y":23.942},{"x":1754045342010,"y":9.869},{"x":1754045281879,"y":30.048},{"x":1754045221753,"y":15.977},{"x":1754045161579,"y":21.823},{"x":1754045101475,"y":24.54},{"x":1754045041322,"y":38.286},{"x":1754044981203,"y":38.196},{"x":1754044921067,"y":18.655},{"x":1754044860934,"y":23.227},{"x":1754044800843,"y":26.963},{"x":1754044740692,"y":31.932},{"x":1754044680649,"y":36.478},{"x":1754044620527,"y":34.104},{"x":1754044560248,"y":30.61},{"x":1754044503017,"y":33.968},{"x":1754044442877,"y":41.976},{"x":1754044382751,"y":33.377},{"x":1754044322618,"y":37.142},{"x":1754044262489,"y":41.134},{"x":1754044202370,"y":44.37},{"x":1754044142241,"y":35.393},{"x":1754044082112,"y":42.338},{"x":1754044021967,"y":43.837},{"x":1754043961830,"y":42.599},{"x":1754043901699,"y":44.599},{"x":1754043841576,"y":24.097},{"x":1754043781448,"y":13.375},{"x":1754043721317,"y":14.784},{"x":1754043661153,"y":34.634},{"x":1754043601032,"y":32.18},{"x":1754043540786,"y":37.318},{"x":1754043480670,"y":31.878},{"x":1754043420575,"y":21.053},{"x":1754043360385,"y":22.147},{"x":1754043300321,"y":23.538},{"x":1754043242975,"y":18.692},{"x":1754043182836,"y":19.394},{"x":1754043122710,"y":42.125},{"x":1754043062581,"y":22.852},{"x":1754043002465,"y":30.672},{"x":1754042942347,"y":35.292},{"x":1754042882207,"y":38.201},{"x":1754042822061,"y":39.707},{"x":1754042761920,"y":33.905},{"x":1754042701782,"y":33.678},{"x":1754042641645,"y":37.548},{"x":1754042581516,"y":35.161},{"x":1754042521388,"y":34.031},{"x":1754042461267,"y":38.498},{"x":1754042401179,"y":46.684},{"x":1754042340873,"y":24.99},{"x":1754042280758,"y":34.961},{"x":1754042220623,"y":34.502},{"x":1754042160535,"y":45.331},{"x":1754042100351,"y":39.004},{"x":1754042043000,"y":35.033},{"x":1754041982871,"y":37.222},{"x":1754041922747,"y":34.32},{"x":1754041862523,"y":35.472},{"x":1754041801780,"y":38.683},{"x":1754041742068,"y":31.502},{"x":1754041681932,"y":29.826},{"x":1754041620854,"y":31.646},{"x":1754041560736,"y":21.467},{"x":1754041500647,"y":21.953},{"x":1754041440580,"y":17.55},{"x":1754041380285,"y":23.392},{"x":1754041320155,"y":23.316},{"x":1754041262896,"y":34.519},{"x":1754041202772,"y":33.881},{"x":1754041142649,"y":30.02},{"x":1754041082525,"y":30.925},{"x":1754041022396,"y":30.485},{"x":1754040962274,"y":33.013},{"x":1754040902148,"y":30.281},{"x":1754040842022,"y":31.11},{"x":1754040781885,"y":27.191},{"x":1754040721759,"y":28.882},{"x":1754040661634,"y":30.868},{"x":1754040601506,"y":32.519},{"x":1754040541367,"y":32.281},{"x":1754040481218,"y":34.456},{"x":1754040421112,"y":33.535},{"x":1754040360943,"y":42.456},{"x":1754040300821,"y":37.679},{"x":1754040240689,"y":27.332},{"x":1754040180562,"y":27.81},{"x":1754040120435,"y":45.882},{"x":1754040060146,"y":34.516},{"x":1754040002934,"y":33.371},{"x":1754039942744,"y":28.512},{"x":1754039882614,"y":34.554},{"x":1754039822491,"y":29.418},{"x":1754039762358,"y":33.274},{"x":1754039702228,"y":35.09},{"x":1754039642100,"y":39.538},{"x":1754039581949,"y":37.182},{"x":1754039521798,"y":39.38},{"x":1754039461673,"y":34.951},{"x":1754039401551,"y":46.429},{"x":1754039340679,"y":33.706},{"x":1754039280595,"y":39.877},{"x":1754039220663,"y":43.832},{"x":1754039160573,"y":36.584},{"x":1754039100643,"y":42.57},{"x":1754039040345,"y":48.683},{"x":1754038982970,"y":43.879},{"x":1754038922854,"y":43.11},{"x":1754038862721,"y":46.23},{"x":1754038802614,"y":39.75},{"x":1754038742467,"y":47.017},{"x":1754038682345,"y":35.096},{"x":1754038622213,"y":35.168},{"x":1754038562078,"y":36.382},{"x":1754038501962,"y":36.388},{"x":1754038441824,"y":34.902},{"x":1754038381690,"y":33.241},{"x":1754038321567,"y":33.602},{"x":1754038261444,"y":30.022},{"x":1754038201326,"y":36.257},{"x":1754038141193,"y":41.243},{"x":1754038081056,"y":33.446},{"x":1754038020935,"y":37.831},{"x":1754037960783,"y":40.648},{"x":1754037900768,"y":36.534},{"x":1754037840538,"y":36.426},{"x":1754037780363,"y":38.368},{"x":1754037720351,"y":41.713},{"x":1754037662913,"y":45.545},{"x":1754037602784,"y":43.171},{"x":1754037542648,"y":43.627},{"x":1754037482521,"y":42.413},{"x":1754037422353,"y":44.483},{"x":1754037362203,"y":48.844},{"x":1754037302840,"y":51.625},{"x":1754037242720,"y":51.944},{"x":1754037182591,"y":55.226},{"x":1754037122468,"y":71.764},{"x":1754037062349,"y":47.072},{"x":1754037002221,"y":44.06},{"x":1754036942095,"y":45.504},{"x":1754036881954,"y":48.586},{"x":1754036821822,"y":52.915},{"x":1754036761699,"y":56.551},{"x":1754036701581,"y":57.336},{"x":1754036641459,"y":55.218},{"x":1754036581334,"y":61.661},{"x":1754036521210,"y":59.612},{"x":1754036461036,"y":55.747},{"x":1754036400926,"y":53.231},{"x":1754036340709,"y":54.146},{"x":1754036280603,"y":52.05},{"x":1754036220573,"y":44.057},{"x":1754036160364,"y":42.595},{"x":1754036100220,"y":42.18},{"x":1754036042922,"y":48.241},{"x":1754035982799,"y":49.331},{"x":1754035922673,"y":46.882},{"x":1754035862550,"y":42.444},{"x":1754035802415,"y":43.393},{"x":1754035742301,"y":49.652},{"x":1754035682173,"y":46.64},{"x":1754035622048,"y":44.107},{"x":1754035561911,"y":42.698},{"x":1754035501799,"y":37.596},{"x":1754035441653,"y":48.3},{"x":1754035381526,"y":44.681},{"x":1754035321390,"y":42.583},{"x":1754035261286,"y":40.613},{"x":1754035200959,"y":47.309},{"x":1754035140745,"y":49.766},{"x":1754035080642,"y":48.386},{"x":1754035020539,"y":49.952},{"x":1754034960512,"y":50.638},{"x":1754034900227,"y":46.312},{"x":1754034842952,"y":44.814},{"x":1754034782829,"y":43.459},{"x":1754034722721,"y":40.783},{"x":1754034662580,"y":45.541},{"x":1754034602453,"y":40.397},{"x":1754034542329,"y":45.33},{"x":1754034482205,"y":45.834},{"x":1754034422082,"y":44.432},{"x":1754034361928,"y":53.586},{"x":1754034301839,"y":50.62},{"x":1754034241678,"y":56.683},{"x":1754034181550,"y":56.304},{"x":1754034121429,"y":55.453},{"x":1754034061307,"y":53.94},{"x":1754034001221,"y":47.474},{"x":1754033941035,"y":45.264},{"x":1754033880895,"y":47.918},{"x":1754033820773,"y":49.039},{"x":1754033760693,"y":49.354},{"x":1754033700554,"y":51.829},{"x":1754033640427,"y":51.673},{"x":1754033580172,"y":53.437},{"x":1754033522923,"y":50.146},{"x":1754033462793,"y":50.051},{"x":1754033402666,"y":45.728},{"x":1754033342544,"y":44.03},{"x":1754033282418,"y":42.875},{"x":1754033222282,"y":43.499},{"x":1754033162152,"y":45.288},{"x":1754033102031,"y":43.566},{"x":1754033041885,"y":47.672},{"x":1754032981750,"y":45.283},{"x":1754032921611,"y":56.724},{"x":1754032861466,"y":53.773},{"x":1754032801307,"y":49.723},{"x":1754032741141,"y":47.992},{"x":1754032681001,"y":51.58},{"x":1754032620888,"y":51.223},{"x":1754032560784,"y":52.402},{"x":1754032500718,"y":49.91},{"x":1754032440511,"y":58.22},{"x":1754032380404,"y":56.891},{"x":1754032320307,"y":56.407},{"x":1754032262930,"y":52.382},{"x":1754032202802,"y":55.42},{"x":1754032142644,"y":49.888},{"x":1754032082513,"y":66.775},{"x":1754032022381,"y":49.046},{"x":1754031962248,"y":51.887},{"x":1754031902119,"y":48.762},{"x":1754031841983,"y":50.822},{"x":1754031781854,"y":46.214},{"x":1754031721697,"y":50.964},{"x":1754031661575,"y":49.313},{"x":1754031601627,"y":48.26},{"x":1754031541288,"y":43.992},{"x":1754031481164,"y":44.334},{"x":1754031421024,"y":51.934},{"x":1754031360891,"y":48.071},{"x":1754031300769,"y":52.78},{"x":1754031240694,"y":49.114},{"x":1754031180452,"y":43.686},{"x":1754031120468,"y":46.511},{"x":1754031060118,"y":48.6},{"x":1754031002915,"y":47.73},{"x":1754030942785,"y":46.864},{"x":1754030882660,"y":42.298},{"x":1754030822533,"y":42.266},{"x":1754030762423,"y":42.343},{"x":1754030702275,"y":44.604},{"x":1754030642154,"y":55.24},{"x":1754030582018,"y":53.995},{"x":1754030521887,"y":52.885},{"x":1754030461767,"y":51.844},{"x":1754030401647,"y":51.63},{"x":1754030341512,"y":42.348},{"x":1754030281390,"y":44.658},{"x":1754030221260,"y":43.741},{"x":1754030161132,"y":44.957},{"x":1754030100994,"y":48.461},{"x":1754030040866,"y":47.928},{"x":1754029980776,"y":52.668},{"x":1754029920701,"y":51.821},{"x":1754029860493,"y":53.748},{"x":1754029800416,"y":55.632},{"x":1754029740320,"y":54.994},{"x":1754029682961,"y":47.392},{"x":1754029622832,"y":45.436},{"x":1754029562704,"y":50.822},{"x":1754029502582,"y":59.482},{"x":1754029442455,"y":41.807},{"x":1754029382335,"y":56.706},{"x":1754029322231,"y":44.21},{"x":1754029262098,"y":67.565},{"x":1754029201888,"y":37.542},{"x":1754029141730,"y":61.202},{"x":1754029081604,"y":48.146},{"x":1754029021484,"y":66.93},{"x":1754028961357,"y":40.819},{"x":1754028901232,"y":55.702},{"x":1754028841099,"y":33.289},{"x":1754028780954,"y":41.105},{"x":1754028720826,"y":39.149},{"x":1754028660710,"y":38.598},{"x":1754028600645,"y":48.085},{"x":1754028540525,"y":29.342},{"x":1754028480405,"y":29.453},{"x":1754028420179,"y":30.304},{"x":1754028362914,"y":27.668},{"x":1754028302787,"y":30.181},{"x":1754028242667,"y":30.714},{"x":1754028182545,"y":28.895},{"x":1754028122421,"y":27.876},{"x":1754028062295,"y":32.534},{"x":1754028002173,"y":26.675},{"x":1754027941967,"y":38.522},{"x":1754027881845,"y":38.958},{"x":1754027821722,"y":36.763},{"x":1754027761576,"y":38.129},{"x":1754027701455,"y":39.307},{"x":1754027641336,"y":26.303},{"x":1754027581211,"y":31.249},{"x":1754027521082,"y":27.36},{"x":1754027460946,"y":27.031},{"x":1754027400846,"y":30.134},{"x":1754027340674,"y":39.227},{"x":1754027280635,"y":51.811},{"x":1754027220484,"y":57.714},{"x":1754027160352,"y":52.852},{"x":1754027100119,"y":52.84},{"x":1754027042922,"y":47.202},{"x":1754026982790,"y":51.653},{"x":1754026922672,"y":53.358},{"x":1754026862545,"y":51.031},{"x":1754026802419,"y":33.281},{"x":1754026742295,"y":34.244},{"x":1754026682162,"y":38.815},{"x":1754026622019,"y":37.128},{"x":1754026561884,"y":33.895},{"x":1754026501751,"y":38.101},{"x":1754026441610,"y":32.843},{"x":1754026381486,"y":34.774},{"x":1754026321362,"y":36.646},{"x":1754026261240,"y":31.738},{"x":1754026201116,"y":32.574},{"x":1754026140954,"y":27.631},{"x":1754026080837,"y":33.661},{"x":1754026020728,"y":35.326},{"x":1754025960603,"y":30.641},{"x":1754025900458,"y":32.512},{"x":1754025840325,"y":30.821},{"x":1754025780274,"y":25.992},{"x":1754025723039,"y":26.627},{"x":1754025662766,"y":27.39},{"x":1754025602579,"y":31.242},{"x":1754025542427,"y":34.013},{"x":1754025482301,"y":36.083},{"x":1754025422189,"y":30.8},{"x":1754025362049,"y":32.976},{"x":1754025301920,"y":28.252},{"x":1754025241782,"y":30.836},{"x":1754025181660,"y":28.556},{"x":1754025121533,"y":27.863},{"x":1754025061404,"y":33.535},{"x":1754025001272,"y":27.588},{"x":1754024941145,"y":30.52},{"x":1754024881007,"y":30.726},{"x":1754024820877,"y":34.336},{"x":1754024760760,"y":42.083},{"x":1754024700675,"y":36.451},{"x":1754024640498,"y":34.75},{"x":1754024580265,"y":32.428},{"x":1754024520238,"y":29.852},{"x":1754024462934,"y":44.993},{"x":1754024402843,"y":29.458},{"x":1754024342665,"y":29.641},{"x":1754024282540,"y":32.164},{"x":1754024222417,"y":33.814},{"x":1754024162282,"y":35.959},{"x":1754024102158,"y":34.775},{"x":1754024042035,"y":36.816},{"x":1754023981892,"y":36.577},{"x":1754023921749,"y":38.336},{"x":1754023861614,"y":37.15},{"x":1754023801491,"y":38.405},{"x":1754023741348,"y":30.292},{"x":1754023681220,"y":31.141},{"x":1754023621080,"y":29.114},{"x":1754023560868,"y":31.664},{"x":1754023500820,"y":40.582},{"x":1754023440588,"y":34.961},{"x":1754023380417,"y":34.501},{"x":1754023320247,"y":30.982},{"x":1754023262990,"y":31.632},{"x":1754023202853,"y":35.0},{"x":1754023142737,"y":35.07},{"x":1754023082607,"y":31.568},{"x":1754023022482,"y":30.222},{"x":1754022962348,"y":34.128},{"x":1754022902232,"y":33.884},{"x":1754022842102,"y":32.882},{"x":1754022781965,"y":32.362},{"x":1754022721844,"y":31.157},{"x":1754022661717,"y":31.313},{"x":1754022601612,"y":31.712},{"x":1754022541460,"y":39.03},{"x":1754022481338,"y":33.505},{"x":1754022421215,"y":32.765},{"x":1754022361081,"y":32.318},{"x":1754022300942,"y":30.487},{"x":1754022240840,"y":35.766},{"x":1754022180677,"y":30.804},{"x":1754022120566,"y":38.106},{"x":1754022060478,"y":36.632},{"x":1754022000360,"y":61.978},{"x":1754021942981,"y":63.72},{"x":1754021882855,"y":58.609},{"x":1754021822737,"y":58.154},{"x":1754021762477,"y":60.39},{"x":1754021702341,"y":35.515},{"x":1754021642217,"y":33.55},{"x":1754021582091,"y":31.133},{"x":1754021521957,"y":29.392},{"x":1754021461831,"y":30.515},{"x":1754021401699,"y":30.191},{"x":1754021341573,"y":34.328},{"x":1754021281455,"y":40.273},{"x":1754021221323,"y":27.814},{"x":1754021161191,"y":36.737},{"x":1754021101078,"y":32.446},{"x":1754021040934,"y":42.676},{"x":1754020980826,"y":36.319},{"x":1754020920695,"y":30.862},{"x":1754020860612,"y":30.749},{"x":1754020800443,"y":30.786},{"x":1754020740328,"y":33.808},{"x":1754020682981,"y":32.573},{"x":1754020622864,"y":31.799},{"x":1754020562735,"y":28.823},{"x":1754020502611,"y":31.895},{"x":1754020442500,"y":31.303},{"x":1754020382366,"y":35.182},{"x":1754020322240,"y":35.671},{"x":1754020262118,"y":42.518},{"x":1754020201979,"y":53.011},{"x":1754020141859,"y":56.201},{"x":1754020081733,"y":53.708},{"x":1754020021604,"y":54.886},{"x":1754019961480,"y":42.018},{"x":1754019901354,"y":30.547},{"x":1754019841228,"y":30.427},{"x":1754019781090,"y":30.746},{"x":1754019720951,"y":32.977},{"x":1754019660822,"y":32.026},{"x":1754019600750,"y":31.753},{"x":1754019540579,"y":33.16},{"x":1754019480493,"y":35.333},{"x":1754019420350,"y":34.616},{"x":1754019360105,"y":32.484},{"x":1754019302912,"y":31.688},{"x":1754019242785,"y":30.389},{"x":1754019182668,"y":30.946},{"x":1754019122548,"y":33.64},{"x":1754019062425,"y":33.878},{"x":1754019002307,"y":33.481},{"x":1754018942182,"y":33.415},{"x":1754018882054,"y":33.244},{"x":1754018821921,"y":34.65},{"x":1754018761785,"y":38.092},{"x":1754018701664,"y":41.6},{"x":1754018641550,"y":37.992},{"x":1754018581413,"y":46.499},{"x":1754018521254,"y":45.763},{"x":1754018461100,"y":50.072},{"x":1754018400933,"y":42.056},{"x":1754018340779,"y":40.511},{"x":1754018280657,"y":32.498},{"x":1754018220581,"y":31.487},{"x":1754018160445,"y":34.93},{"x":1754018100277,"y":34.226},{"x":1754018043009,"y":33.313},{"x":1754017982886,"y":33.313},{"x":1754017922762,"y":35.717},{"x":1754017862633,"y":37.865},{"x":1754017802505,"y":37.967},{"x":1754017742378,"y":36.619},{"x":1754017682255,"y":32.593},{"x":1754017622132,"y":29.779},{"x":1754017561989,"y":30.344},{"x":1754017501861,"y":38.479},{"x":1754017441753,"y":37.864},{"x":1754017382319,"y":32.783},{"x":1754017322139,"y":38.197},{"x":1754017261980,"y":33.929},{"x":1754017202412,"y":38.11},{"x":1754017141074,"y":41.237},{"x":1754017080939,"y":35.794},{"x":1754017020845,"y":32.592},{"x":1754016960713,"y":34.291},{"x":1754016900659,"y":35.869},{"x":1754016840354,"y":39.194},{"x":1754016780201,"y":62.57},{"x":1754016722947,"y":61.394},{"x":1754016662821,"y":64.055},{"x":1754016602672,"y":61.554},{"x":1754016542571,"y":59.91},{"x":1754016482425,"y":33.152},{"x":1754016422300,"y":32.712},{"x":1754016362177,"y":32.395},{"x":1754016302042,"y":36.929},{"x":1754016241913,"y":30.097},{"x":1754016181790,"y":32.406},{"x":1754016121649,"y":32.828},{"x":1754016061524,"y":32.89},{"x":1754016001407,"y":35.858},{"x":1754015941287,"y":35.201},{"x":1754015881163,"y":37.975},{"x":1754015821018,"y":42.042},{"x":1754015760896,"y":42.338},{"x":1754015700768,"y":36.29},{"x":1754015640642,"y":37.182},{"x":1754015580542,"y":40.555},{"x":1754015520431,"y":32.282},{"x":1754015460250,"y":31.016},{"x":1754015402936,"y":31.428},{"x":1754015342804,"y":32.952},{"x":1754015282681,"y":33.269},{"x":1754015222573,"y":33.204},{"x":1754015162432,"y":34.134},{"x":1754015102327,"y":34.769},{"x":1754015042178,"y":32.51},{"x":1754014982056,"y":32.104},{"x":1754014921894,"y":32.314},{"x":1754014861737,"y":32.473},{"x":1754014801602,"y":30.977},{"x":1754014741434,"y":31.793},{"x":1754014681315,"y":32.132},{"x":1754014621194,"y":36.335},{"x":1754014561056,"y":31.966},{"x":1754014500923,"y":31.596},{"x":1754014440775,"y":33.252},{"x":1754014380661,"y":32.786},{"x":1754014320625,"y":36.688},{"x":1754014260358,"y":35.153},{"x":1754014200191,"y":31.111},{"x":1754014142968,"y":41.738},{"x":1754014082845,"y":52.919},{"x":1754014022721,"y":61.511},{"x":1754013962561,"y":55.901},{"x":1754013902432,"y":56.072},{"x":1754013842322,"y":44.664},{"x":1754013782196,"y":34.211},{"x":1754013722083,"y":35.318},{"x":1754013661930,"y":38.087},{"x":1754013601889,"y":36.62},{"x":1754013541654,"y":37.141},{"x":1754013481527,"y":38.766},{"x":1754013421400,"y":38.32},{"x":1754013361284,"y":43.667},{"x":1754013301168,"y":40.477},{"x":1754013241040,"y":37.484},{"x":1754013180903,"y":36.348},{"x":1754013120776,"y":37.566},{"x":1754013060627,"y":41.695},{"x":1754013000531,"y":34.774},{"x":1754012940351,"y":32.785},{"x":1754012880182,"y":31.805},{"x":1754012822974,"y":32.225},{"x":1754012762851,"y":36.691},{"x":1754012702727,"y":35.162},{"x":1754012642606,"y":33.536},{"x":1754012582480,"y":36.073},{"x":1754012522345,"y":35.785},{"x":1754012462226,"y":43.225},{"x":1754012402110,"y":42.254},{"x":1754012341969,"y":43.777},{"x":1754012281836,"y":39.515},{"x":1754012221713,"y":39.456},{"x":1754012161585,"y":29.716},{"x":1754012101466,"y":30.211},{"x":1754012041344,"y":28.8},{"x":1754011981226,"y":29.207},{"x":1754011921091,"y":31.067},{"x":1754011860928,"y":33.173},{"x":1754011800810,"y":36.857},{"x":1754011740677,"y":32.706},{"x":1754011680552,"y":33.101},{"x":1754011620421,"y":29.984},{"x":1754011560284,"y":38.899},{"x":1754011500284,"y":42.119},{"x":1754011442925,"y":63.653},{"x":1754011382804,"y":63.335},{"x":1754011322674,"y":61.252},{"x":1754011262504,"y":58.624},{"x":1754011202354,"y":64.224},{"x":1754011142206,"y":35.076},{"x":1754011082073,"y":33.876},{"x":1754011021952,"y":43.754},{"x":1754010961831,"y":40.78},{"x":1754010901695,"y":40.018},{"x":1754010841572,"y":39.762},{"x":1754010781453,"y":40.002},{"x":1754010721333,"y":31.82},{"x":1754010661202,"y":33.106},{"x":1754010601088,"y":31.648},{"x":1754010540939,"y":29.924},{"x":1754010480815,"y":31.756},{"x":1754010420694,"y":34.972},{"x":1754010360640,"y":37.12},{"x":1754010300469,"y":36.66},{"x":1754010240266,"y":41.785},{"x":1754010182943,"y":38.707},{"x":1754010122812,"y":38.899},{"x":1754010062711,"y":41.922},{"x":1754010002592,"y":37.588},{"x":1754009942405,"y":37.564},{"x":1754009882283,"y":32.044},{"x":1754009822160,"y":28.507},{"x":1754009762035,"y":28.526},{"x":1754009701910,"y":32.426},{"x":1754009641775,"y":36.432},{"x":1754009581649,"y":36.565},{"x":1754009521529,"y":46.666},{"x":1754009461405,"y":48.796},{"x":1754009401248,"y":43.571},{"x":1754009341127,"y":42.398},{"x":1754009280996,"y":40.475},{"x":1754009220875,"y":29.668},{"x":1754009160752,"y":26.408},{"x":1754009100744,"y":30.992},{"x":1754009040469,"y":33.838},{"x":1754008980293,"y":35.702},{"x":1754008920201,"y":33.358},{"x":1754008862958,"y":33.041},{"x":1754008802836,"y":33.824},{"x":1754008742746,"y":34.931},{"x":1754008682590,"y":38.411},{"x":1754008622461,"y":34.769},{"x":1754008562337,"y":33.541},{"x":1754008502216,"y":31.957},{"x":1754008442093,"y":33.812},{"x":1754008381956,"y":43.224},{"x":1754008321841,"y":34.199},{"x":1754008261722,"y":37.19},{"x":1754008201598,"y":34.451},{"x":1754008141465,"y":31.578},{"x":1754008081345,"y":36.298},{"x":1754008021229,"y":30.604},{"x":1754007961093,"y":34.1},{"x":1754007900938,"y":40.17},{"x":1754007840822,"y":39.763},{"x":1754007780683,"y":37.472},{"x":1754007720588,"y":35.24},{"x":1754007660470,"y":34.403},{"x":1754007600310,"y":29.627},{"x":1754007543023,"y":30.091},{"x":1754007482887,"y":30.594},{"x":1754007422755,"y":35.159},{"x":1754007362624,"y":35.501},{"x":1754007302501,"y":33.526},{"x":1754007242377,"y":32.13},{"x":1754007182257,"y":31.654},{"x":1754007122130,"y":35.323},{"x":1754007061988,"y":31.003},{"x":1754007001858,"y":31.115},{"x":1754006941745,"y":32.556},{"x":1754006881596,"y":34.121},{"x":1754006821471,"y":34.177},{"x":1754006761348,"y":30.38},{"x":1754006701226,"y":33.415},{"x":1754006641095,"y":34.061},{"x":1754006580931,"y":42.665},{"x":1754006520811,"y":54.751},{"x":1754006460682,"y":52.388},{"x":1754006400689,"y":53.782},{"x":1754006340447,"y":56.593},{"x":1754006280228,"y":33.121},{"x":1754006223020,"y":32.998},{"x":1754006162912,"y":30.757},{"x":1754006102751,"y":30.908},{"x":1754006042629,"y":34.322},{"x":1754005982512,"y":32.993},{"x":1754005922391,"y":57.066},{"x":1754005862270,"y":55.466},{"x":1754005802151,"y":65.092},{"x":1754005742018,"y":60.412},{"x":1754005681882,"y":65.225},{"x":1754005621755,"y":41.518},{"x":1754005561639,"y":44.54},{"x":1754005501528,"y":46.741},{"x":1754005441388,"y":42.107},{"x":1754005381271,"y":38.405},{"x":1754005321150,"y":33.764},{"x":1754005261024,"y":32.495},{"x":1754005200925,"y":35.2},{"x":1754005140782,"y":30.707},{"x":1754005080666,"y":29.826},{"x":1754005020561,"y":31.828},{"x":1754004960456,"y":32.756},{"x":1754004900274,"y":38.165},{"x":1754004842985,"y":34.014},{"x":1754004782865,"y":33.964},{"x":1754004722759,"y":41.527},{"x":1754004662638,"y":41.246},{"x":1754004602505,"y":41.644},{"x":1754004542379,"y":41.029},{"x":1754004482245,"y":40.271},{"x":1754004422125,"y":30.901},{"x":1754004361891,"y":33.892},{"x":1754004301765,"y":33.469},{"x":1754004241626,"y":37.512},{"x":1754004181502,"y":32.63},{"x":1754004121353,"y":32.201},{"x":1754004061241,"y":35.378},{"x":1754004001079,"y":33.161},{"x":1754003940873,"y":39.916},{"x":1754003880758,"y":36.586},{"x":1754003820647,"y":33.761},{"x":1754003760608,"y":38.142},{"x":1754003700448,"y":36.565},{"x":1754003640244,"y":38.15},{"x":1754003582992,"y":32.147},{"x":1754003522884,"y":31.548},{"x":1754003462749,"y":33.274},{"x":1754003402622,"y":32.574},{"x":1754003342501,"y":32.718},{"x":1754003282382,"y":38.776},{"x":1754003222234,"y":38.3},{"x":1754003162104,"y":34.607},{"x":1754003101974,"y":40.214},{"x":1754003041853,"y":41.723},{"x":1754002981759,"y":39.547},{"x":1754002921599,"y":38.944},{"x":1754002861479,"y":36.925},{"x":1754002801375,"y":32.857},{"x":1754002741180,"y":33.314},{"x":1754002681050,"y":36.384},{"x":1754002620910,"y":34.963},{"x":1754002560785,"y":34.433},{"x":1754002500679,"y":34.568},{"x":1754002440552,"y":37.332},{"x":1754002380444,"y":41.436},{"x":1754002320281,"y":36.222},{"x":1754002263013,"y":41.904},{"x":1754002202894,"y":42.499},{"x":1754002142768,"y":45.893},{"x":1754002082653,"y":44.831},{"x":1754002022531,"y":40.818},{"x":1754001962402,"y":42.152},{"x":1754001902282,"y":40.075},{"x":1754001842163,"y":40.07},{"x":1754001782035,"y":43.364},{"x":1754001721900,"y":39.995},{"x":1754001661772,"y":37.043},{"x":1754001601658,"y":37.219},{"x":1754001541531,"y":37.291},{"x":1754001481405,"y":43.27},{"x":1754001421282,"y":38.519},{"x":1754001361157,"y":60.98},{"x":1754001300990,"y":60.622},{"x":1754001240852,"y":59.917},{"x":1754001180729,"y":59.774},{"x":1754001120649,"y":55.531},{"x":1754001060488,"y":42.539},{"x":1754001000427,"y":45.335},{"x":1754000940317,"y":40.216},{"x":1754000883009,"y":35.068},{"x":1754000822875,"y":35.486},{"x":1754000762754,"y":65.315},{"x":1754000702624,"y":63.648},{"x":1754000642492,"y":68.728},{"x":1754000582364,"y":61.913},{"x":1754000522230,"y":60.727},{"x":1754000462090,"y":36.487},{"x":1754000401935,"y":41.124},{"x":1754000341771,"y":39.68},{"x":1754000281651,"y":41.759},{"x":1754000221530,"y":44.011},{"x":1754000161399,"y":42.233},{"x":1754000101285,"y":37.762},{"x":1754000041163,"y":36.988},{"x":1753999981035,"y":37.399},{"x":1753999920905,"y":36.124},{"x":1753999860775,"y":47.009},{"x":1753999800672,"y":46.44},{"x":1753999740520,"y":47.81},{"x":1753999680404,"y":50.219},{"x":1753999620305,"y":55.109},{"x":1753999563022,"y":42.352},{"x":1753999502870,"y":42.97},{"x":1753999442726,"y":39.122},{"x":1753999382600,"y":38.089},{"x":1753999322485,"y":41.869},{"x":1753999262363,"y":38.257},{"x":1753999202253,"y":41.741},{"x":1753999142072,"y":38.351},{"x":1753999081940,"y":40.322},{"x":1753999021816,"y":45.658},{"x":1753998961674,"y":44.956},{"x":1753998901552,"y":45.757},{"x":1753998841422,"y":41.736},{"x":1753998781294,"y":40.93},{"x":1753998721174,"y":40.942},{"x":1753998661035,"y":35.827},{"x":1753998600934,"y":36.896},{"x":1753998540789,"y":38.617},{"x":1753998480677,"y":39.221},{"x":1753998420539,"y":46.482},{"x":1753998360383,"y":44.479},{"x":1753998300200,"y":46.78},{"x":1753998242973,"y":47.256},{"x":1753998182843,"y":46.392},{"x":1753998122727,"y":51.698},{"x":1753998062591,"y":51.422},{"x":1753998002467,"y":49.824},{"x":1753997942339,"y":47.73},{"x":1753997882223,"y":44.789},{"x":1753997822101,"y":48.601},{"x":1753997761970,"y":41.496},{"x":1753997701841,"y":42.56},{"x":1753997641718,"y":44.428},{"x":1753997581605,"y":44.648},{"x":1753997521478,"y":44.238},{"x":1753997461352,"y":42.458},{"x":1753997401260,"y":40.213},{"x":1753997341087,"y":37.883},{"x":1753997280949,"y":44.724},{"x":1753997220821,"y":40.585},{"x":1753997160695,"y":43.015},{"x":1753997100695,"y":43.854},{"x":1753997040415,"y":41.536},{"x":1753996980194,"y":38.792},{"x":1753996922928,"y":36.412},{"x":1753996862793,"y":43.77},{"x":1753996802631,"y":43.901},{"x":1753996742469,"y":41.782},{"x":1753996682351,"y":45.905},{"x":1753996622233,"y":42.559},{"x":1753996562106,"y":41.634},{"x":1753996501969,"y":41.728},{"x":1753996441849,"y":42.724},{"x":1753996381726,"y":38.84},{"x":1753996321601,"y":38.776},{"x":1753996261480,"y":41.392},{"x":1753996201361,"y":49.117},{"x":1753996141229,"y":56.866},{"x":1753996081100,"y":62.108},{"x":1753996020958,"y":64.55},{"x":1753995960830,"y":61.202},{"x":1753995900739,"y":50.946},{"x":1753995840600,"y":43.866},{"x":1753995780514,"y":43.73},{"x":1753995720437,"y":39.742},{"x":1753995660220,"y":36.728},{"x":1753995602931,"y":39.79},{"x":1753995542767,"y":62.642},{"x":1753995482647,"y":63.818},{"x":1753995422527,"y":62.62},{"x":1753995362396,"y":63.551},{"x":1753995302273,"y":62.149},{"x":1753995242142,"y":45.718},{"x":1753995182018,"y":45.942},{"x":1753995121885,"y":50.387},{"x":1753995061761,"y":45.427},{"x":1753995001635,"y":40.302},{"x":1753994941514,"y":41.408},{"x":1753994881389,"y":46.597},{"x":1753994821270,"y":41.903},{"x":1753994761144,"y":44.191},{"x":1753994701018,"y":44.172},{"x":1753994640871,"y":46.112},{"x":1753994580745,"y":52.018},{"x":1753994520639,"y":49.58},{"x":1753994460531,"y":48.725},{"x":1753994400394,"y":60.026},{"x":1753994340150,"y":51.791},{"x":1753994282992,"y":51.368},{"x":1753994222873,"y":53.57},{"x":1753994162684,"y":42.776},{"x":1753994102576,"y":43.931},{"x":1753994042436,"y":48.557},{"x":1753993982315,"y":53.914},{"x":1753993922187,"y":54.779},{"x":1753993862062,"y":56.515},{"x":1753993801930,"y":48.263},{"x":1753993741797,"y":46.998},{"x":1753993681670,"y":49.423},{"x":1753993621559,"y":48.262},{"x":1753993561418,"y":53.078},{"x":1753993501308,"y":48.245},{"x":1753993441171,"y":45.425},{"x":1753993381040,"y":47.483},{"x":1753993320914,"y":48.198},{"x":1753993260784,"y":51.293},{"x":1753993200636,"y":48.307},{"x":1753993140357,"y":47.638},{"x":1753993083017,"y":57.522},{"x":1753993022869,"y":53.128},{"x":1753992962739,"y":62.602},{"x":1753992902619,"y":50.777},{"x":1753992842493,"y":53.411},{"x":1753992782371,"y":53.232},{"x":1753992722244,"y":57.78},{"x":1753992662116,"y":60.492},{"x":1753992601983,"y":58.464},{"x":1753992541831,"y":56.662},{"x":1753992481696,"y":60.275},{"x":1753992421569,"y":58.278},{"x":1753992361446,"y":60.992},{"x":1753992301324,"y":54.302},{"x":1753992241200,"y":64.525},{"x":1753992181077,"y":70.291},{"x":1753992120931,"y":70.134},{"x":1753992060806,"y":82.324},{"x":1753992000781,"y":59.75},{"x":1753991940584,"y":53.647},{"x":1753991880472,"y":51.167},{"x":1753991820299,"y":50.354},{"x":1753991762996,"y":49.418},{"x":1753991702873,"y":49.283},{"x":1753991642735,"y":50.465},{"x":1753991582612,"y":51.348},{"x":1753991522486,"y":49.402},{"x":1753991462362,"y":50.944},{"x":1753991402242,"y":54.052},{"x":1753991342108,"y":54.911},{"x":1753991281958,"y":56.687},{"x":1753991221835,"y":57.527},{"x":1753991161706,"y":56.725},{"x":1753991101576,"y":51.731},{"x":1753991041429,"y":52.282},{"x":1753990981297,"y":50.172},{"x":1753990921165,"y":55.967},{"x":1753990861031,"y":50.828},{"x":1753990800936,"y":69.606},{"x":1753990740756,"y":69.548},{"x":1753990680632,"y":69.715},{"x":1753990620529,"y":69.006},{"x":1753990560332,"y":66.346},{"x":1753990500178,"y":51.618},{"x":1753990442954,"y":47.975},{"x":1753990382828,"y":45.215},{"x":1753990322703,"y":49.758},{"x":1753990262577,"y":49.979},{"x":1753990202443,"y":50.039},{"x":1753990142312,"y":53.221},{"x":1753990082177,"y":54.602},{"x":1753990022050,"y":56.938},{"x":1753989961897,"y":50.854},{"x":1753989901757,"y":53.902},{"x":1753989841636,"y":50.426},{"x":1753989781509,"y":50.238},{"x":1753989721381,"y":47.752},{"x":1753989661227,"y":48.377},{"x":1753989601133,"y":48.642},{"x":1753989540883,"y":46.774},{"x":1753989480762,"y":47.546},{"x":1753989420709,"y":45.28},{"x":1753989360546,"y":50.3},{"x":1753989300402,"y":53.849},{"x":1753989240139,"y":59.064},{"x":1753989182939,"y":60.103},{"x":1753989122804,"y":68.692},{"x":1753989062676,"y":56.351},{"x":1753989002557,"y":47.089},{"x":1753988942428,"y":49.667},{"x":1753988882306,"y":52.574},{"x":1753988822176,"y":48.829},{"x":1753988762036,"y":61.393},{"x":1753988701900,"y":57.205},{"x":1753988641774,"y":58.729},{"x":1753988581651,"y":62.219},{"x":1753988521526,"y":53.37},{"x":1753988461399,"y":49.607},{"x":1753988401328,"y":51.299},{"x":1753988341062,"y":52.009},{"x":1753988280931,"y":50.953},{"x":1753988220799,"y":49.651},{"x":1753988160677,"y":45.461},{"x":1753988100548,"y":58.271},{"x":1753988040337,"y":73.111},{"x":1753987983025,"y":64.214},{"x":1753987922882,"y":59.725},{"x":1753987862764,"y":56.039},{"x":1753987802624,"y":64.038},{"x":1753987742494,"y":61.165},{"x":1753987682359,"y":51.518},{"x":1753987622202,"y":50.236},{"x":1753987562068,"y":64.636},{"x":1753987501923,"y":49.002},{"x":1753987441792,"y":57.427},{"x":1753987381654,"y":47.944},{"x":1753987321524,"y":46.505},{"x":1753987261395,"y":51.528},{"x":1753987201272,"y":46.594},{"x":1753987141140,"y":49.142},{"x":1753987081003,"y":49.782},{"x":1753987020851,"y":63.142},{"x":1753986960732,"y":59.774},{"x":1753986900675,"y":59.366},{"x":1753986840468,"y":61.591},{"x":1753986780294,"y":52.399},{"x":1753986720224,"y":57.436},{"x":1753986662908,"y":49.284},{"x":1753986602776,"y":48.766},{"x":1753986542643,"y":52.513},{"x":1753986482518,"y":49.942},{"x":1753986422370,"y":52.387},{"x":1753986362217,"y":40.7},{"x":1753986302085,"y":42.786},{"x":1753986241941,"y":46.591},{"x":1753986181794,"y":64.988},{"x":1753986121641,"y":40.858},{"x":1753986061483,"y":39.193},{"x":1753986001315,"y":41.19},{"x":1753985941149,"y":37.163},{"x":1753985880994,"y":41.834},{"x":1753985820878,"y":40.721},{"x":1753985760751,"y":38.664},{"x":1753985700674,"y":49.67},{"x":1753985640454,"y":38.48},{"x":1753985580301,"y":31.885},{"x":1753985520042,"y":31.332},{"x":1753985462884,"y":35.984},{"x":1753985402750,"y":33.816},{"x":1753985342607,"y":42.163},{"x":1753985282471,"y":40.111},{"x":1753985222362,"y":38.358},{"x":1753985162201,"y":35.783},{"x":1753985102068,"y":37.228},{"x":1753985041921,"y":32.48},{"x":1753984981801,"y":34.404},{"x":1753984921662,"y":43.62},{"x":1753984861531,"y":37.88},{"x":1753984801435,"y":39.968},{"x":1753984741232,"y":32.693},{"x":1753984681102,"y":32.266},{"x":1753984620948,"y":32.738},{"x":1753984560825,"y":34.855},{"x":1753984500704,"y":36.534},{"x":1753984440600,"y":38.982},{"x":1753984380403,"y":29.466},{"x":1753984320254,"y":41.377},{"x":1753984262942,"y":45.341},{"x":1753984202805,"y":60.912},{"x":1753984142672,"y":45.682},{"x":1753984082545,"y":43.604},{"x":1753984022419,"y":31.516},{"x":1753983962286,"y":35.021},{"x":1753983902157,"y":40.265},{"x":1753983842023,"y":36.775},{"x":1753983781877,"y":38.743},{"x":1753983721744,"y":43.379},{"x":1753983661610,"y":33.439},{"x":1753983601474,"y":38.909},{"x":1753983541337,"y":30.239},{"x":1753983481215,"y":27.499},{"x":1753983421088,"y":30.096},{"x":1753983360924,"y":38.863},{"x":1753983300908,"y":42.24},{"x":1753983240654,"y":51.596},{"x":1753983180533,"y":56.527},{"x":1753983120405,"y":52.705},{"x":1753983060228,"y":67.884},{"x":1753983002930,"y":51.892},{"x":1753982942798,"y":49.195},{"x":1753982882664,"y":54.94},{"x":1753982822536,"y":46.966},{"x":1753982762398,"y":43.265},{"x":1753982702261,"y":42.721},{"x":1753982642136,"y":49.968},{"x":1753982581982,"y":45.826},{"x":1753982521840,"y":48.758},{"x":1753982461718,"y":62.125},{"x":1753982401505,"y":50.039},{"x":1753982341343,"y":43.321},{"x":1753982281203,"y":38.304},{"x":1753982221069,"y":38.766},{"x":1753982160845,"y":48.676},{"x":1753982100886,"y":42.054},{"x":1753982040559,"y":39.892},{"x":1753981980299,"y":44.411},{"x":1753981922996,"y":40.318},{"x":1753981862862,"y":40.351},{"x":1753981802727,"y":41.993},{"x":1753981742582,"y":40.451},{"x":1753981682452,"y":45.784},{"x":1753981622306,"y":45.673},{"x":1753981562181,"y":55.274},{"x":1753981502050,"y":39.73},{"x":1753981441913,"y":37.524},{"x":1753981381770,"y":34.814},{"x":1753981321640,"y":33.529},{"x":1753981261520,"y":38.236},{"x":1753981201489,"y":32.412},{"x":1753981141176,"y":36.57},{"x":1753981081047,"y":38.555},{"x":1753981020882,"y":34.612},{"x":1753980960758,"y":32.761},{"x":1753980900642,"y":39.839},{"x":1753980840508,"y":61.764},{"x":1753980780365,"y":56.41},{"x":1753980723016,"y":38.134},{"x":1753980662894,"y":39.712},{"x":1753980602755,"y":34.211},{"x":1753980542616,"y":36.476},{"x":1753980482484,"y":30.042},{"x":1753980422348,"y":32.64},{"x":1753980362211,"y":35.303},{"x":1753980302081,"y":34.698},{"x":1753980241928,"y":35.989},{"x":1753980181786,"y":46.469},{"x":1753980121653,"y":52.481},{"x":1753980061516,"y":49.848},{"x":1753980001385,"y":49.844},{"x":1753979941241,"y":46.747},{"x":1753979881106,"y":47.807},{"x":1753979820959,"y":41.329},{"x":1753979760829,"y":41.26},{"x":1753979700734,"y":39.358},{"x":1753979640630,"y":37.624},{"x":1753979580372,"y":30.515},{"x":1753979520244,"y":31.678},{"x":1753979462993,"y":31.705},{"x":1753979402845,"y":31.585},{"x":1753979342719,"y":37.814},{"x":1753979282582,"y":32.952},{"x":1753979222441,"y":49.746},{"x":1753979162207,"y":50.364},{"x":1753979102072,"y":53.368},{"x":1753979041923,"y":53.827},{"x":1753978981783,"y":54.292},{"x":1753978921648,"y":37.034},{"x":1753978861473,"y":40.435},{"x":1753978801285,"y":40.591},{"x":1753978741121,"y":33.816},{"x":1753978680971,"y":31.514},{"x":1753978620813,"y":33.834},{"x":1753978560628,"y":34.462},{"x":1753978500625,"y":40.768},{"x":1753978440330,"y":35.71},{"x":1753978383029,"y":34.013},{"x":1753978322888,"y":39.236},{"x":1753978262753,"y":40.831},{"x":1753978202621,"y":54.936},{"x":1753978142483,"y":43.63},{"x":1753978082353,"y":42.373},{"x":1753978022219,"y":43.745},{"x":1753977962057,"y":39.164},{"x":1753977901919,"y":33.677},{"x":1753977841780,"y":34.74},{"x":1753977781646,"y":35.672},{"x":1753977721511,"y":33.678},{"x":1753977661380,"y":38.354},{"x":1753977601304,"y":34.252},{"x":1753977541061,"y":35.004},{"x":1753977480921,"y":34.442},{"x":1753977420794,"y":44.652},{"x":1753977360672,"y":44.742},{"x":1753977300541,"y":45.492},{"x":1753977240377,"y":38.132},{"x":1753977180180,"y":39.361},{"x":1753977122929,"y":45.05},{"x":1753977062793,"y":38.098},{"x":1753977002663,"y":44.59},{"x":1753976942510,"y":45.316},{"x":1753976882367,"y":48.019},{"x":1753976822231,"y":53.368},{"x":1753976762099,"y":39.646},{"x":1753976701958,"y":38.609},{"x":1753976641816,"y":38.252},{"x":1753976581688,"y":43.288},{"x":1753976521558,"y":50.746},{"x":1753976461430,"y":41.558},{"x":1753976401285,"y":41.974},{"x":1753976341139,"y":41.79},{"x":1753976280989,"y":41.058},{"x":1753976220843,"y":44.232},{"x":1753976160730,"y":38.188},{"x":1753976100619,"y":42.068},{"x":1753976040391,"y":45.936},{"x":1753975980240,"y":42.006},{"x":1753975922990,"y":39.818},{"x":1753975862854,"y":57.838},{"x":1753975802719,"y":40.205},{"x":1753975742583,"y":39.175},{"x":1753975682417,"y":45.482},{"x":1753975622266,"y":43.42},{"x":1753975562117,"y":41.86},{"x":1753975501976,"y":43.608},{"x":1753975441832,"y":44.228},{"x":1753975381704,"y":44.808},{"x":1753975321562,"y":38.076},{"x":1753975261382,"y":37.469},{"x":1753975201217,"y":31.624},{"x":1753975141031,"y":30.947},{"x":1753975080892,"y":38.071},{"x":1753975020762,"y":38.645},{"x":1753974960720,"y":39.908},{"x":1753974900396,"y":38.027},{"x":1753974840263,"y":46.896},{"x":1753974782941,"y":45.506},{"x":1753974722793,"y":37.723},{"x":1753974662660,"y":41.64},{"x":1753974602523,"y":37.099},{"x":1753974542393,"y":41.321},{"x":1753974482256,"y":38.88},{"x":1753974422116,"y":42.817},{"x":1753974361954,"y":40.4},{"x":1753974301822,"y":40.014},{"x":1753974241694,"y":41.814},{"x":1753974181547,"y":56.461},{"x":1753974121404,"y":49.789},{"x":1753974061295,"y":48.452},{"x":1753974000914,"y":48.479},{"x":1753973940666,"y":44.495},{"x":1753973880559,"y":41.513},{"x":1753973820427,"y":39.991},{"x":1753973760029,"y":38.696},{"x":1753973702874,"y":47.813},{"x":1753973642716,"y":51.03},{"x":1753973582570,"y":36.097},{"x":1753973522322,"y":35.604},{"x":1753973462178,"y":37.433},{"x":1753973402030,"y":37.801},{"x":1753973341884,"y":41.927},{"x":1753973281743,"y":42.846},{"x":1753973221623,"y":39.469},{"x":1753973161426,"y":38.467},{"x":1753973101278,"y":42.851},{"x":1753973041109,"y":37.933},{"x":1753972980925,"y":36.749},{"x":1753972920786,"y":38.699},{"x":1753972860657,"y":40.465},{"x":1753972800572,"y":41.592},{"x":1753972740284,"y":62.298},{"x":1753972680017,"y":43.832},{"x":1753972622879,"y":41.556},{"x":1753972562719,"y":46.351},{"x":1753972502576,"y":42.107},{"x":1753972442428,"y":37.027},{"x":1753972382299,"y":34.075},{"x":1753972322153,"y":35.801},{"x":1753972261988,"y":37.756},{"x":1753972201833,"y":33.449},{"x":1753972141677,"y":33.665},{"x":1753972081528,"y":38.914},{"x":1753972021381,"y":37.436},{"x":1753971961240,"y":38.394},{"x":1753971901071,"y":37.661},{"x":1753971840934,"y":33.732},{"x":1753971780759,"y":31.972},{"x":1753971720627,"y":60.52},{"x":1753971660484,"y":51.734},{"x":1753971600155,"y":50.303},{"x":1753971542882,"y":49.804},{"x":1753971482741,"y":55.529},{"x":1753971422604,"y":31.288},{"x":1753971362453,"y":29.982},{"x":1753971302310,"y":32.408},{"x":1753971242176,"y":28.522},{"x":1753971182025,"y":33.118},{"x":1753971121867,"y":46.406},{"x":1753971061716,"y":42.209},{"x":1753971001575,"y":39.94},{"x":1753970941439,"y":38.375},{"x":1753970881316,"y":40.889},{"x":1753970821132,"y":44.779},{"x":1753970760954,"y":36.641},{"x":1753970700838,"y":38.227},{"x":1753970640687,"y":33.337},{"x":1753970580521,"y":36.406},{"x":1753970520443,"y":35.784},{"x":1753970460246,"y":33.768},{"x":1753970402933,"y":47.618},{"x":1753970342735,"y":34.133},{"x":1753970282595,"y":34.751},{"x":1753970222464,"y":37.14},{"x":1753970162317,"y":36.605},{"x":1753970102178,"y":42.667},{"x":1753970042026,"y":35.222},{"x":1753969981869,"y":36.565},{"x":1753969921735,"y":36.866},{"x":1753969861579,"y":30.959},{"x":1753969801448,"y":29.034},{"x":1753969741290,"y":37.774},{"x":1753969681139,"y":36.582},{"x":1753969621100,"y":25.693},{"x":1753969560880,"y":34.124},{"x":1753969501126,"y":41.783},{"x":1753969440858,"y":37.553},{"x":1753969380628,"y":34.146},{"x":1753969320499,"y":34.292},{"x":1753969262912,"y":36.145},{"x":1753969202775,"y":37.31},{"x":1753969142633,"y":44.717},{"x":1753969082489,"y":44.794},{"x":1753969022345,"y":46.992},{"x":1753968962183,"y":44.387},{"x":1753968902035,"y":55.334},{"x":1753968841878,"y":36.414},{"x":1753968781745,"y":36.168},{"x":1753968721606,"y":33.175},{"x":1753968661468,"y":32.293},{"x":1753968601355,"y":32.436},{"x":1753968541190,"y":32.257},{"x":1753968481031,"y":36.643},{"x":1753968420882,"y":38.424},{"x":1753968360740,"y":44.105},{"x":1753968300614,"y":47.903},{"x":1753968240481,"y":45.271},{"x":1753968180318,"y":78.478},{"x":1753968120073,"y":59.128},{"x":1753968062878,"y":55.055},{"x":1753968002656,"y":52.144},{"x":1753967942474,"y":38.633},{"x":1753967882342,"y":40.726},{"x":1753967822205,"y":32.641},{"x":1753967762047,"y":51.556},{"x":1753967701894,"y":39.359},{"x":1753967641753,"y":48.688},{"x":1753967581621,"y":36.384},{"x":1753967521479,"y":34.2},{"x":1753967461333,"y":33.215},{"x":1753967401202,"y":47.833},{"x":1753967341039,"y":47.558},{"x":1753967280895,"y":41.58},{"x":1753967220754,"y":32.044},{"x":1753967160619,"y":40.984},{"x":1753967100638,"y":36.822},{"x":1753967040498,"y":35.552},{"x":1753966980070,"y":38.862},{"x":1753966922896,"y":44.578},{"x":1753966862738,"y":46.915},{"x":1753966802602,"y":40.668},{"x":1753966742456,"y":44.732},{"x":1753966682312,"y":47.321},{"x":1753966622178,"y":38.675},{"x":1753966562030,"y":37.836},{"x":1753966501881,"y":43.489},{"x":1753966441740,"y":40.44},{"x":1753966381598,"y":44.249},{"x":1753966321450,"y":40.037},{"x":1753966261311,"y":38.744},{"x":1753966201183,"y":42.007},{"x":1753966141022,"y":39.054},{"x":1753966080883,"y":46.91},{"x":1753966020746,"y":47.748},{"x":1753965960629,"y":55.004},{"x":1753965900589,"y":59.152},{"x":1753965840309,"y":62.79},{"x":1753965783043,"y":53.918},{"x":1753965722859,"y":53.952},{"x":1753965662710,"y":49.648},{"x":1753965602590,"y":49.927},{"x":1753965542436,"y":45.578},{"x":1753965482310,"y":51.14},{"x":1753965422158,"y":57.347},{"x":1753965361998,"y":42.162},{"x":1753965301861,"y":41.57},{"x":1753965241735,"y":43.58},{"x":1753965181584,"y":44.515},{"x":1753965121433,"y":44.444},{"x":1753965061300,"y":41.642},{"x":1753965001210,"y":35.07},{"x":1753964941035,"y":44.424},{"x":1753964880876,"y":40.573},{"x":1753964820738,"y":39.871},{"x":1753964760594,"y":45.578},{"x":1753964700561,"y":44.581},{"x":1753964640426,"y":32.194},{"x":1753964580086,"y":37.421},{"x":1753964522896,"y":41.225},{"x":1753964462724,"y":39.678},{"x":1753964402572,"y":39.553},{"x":1753964342381,"y":48.389},{"x":1753964282250,"y":50.25},{"x":1753964222109,"y":51.943},{"x":1753964161962,"y":58.061},{"x":1753964101824,"y":60.113},{"x":1753964041673,"y":42.406},{"x":1753963981537,"y":50.485},{"x":1753963921404,"y":45.368},{"x":1753963861263,"y":43.11},{"x":1753963801151,"y":45.011},{"x":1753963740960,"y":40.379},{"x":1753963680808,"y":58.35},{"x":1753963620671,"y":34.762},{"x":1753963560577,"y":37.436},{"x":1753963500420,"y":35.381},{"x":1753963440299,"y":46.601},{"x":1753963382951,"y":83.975},{"x":1753963322818,"y":63.552},{"x":1753963262662,"y":66.182},{"x":1753963202561,"y":67.795},{"x":1753963142377,"y":53.886},{"x":1753963082237,"y":36.204},{"x":1753963022085,"y":29.214},{"x":1753962961926,"y":32.327},{"x":1753962901778,"y":36.898},{"x":1753962841632,"y":42.866},{"x":1753962781493,"y":34.114},{"x":1753962721354,"y":41.612},{"x":1753962661215,"y":45.784},{"x":1753962601073,"y":41.772},{"x":1753962540910,"y":38.641},{"x":1753962480769,"y":31.015},{"x":1753962420592,"y":31.736},{"x":1753962360547,"y":44.72},{"x":1753962300406,"y":34.406},{"x":1753962240112,"y":28.874},{"x":1753962182890,"y":30.197},{"x":1753962122747,"y":34.154},{"x":1753962062584,"y":48.092},{"x":1753962002440,"y":55.85},{"x":1753961942302,"y":59.875},{"x":1753961882173,"y":56.921},{"x":1753961822017,"y":57.726},{"x":1753961761873,"y":51.648},{"x":1753961701739,"y":62.981},{"x":1753961641607,"y":33.474},{"x":1753961581458,"y":49.534},{"x":1753961521325,"y":48.779},{"x":1753961461180,"y":51.058},{"x":1753961401029,"y":34.999},{"x":1753961340872,"y":35.256},{"x":1753961280751,"y":34.118},{"x":1753961220610,"y":34.535},{"x":1753961160512,"y":38.674},{"x":1753961100382,"y":42.875},{"x":1753961040092,"y":40.949},{"x":1753960982883,"y":39.236},{"x":1753960922711,"y":34.49},{"x":1753960862492,"y":34.456},{"x":1753960802303,"y":34.999},{"x":1753960742123,"y":30.965},{"x":1753960681955,"y":40.895},{"x":1753960621803,"y":43.295},{"x":1753960561638,"y":44.752},{"x":1753960501478,"y":55.41},{"x":1753960441315,"y":62.233},{"x":1753960381174,"y":63.7},{"x":1753960321018,"y":68.393},{"x":1753960260870,"y":64.064},{"x":1753960200742,"y":48.433},{"x":1753960140409,"y":42.029},{"x":1753960080267,"y":38.311},{"x":1753960022897,"y":56.548},{"x":1753959962760,"y":57.709},{"x":1753959902623,"y":51.544},{"x":1753959842487,"y":52.908},{"x":1753959782350,"y":52.627},{"x":1753959722192,"y":56.6},{"x":1753959662057,"y":42.544},{"x":1753959601953,"y":23.233},{"x":1753959541738,"y":25.89},{"x":1753959481599,"y":29.419},{"x":1753959421446,"y":29.152},{"x":1753959361329,"y":29.882},{"x":1753959301171,"y":31.259},{"x":1753959240944,"y":28.282},{"x":1753959180800,"y":38.206},{"x":1753959120736,"y":33.15},{"x":1753959060537,"y":35.56},{"x":1753959000445,"y":31.594},{"x":1753958942988,"y":29.426},{"x":1753958882880,"y":25.702},{"x":1753958822696,"y":20.148},{"x":1753958762533,"y":22.0},{"x":1753958702404,"y":33.313},{"x":1753958642238,"y":38.041},{"x":1753958582096,"y":37.933},{"x":1753958521921,"y":32.688},{"x":1753958461766,"y":29.527},{"x":1753958401600,"y":28.417},{"x":1753958341449,"y":35.014},{"x":1753958281306,"y":28.546},{"x":1753958221130,"y":25.83},{"x":1753958160954,"y":23.045},{"x":1753958100811,"y":42.488},{"x":1753958040613,"y":47.651},{"x":1753957980523,"y":39.05},{"x":1753957920326,"y":36.059},{"x":1753957862927,"y":31.728},{"x":1753957594870,"y":25.47},{"x":1753957591881,"y":25.47},{"x":1753957141020,"y":24.66},{"x":1753957080918,"y":28.153},{"x":1753957020808,"y":11.333},{"x":1753956960648,"y":25.316},{"x":1753956900722,"y":44.933},{"x":1753956840423,"y":46.836},{"x":1753956782985,"y":39.124},{"x":1753956722867,"y":38.035},{"x":1753956662737,"y":37.573},{"x":1753956602599,"y":19.922},{"x":1753956542469,"y":23.998},{"x":1753956482338,"y":24.011},{"x":1753956422227,"y":41.034},{"x":1753956362088,"y":47.91},{"x":1753956301948,"y":61.33},{"x":1753956241815,"y":39.04},{"x":1753956181715,"y":41.189},{"x":1753956121571,"y":36.726},{"x":1753956061451,"y":41.414},{"x":1753956001434,"y":41.573},{"x":1753955941122,"y":43.446},{"x":1753955880961,"y":41.646},{"x":1753955820834,"y":47.708},{"x":1753955760708,"y":40.01},{"x":1753955700660,"y":49.913},{"x":1753955640582,"y":21.806},{"x":1753955580506,"y":19.643},{"x":1753955520297,"y":33.168},{"x":1753955462999,"y":28.022},{"x":1753955402864,"y":26.947},{"x":1753955342754,"y":23.221},{"x":1753955282607,"y":26.05},{"x":1753955222496,"y":40.174},{"x":1753955162368,"y":40.778},{"x":1753955102245,"y":41.201},{"x":1753955042105,"y":33.503},{"x":1753954981969,"y":36.773},{"x":1753954921848,"y":20.446},{"x":1753954861727,"y":19.883},{"x":1753954801611,"y":23.137},{"x":1753954741479,"y":30.911},{"x":1753954681340,"y":30.5},{"x":1753954621228,"y":35.666},{"x":1753954561082,"y":33.104},{"x":1753954500916,"y":34.555},{"x":1753954440744,"y":30.925},{"x":1753954380596,"y":26.106},{"x":1753954320473,"y":29.966},{"x":1753954260245,"y":25.99},{"x":1753954202945,"y":28.586},{"x":1753954142794,"y":32.45},{"x":1753954082673,"y":27.125},{"x":1753954022587,"y":27.659},{"x":1753953962411,"y":26.675},{"x":1753953902289,"y":44.089},{"x":1753953842157,"y":38.378},{"x":1753953782026,"y":50.23},{"x":1753953721897,"y":44.659},{"x":1753953661748,"y":40.505},{"x":1753953601631,"y":20.971},{"x":1753953541490,"y":23.923},{"x":1753953481369,"y":25.254},{"x":1753953421247,"y":25.603},{"x":1753953361127,"y":30.455},{"x":1753953301009,"y":25.744},{"x":1753953240875,"y":39.32},{"x":1753953180722,"y":31.776},{"x":1753953120854,"y":27.014},{"x":1753953060432,"y":27.902},{"x":1753953000260,"y":27.236},{"x":1753952940081,"y":27.004},{"x":1753952882913,"y":28.312},{"x":1753952822671,"y":30.959},{"x":1753952762579,"y":26.37},{"x":1753952702410,"y":30.881},{"x":1753952642291,"y":23.872},{"x":1753952582172,"y":27.544},{"x":1753952522038,"y":29.477},{"x":1753952461914,"y":25.666},{"x":1753952401856,"y":30.034},{"x":1753952341641,"y":29.816},{"x":1753952281509,"y":36.438},{"x":1753952221384,"y":44.952},{"x":1753952161261,"y":42.914},{"x":1753952101137,"y":46.232},{"x":1753952040993,"y":43.232},{"x":1753951980864,"y":48.6},{"x":1753951920759,"y":31.804},{"x":1753951860623,"y":25.87},{"x":1753951800511,"y":29.116},{"x":1753951740315,"y":32.276},{"x":1753951680056,"y":27.06},{"x":1753951622882,"y":37.714},{"x":1753951562771,"y":52.567},{"x":1753951502658,"y":51.107},{"x":1753951442517,"y":49.309},{"x":1753951382398,"y":49.591},{"x":1753951322261,"y":43.404},{"x":1753951262138,"y":27.7},{"x":1753951202021,"y":32.065},{"x":1753951141877,"y":37.787},{"x":1753951081761,"y":37.876},{"x":1753951021651,"y":30.124},{"x":1753950961429,"y":30.234},{"x":1753950901277,"y":35.069},{"x":1753950841120,"y":33.545},{"x":1753950780970,"y":28.834},{"x":1753950720850,"y":27.982},{"x":1753950660735,"y":30.959},{"x":1753950600641,"y":27.316},{"x":1753950540491,"y":27.521},{"x":1753950480345,"y":26.632},{"x":1753950420154,"y":23.796},{"x":1753950362953,"y":24.416},{"x":1753950302817,"y":41.443},{"x":1753950242692,"y":43.157},{"x":1753950182566,"y":50.366},{"x":1753950122445,"y":56.893},{"x":1753950062325,"y":50.846},{"x":1753950002203,"y":50.08},{"x":1753949942075,"y":36.63},{"x":1753949881940,"y":36.916},{"x":1753949821814,"y":44.221},{"x":1753949761690,"y":35.843},{"x":1753949701567,"y":44.126},{"x":1753949641432,"y":40.262},{"x":1753949581306,"y":40.658},{"x":1753949521171,"y":37.704},{"x":1753949461032,"y":47.958},{"x":1753949400919,"y":45.914},{"x":1753949340793,"y":70.748},{"x":1753949280716,"y":71.25},{"x":1753949220600,"y":71.604},{"x":1753949160394,"y":63.491},{"x":1753949100166,"y":67.508},{"x":1753949042968,"y":43.532},{"x":1753948982835,"y":35.262},{"x":1753948922709,"y":47.089},{"x":1753948862610,"y":46.05},{"x":1753948802461,"y":51.386},{"x":1753948742323,"y":74.399},{"x":1753948682202,"y":68.594},{"x":1753948622060,"y":68.441},{"x":1753948561929,"y":71.568},{"x":1753948501804,"y":58.818},{"x":1753948441673,"y":62.97},{"x":1753948381547,"y":63.619},{"x":1753948321415,"y":66.539},{"x":1753948261290,"y":66.928},{"x":1753948201173,"y":59.701},{"x":1753948141041,"y":39.515},{"x":1753948080922,"y":42.155},{"x":1753948020800,"y":32.452},{"x":1753947960680,"y":26.852},{"x":1753947900850,"y":32.071},{"x":1753947840546,"y":36.782},{"x":1753947780357,"y":31.026},{"x":1753947723011,"y":25.674},{"x":1753947662882,"y":32.18},{"x":1753947602734,"y":34.322},{"x":1753947542607,"y":32.726},{"x":1753947482477,"y":30.896},{"x":1753947422264,"y":35.266},{"x":1753947362148,"y":36.25},{"x":1753947301996,"y":47.165},{"x":1753947241865,"y":38.852},{"x":1753947181685,"y":40.074},{"x":1753947121557,"y":41.255},{"x":1753947061437,"y":36.311},{"x":1753947001347,"y":30.828},{"x":1753946941196,"y":27.437},{"x":1753946881051,"y":29.149},{"x":1753946820953,"y":29.674},{"x":1753946760806,"y":32.884},{"x":1753946700710,"y":39.698},{"x":1753946640586,"y":32.512},{"x":1753946580463,"y":36.72},{"x":1753946520350,"y":37.082},{"x":1753946463012,"y":43.573},{"x":1753946402869,"y":62.626},{"x":1753946342732,"y":58.361},{"x":1753946282607,"y":56.774},{"x":1753946222489,"y":52.472},{"x":1753946162329,"y":51.107},{"x":1753946102204,"y":49.408},{"x":1753946042085,"y":47.596},{"x":1753945981941,"y":49.552},{"x":1753945921819,"y":48.865},{"x":1753945861694,"y":57.2},{"x":1753945801563,"y":52.415},{"x":1753945741458,"y":51.251},{"x":1753945681295,"y":48.04},{"x":1753945621171,"y":45.814},{"x":1753945561018,"y":46.802},{"x":1753945500901,"y":47.243},{"x":1753945440780,"y":49.89},{"x":1753945380638,"y":51.532},{"x":1753945320522,"y":55.493},{"x":1753945260408,"y":49.531},{"x":1753945200179,"y":47.771},{"x":1753945142919,"y":47.166},{"x":1753945082790,"y":41.682},{"x":1753945022665,"y":37.072},{"x":1753944962547,"y":43.471},{"x":1753944902419,"y":39.704},{"x":1753944842292,"y":43.144},{"x":1753944782167,"y":41.452},{"x":1753944722034,"y":46.758},{"x":1753944661899,"y":44.69},{"x":1753944601776,"y":44.669},{"x":1753944541652,"y":46.468},{"x":1753944481530,"y":63.895},{"x":1753944421322,"y":56.008},{"x":1753944361196,"y":56.48},{"x":1753944301091,"y":59.01},{"x":1753944240919,"y":56.243},{"x":1753944180794,"y":44.67},{"x":1753944120665,"y":44.803},{"x":1753944060567,"y":50.576},{"x":1753944000439,"y":57.456},{"x":1753943940323,"y":47.831},{"x":1753943882981,"y":47.348},{"x":1753943822852,"y":45.6},{"x":1753943762723,"y":49.774},{"x":1753943702586,"y":63.862},{"x":1753943642414,"y":56.714},{"x":1753943582267,"y":58.105},{"x":1753943522140,"y":52.416},{"x":1753943461999,"y":49.104},{"x":1753943401889,"y":45.266},{"x":1753943341774,"y":44.572},{"x":1753943281606,"y":43.13},{"x":1753943221478,"y":45.214},{"x":1753943161344,"y":64.774},{"x":1753943101243,"y":45.587},{"x":1753943041105,"y":49.92},{"x":1753942980957,"y":49.238},{"x":1753942920838,"y":60.176},{"x":1753942860722,"y":43.459},{"x":1753942800734,"y":58.088},{"x":1753942740452,"y":56.099},{"x":1753942680327,"y":70.644},{"x":1753942620220,"y":66.136},{"x":1753942562904,"y":81.017},{"x":1753942502786,"y":67.121},{"x":1753942442665,"y":95.731},{"x":1753942382543,"y":74.17},{"x":1753942322426,"y":73.838},{"x":1753942262305,"y":85.741},{"x":1753942202189,"y":81.389},{"x":1753942142069,"y":63.055},{"x":1753942081937,"y":47.605},{"x":1753942021806,"y":39.433},{"x":1753941961679,"y":39.61},{"x":1753941901559,"y":42.974},{"x":1753941841435,"y":39.539},{"x":1753941781311,"y":46.147},{"x":1753941721194,"y":42.415},{"x":1753941661064,"y":41.266},{"x":1753941600947,"y":37.609},{"x":1753941540752,"y":38.52},{"x":1753941480637,"y":37.738},{"x":1753941420544,"y":38.249},{"x":1753941360400,"y":38.87},{"x":1753941300335,"y":40.871},{"x":1753941240033,"y":47.111},{"x":1753941182895,"y":43.309},{"x":1753941122781,"y":47.918},{"x":1753941062656,"y":60.166},{"x":1753941002535,"y":62.646},{"x":1753940942415,"y":63.274},{"x":1753940882295,"y":57.731},{"x":1753940822170,"y":58.138},{"x":1753940762050,"y":45.008},{"x":1753940701902,"y":45.439},{"x":1753940641769,"y":48.023},{"x":1753940581622,"y":43.852},{"x":1753940521494,"y":40.925},{"x":1753940461370,"y":40.798},{"x":1753940401243,"y":42.542},{"x":1753940341104,"y":43.732},{"x":1753940280950,"y":49.392},{"x":1753940220767,"y":45.968},{"x":1753940160641,"y":48.642},{"x":1753940100574,"y":48.743},{"x":1753940040242,"y":45.968},{"x":1753939980135,"y":50.282},{"x":1753939922897,"y":47.1},{"x":1753939862779,"y":46.621},{"x":1753939802664,"y":47.806},{"x":1753939742503,"y":49.634},{"x":1753939682376,"y":53.993},{"x":1753939622250,"y":52.986},{"x":1753939562137,"y":51.119},{"x":1753939502014,"y":64.471},{"x":1753939441883,"y":62.83},{"x":1753939381759,"y":63.979},{"x":1753939321645,"y":58.682},{"x":1753939261520,"y":54.293},{"x":1753939201396,"y":44.082},{"x":1753939141273,"y":45.936},{"x":1753939081154,"y":47.527},{"x":1753939021015,"y":47.369},{"x":1753938960868,"y":47.084},{"x":1753938900756,"y":46.619},{"x":1753938840615,"y":49.01},{"x":1753938780479,"y":44.462},{"x":1753938720395,"y":48.445},{"x":1753938660260,"y":43.552},{"x":1753938602973,"y":43.855},{"x":1753938542850,"y":43.945},{"x":1753938482680,"y":45.042},{"x":1753938422557,"y":52.087},{"x":1753938362434,"y":45.126},{"x":1753938302311,"y":49.608},{"x":1753938242194,"y":39.362},{"x":1753938182071,"y":41.702},{"x":1753938121937,"y":42.413},{"x":1753938061805,"y":41.947},{"x":1753938001699,"y":42.262},{"x":1753937941485,"y":41.08},{"x":1753937881365,"y":30.582},{"x":1753937821254,"y":33.186},{"x":1753937761135,"y":33.056},{"x":1753937700985,"y":33.941},{"x":1753937640861,"y":34.822},{"x":1753937580739,"y":31.718},{"x":1753937520657,"y":30.503},{"x":1753937460539,"y":29.659},{"x":1753937400440,"y":39.553},{"x":1753937340272,"y":34.024},{"x":1753937283024,"y":35.873},{"x":1753937222881,"y":41.396},{"x":1753937162752,"y":36.282},{"x":1753937102632,"y":39.154},{"x":1753937042503,"y":33.671},{"x":1753936982381,"y":40.909},{"x":1753936922265,"y":40.261},{"x":1753936862135,"y":40.286},{"x":1753936802000,"y":41.04},{"x":1753936741876,"y":42.702},{"x":1753936681750,"y":35.61},{"x":1753936621615,"y":34.801},{"x":1753936561462,"y":33.551},{"x":1753936501338,"y":31.442},{"x":1753936441183,"y":31.55},{"x":1753936381038,"y":34.607},{"x":1753936320893,"y":42.318},{"x":1753936260775,"y":36.466},{"x":1753936200712,"y":35.832},{"x":1753936140530,"y":50.33},{"x":1753936080458,"y":43.1},{"x":1753936020258,"y":47.117},{"x":1753935962973,"y":45.497},{"x":1753935902847,"y":44.074},{"x":1753935842728,"y":34.925},{"x":1753935782603,"y":30.55},{"x":1753935722487,"y":31.475},{"x":1753935662354,"y":30.018},{"x":1753935602236,"y":34.582},{"x":1753935542100,"y":32.783},{"x":1753935481976,"y":64.165},{"x":1753935421844,"y":62.142},{"x":1753935361721,"y":59.53},{"x":1753935301599,"y":58.266},{"x":1753935241478,"y":58.829},{"x":1753935181355,"y":37.32},{"x":1753935121245,"y":34.15},{"x":1753935061113,"y":31.288},{"x":1753935000974,"y":33.013},{"x":1753934940836,"y":32.021},{"x":1753934880722,"y":42.199},{"x":1753934820679,"y":38.005},{"x":1753934760474,"y":35.677},{"x":1753934700364,"y":36.66},{"x":1753934642999,"y":33.607},{"x":1753934582875,"y":32.815},{"x":1753934522746,"y":33.911},{"x":1753934462629,"y":33.0},{"x":1753934402271,"y":34.004},{"x":1753934342078,"y":39.432},{"x":1753934281952,"y":36.584},{"x":1753934221827,"y":39.13},{"x":1753934161702,"y":37.472},{"x":1753934101578,"y":37.934},{"x":1753934041448,"y":37.115},{"x":1753933981330,"y":35.29},{"x":1753933921202,"y":38.34},{"x":1753933861081,"y":31.676},{"x":1753933800923,"y":33.95},{"x":1753933740786,"y":31.958},{"x":1753933680688,"y":32.206},{"x":1753933620540,"y":39.305},{"x":1753933560491,"y":36.103},{"x":1753933500411,"y":38.129},{"x":1753933443025,"y":38.527},{"x":1753933382905,"y":36.923},{"x":1753933322784,"y":36.432},{"x":1753933262673,"y":35.588},{"x":1753933202546,"y":35.466},{"x":1753933142430,"y":34.502},{"x":1753933082316,"y":33.494},{"x":1753933022166,"y":32.065},{"x":1753932961976,"y":32.951},{"x":1753932901848,"y":33.379},{"x":1753932841709,"y":31.35},{"x":1753932781578,"y":31.28},{"x":1753932721443,"y":30.269},{"x":1753932661316,"y":40.259},{"x":1753932601223,"y":37.38},{"x":1753932541056,"y":36.245},{"x":1753932480931,"y":36.679},{"x":1753932420792,"y":36.284},{"x":1753932360675,"y":37.666},{"x":1753932300575,"y":33.242},{"x":1753932240460,"y":34.406},{"x":1753932180307,"y":31.144},{"x":1753932120164,"y":30.438},{"x":1753932062927,"y":33.419},{"x":1753932002805,"y":32.866},{"x":1753931942685,"y":32.89},{"x":1753931882559,"y":34.444},{"x":1753931822438,"y":33.08},{"x":1753931762294,"y":32.699},{"x":1753931702167,"y":35.347},{"x":1753931642031,"y":31.799},{"x":1753931581902,"y":31.736},{"x":1753931521797,"y":41.39},{"x":1753931461662,"y":54.244},{"x":1753931401539,"y":59.866},{"x":1753931341423,"y":58.489},{"x":1753931281290,"y":57.295},{"x":1753931221155,"y":48.049},{"x":1753931161013,"y":36.452},{"x":1753931100892,"y":42.134},{"x":1753931040747,"y":35.963},{"x":1753930982712,"y":32.514},{"x":1753930922534,"y":32.202},{"x":1753930862376,"y":32.693},{"x":1753930802766,"y":38.674},{"x":1753930741990,"y":35.281},{"x":1753930681869,"y":34.366},{"x":1753930621732,"y":32.963},{"x":1753930561612,"y":31.328},{"x":1753930501489,"y":31.249},{"x":1753930441364,"y":30.679},{"x":1753930381246,"y":32.712},{"x":1753930321117,"y":32.299},{"x":1753930260946,"y":32.083},{"x":1753930200797,"y":31.892},{"x":1753930140671,"y":51.881},{"x":1753930080583,"y":47.384},{"x":1753930020450,"y":46.243},{"x":1753929960387,"y":47.46},{"x":1753929902983,"y":43.886},{"x":1753929842862,"y":37.134},{"x":1753929782720,"y":33.017},{"x":1753929722572,"y":31.124},{"x":1753929662450,"y":30.331},{"x":1753929602328,"y":30.028},{"x":1753929542200,"y":35.502},{"x":1753929482082,"y":33.086},{"x":1753929421945,"y":34.39},{"x":1753929361843,"y":33.972},{"x":1753929301670,"y":31.164},{"x":1753929241527,"y":33.562},{"x":1753929181372,"y":32.946},{"x":1753929121250,"y":43.889},{"x":1753929061128,"y":41.644},{"x":1753929000982,"y":40.429},{"x":1753928940821,"y":40.008},{"x":1753928880751,"y":35.646},{"x":1753928820557,"y":32.732},{"x":1753928760499,"y":36.056},{"x":1753928700381,"y":33.167},{"x":1753928640227,"y":34.34},{"x":1753928582918,"y":37.816},{"x":1753928522801,"y":32.9},{"x":1753928462683,"y":33.527},{"x":1753928402565,"y":34.088},{"x":1753928342436,"y":35.798},{"x":1753928282316,"y":38.657},{"x":1753928222193,"y":34.276},{"x":1753928162069,"y":36.472},{"x":1753928101936,"y":35.412},{"x":1753928041811,"y":36.372},{"x":1753927981684,"y":39.44},{"x":1753927921555,"y":35.107},{"x":1753927861435,"y":35.358},{"x":1753927801308,"y":37.29},{"x":1753927741184,"y":35.568},{"x":1753927681043,"y":34.099},{"x":1753927620910,"y":33.625},{"x":1753927560778,"y":34.516},{"x":1753927500677,"y":32.3},{"x":1753927440566,"y":31.876},{"x":1753927380476,"y":33.403},{"x":1753927320267,"y":38.201},{"x":1753927262994,"y":35.791},{"x":1753927202880,"y":35.219},{"x":1753927142730,"y":38.58},{"x":1753927082613,"y":36.544},{"x":1753927022498,"y":41.18},{"x":1753926962369,"y":35.137},{"x":1753926902247,"y":36.065},{"x":1753926842122,"y":34.591},{"x":1753926781992,"y":33.077},{"x":1753926721873,"y":38.767},{"x":1753926661746,"y":33.775},{"x":1753926601624,"y":30.642},{"x":1753926541494,"y":33.764},{"x":1753926481379,"y":36.319},{"x":1753926421253,"y":39.962},{"x":1753926361135,"y":37.888},{"x":1753926301018,"y":35.093},{"x":1753926240873,"y":32.395},{"x":1753926180753,"y":34.554},{"x":1753926120633,"y":30.432},{"x":1753926060524,"y":30.395},{"x":1753926000400,"y":29.832},{"x":1753925940289,"y":32.537},{"x":1753925882988,"y":34.632},{"x":1753925822866,"y":34.964},{"x":1753925762721,"y":36.542},{"x":1753925702579,"y":36.044},{"x":1753925642437,"y":40.051},{"x":1753925582298,"y":33.725},{"x":1753925522180,"y":57.048},{"x":1753925462051,"y":59.328},{"x":1753925401920,"y":53.99},{"x":1753925341788,"y":57.104},{"x":1753925281659,"y":37.576},{"x":1753925221466,"y":30.82},{"x":1753925161350,"y":37.594},{"x":1753925101235,"y":36.56},{"x":1753925041109,"y":38.579},{"x":1753924980957,"y":37.632},{"x":1753924920836,"y":45.76},{"x":1753924860712,"y":41.534},{"x":1753924800676,"y":36.019},{"x":1753924740500,"y":35.725},{"x":1753924680412,"y":34.919},{"x":1753924620241,"y":45.908},{"x":1753924562997,"y":44.87},{"x":1753924502883,"y":43.908},{"x":1753924442780,"y":43.856},{"x":1753924382634,"y":37.124},{"x":1753924322522,"y":33.881},{"x":1753924262396,"y":35.669},{"x":1753924202283,"y":34.409},{"x":1753924142154,"y":34.759},{"x":1753924082031,"y":34.518},{"x":1753924021883,"y":37.29},{"x":1753923961764,"y":35.398},{"x":1753923901640,"y":36.649},{"x":1753923841514,"y":30.043},{"x":1753923781386,"y":30.132},{"x":1753923721259,"y":31.89},{"x":1753923661133,"y":31.669},{"x":1753923601031,"y":38.422},{"x":1753923540756,"y":38.035},{"x":1753923480647,"y":36.484},{"x":1753923420555,"y":37.375},{"x":1753923360427,"y":34.96},{"x":1753923300255,"y":38.882},{"x":1753923240147,"y":33.349},{"x":1753923182928,"y":35.814},{"x":1753923122811,"y":36.55},{"x":1753923062704,"y":33.389},{"x":1753923002571,"y":37.927},{"x":1753922942456,"y":38.407},{"x":1753922882328,"y":37.853},{"x":1753922822212,"y":67.682},{"x":1753922762095,"y":65.606},{"x":1753922701967,"y":60.864},{"x":1753922641834,"y":58.302},{"x":1753922581717,"y":60.192},{"x":1753922521600,"y":31.982},{"x":1753922461480,"y":31.824},{"x":1753922401359,"y":31.394},{"x":1753922341232,"y":39.358},{"x":1753922281109,"y":37.384},{"x":1753922220964,"y":35.993},{"x":1753922160836,"y":35.849},{"x":1753922100686,"y":37.889},{"x":1753922040537,"y":41.893},{"x":1753921980387,"y":31.134},{"x":1753921920271,"y":31.996},{"x":1753921862999,"y":30.515},{"x":1753921802859,"y":31.15},{"x":1753921742736,"y":35.128},{"x":1753921682609,"y":33.402},{"x":1753921622493,"y":35.034},{"x":1753921562381,"y":31.727},{"x":1753921502270,"y":32.899},{"x":1753921442135,"y":38.398},{"x":1753921382007,"y":37.674},{"x":1753921321899,"y":35.363},{"x":1753921261765,"y":36.665},{"x":1753921201639,"y":36.966},{"x":1753921141518,"y":34.88},{"x":1753921081404,"y":31.96},{"x":1753921021296,"y":30.499},{"x":1753920961167,"y":33.884},{"x":1753920901077,"y":33.251},{"x":1753920840901,"y":33.521},{"x":1753920780780,"y":34.345},{"x":1753920720670,"y":37.328},{"x":1753920660521,"y":31.302},{"x":1753920600404,"y":34.21},{"x":1753920540379,"y":33.518},{"x":1753920482958,"y":33.144},{"x":1753920422831,"y":44.53},{"x":1753920362694,"y":44.005},{"x":1753920302571,"y":56.507},{"x":1753920242446,"y":55.702},{"x":1753920182328,"y":60.632},{"x":1753920122211,"y":46.102},{"x":1753920062080,"y":43.082},{"x":1753920001999,"y":39.491},{"x":1753919941806,"y":48.595},{"x":1753919881683,"y":49.459},{"x":1753919821554,"y":43.694},{"x":1753919761416,"y":52.096},{"x":1753919701286,"y":43.222},{"x":1753919641149,"y":44.623},{"x":1753919581014,"y":47.324},{"x":1753919520885,"y":30.252},{"x":1753919460756,"y":31.582},{"x":1753919400687,"y":33.568},{"x":1753919340498,"y":31.284},{"x":1753919280426,"y":51.522},{"x":1753919220269,"y":46.339},{"x":1753919162977,"y":46.236},{"x":1753919102856,"y":48.806},{"x":1753919042719,"y":50.465},{"x":1753918982590,"y":39.908},{"x":1753918922474,"y":32.954},{"x":1753918862348,"y":33.188},{"x":1753918802234,"y":32.798},{"x":1753918742122,"y":31.751},{"x":1753918681975,"y":41.491},{"x":1753918621852,"y":56.716},{"x":1753918561736,"y":62.207},{"x":1753918501571,"y":61.547},{"x":1753918441446,"y":63.145},{"x":1753918381291,"y":63.167},{"x":1753918321158,"y":36.732},{"x":1753918261016,"y":35.489},{"x":1753918200934,"y":36.042},{"x":1753918140753,"y":36.193},{"x":1753918080707,"y":37.349},{"x":1753918020393,"y":37.243},{"x":1753917960254,"y":40.048},{"x":1753917903006,"y":37.916},{"x":1753917842875,"y":40.175},{"x":1753917782751,"y":40.65},{"x":1753917722634,"y":39.194},{"x":1753917662513,"y":40.41},{"x":1753917602383,"y":39.605},{"x":1753917542264,"y":36.494},{"x":1753917482137,"y":45.978},{"x":1753917421999,"y":46.987},{"x":1753917361872,"y":48.691},{"x":1753917301754,"y":49.578},{"x":1753917241620,"y":56.089},{"x":1753917181498,"y":43.885},{"x":1753917121381,"y":42.374},{"x":1753917061255,"y":40.342},{"x":1753917001128,"y":37.817},{"x":1753916940982,"y":40.454},{"x":1753916880858,"y":37.309},{"x":1753916820717,"y":41.77},{"x":1753916760621,"y":40.985},{"x":1753916700560,"y":38.684},{"x":1753916640400,"y":37.939},{"x":1753916580186,"y":33.641},{"x":1753916522956,"y":49.217},{"x":1753916462861,"y":52.234},{"x":1753916402735,"y":45.942},{"x":1753916342575,"y":59.678},{"x":1753916282451,"y":59.525},{"x":1753916222315,"y":47.564},{"x":1753916162189,"y":54.529},{"x":1753916102071,"y":40.613},{"x":1753916041935,"y":31.694},{"x":1753915981818,"y":33.665},{"x":1753915921695,"y":32.872},{"x":1753915861563,"y":38.099},{"x":1753915801435,"y":37.41},{"x":1753915741316,"y":37.444},{"x":1753915681195,"y":39.595},{"x":1753915621070,"y":40.71},{"x":1753915560923,"y":43.708},{"x":1753915500827,"y":37.0},{"x":1753915440676,"y":37.014},{"x":1753915380522,"y":40.481},{"x":1753915320459,"y":38.194},{"x":1753915260270,"y":41.705},{"x":1753915202988,"y":38.032},{"x":1753915142863,"y":44.552},{"x":1753915082746,"y":40.502},{"x":1753915022631,"y":40.319},{"x":1753914962488,"y":43.627},{"x":1753914902367,"y":34.76},{"x":1753914842195,"y":34.304},{"x":1753914782022,"y":34.732},{"x":1753914721926,"y":37.775},{"x":1753914661772,"y":42.856},{"x":1753914601657,"y":38.137},{"x":1753914541527,"y":50.797},{"x":1753914481405,"y":53.99},{"x":1753914421273,"y":52.969},{"x":1753914361149,"y":54.343},{"x":1753914300996,"y":60.587},{"x":1753914240861,"y":61.513},{"x":1753914180741,"y":58.492},{"x":1753914120630,"y":56.131},{"x":1753914060537,"y":53.371},{"x":1753914000448,"y":42.336},{"x":1753913940211,"y":42.262},{"x":1753913883021,"y":42.146},{"x":1753913822864,"y":45.386},{"x":1753913762745,"y":54.17},{"x":1753913702632,"y":55.638},{"x":1753913642508,"y":56.45},{"x":1753913582386,"y":54.157},{"x":1753913522278,"y":48.18},{"x":1753913462146,"y":48.452},{"x":1753913402027,"y":48.228},{"x":1753913341888,"y":49.697},{"x":1753913281771,"y":48.257},{"x":1753913221653,"y":53.153},{"x":1753913161524,"y":50.886},{"x":1753913101396,"y":48.671},{"x":1753913041276,"y":47.906},{"x":1753912981140,"y":45.63},{"x":1753912920998,"y":55.867},{"x":1753912860877,"y":51.673},{"x":1753912800934,"y":47.952},{"x":1755122342073,"y":51.874},{"x":1755122281934,"y":50.392},{"x":1755122221815,"y":52.069},{"x":1755122161694,"y":53.704},{"x":1755122101562,"y":41.083},{"x":1755122041422,"y":45.353},{"x":1755121981295,"y":47.491},{"x":1755121921174,"y":36.305},{"x":1755121861048,"y":34.54},{"x":1755121800917,"y":56.012},{"x":1755121740782,"y":43.447},{"x":1755121680669,"y":43.152},{"x":1755121620549,"y":32.192},{"x":1755121560446,"y":36.342},{"x":1755121500336,"y":36.206},{"x":1755121440318,"y":48.047},{"x":1755121382928,"y":49.67},{"x":1755121322802,"y":44.094},{"x":1755121262673,"y":42.397},{"x":1755121202547,"y":41.236},{"x":1755121142419,"y":30.668},{"x":1755121082292,"y":36.768},{"x":1755121022165,"y":29.868},{"x":1755120962036,"y":33.16},{"x":1755120901904,"y":39.022},{"x":1755120841778,"y":38.042},{"x":1755120781659,"y":46.03},{"x":1755120721528,"y":38.869},{"x":1755120661390,"y":37.548},{"x":1755120601298,"y":38.726},{"x":1755120541114,"y":34.768},{"x":1755120480974,"y":36.281},{"x":1755120420858,"y":35.014},{"x":1755120360721,"y":34.969},{"x":1755120300623,"y":32.993},{"x":1755120240489,"y":32.618},{"x":1755120180392,"y":35.393},{"x":1755120120191,"y":34.615},{"x":1755120062925,"y":53.185},{"x":1755120002802,"y":35.174},{"x":1755119942680,"y":33.397},{"x":1755119882553,"y":44.774},{"x":1755119822430,"y":47.573},{"x":1755119762303,"y":46.289},{"x":1755119702168,"y":46.243},{"x":1755119642039,"y":44.816},{"x":1755119581854,"y":34.316},{"x":1755119521731,"y":34.752},{"x":1755119461532,"y":32.734},{"x":1755119401380,"y":33.222},{"x":1755119341253,"y":33.367},{"x":1755119281119,"y":32.905},{"x":1755119220979,"y":33.678},{"x":1755119160846,"y":32.879},{"x":1755119100747,"y":33.061},{"x":1755119040587,"y":34.699},{"x":1755118980524,"y":29.328},{"x":1755118920395,"y":32.412},{"x":1755118860300,"y":33.748},{"x":1755118802940,"y":34.552},{"x":1755118742812,"y":38.926},{"x":1755118682681,"y":33.696},{"x":1755118622556,"y":36.324},{"x":1755118562419,"y":40.846},{"x":1755118502300,"y":55.926},{"x":1755118442172,"y":41.263},{"x":1755118382040,"y":34.122},{"x":1755118321906,"y":34.598},{"x":1755118261767,"y":32.963},{"x":1755118201643,"y":33.548},{"x":1755118141516,"y":37.243},{"x":1755118081394,"y":34.774},{"x":1755118021269,"y":40.241},{"x":1755117961138,"y":42.1},{"x":1755117900996,"y":39.847},{"x":1755117840856,"y":45.815},{"x":1755117780733,"y":37.085},{"x":1755117720621,"y":34.169},{"x":1755117660492,"y":33.689},{"x":1755117600419,"y":33.132},{"x":1755117540293,"y":37.321},{"x":1755117480114,"y":29.828},{"x":1755117422903,"y":29.654},{"x":1755117362780,"y":30.036},{"x":1755117302662,"y":34.987},{"x":1755117242535,"y":45.074},{"x":1755117182410,"y":42.194},{"x":1755117122293,"y":36.914},{"x":1755117062150,"y":36.121},{"x":1755117002021,"y":35.134},{"x":1755116941882,"y":39.347},{"x":1755116881765,"y":34.02},{"x":1755116821636,"y":34.765},{"x":1755116761506,"y":36.558},{"x":1755116701386,"y":36.252},{"x":1755116641255,"y":42.62},{"x":1755116581133,"y":37.626},{"x":1755116520984,"y":52.5},{"x":1755116460860,"y":42.047},{"x":1755116400751,"y":37.56},{"x":1755116340582,"y":41.551},{"x":1755116280470,"y":45.31},{"x":1755116220332,"y":35.176},{"x":1755116160052,"y":52.613},{"x":1755116102904,"y":29.998},{"x":1755116042756,"y":41.888},{"x":1755115982622,"y":35.85},{"x":1755115922475,"y":34.975},{"x":1755115862337,"y":38.851},{"x":1755115802188,"y":62.783},{"x":1755115742066,"y":46.468},{"x":1755115681896,"y":43.079},{"x":1755115621757,"y":55.831},{"x":1755115561635,"y":51.628},{"x":1755115501519,"y":42.233},{"x":1755115441393,"y":46.468},{"x":1755115381258,"y":39.977},{"x":1755115321130,"y":38.02},{"x":1755115260984,"y":41.486},{"x":1755115201133,"y":37.007},{"x":1755115140567,"y":53.635},{"x":1755115080408,"y":36.085},{"x":1755115020193,"y":33.185},{"x":1755114963023,"y":33.498},{"x":1755114902859,"y":35.962},{"x":1755114842725,"y":40.668},{"x":1755114782602,"y":45.434},{"x":1755114722481,"y":41.184},{"x":1755114662359,"y":40.999},{"x":1755114602227,"y":39.824},{"x":1755114542101,"y":42.588},{"x":1755114481958,"y":38.976},{"x":1755114421829,"y":44.489},{"x":1755114361713,"y":38.682},{"x":1755114301622,"y":59.56},{"x":1755114241455,"y":64.777},{"x":1755114181323,"y":63.737},{"x":1755114121199,"y":60.287},{"x":1755114061071,"y":60.534},{"x":1755114000934,"y":43.954},{"x":1755113940787,"y":35.718},{"x":1755113880673,"y":37.91},{"x":1755113820545,"y":53.658},{"x":1755113760466,"y":52.546},{"x":1755113700263,"y":48.091},{"x":1755113643024,"y":52.693},{"x":1755113582878,"y":45.937},{"x":1755113522760,"y":47.851},{"x":1755113462639,"y":41.195},{"x":1755113402519,"y":36.223},{"x":1755113342406,"y":37.843},{"x":1755113282275,"y":63.65},{"x":1755113222155,"y":55.228},{"x":1755113162014,"y":54.284},{"x":1755113101892,"y":50.24},{"x":1755113041752,"y":51.043},{"x":1755112981632,"y":48.612},{"x":1755112921510,"y":34.985},{"x":1755112861382,"y":42.28},{"x":1755112801264,"y":35.377},{"x":1755112741129,"y":37.885},{"x":1755112681002,"y":38.1},{"x":1755112620880,"y":50.117},{"x":1755112560756,"y":35.736},{"x":1755112500635,"y":39.811},{"x":1755112440492,"y":39.691},{"x":1755112380316,"y":48.175},{"x":1755112320224,"y":57.178},{"x":1755112262883,"y":56.903},{"x":1755112202727,"y":57.398},{"x":1755112142608,"y":65.035},{"x":1755112082472,"y":49.783},{"x":1755112022333,"y":46.229},{"x":1755111962215,"y":63.163},{"x":1755111902084,"y":52.645},{"x":1755111841964,"y":52.026},{"x":1755111781813,"y":52.303},{"x":1755111721690,"y":57.683},{"x":1755111661572,"y":49.666},{"x":1755111601670,"y":41.904},{"x":1755111541176,"y":46.476},{"x":1755111481036,"y":52.63},{"x":1755111420888,"y":34.933},{"x":1755111360762,"y":48.124},{"x":1755111300643,"y":48.776},{"x":1755111240492,"y":52.733},{"x":1755111180389,"y":47.413},{"x":1755111120189,"y":48.965},{"x":1755111062975,"y":41.086},{"x":1755111002847,"y":37.164},{"x":1755110942722,"y":41.671},{"x":1755110882599,"y":49.967},{"x":1755110822472,"y":50.906},{"x":1755110762346,"y":67.603},{"x":1755110702223,"y":58.868},{"x":1755110642101,"y":73.382},{"x":1755110581966,"y":71.239},{"x":1755110521842,"y":70.006},{"x":1755110461722,"y":60.898},{"x":1755110401613,"y":62.383},{"x":1755110341475,"y":63.121},{"x":1755110281353,"y":49.691},{"x":1755110221235,"y":60.163},{"x":1755110161098,"y":58.638},{"x":1755110100955,"y":60.767},{"x":1755110040841,"y":67.643},{"x":1755109980690,"y":64.194},{"x":1755109920584,"y":58.674},{"x":1755109860537,"y":62.027},{"x":1755109800354,"y":51.139},{"x":1755109740191,"y":67.543},{"x":1755109682962,"y":75.092},{"x":1755109622839,"y":55.819},{"x":1755109562720,"y":69.286},{"x":1755109502587,"y":71.058},{"x":1755109442457,"y":72.751},{"x":1755109382335,"y":65.67},{"x":1755109322195,"y":61.103},{"x":1755109262067,"y":60.715},{"x":1755109201874,"y":53.225},{"x":1755109141738,"y":52.518},{"x":1755109081619,"y":56.452},{"x":1755109021492,"y":61.036},{"x":1755108961361,"y":54.39},{"x":1755108901257,"y":46.27},{"x":1755108841182,"y":44.828},{"x":1755108780972,"y":58.138},{"x":1755108720823,"y":53.728},{"x":1755108660665,"y":51.179},{"x":1755108600594,"y":61.83},{"x":1755108540402,"y":76.189},{"x":1755108480291,"y":56.248},{"x":1755108423002,"y":56.096},{"x":1755108362883,"y":51.574},{"x":1755108302757,"y":50.54},{"x":1755108242632,"y":50.384},{"x":1755108182514,"y":59.705},{"x":1755108122391,"y":49.004},{"x":1755108062241,"y":56.124},{"x":1755108002181,"y":51.738},{"x":1755107941959,"y":40.202},{"x":1755107881831,"y":37.478},{"x":1755107821707,"y":44.999},{"x":1755107761577,"y":59.201},{"x":1755107701448,"y":69.905},{"x":1755107641324,"y":63.256},{"x":1755107581204,"y":59.516},{"x":1755107521086,"y":46.868},{"x":1755107460940,"y":33.019},{"x":1755107400833,"y":33.701},{"x":1755107340700,"y":36.094},{"x":1755107280612,"y":48.616},{"x":1755107220464,"y":52.145},{"x":1755107160245,"y":50.753},{"x":1755107102993,"y":47.858},{"x":1755107042855,"y":61.564},{"x":1755106982732,"y":46.145},{"x":1755106922597,"y":51.074},{"x":1755106862459,"y":40.898},{"x":1755106802341,"y":41.483},{"x":1755106742213,"y":39.996},{"x":1755106682085,"y":40.648},{"x":1755106621933,"y":56.102},{"x":1755106561812,"y":63.076},{"x":1755106501695,"y":50.344},{"x":1755106441560,"y":47.399},{"x":1755106381427,"y":45.859},{"x":1755106321286,"y":51.331},{"x":1755106261159,"y":59.494},{"x":1755106201073,"y":59.185},{"x":1755106140869,"y":40.15},{"x":1755106080752,"y":41.61},{"x":1755106020628,"y":59.389},{"x":1755105960514,"y":45.534},{"x":1755105900363,"y":37.116},{"x":1755105840200,"y":41.046},{"x":1755105782979,"y":38.171},{"x":1755105722857,"y":64.81},{"x":1755105662710,"y":48.262},{"x":1755105602591,"y":43.031},{"x":1755105542466,"y":53.374},{"x":1755105482346,"y":50.018},{"x":1755105422222,"y":47.827},{"x":1755105362091,"y":43.021},{"x":1755105301953,"y":43.031},{"x":1755105241824,"y":42.002},{"x":1755105181668,"y":42.167},{"x":1755105121496,"y":48.342},{"x":1755105061332,"y":41.34},{"x":1755105001195,"y":42.578},{"x":1755104941055,"y":31.078},{"x":1755104880928,"y":33.167},{"x":1755104820800,"y":40.264},{"x":1755104760684,"y":47.322},{"x":1755104700599,"y":58.956},{"x":1755104640423,"y":57.419},{"x":1755104580302,"y":63.928},{"x":1755104520050,"y":55.183},{"x":1755104462893,"y":42.718},{"x":1755104402777,"y":38.928},{"x":1755104342647,"y":37.11},{"x":1755104282527,"y":32.386},{"x":1755104222404,"y":33.656},{"x":1755104162276,"y":39.044},{"x":1755104102148,"y":36.263},{"x":1755104042021,"y":53.875},{"x":1755103981882,"y":61.421},{"x":1755103921760,"y":56.85},{"x":1755103861643,"y":58.14},{"x":1755103801501,"y":76.866},{"x":1755103741367,"y":39.138},{"x":1755103681236,"y":34.417},{"x":1755103621114,"y":42.613},{"x":1755103560980,"y":44.305},{"x":1755103500884,"y":41.602},{"x":1755103440737,"y":40.878},{"x":1755103380560,"y":44.419},{"x":1755103320424,"y":45.941},{"x":1755103260241,"y":46.952},{"x":1755103202946,"y":39.905},{"x":1755103142814,"y":37.537},{"x":1755103082686,"y":34.921},{"x":1755103022543,"y":43.374},{"x":1755102962417,"y":45.806},{"x":1755102902294,"y":32.66},{"x":1755102842163,"y":32.922},{"x":1755102782042,"y":37.276},{"x":1755102721903,"y":61.255},{"x":1755102661776,"y":42.106},{"x":1755102601656,"y":53.206},{"x":1755102541505,"y":51.281},{"x":1755102481386,"y":48.739},{"x":1755102421266,"y":43.447},{"x":1755102361138,"y":52.408},{"x":1755102300998,"y":52.756},{"x":1755102240875,"y":45.794},{"x":1755102180748,"y":42.497},{"x":1755102120635,"y":47.941},{"x":1755102060508,"y":29.629},{"x":1755102000415,"y":27.14},{"x":1755101942986,"y":26.071},{"x":1755101882857,"y":41.515},{"x":1755101822731,"y":52.348},{"x":1755101762617,"y":52.5},{"x":1755101702480,"y":55.015},{"x":1755101642363,"y":50.389},{"x":1755101582209,"y":40.22},{"x":1755101522057,"y":34.708},{"x":1755101461910,"y":34.031},{"x":1755101401755,"y":42.636},{"x":1755101341623,"y":40.142},{"x":1755101281502,"y":36.26},{"x":1755101221378,"y":44.056},{"x":1755101161252,"y":45.886},{"x":1755101101127,"y":44.808},{"x":1755101040994,"y":42.61},{"x":1755100980892,"y":33.328},{"x":1755100920745,"y":33.846},{"x":1755100860631,"y":23.376},{"x":1755100800559,"y":46.59},{"x":1755100740369,"y":39.695},{"x":1755100680181,"y":50.308},{"x":1755100622940,"y":52.814},{"x":1755100562808,"y":46.938},{"x":1755100502668,"y":38.711},{"x":1755100442544,"y":39.578},{"x":1755100382415,"y":61.006},{"x":1755100322281,"y":46.733},{"x":1755100262147,"y":48.334},{"x":1755100202023,"y":49.962},{"x":1755100141881,"y":47.11},{"x":1755100081751,"y":43.086},{"x":1755100021623,"y":36.871},{"x":1755099961495,"y":47.119},{"x":1755099901367,"y":51.641},{"x":1755099841224,"y":52.507},{"x":1755099781093,"y":56.666},{"x":1755099720945,"y":52.391},{"x":1755099660811,"y":32.864},{"x":1755099600771,"y":32.543},{"x":1755099540550,"y":31.249},{"x":1755099480418,"y":34.054},{"x":1755099420318,"y":41.749},{"x":1755099362999,"y":48.876},{"x":1755099302864,"y":63.616},{"x":1755099242739,"y":45.593},{"x":1755099182615,"y":30.786},{"x":1755099122492,"y":38.141},{"x":1755099062357,"y":37.388},{"x":1755099002225,"y":30.487},{"x":1755098942096,"y":38.598},{"x":1755098881958,"y":44.494},{"x":1755098821832,"y":47.038},{"x":1755098761716,"y":64.069},{"x":1755098701578,"y":51.312},{"x":1755098641453,"y":35.762},{"x":1755098581320,"y":45.145},{"x":1755098521199,"y":50.438},{"x":1755098461020,"y":49.724},{"x":1755098400891,"y":35.756},{"x":1755098340727,"y":41.168},{"x":1755098280618,"y":29.332},{"x":1755098220481,"y":27.23},{"x":1755098160337,"y":36.532},{"x":1755098100175,"y":51.902},{"x":1755098042906,"y":51.554},{"x":1755097982771,"y":69.54},{"x":1755097922629,"y":42.533},{"x":1755097862452,"y":33.446},{"x":1755097802282,"y":32.076},{"x":1755097742151,"y":24.934},{"x":1755097682022,"y":22.756},{"x":1755097621882,"y":26.465},{"x":1755097561762,"y":29.31},{"x":1755097501638,"y":32.921},{"x":1755097441519,"y":23.455},{"x":1755097381397,"y":30.832},{"x":1755097321275,"y":32.845},{"x":1755097261142,"y":39.686},{"x":1755097201103,"y":54.031},{"x":1755097140740,"y":47.22},{"x":1755097080609,"y":50.196},{"x":1755097020535,"y":48.882},{"x":1755096960369,"y":39.864},{"x":1755096902990,"y":35.611},{"x":1755096842860,"y":31.668},{"x":1755096782739,"y":31.439},{"x":1755096722608,"y":34.441},{"x":1755096662481,"y":37.907},{"x":1755096602356,"y":33.731},{"x":1755096542223,"y":24.211},{"x":1755096482098,"y":29.611},{"x":1755096421955,"y":20.899},{"x":1755096361820,"y":33.988},{"x":1755096301663,"y":49.313},{"x":1755096241539,"y":49.74},{"x":1755096181402,"y":55.339},{"x":1755096121276,"y":41.641},{"x":1755096061137,"y":46.958},{"x":1755096001086,"y":36.378},{"x":1755095940821,"y":35.028},{"x":1755095880691,"y":35.441},{"x":1755095820568,"y":36.559},{"x":1755095760486,"y":23.693},{"x":1755095700335,"y":20.597},{"x":1755095642970,"y":23.521},{"x":1755095582837,"y":39.019},{"x":1755095522713,"y":41.06},{"x":1755095462585,"y":64.169},{"x":1755095402451,"y":41.665},{"x":1755095342315,"y":29.341},{"x":1755095282192,"y":27.883},{"x":1755095222065,"y":42.306},{"x":1755095161914,"y":40.454},{"x":1755095101776,"y":35.083},{"x":1755095041654,"y":36.536},{"x":1755094981524,"y":34.068},{"x":1755094921400,"y":55.789},{"x":1755094861252,"y":59.129},{"x":1755094801130,"y":40.481},{"x":1755094740957,"y":53.011},{"x":1755094680838,"y":49.1},{"x":1755094620739,"y":38.06},{"x":1755094560658,"y":47.296},{"x":1755094500425,"y":41.432},{"x":1755094440321,"y":49.45},{"x":1755094383002,"y":45.428},{"x":1755094322852,"y":39.05},{"x":1755094262724,"y":58.48},{"x":1755094202562,"y":59.117},{"x":1755094142432,"y":45.979},{"x":1755094082306,"y":46.686},{"x":1755094022169,"y":42.5},{"x":1755093962046,"y":52.651},{"x":1755093901909,"y":50.069},{"x":1755093841824,"y":41.206},{"x":1755093781672,"y":40.49},{"x":1755093721541,"y":38.203},{"x":1755093661476,"y":63.755},{"x":1755093601417,"y":48.13},{"x":1755093541143,"y":64.434},{"x":1755093481010,"y":33.632},{"x":1755093420871,"y":36.706},{"x":1755093360751,"y":27.727},{"x":1755093300623,"y":31.458},{"x":1755093240537,"y":29.948},{"x":1755093180311,"y":23.604},{"x":1755093120248,"y":14.886},{"x":1755093062929,"y":17.09},{"x":1755093002794,"y":31.624},{"x":1755092942676,"y":27.725},{"x":1755092882541,"y":31.147},{"x":1755092822414,"y":35.082},{"x":1755092762270,"y":27.193},{"x":1755092702143,"y":23.407},{"x":1755092642008,"y":27.036},{"x":1755092581882,"y":29.542},{"x":1755092521745,"y":39.068},{"x":1755092461626,"y":39.604},{"x":1755092401505,"y":41.684},{"x":1755092341373,"y":65.924},{"x":1755092281247,"y":48.679},{"x":1755092221115,"y":30.335},{"x":1755092160976,"y":24.259},{"x":1755092100846,"y":10.552},{"x":1755092040706,"y":17.026},{"x":1755091980631,"y":17.79},{"x":1755091920500,"y":13.0},{"x":1755091860358,"y":13.259},{"x":1755091800538,"y":42.286},{"x":1755091742975,"y":36.346},{"x":1755091682856,"y":39.232},{"x":1755091622732,"y":34.919},{"x":1755091562609,"y":45.641},{"x":1755091502480,"y":8.358},{"x":1755091442362,"y":36.238},{"x":1755091382237,"y":17.363},{"x":1755091322106,"y":18.926},{"x":1755091261960,"y":25.835},{"x":1755091201811,"y":27.196},{"x":1755091141665,"y":33.302},{"x":1755091081521,"y":40.524},{"x":1755091021396,"y":42.934},{"x":1755090961262,"y":29.402},{"x":1755090901142,"y":28.622},{"x":1755090841002,"y":13.801},{"x":1755090780862,"y":12.139},{"x":1755090720698,"y":22.201},{"x":1755090660483,"y":37.116},{"x":1755090600398,"y":45.887},{"x":1755090540176,"y":42.514},{"x":1755090482915,"y":41.779},{"x":1755090422793,"y":45.925},{"x":1755090362668,"y":30.163},{"x":1755090302545,"y":31.055},{"x":1755090242404,"y":29.27},{"x":1755090182282,"y":28.36},{"x":1755090122141,"y":30.413},{"x":1755090062011,"y":29.239},{"x":1755090001746,"y":43.682},{"x":1755089941608,"y":47.267},{"x":1755089881489,"y":42.67},{"x":1755089821353,"y":33.673},{"x":1755089761228,"y":38.941},{"x":1755089701101,"y":32.849},{"x":1755089640939,"y":39.985},{"x":1755089580818,"y":48.709},{"x":1755089520732,"y":50.429},{"x":1755089460574,"y":49.975},{"x":1755089400522,"y":47.25},{"x":1755089340314,"y":31.78},{"x":1755089280063,"y":38.143},{"x":1755089222902,"y":38.128},{"x":1755089162761,"y":37.526},{"x":1755089102633,"y":37.997},{"x":1755089042493,"y":45.536},{"x":1755088982371,"y":35.418},{"x":1755088922253,"y":35.429},{"x":1755088862141,"y":36.24},{"x":1755088801997,"y":41.444},{"x":1755088741869,"y":21.074},{"x":1755088681744,"y":27.788},{"x":1755088621618,"y":28.241},{"x":1755088561496,"y":57.396},{"x":1755088501366,"y":49.039},{"x":1755088441243,"y":46.759},{"x":1755088381117,"y":44.14},{"x":1755088320953,"y":50.363},{"x":1755088260814,"y":35.258},{"x":1755088200737,"y":39.106},{"x":1755088140577,"y":40.62},{"x":1755088080430,"y":39.006},{"x":1755088020318,"y":39.373},{"x":1755087962993,"y":25.214},{"x":1755087902878,"y":22.97},{"x":1755087842754,"y":21.624},{"x":1755087782702,"y":23.71},{"x":1755087722509,"y":40.334},{"x":1755087662386,"y":32.398},{"x":1755087602266,"y":53.516},{"x":1755087542129,"y":30.103},{"x":1755087481996,"y":25.96},{"x":1755087421887,"y":35.472},{"x":1755087361728,"y":31.846},{"x":1755087301605,"y":25.882},{"x":1755087241487,"y":30.505},{"x":1755087181355,"y":36.288},{"x":1755087121186,"y":3.912},{"x":1755087061004,"y":23.874},{"x":1755087000849,"y":38.78},{"x":1755086940694,"y":29.848},{"x":1755086880571,"y":32.758},{"x":1755086820416,"y":36.284},{"x":1755086760299,"y":35.269},{"x":1755086702949,"y":21.976},{"x":1755086642825,"y":21.224},{"x":1755086582704,"y":25.702},{"x":1755086522556,"y":42.683},{"x":1755086462439,"y":23.468},{"x":1755086402338,"y":40.686},{"x":1755086342172,"y":37.811},{"x":1755086282027,"y":41.976},{"x":1755086221894,"y":45.6},{"x":1755086161761,"y":40.718},{"x":1755086101637,"y":30.287},{"x":1755086041517,"y":33.008},{"x":1755085981387,"y":24.18},{"x":1755085921264,"y":42.853},{"x":1755085861134,"y":31.231},{"x":1755085800982,"y":41.396},{"x":1755085740829,"y":42.082},{"x":1755085680749,"y":41.153},{"x":1755085620597,"y":32.975},{"x":1755085560474,"y":41.08},{"x":1755085500410,"y":51.98},{"x":1755085440245,"y":36.508},{"x":1755085382991,"y":43.226},{"x":1755085322838,"y":33.816},{"x":1755085262720,"y":37.999},{"x":1755085202600,"y":15.558},{"x":1755085142465,"y":3.78},{"x":1755085082326,"y":2.389},{"x":1755085022190,"y":14.74},{"x":1755084962068,"y":29.01},{"x":1755084901928,"y":42.796},{"x":1755084841801,"y":34.096},{"x":1755084781684,"y":30.164},{"x":1755084721566,"y":28.132},{"x":1755084661453,"y":39.79},{"x":1755084601338,"y":22.477},{"x":1755084541164,"y":23.942},{"x":1755084481040,"y":24.895},{"x":1755084420904,"y":27.115},{"x":1755084360780,"y":26.695},{"x":1755084300676,"y":39.271},{"x":1755084240548,"y":64.529},{"x":1755084180388,"y":48.662},{"x":1755084120290,"y":44.905},{"x":1755084062936,"y":43.561},{"x":1755084002815,"y":44.501},{"x":1755083942693,"y":29.065},{"x":1755083882575,"y":41.845},{"x":1755083822457,"y":36.512},{"x":1755083762327,"y":41.758},{"x":1755083702189,"y":42.988},{"x":1755083642082,"y":28.21},{"x":1755083581907,"y":39.956},{"x":1755083521727,"y":26.338},{"x":1755083461598,"y":30.503},{"x":1755083401460,"y":28.612},{"x":1755083341317,"y":25.052},{"x":1755083281193,"y":27.541},{"x":1755083221041,"y":16.274},{"x":1755083160894,"y":29.744},{"x":1755083100790,"y":30.506},{"x":1755083040653,"y":29.566},{"x":1755082980545,"y":32.729},{"x":1755082920390,"y":31.258},{"x":1755082860273,"y":33.622},{"x":1755082803016,"y":29.928},{"x":1755082742856,"y":27.385},{"x":1755082682740,"y":19.853},{"x":1755082622617,"y":27.648},{"x":1755082562493,"y":22.712},{"x":1755082502361,"y":26.506},{"x":1755082442225,"y":20.165},{"x":1755082382100,"y":34.17},{"x":1755082321961,"y":24.671},{"x":1755082261832,"y":35.843},{"x":1755082201712,"y":37.438},{"x":1755082141512,"y":34.606},{"x":1755082081398,"y":28.308},{"x":1755082021259,"y":23.902},{"x":1755081961132,"y":36.785},{"x":1755081901064,"y":26.444},{"x":1755081840867,"y":59.365},{"x":1755081780730,"y":44.496},{"x":1755081720621,"y":34.357},{"x":1755081660484,"y":18.785},{"x":1755081600541,"y":21.912},{"x":1755081542938,"y":38.005},{"x":1755081482817,"y":31.355},{"x":1755081422691,"y":19.399},{"x":1755081362569,"y":28.985},{"x":1755081302437,"y":6.349},{"x":1755081242314,"y":12.54},{"x":1755081182171,"y":11.809},{"x":1755081122053,"y":26.576},{"x":1755081061894,"y":40.222},{"x":1755081001777,"y":41.322},{"x":1755080941638,"y":47.273},{"x":1755080881513,"y":47.822},{"x":1755080821388,"y":47.113},{"x":1755080761253,"y":36.211},{"x":1755080701123,"y":31.936},{"x":1755080640968,"y":28.049},{"x":1755080580847,"y":25.703},{"x":1755080520723,"y":31.35},{"x":1755080460589,"y":30.695},{"x":1755080400516,"y":33.325},{"x":1755080340316,"y":33.044},{"x":1755080280295,"y":35.482},{"x":1755080222900,"y":22.925},{"x":1755080162759,"y":15.707},{"x":1755080102633,"y":14.245},{"x":1755080042522,"y":15.456},{"x":1755079982360,"y":24.739},{"x":1755079922224,"y":24.892},{"x":1755079862090,"y":34.787},{"x":1755079801920,"y":37.478},{"x":1755079741789,"y":39.833},{"x":1755079681658,"y":25.277},{"x":1755079621538,"y":21.839},{"x":1755079561413,"y":16.567},{"x":1755079501298,"y":27.548},{"x":1755079441175,"y":26.369},{"x":1755079381051,"y":22.471},{"x":1755079320911,"y":25.49},{"x":1755079260787,"y":28.459},{"x":1755079200784,"y":33.665},{"x":1755079140539,"y":13.079},{"x":1755079080411,"y":16.084},{"x":1755079020241,"y":27.643},{"x":1755078962968,"y":20.878},{"x":1755078902842,"y":25.284},{"x":1755078842710,"y":44.974},{"x":1755078782585,"y":37.951},{"x":1755078722469,"y":55.692},{"x":1755078662342,"y":37.994},{"x":1755078602201,"y":26.754},{"x":1755078542081,"y":23.368},{"x":1755078481929,"y":20.636},{"x":1755078421808,"y":30.386},{"x":1755078361683,"y":49.55},{"x":1755078301562,"y":45.235},{"x":1755078241457,"y":32.892},{"x":1755078181318,"y":31.063},{"x":1755078121191,"y":29.494},{"x":1755078061064,"y":27.887},{"x":1755078000953,"y":21.676},{"x":1755077940777,"y":18.22},{"x":1755077880661,"y":19.199},{"x":1755077820546,"y":25.175},{"x":1755077760375,"y":24.922},{"x":1755077700272,"y":38.322},{"x":1755077640258,"y":41.712},{"x":1755077582930,"y":35.341},{"x":1755077522797,"y":34.207},{"x":1755077462679,"y":35.686},{"x":1755077402558,"y":35.221},{"x":1755077342424,"y":15.838},{"x":1755077282291,"y":14.822},{"x":1755077222170,"y":31.315},{"x":1755077162045,"y":31.69},{"x":1755077101919,"y":31.315},{"x":1755077041758,"y":28.21},{"x":1755076981629,"y":45.102},{"x":1755076921513,"y":50.375},{"x":1755076861367,"y":22.588},{"x":1755076801250,"y":20.297},{"x":1755076741112,"y":20.252},{"x":1755076680975,"y":20.432},{"x":1755076620844,"y":35.845},{"x":1755076560692,"y":32.412},{"x":1755076500666,"y":45.511},{"x":1755076440362,"y":43.486},{"x":1755076380228,"y":34.67},{"x":1755076322946,"y":28.798},{"x":1755076262807,"y":30.353},{"x":1755076202648,"y":14.194},{"x":1755076142516,"y":17.297},{"x":1755076082386,"y":25.322},{"x":1755076022251,"y":27.529},{"x":1755075962128,"y":22.463},{"x":1755075902000,"y":22.093},{"x":1755075841895,"y":16.548},{"x":1755075781749,"y":23.454},{"x":1755075721625,"y":20.537},{"x":1755075661526,"y":22.709},{"x":1755075601412,"y":44.287},{"x":1755075541191,"y":47.93},{"x":1755075481065,"y":48.662},{"x":1755075420931,"y":40.223},{"x":1755075360810,"y":34.903},{"x":1755075300701,"y":23.533},{"x":1755075240561,"y":39.116},{"x":1755075180400,"y":48.752},{"x":1755075120298,"y":31.087},{"x":1755075063021,"y":37.13},{"x":1755075002859,"y":32.266},{"x":1755074942737,"y":35.891},{"x":1755074882622,"y":34.16},{"x":1755074822505,"y":37.198},{"x":1755074762383,"y":32.533},{"x":1755074702258,"y":25.229},{"x":1755074642132,"y":26.258},{"x":1755074581999,"y":39.902},{"x":1755074521867,"y":45.509},{"x":1755074461736,"y":46.309},{"x":1755074401614,"y":43.483},{"x":1755074341485,"y":40.698},{"x":1755074281362,"y":32.344},{"x":1755074221241,"y":24.374},{"x":1755074161111,"y":24.326},{"x":1755074100969,"y":29.528},{"x":1755074040826,"y":21.449},{"x":1755073980713,"y":20.843},{"x":1755073920607,"y":30.712},{"x":1755073860477,"y":40.37},{"x":1755073800437,"y":43.286},{"x":1755073742952,"y":50.046},{"x":1755073682830,"y":61.429},{"x":1755073622712,"y":43.478},{"x":1755073562590,"y":39.59},{"x":1755073502470,"y":35.046},{"x":1755073442333,"y":33.278},{"x":1755073382209,"y":33.34},{"x":1755073322083,"y":37.736},{"x":1755073261950,"y":53.976},{"x":1755073201827,"y":38.387},{"x":1755073141703,"y":22.972},{"x":1755073081585,"y":28.24},{"x":1755073021444,"y":29.659},{"x":1755072961316,"y":32.869},{"x":1755072901201,"y":32.266},{"x":1755072841064,"y":33.487},{"x":1755072780914,"y":30.145},{"x":1755072720827,"y":28.652},{"x":1755072660660,"y":26.123},{"x":1755072600529,"y":39.784},{"x":1755072540276,"y":55.99},{"x":1755072483056,"y":55.192},{"x":1755072422894,"y":51.966},{"x":1755072362774,"y":50.852},{"x":1755072302652,"y":29.503},{"x":1755072242526,"y":29.37},{"x":1755072182423,"y":32.716},{"x":1755072122273,"y":37.586},{"x":1755072062154,"y":37.18},{"x":1755072002050,"y":39.481},{"x":1755071941878,"y":42.851},{"x":1755071881755,"y":39.127},{"x":1755071821630,"y":28.632},{"x":1755071761491,"y":29.924},{"x":1755071701371,"y":33.251},{"x":1755071641245,"y":42.774},{"x":1755071581116,"y":38.28},{"x":1755071520983,"y":46.097},{"x":1755071460846,"y":47.568},{"x":1755071400769,"y":30.268},{"x":1755071340600,"y":29.486},{"x":1755071280494,"y":30.031},{"x":1755071220286,"y":28.134},{"x":1755071160048,"y":36.836},{"x":1755071102899,"y":35.732},{"x":1755071042792,"y":33.901},{"x":1755070982643,"y":42.067},{"x":1755070922521,"y":57.486},{"x":1755070862401,"y":46.288},{"x":1755070802272,"y":47.227},{"x":1755070742153,"y":41.729},{"x":1755070681999,"y":36.727},{"x":1755070621876,"y":33.808},{"x":1755070561756,"y":31.103},{"x":1755070501635,"y":51.0},{"x":1755070441510,"y":50.99},{"x":1755070381394,"y":50.005},{"x":1755070321260,"y":50.425},{"x":1755070261141,"y":45.545},{"x":1755070200985,"y":50.67},{"x":1755070140208,"y":51.46},{"x":1755070082975,"y":38.1},{"x":1755070022852,"y":45.63},{"x":1755069962743,"y":42.53},{"x":1755069902594,"y":34.289},{"x":1755069842470,"y":40.645},{"x":1755069782348,"y":45.635},{"x":1755069722224,"y":53.59},{"x":1755069662086,"y":62.513},{"x":1755069601955,"y":61.256},{"x":1755069541792,"y":48.827},{"x":1755069481674,"y":56.942},{"x":1755069421543,"y":49.532},{"x":1755069361418,"y":50.737},{"x":1755069301298,"y":39.146},{"x":1755069241190,"y":38.509},{"x":1755069180955,"y":45.906},{"x":1755069120849,"y":46.742},{"x":1755069060658,"y":44.428},{"x":1755069000356,"y":43.31},{"x":1755068940300,"y":72.016},{"x":1755068882921,"y":79.696},{"x":1755068822796,"y":63.355},{"x":1755068762677,"y":64.931},{"x":1755068702550,"y":69.308},{"x":1755068642422,"y":44.653},{"x":1755068582291,"y":43.41},{"x":1755068522164,"y":56.927},{"x":1755068462038,"y":56.129},{"x":1755068401815,"y":63.662},{"x":1755068341553,"y":60.868},{"x":1755068281436,"y":67.254},{"x":1755068221312,"y":64.504},{"x":1755068161196,"y":62.49},{"x":1755068101069,"y":64.08},{"x":1755068040927,"y":39.134},{"x":1755067980803,"y":38.591},{"x":1755067920728,"y":39.782},{"x":1755067860569,"y":41.358},{"x":1755067800500,"y":42.082},{"x":1755067740262,"y":37.34},{"x":1755067682945,"y":38.329},{"x":1755067622828,"y":40.763},{"x":1755067562700,"y":48.266},{"x":1755067502578,"y":44.73},{"x":1755067442457,"y":41.237},{"x":1755067382326,"y":40.121},{"x":1755067322200,"y":61.152},{"x":1755067262075,"y":60.172},{"x":1755067201947,"y":62.064},{"x":1755067141811,"y":63.277},{"x":1755067081697,"y":66.517},{"x":1755067021573,"y":41.645},{"x":1755066961447,"y":47.714},{"x":1755066901319,"y":47.432},{"x":1755066841193,"y":44.804},{"x":1755066781060,"y":54.462},{"x":1755066720919,"y":52.828},{"x":1755066660788,"y":52.943},{"x":1755066600674,"y":52.818},{"x":1755066540430,"y":45.482},{"x":1755066480283,"y":40.189},{"x":1755066422973,"y":40.014},{"x":1755066362844,"y":46.974},{"x":1755066302722,"y":54.25},{"x":1755066242605,"y":65.724},{"x":1755066182482,"y":54.36},{"x":1755066122361,"y":68.126},{"x":1755066062252,"y":51.065},{"x":1755066002106,"y":65.711},{"x":1755065941943,"y":46.502},{"x":1755065881812,"y":64.834},{"x":1755065821652,"y":47.005},{"x":1755065761518,"y":60.643},{"x":1755065701381,"y":52.534},{"x":1755065641257,"y":63.244},{"x":1755065581148,"y":43.837},{"x":1755065520986,"y":55.781},{"x":1755065460839,"y":53.255},{"x":1755065400722,"y":56.069},{"x":1755065340563,"y":37.416},{"x":1755065280557,"y":38.67},{"x":1755065220367,"y":37.579},{"x":1755065160200,"y":38.255},{"x":1755065102921,"y":40.652},{"x":1755065042802,"y":44.408},{"x":1755064982700,"y":50.504},{"x":1755064922543,"y":61.318},{"x":1755064862420,"y":66.464},{"x":1755064802322,"y":64.628},{"x":1755064742139,"y":62.153},{"x":1755064681992,"y":40.55},{"x":1755064621873,"y":50.192},{"x":1755064561712,"y":38.538},{"x":1755064501597,"y":39.199},{"x":1755064441471,"y":49.417},{"x":1755064381347,"y":53.456},{"x":1755064321216,"y":49.134},{"x":1755064261076,"y":48.618},{"x":1755064200932,"y":48.866},{"x":1755064140796,"y":37.745},{"x":1755064080669,"y":38.16},{"x":1755064020596,"y":45.486},{"x":1755063960411,"y":41.182},{"x":1755063900286,"y":45.647},{"x":1755063840071,"y":53.462},{"x":1755063782899,"y":50.55},{"x":1755063722746,"y":51.053},{"x":1755063662632,"y":50.665},{"x":1755063602493,"y":52.254},{"x":1755063542369,"y":41.408},{"x":1755063482239,"y":44.578},{"x":1755063422115,"y":47.279},{"x":1755063361964,"y":59.887},{"x":1755063301838,"y":54.532},{"x":1755063241704,"y":52.344},{"x":1755063181595,"y":51.299},{"x":1755063121441,"y":51.475},{"x":1755063061320,"y":42.526},{"x":1755063001201,"y":43.33},{"x":1755062941064,"y":41.321},{"x":1755062880907,"y":41.507},{"x":1755062820791,"y":46.943},{"x":1755062760677,"y":47.618},{"x":1755062700566,"y":43.831},{"x":1755062640443,"y":44.79},{"x":1755062580330,"y":39.499},{"x":1755062523021,"y":48.548},{"x":1755062462883,"y":48.112},{"x":1755062402736,"y":62.822},{"x":1755062342616,"y":61.423},{"x":1755062282496,"y":66.584},{"x":1755062222369,"y":58.258},{"x":1755062162236,"y":54.721},{"x":1755062102115,"y":44.455},{"x":1755062041989,"y":44.839},{"x":1755061981839,"y":42.622},{"x":1755061921691,"y":50.424},{"x":1755061861569,"y":53.339},{"x":1755061801408,"y":49.805},{"x":1755061741219,"y":49.639},{"x":1755061681085,"y":51.884},{"x":1755061620906,"y":38.798},{"x":1755061560784,"y":43.31},{"x":1755061500687,"y":42.392},{"x":1755061440598,"y":44.519},{"x":1755061380437,"y":55.11},{"x":1755061320268,"y":52.508},{"x":1755061262972,"y":56.669},{"x":1755061202883,"y":53.582},{"x":1755061142700,"y":52.618},{"x":1755061082578,"y":40.998},{"x":1755061022463,"y":40.357},{"x":1755060962324,"y":43.165},{"x":1755060902197,"y":43.409},{"x":1755060842074,"y":41.573},{"x":1755060781932,"y":42.306},{"x":1755060721794,"y":42.038},{"x":1755060661697,"y":39.973},{"x":1755060601543,"y":46.886},{"x":1755060541434,"y":47.035},{"x":1755060481285,"y":55.147},{"x":1755060421157,"y":65.254},{"x":1755060360978,"y":65.436},{"x":1755060300968,"y":66.332},{"x":1755060240737,"y":69.944},{"x":1755060180575,"y":55.027},{"x":1755060120460,"y":43.865},{"x":1755060060403,"y":41.39},{"x":1755060000166,"y":41.988},{"x":1755059942466,"y":52.661},{"x":1755059882337,"y":55.216},{"x":1755059822217,"y":53.116},{"x":1755059762098,"y":51.46},{"x":1755059701951,"y":54.905},{"x":1755059641821,"y":54.259},{"x":1755059581697,"y":57.365},{"x":1755059521577,"y":52.814},{"x":1755059461457,"y":49.912},{"x":1755059401343,"y":48.432},{"x":1755059341197,"y":27.707},{"x":1755059281060,"y":27.898},{"x":1755059220923,"y":32.904},{"x":1755059160791,"y":32.148},{"x":1755059100679,"y":31.838},{"x":1755059040577,"y":31.284},{"x":1755058980444,"y":33.524},{"x":1755058923193,"y":39.536},{"x":1755058861305,"y":33.373},{"x":1755058801191,"y":34.258},{"x":1755058741057,"y":36.371},{"x":1755058680923,"y":36.178},{"x":1755058620808,"y":40.169},{"x":1755058560695,"y":50.644},{"x":1755058500607,"y":45.838},{"x":1755058440534,"y":54.432},{"x":1755058380313,"y":57.326},{"x":1755058322980,"y":53.078},{"x":1755058262800,"y":41.47},{"x":1755058202666,"y":39.55},{"x":1755058142554,"y":28.819},{"x":1755058082416,"y":35.456},{"x":1755058022295,"y":36.292},{"x":1755057962151,"y":39.413},{"x":1755057902018,"y":45.566},{"x":1755057841864,"y":36.956},{"x":1755057781741,"y":37.124},{"x":1755057721617,"y":30.422},{"x":1755057661475,"y":32.627},{"x":1755057601447,"y":40.018},{"x":1755057541166,"y":40.109},{"x":1755057481028,"y":38.699},{"x":1755057420918,"y":38.95},{"x":1755057360779,"y":39.156},{"x":1755057300688,"y":35.137},{"x":1755057240537,"y":40.012},{"x":1755057180421,"y":35.729},{"x":1755057120234,"y":35.963},{"x":1755057063015,"y":36.436},{"x":1755057002889,"y":34.1},{"x":1755056942770,"y":34.159},{"x":1755056882640,"y":34.321},{"x":1755056822511,"y":31.88},{"x":1755056762394,"y":31.968},{"x":1755056702272,"y":32.027},{"x":1755056642139,"y":38.882},{"x":1755056581998,"y":39.98},{"x":1755056521852,"y":34.054},{"x":1755056461741,"y":36.265},{"x":1755056401366,"y":37.639},{"x":1755056341238,"y":39.952},{"x":1755056281100,"y":35.422},{"x":1755056220963,"y":35.622},{"x":1755056160834,"y":30.913},{"x":1755056100734,"y":34.331},{"x":1755056040591,"y":34.964},{"x":1755055980477,"y":33.853},{"x":1755055920411,"y":33.018},{"x":1755055860420,"y":30.769},{"x":1755055802909,"y":30.298},{"x":1755055742792,"y":29.926},{"x":1755055682662,"y":31.163},{"x":1755055622543,"y":30.878},{"x":1755055562422,"y":35.605},{"x":1755055502305,"y":39.682},{"x":1755055442171,"y":38.272},{"x":1755055382046,"y":39.598},{"x":1755055321904,"y":38.034},{"x":1755055261781,"y":36.378},{"x":1755055201660,"y":33.196},{"x":1755055141536,"y":30.652},{"x":1755055081415,"y":28.136},{"x":1755055021329,"y":28.385},{"x":1755054961116,"y":28.03},{"x":1755054901024,"y":39.373},{"x":1755054840780,"y":32.58},{"x":1755054780631,"y":32.362},{"x":1755054720561,"y":34.015},{"x":1755054660395,"y":33.616},{"x":1755054600025,"y":31.54},{"x":1755054542898,"y":35.257},{"x":1755054482766,"y":28.322},{"x":1755054422646,"y":29.783},{"x":1755054362506,"y":28.727},{"x":1755054302385,"y":43.952},{"x":1755054242249,"y":57.136},{"x":1755054182097,"y":53.436},{"x":1755054121901,"y":59.537},{"x":1755054061742,"y":44.989},{"x":1755054001555,"y":44.917},{"x":1755053941240,"y":33.454},{"x":1755053881092,"y":33.014},{"x":1755053820973,"y":27.491},{"x":1755053760833,"y":27.655},{"x":1755053700761,"y":27.782},{"x":1755053640594,"y":31.945},{"x":1755053580492,"y":32.576},{"x":1755053520426,"y":35.065},{"x":1755053460247,"y":37.814},{"x":1755053403009,"y":39.312},{"x":1755053342880,"y":34.21},{"x":1755053282764,"y":31.516},{"x":1755053222639,"y":33.499},{"x":1755053162521,"y":31.519},{"x":1755053102404,"y":27.575},{"x":1755053042270,"y":27.775},{"x":1755052982140,"y":38.268},{"x":1755052922013,"y":41.461},{"x":1755052861885,"y":42.282},{"x":1755052801762,"y":42.446},{"x":1755052741641,"y":41.304},{"x":1755052681515,"y":28.241},{"x":1755052621398,"y":28.85},{"x":1755052561277,"y":33.822},{"x":1755052501157,"y":40.961},{"x":1755052441023,"y":39.662},{"x":1755052380863,"y":38.747},{"x":1755052320761,"y":38.392},{"x":1755052260637,"y":37.421},{"x":1755052200587,"y":41.512},{"x":1755052140342,"y":34.195},{"x":1755052080232,"y":32.476},{"x":1755052022935,"y":32.81},{"x":1755051962813,"y":30.774},{"x":1755051902690,"y":41.542},{"x":1755051842565,"y":44.224},{"x":1755051782443,"y":38.999},{"x":1755051722318,"y":42.647},{"x":1755051662196,"y":43.043},{"x":1755051602062,"y":31.212},{"x":1755051541903,"y":34.937},{"x":1755051481772,"y":28.693},{"x":1755051421655,"y":28.154},{"x":1755051361528,"y":30.977},{"x":1755051301390,"y":32.246},{"x":1755051241271,"y":31.712},{"x":1755051181140,"y":28.978},{"x":1755051120976,"y":31.705},{"x":1755051060826,"y":31.096},{"x":1755051000666,"y":32.68},{"x":1755050940532,"y":32.911},{"x":1755050880474,"y":47.789},{"x":1755050820290,"y":45.167},{"x":1755050760244,"y":43.391},{"x":1755050702908,"y":43.679},{"x":1755050642747,"y":43.291},{"x":1755050582623,"y":31.29},{"x":1755050522490,"y":33.545},{"x":1755050462359,"y":35.086},{"x":1755050402246,"y":33.818},{"x":1755050342102,"y":30.983},{"x":1755050281966,"y":31.168},{"x":1755050221844,"y":41.054},{"x":1755050161724,"y":47.09},{"x":1755050101605,"y":42.467},{"x":1755050041477,"y":40.825},{"x":1755049981361,"y":39.732},{"x":1755049921238,"y":32.854},{"x":1755049861129,"y":30.659},{"x":1755049800963,"y":32.484},{"x":1755049740829,"y":29.947},{"x":1755049680719,"y":29.725},{"x":1755049620586,"y":29.623},{"x":1755049560504,"y":28.385},{"x":1755049500492,"y":31.057},{"x":1755049440236,"y":33.388},{"x":1755049382950,"y":35.483},{"x":1755049322827,"y":34.706},{"x":1755049262701,"y":32.371},{"x":1755049202584,"y":31.406},{"x":1755049142435,"y":35.124},{"x":1755049082300,"y":29.168},{"x":1755049022174,"y":29.029},{"x":1755048962034,"y":29.808},{"x":1755048901904,"y":33.055},{"x":1755048841780,"y":31.392},{"x":1755048781649,"y":34.88},{"x":1755048721528,"y":34.301},{"x":1755048661386,"y":31.45},{"x":1755048601291,"y":30.652},{"x":1755048541114,"y":32.098},{"x":1755048480980,"y":33.781},{"x":1755048420857,"y":29.432},{"x":1755048360731,"y":40.078},{"x":1755048300632,"y":51.394},{"x":1755048240525,"y":51.658},{"x":1755048180324,"y":51.371},{"x":1755048120258,"y":40.52},{"x":1755048062965,"y":40.949},{"x":1755048002847,"y":31.284},{"x":1755047942727,"y":40.55},{"x":1755047882607,"y":37.21},{"x":1755047822486,"y":40.102},{"x":1755047762368,"y":34.578},{"x":1755047702244,"y":32.428},{"x":1755047642129,"y":31.184},{"x":1755047581977,"y":31.249},{"x":1755047521841,"y":41.432},{"x":1755047461685,"y":45.652},{"x":1755047401528,"y":41.003},{"x":1755047341399,"y":41.819},{"x":1755047281284,"y":29.21},{"x":1755047221137,"y":27.856},{"x":1755047160969,"y":31.195},{"x":1755047100858,"y":33.03},{"x":1755047040725,"y":31.355},{"x":1755046980600,"y":30.418},{"x":1755046920482,"y":29.947},{"x":1755046860384,"y":32.077},{"x":1755046800356,"y":35.562},{"x":1755046742895,"y":31.319},{"x":1755046682773,"y":28.063},{"x":1755046622657,"y":31.036},{"x":1755046562520,"y":31.859},{"x":1755046502400,"y":31.494},{"x":1755046442263,"y":29.854},{"x":1755046382134,"y":32.495},{"x":1755046321990,"y":33.676},{"x":1755046261860,"y":30.797},{"x":1755046201753,"y":31.828},{"x":1755046141593,"y":36.06},{"x":1755046081465,"y":32.954},{"x":1755046021321,"y":34.948},{"x":1755045961196,"y":35.32},{"x":1755045901074,"y":34.402},{"x":1755045840887,"y":35.659},{"x":1755045780766,"y":39.076},{"x":1755045720650,"y":33.618},{"x":1755045660553,"y":31.816},{"x":1755045600487,"y":30.364},{"x":1755045540306,"y":30.498},{"x":1755045482988,"y":32.756},{"x":1755045422861,"y":29.576},{"x":1755045362741,"y":29.254},{"x":1755045302621,"y":32.495},{"x":1755045242498,"y":30.955},{"x":1755045182370,"y":30.641},{"x":1755045122241,"y":30.101},{"x":1755045062115,"y":30.894},{"x":1755045001977,"y":32.735},{"x":1755044941782,"y":32.64},{"x":1755044881656,"y":31.532},{"x":1755044821533,"y":33.454},{"x":1755044761416,"y":29.382},{"x":1755044701286,"y":29.098},{"x":1755044641157,"y":30.482},{"x":1755044581036,"y":29.95},{"x":1755044520903,"y":32.17},{"x":1755044460771,"y":31.214},{"x":1755044400753,"y":32.333},{"x":1755044340486,"y":43.961},{"x":1755044280364,"y":52.745},{"x":1755044220218,"y":51.896},{"x":1755044163021,"y":55.846},{"x":1755044102849,"y":49.294},{"x":1755044042759,"y":43.913},{"x":1755043982580,"y":31.313},{"x":1755043922435,"y":29.027},{"x":1755043862307,"y":33.762},{"x":1755043802127,"y":33.634},{"x":1755043741993,"y":33.251},{"x":1755043681876,"y":48.211},{"x":1755043621750,"y":44.696},{"x":1755043561628,"y":44.911},{"x":1755043501508,"y":48.71},{"x":1755043441386,"y":44.845},{"x":1755043381264,"y":42.308},{"x":1755043321142,"y":39.292},{"x":1755043261009,"y":40.375},{"x":1755043200929,"y":37.656},{"x":1755043140737,"y":48.869},{"x":1755043080617,"y":47.197},{"x":1755043020488,"y":41.201},{"x":1755042960327,"y":40.631},{"x":1755042903011,"y":39.258},{"x":1755042842885,"y":33.08},{"x":1755042782768,"y":29.774},{"x":1755042722640,"y":30.002},{"x":1755042662502,"y":33.658},{"x":1755042602379,"y":36.883},{"x":1755042542247,"y":36.014},{"x":1755042482130,"y":34.978},{"x":1755042421997,"y":32.642},{"x":1755042361870,"y":30.259},{"x":1755042301747,"y":29.957},{"x":1755042241617,"y":31.364},{"x":1755042181491,"y":36.472},{"x":1755042121372,"y":29.879},{"x":1755042061240,"y":36.221},{"x":1755042001128,"y":35.705},{"x":1755041940971,"y":36.39},{"x":1755041880846,"y":38.01},{"x":1755041820723,"y":35.14},{"x":1755041760596,"y":42.226},{"x":1755041700529,"y":40.698},{"x":1755041640289,"y":40.459},{"x":1755041583005,"y":40.657},{"x":1755041522874,"y":48.116},{"x":1755041462744,"y":37.522},{"x":1755041402616,"y":37.666},{"x":1755041342490,"y":32.772},{"x":1755041282374,"y":35.852},{"x":1755041222243,"y":35.317},{"x":1755041162089,"y":35.734},{"x":1755041101956,"y":34.123},{"x":1755041041838,"y":33.34},{"x":1755040981722,"y":33.25},{"x":1755040921607,"y":31.765},{"x":1755040861469,"y":38.497},{"x":1755040801352,"y":31.724},{"x":1755040741220,"y":30.056},{"x":1755040681090,"y":44.244},{"x":1755040620947,"y":44.417},{"x":1755040560810,"y":48.502},{"x":1755040500703,"y":43.992},{"x":1755040440519,"y":40.032},{"x":1755040380369,"y":32.152},{"x":1755040320177,"y":33.307},{"x":1755040262897,"y":32.882},{"x":1755040202760,"y":35.04},{"x":1755040142644,"y":32.579},{"x":1755040082508,"y":32.506},{"x":1755040022388,"y":34.5},{"x":1755039962329,"y":32.491},{"x":1755039902151,"y":35.147},{"x":1755039842022,"y":34.254},{"x":1755039781887,"y":45.142},{"x":1755039721764,"y":42.779},{"x":1755039661656,"y":42.829},{"x":1755039601861,"y":39.689},{"x":1755039541163,"y":49.481},{"x":1755039481042,"y":32.701},{"x":1755039420926,"y":32.377},{"x":1755039360794,"y":31.471},{"x":1755039300701,"y":31.883},{"x":1755039240492,"y":33.725},{"x":1755039180358,"y":29.284},{"x":1755039120236,"y":33.946},{"x":1755039062958,"y":33.797},{"x":1755039002838,"y":34.252},{"x":1755038942720,"y":47.338},{"x":1755038882585,"y":45.331},{"x":1755038822460,"y":43.094},{"x":1755038762336,"y":38.975},{"x":1755038702213,"y":36.232},{"x":1755038642086,"y":32.603},{"x":1755038581956,"y":31.028},{"x":1755038521836,"y":33.196},{"x":1755038461713,"y":40.866},{"x":1755038401592,"y":40.356},{"x":1755038341456,"y":43.433},{"x":1755038281325,"y":46.41},{"x":1755038221208,"y":44.237},{"x":1755038161082,"y":34.777},{"x":1755038100946,"y":34.423},{"x":1755038040815,"y":32.856},{"x":1755037980693,"y":35.378},{"x":1755037920607,"y":34.462},{"x":1755037860513,"y":38.048},{"x":1755037800325,"y":33.362},{"x":1755037742993,"y":32.72},{"x":1755037682867,"y":44.188},{"x":1755037622745,"y":43.579},{"x":1755037562611,"y":48.379},{"x":1755037502491,"y":53.11},{"x":1755037442357,"y":50.261},{"x":1755037382228,"y":38.023},{"x":1755037322117,"y":37.55},{"x":1755037261969,"y":34.685},{"x":1755037201856,"y":38.438},{"x":1755037141721,"y":34.674},{"x":1755037081590,"y":36.762},{"x":1755037021463,"y":35.395},{"x":1755036961336,"y":33.391},{"x":1755036901217,"y":35.915},{"x":1755036841086,"y":34.789},{"x":1755036780935,"y":32.078},{"x":1755036720836,"y":35.692},{"x":1755036660649,"y":43.49},{"x":1755036600504,"y":43.367},{"x":1755036540392,"y":42.634},{"x":1755036480196,"y":38.828},{"x":1755036422951,"y":46.636},{"x":1755036362826,"y":44.515},{"x":1755036302693,"y":46.207},{"x":1755036242565,"y":48.214},{"x":1755036182440,"y":43.601},{"x":1755036122335,"y":29.8},{"x":1755036062187,"y":34.422},{"x":1755036001895,"y":32.246},{"x":1755035941643,"y":37.722},{"x":1755035881522,"y":32.923},{"x":1755035821394,"y":37.71},{"x":1755035761275,"y":36.732},{"x":1755035701164,"y":36.134},{"x":1755035641026,"y":37.81},{"x":1755035580901,"y":36.674},{"x":1755035520779,"y":36.107},{"x":1755035460651,"y":37.792},{"x":1755035400557,"y":49.529},{"x":1755035340435,"y":33.241},{"x":1755035280316,"y":40.226},{"x":1755035222983,"y":36.541},{"x":1755035162863,"y":37.169},{"x":1755035102746,"y":35.714},{"x":1755035042623,"y":36.002},{"x":1755034982499,"y":40.417},{"x":1755034922379,"y":30.984},{"x":1755034862257,"y":31.325},{"x":1755034802139,"y":31.8},{"x":1755034742002,"y":32.999},{"x":1755034681863,"y":35.528},{"x":1755034621734,"y":34.708},{"x":1755034561606,"y":36.37},{"x":1755034501488,"y":36.229},{"x":1755034441362,"y":33.986},{"x":1755034381243,"y":31.524},{"x":1755034321119,"y":44.254},{"x":1755034260976,"y":36.616},{"x":1755034200872,"y":36.638},{"x":1755034140743,"y":38.072},{"x":1755034080592,"y":38.75},{"x":1755034020532,"y":43.804},{"x":1755033960434,"y":39.643},{"x":1755033900210,"y":39.641},{"x":1755033842994,"y":35.675},{"x":1755033782880,"y":33.181},{"x":1755033722752,"y":30.373},{"x":1755033662631,"y":31.378},{"x":1755033602489,"y":32.198},{"x":1755033542371,"y":32.884},{"x":1755033482246,"y":37.667},{"x":1755033422121,"y":40.148},{"x":1755033361962,"y":40.342},{"x":1755033301822,"y":39.209},{"x":1755033241690,"y":37.412},{"x":1755033181532,"y":36.086},{"x":1755033121386,"y":32.716},{"x":1755033061324,"y":36.563},{"x":1755033001048,"y":33.41},{"x":1755032940903,"y":32.56},{"x":1755032880787,"y":35.592},{"x":1755032820653,"y":35.885},{"x":1755032760542,"y":40.994},{"x":1755032700490,"y":42.839},{"x":1755032640271,"y":42.469},{"x":1755032583011,"y":41.568},{"x":1755032522872,"y":40.934},{"x":1755032462769,"y":46.226},{"x":1755032402637,"y":41.783},{"x":1755032342475,"y":45.372},{"x":1755032282351,"y":41.044},{"x":1755032222226,"y":38.752},{"x":1755032162090,"y":34.447},{"x":1755032101957,"y":57.61},{"x":1755032041832,"y":34.804},{"x":1755031981712,"y":36.329},{"x":1755031921592,"y":33.269},{"x":1755031861461,"y":33.728},{"x":1755031801327,"y":37.069},{"x":1755031741195,"y":35.342},{"x":1755031681063,"y":37.645},{"x":1755031620917,"y":35.442},{"x":1755031560795,"y":36.242},{"x":1755031500708,"y":41.502},{"x":1755031440514,"y":39.748},{"x":1755031380404,"y":40.844},{"x":1755031320240,"y":39.016},{"x":1755031263009,"y":41.401},{"x":1755031202877,"y":44.495},{"x":1755031142739,"y":53.389},{"x":1755031082615,"y":36.199},{"x":1755031022494,"y":39.222},{"x":1755030962362,"y":38.606},{"x":1755030902244,"y":64.248},{"x":1755030842123,"y":41.933},{"x":1755030781993,"y":40.614},{"x":1755030721861,"y":39.475},{"x":1755030661716,"y":51.331},{"x":1755030601600,"y":61.488},{"x":1755030541450,"y":72.635},{"x":1755030481324,"y":88.932},{"x":1755030421195,"y":69.517},{"x":1755030361066,"y":78.41},{"x":1755030300943,"y":51.511},{"x":1755030240800,"y":66.796},{"x":1755030180696,"y":49.909},{"x":1755030120578,"y":50.935},{"x":1755030060479,"y":49.021},{"x":1755030000303,"y":44.732},{"x":1755029940048,"y":56.638},{"x":1755029882898,"y":66.059},{"x":1755029822772,"y":56.428},{"x":1755029762652,"y":67.23},{"x":1755029702535,"y":61.931},{"x":1755029642415,"y":44.789},{"x":1755029582290,"y":53.43},{"x":1755029522157,"y":52.302},{"x":1755029461978,"y":49.331},{"x":1755029401833,"y":61.256},{"x":1755029341711,"y":65.156},{"x":1755029281579,"y":64.865},{"x":1755029221457,"y":58.183},{"x":1755029161329,"y":59.73},{"x":1755029101194,"y":40.349},{"x":1755029041065,"y":46.93},{"x":1755028980934,"y":59.198},{"x":1755028920792,"y":52.985},{"x":1755028860674,"y":48.935},{"x":1755028800601,"y":53.999},{"x":1755028740407,"y":63.502},{"x":1755028680270,"y":58.02},{"x":1755028622973,"y":68.989},{"x":1755028562865,"y":72.324},{"x":1755028502713,"y":64.47},{"x":1755028442589,"y":52.565},{"x":1755028382467,"y":65.096},{"x":1755028322336,"y":44.728},{"x":1755028262202,"y":49.772},{"x":1755028202073,"y":59.742},{"x":1755028141962,"y":98.364},{"x":1755028081812,"y":77.744},{"x":1755028021688,"y":76.279},{"x":1755027961569,"y":78.229},{"x":1755027901465,"y":69.06},{"x":1755027841317,"y":68.942},{"x":1755027781189,"y":57.949},{"x":1755027721065,"y":56.005},{"x":1755027660937,"y":61.442},{"x":1755027600828,"y":51.068},{"x":1755027540655,"y":61.458},{"x":1755027480552,"y":60.145},{"x":1755027420483,"y":74.156},{"x":1755027360352,"y":73.748},{"x":1755027300234,"y":68.737},{"x":1755027242931,"y":55.388},{"x":1755027182814,"y":48.65},{"x":1755027122691,"y":58.363},{"x":1755027062576,"y":39.026},{"x":1755027002452,"y":51.274},{"x":1755026942320,"y":45.901},{"x":1755026882205,"y":46.25},{"x":1755026822082,"y":44.087},{"x":1755026761953,"y":51.132},{"x":1755026701840,"y":53.544},{"x":1755026641712,"y":42.694},{"x":1755026581595,"y":38.166},{"x":1755026521477,"y":55.434},{"x":1755026461341,"y":45.203},{"x":1755026401226,"y":56.88},{"x":1755026341104,"y":55.129},{"x":1755026280968,"y":74.468},{"x":1755026220838,"y":56.824},{"x":1755026160751,"y":60.889},{"x":1755026100541,"y":52.747},{"x":1755026040458,"y":60.101},{"x":1755025980282,"y":41.099},{"x":1755025923065,"y":44.028},{"x":1755025862880,"y":53.45},{"x":1755025802732,"y":51.547},{"x":1755025742610,"y":51.929},{"x":1755025682484,"y":43.639},{"x":1755025622364,"y":46.114},{"x":1755025562235,"y":46.951},{"x":1755025502077,"y":43.874},{"x":1755025441932,"y":35.32},{"x":1755025381808,"y":34.118},{"x":1755025321672,"y":34.367},{"x":1755025261550,"y":37.679},{"x":1755025201461,"y":40.067},{"x":1755025141245,"y":50.063},{"x":1755025081125,"y":66.83},{"x":1755025020980,"y":55.624},{"x":1755024960859,"y":63.006},{"x":1755024900754,"y":60.355},{"x":1755024840614,"y":50.695},{"x":1755024781794,"y":48.256},{"x":1755024721666,"y":37.7},{"x":1755024661545,"y":35.021},{"x":1755024601429,"y":47.688},{"x":1755024541297,"y":42.337},{"x":1755024481168,"y":42.822},{"x":1755024421034,"y":54.409},{"x":1755024360909,"y":50.089},{"x":1755024300801,"y":47.438},{"x":1755024240647,"y":52.967},{"x":1755024180537,"y":38.167},{"x":1755024120357,"y":41.117},{"x":1755024060310,"y":45.089},{"x":1755024000059,"y":46.18},{"x":1755023942893,"y":52.813},{"x":1755023882781,"y":67.736},{"x":1755023822640,"y":62.122},{"x":1755023762520,"y":58.207},{"x":1755023702404,"y":65.308},{"x":1755023642280,"y":50.952},{"x":1755023582144,"y":64.586},{"x":1755023522002,"y":64.328},{"x":1755023461860,"y":48.032},{"x":1755023401745,"y":38.334},{"x":1755023341596,"y":40.394},{"x":1755023281467,"y":48.422},{"x":1755023221361,"y":48.229},{"x":1755023161225,"y":50.672},{"x":1755023101101,"y":42.833},{"x":1755023040945,"y":45.299},{"x":1755022980828,"y":32.531},{"x":1755022920705,"y":51.554},{"x":1755022860605,"y":33.851},{"x":1755022800467,"y":31.475},{"x":1755022740272,"y":43.638},{"x":1755022682885,"y":47.75},{"x":1755022622763,"y":44.36},{"x":1755022562634,"y":58.434},{"x":1755022502484,"y":75.625},{"x":1755022442363,"y":59.042},{"x":1755022382196,"y":51.884},{"x":1755022322063,"y":47.196},{"x":1755022261862,"y":47.508},{"x":1755022201713,"y":51.054},{"x":1755022141587,"y":47.198},{"x":1755022081456,"y":48.144},{"x":1755022021336,"y":41.801},{"x":1755021961232,"y":31.938},{"x":1755021901079,"y":50.436},{"x":1755021840915,"y":50.998},{"x":1755021780820,"y":51.77},{"x":1755021720659,"y":52.201},{"x":1755021660571,"y":51.715},{"x":1755021600387,"y":45.979},{"x":1755021540286,"y":35.287},{"x":1755021482933,"y":30.587},{"x":1755021422819,"y":30.023},{"x":1755021362680,"y":28.919},{"x":1755021302554,"y":47.731},{"x":1755021242422,"y":38.038},{"x":1755021182302,"y":61.541},{"x":1755021122181,"y":59.801},{"x":1755021062056,"y":59.522},{"x":1755021001919,"y":45.035},{"x":1755020941790,"y":43.194},{"x":1755020881669,"y":33.67},{"x":1755020821557,"y":27.803},{"x":1755020761433,"y":29.272},{"x":1755020701349,"y":49.027},{"x":1755020641190,"y":47.111},{"x":1755020581067,"y":50.932},{"x":1755020520933,"y":50.267},{"x":1755020460812,"y":50.147},{"x":1755020400774,"y":55.147},{"x":1755020340561,"y":36.721},{"x":1755020280489,"y":45.5},{"x":1755020220322,"y":34.168},{"x":1755020160183,"y":36.629},{"x":1755020102934,"y":40.628},{"x":1755020042815,"y":55.526},{"x":1755019982699,"y":56.442},{"x":1755019922582,"y":50.95},{"x":1755019862435,"y":52.249},{"x":1755019802308,"y":42.463},{"x":1755019742184,"y":47.292},{"x":1755019682056,"y":47.729},{"x":1755019621902,"y":31.708},{"x":1755019561773,"y":33.1},{"x":1755019501653,"y":47.602},{"x":1755019441529,"y":49.102},{"x":1755019381403,"y":46.422},{"x":1755019321285,"y":49.412},{"x":1755019261158,"y":47.797},{"x":1755019201039,"y":60.307},{"x":1755019140891,"y":34.178},{"x":1755019080776,"y":32.788},{"x":1755019020666,"y":49.63},{"x":1755018960541,"y":33.85},{"x":1755018900461,"y":42.42},{"x":1755018840228,"y":39.938},{"x":1755018780162,"y":54.325},{"x":1755018722867,"y":50.284},{"x":1755018662686,"y":49.955},{"x":1755018602542,"y":47.44},{"x":1755018542419,"y":38.567},{"x":1755018482296,"y":40.861},{"x":1755018422170,"y":29.047},{"x":1755018362035,"y":28.49},{"x":1755018301888,"y":41.058},{"x":1755018241756,"y":27.71},{"x":1755018181630,"y":46.565},{"x":1755018121503,"y":33.731},{"x":1755018061376,"y":32.489},{"x":1755018001309,"y":28.486},{"x":1755017941056,"y":50.436},{"x":1755017880926,"y":52.207},{"x":1755017820805,"y":51.462},{"x":1755017760689,"y":50.934},{"x":1755017700545,"y":51.263},{"x":1755017640391,"y":29.976},{"x":1755017580307,"y":29.038},{"x":1755017520021,"y":52.962},{"x":1755017462901,"y":46.102},{"x":1755017402777,"y":56.104},{"x":1755017342659,"y":44.158},{"x":1755017282538,"y":42.056},{"x":1755017222408,"y":35.035},{"x":1755017162256,"y":39.632},{"x":1755017102143,"y":40.504},{"x":1755017042071,"y":39.484},{"x":1755016981871,"y":45.262},{"x":1755016921757,"y":39.562},{"x":1755016861632,"y":26.876},{"x":1755016801514,"y":28.187},{"x":1755016741386,"y":22.562},{"x":1755016681263,"y":36.41},{"x":1755016621140,"y":32.206},{"x":1755016560990,"y":33.578},{"x":1755016500874,"y":31.29},{"x":1755016440737,"y":44.933},{"x":1755016380627,"y":68.687},{"x":1755016320545,"y":55.952},{"x":1755016260375,"y":48.352},{"x":1755016200433,"y":55.072},{"x":1755016142937,"y":37.59},{"x":1755016082813,"y":27.025},{"x":1755016022654,"y":22.498},{"x":1755015962555,"y":25.109},{"x":1755015902443,"y":38.4},{"x":1755015842320,"y":34.726},{"x":1755015782152,"y":39.442},{"x":1755015722037,"y":40.32},{"x":1755015661878,"y":34.55},{"x":1755015601760,"y":25.786},{"x":1755015541542,"y":28.409},{"x":1755015481413,"y":29.228},{"x":1755015421277,"y":32.026},{"x":1755015361155,"y":45.806},{"x":1755015301055,"y":46.805},{"x":1755015240874,"y":31.924},{"x":1755015180720,"y":38.068},{"x":1755015120650,"y":29.16},{"x":1755015060360,"y":30.504},{"x":1755015000339,"y":26.194},{"x":1755014943015,"y":23.548},{"x":1755014882888,"y":28.081},{"x":1755014822761,"y":40.378},{"x":1755014762638,"y":33.094},{"x":1755014702509,"y":45.334},{"x":1755014642389,"y":46.912},{"x":1755014582261,"y":45.208},{"x":1755014522144,"y":46.282},{"x":1755014462014,"y":41.67},{"x":1755014401859,"y":43.529},{"x":1755014341710,"y":47.669},{"x":1755014281588,"y":42.257},{"x":1755014221467,"y":55.18},{"x":1755014161341,"y":42.055},{"x":1755014101219,"y":29.626},{"x":1755014041095,"y":36.984},{"x":1755013980987,"y":50.201},{"x":1755013920830,"y":34.945},{"x":1755013860703,"y":39.274},{"x":1755013800596,"y":53.056},{"x":1755013740456,"y":42.752},{"x":1755013680384,"y":42.162},{"x":1755013620214,"y":54.586},{"x":1755013562899,"y":40.55},{"x":1755013502772,"y":53.758},{"x":1755013442647,"y":50.514},{"x":1755013382519,"y":45.868},{"x":1755013322377,"y":47.267},{"x":1755013262242,"y":39.284},{"x":1755013202100,"y":35.675},{"x":1755013141952,"y":47.88},{"x":1755013081813,"y":25.54},{"x":1755013021688,"y":25.098},{"x":1755012961547,"y":37.067},{"x":1755012901431,"y":38.576},{"x":1755012841309,"y":42.53},{"x":1755012781191,"y":41.059},{"x":1755012721066,"y":56.77},{"x":1755012660934,"y":31.877},{"x":1755012600849,"y":36.377},{"x":1755012540638,"y":31.442},{"x":1755012480559,"y":34.168},{"x":1755012420471,"y":35.45},{"x":1755012360202,"y":35.879},{"x":1755012302966,"y":27.409},{"x":1755012242849,"y":22.361},{"x":1755012182727,"y":20.909},{"x":1755012122614,"y":36.913},{"x":1755012062484,"y":33.133},{"x":1755012002359,"y":51.727},{"x":1755011942238,"y":49.174},{"x":1755011882112,"y":45.836},{"x":1755011821973,"y":34.439},{"x":1755011761845,"y":38.968},{"x":1755011701721,"y":50.658},{"x":1755011641609,"y":32.807},{"x":1755011581468,"y":37.285},{"x":1755011521340,"y":44.664},{"x":1755011461175,"y":40.709},{"x":1755011400991,"y":38.251},{"x":1755011340856,"y":38.897},{"x":1755011280743,"y":35.998},{"x":1755011220618,"y":23.74},{"x":1755011160500,"y":42.955},{"x":1755011100349,"y":42.179},{"x":1755011043019,"y":23.917},{"x":1755010982888,"y":51.311},{"x":1755010922778,"y":43.864},{"x":1755010862638,"y":45.821},{"x":1755010802521,"y":67.463},{"x":1755010742367,"y":46.964},{"x":1755010682256,"y":32.342},{"x":1755010622116,"y":32.546},{"x":1755010561975,"y":36.085},{"x":1755010501851,"y":32.62},{"x":1755010441714,"y":40.813},{"x":1755010381583,"y":36.988},{"x":1755010321456,"y":42.313},{"x":1755010261301,"y":40.138},{"x":1755010201167,"y":34.828},{"x":1755010141028,"y":26.897},{"x":1755010080910,"y":22.868},{"x":1755010020786,"y":23.011},{"x":1755009960653,"y":29.67},{"x":1755009900655,"y":30.062},{"x":1755009840464,"y":45.458},{"x":1755009780250,"y":45.32},{"x":1755009720051,"y":56.034},{"x":1755009662899,"y":57.786},{"x":1755009602780,"y":29.748},{"x":1755009542654,"y":35.777},{"x":1755009482528,"y":38.585},{"x":1755009422406,"y":35.777},{"x":1755009362284,"y":45.66},{"x":1755009302149,"y":42.426},{"x":1755009242027,"y":40.376},{"x":1755009181893,"y":46.958},{"x":1755009121762,"y":39.024},{"x":1755009061637,"y":30.151},{"x":1755009001525,"y":29.429},{"x":1755008941388,"y":23.912},{"x":1755008881256,"y":23.008},{"x":1755008821135,"y":40.75},{"x":1755008760993,"y":37.142},{"x":1755008700867,"y":42.922},{"x":1755008640739,"y":38.723},{"x":1755008580596,"y":43.511},{"x":1755008520522,"y":44.542},{"x":1755008460306,"y":36.073},{"x":1755008400206,"y":32.933},{"x":1755008342937,"y":29.125},{"x":1755008282801,"y":28.296},{"x":1755008222676,"y":29.815},{"x":1755008162545,"y":27.772},{"x":1755008102426,"y":38.819},{"x":1755008042318,"y":27.587},{"x":1755007982175,"y":39.29},{"x":1755007922009,"y":28.026},{"x":1755007861855,"y":32.795},{"x":1755007801698,"y":30.082},{"x":1755007741564,"y":18.722},{"x":1755007681440,"y":22.055},{"x":1755007621324,"y":15.793},{"x":1755007561207,"y":15.546},{"x":1755007501082,"y":28.685},{"x":1755007440940,"y":43.82},{"x":1755007380821,"y":62.047},{"x":1755007320696,"y":65.47},{"x":1755007260622,"y":34.596},{"x":1755007200542,"y":33.431},{"x":1755007140316,"y":30.09},{"x":1755007080190,"y":30.52},{"x":1755007022957,"y":30.832},{"x":1755006962836,"y":32.184},{"x":1755006902719,"y":29.54},{"x":1755006842579,"y":29.158},{"x":1755006782454,"y":35.059},{"x":1755006722316,"y":16.393},{"x":1755006662182,"y":20.986},{"x":1755006602048,"y":15.864},{"x":1755006541897,"y":31.578},{"x":1755006481770,"y":43.771},{"x":1755006421646,"y":44.554},{"x":1755006361500,"y":41.843},{"x":1755006301385,"y":34.08},{"x":1755006241250,"y":24.241},{"x":1755006181123,"y":16.278},{"x":1755006120952,"y":15.078},{"x":1755006060833,"y":18.995},{"x":1755006000822,"y":22.307},{"x":1755005940630,"y":17.095},{"x":1755005880532,"y":16.768},{"x":1755005820376,"y":16.014},{"x":1755005760342,"y":44.555},{"x":1755005702922,"y":45.282},{"x":1755005642802,"y":40.028},{"x":1755005582678,"y":38.684},{"x":1755005522557,"y":35.929},{"x":1755005462439,"y":16.837},{"x":1755005402287,"y":13.306},{"x":1755005342154,"y":31.667},{"x":1755005281985,"y":34.522},{"x":1755005221861,"y":35.142},{"x":1755005161734,"y":28.313},{"x":1755005101609,"y":33.685},{"x":1755005041473,"y":25.651},{"x":1755004981349,"y":25.579},{"x":1755004921229,"y":30.653},{"x":1755004861101,"y":30.264},{"x":1755004800972,"y":33.132},{"x":1755004740807,"y":54.521},{"x":1755004680689,"y":41.68},{"x":1755004620628,"y":17.014},{"x":1755004560470,"y":21.871},{"x":1755004500315,"y":50.459},{"x":1755004440127,"y":31.92},{"x":1755004382921,"y":30.608},{"x":1755004322726,"y":26.453},{"x":1755004262581,"y":41.131},{"x":1755004202437,"y":30.254},{"x":1755004142226,"y":36.41},{"x":1755004082098,"y":32.308},{"x":1755004021962,"y":45.079},{"x":1755003961831,"y":29.873},{"x":1755003901702,"y":25.777},{"x":1755003841569,"y":32.27},{"x":1755003781445,"y":31.166},{"x":1755003721319,"y":31.105},{"x":1755003661214,"y":31.824},{"x":1755003601194,"y":18.792},{"x":1755003540913,"y":21.773},{"x":1755003480776,"y":29.54},{"x":1755003420659,"y":21.715},{"x":1755003360551,"y":35.154},{"x":1755003300432,"y":49.453},{"x":1755003240303,"y":53.005},{"x":1755003180076,"y":74.074},{"x":1755003122907,"y":56.525},{"x":1755003062792,"y":43.457},{"x":1755003002668,"y":31.724},{"x":1755002942545,"y":42.841},{"x":1755002882414,"y":44.792},{"x":1755002822295,"y":37.412},{"x":1755002762170,"y":33.952},{"x":1755002702052,"y":30.948},{"x":1755002641921,"y":32.923},{"x":1755002581802,"y":33.596},{"x":1755002521684,"y":25.979},{"x":1755002461564,"y":30.449},{"x":1755002401473,"y":28.981},{"x":1755002341313,"y":26.164},{"x":1755002281155,"y":18.173},{"x":1755002221015,"y":12.601},{"x":1755002160882,"y":12.215},{"x":1755002100772,"y":14.854},{"x":1755002040646,"y":32.308},{"x":1755001980550,"y":34.676},{"x":1755001920453,"y":41.156},{"x":1755001860285,"y":36.607},{"x":1755001802979,"y":35.52},{"x":1755001742804,"y":23.706},{"x":1755001681656,"y":23.879},{"x":1755001621535,"y":28.969},{"x":1755001561414,"y":30.894},{"x":1755001501291,"y":32.935},{"x":1755001441162,"y":32.623},{"x":1755001381022,"y":18.634},{"x":1755001320896,"y":14.629},{"x":1755001260775,"y":15.37},{"x":1755001200713,"y":32.318},{"x":1755001140514,"y":24.091},{"x":1755001080381,"y":12.584},{"x":1755001020232,"y":13.198},{"x":1755000962961,"y":40.13},{"x":1755000902841,"y":35.281},{"x":1755000842731,"y":50.645},{"x":1755000782566,"y":41.471},{"x":1755000722385,"y":31.416},{"x":1755000662237,"y":23.539},{"x":1755000602083,"y":20.148},{"x":1755000541945,"y":23.849},{"x":1755000481807,"y":24.899},{"x":1755000421683,"y":22.602},{"x":1755000361562,"y":23.444},{"x":1755000301439,"y":22.393},{"x":1755000241320,"y":20.557},{"x":1755000181224,"y":21.347},{"x":1755000121047,"y":24.776},{"x":1755000060918,"y":26.124},{"x":1755000000977,"y":25.546},{"x":1754999940665,"y":35.849},{"x":1754999880551,"y":41.347},{"x":1754999820387,"y":16.42},{"x":1754999760378,"y":9.474},{"x":1754999702992,"y":33.991},{"x":1754999642862,"y":13.0},{"x":1754999582736,"y":16.326},{"x":1754999522615,"y":9.43},{"x":1754999462480,"y":24.122},{"x":1754999402360,"y":24.02},{"x":1754999342228,"y":36.787},{"x":1754999282099,"y":40.392},{"x":1754999221946,"y":41.593},{"x":1754999161812,"y":32.13},{"x":1754999101692,"y":25.812},{"x":1754999041561,"y":16.574},{"x":1754998981433,"y":11.68},{"x":1754998921297,"y":22.277},{"x":1754998861167,"y":39.078},{"x":1754998801033,"y":40.896},{"x":1754998740892,"y":30.782},{"x":1754998680771,"y":30.613},{"x":1754998620638,"y":32.291},{"x":1754998560567,"y":27.277},{"x":1754998500346,"y":23.717},{"x":1754998440246,"y":20.261},{"x":1754998382943,"y":5.327},{"x":1754998322824,"y":8.737},{"x":1754998262698,"y":23.418},{"x":1754998202584,"y":3.74},{"x":1754998142437,"y":22.266},{"x":1754998082324,"y":28.784},{"x":1754998022196,"y":27.938},{"x":1754997962073,"y":29.464},{"x":1754997901929,"y":32.806},{"x":1754997841800,"y":18.295},{"x":1754997781673,"y":33.828},{"x":1754997721549,"y":28.668},{"x":1754997661423,"y":23.237},{"x":1754997601304,"y":22.682},{"x":1754997541174,"y":19.558},{"x":1754997481049,"y":15.732},{"x":1754997420921,"y":49.34},{"x":1754997360769,"y":28.316},{"x":1754997300803,"y":23.725},{"x":1754997240520,"y":35.687},{"x":1754997180363,"y":32.58},{"x":1754997120200,"y":39.622},{"x":1754997062964,"y":19.996},{"x":1754997002816,"y":21.99},{"x":1754996942695,"y":19.922},{"x":1754996882574,"y":17.005},{"x":1754996822447,"y":15.361},{"x":1754996762327,"y":19.507},{"x":1754996702227,"y":22.482},{"x":1754996642072,"y":16.4},{"x":1754996581964,"y":16.786},{"x":1754996521822,"y":11.594},{"x":1754996461685,"y":29.225},{"x":1754996401604,"y":21.964},{"x":1754996341409,"y":33.715},{"x":1754996281286,"y":43.46},{"x":1754996221159,"y":61.892},{"x":1754996161026,"y":42.485},{"x":1754996100889,"y":29.48},{"x":1754996040747,"y":34.643},{"x":1754995980630,"y":31.304},{"x":1754995920564,"y":17.268},{"x":1754995860370,"y":31.849},{"x":1754995803011,"y":30.886},{"x":1754995742879,"y":29.99},{"x":1754995682757,"y":43.32},{"x":1754995622635,"y":24.658},{"x":1754995562501,"y":10.966},{"x":1754995502374,"y":26.976},{"x":1754995442258,"y":24.966},{"x":1754995382140,"y":27.425},{"x":1754995321998,"y":38.855},{"x":1754995261871,"y":24.84},{"x":1754995201741,"y":31.753},{"x":1754995141625,"y":34.367},{"x":1754995081500,"y":20.785},{"x":1754995021370,"y":14.897},{"x":1754994961265,"y":4.823},{"x":1754994901126,"y":13.951},{"x":1754994840974,"y":13.322},{"x":1754994780849,"y":18.718},{"x":1754994720736,"y":23.704},{"x":1754994660602,"y":38.228},{"x":1754994600558,"y":38.911},{"x":1754994540408,"y":35.513},{"x":1754994480322,"y":40.609},{"x":1754994422963,"y":48.383},{"x":1754994362845,"y":58.321},{"x":1754994302696,"y":38.934},{"x":1754994242567,"y":41.569},{"x":1754994182441,"y":43.998},{"x":1754994122327,"y":37.501},{"x":1754994062198,"y":20.182},{"x":1754994002066,"y":26.147},{"x":1754993941930,"y":30.612},{"x":1754993881816,"y":20.326},{"x":1754993821696,"y":18.389},{"x":1754993761558,"y":26.49},{"x":1754993701432,"y":16.909},{"x":1754993641307,"y":15.269},{"x":1754993581152,"y":12.58},{"x":1754993521020,"y":15.757},{"x":1754993460847,"y":22.61},{"x":1754993400680,"y":22.024},{"x":1754993340556,"y":16.008},{"x":1754993280547,"y":17.077},{"x":1754993222959,"y":25.812},{"x":1754993162834,"y":23.674},{"x":1754993102709,"y":18.311},{"x":1754993042589,"y":21.462},{"x":1754992982458,"y":16.9},{"x":1754992922331,"y":31.207},{"x":1754992862204,"y":43.607},{"x":1754992802128,"y":47.767},{"x":1754992741931,"y":46.625},{"x":1754992681811,"y":49.045},{"x":1754992621694,"y":30.162},{"x":1754992561571,"y":27.31},{"x":1754992501446,"y":33.715},{"x":1754992441315,"y":27.008},{"x":1754992381186,"y":37.871},{"x":1754992321057,"y":27.86},{"x":1754992260917,"y":31.38},{"x":1754992200799,"y":24.631},{"x":1754992140673,"y":26.005},{"x":1754992080529,"y":20.506},{"x":1754992020378,"y":17.246},{"x":1754991960285,"y":17.754},{"x":1754991902961,"y":31.228},{"x":1754991842845,"y":29.029},{"x":1754991782728,"y":29.424},{"x":1754991722595,"y":29.701},{"x":1754991662470,"y":24.062},{"x":1754991602343,"y":25.189},{"x":1754991542212,"y":30.175},{"x":1754991482093,"y":33.242},{"x":1754991421956,"y":33.656},{"x":1754991361827,"y":29.646},{"x":1754991301714,"y":31.974},{"x":1754991241582,"y":24.036},{"x":1754991181460,"y":21.365},{"x":1754991121336,"y":17.826},{"x":1754991061217,"y":15.376},{"x":1754991001097,"y":12.756},{"x":1754990940942,"y":15.749},{"x":1754990880819,"y":39.737},{"x":1754990820691,"y":38.599},{"x":1754990760567,"y":48.188},{"x":1754990700514,"y":48.952},{"x":1754990640401,"y":53.203},{"x":1754990583120,"y":31.267},{"x":1754990522871,"y":21.336},{"x":1754990462752,"y":34.529},{"x":1754990402599,"y":33.286},{"x":1754990342470,"y":37.517},{"x":1754990282328,"y":39.656},{"x":1754990222198,"y":45.202},{"x":1754990162068,"y":34.147},{"x":1754990101891,"y":36.852},{"x":1754990041750,"y":25.862},{"x":1754989981589,"y":25.855},{"x":1754989921436,"y":27.936},{"x":1754989861291,"y":32.623},{"x":1754989801114,"y":30.695},{"x":1754989740960,"y":23.052},{"x":1754989680839,"y":24.218},{"x":1754989620716,"y":23.699},{"x":1754989560589,"y":22.669},{"x":1754989500493,"y":21.888},{"x":1754989440364,"y":29.435},{"x":1754989380072,"y":29.293},{"x":1754989322908,"y":22.531},{"x":1754989262773,"y":26.11},{"x":1754989202681,"y":28.715},{"x":1754989142515,"y":22.298},{"x":1754989082375,"y":21.816},{"x":1754989022255,"y":27.298},{"x":1754988962125,"y":43.672},{"x":1754988901997,"y":42.671},{"x":1754988841874,"y":42.469},{"x":1754988781756,"y":45.866},{"x":1754988721633,"y":22.092},{"x":1754988661513,"y":21.631},{"x":1754988601392,"y":21.592},{"x":1754988541278,"y":36.145},{"x":1754988481152,"y":31.651},{"x":1754988421034,"y":28.064},{"x":1754988360908,"y":38.323},{"x":1754988300895,"y":47.96},{"x":1754988240660,"y":33.356},{"x":1754988180551,"y":31.139},{"x":1754988120488,"y":32.592},{"x":1754988060348,"y":33.2},{"x":1754988000206,"y":40.589},{"x":1754987942922,"y":27.336},{"x":1754987882791,"y":28.372},{"x":1754987822666,"y":23.566},{"x":1754987762538,"y":27.162},{"x":1754987702418,"y":28.148},{"x":1754987642281,"y":49.594},{"x":1754987582163,"y":48.727},{"x":1754987522043,"y":52.553},{"x":1754987461909,"y":58.087},{"x":1754987401778,"y":42.853},{"x":1754987341637,"y":27.412},{"x":1754987281523,"y":25.685},{"x":1754987221397,"y":31.994},{"x":1754987161279,"y":35.531},{"x":1754987101167,"y":41.425},{"x":1754987041039,"y":42.457},{"x":1754986980898,"y":41.269},{"x":1754986920777,"y":33.427},{"x":1754986860667,"y":24.521},{"x":1754986800528,"y":28.445},{"x":1754986740424,"y":38.302},{"x":1754986680139,"y":34.255},{"x":1754986622940,"y":43.106},{"x":1754986562800,"y":32.4},{"x":1754986502674,"y":43.289},{"x":1754986442572,"y":36.445},{"x":1754986382402,"y":25.812},{"x":1754986322253,"y":25.181},{"x":1754986262105,"y":38.909},{"x":1754986201951,"y":40.116},{"x":1754986141794,"y":41.995},{"x":1754986081674,"y":37.268},{"x":1754986021551,"y":33.676},{"x":1754985961424,"y":29.656},{"x":1754985901305,"y":41.118},{"x":1754985841173,"y":58.181},{"x":1754985781006,"y":75.62},{"x":1754985720877,"y":55.943},{"x":1754985660764,"y":59.642},{"x":1754985600844,"y":54.383},{"x":1754985540518,"y":39.936},{"x":1754985480328,"y":37.326},{"x":1754985420254,"y":38.839},{"x":1754985362959,"y":43.54},{"x":1754985302839,"y":45.922},{"x":1754985242716,"y":44.951},{"x":1754985182597,"y":52.524},{"x":1754985122475,"y":52.22},{"x":1754985062352,"y":49.561},{"x":1754985002233,"y":49.756},{"x":1754984942076,"y":49.366},{"x":1754984881949,"y":45.599},{"x":1754984821812,"y":51.083},{"x":1754984761682,"y":44.368},{"x":1754984701562,"y":42.775},{"x":1754984641434,"y":45.367},{"x":1754984581314,"y":43.153},{"x":1754984521177,"y":45.97},{"x":1754984461052,"y":44.107},{"x":1754984400975,"y":40.879},{"x":1754984340779,"y":36.894},{"x":1754984280643,"y":39.056},{"x":1754984220528,"y":36.418},{"x":1754984160416,"y":59.814},{"x":1754984100264,"y":56.006},{"x":1754984042940,"y":55.934},{"x":1754983982819,"y":55.58},{"x":1754983922692,"y":52.368},{"x":1754983862567,"y":46.102},{"x":1754983802434,"y":31.28},{"x":1754983742309,"y":34.804},{"x":1754983682183,"y":33.71},{"x":1754983622047,"y":31.914},{"x":1754983561895,"y":46.794},{"x":1754983501773,"y":57.752},{"x":1754983441646,"y":49.718},{"x":1754983381517,"y":52.748},{"x":1754983321388,"y":50.807},{"x":1754983261268,"y":49.776},{"x":1754983201152,"y":49.756},{"x":1754983140845,"y":43.546},{"x":1754983080720,"y":44.416},{"x":1754983020606,"y":44.389},{"x":1754982960500,"y":43.626},{"x":1754982900273,"y":48.506},{"x":1754982843018,"y":71.2},{"x":1754982782883,"y":75.816},{"x":1754982722755,"y":73.58},{"x":1754982662582,"y":71.426},{"x":1754982602410,"y":49.474},{"x":1754982542283,"y":47.633},{"x":1754982482158,"y":70.097},{"x":1754982422031,"y":73.98},{"x":1754982361888,"y":67.63},{"x":1754982301754,"y":86.086},{"x":1754982241620,"y":83.891},{"x":1754982181510,"y":77.238},{"x":1754982121366,"y":67.668},{"x":1754982061242,"y":66.072},{"x":1754982001177,"y":44.712},{"x":1754981940932,"y":45.179},{"x":1754981880812,"y":49.499},{"x":1754981820694,"y":45.019},{"x":1754981760589,"y":43.703},{"x":1754981700455,"y":41.603},{"x":1754981640431,"y":40.016},{"x":1754981582997,"y":42.666},{"x":1754981522872,"y":36.33},{"x":1754981462754,"y":35.972},{"x":1754981402636,"y":40.208},{"x":1754981342503,"y":39.616},{"x":1754981282386,"y":63.824},{"x":1754981222266,"y":43.998},{"x":1754981162141,"y":40.823},{"x":1754981102004,"y":58.194},{"x":1754981041880,"y":40.663},{"x":1754980981765,"y":55.639},{"x":1754980921636,"y":44.053},{"x":1754980861515,"y":57.97},{"x":1754980801395,"y":45.668},{"x":1754980741270,"y":59.574},{"x":1754980681134,"y":42.998},{"x":1754980620998,"y":57.488},{"x":1754980560872,"y":47.399},{"x":1754980500769,"y":59.698},{"x":1754980440627,"y":55.097},{"x":1754980380496,"y":53.768},{"x":1754980320346,"y":39.931},{"x":1754980260208,"y":42.457},{"x":1754980202927,"y":41.707},{"x":1754980142810,"y":40.29},{"x":1754980082678,"y":46.244},{"x":1754980022566,"y":38.7},{"x":1754979962408,"y":38.218},{"x":1754979902286,"y":39.745},{"x":1754979842165,"y":40.192},{"x":1754979782042,"y":40.446},{"x":1754979721892,"y":41.236},{"x":1754979661768,"y":39.457},{"x":1754979601657,"y":45.106},{"x":1754979541522,"y":41.681},{"x":1754979481406,"y":40.412},{"x":1754979421279,"y":40.856},{"x":1754979361145,"y":40.979},{"x":1754979301017,"y":44.67},{"x":1754979240887,"y":49.405},{"x":1754979180728,"y":48.744},{"x":1754979120640,"y":44.452},{"x":1754979060470,"y":43.705},{"x":1754979000377,"y":47.353},{"x":1754978940138,"y":44.122},{"x":1754978882914,"y":43.714},{"x":1754978822816,"y":47.191},{"x":1754978762698,"y":42.199},{"x":1754978702541,"y":37.772},{"x":1754978642405,"y":41.62},{"x":1754978582265,"y":36.942},{"x":1754978522144,"y":40.247},{"x":1754978462014,"y":40.094},{"x":1754978401893,"y":39.161},{"x":1754978341598,"y":46.698},{"x":1754978281473,"y":40.262},{"x":1754978221335,"y":39.38},{"x":1754978161236,"y":39.431},{"x":1754978101077,"y":41.149},{"x":1754978040941,"y":40.484},{"x":1754977980817,"y":45.572},{"x":1754977920700,"y":42.788},{"x":1754977860557,"y":61.024},{"x":1754977800431,"y":61.102},{"x":1754977740329,"y":65.26},{"x":1754977680104,"y":67.483},{"x":1754977622938,"y":58.994},{"x":1754977562792,"y":45.18},{"x":1754977502660,"y":45.586},{"x":1754977442544,"y":40.84},{"x":1754977382415,"y":41.504},{"x":1754977322295,"y":43.626},{"x":1754977262161,"y":41.182},{"x":1754977202026,"y":40.662},{"x":1754977141892,"y":40.064},{"x":1754977081772,"y":46.337},{"x":1754977021648,"y":43.103},{"x":1754976961526,"y":48.692},{"x":1754976901396,"y":44.389},{"x":1754976841285,"y":46.297},{"x":1754976781147,"y":42.215},{"x":1754976721012,"y":40.338},{"x":1754976660881,"y":39.384},{"x":1754976600772,"y":40.261},{"x":1754976540631,"y":39.984},{"x":1754976480518,"y":41.437},{"x":1754976420435,"y":52.934},{"x":1754976360314,"y":52.07},{"x":1754976300065,"y":56.112},{"x":1754976242893,"y":51.04},{"x":1754976182769,"y":51.586},{"x":1754976122643,"y":41.863},{"x":1754976062521,"y":42.317},{"x":1754976002403,"y":40.403},{"x":1754975942275,"y":41.848},{"x":1754975882155,"y":38.413},{"x":1754975822032,"y":28.357},{"x":1754975761897,"y":29.464},{"x":1754975701783,"y":29.633},{"x":1754975641635,"y":36.412},{"x":1754975581498,"y":32.773},{"x":1754975521390,"y":30.368},{"x":1754975461220,"y":28.393},{"x":1754975401080,"y":27.414},{"x":1754975340937,"y":32.618},{"x":1754975280823,"y":29.878},{"x":1754975220703,"y":27.745},{"x":1754975160582,"y":26.976},{"x":1754975100432,"y":30.337},{"x":1754975040291,"y":34.052},{"x":1754974980251,"y":34.562},{"x":1754974922919,"y":34.674},{"x":1754974862791,"y":32.687},{"x":1754974802670,"y":31.576},{"x":1754974742523,"y":29.494},{"x":1754974682395,"y":34.014},{"x":1754974622274,"y":28.939},{"x":1754974562146,"y":30.514},{"x":1754974502030,"y":28.336},{"x":1754974441883,"y":27.506},{"x":1754974381762,"y":29.209},{"x":1754974321632,"y":29.142},{"x":1754974261488,"y":32.645},{"x":1754974201355,"y":32.762},{"x":1754974141233,"y":32.208},{"x":1754974081104,"y":31.734},{"x":1754974020971,"y":35.534},{"x":1754973960821,"y":29.826},{"x":1754973900677,"y":29.533},{"x":1754973840476,"y":31.769},{"x":1754973780327,"y":31.057},{"x":1754973720283,"y":35.471},{"x":1754973662912,"y":31.027},{"x":1754973602804,"y":31.213},{"x":1754973542664,"y":28.055},{"x":1754973482539,"y":30.012},{"x":1754973422390,"y":31.128},{"x":1754973362258,"y":34.867},{"x":1754973302105,"y":31.182},{"x":1754973241968,"y":31.487},{"x":1754973181841,"y":28.614},{"x":1754973121725,"y":31.667},{"x":1754973061601,"y":35.286},{"x":1754973001485,"y":32.951},{"x":1754972941346,"y":31.606},{"x":1754972881223,"y":29.542},{"x":1754972821089,"y":32.395},{"x":1754972760943,"y":29.555},{"x":1754972700820,"y":29.68},{"x":1754972640841,"y":29.351},{"x":1754972580577,"y":27.298},{"x":1754972520442,"y":30.28},{"x":1754972460315,"y":30.302},{"x":1754972400217,"y":33.642},{"x":1754972342933,"y":29.492},{"x":1754972282740,"y":29.476},{"x":1754972222619,"y":30.306},{"x":1754972162509,"y":31.302},{"x":1754972102367,"y":35.2},{"x":1754972042188,"y":31.968},{"x":1754971982032,"y":29.024},{"x":1754971921888,"y":28.67},{"x":1754971861714,"y":31.96},{"x":1754971801577,"y":29.164},{"x":1754971741431,"y":34.962},{"x":1754971681311,"y":33.432},{"x":1754971621193,"y":35.296},{"x":1754971561056,"y":34.658},{"x":1754971500890,"y":37.148},{"x":1754971440769,"y":37.354},{"x":1754971380665,"y":30.481},{"x":1754971320544,"y":30.192},{"x":1754971260452,"y":28.552},{"x":1754971203071,"y":27.479},{"x":1754971142893,"y":27.488},{"x":1754971082766,"y":27.719},{"x":1754971022640,"y":27.01},{"x":1754970962613,"y":31.314},{"x":1754970902398,"y":31.091},{"x":1754970842277,"y":33.56},{"x":1754970782151,"y":36.119},{"x":1754970722033,"y":29.766},{"x":1754970661898,"y":27.446},{"x":1754970601771,"y":29.032},{"x":1754970541635,"y":30.608},{"x":1754970481508,"y":28.872},{"x":1754970421327,"y":28.37},{"x":1754970361200,"y":30.564},{"x":1754970301080,"y":33.835},{"x":1754970240922,"y":32.68},{"x":1754970180797,"y":33.049},{"x":1754970120685,"y":37.368},{"x":1754970060584,"y":28.826},{"x":1754970000538,"y":27.067},{"x":1754969940281,"y":27.206},{"x":1754969882976,"y":27.16},{"x":1754969822851,"y":31.2},{"x":1754969762734,"y":28.225},{"x":1754969702608,"y":28.163},{"x":1754969642485,"y":30.707},{"x":1754969582348,"y":30.023},{"x":1754969522231,"y":29.078},{"x":1754969462091,"y":36.028},{"x":1754969401955,"y":34.607},{"x":1754969341830,"y":33.504},{"x":1754969281683,"y":32.579},{"x":1754969221558,"y":30.52},{"x":1754969161433,"y":34.798},{"x":1754969101306,"y":31.08},{"x":1754969041180,"y":28.662},{"x":1754968981045,"y":29.405},{"x":1754968920924,"y":35.544},{"x":1754968860778,"y":33.401},{"x":1754968800705,"y":33.522},{"x":1754968740492,"y":28.919},{"x":1754968680334,"y":31.783},{"x":1754968623037,"y":33.696},{"x":1754968562839,"y":32.897},{"x":1754968502717,"y":36.7},{"x":1754968442556,"y":33.526},{"x":1754968382382,"y":32.7},{"x":1754968322271,"y":32.197},{"x":1754968262122,"y":32.56},{"x":1754968201971,"y":31.206},{"x":1754968141850,"y":28.348},{"x":1754968081752,"y":30.383},{"x":1754968021591,"y":30.52},{"x":1754967961471,"y":28.404},{"x":1754967901340,"y":28.3},{"x":1754967841209,"y":32.356},{"x":1754967782425,"y":29.105},{"x":1754967722265,"y":30.134},{"x":1754967662109,"y":31.403},{"x":1754967602029,"y":30.461},{"x":1754967541819,"y":30.59},{"x":1754967481701,"y":33.322},{"x":1754967421558,"y":30.716},{"x":1754967361418,"y":32.321},{"x":1754967301292,"y":32.264},{"x":1754967241164,"y":30.784},{"x":1754967181036,"y":34.757},{"x":1754967120895,"y":29.819},{"x":1754967060768,"y":31.985},{"x":1754967000640,"y":31.798},{"x":1754966940436,"y":32.284},{"x":1754966880251,"y":39.72},{"x":1754966823015,"y":34.117},{"x":1754966762890,"y":32.923},{"x":1754966702764,"y":32.758},{"x":1754966642634,"y":32.842},{"x":1754966582493,"y":27.656},{"x":1754966522359,"y":31.804},{"x":1754966462233,"y":30.87},{"x":1754966402105,"y":30.96},{"x":1754966341972,"y":29.893},{"x":1754966281841,"y":28.866},{"x":1754966221714,"y":36.053},{"x":1754966161579,"y":43.151},{"x":1754966101454,"y":54.112},{"x":1754966041321,"y":53.916},{"x":1754965981195,"y":52.448},{"x":1754965921083,"y":49.595},{"x":1754965860942,"y":38.448},{"x":1754965800876,"y":29.584},{"x":1754965740706,"y":30.834},{"x":1754965680628,"y":28.415},{"x":1754965620422,"y":30.101},{"x":1754965560241,"y":34.057},{"x":1754965502971,"y":29.75},{"x":1754965442846,"y":31.651},{"x":1754965382720,"y":30.32},{"x":1754965322599,"y":31.843},{"x":1754965262477,"y":34.986},{"x":1754965202358,"y":30.518},{"x":1754965142185,"y":30.259},{"x":1754965082067,"y":30.798},{"x":1754965021944,"y":34.204},{"x":1754964961813,"y":32.592},{"x":1754964901687,"y":32.168},{"x":1754964841550,"y":26.909},{"x":1754964781410,"y":31.936},{"x":1754964721271,"y":27.341},{"x":1754964661109,"y":27.536},{"x":1754964600885,"y":30.667},{"x":1754964540747,"y":45.388},{"x":1754964480626,"y":40.585},{"x":1754964420519,"y":39.182},{"x":1754964360345,"y":39.086},{"x":1754964300252,"y":37.276},{"x":1754964242943,"y":26.966},{"x":1754964182808,"y":33.629},{"x":1754964122671,"y":35.651},{"x":1754964062550,"y":35.39},{"x":1754964002436,"y":33.787},{"x":1754963942286,"y":32.38},{"x":1754963882161,"y":35.666},{"x":1754963822037,"y":31.927},{"x":1754963761903,"y":30.366},{"x":1754963701787,"y":29.453},{"x":1754963641662,"y":30.104},{"x":1754963581531,"y":30.836},{"x":1754963521416,"y":30.94},{"x":1754963461291,"y":31.234},{"x":1754963401165,"y":32.182},{"x":1754963341037,"y":36.551},{"x":1754963280907,"y":34.93},{"x":1754963220788,"y":43.57},{"x":1754963160673,"y":43.295},{"x":1754963100636,"y":40.753},{"x":1754963040489,"y":41.46},{"x":1754962980284,"y":40.16},{"x":1754962922959,"y":34.476},{"x":1754962862838,"y":28.781},{"x":1754962802709,"y":29.275},{"x":1754962742584,"y":32.968},{"x":1754962682455,"y":32.465},{"x":1754962622328,"y":35.982},{"x":1754962562199,"y":34.13},{"x":1754962502079,"y":32.088},{"x":1754962441918,"y":28.816},{"x":1754962381795,"y":29.126},{"x":1754962321671,"y":28.795},{"x":1754962261555,"y":44.363},{"x":1754962201455,"y":42.862},{"x":1754962141294,"y":45.49},{"x":1754962081168,"y":43.802},{"x":1754962021032,"y":43.018},{"x":1754961960908,"y":39.132},{"x":1754961900803,"y":31.49},{"x":1754961840662,"y":30.296},{"x":1754961780547,"y":30.166},{"x":1754961720515,"y":29.719},{"x":1754961660294,"y":29.718},{"x":1754961600204,"y":29.878},{"x":1754961542904,"y":34.366},{"x":1754961482784,"y":33.31},{"x":1754961422654,"y":35.128},{"x":1754961362528,"y":33.847},{"x":1754961302407,"y":40.266},{"x":1754961242297,"y":30.266},{"x":1754961182127,"y":28.381},{"x":1754961121989,"y":28.019},{"x":1754961061850,"y":29.071},{"x":1754961001672,"y":29.582},{"x":1754960941536,"y":28.132},{"x":1754960881425,"y":31.308},{"x":1754960821305,"y":31.102},{"x":1754960761180,"y":34.205},{"x":1754960701067,"y":34.397},{"x":1754960640924,"y":36.878},{"x":1754960580789,"y":53.977},{"x":1754960520679,"y":50.718},{"x":1754960460638,"y":50.924},{"x":1754960400490,"y":50.161},{"x":1754960340301,"y":52.771},{"x":1754960282975,"y":32.077},{"x":1754960222845,"y":32.513},{"x":1754960162723,"y":33.016},{"x":1754960102596,"y":32.572},{"x":1754960042459,"y":31.794},{"x":1754959982339,"y":30.352},{"x":1754959922203,"y":39.132},{"x":1754959862088,"y":39.342},{"x":1754959801928,"y":38.675},{"x":1754959741774,"y":38.159},{"x":1754959681653,"y":41.888},{"x":1754959621521,"y":31.997},{"x":1754959561404,"y":33.173},{"x":1754959501301,"y":35.176},{"x":1754959441166,"y":45.73},{"x":1754959381022,"y":44.008},{"x":1754959320891,"y":41.452},{"x":1754959260766,"y":39.05},{"x":1754959200706,"y":38.78},{"x":1754959140514,"y":40.303},{"x":1754959080363,"y":29.8},{"x":1754959022976,"y":32.819},{"x":1754958962850,"y":37.454},{"x":1754958902713,"y":39.313},{"x":1754958842566,"y":36.128},{"x":1754958782446,"y":37.418},{"x":1754958722326,"y":38.19},{"x":1754958662194,"y":29.292},{"x":1754958602073,"y":29.149},{"x":1754958541929,"y":29.297},{"x":1754958481807,"y":29.485},{"x":1754958421685,"y":33.676},{"x":1754958361531,"y":33.634},{"x":1754958301404,"y":33.27},{"x":1754958241282,"y":34.423},{"x":1754958181152,"y":33.27},{"x":1754958121022,"y":32.202},{"x":1754958060898,"y":34.691},{"x":1754958000872,"y":31.009},{"x":1754957940641,"y":40.567},{"x":1754957880541,"y":50.945},{"x":1754957820426,"y":49.458},{"x":1754957760404,"y":53.61},{"x":1754957703003,"y":53.606},{"x":1754957642885,"y":36.256},{"x":1754957582722,"y":35.124},{"x":1754957522572,"y":35.286},{"x":1754957462443,"y":42.976},{"x":1754957402282,"y":33.751},{"x":1754957342161,"y":41.752},{"x":1754957282018,"y":42.564},{"x":1754957221900,"y":40.9},{"x":1754957161775,"y":40.728},{"x":1754957101652,"y":47.716},{"x":1754957041529,"y":32.552},{"x":1754956981400,"y":34.396},{"x":1754956921275,"y":33.883},{"x":1754956861163,"y":31.42},{"x":1754956801235,"y":36.922},{"x":1754956740663,"y":32.754},{"x":1754956680534,"y":41.225},{"x":1754956620511,"y":43.841},{"x":1754956560340,"y":38.74},{"x":1754956500051,"y":38.857},{"x":1754956442892,"y":40.489},{"x":1754956382754,"y":33.832},{"x":1754956322626,"y":33.803},{"x":1754956262507,"y":31.834},{"x":1754956202390,"y":31.886},{"x":1754956142272,"y":36.905},{"x":1754956082155,"y":32.807},{"x":1754956022022,"y":33.439},{"x":1754955961901,"y":36.197},{"x":1754955901764,"y":29.988},{"x":1754955841645,"y":33.792},{"x":1754955781509,"y":33.334},{"x":1754955721395,"y":33.097},{"x":1754955661274,"y":33.036},{"x":1754955601125,"y":32.551},{"x":1754955540961,"y":35.089},{"x":1754955480831,"y":53.614},{"x":1754955420713,"y":54.088},{"x":1754955360630,"y":52.862},{"x":1754955300532,"y":54.742},{"x":1754955240325,"y":48.93},{"x":1754955180412,"y":36.595},{"x":1754955122983,"y":35.688},{"x":1754955062854,"y":35.098},{"x":1754955002707,"y":35.3},{"x":1754954942582,"y":41.771},{"x":1754954882441,"y":47.423},{"x":1754954822320,"y":42.722},{"x":1754954762193,"y":44.737},{"x":1754954702100,"y":41.908},{"x":1754954641930,"y":35.935},{"x":1754954581812,"y":38.423},{"x":1754954521679,"y":36.516},{"x":1754954461557,"y":37.032},{"x":1754954401438,"y":39.154},{"x":1754954341318,"y":35.746},{"x":1754954281202,"y":37.375},{"x":1754954221059,"y":32.518},{"x":1754954160909,"y":32.488},{"x":1754954100906,"y":33.073},{"x":1754954040656,"y":37.189},{"x":1754953980557,"y":41.472},{"x":1754953920557,"y":38.981},{"x":1754953860141,"y":34.726},{"x":1754953802867,"y":35.17},{"x":1754953742745,"y":33.294},{"x":1754953682623,"y":31.51},{"x":1754953622503,"y":31.216},{"x":1754953562379,"y":29.738},{"x":1754953502273,"y":41.525},{"x":1754953442141,"y":39.904},{"x":1754953382017,"y":52.268},{"x":1754953321892,"y":55.099},{"x":1754953261766,"y":61.984},{"x":1754953201739,"y":47.615},{"x":1754953141496,"y":42.629},{"x":1754953081369,"y":35.468},{"x":1754953021252,"y":37.618},{"x":1754952961098,"y":32.636},{"x":1754952900967,"y":32.244},{"x":1754952840839,"y":31.216},{"x":1754952780722,"y":39.842},{"x":1754952720614,"y":46.938},{"x":1754952660454,"y":40.326},{"x":1754952600325,"y":43.668},{"x":1754952543012,"y":47.759},{"x":1754952482875,"y":39.767},{"x":1754952422747,"y":43.241},{"x":1754952362627,"y":38.197},{"x":1754952302507,"y":36.962},{"x":1754952242381,"y":34.386},{"x":1754952182258,"y":42.04},{"x":1754952122132,"y":47.5},{"x":1754952062004,"y":43.207},{"x":1754952001896,"y":43.975},{"x":1754951941838,"y":40.411},{"x":1754951881622,"y":35.802},{"x":1754951821488,"y":33.053},{"x":1754951761359,"y":35.623},{"x":1754951701248,"y":35.813},{"x":1754951641100,"y":37.073},{"x":1754951580969,"y":47.431},{"x":1754951520864,"y":47.926},{"x":1754951460726,"y":46.315},{"x":1754951400616,"y":44.741},{"x":1754951340516,"y":43.703},{"x":1754951280334,"y":35.724},{"x":1754951222975,"y":36.486},{"x":1754951162837,"y":47.702},{"x":1754951102724,"y":39.517},{"x":1754951042597,"y":36.715},{"x":1754950982483,"y":51.066},{"x":1754950922364,"y":33.895},{"x":1754950862245,"y":41.406},{"x":1754950802117,"y":35.42},{"x":1754950741999,"y":37.44},{"x":1754950681863,"y":37.115},{"x":1754950621738,"y":40.103},{"x":1754950561596,"y":37.211},{"x":1754950501473,"y":35.112},{"x":1754950441350,"y":33.133},{"x":1754950381209,"y":46.627},{"x":1754950321052,"y":47.341},{"x":1754950260917,"y":62.719},{"x":1754950200830,"y":63.541},{"x":1754950140636,"y":62.821},{"x":1754950080615,"y":61.703},{"x":1754950020395,"y":48.659},{"x":1754949960291,"y":37.056},{"x":1754949902966,"y":41.261},{"x":1754949842824,"y":36.407},{"x":1754949782704,"y":39.252},{"x":1754949722571,"y":39.598},{"x":1754949662441,"y":52.864},{"x":1754949602359,"y":54.391},{"x":1754949542178,"y":46.678},{"x":1754949482047,"y":48.002},{"x":1754949421910,"y":49.286},{"x":1754949361761,"y":61.543},{"x":1754949301645,"y":38.778},{"x":1754949241525,"y":34.091},{"x":1754949181408,"y":32.436},{"x":1754949121287,"y":43.072},{"x":1754949061160,"y":44.324},{"x":1754949001019,"y":52.366},{"x":1754948940875,"y":47.891},{"x":1754948880747,"y":49.889},{"x":1754948820637,"y":38.815},{"x":1754948760554,"y":38.444},{"x":1754948700586,"y":42.271},{"x":1754948640268,"y":52.992},{"x":1754948582969,"y":38.55},{"x":1754948522833,"y":35.722},{"x":1754948462712,"y":34.363},{"x":1754948402590,"y":39.467},{"x":1754948342398,"y":40.616},{"x":1754948282279,"y":40.774},{"x":1754948222156,"y":42.282},{"x":1754948162020,"y":44.474},{"x":1754948101899,"y":48.678},{"x":1754948041774,"y":39.131},{"x":1754947981651,"y":55.195},{"x":1754947921529,"y":39.899},{"x":1754947861412,"y":42.151},{"x":1754947801333,"y":34.926},{"x":1754947741123,"y":34.242},{"x":1754947680985,"y":47.639},{"x":1754947620867,"y":55.02},{"x":1754947560744,"y":55.291},{"x":1754947500668,"y":55.88},{"x":1754947440526,"y":57.415},{"x":1754947380360,"y":42.936},{"x":1754947320239,"y":33.61},{"x":1754947262915,"y":34.927},{"x":1754947202794,"y":35.412},{"x":1754947142685,"y":33.784},{"x":1754947082551,"y":47.426},{"x":1754947022444,"y":48.374},{"x":1754946962281,"y":47.772},{"x":1754946902126,"y":46.354},{"x":1754946841947,"y":44.779},{"x":1754946781842,"y":34.805},{"x":1754946721687,"y":34.69},{"x":1754946661561,"y":37.525},{"x":1754946601432,"y":48.716},{"x":1754946541281,"y":48.89},{"x":1754946481168,"y":47.653},{"x":1754946421036,"y":50.598},{"x":1754946360904,"y":53.194},{"x":1754946300795,"y":47.052},{"x":1754946240695,"y":37.594},{"x":1754946180597,"y":34.816},{"x":1754946120499,"y":37.094},{"x":1754946060288,"y":34.152},{"x":1754946002976,"y":32.999},{"x":1754945942842,"y":36.439},{"x":1754945882723,"y":35.435},{"x":1754945822613,"y":39.512},{"x":1754945762481,"y":39.155},{"x":1754945702351,"y":40.182},{"x":1754945642218,"y":32.951},{"x":1754945582096,"y":33.805},{"x":1754945521954,"y":31.669},{"x":1754945461819,"y":32.653},{"x":1754945401718,"y":37.378},{"x":1754945341563,"y":43.58},{"x":1754945281433,"y":56.88},{"x":1754945221293,"y":60.769},{"x":1754945161168,"y":62.66},{"x":1754945101114,"y":62.8},{"x":1754945040821,"y":52.391},{"x":1754944980676,"y":36.3},{"x":1754944920539,"y":34.709},{"x":1754944860450,"y":31.084},{"x":1754944800270,"y":32.666},{"x":1754944742958,"y":32.792},{"x":1754944682831,"y":50.474},{"x":1754944622710,"y":45.1},{"x":1754944562591,"y":48.056},{"x":1754944502460,"y":51.034},{"x":1754944442335,"y":49.186},{"x":1754944382204,"y":42.929},{"x":1754944322072,"y":38.267},{"x":1754944261929,"y":37.141},{"x":1754944201808,"y":45.581},{"x":1754944141631,"y":44.371},{"x":1754944081503,"y":51.781},{"x":1754944021386,"y":47.533},{"x":1754943961259,"y":49.733},{"x":1754943901125,"y":37.862},{"x":1754943840976,"y":44.734},{"x":1754943780851,"y":48.341},{"x":1754943720809,"y":41.21},{"x":1754943660686,"y":38.737},{"x":1754943600665,"y":33.551},{"x":1754943540449,"y":33.012},{"x":1754943480247,"y":40.1},{"x":1754943422979,"y":38.441},{"x":1754943362835,"y":52.849},{"x":1754943302672,"y":34.204},{"x":1754943242524,"y":47.726},{"x":1754943182410,"y":39.335},{"x":1754943122242,"y":41.239},{"x":1754943062113,"y":43.102},{"x":1754943001955,"y":53.593},{"x":1754942941829,"y":60.706},{"x":1754942881699,"y":74.761},{"x":1754942821561,"y":58.831},{"x":1754942761441,"y":57.646},{"x":1754942701325,"y":53.575},{"x":1754942641195,"y":41.84},{"x":1754942581086,"y":44.737},{"x":1754942520926,"y":36.962},{"x":1754942460807,"y":51.486},{"x":1754942400720,"y":50.776},{"x":1754942340500,"y":51.589},{"x":1754942280376,"y":60.084},{"x":1754942220240,"y":69.823},{"x":1754942162974,"y":47.557},{"x":1754942102851,"y":35.477},{"x":1754942042726,"y":38.825},{"x":1754941982599,"y":41.563},{"x":1754941922481,"y":36.386},{"x":1754941862362,"y":35.722},{"x":1754941802231,"y":43.189},{"x":1754941742105,"y":44.414},{"x":1754941681985,"y":40.084},{"x":1754941621857,"y":37.72},{"x":1754941561735,"y":39.065},{"x":1754941501610,"y":62.554},{"x":1754941441476,"y":61.039},{"x":1754941381352,"y":71.315},{"x":1754941321228,"y":66.4},{"x":1754941261106,"y":67.603},{"x":1754941201052,"y":46.277},{"x":1754941140754,"y":41.363},{"x":1754941080627,"y":44.248},{"x":1754941020499,"y":58.566},{"x":1754940960362,"y":56.364},{"x":1754940900322,"y":52.049},{"x":1754940843027,"y":49.71},{"x":1754940782891,"y":49.038},{"x":1754940722763,"y":64.152},{"x":1754940662644,"y":46.139},{"x":1754940602516,"y":43.097},{"x":1754940542385,"y":40.694},{"x":1754940482240,"y":41.161},{"x":1754940422116,"y":53.191},{"x":1754940361970,"y":42.362},{"x":1754940301851,"y":35.854},{"x":1754940241723,"y":32.474},{"x":1754940181590,"y":32.89},{"x":1754940121466,"y":31.39},{"x":1754940061345,"y":57.253},{"x":1754940001227,"y":56.758},{"x":1754939941076,"y":58.238},{"x":1754939880935,"y":57.551},{"x":1754939820820,"y":61.728},{"x":1754939760691,"y":37.181},{"x":1754939700593,"y":35.935},{"x":1754939640370,"y":46.421},{"x":1754939580170,"y":47.644},{"x":1754939522970,"y":48.988},{"x":1754939462773,"y":59.509},{"x":1754939402632,"y":53.072},{"x":1754939342479,"y":53.406},{"x":1754939282358,"y":67.253},{"x":1754939222228,"y":52.895},{"x":1754939162100,"y":52.177},{"x":1754939101968,"y":38.744},{"x":1754939041835,"y":38.143},{"x":1754938981711,"y":45.22},{"x":1754938921597,"y":51.192},{"x":1754938861498,"y":43.184},{"x":1754938801473,"y":43.294},{"x":1754938741203,"y":47.964},{"x":1754938681062,"y":38.536},{"x":1754938620930,"y":39.27},{"x":1754938560817,"y":40.954},{"x":1754938500736,"y":35.465},{"x":1754938440556,"y":50.069},{"x":1754938380482,"y":51.42},{"x":1754938320364,"y":68.388},{"x":1754938260157,"y":58.156},{"x":1754938202896,"y":57.437},{"x":1754938142773,"y":48.547},{"x":1754938082650,"y":56.134},{"x":1754938022531,"y":63.84},{"x":1754937962396,"y":41.43},{"x":1754937902260,"y":39.89},{"x":1754937842138,"y":58.268},{"x":1754937781992,"y":37.205},{"x":1754937721864,"y":37.37},{"x":1754937661747,"y":38.899},{"x":1754937601635,"y":36.583},{"x":1754937541482,"y":36.571},{"x":1754937481358,"y":57.772},{"x":1754937421240,"y":59.782},{"x":1754937361106,"y":58.928},{"x":1754937300970,"y":59.927},{"x":1754937240834,"y":55.232},{"x":1754937180713,"y":32.058},{"x":1754937120633,"y":33.539},{"x":1754937060495,"y":58.373},{"x":1754937000380,"y":47.317},{"x":1754936940227,"y":49.111},{"x":1754936882901,"y":48.551},{"x":1754936822785,"y":49.918},{"x":1754936762663,"y":49.067},{"x":1754936702549,"y":46.588},{"x":1754936642451,"y":44.174},{"x":1754936582311,"y":38.869},{"x":1754936522182,"y":37.595},{"x":1754936462057,"y":37.012},{"x":1754936401920,"y":47.651},{"x":1754936341791,"y":54.534},{"x":1754936281672,"y":46.637},{"x":1754936221547,"y":66.04},{"x":1754936161416,"y":46.661},{"x":1754936101300,"y":32.22},{"x":1754936041181,"y":31.79},{"x":1754935981017,"y":32.207},{"x":1754935920858,"y":35.101},{"x":1754935860690,"y":45.653},{"x":1754935800594,"y":47.219},{"x":1754935740482,"y":79.22},{"x":1754935680330,"y":62.783},{"x":1754935620090,"y":64.148},{"x":1754935562903,"y":48.458},{"x":1754935502779,"y":47.166},{"x":1754935442650,"y":46.298},{"x":1754935382527,"y":35.102},{"x":1754935322403,"y":40.999},{"x":1754935262264,"y":33.848},{"x":1754935202174,"y":49.832},{"x":1754935141965,"y":38.232},{"x":1754935081872,"y":37.388},{"x":1754935021720,"y":39.556},{"x":1754934961600,"y":38.598},{"x":1754934901482,"y":40.795},{"x":1754934841357,"y":33.439},{"x":1754934781240,"y":55.603},{"x":1754934721144,"y":53.588},{"x":1754934660976,"y":53.294},{"x":1754934600861,"y":55.448},{"x":1754934540732,"y":50.537},{"x":1754934480629,"y":32.578},{"x":1754934420485,"y":38.437},{"x":1754934360292,"y":50.339},{"x":1754934302976,"y":47.684},{"x":1754934242869,"y":50.322},{"x":1754934182737,"y":39.989},{"x":1754934122605,"y":39.54},{"x":1754934062474,"y":46.145},{"x":1754934002357,"y":45.518},{"x":1754933942232,"y":44.71},{"x":1754933882092,"y":53.311},{"x":1754933821950,"y":33.149},{"x":1754933761827,"y":37.921},{"x":1754933701698,"y":34.212},{"x":1754933641581,"y":32.666},{"x":1754933581458,"y":45.132},{"x":1754933521350,"y":33.976},{"x":1754933461198,"y":33.053},{"x":1754933401128,"y":33.065},{"x":1754933340922,"y":56.714},{"x":1754933280803,"y":64.555},{"x":1754933220674,"y":62.364},{"x":1754933160561,"y":65.417},{"x":1754933100472,"y":64.799},{"x":1754933040307,"y":38.117},{"x":1754932980273,"y":31.974},{"x":1754932922918,"y":39.392},{"x":1754932862794,"y":40.424},{"x":1754932802675,"y":36.884},{"x":1754932742554,"y":39.575},{"x":1754932682422,"y":43.444},{"x":1754932622303,"y":46.753},{"x":1754932562165,"y":41.714},{"x":1754932502038,"y":36.392},{"x":1754932441916,"y":34.99},{"x":1754932381788,"y":28.32},{"x":1754932321592,"y":38.922},{"x":1754932261454,"y":37.236},{"x":1754932201337,"y":29.89},{"x":1754932141183,"y":36.763},{"x":1754932081063,"y":28.644},{"x":1754932020911,"y":40.334},{"x":1754931960787,"y":43.47},{"x":1754931900709,"y":55.624},{"x":1754931840553,"y":51.757},{"x":1754931780461,"y":52.537},{"x":1754931720289,"y":49.109},{"x":1754931663032,"y":44.798},{"x":1754931602889,"y":25.406},{"x":1754931542737,"y":28.372},{"x":1754931482619,"y":43.151},{"x":1754931422496,"y":51.22},{"x":1754931362376,"y":50.729},{"x":1754931302248,"y":49.969},{"x":1754931242130,"y":46.786},{"x":1754931181989,"y":48.322},{"x":1754931121865,"y":51.695},{"x":1754931061733,"y":35.298},{"x":1754931001614,"y":50.606},{"x":1754930941486,"y":53.122},{"x":1754930881369,"y":50.9},{"x":1754930821251,"y":45.437},{"x":1754930761107,"y":38.189},{"x":1754930701033,"y":45.761},{"x":1754930640830,"y":34.487},{"x":1754930580698,"y":35.852},{"x":1754930520617,"y":40.559},{"x":1754930460513,"y":33.913},{"x":1754930400385,"y":26.855},{"x":1754930340233,"y":41.974},{"x":1754930282970,"y":43.663},{"x":1754930222846,"y":49.11},{"x":1754930162722,"y":58.862},{"x":1754930102593,"y":49.793},{"x":1754930042470,"y":41.731},{"x":1754929982347,"y":35.866},{"x":1754929922235,"y":27.192},{"x":1754929862097,"y":29.482},{"x":1754929801956,"y":41.093},{"x":1754929741829,"y":44.084},{"x":1754929681695,"y":39.511},{"x":1754929621574,"y":57.767},{"x":1754929561450,"y":31.925},{"x":1754929501329,"y":24.918},{"x":1754929441197,"y":27.407},{"x":1754929381068,"y":25.049},{"x":1754929320928,"y":24.007},{"x":1754929260803,"y":27.592},{"x":1754929200779,"y":34.676},{"x":1754929140528,"y":29.426},{"x":1754929080412,"y":53.342},{"x":1754929020276,"y":56.599},{"x":1754928962965,"y":59.39},{"x":1754928902847,"y":56.153},{"x":1754928842742,"y":59.653},{"x":1754928782567,"y":35.551},{"x":1754928722415,"y":37.808},{"x":1754928662246,"y":46.943},{"x":1754928602102,"y":50.311},{"x":1754928541957,"y":49.068},{"x":1754928481838,"y":44.852},{"x":1754928421684,"y":46.554},{"x":1754928361560,"y":55.58},{"x":1754928301440,"y":38.542},{"x":1754928241312,"y":41.088},{"x":1754928181194,"y":40.201},{"x":1754928121056,"y":49.502},{"x":1754928060922,"y":39.484},{"x":1754928000873,"y":56.26},{"x":1754927940607,"y":55.141},{"x":1754927880497,"y":56.888},{"x":1754927820393,"y":58.306},{"x":1754927760087,"y":54.724},{"x":1754927702916,"y":32.467},{"x":1754927642794,"y":32.022},{"x":1754927582668,"y":45.379},{"x":1754927522525,"y":46.14},{"x":1754927462401,"y":49.978},{"x":1754927402242,"y":56.711},{"x":1754927342117,"y":56.464},{"x":1754927281966,"y":53.128},{"x":1754927221840,"y":54.695},{"x":1754927161710,"y":59.22},{"x":1754927101585,"y":63.616},{"x":1754927041444,"y":63.646},{"x":1754926981321,"y":48.827},{"x":1754926921202,"y":39.662},{"x":1754926861070,"y":31.271},{"x":1754926800934,"y":53.428},{"x":1754926740743,"y":33.32},{"x":1754926680653,"y":36.486},{"x":1754926620545,"y":30.334},{"x":1754926560396,"y":32.61},{"x":1754926500332,"y":34.406},{"x":1754926442997,"y":34.266},{"x":1754926382866,"y":31.711},{"x":1754926322743,"y":33.994},{"x":1754926262618,"y":36.238},{"x":1754926202506,"y":37.841},{"x":1754926142365,"y":32.096},{"x":1754926082239,"y":38.874},{"x":1754926022090,"y":42.774},{"x":1754925961945,"y":64.139},{"x":1754925901822,"y":51.349},{"x":1754925841701,"y":47.105},{"x":1754925781578,"y":49.556},{"x":1754925721487,"y":47.098},{"x":1754925661339,"y":37.295},{"x":1754925601206,"y":31.058},{"x":1754925541060,"y":29.768},{"x":1754925480934,"y":30.797},{"x":1754925420823,"y":34.062},{"x":1754925360709,"y":29.227},{"x":1754925300707,"y":26.548},{"x":1754925240468,"y":23.088},{"x":1754925180285,"y":25.361},{"x":1754925123024,"y":36.18},{"x":1754925062883,"y":49.746},{"x":1754925002724,"y":53.993},{"x":1754924942606,"y":52.639},{"x":1754924882475,"y":62.08},{"x":1754924822353,"y":40.522},{"x":1754924762233,"y":39.541},{"x":1754924702105,"y":37.894},{"x":1754924641953,"y":43.205},{"x":1754924581828,"y":35.563},{"x":1754924521705,"y":34.392},{"x":1754924461592,"y":35.836},{"x":1754924401554,"y":35.262},{"x":1754924341287,"y":34.208},{"x":1754924281162,"y":29.971},{"x":1754924221021,"y":33.269},{"x":1754924160881,"y":27.432},{"x":1754924100788,"y":24.23},{"x":1754924040599,"y":17.596},{"x":1754923980495,"y":31.79},{"x":1754923920284,"y":40.321},{"x":1754923860233,"y":40.103},{"x":1754923802931,"y":43.326},{"x":1754923742799,"y":39.288},{"x":1754923682680,"y":29.375},{"x":1754923622557,"y":22.213},{"x":1754923562423,"y":22.625},{"x":1754923502292,"y":30.282},{"x":1754923442174,"y":28.439},{"x":1754923382044,"y":32.576},{"x":1754923321909,"y":24.694},{"x":1754923261779,"y":22.628},{"x":1754923201663,"y":32.434},{"x":1754923141539,"y":15.925},{"x":1754923081416,"y":28.636},{"x":1754923021287,"y":31.883},{"x":1754922961171,"y":18.443},{"x":1754922901038,"y":19.114},{"x":1754922840879,"y":44.795},{"x":1754922780757,"y":36.029},{"x":1754922720680,"y":51.221},{"x":1754922660511,"y":40.397},{"x":1754922600348,"y":36.474},{"x":1754922542850,"y":24.106},{"x":1754922482731,"y":11.314},{"x":1754922422607,"y":15.996},{"x":1754922362484,"y":27.884},{"x":1754922302373,"y":44.009},{"x":1754922242235,"y":59.059},{"x":1754922182107,"y":45.493},{"x":1754922121956,"y":42.264},{"x":1754922061818,"y":38.958},{"x":1754922001683,"y":35.99},{"x":1754921941557,"y":35.79},{"x":1754921881439,"y":28.434},{"x":1754921821327,"y":30.664},{"x":1754921761196,"y":11.519},{"x":1754921701080,"y":14.093},{"x":1754921640912,"y":15.758},{"x":1754921580827,"y":18.929},{"x":1754921520717,"y":45.406},{"x":1754921460453,"y":41.988},{"x":1754921400444,"y":43.699},{"x":1754921340218,"y":41.017},{"x":1754921282916,"y":35.924},{"x":1754921222796,"y":9.083},{"x":1754921162677,"y":20.862},{"x":1754921102540,"y":27.494},{"x":1754921042464,"y":27.44},{"x":1754920982266,"y":35.088},{"x":1754920922158,"y":35.046},{"x":1754920862019,"y":25.255},{"x":1754920801837,"y":24.239},{"x":1754920741650,"y":24.012},{"x":1754920681521,"y":26.072},{"x":1754920621399,"y":26.425},{"x":1754920561249,"y":15.823},{"x":1754920501127,"y":15.238},{"x":1754920440995,"y":31.674},{"x":1754920380874,"y":29.15},{"x":1754920320743,"y":40.396},{"x":1754920260604,"y":27.817},{"x":1754920200505,"y":26.264},{"x":1754920140387,"y":16.576},{"x":1754920080252,"y":14.088},{"x":1754920022934,"y":9.803},{"x":1754919962800,"y":13.638},{"x":1754919902678,"y":24.985},{"x":1754919842556,"y":21.976},{"x":1754919782417,"y":35.808},{"x":1754919722298,"y":35.688},{"x":1754919662159,"y":35.612},{"x":1754919602039,"y":29.298},{"x":1754919541902,"y":32.267},{"x":1754919481779,"y":18.428},{"x":1754919421657,"y":13.933},{"x":1754919361525,"y":12.463},{"x":1754919301405,"y":11.471},{"x":1754919241274,"y":27.697},{"x":1754919181150,"y":33.078},{"x":1754919121013,"y":16.986},{"x":1754919060879,"y":47.1},{"x":1754919000803,"y":43.94},{"x":1754918940590,"y":54.845},{"x":1754918880448,"y":36.731},{"x":1754918820335,"y":34.136},{"x":1754918763001,"y":14.338},{"x":1754918702875,"y":8.196},{"x":1754918642752,"y":19.423},{"x":1754918582630,"y":18.116},{"x":1754918522507,"y":24.606},{"x":1754918462382,"y":26.525},{"x":1754918402258,"y":22.83},{"x":1754918342135,"y":27.586},{"x":1754918281979,"y":29.434},{"x":1754918221854,"y":24.904},{"x":1754918161686,"y":21.475},{"x":1754918101560,"y":22.202},{"x":1754918041442,"y":9.625},{"x":1754917981271,"y":12.78},{"x":1754917921086,"y":12.166},{"x":1754917860958,"y":12.917},{"x":1754917800887,"y":14.296},{"x":1754917740659,"y":11.329},{"x":1754917680594,"y":35.298},{"x":1754917620381,"y":33.58},{"x":1754917560281,"y":37.813},{"x":1754917502992,"y":34.62},{"x":1754917442857,"y":39.842},{"x":1754917382761,"y":18.101},{"x":1754917322605,"y":7.798},{"x":1754917262469,"y":7.662},{"x":1754917202349,"y":19.658},{"x":1754917142170,"y":23.566},{"x":1754917081942,"y":21.004},{"x":1754917021811,"y":22.466},{"x":1754916961697,"y":24.564},{"x":1754916901575,"y":16.926},{"x":1754916841461,"y":17.732},{"x":1754916781323,"y":19.994},{"x":1754916721206,"y":13.03},{"x":1754916661075,"y":11.252},{"x":1754916600954,"y":22.506},{"x":1754916540796,"y":19.278},{"x":1754916480708,"y":30.598},{"x":1754916420531,"y":23.725},{"x":1754916360461,"y":32.801},{"x":1754916300355,"y":23.605},{"x":1754916243002,"y":45.256},{"x":1754916182882,"y":30.154},{"x":1754916122764,"y":25.207},{"x":1754916062642,"y":23.701},{"x":1754916002511,"y":24.811},{"x":1754915942374,"y":24.599},{"x":1754915882244,"y":12.983},{"x":1754915822106,"y":19.434},{"x":1754915761966,"y":22.392},{"x":1754915701807,"y":15.379},{"x":1754915641684,"y":12.354},{"x":1754915581566,"y":23.654},{"x":1754915521431,"y":41.995},{"x":1754915461308,"y":36.35},{"x":1754915401196,"y":36.374},{"x":1754915341062,"y":35.988},{"x":1754915280922,"y":22.133},{"x":1754915220793,"y":7.358},{"x":1754915160664,"y":15.175},{"x":1754915100576,"y":23.208},{"x":1754915040419,"y":21.943},{"x":1754914980324,"y":24.955},{"x":1754914923019,"y":34.999},{"x":1754914862893,"y":35.513},{"x":1754914802755,"y":40.532},{"x":1754914742636,"y":36.194},{"x":1754914682512,"y":34.031},{"x":1754914622394,"y":33.091},{"x":1754914562264,"y":20.144},{"x":1754914502123,"y":18.161},{"x":1754914441998,"y":11.908},{"x":1754914381861,"y":7.445},{"x":1754914321628,"y":23.497},{"x":1754914261504,"y":26.266},{"x":1754914201364,"y":35.874},{"x":1754914141196,"y":37.933},{"x":1754914081063,"y":32.694},{"x":1754914020931,"y":18.498},{"x":1754913960810,"y":22.057},{"x":1754913900746,"y":4.585},{"x":1754913840610,"y":8.624},{"x":1754913780469,"y":19.578},{"x":1754913720300,"y":39.148},{"x":1754913662995,"y":37.644},{"x":1754913602884,"y":38.222},{"x":1754913542745,"y":34.337},{"x":1754913482624,"y":34.17},{"x":1754913422488,"y":19.398},{"x":1754913362373,"y":28.571},{"x":1754913302253,"y":9.486},{"x":1754913242120,"y":22.417},{"x":1754913181983,"y":24.001},{"x":1754913121865,"y":20.896},{"x":1754913061735,"y":23.147},{"x":1754913001628,"y":27.798},{"x":1754912941483,"y":38.159},{"x":1754912881351,"y":15.869},{"x":1754912821231,"y":10.883},{"x":1754912761118,"y":6.232},{"x":1754912701027,"y":16.974},{"x":1754912640828,"y":29.222},{"x":1754912580703,"y":32.869},{"x":1754912520628,"y":27.193},{"x":1754912460448,"y":33.788},{"x":1754912400324,"y":37.446},{"x":1754912340190,"y":31.423},{"x":1754912282945,"y":19.722},{"x":1754912222818,"y":18.136},{"x":1754912162670,"y":18.809},{"x":1754912102550,"y":9.702},{"x":1754912042413,"y":7.978},{"x":1754911982289,"y":28.112},{"x":1754911922162,"y":33.443},{"x":1754911862041,"y":20.671},{"x":1754911801910,"y":28.685},{"x":1754911741778,"y":33.367},{"x":1754911681655,"y":25.242},{"x":1754911621546,"y":26.892},{"x":1754911561406,"y":21.006},{"x":1754911501290,"y":21.715},{"x":1754911441159,"y":23.85},{"x":1754911381031,"y":21.527},{"x":1754911320895,"y":22.822},{"x":1754911260727,"y":22.031},{"x":1754911200647,"y":12.919},{"x":1754911140428,"y":11.219},{"x":1754911080322,"y":12.014},{"x":1754911020254,"y":26.102},{"x":1754910962952,"y":24.056},{"x":1754910902826,"y":23.1},{"x":1754910842731,"y":32.647},{"x":1754910782559,"y":35.14},{"x":1754910722415,"y":24.062},{"x":1754910662294,"y":22.283},{"x":1754910602127,"y":48.412},{"x":1754910541987,"y":23.368},{"x":1754910481860,"y":16.652},{"x":1754910421735,"y":41.927},{"x":1754910361613,"y":38.962},{"x":1754910301493,"y":38.048},{"x":1754910241366,"y":38.86},{"x":1754910181250,"y":35.971},{"x":1754910121125,"y":19.208},{"x":1754910060953,"y":23.276},{"x":1754910000937,"y":37.616},{"x":1754909940680,"y":9.709},{"x":1754909880555,"y":13.984},{"x":1754909820379,"y":21.746},{"x":1754909760277,"y":25.15},{"x":1754909702943,"y":44.054},{"x":1754909641524,"y":32.483},{"x":1754909582498,"y":34.096},{"x":1754909522365,"y":28.784},{"x":1754909462231,"y":23.408},{"x":1754909402140,"y":9.308},{"x":1754909341976,"y":24.301},{"x":1754909281845,"y":19.319},{"x":1754909221717,"y":22.093},{"x":1754909161595,"y":27.218},{"x":1754909101512,"y":41.564},{"x":1754909041342,"y":36.12},{"x":1754908981246,"y":29.282},{"x":1754908921080,"y":26.383},{"x":1754908860947,"y":30.51},{"x":1754908800820,"y":11.828},{"x":1754908740648,"y":13.379},{"x":1754908680529,"y":12.862},{"x":1754908620367,"y":13.194},{"x":1754908560261,"y":12.168},{"x":1754908502928,"y":25.634},{"x":1754908442806,"y":38.98},{"x":1754908382692,"y":32.993},{"x":1754908322542,"y":32.875},{"x":1754908262407,"y":36.76},{"x":1754908202297,"y":26.005},{"x":1754908142155,"y":11.392},{"x":1754908082020,"y":11.378},{"x":1754908021886,"y":23.614},{"x":1754907961758,"y":24.204},{"x":1754907901616,"y":24.911},{"x":1754907841493,"y":26.258},{"x":1754907781368,"y":25.538},{"x":1754907721239,"y":24.928},{"x":1754907661106,"y":25.975},{"x":1754907600964,"y":27.277},{"x":1754907540794,"y":28.507},{"x":1754907480653,"y":27.836},{"x":1754907420580,"y":19.594},{"x":1754907360439,"y":21.64},{"x":1754907300281,"y":30.625},{"x":1754907242994,"y":12.486},{"x":1754907182810,"y":16.193},{"x":1754907122632,"y":19.771},{"x":1754907062499,"y":19.442},{"x":1754907002347,"y":30.96},{"x":1754906942226,"y":39.612},{"x":1754906882092,"y":51.804},{"x":1754906821947,"y":33.828},{"x":1754906761820,"y":43.846},{"x":1754906701700,"y":28.084},{"x":1754906641570,"y":16.64},{"x":1754906581435,"y":15.76},{"x":1754906521302,"y":34.234},{"x":1754906461181,"y":38.419},{"x":1754906401206,"y":37.57},{"x":1754906340880,"y":38.09},{"x":1754906280758,"y":34.68},{"x":1754906220632,"y":35.282},{"x":1754906160545,"y":32.867},{"x":1754906100451,"y":14.819},{"x":1754906040323,"y":16.849},{"x":1754905982985,"y":18.07},{"x":1754905922865,"y":19.751},{"x":1754905862746,"y":22.903},{"x":1754905802608,"y":39.799},{"x":1754905742495,"y":45.472},{"x":1754905682367,"y":42.436},{"x":1754905622241,"y":38.732},{"x":1754905562107,"y":50.603},{"x":1754905501975,"y":32.792},{"x":1754905441841,"y":31.056},{"x":1754905381714,"y":33.146},{"x":1754905321590,"y":26.48},{"x":1754905261443,"y":32.282},{"x":1754905201319,"y":36.823},{"x":1754905141196,"y":23.208},{"x":1754905081068,"y":16.224},{"x":1754905020920,"y":15.367},{"x":1754904960796,"y":14.47},{"x":1754904900753,"y":15.049},{"x":1754904840513,"y":12.395},{"x":1754904780411,"y":15.014},{"x":1754904720343,"y":14.663},{"x":1754904660037,"y":15.337},{"x":1754904602903,"y":17.006},{"x":1754904542774,"y":44.501},{"x":1754904482650,"y":46.094},{"x":1754904422517,"y":46.976},{"x":1754904362411,"y":48.347},{"x":1754904302271,"y":41.797},{"x":1754904242141,"y":18.564},{"x":1754904182001,"y":16.948},{"x":1754904121880,"y":20.395},{"x":1754904061757,"y":24.42},{"x":1754904001644,"y":26.24},{"x":1754903941510,"y":35.369},{"x":1754903881389,"y":29.946},{"x":1754903821268,"y":33.86},{"x":1754903761134,"y":16.127},{"x":1754903701050,"y":15.658},{"x":1754903640835,"y":16.667},{"x":1754903582984,"y":28.358},{"x":1754903522835,"y":30.035},{"x":1754903462751,"y":26.803},{"x":1754903402519,"y":30.236},{"x":1754903342395,"y":23.35},{"x":1754903282283,"y":22.597},{"x":1754903222135,"y":19.812},{"x":1754903162003,"y":34.523},{"x":1754903101862,"y":32.249},{"x":1754903041741,"y":32.015},{"x":1754902981605,"y":41.933},{"x":1754902921480,"y":47.372},{"x":1754902861353,"y":44.206},{"x":1754902801481,"y":42.076},{"x":1754902740982,"y":46.3},{"x":1754902680839,"y":26.0},{"x":1754902620717,"y":23.55},{"x":1754902560623,"y":36.899},{"x":1754902500466,"y":27.024},{"x":1754902440396,"y":24.019},{"x":1754902383007,"y":39.474},{"x":1754902322885,"y":56.318},{"x":1754902262745,"y":47.185},{"x":1754902202615,"y":46.801},{"x":1754902142477,"y":46.116},{"x":1754902082353,"y":36.196},{"x":1754902022231,"y":34.906},{"x":1754901962108,"y":31.236},{"x":1754901901985,"y":45.785},{"x":1754901841843,"y":53.011},{"x":1754901781686,"y":54.266},{"x":1754901721562,"y":40.686},{"x":1754901661438,"y":21.583},{"x":1754901601308,"y":19.423},{"x":1754901541178,"y":20.975},{"x":1754901481045,"y":39.064},{"x":1754901420912,"y":39.83},{"x":1754901360817,"y":35.036},{"x":1754901300678,"y":34.964},{"x":1754901240599,"y":33.223},{"x":1754901180376,"y":23.056},{"x":1754901120108,"y":26.008},{"x":1754901062917,"y":26.882},{"x":1754901002822,"y":26.531},{"x":1754900942679,"y":27.066},{"x":1754900882550,"y":27.136},{"x":1754900822428,"y":22.73},{"x":1754900762305,"y":26.824},{"x":1754900702177,"y":28.0},{"x":1754900642038,"y":25.541},{"x":1754900581900,"y":28.868},{"x":1754900521779,"y":23.953},{"x":1754900461635,"y":49.333},{"x":1754900401508,"y":50.122},{"x":1754900341384,"y":51.294},{"x":1754900281270,"y":50.438},{"x":1754900221132,"y":51.496},{"x":1754900160997,"y":29.136},{"x":1754900100897,"y":26.255},{"x":1754900040722,"y":28.1},{"x":1754899980576,"y":28.22},{"x":1754899920513,"y":27.968},{"x":1754899860261,"y":37.657},{"x":1754899802969,"y":37.272},{"x":1754899742831,"y":40.938},{"x":1754899682707,"y":42.683},{"x":1754899622573,"y":40.708},{"x":1754899562463,"y":31.054},{"x":1754899502328,"y":34.657},{"x":1754899442197,"y":32.93},{"x":1754899382090,"y":41.281},{"x":1754899321946,"y":41.263},{"x":1754899261828,"y":38.842},{"x":1754899201685,"y":38.261},{"x":1754899141503,"y":36.368},{"x":1754899081364,"y":28.026},{"x":1754899021234,"y":25.808},{"x":1754898961099,"y":27.054},{"x":1754898900962,"y":22.046},{"x":1754898840811,"y":28.877},{"x":1754898780668,"y":27.848},{"x":1754898720623,"y":41.603},{"x":1754898660372,"y":50.653},{"x":1754898600349,"y":48.331},{"x":1754898542952,"y":45.782},{"x":1754898482832,"y":59.342},{"x":1754898422714,"y":44.984},{"x":1754898362574,"y":49.445},{"x":1754898302447,"y":25.518},{"x":1754898242327,"y":31.304},{"x":1754898182208,"y":29.465},{"x":1754898122074,"y":23.448},{"x":1754898061931,"y":34.29},{"x":1754898001787,"y":36.222},{"x":1754897941661,"y":33.424},{"x":1754897881540,"y":33.352},{"x":1754897821419,"y":38.401},{"x":1754897761293,"y":32.177},{"x":1754897701175,"y":32.46},{"x":1754897641023,"y":37.088},{"x":1754897580901,"y":28.198},{"x":1754897520758,"y":21.54},{"x":1754897460663,"y":16.843},{"x":1754897400721,"y":27.06},{"x":1754897340412,"y":28.807},{"x":1754897280245,"y":25.5},{"x":1754897222948,"y":26.195},{"x":1754897162824,"y":39.294},{"x":1754897102694,"y":43.049},{"x":1754897042564,"y":49.54},{"x":1754896982421,"y":45.418},{"x":1754896922300,"y":34.526},{"x":1754896862171,"y":52.051},{"x":1754896802054,"y":44.681},{"x":1754896741927,"y":61.805},{"x":1754896681788,"y":40.546},{"x":1754896621671,"y":71.882},{"x":1754896561539,"y":68.78},{"x":1754896501434,"y":67.553},{"x":1754896441297,"y":56.119},{"x":1754896381136,"y":55.288},{"x":1754896320990,"y":61.633},{"x":1754896260828,"y":73.007},{"x":1754896200686,"y":53.012},{"x":1754896140556,"y":43.67},{"x":1754896080406,"y":43.764},{"x":1754896020272,"y":33.317},{"x":1754895962958,"y":30.758},{"x":1754895902826,"y":28.602},{"x":1754895842695,"y":28.32},{"x":1754895782575,"y":40.99},{"x":1754895722458,"y":38.06},{"x":1754895662340,"y":48.27},{"x":1754895602214,"y":43.9},{"x":1754895542067,"y":45.012},{"x":1754895481933,"y":46.489},{"x":1754895421810,"y":49.094},{"x":1754895361689,"y":37.302},{"x":1754895301569,"y":37.34},{"x":1754895241444,"y":41.353},{"x":1754895181321,"y":25.993},{"x":1754895121203,"y":37.56},{"x":1754895061067,"y":35.214},{"x":1754895000938,"y":36.172},{"x":1754894940806,"y":40.766},{"x":1754894880661,"y":40.291},{"x":1754894820521,"y":29.929},{"x":1754894760281,"y":28.01},{"x":1754894702972,"y":36.294},{"x":1754894642843,"y":30.76},{"x":1754894582720,"y":29.99},{"x":1754894522594,"y":35.118},{"x":1754894462455,"y":29.328},{"x":1754894402335,"y":26.046},{"x":1754894342207,"y":25.753},{"x":1754894282091,"y":23.618},{"x":1754894221948,"y":25.354},{"x":1754894161827,"y":24.305},{"x":1754894101699,"y":25.603},{"x":1754894041580,"y":34.571},{"x":1754893981453,"y":48.433},{"x":1754893921329,"y":31.231},{"x":1754893861207,"y":30.024},{"x":1754893801097,"y":44.168},{"x":1754893740923,"y":26.728},{"x":1754893680812,"y":41.749},{"x":1754893620680,"y":27.478},{"x":1754893560587,"y":29.63},{"x":1754893500484,"y":27.678},{"x":1754893440360,"y":40.795},{"x":1754893380259,"y":41.327},{"x":1754893322934,"y":42.53},{"x":1754893262811,"y":39.689},{"x":1754893202689,"y":29.119},{"x":1754893142559,"y":29.212},{"x":1754893082441,"y":24.476},{"x":1754893022323,"y":23.005},{"x":1754892962187,"y":23.471},{"x":1754892902058,"y":26.839},{"x":1754892841935,"y":25.144},{"x":1754892781782,"y":25.574},{"x":1754892721621,"y":27.718},{"x":1754892661500,"y":33.694},{"x":1754892601358,"y":32.201},{"x":1754892541241,"y":31.837},{"x":1754892481111,"y":28.445},{"x":1754892420951,"y":29.054},{"x":1754892360813,"y":26.166},{"x":1754892300728,"y":31.225},{"x":1754892240605,"y":28.192},{"x":1754892180492,"y":28.494},{"x":1754892120274,"y":25.463},{"x":1754892063021,"y":24.312},{"x":1754892002918,"y":31.164},{"x":1754891942745,"y":25.981},{"x":1754891882623,"y":28.33},{"x":1754891822503,"y":29.136},{"x":1754891762380,"y":26.659},{"x":1754891702259,"y":35.273},{"x":1754891642133,"y":28.038},{"x":1754891581998,"y":27.428},{"x":1754891521877,"y":25.456},{"x":1754891461747,"y":26.102},{"x":1754891401632,"y":24.811},{"x":1754891341503,"y":40.555},{"x":1754891281393,"y":25.637},{"x":1754891221250,"y":26.356},{"x":1754891161124,"y":25.836},{"x":1754891101007,"y":24.049},{"x":1754891040777,"y":28.814},{"x":1754890980636,"y":39.196},{"x":1754890920531,"y":36.136},{"x":1754890860455,"y":38.809},{"x":1754890800261,"y":34.666},{"x":1754890742964,"y":36.739},{"x":1754890682844,"y":25.111},{"x":1754890622720,"y":25.092},{"x":1754890562593,"y":28.043},{"x":1754890502471,"y":26.831},{"x":1754890442338,"y":23.276},{"x":1754890382220,"y":23.818},{"x":1754890322087,"y":24.164},{"x":1754890261950,"y":24.776},{"x":1754890201838,"y":25.321},{"x":1754890141706,"y":40.697},{"x":1754890081584,"y":41.836},{"x":1754890021451,"y":35.735},{"x":1754889961328,"y":33.138},{"x":1754889901204,"y":32.095},{"x":1754889841074,"y":27.545},{"x":1754889780936,"y":32.417},{"x":1754889720813,"y":24.978},{"x":1754889660698,"y":24.212},{"x":1754889600588,"y":23.74},{"x":1754889540465,"y":23.494},{"x":1754889480288,"y":24.174},{"x":1754889420269,"y":27.076},{"x":1754889362926,"y":29.522},{"x":1754889302802,"y":28.88},{"x":1754889242673,"y":28.427},{"x":1754889182538,"y":24.854},{"x":1754889122389,"y":30.608},{"x":1754889062209,"y":23.32},{"x":1754889002070,"y":24.168},{"x":1754888941929,"y":25.159},{"x":1754888881803,"y":24.586},{"x":1754888821675,"y":27.467},{"x":1754888761545,"y":28.736},{"x":1754888701418,"y":28.064},{"x":1754888641294,"y":27.677},{"x":1754888581169,"y":31.384},{"x":1754888521006,"y":24.686},{"x":1754888460877,"y":25.279},{"x":1754888400832,"y":24.73},{"x":1754888340643,"y":24.544},{"x":1754888280458,"y":24.996},{"x":1754888220333,"y":24.487},{"x":1754888160142,"y":33.058},{"x":1754888102923,"y":32.066},{"x":1754888042800,"y":31.753},{"x":1754887982667,"y":29.502},{"x":1754887922544,"y":28.184},{"x":1754887862406,"y":31.621},{"x":1754887802283,"y":25.066},{"x":1754887742138,"y":25.646},{"x":1754887682017,"y":25.32},{"x":1754887621886,"y":25.429},{"x":1754887561765,"y":27.295},{"x":1754887501646,"y":26.626},{"x":1754887441522,"y":28.651},{"x":1754887381393,"y":30.449},{"x":1754887321266,"y":28.066},{"x":1754887261142,"y":42.73},{"x":1754887201012,"y":39.83},{"x":1754887140872,"y":37.704},{"x":1754887080752,"y":43.266},{"x":1754887020642,"y":43.675},{"x":1754886960551,"y":35.131},{"x":1754886900451,"y":40.03},{"x":1754886840308,"y":32.67},{"x":1754886782976,"y":34.354},{"x":1754886722856,"y":36.589},{"x":1754886662729,"y":32.099},{"x":1754886602597,"y":34.729},{"x":1754886542474,"y":30.954},{"x":1754886482348,"y":30.506},{"x":1754886422222,"y":29.59},{"x":1754886362107,"y":27.17},{"x":1754886301962,"y":27.996},{"x":1754886241822,"y":28.247},{"x":1754886181702,"y":29.692},{"x":1754886121588,"y":31.174},{"x":1754886061459,"y":26.772},{"x":1754886001340,"y":29.554},{"x":1754885941138,"y":29.521},{"x":1754885881002,"y":31.031},{"x":1754885820882,"y":30.758},{"x":1754885760739,"y":31.012},{"x":1754885700676,"y":32.954},{"x":1754885640545,"y":36.718},{"x":1754885580316,"y":29.005},{"x":1754885522932,"y":28.476},{"x":1754885462772,"y":26.165},{"x":1754885402652,"y":25.098},{"x":1754885342527,"y":30.444},{"x":1754885282320,"y":25.872},{"x":1754885222178,"y":25.403},{"x":1754885162058,"y":27.947},{"x":1754885101914,"y":33.469},{"x":1754885041785,"y":34.278},{"x":1754884981665,"y":31.15},{"x":1754884921544,"y":29.148},{"x":1754884861396,"y":29.387},{"x":1754884801318,"y":26.191},{"x":1754884741073,"y":25.907},{"x":1754884680943,"y":30.043},{"x":1754884620812,"y":28.552},{"x":1754884560710,"y":29.449},{"x":1754884500586,"y":29.064},{"x":1754884440449,"y":30.358},{"x":1754884380453,"y":32.923},{"x":1754884320253,"y":28.219},{"x":1754884262911,"y":28.355},{"x":1754884202782,"y":28.217},{"x":1754884142666,"y":28.133},{"x":1754884082545,"y":29.315},{"x":1754884022393,"y":30.61},{"x":1754883962271,"y":27.761},{"x":1754883902127,"y":30.088},{"x":1754883841996,"y":29.992},{"x":1754883781873,"y":31.163},{"x":1754883721749,"y":33.068},{"x":1754883661599,"y":33.264},{"x":1754883601478,"y":32.398},{"x":1754883541349,"y":31.718},{"x":1754883481230,"y":29.129},{"x":1754883421107,"y":31.484},{"x":1754883360955,"y":29.188},{"x":1754883300880,"y":30.508},{"x":1754883240703,"y":29.646},{"x":1754883180599,"y":28.966},{"x":1754883120547,"y":32.95},{"x":1754883060322,"y":28.804},{"x":1754883000071,"y":26.617},{"x":1754882942910,"y":39.253},{"x":1754882882788,"y":40.736},{"x":1754882822672,"y":39.642},{"x":1754882762547,"y":38.41},{"x":1754882702409,"y":35.138},{"x":1754882642281,"y":26.915},{"x":1754882582160,"y":29.543},{"x":1754882522036,"y":30.181},{"x":1754882461900,"y":33.132},{"x":1754882401775,"y":29.04},{"x":1754882341652,"y":25.834},{"x":1754882281516,"y":29.119},{"x":1754882221409,"y":28.014},{"x":1754882161241,"y":33.097},{"x":1754882101131,"y":30.814},{"x":1754882040927,"y":26.538},{"x":1754881980785,"y":25.764},{"x":1754881920661,"y":30.382},{"x":1754881860488,"y":30.428},{"x":1754881800389,"y":27.733},{"x":1754881740253,"y":29.813},{"x":1754881682971,"y":30.809},{"x":1754881622848,"y":30.689},{"x":1754881562723,"y":29.497},{"x":1754881502594,"y":28.746},{"x":1754881442498,"y":27.269},{"x":1754881380224,"y":27.125},{"x":1754881322904,"y":29.801},{"x":1754881262762,"y":31.739},{"x":1754881202467,"y":33.176},{"x":1754881141147,"y":29.11},{"x":1754881081013,"y":32.339},{"x":1754881020888,"y":30.406},{"x":1754880960759,"y":32.664},{"x":1754880900647,"y":37.176},{"x":1754880840566,"y":30.569},{"x":1754880780451,"y":26.303},{"x":1754880720308,"y":26.914},{"x":1754880662948,"y":27.008},{"x":1754880602835,"y":34.28},{"x":1754880542697,"y":31.306},{"x":1754880482577,"y":32.98},{"x":1754880422456,"y":31.548},{"x":1754880362346,"y":33.468},{"x":1754880302203,"y":31.006},{"x":1754880242079,"y":28.744},{"x":1754880181933,"y":30.09},{"x":1754880121815,"y":26.855},{"x":1754880061682,"y":26.644},{"x":1754880001564,"y":25.205},{"x":1754879941441,"y":28.412},{"x":1754879881327,"y":28.986},{"x":1754879821197,"y":31.518},{"x":1754879761069,"y":32.066},{"x":1754879700923,"y":33.868},{"x":1754879640798,"y":30.856},{"x":1754879580674,"y":36.445},{"x":1754879520627,"y":30.827},{"x":1754879460420,"y":35.155},{"x":1754879400319,"y":31.225},{"x":1754879340218,"y":31.39},{"x":1754879282934,"y":36.026},{"x":1754879222827,"y":32.05},{"x":1754879162688,"y":35.946},{"x":1754879102562,"y":32.803},{"x":1754879042439,"y":31.852},{"x":1754878982304,"y":30.835},{"x":1754878922178,"y":29.536},{"x":1754878862043,"y":27.385},{"x":1754878801921,"y":25.702},{"x":1754878741792,"y":25.931},{"x":1754878681666,"y":25.586},{"x":1754878621541,"y":29.639},{"x":1754878561432,"y":36.581},{"x":1754878501305,"y":42.23},{"x":1754878441188,"y":42.664},{"x":1754878381035,"y":39.692},{"x":1754878320897,"y":44.512},{"x":1754878260759,"y":28.787},{"x":1754878200651,"y":26.911},{"x":1754878140457,"y":27.56},{"x":1754878080373,"y":28.11},{"x":1754878020354,"y":32.351},{"x":1754877962963,"y":26.75},{"x":1754877902842,"y":30.217},{"x":1754877842713,"y":29.213},{"x":1754877782588,"y":33.012},{"x":1754877722470,"y":32.473},{"x":1754877662348,"y":32.362},{"x":1754877602238,"y":28.452},{"x":1754877542106,"y":27.793},{"x":1754877481961,"y":27.593},{"x":1754877421842,"y":26.653},{"x":1754877361718,"y":32.39},{"x":1754877301598,"y":27.642},{"x":1754877241473,"y":31.436},{"x":1754877181350,"y":29.674},{"x":1754877121234,"y":32.728},{"x":1754877061111,"y":36.46},{"x":1754877000976,"y":30.2},{"x":1754876940841,"y":30.644},{"x":1754876880744,"y":29.662},{"x":1754876820588,"y":27.152},{"x":1754876760484,"y":30.749},{"x":1754876700418,"y":27.45},{"x":1754876640313,"y":29.648},{"x":1754876582944,"y":30.924},{"x":1754876522823,"y":29.956},{"x":1754876462698,"y":32.291},{"x":1754876402570,"y":30.509},{"x":1754876342449,"y":28.338},{"x":1754876282329,"y":28.055},{"x":1754876222218,"y":28.19},{"x":1754876162071,"y":28.138},{"x":1754876101945,"y":27.989},{"x":1754876041828,"y":27.287},{"x":1754875981706,"y":34.561},{"x":1754875921572,"y":39.799},{"x":1754875861448,"y":40.027},{"x":1754875801354,"y":43.853},{"x":1754875741191,"y":41.888},{"x":1754875681067,"y":42.274},{"x":1754875620932,"y":31.828},{"x":1754875560809,"y":28.745},{"x":1754875500757,"y":31.618},{"x":1754875440607,"y":26.7},{"x":1754875380447,"y":28.092},{"x":1754875320290,"y":33.516},{"x":1754875260249,"y":29.615},{"x":1754875202924,"y":35.089},{"x":1754875142782,"y":32.887},{"x":1754875082630,"y":28.577},{"x":1754875022511,"y":31.736},{"x":1754874962380,"y":32.298},{"x":1754874902239,"y":37.873},{"x":1754874842107,"y":30.014},{"x":1754874781997,"y":30.74},{"x":1754874721824,"y":33.358},{"x":1754874661660,"y":32.214},{"x":1754874601511,"y":30.545},{"x":1754874541387,"y":30.032},{"x":1754874481269,"y":27.552},{"x":1754874421149,"y":26.99},{"x":1754874360983,"y":29.514},{"x":1754874300867,"y":29.508},{"x":1754874240741,"y":29.947},{"x":1754874180635,"y":29.78},{"x":1754874120524,"y":28.531},{"x":1754874060408,"y":29.98},{"x":1754874000320,"y":32.609},{"x":1754873942946,"y":33.856},{"x":1754873882827,"y":30.02},{"x":1754873822709,"y":29.912},{"x":1754873762578,"y":29.618},{"x":1754873702454,"y":30.746},{"x":1754873642334,"y":35.861},{"x":1754873582198,"y":30.839},{"x":1754873522068,"y":31.069},{"x":1754873461920,"y":46.975},{"x":1754873401805,"y":32.432},{"x":1754873341604,"y":39.757},{"x":1754873281477,"y":34.241},{"x":1754873221349,"y":34.246},{"x":1754873161216,"y":31.666},{"x":1754873101087,"y":29.852},{"x":1754873040933,"y":32.269},{"x":1754872980801,"y":32.336},{"x":1754872920682,"y":30.656},{"x":1754872860549,"y":29.508},{"x":1754872800466,"y":34.732},{"x":1754872740357,"y":31.736},{"x":1754872680185,"y":30.127},{"x":1754872622889,"y":30.85},{"x":1754872562765,"y":29.47},{"x":1754872502643,"y":27.539},{"x":1754872442520,"y":28.082},{"x":1754872382393,"y":28.313},{"x":1754872322272,"y":29.347},{"x":1754872262147,"y":32.231},{"x":1754872202019,"y":33.877},{"x":1754872141892,"y":34.147},{"x":1754872081771,"y":36.336},{"x":1754872021653,"y":30.268},{"x":1754871961538,"y":32.047},{"x":1754871901389,"y":28.343},{"x":1754871841267,"y":31.236},{"x":1754871781141,"y":35.557},{"x":1754871721005,"y":27.853},{"x":1754871660886,"y":27.782},{"x":1754871600840,"y":28.682},{"x":1754871540632,"y":33.816},{"x":1754871480572,"y":39.013},{"x":1754871420429,"y":34.019},{"x":1754871360310,"y":33.338},{"x":1754871300078,"y":30.335},{"x":1754871242913,"y":28.742},{"x":1754871182781,"y":32.795},{"x":1754871122645,"y":27.569},{"x":1754871062462,"y":28.866},{"x":1754871002305,"y":27.869},{"x":1754870942182,"y":28.03},{"x":1754870882049,"y":33.869},{"x":1754870821923,"y":31.264},{"x":1754870761787,"y":30.647},{"x":1754870701685,"y":31.303},{"x":1754870641540,"y":32.218},{"x":1754870581426,"y":34.938},{"x":1754870521305,"y":29.84},{"x":1754870461213,"y":27.092},{"x":1754870401144,"y":28.614},{"x":1754870340892,"y":28.336},{"x":1754870280770,"y":36.574},{"x":1754870220655,"y":32.326},{"x":1754870160583,"y":34.309},{"x":1754870100442,"y":33.343},{"x":1754870040305,"y":33.001},{"x":1754869980175,"y":33.737},{"x":1754869922910,"y":30.493},{"x":1754869862793,"y":30.244},{"x":1754869802671,"y":30.89},{"x":1754869742563,"y":28.2},{"x":1754869682424,"y":27.66},{"x":1754869622306,"y":29.711},{"x":1754869562185,"y":29.479},{"x":1754869502072,"y":33.161},{"x":1754869441940,"y":32.478},{"x":1754869381795,"y":30.809},{"x":1754869321675,"y":29.188},{"x":1754869261553,"y":27.188},{"x":1754869201424,"y":27.436},{"x":1754869141302,"y":30.06},{"x":1754869081183,"y":31.945},{"x":1754869021052,"y":27.934},{"x":1754868960916,"y":30.434},{"x":1754868900793,"y":29.912},{"x":1754868840669,"y":30.404},{"x":1754868780569,"y":32.683},{"x":1754868720386,"y":34.19},{"x":1754868660255,"y":31.649},{"x":1754868602982,"y":31.288},{"x":1754868542895,"y":29.726},{"x":1754868482797,"y":28.816},{"x":1754868422620,"y":28.94},{"x":1754868362502,"y":31.843},{"x":1754868302386,"y":32.215},{"x":1754868242255,"y":32.081},{"x":1754868182127,"y":30.888},{"x":1754868121998,"y":30.804},{"x":1754868061867,"y":30.553},{"x":1754868001748,"y":30.491},{"x":1754867941625,"y":29.503},{"x":1754867881504,"y":33.395},{"x":1754867821380,"y":30.545},{"x":1754867761251,"y":30.071},{"x":1754867701134,"y":30.862},{"x":1754867640976,"y":30.349},{"x":1754867580865,"y":31.492},{"x":1754867520719,"y":28.787},{"x":1754867460472,"y":28.478},{"x":1754867400454,"y":31.572},{"x":1754867340245,"y":31.361},{"x":1754867282989,"y":29.461},{"x":1754867222874,"y":33.818},{"x":1754867162743,"y":28.986},{"x":1754867102619,"y":30.002},{"x":1754867042465,"y":31.286},{"x":1754866982349,"y":29.872},{"x":1754866922213,"y":28.908},{"x":1754866862082,"y":28.774},{"x":1754866801967,"y":27.767},{"x":1754866741707,"y":27.552},{"x":1754866681577,"y":32.489},{"x":1754866621455,"y":35.779},{"x":1754866561327,"y":33.224},{"x":1754866501215,"y":29.498},{"x":1754866441082,"y":33.008},{"x":1754866380944,"y":33.641},{"x":1754866320815,"y":37.294},{"x":1754866260682,"y":34.729},{"x":1754866200628,"y":33.169},{"x":1754866140405,"y":32.92},{"x":1754866080330,"y":32.231},{"x":1754866020295,"y":37.195},{"x":1754865962915,"y":35.731},{"x":1754865902790,"y":37.571},{"x":1754865842670,"y":41.402},{"x":1754865782555,"y":43.036},{"x":1754865722432,"y":38.851},{"x":1754865662310,"y":36.899},{"x":1754865602192,"y":33.337},{"x":1754865542068,"y":31.006},{"x":1754865481928,"y":35.497},{"x":1754865421805,"y":32.233},{"x":1754865361680,"y":32.694},{"x":1754865301561,"y":35.028},{"x":1754865241434,"y":34.741},{"x":1754865181319,"y":45.69},{"x":1754865121197,"y":43.478},{"x":1754865061064,"y":43.804},{"x":1754865000992,"y":41.064},{"x":1754864940788,"y":39.535},{"x":1754864880736,"y":41.478},{"x":1754864820576,"y":35.795},{"x":1754864760436,"y":36.1},{"x":1754864700353,"y":37.585},{"x":1754864643017,"y":38.213},{"x":1754864582892,"y":35.398},{"x":1754864522776,"y":39.263},{"x":1754864462657,"y":38.586},{"x":1754864402526,"y":37.778},{"x":1754864342403,"y":36.128},{"x":1754864282254,"y":34.646},{"x":1754864222125,"y":35.036},{"x":1754864161980,"y":34.02},{"x":1754864101866,"y":32.257},{"x":1754864041771,"y":39.018},{"x":1754863981618,"y":35.689},{"x":1754863921452,"y":41.227},{"x":1754863861298,"y":42.374},{"x":1754863801135,"y":41.268},{"x":1754863740996,"y":42.77},{"x":1754863680889,"y":36.541},{"x":1754863620746,"y":27.596},{"x":1754863560624,"y":32.066},{"x":1754863500541,"y":34.278},{"x":1754863440437,"y":35.734},{"x":1754863380267,"y":35.686},{"x":1754863322963,"y":35.856},{"x":1754863262843,"y":42.389},{"x":1754863202780,"y":40.198},{"x":1754863142555,"y":50.406},{"x":1754863082429,"y":39.372},{"x":1754863022314,"y":38.849},{"x":1754862962185,"y":35.951},{"x":1754862902048,"y":38.821},{"x":1754862841924,"y":32.705},{"x":1754862781808,"y":29.688},{"x":1754862721688,"y":29.688},{"x":1754862661566,"y":30.754},{"x":1754862601462,"y":38.836},{"x":1754862541334,"y":37.481},{"x":1754862481216,"y":35.614},{"x":1754862421086,"y":34.655},{"x":1754862360951,"y":34.318},{"x":1754862300903,"y":34.295},{"x":1754862240701,"y":31.595},{"x":1754862180481,"y":33.229},{"x":1754862120403,"y":33.559},{"x":1754862060269,"y":29.723},{"x":1754862002973,"y":29.605},{"x":1754861942841,"y":35.533},{"x":1754861882722,"y":39.947},{"x":1754861822598,"y":39.048},{"x":1754861762473,"y":39.305},{"x":1754861702353,"y":41.929},{"x":1754861642230,"y":38.88},{"x":1754861582108,"y":50.294},{"x":1754861521968,"y":37.44},{"x":1754861461851,"y":37.405},{"x":1754861401759,"y":32.273},{"x":1754861341617,"y":31.225},{"x":1754861281488,"y":44.899},{"x":1754861221368,"y":42.646},{"x":1754861161240,"y":49.702},{"x":1754861101106,"y":45.738},{"x":1754861040969,"y":35.772},{"x":1754860980846,"y":36.572},{"x":1754860920731,"y":34.406},{"x":1754860860588,"y":34.89},{"x":1754860800464,"y":30.655},{"x":1754860740299,"y":31.237},{"x":1754860680174,"y":33.5},{"x":1754860622947,"y":34.354},{"x":1754860562827,"y":34.091},{"x":1754860502698,"y":36.894},{"x":1754860442573,"y":35.97},{"x":1754860382422,"y":32.791},{"x":1754860322276,"y":35.945},{"x":1754860262110,"y":32.569},{"x":1754860201970,"y":32.833},{"x":1754860141846,"y":31.79},{"x":1754860081729,"y":32.504},{"x":1754860021608,"y":36.794},{"x":1754859961487,"y":32.762},{"x":1754859901367,"y":32.081},{"x":1754859841244,"y":32.908},{"x":1754859781106,"y":35.218},{"x":1754859720968,"y":41.556},{"x":1754859660844,"y":42.545},{"x":1754859600794,"y":41.188},{"x":1754859540556,"y":37.754},{"x":1754859480415,"y":36.648},{"x":1754859420285,"y":44.938},{"x":1754859360249,"y":46.585},{"x":1754859302925,"y":44.789},{"x":1754859242798,"y":44.657},{"x":1754859182675,"y":51.736},{"x":1754859122547,"y":34.735},{"x":1754859062425,"y":35.65},{"x":1754859002305,"y":39.786},{"x":1754858942168,"y":36.792},{"x":1754858882039,"y":53.101},{"x":1754858821912,"y":34.02},{"x":1754858761804,"y":37.175},{"x":1754858701649,"y":32.915},{"x":1754858641529,"y":33.061},{"x":1754858581403,"y":36.75},{"x":1754858521287,"y":34.778},{"x":1754858461160,"y":33.658},{"x":1754858401016,"y":36.551},{"x":1754858340874,"y":53.177},{"x":1754858280754,"y":46.615},{"x":1754858220638,"y":47.362},{"x":1754858160554,"y":52.559},{"x":1754858100428,"y":44.86},{"x":1754858040310,"y":35.134},{"x":1754857982944,"y":36.562},{"x":1754857922822,"y":36.02},{"x":1754857862694,"y":36.498},{"x":1754857802574,"y":30.689},{"x":1754857742452,"y":34.436},{"x":1754857682332,"y":31.626},{"x":1754857622212,"y":51.024},{"x":1754857562078,"y":36.221},{"x":1754857501938,"y":39.878},{"x":1754857441790,"y":53.89},{"x":1754857381654,"y":45.098},{"x":1754857321530,"y":45.972},{"x":1754857261407,"y":44.401},{"x":1754857201277,"y":46.471},{"x":1754857141144,"y":31.298},{"x":1754857080998,"y":38.627},{"x":1754857020881,"y":37.38},{"x":1754856960744,"y":34.93},{"x":1754856900693,"y":42.148},{"x":1754856840513,"y":38.552},{"x":1754856780448,"y":38.425},{"x":1754856720570,"y":41.16},{"x":1754856662967,"y":40.608},{"x":1754856602821,"y":41.244},{"x":1754856542685,"y":39.643},{"x":1754856482559,"y":51.538},{"x":1754856422427,"y":45.457},{"x":1754856362298,"y":46.927},{"x":1754856302167,"y":45.569},{"x":1754856242035,"y":44.892},{"x":1754856181898,"y":40.216},{"x":1754856121775,"y":37.135},{"x":1754856061643,"y":32.964},{"x":1754856001568,"y":36.354},{"x":1754855941354,"y":43.141},{"x":1754855881235,"y":42.364},{"x":1754855821102,"y":43.909},{"x":1754855760959,"y":50.531},{"x":1754855700829,"y":46.004},{"x":1754855640722,"y":34.162},{"x":1754855580590,"y":35.543},{"x":1754855520458,"y":37.572},{"x":1754855460342,"y":41.156},{"x":1754855400209,"y":40.122},{"x":1754855342933,"y":35.099},{"x":1754855282813,"y":34.922},{"x":1754855222667,"y":39.636},{"x":1754855162542,"y":37.159},{"x":1754855102420,"y":33.995},{"x":1754855042295,"y":34.94},{"x":1754854982167,"y":36.709},{"x":1754854922043,"y":41.528},{"x":1754854861905,"y":46.199},{"x":1754854801788,"y":45.047},{"x":1754854741663,"y":46.757},{"x":1754854681542,"y":43.571},{"x":1754854621421,"y":39.443},{"x":1754854561295,"y":42.298},{"x":1754854501167,"y":42.523},{"x":1754854441009,"y":35.876},{"x":1754854380887,"y":48.557},{"x":1754854320763,"y":32.473},{"x":1754854260633,"y":34.004},{"x":1754854200546,"y":54.871},{"x":1754854140376,"y":50.264},{"x":1754854080299,"y":58.205},{"x":1754854022987,"y":56.96},{"x":1754853962849,"y":48.74},{"x":1754853902727,"y":45.779},{"x":1754853842582,"y":47.16},{"x":1754853782469,"y":36.656},{"x":1754853722333,"y":46.294},{"x":1754853662211,"y":36.382},{"x":1754853602083,"y":34.396},{"x":1754853541948,"y":54.816},{"x":1754853481824,"y":48.878},{"x":1754853421702,"y":68.215},{"x":1754853361571,"y":53.89},{"x":1754853301451,"y":50.648},{"x":1754853241339,"y":43.488},{"x":1754853181180,"y":38.604},{"x":1754853121033,"y":40.793},{"x":1754853060884,"y":39.018},{"x":1754853000780,"y":39.671},{"x":1754852940567,"y":52.048},{"x":1754852880448,"y":51.253},{"x":1754852820379,"y":53.515},{"x":1754852760200,"y":55.073},{"x":1754852702917,"y":56.336},{"x":1754852642792,"y":40.634},{"x":1754852582664,"y":39.685},{"x":1754852522546,"y":36.146},{"x":1754852462409,"y":39.077},{"x":1754852402317,"y":34.47},{"x":1754852342146,"y":37.385},{"x":1754852282023,"y":35.456},{"x":1754852221889,"y":35.438},{"x":1754852161747,"y":41.744},{"x":1754852101614,"y":33.328},{"x":1754852041483,"y":37.494},{"x":1754851981363,"y":34.336},{"x":1754851921236,"y":39.136},{"x":1754851861104,"y":35.554},{"x":1754851800972,"y":35.498},{"x":1754851740828,"y":38.081},{"x":1754851680724,"y":36.443},{"x":1754851620602,"y":40.13},{"x":1754851560423,"y":39.577},{"x":1754851500334,"y":39.751},{"x":1754851440249,"y":38.88},{"x":1754851382906,"y":35.878},{"x":1754851322784,"y":39.752},{"x":1754851262649,"y":57.542},{"x":1754851202514,"y":59.177},{"x":1754851142389,"y":59.941},{"x":1754851082264,"y":58.99},{"x":1754851022138,"y":57.026},{"x":1754850961991,"y":44.812},{"x":1754850901872,"y":37.712},{"x":1754850841736,"y":38.588},{"x":1754850781609,"y":33.938},{"x":1754850721486,"y":33.446},{"x":1754850661354,"y":32.394},{"x":1754850601244,"y":47.101},{"x":1754850541103,"y":46.601},{"x":1754850480956,"y":48.63},{"x":1754850420830,"y":48.925},{"x":1754850360711,"y":47.063},{"x":1754850300619,"y":38.477},{"x":1754850240509,"y":41.458},{"x":1754850180461,"y":37.578},{"x":1754850122965,"y":44.786},{"x":1754850062843,"y":41.69},{"x":1754850002726,"y":41.342},{"x":1754849942583,"y":42.038},{"x":1754849882461,"y":52.882},{"x":1754849822347,"y":44.666},{"x":1754849762221,"y":33.493},{"x":1754849702098,"y":34.655},{"x":1754849641970,"y":37.459},{"x":1754849581771,"y":36.541},{"x":1754849521598,"y":34.522},{"x":1754849461444,"y":36.536},{"x":1754849401292,"y":34.57},{"x":1754849341166,"y":35.158},{"x":1754849281059,"y":35.983},{"x":1754849220908,"y":35.333},{"x":1754849160781,"y":36.985},{"x":1754849100671,"y":35.105},{"x":1754849040619,"y":40.922},{"x":1754848980379,"y":34.44},{"x":1754848920388,"y":32.396},{"x":1754848862943,"y":32.15},{"x":1754848802869,"y":34.282},{"x":1754848742614,"y":37.446},{"x":1754848682479,"y":34.937},{"x":1754848622357,"y":34.706},{"x":1754848562233,"y":34.129},{"x":1754848502109,"y":30.738},{"x":1754848441981,"y":35.87},{"x":1754848381852,"y":57.046},{"x":1754848321731,"y":59.946},{"x":1754848261610,"y":62.998},{"x":1754848201480,"y":60.218},{"x":1754848141345,"y":60.511},{"x":1754848081208,"y":34.78},{"x":1754848021075,"y":30.145},{"x":1754847960963,"y":32.609},{"x":1754847900871,"y":33.946},{"x":1754847840705,"y":46.997},{"x":1754847780560,"y":40.886},{"x":1754847720462,"y":50.928},{"x":1754847660290,"y":49.24},{"x":1754847603026,"y":44.254},{"x":1754847542881,"y":43.781},{"x":1754847482772,"y":35.749},{"x":1754847422607,"y":36.784},{"x":1754847362481,"y":32.863},{"x":1754847302357,"y":47.599},{"x":1754847242238,"y":34.954},{"x":1754847182115,"y":46.745},{"x":1754847121970,"y":52.558},{"x":1754847061831,"y":56.034},{"x":1754847001708,"y":48.648},{"x":1754846941577,"y":42.901},{"x":1754846881444,"y":31.729},{"x":1754846821326,"y":38.507},{"x":1754846761201,"y":29.592},{"x":1754846701068,"y":32.214},{"x":1754846640909,"y":42.838},{"x":1754846580785,"y":57.534},{"x":1754846520703,"y":38.378},{"x":1754846460549,"y":41.471},{"x":1754846400431,"y":42.119},{"x":1754846340248,"y":35.908},{"x":1754846282943,"y":37.444},{"x":1754846222828,"y":31.805},{"x":1754846162692,"y":28.712},{"x":1754846102570,"y":27.679},{"x":1754846042457,"y":30.263},{"x":1754845982280,"y":44.972},{"x":1754845922123,"y":34.327},{"x":1754845862005,"y":29.716},{"x":1754845801826,"y":33.212},{"x":1754845741694,"y":40.194},{"x":1754845681572,"y":47.904},{"x":1754845621447,"y":33.508},{"x":1754845561322,"y":35.899},{"x":1754845501210,"y":32.13},{"x":1754845441055,"y":38.402},{"x":1754845380912,"y":32.054},{"x":1754845320789,"y":28.285},{"x":1754845260661,"y":48.443},{"x":1754845200686,"y":47.057},{"x":1754845140460,"y":51.56},{"x":1754845080368,"y":53.892},{"x":1754845020348,"y":44.622},{"x":1754844962937,"y":48.288},{"x":1754844902823,"y":34.231},{"x":1754844842694,"y":29.234},{"x":1754844782574,"y":23.341},{"x":1754844722459,"y":37.687},{"x":1754844662335,"y":34.42},{"x":1754844602215,"y":37.013},{"x":1754844542090,"y":35.347},{"x":1754844481949,"y":44.026},{"x":1754844421817,"y":30.991},{"x":1754844361687,"y":31.324},{"x":1754844301571,"y":38.572},{"x":1754844241444,"y":29.094},{"x":1754844181317,"y":39.402},{"x":1754844121231,"y":38.894},{"x":1754844061058,"y":36.307},{"x":1754844000914,"y":38.34},{"x":1754843940778,"y":35.414},{"x":1754843880662,"y":28.048},{"x":1754843820534,"y":31.093},{"x":1754843760489,"y":31.598},{"x":1754843700367,"y":39.377},{"x":1754843640232,"y":29.383},{"x":1754843582900,"y":36.762},{"x":1754843522779,"y":26.634},{"x":1754843462658,"y":25.481},{"x":1754843402535,"y":23.689},{"x":1754843342408,"y":23.584},{"x":1754843282231,"y":25.058},{"x":1754843222096,"y":24.546},{"x":1754843161955,"y":29.16},{"x":1754843101825,"y":33.52},{"x":1754843041698,"y":32.825},{"x":1754842981565,"y":29.076},{"x":1754842921443,"y":33.962},{"x":1754842861314,"y":25.302},{"x":1754842801199,"y":44.734},{"x":1754842741063,"y":43.753},{"x":1754842680929,"y":44.672},{"x":1754842620816,"y":46.944},{"x":1754842560701,"y":43.801},{"x":1754842500546,"y":28.739},{"x":1754842440479,"y":24.221},{"x":1754842380186,"y":31.148},{"x":1754842322975,"y":32.482},{"x":1754842262814,"y":31.106},{"x":1754842202665,"y":38.029},{"x":1754842142535,"y":36.329},{"x":1754842082398,"y":39.889},{"x":1754842022264,"y":32.696},{"x":1754841962145,"y":22.541},{"x":1754841901990,"y":39.629},{"x":1754841841855,"y":31.03},{"x":1754841781727,"y":34.559},{"x":1754841721603,"y":46.548},{"x":1754841661503,"y":37.206},{"x":1754841601405,"y":33.304},{"x":1754841541087,"y":36.944},{"x":1754841480946,"y":37.468},{"x":1754841420823,"y":18.028},{"x":1754841360709,"y":17.767},{"x":1754841300590,"y":24.445},{"x":1754841240441,"y":22.942},{"x":1754841180302,"y":23.394},{"x":1754841120117,"y":23.23},{"x":1754841062901,"y":25.624},{"x":1754841002779,"y":21.746},{"x":1754840942657,"y":26.921},{"x":1754840882520,"y":23.3},{"x":1754840822396,"y":20.452},{"x":1754840762269,"y":18.485},{"x":1754840702138,"y":21.464},{"x":1754840641992,"y":26.578},{"x":1754840581857,"y":22.09},{"x":1754840521729,"y":25.685},{"x":1754840461601,"y":24.869},{"x":1754840401483,"y":41.135},{"x":1754840341358,"y":49.56},{"x":1754840281236,"y":43.784},{"x":1754840221092,"y":41.672},{"x":1754840160956,"y":48.574},{"x":1754840100841,"y":21.22},{"x":1754840040710,"y":21.31},{"x":1754839980594,"y":24.78},{"x":1754839920520,"y":27.493},{"x":1754839860301,"y":18.366},{"x":1754839803004,"y":47.652},{"x":1754839742880,"y":32.258},{"x":1754839682750,"y":36.498},{"x":1754839622631,"y":42.428},{"x":1754839562488,"y":40.03},{"x":1754839502365,"y":27.986},{"x":1754839442249,"y":21.901},{"x":1754839382111,"y":28.375},{"x":1754839321968,"y":35.831},{"x":1754839261844,"y":34.201},{"x":1754839201724,"y":36.607},{"x":1754839141602,"y":38.075},{"x":1754839081482,"y":37.705},{"x":1754839021360,"y":24.515},{"x":1754838961238,"y":23.636},{"x":1754838901116,"y":20.072},{"x":1754838840961,"y":41.38},{"x":1754838780840,"y":27.6},{"x":1754838720756,"y":38.653},{"x":1754838660601,"y":38.408},{"x":1754838600428,"y":36.0},{"x":1754838540258,"y":33.473},{"x":1754838482896,"y":33.812},{"x":1754838422762,"y":16.274},{"x":1754838362638,"y":24.852},{"x":1754838302528,"y":20.66},{"x":1754838242399,"y":19.499},{"x":1754838182286,"y":18.066},{"x":1754838122154,"y":18.096},{"x":1754838062019,"y":21.336},{"x":1754838001956,"y":17.396},{"x":1754837941675,"y":16.645},{"x":1754837881550,"y":16.859},{"x":1754837821421,"y":23.545},{"x":1754837761302,"y":18.881},{"x":1754837701163,"y":15.694},{"x":1754837640999,"y":28.924},{"x":1754837580855,"y":44.003},{"x":1754837520794,"y":44.138},{"x":1754837460571,"y":39.868},{"x":1754837400482,"y":44.356},{"x":1754837340347,"y":44.486},{"x":1754837280225,"y":16.925},{"x":1754837222921,"y":17.069},{"x":1754837162801,"y":21.641},{"x":1754837102675,"y":31.446},{"x":1754837042555,"y":27.646},{"x":1754836982427,"y":38.264},{"x":1754836922298,"y":31.108},{"x":1754836862169,"y":37.717},{"x":1754836802043,"y":20.521},{"x":1754836741910,"y":29.03},{"x":1754836681785,"y":22.418},{"x":1754836621659,"y":17.282},{"x":1754836561537,"y":14.465},{"x":1754836501388,"y":30.042},{"x":1754836441261,"y":28.531},{"x":1754836381143,"y":27.167},{"x":1754836320982,"y":27.03},{"x":1754836260840,"y":27.21},{"x":1754836200757,"y":21.412},{"x":1754836140595,"y":39.12},{"x":1754836080542,"y":29.172},{"x":1754836020487,"y":19.288},{"x":1754835960257,"y":22.427},{"x":1754835902955,"y":13.556},{"x":1754835842833,"y":15.534},{"x":1754835782703,"y":12.138},{"x":1754835722574,"y":15.736},{"x":1754835662441,"y":12.138},{"x":1754835602322,"y":13.744},{"x":1754835542196,"y":20.567},{"x":1754835482071,"y":26.424},{"x":1754835421925,"y":41.66},{"x":1754835361787,"y":43.446},{"x":1754835301655,"y":49.103},{"x":1754835241531,"y":42.953},{"x":1754835181442,"y":28.252},{"x":1754835121266,"y":13.134},{"x":1754835061089,"y":15.448},{"x":1754835000947,"y":29.575},{"x":1754834940809,"y":18.491},{"x":1754834880698,"y":29.923},{"x":1754834820595,"y":37.867},{"x":1754834760442,"y":30.518},{"x":1754834700483,"y":26.578},{"x":1754834643009,"y":39.557},{"x":1754834582879,"y":11.742},{"x":1754834522753,"y":11.248},{"x":1754834462613,"y":10.558},{"x":1754834402536,"y":22.559},{"x":1754834342358,"y":26.941},{"x":1754834282210,"y":25.645},{"x":1754834222086,"y":26.196},{"x":1754834161929,"y":27.99},{"x":1754834101798,"y":16.385},{"x":1754834041669,"y":22.357},{"x":1754833981543,"y":28.018},{"x":1754833921419,"y":18.605},{"x":1754833861290,"y":18.688},{"x":1754833801151,"y":14.634},{"x":1754833741014,"y":9.541},{"x":1754833680871,"y":16.078},{"x":1754833620751,"y":12.679},{"x":1754833560616,"y":11.92},{"x":1754833500577,"y":13.05},{"x":1754833440369,"y":15.883},{"x":1754833380283,"y":15.445},{"x":1754833322913,"y":25.669},{"x":1754833262767,"y":35.708},{"x":1754833202655,"y":42.779},{"x":1754833142420,"y":33.294},{"x":1754833082303,"y":32.695},{"x":1754833022152,"y":20.11},{"x":1754832962020,"y":15.152},{"x":1754832901886,"y":16.186},{"x":1754832841756,"y":21.582},{"x":1754832781627,"y":28.759},{"x":1754832721497,"y":25.879},{"x":1754832661374,"y":27.475},{"x":1754832601272,"y":19.895},{"x":1754832541124,"y":24.322},{"x":1754832480990,"y":14.906},{"x":1754832420871,"y":12.809},{"x":1754832360737,"y":11.153},{"x":1754832300654,"y":9.662},{"x":1754832240544,"y":26.164},{"x":1754832180391,"y":28.801},{"x":1754832120232,"y":29.317},{"x":1754832062941,"y":26.336},{"x":1754832002822,"y":23.86},{"x":1754831942693,"y":11.226},{"x":1754831882580,"y":12.864},{"x":1754831822450,"y":17.296},{"x":1754831762320,"y":14.128},{"x":1754831702194,"y":18.329},{"x":1754831642082,"y":13.381},{"x":1754831581903,"y":19.735},{"x":1754831521759,"y":16.348},{"x":1754831461614,"y":16.799},{"x":1754831401470,"y":13.843},{"x":1754831341346,"y":27.404},{"x":1754831281215,"y":53.18},{"x":1754831221093,"y":31.691},{"x":1754831160949,"y":28.477},{"x":1754831100830,"y":31.574},{"x":1754831040713,"y":15.054},{"x":1754830980567,"y":12.103},{"x":1754830920409,"y":12.857},{"x":1754830860226,"y":15.558},{"x":1754830803024,"y":17.761},{"x":1754830742879,"y":20.233},{"x":1754830682740,"y":20.017},{"x":1754830622618,"y":23.8},{"x":1754830562478,"y":24.274},{"x":1754830502345,"y":30.618},{"x":1754830442204,"y":15.703},{"x":1754830382090,"y":7.141},{"x":1754830321934,"y":27.265},{"x":1754830261790,"y":30.493},{"x":1754830201656,"y":25.369},{"x":1754830141520,"y":31.674},{"x":1754830081395,"y":27.602},{"x":1754830021275,"y":26.081},{"x":1754829961131,"y":15.982},{"x":1754829901014,"y":9.868},{"x":1754829840865,"y":12.995},{"x":1754829780782,"y":13.675},{"x":1754829720628,"y":9.295},{"x":1754829660559,"y":16.858},{"x":1754829600377,"y":16.45},{"x":1754829542985,"y":13.542},{"x":1754829482855,"y":14.494},{"x":1754829422723,"y":10.578},{"x":1754829362788,"y":9.59},{"x":1754829302465,"y":22.816},{"x":1754829242340,"y":28.958},{"x":1754829182223,"y":26.718},{"x":1754829122100,"y":26.824},{"x":1754829061959,"y":26.894},{"x":1754829001834,"y":22.439},{"x":1754828941713,"y":22.342},{"x":1754828881569,"y":14.04},{"x":1754828821445,"y":16.59},{"x":1754828761320,"y":25.189},{"x":1754828701199,"y":31.159},{"x":1754828641066,"y":20.244},{"x":1754828580933,"y":36.932},{"x":1754828520803,"y":21.485},{"x":1754828460689,"y":14.285},{"x":1754828400578,"y":11.632},{"x":1754828340475,"y":14.576},{"x":1754828280349,"y":20.291},{"x":1754828220205,"y":15.062},{"x":1754828162909,"y":23.855},{"x":1754828102786,"y":26.742},{"x":1754828042652,"y":20.148},{"x":1754827982500,"y":20.135},{"x":1754827922365,"y":8.968},{"x":1754827862219,"y":8.798},{"x":1754827802073,"y":9.552},{"x":1754827741941,"y":12.67},{"x":1754827681817,"y":15.86},{"x":1754827621661,"y":15.672},{"x":1754827561535,"y":16.086},{"x":1754827501415,"y":18.371},{"x":1754827441291,"y":17.862},{"x":1754827381159,"y":12.577},{"x":1754827321017,"y":22.914},{"x":1754827260889,"y":33.719},{"x":1754827201157,"y":39.215},{"x":1754827140610,"y":46.325},{"x":1754827080480,"y":34.924},{"x":1754827020348,"y":29.479},{"x":1754826960302,"y":17.368},{"x":1754826902920,"y":18.428},{"x":1754826842806,"y":16.506},{"x":1754826782678,"y":22.96},{"x":1754826722555,"y":19.025},{"x":1754826662432,"y":18.09},{"x":1754826602321,"y":25.757},{"x":1754826542181,"y":21.593},{"x":1754826482061,"y":10.944},{"x":1754826421915,"y":9.541},{"x":1754826361789,"y":15.775},{"x":1754826301667,"y":35.857},{"x":1754826241538,"y":25.637},{"x":1754826181413,"y":32.932},{"x":1754826121292,"y":23.749},{"x":1754826061165,"y":28.566},{"x":1754826001058,"y":12.336},{"x":1754825940866,"y":10.775},{"x":1754825880749,"y":7.722},{"x":1754825820635,"y":8.57},{"x":1754825760521,"y":24.544},{"x":1754825700483,"y":20.048},{"x":1754825640306,"y":21.896},{"x":1754825582996,"y":17.648},{"x":1754825522887,"y":14.558},{"x":1754825462748,"y":19.685},{"x":1754825402639,"y":9.28},{"x":1754825342514,"y":11.836},{"x":1754825282397,"y":21.215},{"x":1754825222269,"y":27.226},{"x":1754825162137,"y":44.401},{"x":1754825101992,"y":34.121},{"x":1754825041868,"y":34.445},{"x":1754824981727,"y":29.512},{"x":1754824921610,"y":15.521},{"x":1754824861478,"y":12.88},{"x":1754824801356,"y":17.513},{"x":1754824741224,"y":21.612},{"x":1754824681103,"y":26.008},{"x":1754824620950,"y":23.075},{"x":1754824560822,"y":26.026},{"x":1754824500760,"y":23.911},{"x":1754824440539,"y":13.991},{"x":1754824380385,"y":14.102},{"x":1754824320173,"y":14.191},{"x":1754824262940,"y":23.315},{"x":1754824202797,"y":26.404},{"x":1754824142665,"y":30.102},{"x":1754824082519,"y":25.543},{"x":1754824022396,"y":23.242},{"x":1754823962274,"y":28.735},{"x":1754823902155,"y":11.994},{"x":1754823842032,"y":10.541},{"x":1754823781914,"y":16.873},{"x":1754823721772,"y":12.582},{"x":1754823661653,"y":20.083},{"x":1754823601584,"y":12.38},{"x":1754823541368,"y":13.864},{"x":1754823481250,"y":20.131},{"x":1754823421119,"y":13.156},{"x":1754823360962,"y":10.146},{"x":1754823300882,"y":10.716},{"x":1754823240691,"y":13.501},{"x":1754823180587,"y":39.26},{"x":1754823120510,"y":37.018},{"x":1754823060339,"y":34.968},{"x":1754823000212,"y":34.144},{"x":1754822942942,"y":36.882},{"x":1754822882821,"y":16.331},{"x":1754822822677,"y":15.113},{"x":1754822762563,"y":10.999},{"x":1754822702431,"y":11.99},{"x":1754822642303,"y":31.265},{"x":1754822582177,"y":22.087},{"x":1754822522044,"y":21.842},{"x":1754822461913,"y":23.83},{"x":1754822401790,"y":28.177},{"x":1754822341651,"y":13.501},{"x":1754822281529,"y":14.504},{"x":1754822221406,"y":10.591},{"x":1754822161262,"y":37.477},{"x":1754822101139,"y":30.678},{"x":1754822041003,"y":22.814},{"x":1754821980881,"y":40.303},{"x":1754821920773,"y":32.557},{"x":1754821860633,"y":19.972},{"x":1754821800512,"y":17.602},{"x":1754821740422,"y":19.026},{"x":1754821680462,"y":17.528},{"x":1754821622946,"y":31.2},{"x":1754821562823,"y":37.248},{"x":1754821502702,"y":45.678},{"x":1754821442583,"y":28.188},{"x":1754821382455,"y":20.664},{"x":1754821322336,"y":9.235},{"x":1754821262212,"y":10.242},{"x":1754821202085,"y":11.988},{"x":1754821141953,"y":17.221},{"x":1754821081811,"y":12.864},{"x":1754821021666,"y":17.702},{"x":1754820961526,"y":16.429},{"x":1754820901413,"y":18.301},{"x":1754820841293,"y":14.86},{"x":1754820781161,"y":13.208},{"x":1754820720960,"y":16.588},{"x":1754820660799,"y":18.821},{"x":1754820600718,"y":16.198},{"x":1754820540509,"y":26.468},{"x":1754820480405,"y":39.799},{"x":1754820420274,"y":40.85},{"x":1754820362996,"y":38.137},{"x":1754820302879,"y":40.93},{"x":1754820242766,"y":30.138},{"x":1754820182686,"y":29.651},{"x":1754820122522,"y":16.177},{"x":1754820062401,"y":19.447},{"x":1754820002286,"y":23.67},{"x":1754819942140,"y":20.699},{"x":1754819882002,"y":19.145},{"x":1754819821854,"y":27.169},{"x":1754819761739,"y":23.801},{"x":1754819701615,"y":25.502},{"x":1754819641488,"y":23.915},{"x":1754819581362,"y":46.724},{"x":1754819521240,"y":16.519},{"x":1754819461124,"y":17.668},{"x":1754819400975,"y":17.24},{"x":1754819340849,"y":31.626},{"x":1754819280733,"y":24.578},{"x":1754819220601,"y":25.756},{"x":1754819160469,"y":25.806},{"x":1754819100373,"y":22.156},{"x":1754819043034,"y":14.816},{"x":1754818982898,"y":18.378},{"x":1754818922775,"y":22.442},{"x":1754818862654,"y":22.574},{"x":1754818802534,"y":23.728},{"x":1754818742409,"y":18.953},{"x":1754818682291,"y":30.068},{"x":1754818622168,"y":32.566},{"x":1754818562039,"y":28.798},{"x":1754818501901,"y":27.274},{"x":1754818441760,"y":29.702},{"x":1754818381636,"y":18.409},{"x":1754818321526,"y":13.736},{"x":1754818261390,"y":18.456},{"x":1754818201251,"y":19.171},{"x":1754818141059,"y":27.901},{"x":1754818080957,"y":20.242},{"x":1754818020807,"y":19.03},{"x":1754817960689,"y":17.825},{"x":1754817900655,"y":14.292},{"x":1754817840472,"y":19.134},{"x":1754817780270,"y":18.192},{"x":1754817722936,"y":33.859},{"x":1754817662811,"y":21.373},{"x":1754817602691,"y":31.718},{"x":1754817542567,"y":28.999},{"x":1754817482453,"y":31.492},{"x":1754817422338,"y":47.059},{"x":1754817362203,"y":41.43},{"x":1754817302083,"y":42.87},{"x":1754817241941,"y":26.062},{"x":1754817181794,"y":25.032},{"x":1754817121640,"y":11.874},{"x":1754817061493,"y":17.885},{"x":1754817001351,"y":16.363},{"x":1754816941236,"y":17.357},{"x":1754816881108,"y":21.127},{"x":1754816820962,"y":26.335},{"x":1754816760833,"y":28.728},{"x":1754816700735,"y":31.546},{"x":1754816640633,"y":27.725},{"x":1754816580476,"y":27.69},{"x":1754816520309,"y":29.48},{"x":1754816460171,"y":30.034},{"x":1754816402939,"y":14.79},{"x":1754816342804,"y":18.004},{"x":1754816282687,"y":21.797},{"x":1754816222565,"y":23.492},{"x":1754816162440,"y":22.739},{"x":1754816102321,"y":35.345},{"x":1754816042197,"y":35.574},{"x":1754815982067,"y":31.253},{"x":1754815921930,"y":36.752},{"x":1754815861834,"y":32.954},{"x":1754815801720,"y":22.159},{"x":1754815741549,"y":25.304},{"x":1754815681423,"y":16.069},{"x":1754815621289,"y":29.767},{"x":1754815561169,"y":45.846},{"x":1754815501071,"y":36.088},{"x":1754815440902,"y":42.055},{"x":1754815380774,"y":39.432},{"x":1754815320656,"y":41.128},{"x":1754815260533,"y":36.629},{"x":1754815200471,"y":47.759},{"x":1754815140248,"y":49.52},{"x":1754815082946,"y":32.071},{"x":1754815022798,"y":34.382},{"x":1754814962680,"y":31.147},{"x":1754814902543,"y":37.182},{"x":1754814842416,"y":32.65},{"x":1754814782300,"y":38.28},{"x":1754814722176,"y":37.5},{"x":1754814662118,"y":26.366},{"x":1754814601915,"y":25.444},{"x":1754814541791,"y":29.474},{"x":1754814481589,"y":23.36},{"x":1754814421466,"y":25.747},{"x":1754814361345,"y":31.47},{"x":1754814301168,"y":30.737},{"x":1754814241007,"y":31.396},{"x":1754814180884,"y":28.306},{"x":1754814120760,"y":30.331},{"x":1754814060662,"y":25.192},{"x":1754814000461,"y":30.716},{"x":1754813940536,"y":26.695},{"x":1754813880232,"y":47.02},{"x":1754813822930,"y":46.823},{"x":1754813762808,"y":44.252},{"x":1754813702714,"y":44.317},{"x":1754813642559,"y":44.748},{"x":1754813582406,"y":28.397},{"x":1754813522267,"y":26.31},{"x":1754813462117,"y":29.126},{"x":1754813401945,"y":27.601},{"x":1754813341808,"y":28.27},{"x":1754813281681,"y":27.527},{"x":1754813221555,"y":23.26},{"x":1754813161435,"y":26.827},{"x":1754813101307,"y":41.48},{"x":1754813041190,"y":35.269},{"x":1754812981062,"y":46.813},{"x":1754812920936,"y":39.49},{"x":1754812860806,"y":36.301},{"x":1754812800782,"y":40.49},{"x":1754812740510,"y":34.999},{"x":1754812680432,"y":25.71},{"x":1754812620306,"y":28.729},{"x":1754812560261,"y":30.301},{"x":1754812502904,"y":32.356},{"x":1754812442784,"y":27.863},{"x":1754812382685,"y":41.935},{"x":1754812322545,"y":40.591},{"x":1754812262419,"y":41.354},{"x":1754812202300,"y":44.748},{"x":1754812142179,"y":36.694},{"x":1754812082058,"y":41.516},{"x":1754812021926,"y":31.706},{"x":1754811961806,"y":23.396},{"x":1754811901679,"y":23.401},{"x":1754811841559,"y":21.678},{"x":1754811781412,"y":36.757},{"x":1754811721294,"y":37.895},{"x":1754811661152,"y":37.739},{"x":1754811601064,"y":38.226},{"x":1754811540856,"y":37.72},{"x":1754811480693,"y":23.465},{"x":1754811420588,"y":30.038},{"x":1754811360489,"y":27.599},{"x":1754811300317,"y":28.379},{"x":1754811240159,"y":44.036},{"x":1754811182908,"y":33.557},{"x":1754811122792,"y":33.274},{"x":1754811062665,"y":27.167},{"x":1754811002545,"y":41.15},{"x":1754810942412,"y":30.878},{"x":1754810882288,"y":26.512},{"x":1754810822154,"y":26.638},{"x":1754810762031,"y":28.385},{"x":1754810701892,"y":30.012},{"x":1754810641762,"y":26.905},{"x":1754810581637,"y":24.558},{"x":1754810521531,"y":26.294},{"x":1754810461383,"y":30.167},{"x":1754810401263,"y":27.701},{"x":1754810341120,"y":30.856},{"x":1754810280987,"y":29.186},{"x":1754810220876,"y":32.452},{"x":1754810160780,"y":27.419},{"x":1754810100659,"y":27.058},{"x":1754810040551,"y":29.467},{"x":1754809980383,"y":29.885},{"x":1754809920165,"y":29.743},{"x":1754809862905,"y":28.739},{"x":1754809802767,"y":28.228},{"x":1754809742629,"y":36.143},{"x":1754809682517,"y":51.08},{"x":1754809622390,"y":50.354},{"x":1754809562248,"y":51.356},{"x":1754809502105,"y":49.482},{"x":1754809441968,"y":59.298},{"x":1754809381841,"y":29.886},{"x":1754809321709,"y":29.039},{"x":1754809261589,"y":25.068},{"x":1754809201539,"y":29.892},{"x":1754809141293,"y":31.2},{"x":1754809081173,"y":29.632},{"x":1754809021044,"y":25.277},{"x":1754808960913,"y":24.607},{"x":1754808900782,"y":26.038},{"x":1754808840656,"y":39.446},{"x":1754808780568,"y":39.066},{"x":1754808720446,"y":34.976},{"x":1754808660355,"y":36.146},{"x":1754808600160,"y":34.925},{"x":1754808542927,"y":38.623},{"x":1754808482807,"y":25.338},{"x":1754808422684,"y":25.013},{"x":1754808362565,"y":26.446},{"x":1754808302435,"y":29.128},{"x":1754808242337,"y":30.168},{"x":1754808182192,"y":26.76},{"x":1754808122096,"y":25.255},{"x":1754808061937,"y":35.862},{"x":1754808001800,"y":35.626},{"x":1754807941667,"y":45.461},{"x":1754807881538,"y":45.952},{"x":1754807821412,"y":35.508},{"x":1754807761287,"y":28.812},{"x":1754807701161,"y":28.939},{"x":1754807640995,"y":30.292},{"x":1754807580868,"y":30.83},{"x":1754807520755,"y":29.22},{"x":1754807460623,"y":29.345},{"x":1754807400550,"y":40.068},{"x":1754807340341,"y":36.132},{"x":1754807282957,"y":39.45},{"x":1754807222839,"y":40.651},{"x":1754807162695,"y":38.594},{"x":1754807102584,"y":31.037},{"x":1754807042445,"y":33.984},{"x":1754806982328,"y":30.098},{"x":1754806922209,"y":30.146},{"x":1754806862027,"y":30.188},{"x":1754806801896,"y":33.164},{"x":1754806741769,"y":30.16},{"x":1754806681645,"y":28.685},{"x":1754806621519,"y":27.378},{"x":1754806561405,"y":31.91},{"x":1754806501289,"y":32.063},{"x":1754806441140,"y":45.806},{"x":1754806380996,"y":31.327},{"x":1754806320832,"y":34.16},{"x":1754806260692,"y":32.341},{"x":1754806200551,"y":40.967},{"x":1754806140393,"y":40.201},{"x":1754806080271,"y":23.34},{"x":1754806022967,"y":23.305},{"x":1754805962858,"y":25.478},{"x":1754805902721,"y":32.207},{"x":1754805842592,"y":29.738},{"x":1754805782465,"y":31.404},{"x":1754805722337,"y":27.284},{"x":1754805662221,"y":25.02},{"x":1754805602154,"y":35.008},{"x":1754805541927,"y":47.416},{"x":1754805481799,"y":52.354},{"x":1754805421671,"y":46.434},{"x":1754805361548,"y":47.63},{"x":1754805301429,"y":33.425},{"x":1754805241309,"y":28.53},{"x":1754805181192,"y":31.943},{"x":1754805121063,"y":29.15},{"x":1754805060927,"y":29.426},{"x":1754805000816,"y":28.304},{"x":1754804940685,"y":27.568},{"x":1754804880651,"y":30.7},{"x":1754804820449,"y":29.778},{"x":1754804760296,"y":27.118},{"x":1754804703004,"y":37.136},{"x":1754804642875,"y":37.069},{"x":1754804582751,"y":40.06},{"x":1754804522631,"y":47.107},{"x":1754804462510,"y":36.955},{"x":1754804402377,"y":30.828},{"x":1754804342256,"y":28.986},{"x":1754804282133,"y":27.821},{"x":1754804221993,"y":24.181},{"x":1754804161867,"y":23.848},{"x":1754804101747,"y":23.527},{"x":1754804041630,"y":35.521},{"x":1754803981513,"y":37.242},{"x":1754803921379,"y":38.899},{"x":1754803861257,"y":41.623},{"x":1754803801168,"y":39.12},{"x":1754803740971,"y":28.201},{"x":1754803680852,"y":26.497},{"x":1754803620729,"y":24.859},{"x":1754803560628,"y":25.334},{"x":1754803500499,"y":24.626},{"x":1754803440386,"y":24.788},{"x":1754803380260,"y":24.95},{"x":1754803322999,"y":36.101},{"x":1754803262838,"y":47.63},{"x":1754803202709,"y":49.536},{"x":1754803142596,"y":44.688},{"x":1754803082422,"y":41.212},{"x":1754803022296,"y":28.207},{"x":1754802962162,"y":25.392},{"x":1754802902040,"y":29.711},{"x":1754802841905,"y":25.585},{"x":1754802781780,"y":25.877},{"x":1754802721599,"y":27.624},{"x":1754802661445,"y":26.772},{"x":1754802601304,"y":25.298},{"x":1754802541171,"y":30.59},{"x":1754802481033,"y":33.254},{"x":1754802420889,"y":33.973},{"x":1754802360782,"y":30.26},{"x":1754802300669,"y":28.079},{"x":1754802240648,"y":31.042},{"x":1754802180325,"y":26.616},{"x":1754802120248,"y":26.813},{"x":1754802062910,"y":30.896},{"x":1754802002890,"y":29.237},{"x":1754801942607,"y":35.953},{"x":1754801882477,"y":29.816},{"x":1754801822353,"y":29.929},{"x":1754801762237,"y":26.966},{"x":1754801702118,"y":38.773},{"x":1754801641980,"y":49.838},{"x":1754801581861,"y":48.785},{"x":1754801521734,"y":46.856},{"x":1754801461609,"y":47.269},{"x":1754801401494,"y":37.366},{"x":1754801341372,"y":26.953},{"x":1754801281248,"y":33.13},{"x":1754801221120,"y":30.997},{"x":1754801160968,"y":33.803},{"x":1754801100865,"y":42.246},{"x":1754801040730,"y":56.016},{"x":1754800980576,"y":55.384},{"x":1754800920439,"y":49.656},{"x":1754800860278,"y":48.878},{"x":1754800802976,"y":49.559},{"x":1754800742854,"y":46.406},{"x":1754800682734,"y":36.671},{"x":1754800622617,"y":31.572},{"x":1754800562476,"y":32.48},{"x":1754800502354,"y":32.802},{"x":1754800442233,"y":32.102},{"x":1754800382102,"y":30.788},{"x":1754800321964,"y":33.595},{"x":1754800261846,"y":26.922},{"x":1754800201803,"y":27.086},{"x":1754800141601,"y":27.902},{"x":1754800081495,"y":28.806},{"x":1754800021360,"y":31.169},{"x":1754799961242,"y":30.611},{"x":1754799901120,"y":32.683},{"x":1754799840961,"y":29.795},{"x":1754799780841,"y":32.725},{"x":1754799720724,"y":29.159},{"x":1754799660611,"y":34.981},{"x":1754799600511,"y":42.199},{"x":1754799540309,"y":39.613},{"x":1754799483021,"y":39.548},{"x":1754799422883,"y":40.188},{"x":1754799362755,"y":44.813},{"x":1754799302639,"y":30.895},{"x":1754799242504,"y":32.299},{"x":1754799182337,"y":29.406},{"x":1754799122237,"y":29.498},{"x":1754799062018,"y":49.256},{"x":1754799001888,"y":31.096},{"x":1754798941762,"y":31.736},{"x":1754798881633,"y":31.022},{"x":1754798821501,"y":30.738},{"x":1754798761376,"y":27.57},{"x":1754798701252,"y":27.062},{"x":1754798641122,"y":27.374},{"x":1754798580976,"y":30.134},{"x":1754798520871,"y":31.346},{"x":1754798460680,"y":31.603},{"x":1754798400568,"y":33.707},{"x":1754798340414,"y":28.549},{"x":1754798280255,"y":28.758},{"x":1754798220049,"y":28.968},{"x":1754798162887,"y":28.398},{"x":1754798102761,"y":26.532},{"x":1754798042665,"y":36.205},{"x":1754797982519,"y":38.897},{"x":1754797922401,"y":39.803},{"x":1754797862270,"y":36.328},{"x":1754797802154,"y":33.076},{"x":1754797742009,"y":32.316},{"x":1754797681884,"y":33.175},{"x":1754797621740,"y":30.029},{"x":1754797561617,"y":28.376},{"x":1754797501495,"y":26.872},{"x":1754797441364,"y":29.737},{"x":1754797381247,"y":33.485},{"x":1754797321124,"y":30.452},{"x":1754797260967,"y":31.255},{"x":1754797200855,"y":29.43},{"x":1754797140703,"y":33.21},{"x":1754797080600,"y":35.191},{"x":1754797020469,"y":29.67},{"x":1754796960416,"y":29.83},{"x":1754796902965,"y":28.525},{"x":1754796842836,"y":28.486},{"x":1754796782713,"y":32.712},{"x":1754796722586,"y":31.6},{"x":1754796662456,"y":29.369},{"x":1754796602358,"y":31.05},{"x":1754796542212,"y":32.514},{"x":1754796482081,"y":33.244},{"x":1754796421934,"y":35.436},{"x":1754796361812,"y":31.427},{"x":1754796301691,"y":28.288},{"x":1754796241563,"y":30.112},{"x":1754796181449,"y":29.966},{"x":1754796121333,"y":33.505},{"x":1754796061212,"y":29.586},{"x":1754796001098,"y":34.454},{"x":1754795940932,"y":30.817},{"x":1754795880826,"y":28.945},{"x":1754795820739,"y":28.955},{"x":1754795760571,"y":28.23},{"x":1754795700448,"y":26.393},{"x":1754795640256,"y":27.882},{"x":1754795580141,"y":27.576},{"x":1754795522905,"y":26.041},{"x":1754795462751,"y":29.947},{"x":1754795402627,"y":31.561},{"x":1754795342503,"y":32.328},{"x":1754795282384,"y":33.413},{"x":1754795222268,"y":32.686},{"x":1754795162137,"y":37.151},{"x":1754795101999,"y":30.203},{"x":1754795041873,"y":28.158},{"x":1754794982542,"y":38.371},{"x":1754794922409,"y":37.446},{"x":1754794862225,"y":38.628},{"x":1754794802435,"y":38.064},{"x":1754794742250,"y":40.598},{"x":1754794682125,"y":29.126},{"x":1754794621989,"y":29.123},{"x":1754794561867,"y":31.459},{"x":1754794501740,"y":36.548},{"x":1754794441623,"y":29.268},{"x":1754794381503,"y":28.026},{"x":1754794321380,"y":28.838},{"x":1754794261256,"y":26.932},{"x":1754794201129,"y":27.984},{"x":1754794140988,"y":27.635},{"x":1754794080863,"y":35.938},{"x":1754794020736,"y":34.0},{"x":1754793960639,"y":36.308},{"x":1754793900691,"y":34.217},{"x":1754793840331,"y":35.942},{"x":1754793780077,"y":29.214},{"x":1754793722913,"y":26.564},{"x":1754793662786,"y":26.968},{"x":1754793602663,"y":30.044},{"x":1754793542542,"y":32.318},{"x":1754793482409,"y":43.657},{"x":1754793422289,"y":32.293},{"x":1754793362166,"y":31.31},{"x":1754793302042,"y":30.629},{"x":1754793241911,"y":29.902},{"x":1754793181796,"y":27.305},{"x":1754793121689,"y":27.322},{"x":1754793061558,"y":28.207},{"x":1754793001487,"y":30.374},{"x":1754792941307,"y":27.383},{"x":1754792881154,"y":31.375},{"x":1754792821013,"y":29.93},{"x":1754792760883,"y":34.062},{"x":1754792700805,"y":33.929},{"x":1754792640644,"y":32.466},{"x":1754792580551,"y":35.324},{"x":1754792520327,"y":27.233},{"x":1754792462969,"y":26.893},{"x":1754792402847,"y":27.425},{"x":1754792342714,"y":27.83},{"x":1754792282598,"y":30.062},{"x":1754792222477,"y":26.315},{"x":1754792162351,"y":29.401},{"x":1754792102231,"y":31.974},{"x":1754792042108,"y":34.319},{"x":1754791981971,"y":35.225},{"x":1754791921819,"y":38.356},{"x":1754791861660,"y":33.622},{"x":1754791801522,"y":30.162},{"x":1754791741395,"y":40.36},{"x":1754791681269,"y":37.034},{"x":1754791621142,"y":41.521},{"x":1754791560970,"y":37.303},{"x":1754791500868,"y":40.237},{"x":1754791440722,"y":31.844},{"x":1754791380598,"y":31.745},{"x":1754791320538,"y":31.073},{"x":1754791260393,"y":31.33},{"x":1754791200326,"y":33.364},{"x":1754791142932,"y":32.388},{"x":1754791082808,"y":31.81},{"x":1754791022687,"y":29.708},{"x":1754790962557,"y":35.036},{"x":1754790902429,"y":27.796},{"x":1754790842308,"y":32.77},{"x":1754790782186,"y":33.72},{"x":1754790722068,"y":35.521},{"x":1754790661924,"y":36.994},{"x":1754790601803,"y":32.998},{"x":1754790541690,"y":31.148},{"x":1754790481558,"y":26.786},{"x":1754790421453,"y":27.403},{"x":1754790361296,"y":28.834},{"x":1754790301201,"y":28.616},{"x":1754790241019,"y":27.434},{"x":1754790180895,"y":34.648},{"x":1754790120772,"y":33.331},{"x":1754790060657,"y":32.886},{"x":1754790000637,"y":37.421},{"x":1754789940417,"y":34.264},{"x":1754789880321,"y":29.515},{"x":1754789820186,"y":28.002},{"x":1754789762917,"y":28.673},{"x":1754789702799,"y":32.268},{"x":1754789642668,"y":31.148},{"x":1754789582552,"y":28.79},{"x":1754789522435,"y":30.866},{"x":1754789462316,"y":33.004},{"x":1754789402183,"y":30.817},{"x":1754789342062,"y":31.789},{"x":1754789281930,"y":28.522},{"x":1754789221807,"y":27.114},{"x":1754789161692,"y":28.865},{"x":1754789101567,"y":28.638},{"x":1754789041440,"y":31.486},{"x":1754788981323,"y":27.433},{"x":1754788921198,"y":30.283},{"x":1754788861070,"y":33.074},{"x":1754788800970,"y":35.162},{"x":1754788740813,"y":38.695},{"x":1754788680687,"y":33.119},{"x":1754788620607,"y":30.662},{"x":1754788560478,"y":29.212},{"x":1754788500350,"y":28.746},{"x":1754788440224,"y":33.451},{"x":1754788382944,"y":30.092},{"x":1754788322792,"y":29.678},{"x":1754788262656,"y":32.299},{"x":1754788202508,"y":33.745},{"x":1754788142357,"y":34.045},{"x":1754788082228,"y":33.125},{"x":1754788022098,"y":35.018},{"x":1754787961950,"y":32.215},{"x":1754787901827,"y":31.253},{"x":1754787841706,"y":32.447},{"x":1754787781588,"y":30.872},{"x":1754787721465,"y":30.678},{"x":1754787661357,"y":31.001},{"x":1754787601283,"y":34.622},{"x":1754787541024,"y":33.756},{"x":1754787480900,"y":38.058},{"x":1754787420776,"y":36.92},{"x":1754787360668,"y":33.431},{"x":1754787300568,"y":34.531},{"x":1754787240437,"y":32.578},{"x":1754787180352,"y":36.85},{"x":1754787120020,"y":37.309},{"x":1754787062905,"y":42.364},{"x":1754787002782,"y":40.54},{"x":1754786942664,"y":45.205},{"x":1754786882537,"y":46.596},{"x":1754786822423,"y":44.434},{"x":1754786762304,"y":35.79},{"x":1754786702173,"y":34.65},{"x":1754786642040,"y":34.243},{"x":1754786581904,"y":38.281},{"x":1754786521777,"y":37.195},{"x":1754786461646,"y":39.232},{"x":1754786401529,"y":37.606},{"x":1754786341411,"y":38.16},{"x":1754786281292,"y":37.418},{"x":1754786221162,"y":35.528},{"x":1754786161021,"y":34.742},{"x":1754786100891,"y":28.95},{"x":1754786040764,"y":32.686},{"x":1754785980652,"y":33.594},{"x":1754785920575,"y":39.28},{"x":1754785860412,"y":35.0},{"x":1754785800336,"y":33.314},{"x":1754785740166,"y":34.925},{"x":1754785682898,"y":32.438},{"x":1754785622779,"y":36.116},{"x":1754785562654,"y":32.428},{"x":1754785502532,"y":33.204},{"x":1754785442399,"y":32.165},{"x":1754785382287,"y":33.359},{"x":1754785322147,"y":37.61},{"x":1754785262014,"y":32.39},{"x":1754785201855,"y":33.042},{"x":1754785141729,"y":32.207},{"x":1754785081605,"y":34.286},{"x":1754785021485,"y":33.69},{"x":1754784961357,"y":32.375},{"x":1754784901272,"y":31.829},{"x":1754784841108,"y":34.571},{"x":1754784780991,"y":44.324},{"x":1754784720874,"y":45.671},{"x":1754784660785,"y":50.161},{"x":1754784600649,"y":48.304},{"x":1754784540359,"y":44.684},{"x":1754784482983,"y":35.054},{"x":1754784422837,"y":37.974},{"x":1754784362710,"y":41.628},{"x":1754784302592,"y":34.338},{"x":1754784242469,"y":33.698},{"x":1754784182341,"y":30.29},{"x":1754784122213,"y":30.814},{"x":1754784062093,"y":31.848},{"x":1754784002034,"y":30.826},{"x":1754783941689,"y":34.162},{"x":1754783881572,"y":34.357},{"x":1754783821451,"y":36.312},{"x":1754783761326,"y":34.952},{"x":1754783701190,"y":32.496},{"x":1754783641062,"y":31.043},{"x":1754783580938,"y":29.348},{"x":1754783520806,"y":30.326},{"x":1754783460674,"y":33.083},{"x":1754783400621,"y":36.284},{"x":1754783340444,"y":32.098},{"x":1754783280314,"y":32.209},{"x":1754783222979,"y":31.925},{"x":1754783162856,"y":36.236},{"x":1754783102728,"y":35.858},{"x":1754783042608,"y":38.215},{"x":1754782982482,"y":31.919},{"x":1754782922362,"y":31.572},{"x":1754782862240,"y":30.992},{"x":1754782802124,"y":34.476},{"x":1754782741981,"y":36.367},{"x":1754782681855,"y":37.471},{"x":1754782621739,"y":34.717},{"x":1754782561625,"y":41.394},{"x":1754782501482,"y":39.34},{"x":1754782441356,"y":39.994},{"x":1754782381230,"y":41.437},{"x":1754782321097,"y":36.628},{"x":1754782260952,"y":35.61},{"x":1754782200864,"y":35.737},{"x":1754782140701,"y":36.643},{"x":1754782080643,"y":36.296},{"x":1754782020493,"y":36.065},{"x":1754781960490,"y":42.667},{"x":1754781900267,"y":42.172},{"x":1754781842925,"y":39.691},{"x":1754781782794,"y":42.83},{"x":1754781722692,"y":35.936},{"x":1754781662558,"y":31.308},{"x":1754781602432,"y":31.418},{"x":1754781542312,"y":32.262},{"x":1754781482090,"y":35.111},{"x":1754781421960,"y":33.826},{"x":1754781361835,"y":31.114},{"x":1754781301705,"y":37.648},{"x":1754781241586,"y":36.076},{"x":1754781181468,"y":41.452},{"x":1754781121310,"y":36.588},{"x":1754781061163,"y":37.44},{"x":1754781001010,"y":33.065},{"x":1754780940877,"y":30.768},{"x":1754780880760,"y":30.784},{"x":1754780820637,"y":30.9},{"x":1754780760528,"y":33.45},{"x":1754780700406,"y":33.986},{"x":1754780640292,"y":35.986},{"x":1754780582932,"y":36.686},{"x":1754780522814,"y":34.668},{"x":1754780462674,"y":34.01},{"x":1754780402567,"y":33.275},{"x":1754780342414,"y":31.098},{"x":1754780282288,"y":32.164},{"x":1754780222145,"y":30.706},{"x":1754780162017,"y":33.341},{"x":1754780101889,"y":30.836},{"x":1754780041746,"y":32.755},{"x":1754779981616,"y":33.57},{"x":1754779921483,"y":37.818},{"x":1754779861344,"y":34.61},{"x":1754779801188,"y":31.894},{"x":1754779741056,"y":32.724},{"x":1754779680914,"y":33.031},{"x":1754779620777,"y":36.383},{"x":1754779560661,"y":33.443},{"x":1754779500636,"y":33.563},{"x":1754779440429,"y":33.283},{"x":1754779380302,"y":35.783},{"x":1754779322981,"y":39.671},{"x":1754779262849,"y":36.602},{"x":1754779202732,"y":38.656},{"x":1754779142611,"y":37.256},{"x":1754779082490,"y":38.654},{"x":1754779022370,"y":57.475},{"x":1754778962240,"y":48.983},{"x":1754778902115,"y":31.363},{"x":1754778841937,"y":33.08},{"x":1754778781814,"y":37.474},{"x":1754778721686,"y":34.868},{"x":1754778661559,"y":33.08},{"x":1754778601447,"y":35.311},{"x":1754778541323,"y":39.148},{"x":1754778481193,"y":37.381},{"x":1754778421057,"y":34.93},{"x":1754778360905,"y":32.287},{"x":1754778300771,"y":34.667},{"x":1754778240642,"y":34.597},{"x":1754778180520,"y":31.865},{"x":1754778120588,"y":33.772},{"x":1754778060282,"y":31.754},{"x":1754778002967,"y":30.301},{"x":1754777942846,"y":30.773},{"x":1754777882728,"y":33.227},{"x":1754777822607,"y":34.38},{"x":1754777762475,"y":48.703},{"x":1754777702353,"y":40.927},{"x":1754777642244,"y":38.334},{"x":1754777582099,"y":37.276},{"x":1754777521930,"y":38.042},{"x":1754777461782,"y":36.829},{"x":1754777401636,"y":31.5},{"x":1754777341515,"y":29.677},{"x":1754777281383,"y":32.491},{"x":1754777221255,"y":33.163},{"x":1754777161133,"y":40.855},{"x":1754777101012,"y":36.038},{"x":1754777040881,"y":35.118},{"x":1754776980759,"y":34.632},{"x":1754776920654,"y":36.013},{"x":1754776860588,"y":37.162},{"x":1754776800416,"y":37.283},{"x":1754776740337,"y":32.542},{"x":1754776683003,"y":32.136},{"x":1754776622881,"y":32.398},{"x":1754776562757,"y":39.468},{"x":1754776502632,"y":35.45},{"x":1754776442515,"y":34.286},{"x":1754776382393,"y":37.862},{"x":1754776322258,"y":37.336},{"x":1754776262139,"y":38.5},{"x":1754776202012,"y":34.264},{"x":1754776141884,"y":31.784},{"x":1754776081773,"y":44.52},{"x":1754776021642,"y":29.239},{"x":1754775961519,"y":36.304},{"x":1754775901443,"y":31.676},{"x":1754775841257,"y":34.116},{"x":1754775781125,"y":36.844},{"x":1754775720986,"y":39.881},{"x":1754775660847,"y":40.283},{"x":1754775600834,"y":36.216},{"x":1754775540623,"y":33.029},{"x":1754775480528,"y":29.465},{"x":1754775420364,"y":30.509},{"x":1754775360126,"y":33.574},{"x":1754775302931,"y":29.627},{"x":1754775242810,"y":36.39},{"x":1754775182689,"y":40.114},{"x":1754775122568,"y":40.548},{"x":1754775062441,"y":34.66},{"x":1754775002338,"y":35.56},{"x":1754774942192,"y":36.514},{"x":1754774882069,"y":33.073},{"x":1754774821934,"y":40.585},{"x":1754774761801,"y":33.455},{"x":1754774701681,"y":31.916},{"x":1754774641551,"y":32.803},{"x":1754774581437,"y":47.363},{"x":1754774521306,"y":43.997},{"x":1754774461188,"y":40.063},{"x":1754774401057,"y":40.822},{"x":1754774340901,"y":48.527},{"x":1754774280780,"y":36.438},{"x":1754774220675,"y":51.521},{"x":1754774160525,"y":32.128},{"x":1754774100402,"y":46.968},{"x":1754774040239,"y":34.408},{"x":1754773982989,"y":34.423},{"x":1754773922849,"y":39.776},{"x":1754773862676,"y":36.475},{"x":1754773802533,"y":35.214},{"x":1754773742409,"y":51.397},{"x":1754773682292,"y":34.445},{"x":1754773622182,"y":40.213},{"x":1754773562053,"y":37.344},{"x":1754773501915,"y":35.728},{"x":1754773441783,"y":37.032},{"x":1754773381664,"y":31.556},{"x":1754773321525,"y":37.745},{"x":1754773261401,"y":35.856},{"x":1754773201393,"y":37.387},{"x":1754773141135,"y":34.996},{"x":1754773080927,"y":36.827},{"x":1754773020792,"y":37.67},{"x":1754772960698,"y":39.047},{"x":1754772900595,"y":29.454},{"x":1754772840437,"y":30.36},{"x":1754772780286,"y":30.674},{"x":1754772720230,"y":37.406},{"x":1754772662934,"y":35.012},{"x":1754772602810,"y":34.504},{"x":1754772542690,"y":36.935},{"x":1754772482606,"y":39.281},{"x":1754772422417,"y":43.854},{"x":1754772362295,"y":39.6},{"x":1754772302161,"y":37.213},{"x":1754772242006,"y":35.911},{"x":1754772181870,"y":36.04},{"x":1754772121758,"y":37.883},{"x":1754772061632,"y":30.378},{"x":1754772001507,"y":50.189},{"x":1754771941379,"y":34.476},{"x":1754771881264,"y":33.308},{"x":1754771821131,"y":40.072},{"x":1754771760996,"y":43.14},{"x":1754771700876,"y":33.143},{"x":1754771640747,"y":34.063},{"x":1754771580636,"y":32.663},{"x":1754771520604,"y":37.13},{"x":1754771460380,"y":32.214},{"x":1754771400337,"y":35.106},{"x":1754771343020,"y":38.398},{"x":1754771282895,"y":37.421},{"x":1754771222775,"y":40.415},{"x":1754771162660,"y":37.105},{"x":1754771102534,"y":33.946},{"x":1754771042412,"y":45.18},{"x":1754770982294,"y":45.895},{"x":1754770922177,"y":48.45},{"x":1754770862048,"y":44.641},{"x":1754770801922,"y":45.485},{"x":1754770741800,"y":35.114},{"x":1754770681677,"y":36.182},{"x":1754770621558,"y":39.497},{"x":1754770561449,"y":35.972},{"x":1754770501318,"y":35.83},{"x":1754770441204,"y":37.181},{"x":1754770381040,"y":34.531},{"x":1754770320885,"y":43.103},{"x":1754770260727,"y":32.528},{"x":1754770200612,"y":31.954},{"x":1754770140467,"y":31.573},{"x":1754770080343,"y":44.717},{"x":1754770020269,"y":47.227},{"x":1754769962909,"y":45.57},{"x":1754769902787,"y":46.81},{"x":1754769842654,"y":48.695},{"x":1754769782533,"y":34.662},{"x":1754769722409,"y":39.718},{"x":1754769662287,"y":36.432},{"x":1754769602188,"y":37.621},{"x":1754769541990,"y":41.346},{"x":1754769481866,"y":35.183},{"x":1754769421734,"y":44.363},{"x":1754769361612,"y":47.668},{"x":1754769301492,"y":61.79},{"x":1754769241361,"y":51.19},{"x":1754769181242,"y":62.878},{"x":1754769121109,"y":36.107},{"x":1754769060973,"y":30.022},{"x":1754769000864,"y":48.017},{"x":1754768940730,"y":39.163},{"x":1754768880704,"y":46.298},{"x":1754768820405,"y":46.877},{"x":1754768760302,"y":51.926},{"x":1754768702949,"y":48.973},{"x":1754768642831,"y":46.723},{"x":1754768582707,"y":37.404},{"x":1754768522576,"y":36.707},{"x":1754768462446,"y":55.831},{"x":1754768402323,"y":34.9},{"x":1754768342198,"y":35.855},{"x":1754768282080,"y":37.147},{"x":1754768221944,"y":49.379},{"x":1754768161825,"y":40.739},{"x":1754768101683,"y":38.165},{"x":1754768041558,"y":35.051},{"x":1754767981424,"y":49.723},{"x":1754767921285,"y":35.291},{"x":1754767861162,"y":47.212},{"x":1754767801055,"y":35.929},{"x":1754767740896,"y":31.962},{"x":1754767680765,"y":32.968},{"x":1754767620622,"y":33.775},{"x":1754767560535,"y":36.408},{"x":1754767500430,"y":36.964},{"x":1754767440330,"y":40.567},{"x":1754767382954,"y":40.254},{"x":1754767322837,"y":36.055},{"x":1754767262718,"y":43.896},{"x":1754767202594,"y":36.116},{"x":1754767142461,"y":33.162},{"x":1754767082338,"y":34.378},{"x":1754767022214,"y":40.469},{"x":1754766962099,"y":42.414},{"x":1754766901913,"y":38.372},{"x":1754766841787,"y":66.619},{"x":1754766781660,"y":58.862},{"x":1754766721491,"y":62.039},{"x":1754766661336,"y":58.681},{"x":1754766601194,"y":64.223},{"x":1754766541053,"y":47.701},{"x":1754766480910,"y":40.783},{"x":1754766420792,"y":36.089},{"x":1754766360656,"y":38.759},{"x":1754766300543,"y":33.169},{"x":1754766240435,"y":35.014},{"x":1754766180304,"y":45.206},{"x":1754766123005,"y":44.951},{"x":1754766062876,"y":40.408},{"x":1754766002763,"y":50.921},{"x":1754765942642,"y":50.402},{"x":1754765882501,"y":54.682},{"x":1754765822378,"y":48.422},{"x":1754765762252,"y":48.778},{"x":1754765702129,"y":33.258},{"x":1754765641988,"y":36.236},{"x":1754765581858,"y":40.117},{"x":1754765521736,"y":36.204},{"x":1754765461596,"y":40.933},{"x":1754765401464,"y":43.406},{"x":1754765341337,"y":56.598},{"x":1754765281219,"y":50.462},{"x":1754765221065,"y":45.608},{"x":1754765160929,"y":51.977},{"x":1754765100874,"y":39.578},{"x":1754765040695,"y":33.666},{"x":1754764980557,"y":33.503},{"x":1754764920398,"y":35.635},{"x":1754764860241,"y":35.33},{"x":1754764802993,"y":39.055},{"x":1754764742869,"y":47.479},{"x":1754764682678,"y":49.86},{"x":1754764622551,"y":53.716},{"x":1754764562435,"y":47.716},{"x":1754764502313,"y":44.23},{"x":1754764442180,"y":35.807},{"x":1754764382059,"y":34.567},{"x":1754764321923,"y":32.755},{"x":1754764261794,"y":34.502},{"x":1754764201670,"y":35.165},{"x":1754764141531,"y":36.986},{"x":1754764081414,"y":38.848},{"x":1754764021285,"y":36.575},{"x":1754763961161,"y":35.818},{"x":1754763901031,"y":33.516},{"x":1754763840908,"y":37.625},{"x":1754763780781,"y":35.792},{"x":1754763720663,"y":34.568},{"x":1754763660518,"y":34.969},{"x":1754763600432,"y":33.916},{"x":1754763540235,"y":29.021},{"x":1754763482971,"y":35.419},{"x":1754763422851,"y":37.868},{"x":1754763362725,"y":34.634},{"x":1754763302591,"y":37.547},{"x":1754763242462,"y":32.54},{"x":1754763182334,"y":31.535},{"x":1754763122184,"y":31.957},{"x":1754763062031,"y":52.444},{"x":1754763001880,"y":51.416},{"x":1754762941743,"y":51.584},{"x":1754762881616,"y":54.904},{"x":1754762821491,"y":53.021},{"x":1754762761368,"y":35.045},{"x":1754762701256,"y":33.937},{"x":1754762641126,"y":32.206},{"x":1754762580986,"y":32.986},{"x":1754762520851,"y":33.146},{"x":1754762460743,"y":39.69},{"x":1754762400684,"y":33.029},{"x":1754762340512,"y":32.026},{"x":1754762280384,"y":42.576},{"x":1754762220201,"y":43.942},{"x":1754762162968,"y":50.312},{"x":1754762102831,"y":46.19},{"x":1754762042709,"y":43.766},{"x":1754761982575,"y":33.262},{"x":1754761922449,"y":37.966},{"x":1754761862327,"y":38.911},{"x":1754761802195,"y":35.73},{"x":1754761742074,"y":38.1},{"x":1754761681942,"y":48.145},{"x":1754761621817,"y":47.774},{"x":1754761561687,"y":53.023},{"x":1754761501581,"y":49.8},{"x":1754761441444,"y":51.722},{"x":1754761381328,"y":40.032},{"x":1754761321190,"y":37.012},{"x":1754761261056,"y":48.097},{"x":1754761200948,"y":34.936},{"x":1754761140784,"y":42.947},{"x":1754761080669,"y":37.927},{"x":1754761020563,"y":49.048},{"x":1754760960538,"y":55.684},{"x":1754760900280,"y":48.254},{"x":1754760842936,"y":43.196},{"x":1754760782828,"y":38.453},{"x":1754760722684,"y":29.67},{"x":1754760662562,"y":38.032},{"x":1754760602435,"y":31.232},{"x":1754760542308,"y":47.563},{"x":1754760482129,"y":59.872},{"x":1754760422004,"y":61.039},{"x":1754760361876,"y":37.315},{"x":1754760301740,"y":44.778},{"x":1754760241622,"y":35.429},{"x":1754760181499,"y":30.887},{"x":1754760121377,"y":28.135},{"x":1754760061242,"y":34.925},{"x":1754760001124,"y":31.262},{"x":1754759940954,"y":29.111},{"x":1754759880821,"y":28.949},{"x":1754759820731,"y":31.98},{"x":1754759760585,"y":49.03},{"x":1754759700518,"y":48.155},{"x":1754759640210,"y":42.193},{"x":1754759582929,"y":50.074},{"x":1754759522798,"y":49.307},{"x":1754759462650,"y":49.55},{"x":1754759402508,"y":63.905},{"x":1754759342385,"y":37.498},{"x":1754759282261,"y":30.07},{"x":1754759222136,"y":27.474},{"x":1754759161986,"y":31.438},{"x":1754759101863,"y":32.117},{"x":1754759041755,"y":40.552},{"x":1754758981614,"y":38.598},{"x":1754758921493,"y":30.252},{"x":1754758861396,"y":39.571},{"x":1754758801362,"y":39.786},{"x":1754758741103,"y":32.087},{"x":1754758681022,"y":32.78},{"x":1754758620873,"y":34.936},{"x":1754758560785,"y":24.17},{"x":1754758500790,"y":27.487},{"x":1754758440487,"y":26.933},{"x":1754758380293,"y":28.165},{"x":1754758322936,"y":37.391},{"x":1754758262810,"y":37.388},{"x":1754758202718,"y":39.845},{"x":1754758142567,"y":36.985},{"x":1754758082445,"y":38.084},{"x":1754758022324,"y":28.483},{"x":1754757962185,"y":29.338},{"x":1754757902061,"y":33.418},{"x":1754757841921,"y":29.672},{"x":1754757781802,"y":29.444},{"x":1754757721675,"y":28.547},{"x":1754757661557,"y":32.988},{"x":1754757601419,"y":27.566},{"x":1754757541299,"y":27.672},{"x":1754757481175,"y":30.928},{"x":1754757421047,"y":28.98},{"x":1754757360906,"y":41.93},{"x":1754757300808,"y":26.357},{"x":1754757240654,"y":35.18},{"x":1754757180550,"y":26.137},{"x":1754757120443,"y":21.774},{"x":1754757060300,"y":28.722},{"x":1754757000170,"y":28.763},{"x":1754756942909,"y":27.701},{"x":1754756882769,"y":24.08},{"x":1754756822637,"y":23.064},{"x":1754756762504,"y":25.812},{"x":1754756702380,"y":34.966},{"x":1754756642255,"y":48.96},{"x":1754756582128,"y":47.13},{"x":1754756521999,"y":44.59},{"x":1754756461870,"y":47.742},{"x":1754756401749,"y":29.372},{"x":1754756341630,"y":26.537},{"x":1754756281447,"y":29.886},{"x":1754756221327,"y":30.632},{"x":1754756161204,"y":38.489},{"x":1754756101079,"y":37.766},{"x":1754756040925,"y":32.962},{"x":1754755980787,"y":37.714},{"x":1754755920662,"y":37.98},{"x":1754755860517,"y":37.852},{"x":1754755800471,"y":25.352},{"x":1754755740151,"y":19.348},{"x":1754755682940,"y":29.435},{"x":1754755622773,"y":20.528},{"x":1754755562686,"y":21.534},{"x":1754755502529,"y":19.757},{"x":1754755442404,"y":31.352},{"x":1754755382286,"y":32.0},{"x":1754755322150,"y":35.357},{"x":1754755261998,"y":29.43},{"x":1754755201753,"y":27.778},{"x":1754755141510,"y":16.404},{"x":1754755081380,"y":22.392},{"x":1754755021249,"y":16.864},{"x":1754754961126,"y":28.916},{"x":1754754900999,"y":30.718},{"x":1754754840844,"y":30.786},{"x":1754754780727,"y":33.427},{"x":1754754720652,"y":35.44},{"x":1754754660501,"y":22.906},{"x":1754754600380,"y":19.991},{"x":1754754540293,"y":17.214},{"x":1754754482953,"y":18.192},{"x":1754754422834,"y":20.24},{"x":1754754362712,"y":17.34},{"x":1754754302596,"y":21.706},{"x":1754754242471,"y":17.329},{"x":1754754182345,"y":23.773},{"x":1754754122228,"y":23.342},{"x":1754754062106,"y":22.606},{"x":1754754001969,"y":27.299},{"x":1754753941840,"y":20.138},{"x":1754753881719,"y":18.296},{"x":1754753821596,"y":17.407},{"x":1754753761443,"y":12.786},{"x":1754753701321,"y":20.41},{"x":1754753641203,"y":16.284},{"x":1754753581062,"y":15.828},{"x":1754753520935,"y":16.076},{"x":1754753460817,"y":23.735},{"x":1754753400692,"y":29.862},{"x":1754753340551,"y":40.525},{"x":1754753280434,"y":43.278},{"x":1754753220383,"y":40.991},{"x":1754753163009,"y":34.692},{"x":1754753102889,"y":31.866},{"x":1754753042766,"y":11.962},{"x":1754752982660,"y":25.459},{"x":1754752922517,"y":12.002},{"x":1754752862395,"y":15.151},{"x":1754752802270,"y":39.174},{"x":1754752742141,"y":40.328},{"x":1754752681998,"y":37.678},{"x":1754752621889,"y":38.78},{"x":1754752561754,"y":31.519},{"x":1754752501638,"y":21.626},{"x":1754752441500,"y":24.006},{"x":1754752381371,"y":19.217},{"x":1754752321167,"y":14.024},{"x":1754752261001,"y":15.127},{"x":1754752200869,"y":22.204},{"x":1754752140734,"y":27.244},{"x":1754752080628,"y":27.527},{"x":1754752020592,"y":35.189},{"x":1754751960381,"y":33.343},{"x":1754751900285,"y":28.264},{"x":1754751842972,"y":16.344},{"x":1754751782855,"y":42.688},{"x":1754751722717,"y":25.339},{"x":1754751662592,"y":24.652},{"x":1754751602471,"y":28.907},{"x":1754751542333,"y":29.204},{"x":1754751482203,"y":31.618},{"x":1754751422082,"y":22.673},{"x":1754751361942,"y":25.28},{"x":1754751301801,"y":24.739},{"x":1754751241675,"y":22.606},{"x":1754751181552,"y":18.895},{"x":1754751121425,"y":23.395},{"x":1754751061301,"y":21.461},{"x":1754751001164,"y":22.909},{"x":1754750941035,"y":22.561},{"x":1754750880906,"y":46.402},{"x":1754750820783,"y":50.182},{"x":1754750760667,"y":45.329},{"x":1754750700578,"y":45.199},{"x":1754750640441,"y":38.915},{"x":1754750580215,"y":17.982},{"x":1754750522942,"y":22.553},{"x":1754750462822,"y":27.69},{"x":1754750402704,"y":28.4},{"x":1754750342584,"y":41.06},{"x":1754750282466,"y":37.866},{"x":1754750222340,"y":37.216},{"x":1754750162217,"y":39.931},{"x":1754750102094,"y":30.553},{"x":1754750041964,"y":38.029},{"x":1754749981838,"y":20.921},{"x":1754749921730,"y":22.698},{"x":1754749861606,"y":21.544},{"x":1754749801502,"y":30.953},{"x":1754749741344,"y":19.488},{"x":1754749681226,"y":21.806},{"x":1754749621107,"y":22.982},{"x":1754749560950,"y":26.479},{"x":1754749500830,"y":28.975},{"x":1754749440705,"y":22.784},{"x":1754749380579,"y":33.242},{"x":1754749320488,"y":21.654},{"x":1754749260311,"y":22.26},{"x":1754749200256,"y":25.091},{"x":1754749142944,"y":20.947},{"x":1754749082724,"y":28.554},{"x":1754749022606,"y":19.764},{"x":1754748962474,"y":13.523},{"x":1754748902349,"y":10.95},{"x":1754748842231,"y":12.448},{"x":1754748782085,"y":24.178},{"x":1754748721903,"y":21.115},{"x":1754748661777,"y":41.665},{"x":1754748601574,"y":32.838},{"x":1754748541451,"y":41.345},{"x":1754748481346,"y":28.02},{"x":1754748421189,"y":27.223},{"x":1754748361027,"y":15.408},{"x":1754748300890,"y":16.235},{"x":1754748240752,"y":19.706},{"x":1754748180610,"y":20.548},{"x":1754748120506,"y":10.673},{"x":1754748060331,"y":15.133},{"x":1754748003050,"y":44.364},{"x":1754747942887,"y":23.657},{"x":1754747882775,"y":22.019},{"x":1754747822640,"y":31.746},{"x":1754747762537,"y":24.464},{"x":1754747702394,"y":19.595},{"x":1754747642260,"y":17.22},{"x":1754747582143,"y":18.018},{"x":1754747521994,"y":17.431},{"x":1754747461877,"y":25.318},{"x":1754747401780,"y":20.081},{"x":1754747341622,"y":26.207},{"x":1754747281491,"y":20.192},{"x":1754747221369,"y":22.687},{"x":1754747161242,"y":11.446},{"x":1754747101270,"y":12.805},{"x":1754747040991,"y":46.793},{"x":1754746980863,"y":17.977},{"x":1754746920737,"y":18.57},{"x":1754746860612,"y":25.08},{"x":1754746800529,"y":22.765},{"x":1754746740385,"y":20.909},{"x":1754746680219,"y":19.552},{"x":1754746622909,"y":20.772},{"x":1754746562785,"y":8.78},{"x":1754746502654,"y":14.441},{"x":1754746442529,"y":12.067},{"x":1754746382405,"y":13.427},{"x":1754746322280,"y":12.798},{"x":1754746262160,"y":15.816},{"x":1754746202029,"y":14.392},{"x":1754746141897,"y":9.925},{"x":1754746081772,"y":10.547},{"x":1754746021648,"y":7.886},{"x":1754745961514,"y":9.342},{"x":1754745901389,"y":9.953},{"x":1754745841264,"y":10.697},{"x":1754745781130,"y":13.566},{"x":1754745720984,"y":9.054},{"x":1754745660851,"y":25.127},{"x":1754745600798,"y":9.526},{"x":1754745540588,"y":21.853},{"x":1754745480468,"y":34.092},{"x":1754745420369,"y":31.967},{"x":1754745360267,"y":27.702},{"x":1754745302942,"y":26.539},{"x":1754745242794,"y":18.504},{"x":1754745182657,"y":6.606},{"x":1754745122484,"y":16.354},{"x":1754745062327,"y":8.053},{"x":1754745002180,"y":14.077},{"x":1754744942051,"y":12.334},{"x":1754744881886,"y":21.622},{"x":1754744821764,"y":22.748},{"x":1754744761633,"y":17.281},{"x":1754744701507,"y":17.813},{"x":1754744641382,"y":16.921},{"x":1754744581257,"y":11.54},{"x":1754744521124,"y":17.462},{"x":1754744460990,"y":8.47},{"x":1754744401038,"y":7.357},{"x":1754744340713,"y":21.662},{"x":1754744280599,"y":24.31},{"x":1754744220518,"y":24.666},{"x":1754744160365,"y":28.355},{"x":1754744100209,"y":17.681},{"x":1754744042929,"y":8.429},{"x":1754743982800,"y":4.481},{"x":1754743922678,"y":9.874},{"x":1754743862558,"y":5.111},{"x":1754743802424,"y":10.721},{"x":1754743742293,"y":7.534},{"x":1754743682173,"y":9.322},{"x":1754743622050,"y":13.72},{"x":1754743561919,"y":13.004},{"x":1754743501800,"y":9.535},{"x":1754743441667,"y":8.861},{"x":1754743381537,"y":9.977},{"x":1754743321419,"y":9.954},{"x":1754743261283,"y":11.022},{"x":1754743201146,"y":31.045},{"x":1754743140995,"y":32.468},{"x":1754743080855,"y":27.742},{"x":1754743020740,"y":30.371},{"x":1754742960615,"y":26.021},{"x":1754742900450,"y":19.504},{"x":1754742840408,"y":8.136},{"x":1754742780260,"y":25.52},{"x":1754742722940,"y":12.061},{"x":1754742662817,"y":29.772},{"x":1754742602686,"y":19.85},{"x":1754742542568,"y":32.216},{"x":1754742482389,"y":30.763},{"x":1754742422266,"y":37.126},{"x":1754742362145,"y":16.734},{"x":1754742302018,"y":18.299},{"x":1754742241889,"y":15.964},{"x":1754742181769,"y":12.622},{"x":1754742121645,"y":25.24},{"x":1754742061502,"y":19.288},{"x":1754742001381,"y":24.4},{"x":1754741941259,"y":26.731},{"x":1754741881065,"y":18.42},{"x":1754741820946,"y":6.487},{"x":1754741760808,"y":14.867},{"x":1754741700703,"y":29.179},{"x":1754741640497,"y":29.198},{"x":1754741580330,"y":19.188},{"x":1754741520336,"y":9.42},{"x":1754741462909,"y":29.3},{"x":1754741402774,"y":13.744},{"x":1754741342639,"y":14.279},{"x":1754741282518,"y":16.796},{"x":1754741222391,"y":18.032},{"x":1754741162264,"y":18.646},{"x":1754741102145,"y":15.059},{"x":1754741042024,"y":37.979},{"x":1754740981880,"y":51.499},{"x":1754740921756,"y":51.079},{"x":1754740861635,"y":50.238},{"x":1754740801676,"y":39.946},{"x":1754740741374,"y":16.398},{"x":1754740681254,"y":32.892},{"x":1754740621115,"y":23.711},{"x":1754740560969,"y":12.052},{"x":1754740500845,"y":21.09},{"x":1754740440717,"y":9.637},{"x":1754740380605,"y":42.132},{"x":1754740320520,"y":28.243},{"x":1754740260335,"y":28.511},{"x":1754740200303,"y":22.474},{"x":1754740142951,"y":23.507},{"x":1754740082807,"y":4.397},{"x":1754740022683,"y":30.762},{"x":1754739962568,"y":36.872},{"x":1754739902437,"y":20.279},{"x":1754739842322,"y":20.411},{"x":1754739782174,"y":31.972},{"x":1754739722057,"y":38.023},{"x":1754739661909,"y":38.579},{"x":1754739601790,"y":32.312},{"x":1754739541666,"y":9.644},{"x":1754739481556,"y":20.48},{"x":1754739421410,"y":8.851},{"x":1754739361285,"y":23.581},{"x":1754739301159,"y":23.162},{"x":1754739241029,"y":28.594},{"x":1754739180897,"y":21.965},{"x":1754739120782,"y":26.155},{"x":1754739060631,"y":34.559},{"x":1754739000579,"y":35.263},{"x":1754738940426,"y":22.702},{"x":1754738880290,"y":13.775},{"x":1754738823008,"y":7.942},{"x":1754738762888,"y":10.076},{"x":1754738702771,"y":9.685},{"x":1754738642639,"y":18.586},{"x":1754738582525,"y":15.449},{"x":1754738522403,"y":11.633},{"x":1754738462273,"y":16.127},{"x":1754738402153,"y":9.157},{"x":1754738342022,"y":18.126},{"x":1754738281893,"y":6.44},{"x":1754738221772,"y":15.986},{"x":1754738161644,"y":22.118},{"x":1754738101532,"y":12.366},{"x":1754738041418,"y":22.685},{"x":1754737981256,"y":18.443},{"x":1754737921103,"y":37.939},{"x":1754737860956,"y":26.358},{"x":1754737800806,"y":32.885},{"x":1754737740680,"y":32.808},{"x":1754737680635,"y":38.17},{"x":1754737620408,"y":27.085},{"x":1754737560348,"y":27.125},{"x":1754737502981,"y":9.958},{"x":1754737442866,"y":8.802},{"x":1754737382737,"y":6.194},{"x":1754737322604,"y":6.559},{"x":1754737262464,"y":17.255},{"x":1754737202386,"y":23.515},{"x":1754737142201,"y":17.474},{"x":1754737082073,"y":31.205},{"x":1754737021928,"y":17.615},{"x":1754736961808,"y":17.286},{"x":1754736901683,"y":13.856},{"x":1754736841558,"y":32.881},{"x":1754736781429,"y":5.452},{"x":1754736721311,"y":2.362},{"x":1754736661187,"y":12.722},{"x":1754736601057,"y":14.321},{"x":1754736540909,"y":11.022},{"x":1754736480790,"y":26.89},{"x":1754736420662,"y":28.786},{"x":1754736360550,"y":28.417},{"x":1754736300489,"y":24.209},{"x":1754736240343,"y":22.171},{"x":1754736183011,"y":10.877},{"x":1754736122882,"y":11.027},{"x":1754736062752,"y":21.63},{"x":1754736002717,"y":18.448},{"x":1754735942516,"y":20.729},{"x":1754735882384,"y":17.474},{"x":1754735822262,"y":21.737},{"x":1754735762141,"y":15.316},{"x":1754735702016,"y":19.62},{"x":1754735641890,"y":16.447},{"x":1754735581762,"y":18.305},{"x":1754735521643,"y":8.987},{"x":1754735461518,"y":4.819},{"x":1754735401411,"y":7.279},{"x":1754735341248,"y":4.104},{"x":1754735281126,"y":12.56},{"x":1754735220999,"y":9.733},{"x":1754735160864,"y":11.483},{"x":1754735100734,"y":11.132},{"x":1754735040630,"y":7.312},{"x":1754734980458,"y":9.803},{"x":1754734920362,"y":20.126},{"x":1754734860206,"y":13.384},{"x":1754734802909,"y":13.219},{"x":1754734742785,"y":10.748},{"x":1754734682669,"y":29.431},{"x":1754734622543,"y":23.902},{"x":1754734562411,"y":53.52},{"x":1754734502271,"y":42.679},{"x":1754734442156,"y":35.24},{"x":1754734381989,"y":23.452},{"x":1754734321875,"y":18.978},{"x":1754734261684,"y":13.813},{"x":1754734201545,"y":9.833},{"x":1754734141407,"y":9.328},{"x":1754734081251,"y":9.358},{"x":1754734021105,"y":12.577},{"x":1754733960971,"y":14.862},{"x":1754733900859,"y":30.282},{"x":1754733840727,"y":30.652},{"x":1754733780605,"y":24.22},{"x":1754733720517,"y":31.71},{"x":1754733660384,"y":31.349},{"x":1754733600425,"y":12.497},{"x":1754733542946,"y":16.308},{"x":1754733482824,"y":31.55},{"x":1754733422695,"y":15.068},{"x":1754733362578,"y":32.503},{"x":1754733302461,"y":33.577},{"x":1754733242331,"y":29.13},{"x":1754733182207,"y":32.178},{"x":1754733122053,"y":28.871},{"x":1754733061919,"y":32.744},{"x":1754733001793,"y":21.691},{"x":1754732941660,"y":16.139},{"x":1754732881534,"y":18.042},{"x":1754732821413,"y":15.664},{"x":1754732761279,"y":22.4},{"x":1754732701160,"y":18.958},{"x":1754732641012,"y":20.714},{"x":1754732580889,"y":16.825},{"x":1754732520766,"y":23.324},{"x":1754732460649,"y":12.518},{"x":1754732400605,"y":13.814},{"x":1754732340400,"y":10.439},{"x":1754732280279,"y":13.993},{"x":1754732222942,"y":15.371},{"x":1754732162823,"y":15.102},{"x":1754732102690,"y":11.557},{"x":1754732042567,"y":14.712},{"x":1754731982443,"y":17.632},{"x":1754731922318,"y":11.039},{"x":1754731862208,"y":11.459},{"x":1754731802067,"y":13.784},{"x":1754731741937,"y":16.01},{"x":1754731681802,"y":10.183},{"x":1754731621674,"y":14.478},{"x":1754731561551,"y":14.167},{"x":1754731501428,"y":18.95},{"x":1754731441303,"y":18.233},{"x":1754731381183,"y":21.952},{"x":1754731321059,"y":23.142},{"x":1754731260920,"y":22.907},{"x":1754731200869,"y":37.819},{"x":1754731140659,"y":33.39},{"x":1754731080587,"y":49.043},{"x":1754731020514,"y":49.474},{"x":1754730960262,"y":46.277},{"x":1754730902994,"y":11.149},{"x":1754730842888,"y":16.819},{"x":1754730782721,"y":22.058},{"x":1754730722578,"y":19.319},{"x":1754730662463,"y":25.039},{"x":1754730602273,"y":36.006},{"x":1754730542148,"y":19.523},{"x":1754730481996,"y":24.246},{"x":1754730421869,"y":34.235},{"x":1754730361739,"y":24.38},{"x":1754730301603,"y":32.328},{"x":1754730241476,"y":36.775},{"x":1754730181337,"y":19.133},{"x":1754730121213,"y":26.982},{"x":1754730061084,"y":23.249},{"x":1754730001123,"y":22.494},{"x":1754729940784,"y":18.752},{"x":1754729880604,"y":17.62},{"x":1754729820523,"y":18.296},{"x":1754729760358,"y":15.337},{"x":1754729700268,"y":13.439},{"x":1754729642908,"y":14.585},{"x":1754729582783,"y":31.54},{"x":1754729522662,"y":30.421},{"x":1754729462523,"y":29.432},{"x":1754729402398,"y":31.127},{"x":1754729342269,"y":51.391},{"x":1754729282153,"y":30.9},{"x":1754729222024,"y":26.192},{"x":1754729161892,"y":23.011},{"x":1754729101783,"y":28.355},{"x":1754729041652,"y":22.378},{"x":1754728981513,"y":28.25},{"x":1754728921384,"y":57.01},{"x":1754728861264,"y":32.843},{"x":1754728801157,"y":32.598},{"x":1754728740983,"y":33.12},{"x":1754728680862,"y":19.153},{"x":1754728620731,"y":15.494},{"x":1754728560680,"y":16.346},{"x":1754728500566,"y":16.248},{"x":1754728440342,"y":24.726},{"x":1754728380160,"y":26.706},{"x":1754728322928,"y":19.387},{"x":1754728262802,"y":39.973},{"x":1754728202676,"y":31.421},{"x":1754728142550,"y":30.252},{"x":1754728082435,"y":36.06},{"x":1754728022312,"y":24.878},{"x":1754727962170,"y":15.883},{"x":1754727902023,"y":16.772},{"x":1754727841895,"y":22.662},{"x":1754727781767,"y":27.467},{"x":1754727721645,"y":18.422},{"x":1754727661524,"y":30.005},{"x":1754727601392,"y":28.394},{"x":1754727541266,"y":32.892},{"x":1754727481119,"y":33.814},{"x":1754727420982,"y":34.454},{"x":1754727360851,"y":25.835},{"x":1754727300833,"y":20.718},{"x":1754727240590,"y":20.399},{"x":1754727180517,"y":28.662},{"x":1754727120265,"y":26.614},{"x":1754727062984,"y":24.997},{"x":1754727002827,"y":32.963},{"x":1754726942700,"y":35.419},{"x":1754726882568,"y":27.628},{"x":1754726822444,"y":22.882},{"x":1754726762317,"y":25.003},{"x":1754726702194,"y":24.325},{"x":1754726642074,"y":21.587},{"x":1754726581929,"y":18.318},{"x":1754726521799,"y":19.231},{"x":1754726461680,"y":28.078},{"x":1754726401635,"y":31.088},{"x":1754726341444,"y":41.512},{"x":1754726281288,"y":42.378},{"x":1754726221153,"y":46.583},{"x":1754726161015,"y":40.39},{"x":1754726100890,"y":40.544},{"x":1754726040742,"y":24.437},{"x":1754725980636,"y":24.206},{"x":1754725920535,"y":26.294},{"x":1754725860388,"y":36.642},{"x":1754725800263,"y":48.151},{"x":1754725742968,"y":45.628},{"x":1754725682819,"y":44.579},{"x":1754725622690,"y":47.916},{"x":1754725562567,"y":44.87},{"x":1754725502486,"y":37.637},{"x":1754725442319,"y":30.534},{"x":1754725382197,"y":36.401},{"x":1754725322070,"y":32.737},{"x":1754725261921,"y":28.756},{"x":1754725201804,"y":25.085},{"x":1754725141681,"y":30.365},{"x":1754725081557,"y":29.369},{"x":1754725021428,"y":28.74},{"x":1754724961308,"y":25.55},{"x":1754724901178,"y":37.734},{"x":1754724841043,"y":23.214},{"x":1754724780895,"y":23.591},{"x":1754724720795,"y":19.433},{"x":1754724660634,"y":20.191},{"x":1754724600596,"y":33.584},{"x":1754724540417,"y":38.167},{"x":1754724480284,"y":36.043},{"x":1754724422974,"y":34.805},{"x":1754724362854,"y":32.112},{"x":1754724302744,"y":22.54},{"x":1754724242623,"y":21.593},{"x":1754724182487,"y":21.192},{"x":1754724122361,"y":28.37},{"x":1754724062240,"y":24.133},{"x":1754724002115,"y":28.316},{"x":1754723941965,"y":27.06},{"x":1754723881846,"y":27.912},{"x":1754723821714,"y":26.582},{"x":1754723761588,"y":25.273},{"x":1754723701464,"y":25.289},{"x":1754723641340,"y":24.635},{"x":1754723581203,"y":28.908},{"x":1754723521074,"y":25.158},{"x":1754723460914,"y":25.072},{"x":1754723400818,"y":30.131},{"x":1754723340655,"y":30.602},{"x":1754723280511,"y":34.451},{"x":1754723220363,"y":29.237},{"x":1754723162998,"y":27.022},{"x":1754723102876,"y":29.97},{"x":1754723042754,"y":28.381},{"x":1754722982632,"y":34.969},{"x":1754722922477,"y":27.09},{"x":1754722862379,"y":26.477},{"x":1754722802250,"y":32.424},{"x":1754722742096,"y":27.097},{"x":1754722681950,"y":26.75},{"x":1754722621823,"y":30.088},{"x":1754722561691,"y":29.359},{"x":1754722501589,"y":31.216},{"x":1754722441425,"y":22.854},{"x":1754722381308,"y":24.744},{"x":1754722321173,"y":25.511},{"x":1754722261023,"y":31.307},{"x":1754722200901,"y":22.786},{"x":1754722140760,"y":30.066},{"x":1754722080670,"y":28.025},{"x":1754722020580,"y":38.032},{"x":1754721960392,"y":40.385},{"x":1754721900305,"y":38.046},{"x":1754721843021,"y":38.932},{"x":1754721782912,"y":31.804},{"x":1754721722767,"y":28.405},{"x":1754721662640,"y":27.96},{"x":1754721602518,"y":26.933},{"x":1754721542413,"y":23.958},{"x":1754721482262,"y":28.396},{"x":1754721422150,"y":28.33},{"x":1754721361991,"y":30.42},{"x":1754721301871,"y":28.628},{"x":1754721241729,"y":29.89},{"x":1754721181615,"y":24.768},{"x":1754721121491,"y":22.495},{"x":1754721061374,"y":26.566},{"x":1754721001288,"y":26.014},{"x":1754720941091,"y":24.864},{"x":1754720880944,"y":23.633},{"x":1754720820827,"y":23.656},{"x":1754720760708,"y":41.512},{"x":1754720700621,"y":31.156},{"x":1754720640500,"y":48.976},{"x":1754720580375,"y":35.155},{"x":1754720520181,"y":49.711},{"x":1754720462853,"y":36.076},{"x":1754720402736,"y":40.259},{"x":1754720342611,"y":33.763},{"x":1754720282487,"y":33.056},{"x":1754720222372,"y":43.706},{"x":1754720162141,"y":28.393},{"x":1754720101982,"y":44.998},{"x":1754720041846,"y":41.315},{"x":1754719981700,"y":44.178},{"x":1754719921568,"y":31.922},{"x":1754719861394,"y":32.364},{"x":1754719801202,"y":30.245},{"x":1754719741072,"y":29.897},{"x":1754719680932,"y":28.7},{"x":1754719620831,"y":26.717},{"x":1754719560700,"y":26.846},{"x":1754719500614,"y":26.822},{"x":1754719440530,"y":26.052},{"x":1754719380276,"y":28.53},{"x":1754719320243,"y":26.892},{"x":1754719262961,"y":29.66},{"x":1754719202840,"y":25.102},{"x":1754719142680,"y":26.126},{"x":1754719082561,"y":24.62},{"x":1754719022432,"y":25.669},{"x":1754718962317,"y":31.5},{"x":1754718902186,"y":24.899},{"x":1754718842064,"y":20.652},{"x":1754718781921,"y":21.62},{"x":1754718721801,"y":24.163},{"x":1754718661664,"y":28.757},{"x":1754718601509,"y":22.844},{"x":1754718541391,"y":23.3},{"x":1754718481273,"y":21.122},{"x":1754718421151,"y":22.807},{"x":1754718361010,"y":28.601},{"x":1754718300951,"y":25.561},{"x":1754718240732,"y":25.669},{"x":1754718180588,"y":23.459},{"x":1754718120541,"y":24.839},{"x":1754718060324,"y":24.824},{"x":1754718000143,"y":25.583},{"x":1754717942914,"y":27.722},{"x":1754717882792,"y":28.466},{"x":1754717822671,"y":28.103},{"x":1754717762549,"y":25.891},{"x":1754717702428,"y":25.772},{"x":1754717642303,"y":23.598},{"x":1754717582185,"y":23.89},{"x":1754717522062,"y":23.73},{"x":1754717461927,"y":24.788},{"x":1754717401816,"y":29.812},{"x":1754717341672,"y":27.433},{"x":1754717281549,"y":26.682},{"x":1754717221432,"y":28.568},{"x":1754717161307,"y":25.898},{"x":1754717101174,"y":34.214},{"x":1754717041054,"y":27.077},{"x":1754716980903,"y":25.63},{"x":1754716920776,"y":25.686},{"x":1754716860661,"y":23.682},{"x":1754716800617,"y":25.412},{"x":1754716740427,"y":21.11},{"x":1754716680273,"y":23.788},{"x":1754716623013,"y":24.935},{"x":1754716562886,"y":27.023},{"x":1754716502763,"y":24.541},{"x":1754716442636,"y":24.121},{"x":1754716382498,"y":25.451},{"x":1754716322357,"y":25.549},{"x":1754716262215,"y":25.918},{"x":1754716202066,"y":26.272},{"x":1754716141941,"y":26.238},{"x":1754716081768,"y":24.404},{"x":1754716021636,"y":23.61},{"x":1754715961514,"y":28.175},{"x":1754715901393,"y":25.8},{"x":1754715841266,"y":31.429},{"x":1754715781144,"y":26.762},{"x":1754715720968,"y":23.227},{"x":1754715660894,"y":28.778},{"x":1754715600990,"y":27.65},{"x":1754715540604,"y":29.668},{"x":1754715480448,"y":25.238},{"x":1754715420265,"y":26.737},{"x":1754715363018,"y":26.672},{"x":1754715302886,"y":25.81},{"x":1754715242768,"y":29.35},{"x":1754715182638,"y":27.767},{"x":1754715122539,"y":28.589},{"x":1754715062396,"y":28.747},{"x":1754715002263,"y":27.696},{"x":1754714942136,"y":30.499},{"x":1754714881996,"y":27.692},{"x":1754714821874,"y":25.472},{"x":1754714761751,"y":26.005},{"x":1754714701631,"y":32.184},{"x":1754714641503,"y":35.945},{"x":1754714581374,"y":31.788},{"x":1754714521254,"y":40.031},{"x":1754714461119,"y":63.232},{"x":1754714400975,"y":48.985},{"x":1754714340830,"y":47.701},{"x":1754714280716,"y":43.528},{"x":1754714220583,"y":37.391},{"x":1754714160478,"y":24.617},{"x":1754714100308,"y":27.534},{"x":1754714040287,"y":26.648},{"x":1754713982888,"y":27.505},{"x":1754713922766,"y":28.987},{"x":1754713862656,"y":26.924},{"x":1754713802532,"y":26.766},{"x":1754713742397,"y":26.813},{"x":1754713682270,"y":27.204},{"x":1754713622149,"y":27.025},{"x":1754713562020,"y":25.535},{"x":1754713501891,"y":27.914},{"x":1754713441764,"y":27.889},{"x":1754713381655,"y":31.806},{"x":1754713321530,"y":26.038},{"x":1754713261410,"y":29.116},{"x":1754713201285,"y":26.741},{"x":1754713141165,"y":28.116},{"x":1754713081015,"y":31.987},{"x":1754713020874,"y":27.01},{"x":1754712960751,"y":24.852},{"x":1754712900589,"y":25.459},{"x":1754712840502,"y":28.27},{"x":1754712780310,"y":33.926},{"x":1754712720241,"y":29.936},{"x":1754712662883,"y":32.468},{"x":1754712602739,"y":31.176},{"x":1754712542621,"y":29.044},{"x":1754712482496,"y":42.842},{"x":1754712422374,"y":37.394},{"x":1754712362258,"y":37.613},{"x":1754712302143,"y":39.516},{"x":1754712242024,"y":37.004},{"x":1754712181889,"y":37.514},{"x":1754712121772,"y":32.672},{"x":1754712061658,"y":29.387},{"x":1754712001530,"y":32.941},{"x":1754711941305,"y":30.806},{"x":1754711881168,"y":35.434},{"x":1754711821053,"y":28.328},{"x":1754711760905,"y":27.864},{"x":1754711700783,"y":28.0},{"x":1754711640652,"y":28.812},{"x":1754711580551,"y":34.663},{"x":1754711520475,"y":33.034},{"x":1754711460293,"y":28.864},{"x":1754711402978,"y":28.99},{"x":1754711342864,"y":26.69},{"x":1754711282732,"y":27.077},{"x":1754711222593,"y":51.889},{"x":1754711162474,"y":50.263},{"x":1754711102329,"y":49.958},{"x":1754711042217,"y":49.312},{"x":1754710982088,"y":49.955},{"x":1754710921948,"y":30.362},{"x":1754710861819,"y":33.323},{"x":1754710801698,"y":33.144},{"x":1754710741573,"y":31.442},{"x":1754710681446,"y":28.694},{"x":1754710621306,"y":28.758},{"x":1754710561191,"y":53.992},{"x":1754710501067,"y":53.479},{"x":1754710440915,"y":54.518},{"x":1754710380822,"y":52.542},{"x":1754710320711,"y":49.62},{"x":1754710260570,"y":24.887},{"x":1754710200550,"y":24.859},{"x":1754710140345,"y":24.528},{"x":1754710080332,"y":31.938},{"x":1754710022892,"y":31.132},{"x":1754709962745,"y":29.23},{"x":1754709902649,"y":30.6},{"x":1754709842508,"y":28.656},{"x":1754709782401,"y":33.383},{"x":1754709722260,"y":28.391},{"x":1754709662135,"y":30.93},{"x":1754709601994,"y":26.432},{"x":1754709541871,"y":25.865},{"x":1754709481737,"y":26.849},{"x":1754709421625,"y":26.221},{"x":1754709361483,"y":33.563},{"x":1754709301364,"y":32.863},{"x":1754709241221,"y":31.453},{"x":1754709181037,"y":31.152},{"x":1754709120902,"y":29.92},{"x":1754709060732,"y":29.808},{"x":1754709000663,"y":26.01},{"x":1754708940491,"y":25.627},{"x":1754708880331,"y":27.047},{"x":1754708820025,"y":26.497},{"x":1754708762904,"y":30.277},{"x":1754708702780,"y":27.835},{"x":1754708642654,"y":27.401},{"x":1754708582756,"y":30.62},{"x":1754708522612,"y":30.348},{"x":1754708462472,"y":34.009},{"x":1754708402927,"y":29.75},{"x":1754708342785,"y":30.011},{"x":1754708282665,"y":29.37},{"x":1754708222539,"y":29.135},{"x":1754708162419,"y":32.332},{"x":1754708102289,"y":32.734},{"x":1754708042167,"y":33.738},{"x":1754707982043,"y":31.336},{"x":1754707921914,"y":31.244},{"x":1754707861791,"y":27.956},{"x":1754707801675,"y":28.681},{"x":1754707741555,"y":27.814},{"x":1754707681440,"y":26.484},{"x":1754707621320,"y":26.43},{"x":1754707561203,"y":27.482},{"x":1754707501105,"y":41.214},{"x":1754707440945,"y":51.191},{"x":1754707380835,"y":51.838},{"x":1754707320717,"y":48.668},{"x":1754707260581,"y":46.777},{"x":1754707200552,"y":36.934},{"x":1754707140335,"y":27.532},{"x":1754707080092,"y":26.44},{"x":1754707022924,"y":29.34},{"x":1754706962794,"y":27.932},{"x":1754706902670,"y":27.539},{"x":1754706842536,"y":31.062},{"x":1754706782384,"y":41.604},{"x":1754706722279,"y":54.3},{"x":1754706662136,"y":52.039},{"x":1754706602004,"y":54.941},{"x":1754706541866,"y":50.166},{"x":1754706481742,"y":37.694},{"x":1754706421624,"y":25.884},{"x":1754706361502,"y":28.459},{"x":1754706301384,"y":47.701},{"x":1754706241271,"y":42.311},{"x":1754706181144,"y":42.085},{"x":1754706121005,"y":41.388},{"x":1754706060900,"y":42.404},{"x":1754706000820,"y":33.763},{"x":1754705940608,"y":29.132},{"x":1754705880479,"y":27.853},{"x":1754705820311,"y":28.422},{"x":1754705760245,"y":28.414},{"x":1754705702950,"y":32.813},{"x":1754705642832,"y":28.976},{"x":1754705582744,"y":28.748},{"x":1754705522572,"y":26.542},{"x":1754705462422,"y":27.47},{"x":1754705402206,"y":30.128},{"x":1754705342083,"y":39.683},{"x":1754705281944,"y":35.975},{"x":1754705221819,"y":36.476},{"x":1754705161693,"y":38.657},{"x":1754705101567,"y":36.307},{"x":1754705041433,"y":38.083},{"x":1754704981314,"y":37.0},{"x":1754704921191,"y":36.694},{"x":1754704861060,"y":38.003},{"x":1754704801077,"y":32.551},{"x":1754704740770,"y":29.069},{"x":1754704680652,"y":29.416},{"x":1754704620570,"y":27.146},{"x":1754704560453,"y":27.643},{"x":1754704500346,"y":31.136},{"x":1754704442995,"y":35.351},{"x":1754704382875,"y":31.159},{"x":1754704322752,"y":32.772},{"x":1754704262625,"y":30.385},{"x":1754704202509,"y":33.158},{"x":1754704142381,"y":36.432},{"x":1754704081997,"y":34.055},{"x":1754704021868,"y":31.27},{"x":1754703961745,"y":29.29},{"x":1754703901621,"y":51.576},{"x":1754703841500,"y":56.052},{"x":1754703781367,"y":51.464},{"x":1754703721246,"y":51.535},{"x":1754703661121,"y":52.922},{"x":1754703600981,"y":33.094},{"x":1754703540828,"y":35.178},{"x":1754703480689,"y":30.618},{"x":1754703420568,"y":30.589},{"x":1754703360525,"y":26.594},{"x":1754703300321,"y":28.246},{"x":1754703240222,"y":32.258},{"x":1754703182919,"y":28.252},{"x":1754703122786,"y":29.55},{"x":1754703062668,"y":29.533},{"x":1754703002550,"y":31.744},{"x":1754702942425,"y":36.995},{"x":1754702882305,"y":32.022},{"x":1754702822169,"y":31.711},{"x":1754702762045,"y":28.128},{"x":1754702701906,"y":36.773},{"x":1754702641781,"y":51.707},{"x":1754702581660,"y":48.359},{"x":1754702521531,"y":49.006},{"x":1754702461422,"y":49.662},{"x":1754702401287,"y":41.194},{"x":1754702341157,"y":33.455},{"x":1754702281016,"y":30.512},{"x":1754702220889,"y":30.244},{"x":1754702160764,"y":29.126},{"x":1754702100703,"y":27.536},{"x":1754702040470,"y":27.61},{"x":1754701980408,"y":26.992},{"x":1754701922951,"y":26.551},{"x":1754701862835,"y":26.744},{"x":1754701802659,"y":27.955},{"x":1754701742538,"y":34.558},{"x":1754701682422,"y":33.816},{"x":1754701622302,"y":31.866},{"x":1754701562178,"y":31.255},{"x":1754701502056,"y":30.774},{"x":1754701441929,"y":27.89},{"x":1754701381806,"y":27.686},{"x":1754701321687,"y":30.232},{"x":1754701261576,"y":30.03},{"x":1754701201503,"y":28.51},{"x":1754701141276,"y":28.571},{"x":1754701081158,"y":28.423},{"x":1754701021015,"y":31.314},{"x":1754700960881,"y":43.783},{"x":1754700900767,"y":39.761},{"x":1754700840570,"y":40.405},{"x":1754700780505,"y":43.592},{"x":1754700720568,"y":36.51},{"x":1754700660667,"y":29.383},{"x":1754700602961,"y":30.946},{"x":1754700542836,"y":30.413},{"x":1754700482717,"y":35.936},{"x":1754700422591,"y":31.136},{"x":1754700362477,"y":31.849},{"x":1754700302343,"y":29.03},{"x":1754700242222,"y":31.057},{"x":1754700182097,"y":34.824},{"x":1754700121964,"y":32.315},{"x":1754700061837,"y":40.606},{"x":1754700001717,"y":50.522},{"x":1754699941594,"y":50.862},{"x":1754699881474,"y":53.154},{"x":1754699821358,"y":48.09},{"x":1754699761224,"y":48.604},{"x":1754699701100,"y":34.584},{"x":1754699640966,"y":33.313},{"x":1754699580847,"y":29.453},{"x":1754699520732,"y":33.281},{"x":1754699460609,"y":30.412},{"x":1754699400506,"y":30.964},{"x":1754699340363,"y":29.93},{"x":1754699280265,"y":26.932},{"x":1754699222951,"y":33.149},{"x":1754699162830,"y":32.162},{"x":1754699102699,"y":31.139},{"x":1754699042571,"y":31.219},{"x":1754698982456,"y":32.035},{"x":1754698922328,"y":45.013},{"x":1754698862204,"y":36.89},{"x":1754698802075,"y":36.414},{"x":1754698741937,"y":37.656},{"x":1754698681813,"y":36.816},{"x":1754698621691,"y":30.571},{"x":1754698561556,"y":32.981},{"x":1754698501430,"y":31.751},{"x":1754698441299,"y":31.558},{"x":1754698381185,"y":29.846},{"x":1754698321004,"y":29.412},{"x":1754698260856,"y":28.672},{"x":1754698200762,"y":28.698},{"x":1754698140540,"y":27.396},{"x":1754698080489,"y":26.968},{"x":1754698020334,"y":28.411},{"x":1754697960193,"y":29.916},{"x":1754697902932,"y":30.288},{"x":1754697842801,"y":32.504},{"x":1754697782682,"y":31.991},{"x":1754697722553,"y":28.717},{"x":1754697662438,"y":27.628},{"x":1754697602398,"y":25.727},{"x":1754697542163,"y":25.884},{"x":1754697482044,"y":26.452},{"x":1754697421887,"y":29.458},{"x":1754697361773,"y":38.335},{"x":1754697301647,"y":40.992},{"x":1754697241523,"y":40.522},{"x":1754697181380,"y":40.681},{"x":1754697121252,"y":41.219},{"x":1754697061126,"y":29.845},{"x":1754697000978,"y":27.938},{"x":1754696940853,"y":26.557},{"x":1754696880732,"y":27.841},{"x":1754696820611,"y":28.369},{"x":1754696760512,"y":28.446},{"x":1754696700448,"y":32.426},{"x":1754696640230,"y":31.512},{"x":1754696582938,"y":33.532},{"x":1754696522817,"y":34.55},{"x":1754696462700,"y":37.519},{"x":1754696402566,"y":29.939},{"x":1754696342435,"y":30.82},{"x":1754696282304,"y":33.474},{"x":1754696222180,"y":34.253},{"x":1754696162054,"y":37.564},{"x":1754696101927,"y":36.924},{"x":1754696041788,"y":39.569},{"x":1754695981667,"y":38.524},{"x":1754695921535,"y":42.418},{"x":1754695861415,"y":34.172},{"x":1754695801298,"y":31.313},{"x":1754695741157,"y":29.534},{"x":1754695681013,"y":29.44},{"x":1754695620886,"y":28.903},{"x":1754695560780,"y":30.818},{"x":1754695500653,"y":29.083},{"x":1754695440565,"y":27.065},{"x":1754695380371,"y":28.279},{"x":1754695320151,"y":30.779},{"x":1754695262966,"y":27.49},{"x":1754695202837,"y":31.715},{"x":1754695142716,"y":27.906},{"x":1754695082591,"y":33.959},{"x":1754695022464,"y":43.656},{"x":1754694962329,"y":44.636},{"x":1754694902207,"y":42.977},{"x":1754694842076,"y":42.742},{"x":1754694781937,"y":42.038},{"x":1754694721772,"y":40.828},{"x":1754694661639,"y":32.923},{"x":1754694601493,"y":32.593},{"x":1754694541354,"y":31.392},{"x":1754694481236,"y":34.406},{"x":1754694421107,"y":37.513},{"x":1754694360966,"y":32.708},{"x":1754694300844,"y":36.949},{"x":1754694240720,"y":36.154},{"x":1754694180611,"y":34.64},{"x":1754694120447,"y":41.356},{"x":1754694060275,"y":31.5},{"x":1754694002993,"y":27.014},{"x":1754693942860,"y":37.784},{"x":1754693882741,"y":37.408},{"x":1754693822617,"y":42.467},{"x":1754693762513,"y":37.111},{"x":1754693702376,"y":27.349},{"x":1754693642254,"y":38.581},{"x":1754693582127,"y":32.504},{"x":1754693521994,"y":32.731},{"x":1754693461869,"y":29.502},{"x":1754693401750,"y":26.36},{"x":1754693341621,"y":25.325},{"x":1754693281504,"y":28.178},{"x":1754693221379,"y":31.712},{"x":1754693161262,"y":32.08},{"x":1754693101147,"y":32.789},{"x":1754693040992,"y":32.18},{"x":1754692980863,"y":29.741},{"x":1754692920731,"y":32.236},{"x":1754692860624,"y":48.376},{"x":1754692800513,"y":47.183},{"x":1754692740366,"y":46.314},{"x":1754692680181,"y":59.788},{"x":1754692622930,"y":52.552},{"x":1754692562808,"y":37.943},{"x":1754692502681,"y":36.002},{"x":1754692442556,"y":37.177},{"x":1754692382437,"y":39.787},{"x":1754692322324,"y":34.188},{"x":1754692262196,"y":32.81},{"x":1754692202067,"y":33.856},{"x":1754692141935,"y":27.91},{"x":1754692081812,"y":32.002},{"x":1754692021685,"y":28.055},{"x":1754691961576,"y":29.801},{"x":1754691901449,"y":30.017},{"x":1754691841330,"y":32.149},{"x":1754691781217,"y":31.604},{"x":1754691721092,"y":46.456},{"x":1754691660943,"y":52.014},{"x":1754691600852,"y":44.585},{"x":1754691540669,"y":44.966},{"x":1754691480578,"y":31.654},{"x":1754691420420,"y":32.248},{"x":1754691360343,"y":28.736},{"x":1754691303019,"y":28.212},{"x":1754691242884,"y":32.635},{"x":1754691182756,"y":35.712},{"x":1754691122612,"y":34.626},{"x":1754691062466,"y":34.931},{"x":1754691002324,"y":35.028},{"x":1754690942201,"y":58.512},{"x":1754690882073,"y":54.174},{"x":1754690821945,"y":53.368},{"x":1754690761816,"y":53.486},{"x":1754690701685,"y":50.383},{"x":1754690641549,"y":29.314},{"x":1754690581415,"y":28.331},{"x":1754690521294,"y":30.895},{"x":1754690461174,"y":34.5},{"x":1754690401244,"y":52.45},{"x":1754690340915,"y":66.161},{"x":1754690280738,"y":59.689},{"x":1754690220624,"y":55.51},{"x":1754690160515,"y":59.812},{"x":1754690100423,"y":47.099},{"x":1754690040223,"y":30.758},{"x":1754689982929,"y":32.68},{"x":1754689922791,"y":36.65},{"x":1754689862667,"y":31.487},{"x":1754689802541,"y":36.698},{"x":1754689742423,"y":32.398},{"x":1754689682276,"y":32.028},{"x":1754689622157,"y":34.577},{"x":1754689562020,"y":41.573},{"x":1754689501899,"y":46.573},{"x":1754689441777,"y":36.863},{"x":1754689381663,"y":35.962},{"x":1754689321535,"y":33.862},{"x":1754689261419,"y":45.096},{"x":1754689201295,"y":45.355},{"x":1754689141162,"y":46.993},{"x":1754689081070,"y":49.346},{"x":1754689020909,"y":43.072},{"x":1754688960808,"y":37.319},{"x":1754688900772,"y":32.821},{"x":1754688840511,"y":33.523},{"x":1754688780401,"y":33.323},{"x":1754688720317,"y":36.085},{"x":1754688663020,"y":42.816},{"x":1754688602891,"y":36.858},{"x":1754688542772,"y":36.144},{"x":1754688482647,"y":32.849},{"x":1754688422525,"y":38.054},{"x":1754688362394,"y":30.648},{"x":1754688302272,"y":42.33},{"x":1754688242147,"y":45.847},{"x":1754688182008,"y":44.85},{"x":1754688121881,"y":51.438},{"x":1754688061765,"y":47.972},{"x":1754688001646,"y":39.058},{"x":1754687941525,"y":38.096},{"x":1754687881377,"y":35.317},{"x":1754687821279,"y":34.939},{"x":1754687761125,"y":39.438},{"x":1754687701007,"y":32.575},{"x":1754687640871,"y":33.468},{"x":1754687580737,"y":36.312},{"x":1754687520662,"y":34.526},{"x":1754687460469,"y":34.08},{"x":1754687400301,"y":32.888},{"x":1754687343001,"y":32.437},{"x":1754687282878,"y":32.414},{"x":1754687222759,"y":35.773},{"x":1754687162620,"y":45.914},{"x":1754687102521,"y":62.518},{"x":1754687042382,"y":61.457},{"x":1754686982262,"y":64.64},{"x":1754686922138,"y":63.672},{"x":1754686862021,"y":47.141},{"x":1754686801828,"y":34.165},{"x":1754686741636,"y":34.988},{"x":1754686681519,"y":32.734},{"x":1754686621400,"y":35.212},{"x":1754686561264,"y":52.788},{"x":1754686501138,"y":46.93},{"x":1754686440978,"y":50.812},{"x":1754686380863,"y":60.307},{"x":1754686320751,"y":50.014},{"x":1754686260620,"y":35.522},{"x":1754686200584,"y":34.483},{"x":1754686140356,"y":34.872},{"x":1754686080278,"y":54.229},{"x":1754686022987,"y":32.784},{"x":1754685962865,"y":33.209},{"x":1754685902744,"y":32.33},{"x":1754685842628,"y":32.594},{"x":1754685782512,"y":32.257},{"x":1754685722387,"y":32.047},{"x":1754685662266,"y":32.956},{"x":1754685602133,"y":35.293},{"x":1754685542003,"y":55.172},{"x":1754685481881,"y":33.845},{"x":1754685421753,"y":54.02},{"x":1754685361647,"y":35.526},{"x":1754685301507,"y":40.11},{"x":1754685241385,"y":37.608},{"x":1754685181264,"y":38.183},{"x":1754685121131,"y":36.552},{"x":1754685060991,"y":35.462},{"x":1754685000960,"y":34.861},{"x":1754684940723,"y":40.008},{"x":1754684880640,"y":35.06},{"x":1754684820575,"y":36.671},{"x":1754684760394,"y":37.452},{"x":1754684700288,"y":36.689},{"x":1754684642947,"y":48.636},{"x":1754684582829,"y":50.202},{"x":1754684522709,"y":49.322},{"x":1754684462589,"y":68.112},{"x":1754684402468,"y":51.526},{"x":1754684342342,"y":33.648},{"x":1754684282213,"y":58.201},{"x":1754684222084,"y":46.22},{"x":1754684161938,"y":42.27},{"x":1754684101816,"y":50.714},{"x":1754684041695,"y":35.798},{"x":1754683981596,"y":45.038},{"x":1754683921396,"y":35.018},{"x":1754683861241,"y":34.304},{"x":1754683801060,"y":38.321},{"x":1754683740918,"y":44.017},{"x":1754683680797,"y":50.79},{"x":1754683620667,"y":63.893},{"x":1754683560552,"y":49.008},{"x":1754683500483,"y":48.918},{"x":1754683440307,"y":40.512},{"x":1754683382992,"y":36.82},{"x":1754683322873,"y":35.862},{"x":1754683262743,"y":33.882},{"x":1754683202646,"y":35.785},{"x":1754683142486,"y":36.094},{"x":1754683082356,"y":31.235},{"x":1754683022240,"y":36.415},{"x":1754682962129,"y":37.22},{"x":1754682901947,"y":39.584},{"x":1754682841824,"y":36.786},{"x":1754682781693,"y":51.82},{"x":1754682721571,"y":51.966},{"x":1754682661426,"y":61.399},{"x":1754682601287,"y":56.616},{"x":1754682541164,"y":56.273},{"x":1754682481028,"y":44.501},{"x":1754682420893,"y":46.084},{"x":1754682360769,"y":55.588},{"x":1754682300716,"y":33.367},{"x":1754682240543,"y":34.652},{"x":1754682180436,"y":35.371},{"x":1754682120253,"y":56.845},{"x":1754682060176,"y":57.568},{"x":1754682002912,"y":58.429},{"x":1754681942791,"y":52.962},{"x":1754681882673,"y":68.852},{"x":1754681822551,"y":44.569},{"x":1754681762423,"y":49.75},{"x":1754681702298,"y":49.378},{"x":1754681642176,"y":47.881},{"x":1754681582053,"y":48.511},{"x":1754681521929,"y":51.728},{"x":1754681461798,"y":39.239},{"x":1754681401665,"y":42.758},{"x":1754681341545,"y":37.262},{"x":1754681281416,"y":36.002},{"x":1754681221294,"y":49.63},{"x":1754681161176,"y":30.39},{"x":1754681101042,"y":33.14},{"x":1754681040887,"y":34.082},{"x":1754680980764,"y":40.463},{"x":1754680920652,"y":50.539},{"x":1754680860533,"y":50.305},{"x":1754680800387,"y":48.247},{"x":1754680740268,"y":45.38},{"x":1754680682939,"y":46.991},{"x":1754680622808,"y":49.003},{"x":1754680562682,"y":45.778},{"x":1754680502552,"y":42.583},{"x":1754680442415,"y":39.788},{"x":1754680382291,"y":46.178},{"x":1754680322131,"y":49.812},{"x":1754680261967,"y":50.372},{"x":1754680201830,"y":49.529},{"x":1754680141718,"y":50.804},{"x":1754680081569,"y":39.068},{"x":1754680021466,"y":40.315},{"x":1754679961321,"y":35.774},{"x":1754679901218,"y":57.56},{"x":1754679841060,"y":39.844},{"x":1754679780931,"y":56.449},{"x":1754679720781,"y":43.576},{"x":1754679660676,"y":43.211},{"x":1754679600543,"y":33.491},{"x":1754679540455,"y":38.236},{"x":1754679480282,"y":34.303},{"x":1754679422981,"y":33.443},{"x":1754679362834,"y":38.242},{"x":1754679302710,"y":33.935},{"x":1754679242578,"y":40.12},{"x":1754679182452,"y":47.414},{"x":1754679122347,"y":39.815},{"x":1754679062213,"y":44.642},{"x":1754679002090,"y":46.219},{"x":1754678941948,"y":47.374},{"x":1754678881829,"y":50.038},{"x":1754678821701,"y":47.466},{"x":1754678761577,"y":48.683},{"x":1754678701444,"y":57.467},{"x":1754678641314,"y":31.346},{"x":1754678581201,"y":48.986},{"x":1754678521066,"y":49.266},{"x":1754678460923,"y":46.026},{"x":1754678400800,"y":47.01},{"x":1754678340669,"y":47.424},{"x":1754678280585,"y":32.168},{"x":1754678220456,"y":37.742},{"x":1754678160331,"y":47.825},{"x":1754678102985,"y":51.569},{"x":1754678042843,"y":46.895},{"x":1754677982735,"y":49.873},{"x":1754677922603,"y":44.582},{"x":1754677862492,"y":47.513},{"x":1754677802371,"y":44.456},{"x":1754677742237,"y":44.623},{"x":1754677682113,"y":33.144},{"x":1754677621982,"y":29.314},{"x":1754677561855,"y":33.538},{"x":1754677501724,"y":43.268},{"x":1754677441609,"y":43.847},{"x":1754677381480,"y":45.416},{"x":1754677321346,"y":46.64},{"x":1754677261228,"y":61.061},{"x":1754677201109,"y":35.734},{"x":1754677140960,"y":34.432},{"x":1754677080834,"y":62.033},{"x":1754677020731,"y":54.786},{"x":1754676960665,"y":41.197},{"x":1754676900538,"y":41.873},{"x":1754676840340,"y":47.407},{"x":1754676780139,"y":44.426},{"x":1754676722886,"y":37.093},{"x":1754676662716,"y":51.299},{"x":1754676602538,"y":47.629},{"x":1754676542409,"y":28.94},{"x":1754676482162,"y":31.418},{"x":1754676422030,"y":30.845},{"x":1754676361894,"y":49.124},{"x":1754676301768,"y":49.831},{"x":1754676241643,"y":51.358},{"x":1754676181519,"y":48.887},{"x":1754676121387,"y":50.108},{"x":1754676061276,"y":55.564},{"x":1754676001198,"y":53.257},{"x":1754675940972,"y":50.714},{"x":1754675880854,"y":49.514},{"x":1754675820727,"y":46.795},{"x":1754675760705,"y":30.184},{"x":1754675700517,"y":32.021},{"x":1754675640373,"y":29.06},{"x":1754675580251,"y":31.717},{"x":1754675522946,"y":30.94},{"x":1754675462825,"y":36.292},{"x":1754675402718,"y":52.475},{"x":1754675342570,"y":35.878},{"x":1754675282454,"y":38.356},{"x":1754675222326,"y":33.202},{"x":1754675162212,"y":36.098},{"x":1754675102069,"y":30.634},{"x":1754675041937,"y":43.576},{"x":1754674981792,"y":29.497},{"x":1754674921667,"y":32.816},{"x":1754674861549,"y":31.849},{"x":1754674801410,"y":32.261},{"x":1754674741285,"y":29.358},{"x":1754674681157,"y":37.658},{"x":1754674621024,"y":40.256},{"x":1754674560934,"y":43.585},{"x":1754674500768,"y":42.841},{"x":1754674440635,"y":42.863},{"x":1754674380518,"y":51.108},{"x":1754674320519,"y":57.736},{"x":1754674260337,"y":54.586},{"x":1754674203029,"y":70.884},{"x":1754674142889,"y":55.807},{"x":1754674082786,"y":35.392},{"x":1754674022643,"y":29.94},{"x":1754673962520,"y":27.284},{"x":1754673902403,"y":23.651},{"x":1754673842282,"y":30.926},{"x":1754673782138,"y":33.995},{"x":1754673722002,"y":32.712},{"x":1754673661877,"y":30.396},{"x":1754673601756,"y":31.808},{"x":1754673541633,"y":29.543},{"x":1754673481501,"y":42.972},{"x":1754673421385,"y":28.547},{"x":1754673361246,"y":32.688},{"x":1754673301140,"y":25.337},{"x":1754673240978,"y":24.396},{"x":1754673180859,"y":24.73},{"x":1754673120749,"y":46.205},{"x":1754673060587,"y":51.986},{"x":1754673000409,"y":59.338},{"x":1754672940274,"y":61.454},{"x":1754672883015,"y":58.109},{"x":1754672822883,"y":39.322},{"x":1754672762756,"y":38.579},{"x":1754672702620,"y":45.035},{"x":1754672642492,"y":46.598},{"x":1754672582366,"y":48.833},{"x":1754672522241,"y":67.778},{"x":1754672462090,"y":64.036},{"x":1754672401981,"y":66.767},{"x":1754672341813,"y":66.281},{"x":1754672281693,"y":54.878},{"x":1754672221568,"y":60.346},{"x":1754672161449,"y":42.628},{"x":1754672101316,"y":47.13},{"x":1754672041193,"y":42.846},{"x":1754671981067,"y":41.146},{"x":1754671920922,"y":52.974},{"x":1754671860794,"y":47.196},{"x":1754671800740,"y":36.943},{"x":1754671740581,"y":38.828},{"x":1754671680426,"y":43.843},{"x":1754671620229,"y":49.374},{"x":1754671563048,"y":45.006},{"x":1754671502898,"y":41.921},{"x":1754671442775,"y":46.418},{"x":1754671382649,"y":40.859},{"x":1754671322527,"y":31.063},{"x":1754671262398,"y":32.876},{"x":1754671202281,"y":32.603},{"x":1754671142155,"y":48.001},{"x":1754671082032,"y":36.667},{"x":1754671021895,"y":47.61},{"x":1754670961769,"y":46.354},{"x":1754670901644,"y":44.353},{"x":1754670841516,"y":41.203},{"x":1754670781395,"y":37.219},{"x":1754670721274,"y":39.113},{"x":1754670661152,"y":44.638},{"x":1754670600986,"y":41.06},{"x":1754670540788,"y":43.292},{"x":1754670480691,"y":47.352},{"x":1754670420608,"y":27.677},{"x":1754670360483,"y":44.136},{"x":1754670300245,"y":39.146},{"x":1754670242997,"y":36.569},{"x":1754670182875,"y":39.568},{"x":1754670122730,"y":45.46},{"x":1754670062607,"y":46.901},{"x":1754670002485,"y":38.64},{"x":1754669942357,"y":40.34},{"x":1754669882237,"y":44.723},{"x":1754669822109,"y":42.841},{"x":1754669761959,"y":49.322},{"x":1754669701828,"y":42.108},{"x":1754669641687,"y":41.464},{"x":1754669581568,"y":35.532},{"x":1754669521426,"y":31.708},{"x":1754669461270,"y":29.046},{"x":1754669401105,"y":28.602},{"x":1754669340951,"y":27.854},{"x":1754669280789,"y":29.342},{"x":1754669220659,"y":44.23},{"x":1754669160550,"y":55.156},{"x":1754669100352,"y":56.102},{"x":1754669040247,"y":59.24},{"x":1754668982926,"y":59.042},{"x":1754668922795,"y":51.425},{"x":1754668862667,"y":46.206},{"x":1754668802571,"y":27.112},{"x":1754668742406,"y":25.158},{"x":1754668682283,"y":40.288},{"x":1754668622179,"y":45.016},{"x":1754668562035,"y":49.708},{"x":1754668501921,"y":48.379},{"x":1754668441778,"y":45.767},{"x":1754668381661,"y":48.99},{"x":1754668321539,"y":55.688},{"x":1754668261411,"y":53.345},{"x":1754668201292,"y":42.586},{"x":1754668141171,"y":29.952},{"x":1754668081038,"y":32.798},{"x":1754668020909,"y":26.846},{"x":1754667960771,"y":23.432},{"x":1754667900858,"y":40.424},{"x":1754667840571,"y":40.756},{"x":1754667780384,"y":58.894},{"x":1754667720299,"y":57.534},{"x":1754667663016,"y":62.377},{"x":1754667602879,"y":43.244},{"x":1754667542761,"y":44.324},{"x":1754667482621,"y":38.882},{"x":1754667422508,"y":32.885},{"x":1754667362383,"y":33.287},{"x":1754667302258,"y":21.587},{"x":1754667242135,"y":26.809},{"x":1754667181993,"y":22.708},{"x":1754667121813,"y":47.666},{"x":1754667061680,"y":52.784},{"x":1754667001573,"y":54.75},{"x":1754666941418,"y":56.687},{"x":1754666881302,"y":48.917},{"x":1754666821175,"y":29.934},{"x":1754666761047,"y":41.566},{"x":1754666700919,"y":29.185},{"x":1754666640783,"y":43.48},{"x":1754666580653,"y":33.934},{"x":1754666520611,"y":36.316},{"x":1754666460453,"y":41.053},{"x":1754666400278,"y":33.683},{"x":1754666342992,"y":35.026},{"x":1754666282868,"y":31.858},{"x":1754666222750,"y":30.824},{"x":1754666162624,"y":29.483},{"x":1754666102497,"y":31.056},{"x":1754666042383,"y":36.025},{"x":1754665982272,"y":35.417},{"x":1754665922109,"y":30.97},{"x":1754665861932,"y":53.03},{"x":1754665801772,"y":48.464},{"x":1754665741648,"y":64.852},{"x":1754665681526,"y":49.295},{"x":1754665621406,"y":58.84},{"x":1754665561283,"y":31.493},{"x":1754665501162,"y":37.884},{"x":1754665441019,"y":41.78},{"x":1754665380894,"y":34.673},{"x":1754665320775,"y":33.13},{"x":1754665260662,"y":30.164},{"x":1754665200544,"y":37.776},{"x":1754665140408,"y":30.152},{"x":1754665080282,"y":18.727},{"x":1754665022919,"y":21.372},{"x":1754664962802,"y":30.134},{"x":1754664902690,"y":38.792},{"x":1754664842567,"y":42.859},{"x":1754664782435,"y":50.833},{"x":1754664722306,"y":37.516},{"x":1754664662174,"y":41.66},{"x":1754664602050,"y":26.526},{"x":1754664541923,"y":21.899},{"x":1754664481797,"y":23.322},{"x":1754664421678,"y":21.19},{"x":1754664361541,"y":46.103},{"x":1754664301444,"y":24.469},{"x":1754664241298,"y":37.159},{"x":1754664181153,"y":43.144},{"x":1754664121005,"y":44.353},{"x":1754664060865,"y":52.896},{"x":1754664000909,"y":54.47},{"x":1754663940606,"y":39.751},{"x":1754663880586,"y":44.9},{"x":1754663820314,"y":35.189},{"x":1754663760093,"y":31.016},{"x":1754663702911,"y":35.244},{"x":1754663642789,"y":43.703},{"x":1754663582659,"y":57.938},{"x":1754663522537,"y":47.449},{"x":1754663462406,"y":41.803},{"x":1754663402296,"y":43.285},{"x":1754663342165,"y":41.894},{"x":1754663282029,"y":36.055},{"x":1754663221896,"y":25.954},{"x":1754663161764,"y":20.412},{"x":1754663101652,"y":24.332},{"x":1754663041521,"y":24.04},{"x":1754662981387,"y":37.543},{"x":1754662921268,"y":27.116},{"x":1754662861143,"y":25.475},{"x":1754662801102,"y":25.531},{"x":1754662740874,"y":22.549},{"x":1754662680756,"y":31.703},{"x":1754662620631,"y":57.254},{"x":1754662560485,"y":40.014},{"x":1754662500388,"y":40.207},{"x":1754662440195,"y":37.174},{"x":1754662382918,"y":29.045},{"x":1754662322796,"y":18.096},{"x":1754662262619,"y":19.866},{"x":1754662202478,"y":30.518},{"x":1754662142353,"y":31.176},{"x":1754662082234,"y":42.218},{"x":1754662022113,"y":42.853},{"x":1754661961971,"y":43.128},{"x":1754661901850,"y":48.343},{"x":1754661841739,"y":47.82},{"x":1754661781609,"y":47.388},{"x":1754661721480,"y":47.746},{"x":1754661661367,"y":50.078},{"x":1754661601410,"y":37.498},{"x":1754661541068,"y":25.553},{"x":1754661480918,"y":28.184},{"x":1754661420788,"y":21.876},{"x":1754661360688,"y":40.622},{"x":1754661300597,"y":39.758},{"x":1754661240408,"y":60.059},{"x":1754661180411,"y":63.988},{"x":1754661122969,"y":50.773},{"x":1754661062846,"y":51.878},{"x":1754661002723,"y":39.155},{"x":1754660942606,"y":25.913},{"x":1754660882457,"y":26.575},{"x":1754660822336,"y":37.746},{"x":1754660762206,"y":38.809},{"x":1754660702087,"y":39.932},{"x":1754660641944,"y":45.409},{"x":1754660581825,"y":29.737},{"x":1754660521699,"y":23.72},{"x":1754660461578,"y":18.796},{"x":1754660401457,"y":15.425},{"x":1754660341321,"y":22.418},{"x":1754660281193,"y":21.154},{"x":1754660221055,"y":34.981},{"x":1754660160919,"y":37.128},{"x":1754660100830,"y":50.747},{"x":1754660040685,"y":45.522},{"x":1754659980544,"y":38.315},{"x":1754659920292,"y":38.046},{"x":1754659860250,"y":30.912},{"x":1754659802931,"y":21.608},{"x":1754659742809,"y":33.684},{"x":1754659682687,"y":27.265},{"x":1754659622577,"y":23.282},{"x":1754659562445,"y":17.719},{"x":1754659502334,"y":24.445},{"x":1754659442205,"y":31.643},{"x":1754659382085,"y":28.007},{"x":1754659321942,"y":35.167},{"x":1754659261821,"y":33.644},{"x":1754659201698,"y":31.172},{"x":1754659141580,"y":38.951},{"x":1754659081460,"y":32.251},{"x":1754659021325,"y":24.382},{"x":1754658961202,"y":16.114},{"x":1754658901116,"y":25.787},{"x":1754658840858,"y":37.75},{"x":1754658780726,"y":24.732},{"x":1754658720598,"y":25.529},{"x":1754658660446,"y":27.558},{"x":1754658600258,"y":33.377},{"x":1754658540322,"y":31.81},{"x":1754658482910,"y":53.352},{"x":1754658422795,"y":36.98},{"x":1754658362665,"y":17.021},{"x":1754658302547,"y":16.679},{"x":1754658242428,"y":20.155},{"x":1754658182297,"y":17.045},{"x":1754658122168,"y":19.295},{"x":1754658062068,"y":14.839},{"x":1754658001924,"y":23.98},{"x":1754657941700,"y":21.622},{"x":1754657881565,"y":30.259},{"x":1754657821455,"y":41.952},{"x":1754657761314,"y":41.114},{"x":1754657701220,"y":52.846},{"x":1754657641064,"y":36.05},{"x":1754657580928,"y":28.558},{"x":1754657520825,"y":14.024},{"x":1754657460660,"y":14.141},{"x":1754657400572,"y":23.56},{"x":1754657340457,"y":15.937},{"x":1754657280257,"y":42.068},{"x":1754657223016,"y":29.377},{"x":1754657162907,"y":40.234},{"x":1754657102759,"y":46.283},{"x":1754657042641,"y":39.955},{"x":1754656982522,"y":33.203},{"x":1754656922389,"y":23.954},{"x":1754656862259,"y":23.082},{"x":1754656802127,"y":22.385},{"x":1754656741996,"y":27.56},{"x":1754656681876,"y":22.492},{"x":1754656621737,"y":25.231},{"x":1754656561603,"y":20.552},{"x":1754656501486,"y":20.027},{"x":1754656441362,"y":24.246},{"x":1754656381247,"y":29.071},{"x":1754656321117,"y":21.484},{"x":1754656260978,"y":14.983},{"x":1754656200887,"y":33.66},{"x":1754656140690,"y":37.794},{"x":1754656080594,"y":39.308},{"x":1754656020501,"y":48.472},{"x":1754655960363,"y":40.445},{"x":1754655900263,"y":25.426},{"x":1754655842918,"y":13.338},{"x":1754655782800,"y":14.134},{"x":1754655722678,"y":15.47},{"x":1754655662573,"y":5.497},{"x":1754655602427,"y":11.712},{"x":1754655542313,"y":16.76},{"x":1754655482189,"y":16.294},{"x":1754655422066,"y":30.176},{"x":1754655361922,"y":34.802},{"x":1754655301824,"y":32.132},{"x":1754655241679,"y":24.706},{"x":1754655181530,"y":21.149},{"x":1754655121376,"y":12.163},{"x":1754655061224,"y":13.831},{"x":1754655001028,"y":13.486},{"x":1754654940882,"y":29.509},{"x":1754654880825,"y":25.15},{"x":1754654820667,"y":30.772},{"x":1754654760548,"y":24.588},{"x":1754654700434,"y":20.94},{"x":1754654640092,"y":21.262},{"x":1754654582917,"y":26.687},{"x":1754654522797,"y":15.181},{"x":1754654462662,"y":17.352},{"x":1754654402553,"y":19.501},{"x":1754654342398,"y":22.482},{"x":1754654282270,"y":20.123},{"x":1754654222149,"y":23.786},{"x":1754654162020,"y":32.213},{"x":1754654101885,"y":29.44},{"x":1754654041749,"y":36.304},{"x":1754653981623,"y":31.956},{"x":1754653921500,"y":20.509},{"x":1754653861374,"y":8.686},{"x":1754653801191,"y":4.225},{"x":1754653741060,"y":1.85},{"x":1754653680926,"y":12.647},{"x":1754653620794,"y":19.67},{"x":1754653560704,"y":16.84},{"x":1754653500605,"y":18.01},{"x":1754653440427,"y":11.884},{"x":1754653380298,"y":10.228},{"x":1754653320197,"y":7.915},{"x":1754653262920,"y":18.329},{"x":1754653202792,"y":33.677},{"x":1754653142666,"y":38.76},{"x":1754653082538,"y":45.782},{"x":1754653022416,"y":36.27},{"x":1754652962297,"y":21.989},{"x":1754652902170,"y":12.3},{"x":1754652842051,"y":15.542},{"x":1754652781958,"y":19.915},{"x":1754652721803,"y":32.878},{"x":1754652661671,"y":31.253},{"x":1754652601549,"y":34.714},{"x":1754652541413,"y":29.636},{"x":1754652481283,"y":28.4},{"x":1754652421165,"y":23.046},{"x":1754652361031,"y":14.765},{"x":1754652300904,"y":11.789},{"x":1754652240771,"y":31.686},{"x":1754652180650,"y":36.446},{"x":1754652120511,"y":38.706},{"x":1754652060538,"y":44.675},{"x":1754652000230,"y":28.685},{"x":1754651942965,"y":18.487},{"x":1754651882844,"y":9.934},{"x":1754651822716,"y":9.077},{"x":1754651762591,"y":30.815},{"x":1754651702459,"y":25.376},{"x":1754651642339,"y":17.621},{"x":1754651582162,"y":25.202},{"x":1754651522030,"y":37.742},{"x":1754651461890,"y":22.008},{"x":1754651401773,"y":11.827},{"x":1754651341622,"y":6.677},{"x":1754651281496,"y":8.268},{"x":1754651221375,"y":14.528},{"x":1754651161232,"y":23.045},{"x":1754651101110,"y":28.29},{"x":1754651040962,"y":32.056},{"x":1754650980823,"y":26.546},{"x":1754650920703,"y":19.464},{"x":1754650860644,"y":26.524},{"x":1754650800475,"y":30.911},{"x":1754650740309,"y":34.02},{"x":1754650682943,"y":24.006},{"x":1754650622826,"y":26.798},{"x":1754650562706,"y":41.962},{"x":1754650502581,"y":33.533},{"x":1754650442451,"y":52.627},{"x":1754650382329,"y":39.33},{"x":1754650322202,"y":20.486},{"x":1754650262081,"y":8.666},{"x":1754650201938,"y":7.871},{"x":1754650141784,"y":3.634},{"x":1754650081665,"y":19.578},{"x":1754650021547,"y":22.301},{"x":1754649961428,"y":27.774},{"x":1754649901335,"y":21.822},{"x":1754649841171,"y":21.689},{"x":1754649781047,"y":3.481},{"x":1754649720912,"y":5.804},{"x":1754649660788,"y":13.904},{"x":1754649600743,"y":3.924},{"x":1754649540529,"y":4.973},{"x":1754649480439,"y":19.9},{"x":1754649420340,"y":24.942},{"x":1754649363012,"y":25.805},{"x":1754649302887,"y":25.619},{"x":1754649242744,"y":37.594},{"x":1754649182622,"y":22.105},{"x":1754649122505,"y":19.164},{"x":1754649062383,"y":21.508},{"x":1754649002268,"y":9.653},{"x":1754648942135,"y":14.195},{"x":1754648881990,"y":13.346},{"x":1754648821867,"y":15.326},{"x":1754648761746,"y":26.195},{"x":1754648701618,"y":38.741},{"x":1754648641497,"y":39.284},{"x":1754648581421,"y":36.98},{"x":1754648521255,"y":23.599},{"x":1754648461130,"y":25.265},{"x":1754648401115,"y":7.17},{"x":1754648340838,"y":7.895},{"x":1754648280627,"y":18.487},{"x":1754648220532,"y":34.354},{"x":1754648160347,"y":17.192},{"x":1754648103012,"y":25.721},{"x":1754648042903,"y":45.92},{"x":1754647982757,"y":39.594},{"x":1754647922624,"y":26.248},{"x":1754647862485,"y":29.706},{"x":1754647802331,"y":26.668},{"x":1754647742210,"y":46.752},{"x":1754647682090,"y":30.334},{"x":1754647621956,"y":17.336},{"x":1754647561816,"y":24.958},{"x":1754647501688,"y":18.042},{"x":1754647441555,"y":11.59},{"x":1754647381436,"y":9.204},{"x":1754647321301,"y":15.076},{"x":1754647261183,"y":29.663},{"x":1754647201289,"y":28.261},{"x":1754647140841,"y":26.174},{"x":1754647080709,"y":43.852},{"x":1754647020573,"y":38.752},{"x":1754646960443,"y":28.529},{"x":1754646900284,"y":8.992},{"x":1754646842984,"y":35.078},{"x":1754646782867,"y":35.508},{"x":1754646722732,"y":7.382},{"x":1754646662605,"y":6.533},{"x":1754646602476,"y":15.247},{"x":1754646542353,"y":6.614},{"x":1754646482148,"y":5.416},{"x":1754646422020,"y":12.82},{"x":1754646361880,"y":37.426},{"x":1754646301760,"y":30.541},{"x":1754646241622,"y":39.674},{"x":1754646181503,"y":47.69},{"x":1754646121383,"y":57.028},{"x":1754646061263,"y":39.985},{"x":1754646001151,"y":28.27},{"x":1754645940952,"y":30.649},{"x":1754645880825,"y":22.573},{"x":1754645820731,"y":21.952},{"x":1754645760600,"y":24.384},{"x":1754645700533,"y":14.346},{"x":1754645640351,"y":26.815},{"x":1754645580239,"y":31.356},{"x":1754645522961,"y":38.644},{"x":1754645462838,"y":46.759},{"x":1754645402718,"y":47.311},{"x":1754645342595,"y":33.006},{"x":1754645282470,"y":33.277},{"x":1754645222359,"y":37.678},{"x":1754645162230,"y":28.462},{"x":1754645102106,"y":17.026},{"x":1754645041971,"y":17.106},{"x":1754644981846,"y":33.289},{"x":1754644921731,"y":45.776},{"x":1754644861625,"y":48.908},{"x":1754644801484,"y":39.476},{"x":1754644741362,"y":40.104},{"x":1754644681252,"y":28.639},{"x":1754644621117,"y":18.775},{"x":1754644560975,"y":24.248},{"x":1754644500882,"y":22.944},{"x":1754644440736,"y":32.58},{"x":1754644380670,"y":32.483},{"x":1754644320487,"y":32.011},{"x":1754644260318,"y":31.584},{"x":1754644202915,"y":29.226},{"x":1754644142775,"y":18.296},{"x":1754644082631,"y":17.848},{"x":1754644022517,"y":22.571},{"x":1754643962392,"y":20.099},{"x":1754643902272,"y":26.082},{"x":1754643842152,"y":37.952},{"x":1754643781992,"y":42.92},{"x":1754643721876,"y":43.716},{"x":1754643661720,"y":34.346},{"x":1754643601653,"y":48.902},{"x":1754643541441,"y":49.18},{"x":1754643481312,"y":58.208},{"x":1754643421192,"y":67.765},{"x":1754643361032,"y":52.739},{"x":1754643300910,"y":59.406},{"x":1754643240769,"y":49.405},{"x":1754643180648,"y":32.603},{"x":1754643120561,"y":27.047},{"x":1754643060391,"y":25.489},{"x":1754643000240,"y":24.17},{"x":1754642942972,"y":29.878},{"x":1754642882782,"y":29.61},{"x":1754642822656,"y":45.841},{"x":1754642762525,"y":43.765},{"x":1754642702405,"y":42.308},{"x":1754642642287,"y":41.038},{"x":1754642582168,"y":37.976},{"x":1754642522004,"y":25.789},{"x":1754642461879,"y":23.959},{"x":1754642401756,"y":23.158},{"x":1754642341629,"y":26.801},{"x":1754642281507,"y":26.023},{"x":1754642221389,"y":29.138},{"x":1754642161271,"y":31.061},{"x":1754642101143,"y":27.404},{"x":1754642040992,"y":37.228},{"x":1754641980870,"y":48.565},{"x":1754641920755,"y":35.189},{"x":1754641860618,"y":32.285},{"x":1754641800597,"y":29.964},{"x":1754641740407,"y":23.266},{"x":1754641680248,"y":20.102},{"x":1754641622940,"y":19.262},{"x":1754641562803,"y":19.981},{"x":1754641502687,"y":28.926},{"x":1754641442563,"y":30.797},{"x":1754641382440,"y":29.822},{"x":1754641322321,"y":31.534},{"x":1754641262191,"y":35.2},{"x":1754641202041,"y":31.378},{"x":1754641141903,"y":30.877},{"x":1754641081777,"y":34.394},{"x":1754641021658,"y":26.618},{"x":1754640961528,"y":31.054},{"x":1754640901411,"y":29.446},{"x":1754640841283,"y":46.144},{"x":1754640781141,"y":49.006},{"x":1754640720973,"y":45.638},{"x":1754640660834,"y":46.957},{"x":1754640600740,"y":45.761},{"x":1754640540562,"y":25.994},{"x":1754640480410,"y":23.606},{"x":1754640420383,"y":24.046},{"x":1754640362991,"y":20.555},{"x":1754640302875,"y":15.522},{"x":1754640242752,"y":19.55},{"x":1754640182628,"y":13.582},{"x":1754640122506,"y":21.368},{"x":1754640062373,"y":31.729},{"x":1754640002275,"y":27.61},{"x":1754639942123,"y":36.73},{"x":1754639881989,"y":18.581},{"x":1754639821871,"y":14.06},{"x":1754639761742,"y":13.312},{"x":1754639701618,"y":18.083},{"x":1754639641512,"y":19.6},{"x":1754639581363,"y":21.978},{"x":1754639521268,"y":30.18},{"x":1754639461108,"y":31.164},{"x":1754639400944,"y":28.4},{"x":1754639340815,"y":28.799},{"x":1754639280721,"y":23.846},{"x":1754639220593,"y":28.026},{"x":1754639160551,"y":26.251},{"x":1754639100404,"y":25.405},{"x":1754639043025,"y":24.38},{"x":1754638982897,"y":27.6},{"x":1754638922752,"y":29.526},{"x":1754638862625,"y":42.028},{"x":1754638802510,"y":40.408},{"x":1754638742385,"y":25.016},{"x":1754638682242,"y":29.532},{"x":1754638622112,"y":21.422},{"x":1754638561972,"y":22.94},{"x":1754638501838,"y":24.486},{"x":1754638441707,"y":18.607},{"x":1754638381578,"y":26.078},{"x":1754638321454,"y":37.662},{"x":1754638261329,"y":36.394},{"x":1754638201195,"y":40.006},{"x":1754638141041,"y":45.874},{"x":1754638080907,"y":38.135},{"x":1754638020783,"y":42.085},{"x":1754637960677,"y":37.583},{"x":1754637900549,"y":40.129},{"x":1754637840509,"y":42.566},{"x":1754637780291,"y":39.78},{"x":1754637722974,"y":32.68},{"x":1754637662859,"y":35.988},{"x":1754637602738,"y":35.216},{"x":1754637542615,"y":36.1},{"x":1754637482496,"y":35.474},{"x":1754637422377,"y":30.601},{"x":1754637362234,"y":32.665},{"x":1754637302106,"y":31.141},{"x":1754637241976,"y":33.791},{"x":1754637181855,"y":32.716},{"x":1754637121701,"y":31.157},{"x":1754637061549,"y":30.856},{"x":1754637001398,"y":30.445},{"x":1754636941273,"y":45.527},{"x":1754636881128,"y":32.686},{"x":1754636820986,"y":48.217},{"x":1754636760852,"y":51.146},{"x":1754636700746,"y":52.793},{"x":1754636640591,"y":53.806},{"x":1754636580490,"y":61.324},{"x":1754636520345,"y":56.071},{"x":1754636460519,"y":48.326},{"x":1754636402978,"y":47.476},{"x":1754636342809,"y":44.101},{"x":1754636282725,"y":37.104},{"x":1754636222564,"y":27.772},{"x":1754636162438,"y":31.301},{"x":1754636102303,"y":31.769},{"x":1754636042171,"y":31.034},{"x":1754635982048,"y":31.735},{"x":1754635921909,"y":42.16},{"x":1754635861780,"y":54.853},{"x":1754635801650,"y":53.802},{"x":1754635741507,"y":52.861},{"x":1754635681383,"y":49.198},{"x":1754635621254,"y":31.324},{"x":1754635561130,"y":24.434},{"x":1754635501024,"y":22.783},{"x":1754635440842,"y":28.211},{"x":1754635380713,"y":32.549},{"x":1754635320591,"y":33.527},{"x":1754635260504,"y":38.303},{"x":1754635200345,"y":48.99},{"x":1754635140273,"y":53.194},{"x":1754635082919,"y":52.709},{"x":1754635022793,"y":36.748},{"x":1754634962669,"y":24.648},{"x":1754634902545,"y":24.594},{"x":1754634842406,"y":27.545},{"x":1754634782286,"y":33.116},{"x":1754634722156,"y":32.424},{"x":1754634662007,"y":28.082},{"x":1754634601890,"y":27.365},{"x":1754634541759,"y":27.254},{"x":1754634481590,"y":28.321},{"x":1754634421463,"y":27.354},{"x":1754634361337,"y":26.498},{"x":1754634301207,"y":40.189},{"x":1754634241069,"y":53.365},{"x":1754634180924,"y":66.156},{"x":1754634120793,"y":53.411},{"x":1754634060673,"y":69.935},{"x":1754634000684,"y":38.314},{"x":1754633940430,"y":50.13},{"x":1754633880306,"y":34.943},{"x":1754633820169,"y":61.18},{"x":1754633762923,"y":46.748},{"x":1754633702804,"y":56.422},{"x":1754633642682,"y":45.332},{"x":1754633582561,"y":46.0},{"x":1754633522415,"y":44.678},{"x":1754633462284,"y":46.254},{"x":1754633402116,"y":38.165},{"x":1754633341979,"y":44.459},{"x":1754633281842,"y":47.125},{"x":1754633221727,"y":50.724},{"x":1754633161606,"y":32.219},{"x":1754633101483,"y":30.786},{"x":1754633041365,"y":25.087},{"x":1754632981248,"y":24.995},{"x":1754632921119,"y":47.999},{"x":1754632860980,"y":48.508},{"x":1754632801006,"y":47.407},{"x":1754632740660,"y":50.866},{"x":1754632680544,"y":39.424},{"x":1754632620451,"y":33.314},{"x":1754632560262,"y":43.757},{"x":1754632502975,"y":28.487},{"x":1754632442857,"y":43.074},{"x":1754632382723,"y":37.812},{"x":1754632322617,"y":49.021},{"x":1754632262483,"y":49.926},{"x":1754632202359,"y":47.984},{"x":1754632142247,"y":36.962},{"x":1754632082073,"y":52.232},{"x":1754632021951,"y":64.116},{"x":1754631961816,"y":60.868},{"x":1754631901693,"y":63.774},{"x":1754631841568,"y":69.04},{"x":1754631781450,"y":69.725},{"x":1754631721323,"y":57.757},{"x":1754631661206,"y":52.614},{"x":1754631601087,"y":50.275},{"x":1754631540934,"y":26.63},{"x":1754631480814,"y":30.959},{"x":1754631420714,"y":26.392},{"x":1754631360622,"y":28.002},{"x":1754631300551,"y":27.413},{"x":1754631240313,"y":30.434},{"x":1754631180050,"y":28.882},{"x":1754631122903,"y":31.195},{"x":1754631062785,"y":29.693},{"x":1754631002667,"y":28.83},{"x":1754630942546,"y":30.317},{"x":1754630882425,"y":29.376},{"x":1754630822288,"y":32.916},{"x":1754630762161,"y":43.013},{"x":1754630702016,"y":41.084},{"x":1754630641884,"y":57.841},{"x":1754630581743,"y":58.744},{"x":1754630521622,"y":57.565},{"x":1754630461491,"y":46.338},{"x":1754630401373,"y":39.257},{"x":1754630341239,"y":27.617},{"x":1754630281105,"y":30.245},{"x":1754630220955,"y":28.951},{"x":1754630160806,"y":37.897},{"x":1754630100729,"y":33.83},{"x":1754630040524,"y":33.505},{"x":1754629980272,"y":28.645},{"x":1754629920196,"y":27.683},{"x":1754629862896,"y":29.202},{"x":1754629802757,"y":25.41},{"x":1754629742629,"y":29.58},{"x":1754629682500,"y":29.872},{"x":1754629622382,"y":42.856},{"x":1754629562256,"y":45.073},{"x":1754629502124,"y":43.672},{"x":1754629441971,"y":41.738},{"x":1754629381847,"y":41.15},{"x":1754629321729,"y":29.201},{"x":1754629261622,"y":29.3},{"x":1754629201543,"y":31.67},{"x":1754629141188,"y":26.106},{"x":1754629081050,"y":29.366},{"x":1754629020910,"y":28.972},{"x":1754628960799,"y":29.191},{"x":1754628900720,"y":29.884},{"x":1754628840556,"y":30.494},{"x":1754628780403,"y":30.006},{"x":1754628720258,"y":29.239},{"x":1754628660173,"y":54.134},{"x":1754628602907,"y":49.878},{"x":1754628542780,"y":53.866},{"x":1754628482661,"y":52.76},{"x":1754628422533,"y":53.957},{"x":1754628362414,"y":30.078},{"x":1754628302291,"y":28.121},{"x":1754628242170,"y":30.089},{"x":1754628182051,"y":30.062},{"x":1754628121916,"y":31.444},{"x":1754628061797,"y":33.329},{"x":1754628001665,"y":30.78},{"x":1754627941541,"y":31.53},{"x":1754627881421,"y":37.196},{"x":1754627821302,"y":30.232},{"x":1754627761156,"y":30.581},{"x":1754627701024,"y":32.592},{"x":1754627640878,"y":31.307},{"x":1754627580758,"y":35.586},{"x":1754627520657,"y":29.449},{"x":1754627460548,"y":29.509},{"x":1754627400456,"y":27.895},{"x":1754627340281,"y":37.031},{"x":1754627282963,"y":37.675},{"x":1754627222818,"y":40.62},{"x":1754627162695,"y":42.746},{"x":1754627102575,"y":39.937},{"x":1754627042456,"y":27.838},{"x":1754626982337,"y":27.936},{"x":1754626922211,"y":33.449},{"x":1754626862088,"y":29.219},{"x":1754626801957,"y":36.167},{"x":1754626741829,"y":40.962},{"x":1754626681706,"y":39.125},{"x":1754626621585,"y":37.181},{"x":1754626561458,"y":36.791},{"x":1754626501360,"y":37.118},{"x":1754626441188,"y":34.874},{"x":1754626381010,"y":34.254},{"x":1754626320888,"y":31.949},{"x":1754626260719,"y":36.146},{"x":1754626200641,"y":28.53},{"x":1754626140475,"y":28.48},{"x":1754626080289,"y":27.961},{"x":1754626023010,"y":33.886},{"x":1754625962860,"y":32.273},{"x":1754625902726,"y":31.993},{"x":1754625842605,"y":30.916},{"x":1754625782479,"y":28.574},{"x":1754625722364,"y":26.399},{"x":1754625662220,"y":27.416},{"x":1754625602013,"y":38.292},{"x":1754625541838,"y":38.836},{"x":1754625481718,"y":38.063},{"x":1754625421598,"y":40.246},{"x":1754625361491,"y":39.852},{"x":1754625301355,"y":36.374},{"x":1754625241248,"y":32.789},{"x":1754625181102,"y":33.421},{"x":1754625120967,"y":28.704},{"x":1754625060844,"y":43.714},{"x":1754625000759,"y":45.514},{"x":1754624940591,"y":42.054},{"x":1754624880484,"y":57.57},{"x":1754624820376,"y":60.456},{"x":1754624760246,"y":45.721},{"x":1754624702886,"y":47.711},{"x":1754624642757,"y":45.466},{"x":1754624582633,"y":29.515},{"x":1754624522517,"y":27.524},{"x":1754624462394,"y":34.219},{"x":1754624402268,"y":44.344},{"x":1754624342146,"y":44.088},{"x":1754624282001,"y":43.571},{"x":1754624221879,"y":42.457},{"x":1754624161735,"y":39.893},{"x":1754624101622,"y":29.45},{"x":1754624041497,"y":28.394},{"x":1754623981374,"y":28.496},{"x":1754623921255,"y":24.744},{"x":1754623861119,"y":25.499},{"x":1754623800988,"y":27.781},{"x":1754623740820,"y":32.849},{"x":1754623680715,"y":31.678},{"x":1754623620560,"y":34.693},{"x":1754623560510,"y":36.487},{"x":1754623500319,"y":33.131},{"x":1754623440256,"y":34.084},{"x":1754623382936,"y":33.326},{"x":1754623322816,"y":28.666},{"x":1754623262683,"y":32.963},{"x":1754623202541,"y":32.485},{"x":1754623142409,"y":25.967},{"x":1754623082278,"y":37.536},{"x":1754623022183,"y":40.433},{"x":1754622961994,"y":42.65},{"x":1754622901882,"y":43.459},{"x":1754622841706,"y":44.232},{"x":1754622781552,"y":31.063},{"x":1754622721427,"y":27.242},{"x":1754622661310,"y":26.629},{"x":1754622601171,"y":28.772},{"x":1754622541024,"y":27.413},{"x":1754622480885,"y":28.506},{"x":1754622420771,"y":32.315},{"x":1754622360650,"y":28.14},{"x":1754622300537,"y":47.266},{"x":1754622240481,"y":46.268},{"x":1754622181418,"y":45.491},{"x":1754622121273,"y":51.21},{"x":1754622070135,"y":44.557},{"x":1754622002139,"y":27.122},{"x":1754621941290,"y":26.893},{"x":1754621881173,"y":26.156},{"x":1754621821042,"y":26.15},{"x":1754621760909,"y":25.969},{"x":1754621700809,"y":26.408},{"x":1754621640654,"y":27.142},{"x":1754621580530,"y":41.872},{"x":1754621520456,"y":41.334},{"x":1754621460342,"y":46.16},{"x":1754621402982,"y":39.474},{"x":1754621342865,"y":45.071},{"x":1754621282764,"y":36.0},{"x":1754621222634,"y":34.552},{"x":1754621162501,"y":37.216},{"x":1754621102383,"y":29.994},{"x":1754621042254,"y":28.388},{"x":1754620982120,"y":27.496},{"x":1754620921984,"y":25.786},{"x":1754620861856,"y":33.527},{"x":1754620801727,"y":44.542},{"x":1754620741599,"y":43.824},{"x":1754620681477,"y":42.464},{"x":1754620621355,"y":43.063},{"x":1754620561228,"y":41.644},{"x":1754620501138,"y":29.49},{"x":1754620440962,"y":43.918},{"x":1754620380842,"y":41.75},{"x":1754620320734,"y":38.903},{"x":1754620260619,"y":38.063},{"x":1754620200513,"y":37.763},{"x":1754620140331,"y":29.477},{"x":1754620080189,"y":29.651},{"x":1754620022936,"y":29.182},{"x":1754619962806,"y":29.063},{"x":1754619902682,"y":33.93},{"x":1754619842542,"y":28.807},{"x":1754619782410,"y":28.026},{"x":1754619722289,"y":27.058},{"x":1754619662172,"y":27.337},{"x":1754619602058,"y":31.652},{"x":1754619541923,"y":27.32},{"x":1754619481788,"y":26.718},{"x":1754619421700,"y":29.85},{"x":1754619361537,"y":32.083},{"x":1754619301410,"y":36.359},{"x":1754619241313,"y":31.44},{"x":1754619181154,"y":31.034},{"x":1754619121021,"y":29.008},{"x":1754619060854,"y":28.237},{"x":1754619000764,"y":27.182},{"x":1754618940567,"y":25.614},{"x":1754618880537,"y":40.861},{"x":1754618820375,"y":40.734},{"x":1754618760059,"y":44.954},{"x":1754618702888,"y":47.731},{"x":1754618642760,"y":50.093},{"x":1754618582639,"y":31.066},{"x":1754618522525,"y":31.236},{"x":1754618462403,"y":26.677},{"x":1754618402320,"y":27.02},{"x":1754618342135,"y":31.321},{"x":1754618281994,"y":25.798},{"x":1754618221877,"y":26.768},{"x":1754618161755,"y":26.282},{"x":1754618101637,"y":34.912},{"x":1754618041519,"y":40.384},{"x":1754617981400,"y":35.465},{"x":1754617921287,"y":33.937},{"x":1754617861160,"y":28.751},{"x":1754617801018,"y":25.546},{"x":1754617740892,"y":25.229},{"x":1754617680770,"y":29.428},{"x":1754617620608,"y":29.098},{"x":1754617560508,"y":27.175},{"x":1754617500385,"y":36.648},{"x":1754617443002,"y":37.147},{"x":1754617382882,"y":37.282},{"x":1754617322753,"y":58.735},{"x":1754617262633,"y":55.234},{"x":1754617202515,"y":63.163},{"x":1754617142393,"y":64.091},{"x":1754617082285,"y":58.627},{"x":1754617022154,"y":45.066},{"x":1754616962022,"y":43.692},{"x":1754616901894,"y":28.884},{"x":1754616841763,"y":28.45},{"x":1754616781638,"y":34.958},{"x":1754616721518,"y":26.404},{"x":1754616661389,"y":26.237},{"x":1754616601322,"y":29.562},{"x":1754616541126,"y":30.967},{"x":1754616480969,"y":36.906},{"x":1754616420849,"y":31.29},{"x":1754616360728,"y":39.678},{"x":1754616300615,"y":36.788},{"x":1754616240560,"y":37.229},{"x":1754616180428,"y":41.098},{"x":1754616123034,"y":36.608},{"x":1754616062866,"y":29.893},{"x":1754616002767,"y":30.042},{"x":1754615942617,"y":32.948},{"x":1754615882501,"y":32.588},{"x":1754615822375,"y":32.183},{"x":1754615762247,"y":32.605},{"x":1754615702119,"y":30.697},{"x":1754615641974,"y":26.984},{"x":1754615581832,"y":26.484},{"x":1754615521680,"y":26.408},{"x":1754615461540,"y":26.027},{"x":1754615401383,"y":26.412},{"x":1754615341252,"y":29.813},{"x":1754615281117,"y":45.494},{"x":1754615220996,"y":50.664},{"x":1754615160866,"y":45.787},{"x":1754615100773,"y":44.12},{"x":1754615040633,"y":43.357},{"x":1754614980442,"y":28.29},{"x":1754614920424,"y":32.287},{"x":1754614860249,"y":28.367},{"x":1754614802984,"y":26.567},{"x":1754614742817,"y":32.234},{"x":1754614682695,"y":29.626},{"x":1754614622550,"y":34.897},{"x":1754614562437,"y":30.428},{"x":1754614502312,"y":32.29},{"x":1754614442188,"y":29.19},{"x":1754614382067,"y":28.528},{"x":1754614321939,"y":32.016},{"x":1754614261813,"y":28.369},{"x":1754614201700,"y":27.63},{"x":1754614141581,"y":27.509},{"x":1754614081376,"y":30.738},{"x":1754614021242,"y":28.393},{"x":1754613961110,"y":28.625},{"x":1754613901063,"y":27.938},{"x":1754613840793,"y":26.014},{"x":1754613780666,"y":30.958},{"x":1754613720579,"y":30.725},{"x":1754613660462,"y":30.553},{"x":1754613600337,"y":43.942},{"x":1754613543017,"y":43.865},{"x":1754613482894,"y":41.68},{"x":1754613422766,"y":42.995},{"x":1754613362649,"y":44.048},{"x":1754613302543,"y":31.519},{"x":1754613242407,"y":29.86},{"x":1754613182377,"y":29.694},{"x":1754613122142,"y":29.215},{"x":1754613061988,"y":35.802},{"x":1754613001859,"y":32.053},{"x":1754612941724,"y":31.768},{"x":1754612881601,"y":28.997},{"x":1754612821473,"y":27.008},{"x":1754612761346,"y":31.09},{"x":1754612701226,"y":26.549},{"x":1754612641104,"y":28.841},{"x":1754612580961,"y":41.704},{"x":1754612520836,"y":41.748},{"x":1754612460715,"y":46.004},{"x":1754612400721,"y":51.184},{"x":1754612340498,"y":50.642},{"x":1754612280381,"y":42.437},{"x":1754612220367,"y":41.719},{"x":1754612162906,"y":47.48},{"x":1754612102778,"y":27.571},{"x":1754612042667,"y":27.839},{"x":1754611982499,"y":27.445},{"x":1754611922340,"y":45.152},{"x":1754611862171,"y":45.53},{"x":1754611802017,"y":45.502},{"x":1754611741882,"y":45.27},{"x":1754611681757,"y":39.679},{"x":1754611621614,"y":28.56},{"x":1754611561487,"y":28.238},{"x":1754611501359,"y":29.53},{"x":1754611441241,"y":27.437},{"x":1754611381110,"y":29.748},{"x":1754611321000,"y":32.592},{"x":1754611260850,"y":29.057},{"x":1754611200875,"y":28.348},{"x":1754611140571,"y":28.591},{"x":1754611080457,"y":40.529},{"x":1754611020294,"y":42.268},{"x":1754610962945,"y":41.598},{"x":1754610902828,"y":40.226},{"x":1754610842704,"y":39.354},{"x":1754610782584,"y":27.178},{"x":1754610722463,"y":28.436},{"x":1754610662332,"y":30.026},{"x":1754610602204,"y":30.514},{"x":1754610542074,"y":43.008},{"x":1754610481965,"y":46.806},{"x":1754610421816,"y":46.379},{"x":1754610361696,"y":44.131},{"x":1754610301566,"y":43.843},{"x":1754610241441,"y":34.106},{"x":1754610181311,"y":29.951},{"x":1754610121192,"y":29.321},{"x":1754610061016,"y":29.2},{"x":1754610000960,"y":32.118},{"x":1754609940741,"y":31.132},{"x":1754609880576,"y":30.493},{"x":1754609820412,"y":29.744},{"x":1754609760245,"y":27.832},{"x":1754609703032,"y":26.598},{"x":1754609642884,"y":33.804},{"x":1754609582762,"y":29.797},{"x":1754609522639,"y":30.212},{"x":1754609462501,"y":29.803},{"x":1754609402374,"y":26.897},{"x":1754609342239,"y":33.521},{"x":1754609282112,"y":29.582},{"x":1754609221959,"y":29.903},{"x":1754609161835,"y":31.23},{"x":1754609101703,"y":29.977},{"x":1754609041575,"y":43.955},{"x":1754608981452,"y":39.474},{"x":1754608921328,"y":42.259},{"x":1754608861211,"y":41.13},{"x":1754608801093,"y":43.262},{"x":1754608740937,"y":35.681},{"x":1754608680777,"y":28.684},{"x":1754608620658,"y":27.125},{"x":1754608560549,"y":30.143},{"x":1754608500402,"y":30.205},{"x":1754608440209,"y":33.958},{"x":1754608382962,"y":30.217},{"x":1754608322792,"y":29.004},{"x":1754608262621,"y":29.675},{"x":1754608202458,"y":40.838},{"x":1754608142337,"y":43.972},{"x":1754608082210,"y":42.066},{"x":1754608022082,"y":41.184},{"x":1754607961948,"y":37.908},{"x":1754607901852,"y":45.305},{"x":1754607841688,"y":49.453},{"x":1754607781564,"y":58.522},{"x":1754607721428,"y":57.815},{"x":1754607661313,"y":42.932},{"x":1754607601232,"y":43.711},{"x":1754607541033,"y":33.709},{"x":1754607480889,"y":28.546},{"x":1754607420767,"y":30.749},{"x":1754607360673,"y":26.696},{"x":1754607300556,"y":26.027},{"x":1754607240404,"y":31.637},{"x":1754607180297,"y":27.008},{"x":1754607122948,"y":41.155},{"x":1754607062813,"y":39.814},{"x":1754607002702,"y":39.973},{"x":1754606942567,"y":48.155},{"x":1754606882439,"y":44.566},{"x":1754606822320,"y":43.375},{"x":1754606762191,"y":40.463},{"x":1754606702070,"y":38.497},{"x":1754606641943,"y":38.066},{"x":1754606581817,"y":43.182},{"x":1754606521683,"y":40.524},{"x":1754606461559,"y":40.124},{"x":1754606401439,"y":40.882},{"x":1754606341318,"y":43.638},{"x":1754606281194,"y":26.982},{"x":1754606221081,"y":29.827},{"x":1754606160935,"y":30.299},{"x":1754606100838,"y":30.967},{"x":1754606040686,"y":37.596},{"x":1754605980611,"y":31.642},{"x":1754605920499,"y":30.982},{"x":1754605860334,"y":38.598},{"x":1754605800297,"y":39.637},{"x":1754605742937,"y":43.379},{"x":1754605682813,"y":41.244},{"x":1754605622695,"y":41.302},{"x":1754605562579,"y":31.346},{"x":1754605502464,"y":33.544},{"x":1754605442328,"y":39.118},{"x":1754605382202,"y":49.094},{"x":1754605322081,"y":47.939},{"x":1754605261936,"y":46.832},{"x":1754605201814,"y":45.208},{"x":1754605141672,"y":51.133},{"x":1754605081550,"y":29.684},{"x":1754605021426,"y":29.058},{"x":1754604961285,"y":37.277},{"x":1754604901174,"y":37.816},{"x":1754604841018,"y":46.398},{"x":1754604780897,"y":52.429},{"x":1754604720722,"y":52.862},{"x":1754604660550,"y":61.841},{"x":1754604600415,"y":62.509},{"x":1754604540218,"y":64.19},{"x":1754604482980,"y":44.388},{"x":1754604422865,"y":46.068},{"x":1754604362741,"y":44.725},{"x":1754604302623,"y":36.676},{"x":1754604242492,"y":39.69},{"x":1754604182369,"y":35.18},{"x":1754604122237,"y":37.339},{"x":1754604062122,"y":36.445},{"x":1754604001868,"y":33.995},{"x":1754603941688,"y":52.162},{"x":1754603881575,"y":45.265},{"x":1754603821459,"y":44.557},{"x":1754603761335,"y":42.218},{"x":1754603701215,"y":42.257},{"x":1754603641097,"y":29.274},{"x":1754603580950,"y":29.322},{"x":1754603520831,"y":32.584},{"x":1754603460748,"y":31.738},{"x":1754603400605,"y":39.841},{"x":1754603340451,"y":49.327},{"x":1754603280311,"y":48.29},{"x":1754603220248,"y":44.96},{"x":1754603162919,"y":42.505},{"x":1754603102803,"y":43.555},{"x":1754603042694,"y":33.953},{"x":1754602982576,"y":34.313},{"x":1754602922464,"y":34.79},{"x":1754602862350,"y":38.244},{"x":1754602802236,"y":40.578},{"x":1754602742111,"y":38.479},{"x":1754602681980,"y":39.217},{"x":1754602621863,"y":39.601},{"x":1754602561745,"y":49.751},{"x":1754602501631,"y":49.984},{"x":1754602441511,"y":48.784},{"x":1754602381397,"y":49.416},{"x":1754602321269,"y":48.461},{"x":1754602261154,"y":35.1},{"x":1754602201070,"y":35.615},{"x":1754602140886,"y":38.978},{"x":1754602080780,"y":37.903},{"x":1754602020653,"y":37.279},{"x":1754601960561,"y":34.98},{"x":1754601900494,"y":35.395},{"x":1754601840358,"y":32.23},{"x":1754601780364,"y":29.779},{"x":1754601722903,"y":30.29},{"x":1754601662789,"y":30.103},{"x":1754601602675,"y":31.972},{"x":1754601542554,"y":35.486},{"x":1754601482434,"y":37.086},{"x":1754601422318,"y":43.834},{"x":1754601362197,"y":41.761},{"x":1754601302070,"y":38.485},{"x":1754601241944,"y":38.766},{"x":1754601181824,"y":49.195},{"x":1754601121702,"y":30.716},{"x":1754601061513,"y":32.275},{"x":1754601001360,"y":31.034},{"x":1754600941227,"y":38.243},{"x":1754600881102,"y":32.3},{"x":1754600820959,"y":32.02},{"x":1754600760842,"y":34.394},{"x":1754600700757,"y":34.832},{"x":1754600640624,"y":39.5},{"x":1754600580480,"y":46.819},{"x":1754600520376,"y":50.083},{"x":1754600463026,"y":46.603},{"x":1754600402917,"y":46.951},{"x":1754600342768,"y":46.75},{"x":1754600282650,"y":37.65},{"x":1754600222523,"y":34.44},{"x":1754600162404,"y":47.558},{"x":1754600102293,"y":40.211},{"x":1754600042174,"y":38.922},{"x":1754599982047,"y":44.201},{"x":1754599921929,"y":41.311},{"x":1754599861813,"y":39.87},{"x":1754599801688,"y":37.939},{"x":1754599741577,"y":45.889},{"x":1754599681440,"y":49.067},{"x":1754599621319,"y":43.921},{"x":1754599561194,"y":45.425},{"x":1754599501102,"y":45.788},{"x":1754599440899,"y":56.524},{"x":1754599380788,"y":47.881},{"x":1754599320663,"y":54.432},{"x":1754599260551,"y":36.301},{"x":1754599200493,"y":34.337},{"x":1754599140343,"y":37.992},{"x":1754599080437,"y":33.718},{"x":1754599022919,"y":36.631},{"x":1754598962797,"y":34.708},{"x":1754598902714,"y":31.976},{"x":1754598842569,"y":32.137},{"x":1754598782453,"y":32.767},{"x":1754598722342,"y":38.944},{"x":1754598662224,"y":37.858},{"x":1754598602112,"y":45.622},{"x":1754598541979,"y":35.089},{"x":1754598481858,"y":35.366},{"x":1754598421740,"y":32.296},{"x":1754598361628,"y":31.576},{"x":1754598301531,"y":34.416},{"x":1754598241391,"y":35.281},{"x":1754598181270,"y":34.65},{"x":1754598121159,"y":35.088},{"x":1754598061014,"y":34.408},{"x":1754598000923,"y":45.739},{"x":1754597940754,"y":38.435},{"x":1754597880659,"y":51.829},{"x":1754597820569,"y":52.14},{"x":1754597760476,"y":48.474},{"x":1754597700299,"y":50.066},{"x":1754597642957,"y":46.512},{"x":1754597582833,"y":44.538},{"x":1754597522700,"y":46.141},{"x":1754597462539,"y":30.115},{"x":1754597402383,"y":48.408},{"x":1754597342243,"y":46.513},{"x":1754597282126,"y":49.866},{"x":1754597221992,"y":48.157},{"x":1754597161853,"y":43.315},{"x":1754597101724,"y":30.517},{"x":1754597041602,"y":32.329},{"x":1754596981483,"y":32.513},{"x":1754596921352,"y":32.998},{"x":1754596861239,"y":35.2},{"x":1754596801191,"y":48.266},{"x":1754596740913,"y":49.044},{"x":1754596680798,"y":70.409},{"x":1754596620679,"y":53.56},{"x":1754596560704,"y":83.648},{"x":1754596500472,"y":67.891},{"x":1754596440267,"y":62.65},{"x":1754596383006,"y":57.486},{"x":1754596322880,"y":70.448},{"x":1754596262750,"y":46.554},{"x":1754596202628,"y":40.667},{"x":1754596142514,"y":30.605},{"x":1754596082391,"y":33.8},{"x":1754596022261,"y":33.865},{"x":1754595962132,"y":46.327},{"x":1754595902000,"y":36.569},{"x":1754595841878,"y":35.321},{"x":1754595781754,"y":34.276},{"x":1754595721653,"y":31.85},{"x":1754595661512,"y":37.662},{"x":1754595601401,"y":32.23},{"x":1754595541272,"y":30.635},{"x":1754595481164,"y":33.446},{"x":1754595421012,"y":33.662},{"x":1754595360887,"y":32.627},{"x":1754595300776,"y":49.018},{"x":1754595240630,"y":55.174},{"x":1754595180538,"y":51.842},{"x":1754595120372,"y":49.663},{"x":1754595060280,"y":41.568},{"x":1754595002981,"y":54.24},{"x":1754594942847,"y":37.192},{"x":1754594882723,"y":33.144},{"x":1754594822609,"y":47.915},{"x":1754594762481,"y":40.146},{"x":1754594702361,"y":35.652},{"x":1754594642230,"y":34.811},{"x":1754594582105,"y":35.083},{"x":1754594521949,"y":58.591},{"x":1754594461808,"y":45.215},{"x":1754594401681,"y":60.047},{"x":1754594341555,"y":62.734},{"x":1754594281453,"y":61.428},{"x":1754594221314,"y":62.768},{"x":1754594161192,"y":52.666},{"x":1754594101083,"y":55.372},{"x":1754594040937,"y":52.578},{"x":1754593980810,"y":63.082},{"x":1754593920722,"y":52.204},{"x":1754593860527,"y":47.572},{"x":1754593800364,"y":39.697},{"x":1754593740191,"y":45.36},{"x":1754593682939,"y":47.557},{"x":1754593622798,"y":44.138},{"x":1754593562686,"y":35.803},{"x":1754593502567,"y":32.903},{"x":1754593442442,"y":44.041},{"x":1754593382321,"y":40.57},{"x":1754593322192,"y":33.491},{"x":1754593262065,"y":33.282},{"x":1754593201822,"y":46.561},{"x":1754593141630,"y":33.388},{"x":1754593081508,"y":49.52},{"x":1754593021370,"y":67.86},{"x":1754592961253,"y":46.242},{"x":1754592901124,"y":56.56},{"x":1754592840985,"y":63.026},{"x":1754592780846,"y":60.782},{"x":1754592720737,"y":58.723},{"x":1754592660617,"y":55.54},{"x":1754592600434,"y":58.723},{"x":1754592540289,"y":56.065},{"x":1754592482969,"y":51.925},{"x":1754592422845,"y":50.453},{"x":1754592362740,"y":49.688},{"x":1754592302600,"y":33.756},{"x":1754592242484,"y":50.74},{"x":1754592182370,"y":47.573},{"x":1754592122221,"y":55.505},{"x":1754592062094,"y":57.154},{"x":1754592001955,"y":51.024},{"x":1754591941799,"y":42.943},{"x":1754591881670,"y":43.658},{"x":1754591821532,"y":42.736},{"x":1754591761407,"y":47.298},{"x":1754591701282,"y":45.971},{"x":1754591641154,"y":32.34},{"x":1754591581028,"y":30.86},{"x":1754591520885,"y":33.959},{"x":1754591460755,"y":36.946},{"x":1754591400663,"y":35.902},{"x":1754591340468,"y":36.54},{"x":1754591280372,"y":39.509},{"x":1754591220229,"y":36.876},{"x":1754591162920,"y":47.952},{"x":1754591102794,"y":43.76},{"x":1754591042674,"y":43.456},{"x":1754590982564,"y":43.678},{"x":1754590922417,"y":46.176},{"x":1754590862307,"y":51.301},{"x":1754590802159,"y":60.635},{"x":1754590742019,"y":48.916},{"x":1754590681881,"y":45.53},{"x":1754590621750,"y":41.651},{"x":1754590561600,"y":38.914},{"x":1754590501476,"y":36.094},{"x":1754590441345,"y":42.274},{"x":1754590381186,"y":40.585},{"x":1754590320994,"y":43.83},{"x":1754590260778,"y":42.896},{"x":1754590200703,"y":35.005},{"x":1754590140512,"y":34.804},{"x":1754590080364,"y":39.244},{"x":1754590020212,"y":35.982},{"x":1754589962941,"y":33.942},{"x":1754589902819,"y":34.081},{"x":1754589842680,"y":32.036},{"x":1754589782554,"y":32.358},{"x":1754589722419,"y":29.821},{"x":1754589662290,"y":31.099},{"x":1754589602214,"y":37.009},{"x":1754589541964,"y":37.012},{"x":1754589481836,"y":37.225},{"x":1754589421706,"y":40.405},{"x":1754589361579,"y":36.515},{"x":1754589301447,"y":35.1},{"x":1754589241316,"y":32.429},{"x":1754589181191,"y":35.064},{"x":1754589121027,"y":34.789},{"x":1754589060900,"y":43.436},{"x":1754589000770,"y":55.333},{"x":1754588940647,"y":58.345},{"x":1754588880539,"y":57.232},{"x":1754588820474,"y":56.321},{"x":1754588760300,"y":42.443},{"x":1754588702955,"y":32.005},{"x":1754588642822,"y":30.335},{"x":1754588582694,"y":32.13},{"x":1754588522558,"y":38.449},{"x":1754588462417,"y":30.614},{"x":1754588402281,"y":43.936},{"x":1754588342144,"y":46.754},{"x":1754588282004,"y":55.255},{"x":1754588221875,"y":49.187},{"x":1754588161737,"y":44.968},{"x":1754588101611,"y":33.764},{"x":1754588041484,"y":31.95},{"x":1754587981346,"y":50.088},{"x":1754587921206,"y":31.247},{"x":1754587861071,"y":59.75},{"x":1754587801029,"y":54.346},{"x":1754587740796,"y":61.178},{"x":1754587680623,"y":60.361},{"x":1754587620460,"y":60.937},{"x":1754587560312,"y":31.474},{"x":1754587500119,"y":43.092},{"x":1754587442905,"y":43.296},{"x":1754587382772,"y":45.091},{"x":1754587322635,"y":43.856},{"x":1754587262505,"y":47.922},{"x":1754587202382,"y":46.931},{"x":1754587142249,"y":43.862},{"x":1754587082094,"y":39.268},{"x":1754587021931,"y":39.505},{"x":1754586961811,"y":45.587},{"x":1754586901667,"y":39.51},{"x":1754586841539,"y":36.4},{"x":1754586781385,"y":32.772},{"x":1754586721248,"y":34.124},{"x":1754586661082,"y":38.023},{"x":1754586600925,"y":40.02},{"x":1754586540795,"y":52.109},{"x":1754586480690,"y":52.0},{"x":1754586420536,"y":51.174},{"x":1754586360406,"y":52.844},{"x":1754586300180,"y":48.373},{"x":1754586242928,"y":33.251},{"x":1754586182802,"y":32.882},{"x":1754586122660,"y":47.413},{"x":1754586062525,"y":75.347},{"x":1754586002468,"y":55.883},{"x":1754585942229,"y":56.435},{"x":1754585882102,"y":59.08},{"x":1754585821953,"y":45.542},{"x":1754585761804,"y":43.121},{"x":1754585701664,"y":43.451},{"x":1754585641535,"y":37.368},{"x":1754585581410,"y":36.455},{"x":1754585521282,"y":34.343},{"x":1754585461133,"y":31.536},{"x":1754585400983,"y":42.764},{"x":1754585340837,"y":42.227},{"x":1754585280724,"y":44.252},{"x":1754585220586,"y":42.517},{"x":1754585160456,"y":55.424},{"x":1754585100377,"y":35.896},{"x":1754585042951,"y":34.589},{"x":1754584982821,"y":33.672},{"x":1754584922688,"y":48.421},{"x":1754584862543,"y":41.969},{"x":1754584802413,"y":42.001},{"x":1754584742277,"y":41.798},{"x":1754584682145,"y":60.978},{"x":1754584622000,"y":45.43},{"x":1754584561867,"y":45.182},{"x":1754584501737,"y":46.769},{"x":1754584441600,"y":44.778},{"x":1754584381476,"y":41.344},{"x":1754584321349,"y":39.815},{"x":1754584261217,"y":35.651},{"x":1754584201107,"y":33.546},{"x":1754584140909,"y":44.304},{"x":1754584080785,"y":60.485},{"x":1754584020664,"y":52.354},{"x":1754583960555,"y":52.66},{"x":1754583900483,"y":53.651},{"x":1754583843026,"y":42.224},{"x":1754583782890,"y":29.518},{"x":1754583722757,"y":29.684},{"x":1754583662630,"y":28.66},{"x":1754583602503,"y":33.422},{"x":1754583542377,"y":31.184},{"x":1754583482240,"y":27.277},{"x":1754583422116,"y":27.504},{"x":1754583361975,"y":24.655},{"x":1754583301846,"y":50.849},{"x":1754583241733,"y":49.877},{"x":1754583181553,"y":49.12},{"x":1754583121372,"y":51.755},{"x":1754583061233,"y":55.243},{"x":1754583001071,"y":37.056},{"x":1754582940917,"y":29.092},{"x":1754582880792,"y":30.836},{"x":1754582820668,"y":29.548},{"x":1754582760598,"y":29.461},{"x":1754582700453,"y":31.766},{"x":1754582640331,"y":31.475},{"x":1754582582980,"y":43.694},{"x":1754582522839,"y":40.799},{"x":1754582462715,"y":41.491},{"x":1754582402604,"y":48.715},{"x":1754582342435,"y":36.328},{"x":1754582282309,"y":26.747},{"x":1754582222177,"y":27.174},{"x":1754582162040,"y":39.737},{"x":1754582101900,"y":36.775},{"x":1754582041765,"y":31.696},{"x":1754581981630,"y":34.294},{"x":1754581921503,"y":38.281},{"x":1754581861378,"y":35.299},{"x":1754581801249,"y":36.382},{"x":1754581741110,"y":23.822},{"x":1754581680967,"y":26.497},{"x":1754581620829,"y":21.317},{"x":1754581560698,"y":19.786},{"x":1754581500684,"y":19.08},{"x":1754581440439,"y":23.268},{"x":1754581380320,"y":26.765},{"x":1754581320054,"y":33.007},{"x":1754581262887,"y":41.519},{"x":1754581202755,"y":52.736},{"x":1754581142619,"y":49.985},{"x":1754581082485,"y":53.22},{"x":1754581022356,"y":45.048},{"x":1754580962222,"y":35.702},{"x":1754580902091,"y":23.668},{"x":1754580841947,"y":17.141},{"x":1754580781797,"y":16.465},{"x":1754580721636,"y":16.248},{"x":1754580661507,"y":23.593},{"x":1754580601432,"y":31.151},{"x":1754580541242,"y":20.694},{"x":1754580481111,"y":22.342},{"x":1754580421008,"y":33.262},{"x":1754580360738,"y":34.535},{"x":1754580300650,"y":38.725},{"x":1754580240499,"y":31.285},{"x":1754580180386,"y":25.721},{"x":1754580122968,"y":29.315},{"x":1754580062868,"y":23.23},{"x":1754580002716,"y":28.41},{"x":1754579942594,"y":22.286},{"x":1754579882456,"y":38.274},{"x":1754579822344,"y":32.59},{"x":1754579762189,"y":31.764},{"x":1754579702075,"y":44.719},{"x":1754579641902,"y":50.834},{"x":1754579581746,"y":41.411},{"x":1754579521602,"y":37.1},{"x":1754579461412,"y":36.358},{"x":1754579401215,"y":26.756},{"x":1754579341071,"y":31.109},{"x":1754579280924,"y":29.722},{"x":1754579220788,"y":29.57},{"x":1754579160641,"y":46.3},{"x":1754579100579,"y":49.138},{"x":1754579040435,"y":41.268},{"x":1754578980198,"y":39.0},{"x":1754578922958,"y":37.609},{"x":1754578862825,"y":37.97},{"x":1754578802708,"y":28.76},{"x":1754578742527,"y":26.614},{"x":1754578682389,"y":26.414},{"x":1754578622250,"y":34.518},{"x":1754578562117,"y":38.981},{"x":1754578501953,"y":41.869},{"x":1754578441817,"y":56.972},{"x":1754578381674,"y":63.038},{"x":1754578321538,"y":61.964},{"x":1754578261404,"y":58.756},{"x":1754578201279,"y":59.882},{"x":1754578141141,"y":39.202},{"x":1754578080992,"y":37.844},{"x":1754578020857,"y":41.669},{"x":1754577960724,"y":28.301},{"x":1754577900672,"y":31.585},{"x":1754577840537,"y":33.425},{"x":1754577780326,"y":45.235},{"x":1754577722969,"y":60.852},{"x":1754577662840,"y":78.474},{"x":1754577602687,"y":62.146},{"x":1754577542548,"y":50.436},{"x":1754577482416,"y":42.695},{"x":1754577422279,"y":27.484},{"x":1754577362142,"y":37.162},{"x":1754577301988,"y":34.435},{"x":1754577241843,"y":39.354},{"x":1754577181697,"y":37.105},{"x":1754577121564,"y":35.714},{"x":1754577061419,"y":37.163},{"x":1754577001282,"y":25.41},{"x":1754576941120,"y":28.43},{"x":1754576880972,"y":31.074},{"x":1754576820830,"y":27.961},{"x":1754576760697,"y":21.22},{"x":1754576700591,"y":35.748},{"x":1754576640480,"y":42.674},{"x":1754576580273,"y":40.778},{"x":1754576522967,"y":36.594},{"x":1754576462834,"y":37.436},{"x":1754576402698,"y":22.565},{"x":1754576342572,"y":27.342},{"x":1754576282442,"y":29.276},{"x":1754576222311,"y":31.228},{"x":1754576162171,"y":30.012},{"x":1754576102024,"y":28.252},{"x":1754576041879,"y":30.22},{"x":1754575981754,"y":40.969},{"x":1754575921566,"y":34.912},{"x":1754575861400,"y":47.448},{"x":1754575801256,"y":48.503},{"x":1754575741100,"y":47.317},{"x":1754575680944,"y":43.69},{"x":1754575620809,"y":36.49},{"x":1754575560680,"y":28.45},{"x":1754575500592,"y":23.198},{"x":1754575440455,"y":42.455},{"x":1754575380312,"y":41.806},{"x":1754575322980,"y":39.944},{"x":1754575262849,"y":43.562},{"x":1754575202726,"y":39.908},{"x":1754575142572,"y":30.72},{"x":1754575082439,"y":25.97},{"x":1754575022289,"y":26.095},{"x":1754574962153,"y":27.029},{"x":1754574902031,"y":28.544},{"x":1754574841867,"y":29.287},{"x":1754574781734,"y":42.32},{"x":1754574721603,"y":30.677},{"x":1754574661477,"y":50.686},{"x":1754574601308,"y":39.125},{"x":1754574541164,"y":36.203},{"x":1754574481029,"y":37.48},{"x":1754574420883,"y":37.853},{"x":1754574360766,"y":44.053},{"x":1754574300679,"y":48.77},{"x":1754574240534,"y":23.513},{"x":1754574180456,"y":22.388},{"x":1754574120290,"y":26.369},{"x":1754574062930,"y":24.355},{"x":1754574002777,"y":29.572},{"x":1754573942631,"y":29.2},{"x":1754573882492,"y":26.893},{"x":1754573822335,"y":28.883},{"x":1754573762206,"y":23.182},{"x":1754573702057,"y":22.996},{"x":1754573641906,"y":23.668},{"x":1754573581772,"y":20.426},{"x":1754573521614,"y":31.063},{"x":1754573461487,"y":27.596},{"x":1754573401416,"y":27.166},{"x":1754573341188,"y":35.112},{"x":1754573281048,"y":48.902},{"x":1754573220893,"y":49.156},{"x":1754573160762,"y":47.689},{"x":1754573100715,"y":60.916},{"x":1754573040539,"y":39.091},{"x":1754572980373,"y":42.677},{"x":1754572920159,"y":31.722},{"x":1754572862903,"y":34.301},{"x":1754572802758,"y":31.728},{"x":1754572742624,"y":57.761},{"x":1754572682487,"y":56.958},{"x":1754572622353,"y":59.888},{"x":1754572562213,"y":60.755},{"x":1754572502073,"y":53.842},{"x":1754572441932,"y":27.031},{"x":1754572381777,"y":24.874},{"x":1754572321600,"y":40.822},{"x":1754572261457,"y":22.702},{"x":1754572201270,"y":21.308},{"x":1754572141154,"y":38.112},{"x":1754572081004,"y":36.914},{"x":1754572020832,"y":38.77},{"x":1754571960705,"y":33.659},{"x":1754571900584,"y":30.65},{"x":1754571840466,"y":22.262},{"x":1754571780310,"y":24.294},{"x":1754571720080,"y":34.81},{"x":1754571662892,"y":33.19},{"x":1754571602821,"y":38.35},{"x":1754571542612,"y":38.299},{"x":1754571482472,"y":54.192},{"x":1754571422338,"y":43.981},{"x":1754571362188,"y":45.188},{"x":1754571302053,"y":47.428},{"x":1754571241896,"y":32.564},{"x":1754571181745,"y":41.245},{"x":1754571121614,"y":42.68},{"x":1754571061484,"y":38.993},{"x":1754571001337,"y":40.2},{"x":1754570941198,"y":51.77},{"x":1754570881061,"y":33.44},{"x":1754570820920,"y":32.929},{"x":1754570760795,"y":29.35},{"x":1754570700767,"y":51.991},{"x":1754570640540,"y":46.343},{"x":1754570580417,"y":48.57},{"x":1754570520240,"y":42.307},{"x":1754570462948,"y":35.928},{"x":1754570402785,"y":46.36},{"x":1754570342624,"y":31.133},{"x":1754570282489,"y":25.217},{"x":1754570222363,"y":24.341},{"x":1754570162208,"y":24.65},{"x":1754570102070,"y":25.469},{"x":1754570041935,"y":24.702},{"x":1754569981789,"y":22.136},{"x":1754569921671,"y":23.354},{"x":1754569861543,"y":25.967},{"x":1754569801403,"y":18.869},{"x":1754569741245,"y":27.57},{"x":1754569681106,"y":25.0},{"x":1754569620945,"y":35.161},{"x":1754569560805,"y":43.28},{"x":1754569500729,"y":41.221},{"x":1754569440600,"y":26.105},{"x":1754569380415,"y":31.793},{"x":1754569320038,"y":17.665},{"x":1754569262898,"y":15.185},{"x":1754569202805,"y":14.514},{"x":1754569142622,"y":30.268},{"x":1754569082484,"y":41.098},{"x":1754569022354,"y":49.656},{"x":1754568962212,"y":46.733},{"x":1754568902085,"y":42.286},{"x":1754568841921,"y":31.888},{"x":1754568781790,"y":18.102},{"x":1754568721574,"y":17.533},{"x":1754568661414,"y":19.174},{"x":1754568601304,"y":15.506},{"x":1754568541127,"y":20.785},{"x":1754568480983,"y":27.224},{"x":1754568420843,"y":42.707},{"x":1754568360711,"y":31.919},{"x":1754568300613,"y":32.513},{"x":1754568240503,"y":43.074},{"x":1754568180311,"y":37.795},{"x":1754568122962,"y":22.794},{"x":1754568062822,"y":36.157},{"x":1754568002770,"y":16.049},{"x":1754567942539,"y":34.482},{"x":1754567882398,"y":31.069},{"x":1754567822266,"y":36.631},{"x":1754567762143,"y":46.907},{"x":1754567701981,"y":49.364},{"x":1754567641840,"y":39.361},{"x":1754567581703,"y":41.257},{"x":1754567521562,"y":27.374},{"x":1754567461420,"y":28.524},{"x":1754567401283,"y":28.369},{"x":1754567341154,"y":25.186},{"x":1754567280973,"y":40.876},{"x":1754567220832,"y":41.167},{"x":1754567160699,"y":34.313},{"x":1754567100677,"y":36.67},{"x":1754567040542,"y":33.526},{"x":1754566980355,"y":42.775},{"x":1754566922977,"y":34.945},{"x":1754566862841,"y":18.152},{"x":1754566802692,"y":21.226},{"x":1754566742544,"y":25.406},{"x":1754566682412,"y":17.887},{"x":1754566622275,"y":39.462},{"x":1754566562123,"y":51.796},{"x":1754566501978,"y":42.247},{"x":1754566441822,"y":40.544},{"x":1754566381671,"y":36.586},{"x":1754566321526,"y":29.502},{"x":1754566261372,"y":40.13},{"x":1754566201276,"y":20.476},{"x":1754566141079,"y":15.406},{"x":1754566080937,"y":15.47},{"x":1754566020802,"y":16.622},{"x":1754565960632,"y":13.189},{"x":1754565900583,"y":17.952},{"x":1754565840579,"y":21.347},{"x":1754565782971,"y":29.357},{"x":1754565722842,"y":25.585},{"x":1754565662712,"y":40.379},{"x":1754565602575,"y":38.846},{"x":1754565542440,"y":30.978},{"x":1754565482306,"y":5.938},{"x":1754565422164,"y":13.721},{"x":1754565362021,"y":11.591},{"x":1754565301882,"y":20.366},{"x":1754565241718,"y":12.818},{"x":1754565181476,"y":27.276},{"x":1754565121366,"y":25.758},{"x":1754565061152,"y":32.833},{"x":1754565001024,"y":32.746},{"x":1754564940837,"y":20.904},{"x":1754564880714,"y":20.627},{"x":1754564820566,"y":27.066},{"x":1754564760456,"y":18.832},{"x":1754564700304,"y":27.701},{"x":1754564642951,"y":43.47},{"x":1754564582816,"y":30.389},{"x":1754564522645,"y":30.532},{"x":1754564462504,"y":34.888},{"x":1754564402388,"y":37.963},{"x":1754564342197,"y":27.185},{"x":1754564282061,"y":22.746},{"x":1754564221912,"y":26.118},{"x":1754564161768,"y":28.235},{"x":1754564101627,"y":43.978},{"x":1754564041482,"y":27.991},{"x":1754563981351,"y":47.406},{"x":1754563921219,"y":27.454},{"x":1754563861048,"y":29.046},{"x":1754563800898,"y":24.66},{"x":1754563740750,"y":30.001},{"x":1754563680634,"y":25.385},{"x":1754563620477,"y":28.075},{"x":1754563560321,"y":25.788},{"x":1754563500300,"y":31.853},{"x":1754563442942,"y":27.655},{"x":1754563382761,"y":37.51},{"x":1754563322628,"y":39.396},{"x":1754563262487,"y":37.644},{"x":1754563202347,"y":38.944},{"x":1754563142197,"y":29.132},{"x":1754563082037,"y":22.088},{"x":1754563021881,"y":20.412},{"x":1754562961741,"y":22.483},{"x":1754562901603,"y":43.962},{"x":1754562841444,"y":35.986},{"x":1754562781303,"y":41.634},{"x":1754562721165,"y":41.526},{"x":1754562661005,"y":35.336},{"x":1754562600884,"y":30.518},{"x":1754562540709,"y":22.261},{"x":1754562480633,"y":23.916},{"x":1754562420368,"y":42.038},{"x":1754562360356,"y":37.486},{"x":1754562302930,"y":30.752},{"x":1754562242761,"y":34.474},{"x":1754562182602,"y":29.115},{"x":1754562122413,"y":24.514},{"x":1754562062265,"y":28.309},{"x":1754562002097,"y":28.919},{"x":1754561941866,"y":30.515},{"x":1754561893710,"y":30.866},{"x":1754561890727,"y":30.866},{"x":1754561402575,"y":31.135},{"x":1754561342443,"y":40.819},{"x":1754561282322,"y":31.115},{"x":1754561222201,"y":46.584},{"x":1754561162065,"y":40.694},{"x":1754561101921,"y":39.959},{"x":1754561041770,"y":46.499},{"x":1754560981638,"y":29.063},{"x":1754560921495,"y":21.024},{"x":1754560861366,"y":23.124},{"x":1754560801365,"y":20.92},{"x":1754560741017,"y":30.66},{"x":1754560680872,"y":29.372},{"x":1754560620797,"y":31.025},{"x":1754560560634,"y":31.913},{"x":1754560500578,"y":34.022},{"x":1754560440365,"y":27.799},{"x":1754560380224,"y":19.553},{"x":1754560323000,"y":20.491},{"x":1754560262854,"y":13.584},{"x":1754560202725,"y":28.434},{"x":1754560142598,"y":50.79},{"x":1754560082472,"y":70.226},{"x":1754560022349,"y":56.081},{"x":1754559962201,"y":53.75},{"x":1754559902072,"y":43.099},{"x":1754559841935,"y":30.542},{"x":1754559781806,"y":41.207},{"x":1754559721681,"y":22.097},{"x":1754559661529,"y":21.052},{"x":1754559601396,"y":14.837},{"x":1754559541269,"y":15.762},{"x":1754559481145,"y":26.734},{"x":1754559420999,"y":35.308},{"x":1754559360876,"y":36.534},{"x":1754559300770,"y":34.151},{"x":1754559240605,"y":56.795},{"x":1754559180510,"y":39.826},{"x":1754559120381,"y":33.967},{"x":1754559060192,"y":27.359},{"x":1754559002928,"y":25.672},{"x":1754558942803,"y":30.01},{"x":1754558882674,"y":44.101},{"x":1754558822550,"y":41.006},{"x":1754558762424,"y":34.166},{"x":1754558702289,"y":35.531},{"x":1754558642169,"y":26.089},{"x":1754558582023,"y":10.278},{"x":1754558521920,"y":10.97},{"x":1754558461696,"y":30.665},{"x":1754558401552,"y":16.189},{"x":1754558341395,"y":16.542},{"x":1754558281262,"y":27.167},{"x":1754558221133,"y":33.926},{"x":1754558160969,"y":32.101},{"x":1754558100883,"y":17.657},{"x":1754558040718,"y":31.374},{"x":1754557980605,"y":19.258},{"x":1754557920558,"y":17.107},{"x":1754557860355,"y":25.751},{"x":1754557800191,"y":28.372},{"x":1754557742951,"y":42.358},{"x":1754557682822,"y":35.393},{"x":1754557622687,"y":27.942},{"x":1754557562561,"y":26.786},{"x":1754557502441,"y":32.822},{"x":1754557442319,"y":28.589},{"x":1754557382239,"y":25.22},{"x":1754557322070,"y":52.344},{"x":1754557261940,"y":34.67},{"x":1754557201917,"y":33.378},{"x":1754557141608,"y":17.5},{"x":1754557081482,"y":19.278},{"x":1754557021340,"y":20.222},{"x":1754556961216,"y":14.467},{"x":1754556901119,"y":15.67},{"x":1754556840947,"y":17.945},{"x":1754556780818,"y":35.174},{"x":1754556720732,"y":37.616},{"x":1754556660552,"y":37.823},{"x":1754556600466,"y":38.818},{"x":1754556540273,"y":39.557},{"x":1754556482986,"y":27.492},{"x":1754556422850,"y":24.401},{"x":1754556362733,"y":28.094},{"x":1754556302606,"y":25.596},{"x":1754556242467,"y":38.353},{"x":1754556182336,"y":52.02},{"x":1754556122206,"y":50.512},{"x":1754556062092,"y":48.738},{"x":1754556001947,"y":49.992},{"x":1754555941805,"y":44.767},{"x":1754555881684,"y":26.67},{"x":1754555821560,"y":30.126},{"x":1754555761431,"y":37.2},{"x":1754555701313,"y":22.19},{"x":1754555641162,"y":26.468},{"x":1754555581028,"y":39.929},{"x":1754555520900,"y":34.292},{"x":1754555460772,"y":34.025},{"x":1754555400716,"y":36.524},{"x":1754555340433,"y":47.334},{"x":1754555280301,"y":36.355},{"x":1754555220047,"y":41.724},{"x":1754555162907,"y":34.267},{"x":1754555102786,"y":40.697},{"x":1754555042663,"y":19.483},{"x":1754554982520,"y":13.632},{"x":1754554922386,"y":17.483},{"x":1754554862237,"y":25.562},{"x":1754554802144,"y":21.608},{"x":1754554741924,"y":23.132},{"x":1754554681800,"y":33.097},{"x":1754554621666,"y":27.658},{"x":1754554561538,"y":37.573},{"x":1754554501415,"y":43.584},{"x":1754554441259,"y":41.6},{"x":1754554381122,"y":42.917},{"x":1754554320966,"y":48.142},{"x":1754554260836,"y":31.236},{"x":1754554200809,"y":30.725},{"x":1754554140547,"y":37.682},{"x":1754554080443,"y":21.425},{"x":1754554020306,"y":27.595},{"x":1754553962993,"y":27.086},{"x":1754553902861,"y":30.866},{"x":1754553842739,"y":32.351},{"x":1754553782611,"y":39.979},{"x":1754553722480,"y":36.978},{"x":1754553662318,"y":34.978},{"x":1754553602221,"y":34.506},{"x":1754553542051,"y":35.219},{"x":1754553481919,"y":35.712},{"x":1754553421798,"y":36.552},{"x":1754553361678,"y":48.946},{"x":1754553301557,"y":40.608},{"x":1754553241432,"y":44.74},{"x":1754553181312,"y":31.084},{"x":1754553121180,"y":38.243},{"x":1754553061019,"y":38.584},{"x":1754553000902,"y":53.326},{"x":1754552940764,"y":31.514},{"x":1754552880618,"y":26.59},{"x":1754552820557,"y":23.824},{"x":1754552760457,"y":23.309},{"x":1754552700232,"y":18.475},{"x":1754552642945,"y":21.323},{"x":1754552582813,"y":33.007},{"x":1754552522694,"y":18.307},{"x":1754552462572,"y":22.775},{"x":1754552402429,"y":44.432},{"x":1754552342298,"y":52.892},{"x":1754552282177,"y":51.031},{"x":1754552222015,"y":48.274},{"x":1754552161883,"y":45.671},{"x":1754552101759,"y":30.109},{"x":1754552041620,"y":46.511},{"x":1754551981495,"y":23.842},{"x":1754551921375,"y":21.745},{"x":1754551861254,"y":23.718},{"x":1754551801160,"y":30.332},{"x":1754551740973,"y":51.683},{"x":1754551680850,"y":61.229},{"x":1754551620722,"y":61.094},{"x":1754551560646,"y":62.278},{"x":1754551500576,"y":54.428},{"x":1754551440351,"y":42.134},{"x":1754551380318,"y":23.6},{"x":1754551322889,"y":25.115},{"x":1754551262716,"y":25.756},{"x":1754551202569,"y":26.104},{"x":1754551142377,"y":47.962},{"x":1754551082256,"y":49.645},{"x":1754551022137,"y":48.683},{"x":1754550961991,"y":48.244},{"x":1754550901869,"y":46.748},{"x":1754550841737,"y":49.682},{"x":1754550781610,"y":45.95},{"x":1754550721486,"y":50.78},{"x":1754550661355,"y":38.282},{"x":1754550601240,"y":37.174},{"x":1754550541127,"y":46.579},{"x":1754550480952,"y":47.249},{"x":1754550420819,"y":40.356},{"x":1754550360728,"y":27.99},{"x":1754550300648,"y":43.159},{"x":1754550240478,"y":32.274},{"x":1754550180323,"y":34.775},{"x":1754550122952,"y":37.013},{"x":1754550062823,"y":39.617},{"x":1754550002716,"y":26.075},{"x":1754549942577,"y":28.483},{"x":1754549882430,"y":28.896},{"x":1754549822307,"y":28.295},{"x":1754549762177,"y":32.119},{"x":1754549702052,"y":39.496},{"x":1754549641904,"y":37.522},{"x":1754549581775,"y":36.262},{"x":1754549521649,"y":40.68},{"x":1754549461523,"y":34.732},{"x":1754549401389,"y":21.23},{"x":1754549341267,"y":20.342},{"x":1754549281105,"y":27.631},{"x":1754549220964,"y":29.981},{"x":1754549160857,"y":30.271},{"x":1754549100731,"y":32.736},{"x":1754549040637,"y":27.762},{"x":1754548980486,"y":31.946},{"x":1754548920413,"y":41.132},{"x":1754548860304,"y":40.482},{"x":1754548802989,"y":41.078},{"x":1754548742832,"y":47.369},{"x":1754548682702,"y":45.506},{"x":1754548622578,"y":32.272},{"x":1754548562452,"y":34.646},{"x":1754548502319,"y":38.816},{"x":1754548442202,"y":33.769},{"x":1754548382055,"y":31.835},{"x":1754548321905,"y":44.95},{"x":1754548261775,"y":45.677},{"x":1754548201653,"y":34.453},{"x":1754548141485,"y":32.062},{"x":1754548081388,"y":31.418},{"x":1754548021239,"y":31.073},{"x":1754547961113,"y":30.03},{"x":1754547900967,"y":49.666},{"x":1754547840826,"y":31.13},{"x":1754547780694,"y":34.042},{"x":1754547720569,"y":31.232},{"x":1754547660533,"y":55.901},{"x":1754547600156,"y":40.426},{"x":1754547542945,"y":54.188},{"x":1754547482812,"y":40.625},{"x":1754547422685,"y":53.54},{"x":1754547362560,"y":28.856},{"x":1754547302437,"y":47.454},{"x":1754547242287,"y":34.35},{"x":1754547182150,"y":43.163},{"x":1754547122018,"y":30.773},{"x":1754547061879,"y":49.476},{"x":1754547001755,"y":30.966},{"x":1754546941625,"y":60.659},{"x":1754546881502,"y":68.351},{"x":1754546821382,"y":72.388},{"x":1754546761254,"y":52.993},{"x":1754546701123,"y":52.934},{"x":1754546640971,"y":30.181},{"x":1754546580833,"y":27.49},{"x":1754546520715,"y":30.088},{"x":1754546460631,"y":25.218},{"x":1754546400637,"y":24.25},{"x":1754546340312,"y":26.44},{"x":1754546283015,"y":28.47},{"x":1754546222849,"y":29.015},{"x":1754546162717,"y":31.45},{"x":1754546102596,"y":39.402},{"x":1754546042466,"y":41.302},{"x":1754545982348,"y":44.489},{"x":1754545922224,"y":44.066},{"x":1754545862085,"y":53.933},{"x":1754545801946,"y":34.128},{"x":1754545741812,"y":32.933},{"x":1754545681700,"y":32.221},{"x":1754545621545,"y":21.364},{"x":1754545561438,"y":22.097},{"x":1754545501321,"y":23.382},{"x":1754545441131,"y":26.423},{"x":1754545380997,"y":27.016},{"x":1754545320864,"y":29.986},{"x":1754545260743,"y":27.748},{"x":1754545200657,"y":31.986},{"x":1754545140489,"y":24.64},{"x":1754545080329,"y":23.135},{"x":1754545020213,"y":23.743},{"x":1754544962962,"y":24.368},{"x":1754544902834,"y":28.31},{"x":1754544842711,"y":23.788},{"x":1754544782573,"y":24.058},{"x":1754544722447,"y":26.455},{"x":1754544662328,"y":27.044},{"x":1754544602206,"y":29.975},{"x":1754544542080,"y":30.528},{"x":1754544481947,"y":28.691},{"x":1754544421815,"y":26.911},{"x":1754544361686,"y":25.319},{"x":1754544301554,"y":25.932},{"x":1754544241424,"y":29.906},{"x":1754544181309,"y":26.686},{"x":1754544121155,"y":28.838},{"x":1754544060975,"y":31.092},{"x":1754544000942,"y":22.51},{"x":1754543940671,"y":30.124},{"x":1754543880558,"y":26.562},{"x":1754543820508,"y":24.314},{"x":1754543760313,"y":28.05},{"x":1754543700276,"y":26.909},{"x":1754543642917,"y":26.994},{"x":1754543582792,"y":25.576},{"x":1754543522678,"y":22.736},{"x":1754543462536,"y":26.136},{"x":1754543402414,"y":28.13},{"x":1754543342291,"y":29.114},{"x":1754543282166,"y":31.391},{"x":1754543222041,"y":24.286},{"x":1754543161939,"y":29.321},{"x":1754543101779,"y":27.605},{"x":1754543041648,"y":26.591},{"x":1754542981513,"y":29.551},{"x":1754542921397,"y":27.83},{"x":1754542861279,"y":28.579},{"x":1754542801316,"y":26.069},{"x":1754542740876,"y":25.634},{"x":1754542680754,"y":26.17},{"x":1754542620631,"y":24.37},{"x":1754542560559,"y":40.29},{"x":1754542500464,"y":39.691},{"x":1754542440249,"y":45.542},{"x":1754542382953,"y":53.959},{"x":1754542322828,"y":56.446},{"x":1754542262704,"y":41.47},{"x":1754542202580,"y":43.067},{"x":1754542142453,"y":43.544},{"x":1754542082333,"y":32.891},{"x":1754542022206,"y":37.73},{"x":1754541962082,"y":43.55},{"x":1754541901942,"y":44.173},{"x":1754541841816,"y":43.792},{"x":1754541781693,"y":35.75},{"x":1754541721567,"y":36.364},{"x":1754541661431,"y":29.227},{"x":1754541601305,"y":28.349},{"x":1754541541183,"y":26.647},{"x":1754541481060,"y":29.288},{"x":1754541420916,"y":28.673},{"x":1754541360793,"y":32.624},{"x":1754541300702,"y":27.377},{"x":1754541240536,"y":25.426},{"x":1754541180422,"y":25.231},{"x":1754541120189,"y":24.162},{"x":1754541062990,"y":24.514},{"x":1754541002888,"y":24.46},{"x":1754540942747,"y":27.371},{"x":1754540882631,"y":28.606},{"x":1754540822503,"y":46.232},{"x":1754540762380,"y":45.384},{"x":1754540702254,"y":43.994},{"x":1754540642131,"y":45.596},{"x":1754540582003,"y":41.126},{"x":1754540521891,"y":28.349},{"x":1754540461717,"y":30.72},{"x":1754540401571,"y":29.329},{"x":1754540341434,"y":36.091},{"x":1754540281296,"y":32.462},{"x":1754540221181,"y":27.95},{"x":1754540161046,"y":28.03},{"x":1754540100933,"y":31.09},{"x":1754540040781,"y":37.654},{"x":1754539980672,"y":37.594},{"x":1754539920641,"y":36.427},{"x":1754539860448,"y":36.178},{"x":1754539800351,"y":36.282},{"x":1754539740161,"y":35.186},{"x":1754539682937,"y":39.23},{"x":1754539622805,"y":36.766},{"x":1754539562687,"y":36.437},{"x":1754539502566,"y":27.082},{"x":1754539442443,"y":54.775},{"x":1754539382322,"y":56.939},{"x":1754539322193,"y":64.991},{"x":1754539262021,"y":63.214},{"x":1754539201935,"y":62.894},{"x":1754539141690,"y":31.649},{"x":1754539081554,"y":29.534},{"x":1754539021431,"y":26.945},{"x":1754538961309,"y":27.623},{"x":1754538901186,"y":25.072},{"x":1754538841058,"y":25.019},{"x":1754538780916,"y":36.08},{"x":1754538720796,"y":39.834},{"x":1754538660677,"y":38.38},{"x":1754538600597,"y":36.532},{"x":1754538540442,"y":30.263},{"x":1754538480304,"y":29.446},{"x":1754538420024,"y":32.588},{"x":1754538362914,"y":27.169},{"x":1754538302756,"y":26.386},{"x":1754538242643,"y":25.78},{"x":1754538182515,"y":25.282},{"x":1754538122398,"y":29.395},{"x":1754538062265,"y":44.009},{"x":1754538002140,"y":43.414},{"x":1754537942008,"y":50.777},{"x":1754537881880,"y":46.948},{"x":1754537821748,"y":57.37},{"x":1754537761630,"y":45.955},{"x":1754537701490,"y":39.083},{"x":1754537641369,"y":38.897},{"x":1754537581243,"y":40.306},{"x":1754537521120,"y":25.552},{"x":1754537460988,"y":32.24},{"x":1754537400929,"y":25.355},{"x":1754537340736,"y":26.945},{"x":1754537280653,"y":27.27},{"x":1754537220515,"y":29.76},{"x":1754537160402,"y":30.949},{"x":1754537100143,"y":28.512},{"x":1754537042952,"y":28.213},{"x":1754536982785,"y":26.719},{"x":1754536922612,"y":25.171},{"x":1754536862495,"y":24.025},{"x":1754536802286,"y":31.172},{"x":1754536742158,"y":27.44},{"x":1754536682019,"y":41.281},{"x":1754536621895,"y":41.474},{"x":1754536561759,"y":41.822},{"x":1754536501640,"y":57.53},{"x":1754536441512,"y":56.61},{"x":1754536381379,"y":41.885},{"x":1754536321258,"y":42.376},{"x":1754536261128,"y":42.155},{"x":1754536200988,"y":26.489},{"x":1754536140859,"y":29.286},{"x":1754536080733,"y":32.761},{"x":1754536020613,"y":38.574},{"x":1754535960477,"y":38.868},{"x":1754535900304,"y":52.573},{"x":1754535840196,"y":51.179},{"x":1754535781372,"y":43.188},{"x":1754535721224,"y":36.812},{"x":1754535661042,"y":36.02},{"x":1754535601681,"y":26.731},{"x":1754535541502,"y":24.769},{"x":1754535481360,"y":28.541},{"x":1754535421237,"y":28.298},{"x":1754535361108,"y":27.989},{"x":1754535300972,"y":27.076},{"x":1754535240837,"y":28.195},{"x":1754535180699,"y":29.693},{"x":1754535120632,"y":25.668},{"x":1754535060555,"y":30.012},{"x":1754535000309,"y":30.245},{"x":1754534940184,"y":29.833},{"x":1754534882908,"y":33.666},{"x":1754534822773,"y":32.732},{"x":1754534762639,"y":30.6},{"x":1754534702509,"y":28.717},{"x":1754534642376,"y":29.986},{"x":1754534582251,"y":46.028},{"x":1754534522126,"y":55.859},{"x":1754534461975,"y":54.206},{"x":1754534401858,"y":54.439},{"x":1754534341724,"y":52.909},{"x":1754534281593,"y":42.942},{"x":1754534221471,"y":36.065},{"x":1754534161345,"y":33.914},{"x":1754534101220,"y":32.562},{"x":1754534041092,"y":29.014},{"x":1754533980940,"y":28.934},{"x":1754533920817,"y":28.475},{"x":1754533860663,"y":29.18},{"x":1754533800584,"y":30.59},{"x":1754533740397,"y":29.24},{"x":1754533680329,"y":28.318},{"x":1754533620093,"y":40.021},{"x":1754533562932,"y":41.467},{"x":1754533502806,"y":55.906},{"x":1754533442673,"y":55.981},{"x":1754533382555,"y":53.123},{"x":1754533322428,"y":41.689},{"x":1754533262243,"y":45.468},{"x":1754533202042,"y":35.75},{"x":1754533141882,"y":34.512},{"x":1754533081755,"y":32.818},{"x":1754533021634,"y":33.16},{"x":1754532961502,"y":35.21},{"x":1754532901390,"y":43.481},{"x":1754532841261,"y":44.708},{"x":1754532781137,"y":43.363},{"x":1754532720999,"y":43.841},{"x":1754532660873,"y":42.097},{"x":1754532600771,"y":29.881},{"x":1754532540527,"y":28.66},{"x":1754532480493,"y":26.956},{"x":1754532420296,"y":28.049},{"x":1754532362996,"y":27.612},{"x":1754532302876,"y":45.68},{"x":1754532242750,"y":44.081},{"x":1754532182626,"y":45.125},{"x":1754532122500,"y":45.356},{"x":1754532062378,"y":44.314},{"x":1754532002286,"y":31.637},{"x":1754531942115,"y":26.618},{"x":1754531881958,"y":25.632},{"x":1754531821833,"y":29.947},{"x":1754531761699,"y":39.149},{"x":1754531701578,"y":41.208},{"x":1754531641444,"y":53.462},{"x":1754531581319,"y":48.343},{"x":1754531521189,"y":45.197},{"x":1754531461027,"y":39.809},{"x":1754531400905,"y":39.932},{"x":1754531340771,"y":36.348},{"x":1754531280653,"y":32.844},{"x":1754531220539,"y":32.382},{"x":1754531160415,"y":30.9},{"x":1754531100253,"y":27.811},{"x":1754531042981,"y":27.139},{"x":1754530982854,"y":26.374},{"x":1754530922726,"y":26.114},{"x":1754530862604,"y":26.47},{"x":1754530802480,"y":25.418},{"x":1754530742351,"y":28.222},{"x":1754530682230,"y":31.633},{"x":1754530622108,"y":31.754},{"x":1754530561969,"y":30.418},{"x":1754530501848,"y":44.594},{"x":1754530441718,"y":43.684},{"x":1754530381596,"y":48.45},{"x":1754530321484,"y":56.317},{"x":1754530261339,"y":56.232},{"x":1754530201268,"y":42.887},{"x":1754530141094,"y":42.544},{"x":1754530080944,"y":40.319},{"x":1754530020824,"y":31.23},{"x":1754529960698,"y":31.16},{"x":1754529900602,"y":30.299},{"x":1754529840519,"y":32.698},{"x":1754529780347,"y":29.615},{"x":1754529720202,"y":32.868},{"x":1754529660169,"y":30.492},{"x":1754529602844,"y":30.848},{"x":1754529542663,"y":30.391},{"x":1754529482540,"y":29.737},{"x":1754529422420,"y":30.2},{"x":1754529362302,"y":26.99},{"x":1754529302172,"y":39.973},{"x":1754529242064,"y":42.764},{"x":1754529181907,"y":41.999},{"x":1754529121770,"y":39.706},{"x":1754529061646,"y":46.064},{"x":1754529001516,"y":37.265},{"x":1754528941389,"y":34.908},{"x":1754528881258,"y":35.232},{"x":1754528821134,"y":34.868},{"x":1754528761010,"y":25.123},{"x":1754528700890,"y":54.426},{"x":1754528640762,"y":56.833},{"x":1754528580644,"y":57.023},{"x":1754528520503,"y":59.692},{"x":1754528460449,"y":30.253},{"x":1754528400157,"y":32.554},{"x":1754528342947,"y":28.636},{"x":1754528282824,"y":28.642},{"x":1754528222710,"y":28.88},{"x":1754528162584,"y":30.278},{"x":1754528102471,"y":34.795},{"x":1754528042346,"y":43.645},{"x":1754527982230,"y":43.946},{"x":1754527922095,"y":42.364},{"x":1754527861951,"y":38.72},{"x":1754527801839,"y":38.96},{"x":1754527741706,"y":29.22},{"x":1754527681586,"y":30.086},{"x":1754527621458,"y":29.68},{"x":1754527561336,"y":43.162},{"x":1754527501225,"y":42.691},{"x":1754527441084,"y":51.6},{"x":1754527380944,"y":51.648},{"x":1754527320829,"y":53.09},{"x":1754527260713,"y":37.727},{"x":1754527200644,"y":38.243},{"x":1754527140486,"y":32.059},{"x":1754527080392,"y":36.934},{"x":1754527020223,"y":38.405},{"x":1754526962975,"y":36.86},{"x":1754526902847,"y":33.946},{"x":1754526842724,"y":38.296},{"x":1754526782595,"y":30.883},{"x":1754526722476,"y":28.396},{"x":1754526662364,"y":25.892},{"x":1754526602234,"y":25.228},{"x":1754526542111,"y":44.342},{"x":1754526481961,"y":40.102},{"x":1754526421839,"y":41.546},{"x":1754526361711,"y":44.104},{"x":1754526301599,"y":44.598},{"x":1754526241468,"y":33.732},{"x":1754526181347,"y":33.269},{"x":1754526121226,"y":30.012},{"x":1754526061090,"y":27.694},{"x":1754526000954,"y":31.098},{"x":1754525940734,"y":28.075},{"x":1754525880628,"y":31.322},{"x":1754525820526,"y":26.489},{"x":1754525760368,"y":26.833},{"x":1754525700282,"y":28.944},{"x":1754525642954,"y":43.646},{"x":1754525582815,"y":64.697},{"x":1754525522684,"y":59.245},{"x":1754525462565,"y":55.746},{"x":1754525402421,"y":54.45},{"x":1754525342303,"y":40.226},{"x":1754525282168,"y":43.56},{"x":1754525222037,"y":32.098},{"x":1754525161899,"y":27.001},{"x":1754525101766,"y":29.735},{"x":1754525041644,"y":38.49},{"x":1754524981511,"y":49.799},{"x":1754524921383,"y":49.451},{"x":1754524861268,"y":49.894},{"x":1754524801094,"y":50.723},{"x":1754524740709,"y":38.074},{"x":1754524680575,"y":29.17},{"x":1754524620459,"y":30.455},{"x":1754524560306,"y":27.672},{"x":1754524503018,"y":30.228},{"x":1754524442895,"y":30.75},{"x":1754524382774,"y":30.09},{"x":1754524322650,"y":34.494},{"x":1754524262522,"y":30.152},{"x":1754524202395,"y":29.384},{"x":1754524142267,"y":29.972},{"x":1754524082147,"y":27.974},{"x":1754524022020,"y":33.748},{"x":1754523961886,"y":29.162},{"x":1754523901761,"y":29.345},{"x":1754523841637,"y":28.984},{"x":1754523781508,"y":27.888},{"x":1754523721389,"y":42.845},{"x":1754523661263,"y":53.575},{"x":1754523601142,"y":54.925},{"x":1754523540999,"y":52.214},{"x":1754523480874,"y":53.228},{"x":1754523420686,"y":29.67},{"x":1754523360583,"y":30.44},{"x":1754523300538,"y":30.15},{"x":1754523240251,"y":31.663},{"x":1754523182961,"y":32.773},{"x":1754523122842,"y":30.334},{"x":1754523062722,"y":50.982},{"x":1754523002599,"y":51.184},{"x":1754522942463,"y":50.879},{"x":1754522882320,"y":48.734},{"x":1754522822185,"y":51.629},{"x":1754522762052,"y":38.164},{"x":1754522701915,"y":26.635},{"x":1754522641811,"y":31.933},{"x":1754522581666,"y":30.876},{"x":1754522521549,"y":30.442},{"x":1754522461352,"y":30.049},{"x":1754522401252,"y":30.199},{"x":1754522341068,"y":26.77},{"x":1754522280937,"y":27.156},{"x":1754522220824,"y":30.042},{"x":1754522160711,"y":30.576},{"x":1754522100597,"y":27.642},{"x":1754522040381,"y":27.151},{"x":1754521980244,"y":40.801},{"x":1754521922971,"y":43.289},{"x":1754521862856,"y":42.592},{"x":1754521802722,"y":45.02},{"x":1754521742600,"y":37.811},{"x":1754521682475,"y":26.357},{"x":1754521622348,"y":25.991},{"x":1754521562220,"y":27.014},{"x":1754521502092,"y":31.006},{"x":1754521441940,"y":26.921},{"x":1754521381806,"y":28.249},{"x":1754521321674,"y":28.624},{"x":1754521261557,"y":28.432},{"x":1754521201448,"y":34.866},{"x":1754521141223,"y":39.575},{"x":1754521081094,"y":40.17},{"x":1754521020944,"y":40.084},{"x":1754520960817,"y":37.369},{"x":1754520900711,"y":41.664},{"x":1754520840563,"y":26.605},{"x":1754520780419,"y":30.206},{"x":1754520720334,"y":30.564},{"x":1754520660197,"y":59.341},{"x":1754520602887,"y":58.84},{"x":1754520542761,"y":55.692},{"x":1754520482639,"y":58.476},{"x":1754520422517,"y":44.048},{"x":1754520362371,"y":29.242},{"x":1754520302248,"y":36.862},{"x":1754520242121,"y":35.42},{"x":1754520181989,"y":35.376},{"x":1754520121863,"y":35.132},{"x":1754520061743,"y":33.935},{"x":1754520001619,"y":45.041},{"x":1754519941494,"y":46.514},{"x":1754519881326,"y":45.778},{"x":1754519821204,"y":37.501},{"x":1754519761066,"y":46.27},{"x":1754519700935,"y":46.051},{"x":1754519640803,"y":45.366},{"x":1754519580667,"y":41.354},{"x":1754519520569,"y":31.151},{"x":1754519460404,"y":46.373},{"x":1754519400408,"y":45.977},{"x":1754519340111,"y":49.628},{"x":1754519282948,"y":43.212},{"x":1754519222821,"y":52.872},{"x":1754519162692,"y":38.48},{"x":1754519102564,"y":42.289},{"x":1754519042433,"y":46.153},{"x":1754518982310,"y":41.248},{"x":1754518922186,"y":32.747},{"x":1754518861993,"y":34.204},{"x":1754518801841,"y":30.556},{"x":1754518741685,"y":34.267},{"x":1754518681558,"y":30.256},{"x":1754518621429,"y":33.192},{"x":1754518561299,"y":29.483},{"x":1754518501201,"y":29.946},{"x":1754518441015,"y":33.114},{"x":1754518380875,"y":28.116},{"x":1754518320767,"y":45.097},{"x":1754518260639,"y":48.276},{"x":1754518200575,"y":50.899},{"x":1754518140365,"y":54.27},{"x":1754518080219,"y":46.865},{"x":1754518022964,"y":31.506},{"x":1754517962842,"y":30.509},{"x":1754517902712,"y":29.993},{"x":1754517842585,"y":35.354},{"x":1754517782459,"y":30.797},{"x":1754517722334,"y":45.498},{"x":1754517662207,"y":46.272},{"x":1754517602090,"y":48.118},{"x":1755727140404,"y":31.856},{"x":1755727080401,"y":29.756},{"x":1755727022998,"y":34.148},{"x":1755726962870,"y":32.822},{"x":1755726902735,"y":33.104},{"x":1755726842615,"y":29.069},{"x":1755726782494,"y":29.329},{"x":1755726722366,"y":39.318},{"x":1755726662227,"y":42.126},{"x":1755726602095,"y":42.571},{"x":1755726541959,"y":33.124},{"x":1755726481838,"y":33.744},{"x":1755726421723,"y":29.75},{"x":1755726361597,"y":28.35},{"x":1755726301476,"y":29.657},{"x":1755726241339,"y":30.079},{"x":1755726181209,"y":30.472},{"x":1755726121023,"y":30.665},{"x":1755726060903,"y":36.696},{"x":1755726000864,"y":31.595},{"x":1755725940652,"y":32.662},{"x":1755725880598,"y":34.81},{"x":1755725820396,"y":34.016},{"x":1755725760209,"y":37.513},{"x":1755725702984,"y":32.719},{"x":1755725642852,"y":30.205},{"x":1755725582759,"y":30.11},{"x":1755725522590,"y":29.395},{"x":1755725462460,"y":34.013},{"x":1755725402340,"y":34.06},{"x":1755725342216,"y":35.407},{"x":1755725282084,"y":34.27},{"x":1755725221944,"y":31.183},{"x":1755725161823,"y":37.19},{"x":1755725101696,"y":35.774},{"x":1755725041564,"y":36.976},{"x":1755724981439,"y":38.73},{"x":1755724921318,"y":36.139},{"x":1755724861188,"y":37.438},{"x":1755724801076,"y":42.162},{"x":1755724740887,"y":41.98},{"x":1755724680754,"y":43.357},{"x":1755724620666,"y":40.183},{"x":1755724560542,"y":39.967},{"x":1755724500056,"y":41.484},{"x":1755724442920,"y":39.462},{"x":1755724382761,"y":38.394},{"x":1755724322580,"y":36.808},{"x":1755724262446,"y":36.673},{"x":1755724202297,"y":40.795},{"x":1755724142158,"y":35.065},{"x":1755724082039,"y":33.976},{"x":1755724021903,"y":33.926},{"x":1755723961782,"y":34.565},{"x":1755723901662,"y":42.302},{"x":1755723841536,"y":36.696},{"x":1755723781424,"y":39.079},{"x":1755723721296,"y":34.97},{"x":1755723661175,"y":35.467},{"x":1755723601109,"y":32.923},{"x":1755723540767,"y":58.777},{"x":1755723480663,"y":60.256},{"x":1755723420593,"y":56.93},{"x":1755723360409,"y":57.69},{"x":1755723300316,"y":57.992},{"x":1755723242977,"y":34.452},{"x":1755723182830,"y":34.091},{"x":1755723122708,"y":37.818},{"x":1755723062591,"y":35.26},{"x":1755723002482,"y":37.656},{"x":1755722942344,"y":38.882},{"x":1755722882234,"y":32.525},{"x":1755722822095,"y":45.566},{"x":1755722761948,"y":31.462},{"x":1755722701817,"y":32.066},{"x":1755722641690,"y":59.23},{"x":1755722581574,"y":56.207},{"x":1755722521442,"y":55.085},{"x":1755722461316,"y":53.84},{"x":1755722401194,"y":53.66},{"x":1755722341022,"y":45.852},{"x":1755722280891,"y":35.449},{"x":1755722220774,"y":36.929},{"x":1755722160656,"y":34.177},{"x":1755722100520,"y":37.596},{"x":1755722040374,"y":55.714},{"x":1755721980266,"y":48.997},{"x":1755721922942,"y":32.575},{"x":1755721862823,"y":32.531},{"x":1755721802681,"y":33.071},{"x":1755721742554,"y":35.068},{"x":1755721682430,"y":30.084},{"x":1755721622302,"y":31.549},{"x":1755721562173,"y":29.53},{"x":1755721502043,"y":43.823},{"x":1755721441883,"y":53.596},{"x":1755721381768,"y":46.105},{"x":1755721321646,"y":44.504},{"x":1755721261521,"y":46.475},{"x":1755721201392,"y":43.633},{"x":1755721141272,"y":57.457},{"x":1755721081144,"y":49.681},{"x":1755721021010,"y":53.989},{"x":1755720960879,"y":51.08},{"x":1755720900759,"y":56.026},{"x":1755720840633,"y":58.621},{"x":1755720780526,"y":51.92},{"x":1755720720360,"y":63.294},{"x":1755720660257,"y":50.263},{"x":1755720602927,"y":44.903},{"x":1755720542799,"y":42.535},{"x":1755720482660,"y":35.666},{"x":1755720422543,"y":41.431},{"x":1755720362419,"y":41.724},{"x":1755720302293,"y":41.932},{"x":1755720242162,"y":46.824},{"x":1755720182038,"y":43.758},{"x":1755720121903,"y":43.526},{"x":1755720061786,"y":42.343},{"x":1755720001689,"y":44.828},{"x":1755719941492,"y":50.072},{"x":1755719881368,"y":46.33},{"x":1755719821246,"y":41.67},{"x":1755719761137,"y":42.01},{"x":1755719700989,"y":41.742},{"x":1755719640859,"y":41.334},{"x":1755719580721,"y":45.492},{"x":1755719520613,"y":44.881},{"x":1755719460505,"y":44.676},{"x":1755719400340,"y":44.665},{"x":1755719342951,"y":42.083},{"x":1755719282828,"y":39.004},{"x":1755719222701,"y":41.299},{"x":1755719162594,"y":45.905},{"x":1755719102456,"y":47.106},{"x":1755719042330,"y":45.816},{"x":1755718982209,"y":61.314},{"x":1755718922081,"y":70.312},{"x":1755718861935,"y":77.597},{"x":1755718801819,"y":68.887},{"x":1755718741691,"y":66.976},{"x":1755718681563,"y":49.271},{"x":1755718621440,"y":54.652},{"x":1755718561327,"y":41.579},{"x":1755718501197,"y":41.575},{"x":1755718441071,"y":42.386},{"x":1755718380917,"y":43.038},{"x":1755718320819,"y":45.767},{"x":1755718260686,"y":61.342},{"x":1755718200631,"y":52.316},{"x":1755718140475,"y":59.884},{"x":1755718080298,"y":54.685},{"x":1755718022962,"y":54.486},{"x":1755717962834,"y":44.966},{"x":1755717902704,"y":44.941},{"x":1755717842582,"y":52.082},{"x":1755717782455,"y":43.093},{"x":1755717722325,"y":40.634},{"x":1755717662198,"y":52.446},{"x":1755717602073,"y":59.219},{"x":1755717541937,"y":54.575},{"x":1755717481813,"y":53.513},{"x":1755717421694,"y":53.554},{"x":1755717361558,"y":44.9},{"x":1755717301431,"y":47.972},{"x":1755717241307,"y":46.139},{"x":1755717181204,"y":46.445},{"x":1755717120994,"y":44.531},{"x":1755717060821,"y":50.183},{"x":1755717000699,"y":54.503},{"x":1755716940507,"y":53.783},{"x":1755716880374,"y":58.352},{"x":1755716820103,"y":62.323},{"x":1755716762924,"y":56.747},{"x":1755716702802,"y":50.041},{"x":1755716642680,"y":46.246},{"x":1755716582562,"y":43.019},{"x":1755716522430,"y":41.488},{"x":1755716462304,"y":45.478},{"x":1755716402237,"y":44.845},{"x":1755716341980,"y":40.681},{"x":1755716281860,"y":40.178},{"x":1755716221734,"y":40.206},{"x":1755716161615,"y":48.088},{"x":1755716101492,"y":44.144},{"x":1755716041368,"y":48.752},{"x":1755715981248,"y":47.65},{"x":1755715921121,"y":46.831},{"x":1755715860988,"y":65.448},{"x":1755715800874,"y":46.578},{"x":1755715740742,"y":48.841},{"x":1755715680696,"y":54.826},{"x":1755715620502,"y":76.59},{"x":1755715560471,"y":77.278},{"x":1755715500097,"y":66.172},{"x":1755715442920,"y":67.27},{"x":1755715382797,"y":55.486},{"x":1755715322678,"y":53.393},{"x":1755715262567,"y":47.734},{"x":1755715202413,"y":44.746},{"x":1755715142276,"y":48.822},{"x":1755715082150,"y":48.683},{"x":1755715022001,"y":43.589},{"x":1755714961879,"y":43.938},{"x":1755714901755,"y":57.038},{"x":1755714841630,"y":51.817},{"x":1755714781501,"y":67.913},{"x":1755714721380,"y":62.812},{"x":1755714661260,"y":50.206},{"x":1755714601193,"y":36.962},{"x":1755714540952,"y":47.293},{"x":1755714480845,"y":37.043},{"x":1755714420702,"y":33.624},{"x":1755714360629,"y":33.882},{"x":1755714300485,"y":44.869},{"x":1755714240372,"y":46.055},{"x":1755714182950,"y":46.42},{"x":1755714122828,"y":45.922},{"x":1755714062697,"y":43.124},{"x":1755714002570,"y":35.558},{"x":1755713942435,"y":31.615},{"x":1755713882316,"y":35.665},{"x":1755713822209,"y":34.402},{"x":1755713762079,"y":36.685},{"x":1755713701912,"y":36.925},{"x":1755713641787,"y":40.961},{"x":1755713581639,"y":44.291},{"x":1755713521431,"y":37.241},{"x":1755713461272,"y":39.726},{"x":1755713401110,"y":32.674},{"x":1755713340955,"y":29.774},{"x":1755713280843,"y":30.256},{"x":1755713220709,"y":29.141},{"x":1755713160592,"y":36.112},{"x":1755713100446,"y":32.239},{"x":1755713040236,"y":43.945},{"x":1755712982967,"y":59.563},{"x":1755712922844,"y":77.97},{"x":1755712862702,"y":71.248},{"x":1755712802636,"y":58.006},{"x":1755712742434,"y":54.193},{"x":1755712682301,"y":38.462},{"x":1755712622170,"y":43.564},{"x":1755712562039,"y":40.529},{"x":1755712501898,"y":40.928},{"x":1755712441767,"y":39.036},{"x":1755712381641,"y":61.921},{"x":1755712321555,"y":47.293},{"x":1755712261386,"y":48.892},{"x":1755712201258,"y":46.241},{"x":1755712141126,"y":49.039},{"x":1755712080961,"y":37.486},{"x":1755712020835,"y":40.134},{"x":1755711960706,"y":35.17},{"x":1755711900612,"y":33.968},{"x":1755711840429,"y":41.483},{"x":1755711780296,"y":46.667},{"x":1755711723017,"y":49.626},{"x":1755711662883,"y":45.78},{"x":1755711602768,"y":41.177},{"x":1755711542641,"y":42.773},{"x":1755711482536,"y":34.994},{"x":1755711422399,"y":38.36},{"x":1755711362273,"y":45.202},{"x":1755711302145,"y":36.282},{"x":1755711242018,"y":32.926},{"x":1755711181904,"y":33.102},{"x":1755711121734,"y":30.107},{"x":1755711061604,"y":34.009},{"x":1755711001517,"y":32.255},{"x":1755710941345,"y":35.378},{"x":1755710881219,"y":49.032},{"x":1755710821092,"y":46.938},{"x":1755710760944,"y":63.266},{"x":1755710700816,"y":63.391},{"x":1755710640703,"y":59.986},{"x":1755710580562,"y":68.498},{"x":1755710520474,"y":48.066},{"x":1755710460369,"y":29.987},{"x":1755710400249,"y":29.539},{"x":1755710342932,"y":34.097},{"x":1755710282818,"y":42.312},{"x":1755710222702,"y":45.523},{"x":1755710162566,"y":41.064},{"x":1755710102439,"y":44.497},{"x":1755710042329,"y":44.501},{"x":1755709982197,"y":32.555},{"x":1755709922027,"y":30.395},{"x":1755709861881,"y":30.323},{"x":1755709801734,"y":30.48},{"x":1755709741634,"y":29.89},{"x":1755709681499,"y":27.418},{"x":1755709621373,"y":32.65},{"x":1755709561257,"y":30.469},{"x":1755709501136,"y":37.732},{"x":1755709440990,"y":32.704},{"x":1755709380874,"y":32.266},{"x":1755709320734,"y":33.378},{"x":1755709260661,"y":27.329},{"x":1755709200588,"y":65.117},{"x":1755709140357,"y":51.186},{"x":1755709082962,"y":49.444},{"x":1755709022837,"y":48.112},{"x":1755708962714,"y":50.988},{"x":1755708902592,"y":30.508},{"x":1755708842476,"y":28.184},{"x":1755708782345,"y":28.427},{"x":1755708722223,"y":33.306},{"x":1755708662074,"y":38.118},{"x":1755708601946,"y":41.43},{"x":1755708541824,"y":35.164},{"x":1755708481703,"y":36.695},{"x":1755708421577,"y":43.116},{"x":1755708361450,"y":28.412},{"x":1755708301338,"y":28.698},{"x":1755708241201,"y":31.525},{"x":1755708181071,"y":50.402},{"x":1755708120934,"y":36.799},{"x":1755708060808,"y":39.784},{"x":1755708000746,"y":43.184},{"x":1755707940601,"y":45.726},{"x":1755707880444,"y":30.845},{"x":1755707820258,"y":26.942},{"x":1755707762946,"y":24.409},{"x":1755707702806,"y":27.545},{"x":1755707642689,"y":27.926},{"x":1755707582552,"y":34.633},{"x":1755707522448,"y":36.318},{"x":1755707462307,"y":29.634},{"x":1755707402172,"y":26.093},{"x":1755707342025,"y":24.838},{"x":1755707281900,"y":25.817},{"x":1755707221769,"y":55.967},{"x":1755707161647,"y":49.396},{"x":1755707101525,"y":48.187},{"x":1755707041398,"y":47.965},{"x":1755706981272,"y":42.733},{"x":1755706921141,"y":27.395},{"x":1755706860992,"y":23.018},{"x":1755706800930,"y":38.178},{"x":1755706740728,"y":34.036},{"x":1755706680630,"y":31.902},{"x":1755706620529,"y":38.915},{"x":1755706560368,"y":36.776},{"x":1755706500241,"y":33.718},{"x":1755706442955,"y":25.842},{"x":1755706382813,"y":25.781},{"x":1755706322643,"y":27.101},{"x":1755706262510,"y":29.233},{"x":1755706202328,"y":29.118},{"x":1755706142203,"y":28.691},{"x":1755706082071,"y":34.855},{"x":1755706021939,"y":35.131},{"x":1755705961796,"y":47.786},{"x":1755705901711,"y":35.849},{"x":1755705841540,"y":38.602},{"x":1755705781442,"y":20.896},{"x":1755705721289,"y":19.974},{"x":1755705661201,"y":31.086},{"x":1755705601152,"y":21.766},{"x":1755705540804,"y":22.319},{"x":1755705480665,"y":33.99},{"x":1755705420520,"y":36.911},{"x":1755705360383,"y":46.814},{"x":1755705300300,"y":49.093},{"x":1755705242951,"y":51.872},{"x":1755705182798,"y":45.874},{"x":1755705122600,"y":50.446},{"x":1755705062459,"y":26.544},{"x":1755705002343,"y":25.775},{"x":1755704942188,"y":35.106},{"x":1755704882054,"y":34.939},{"x":1755704821916,"y":44.021},{"x":1755704761773,"y":43.396},{"x":1755704701641,"y":47.749},{"x":1755704641507,"y":32.164},{"x":1755704581380,"y":32.323},{"x":1755704521257,"y":28.58},{"x":1755704461128,"y":26.446},{"x":1755704401031,"y":33.792},{"x":1755704340833,"y":41.248},{"x":1755704280708,"y":37.111},{"x":1755704220592,"y":20.365},{"x":1755704160582,"y":23.18},{"x":1755704100286,"y":45.074},{"x":1755704043023,"y":50.008},{"x":1755703982886,"y":46.67},{"x":1755703922761,"y":44.966},{"x":1755703862634,"y":43.83},{"x":1755703802513,"y":19.538},{"x":1755703742379,"y":20.618},{"x":1755703682250,"y":18.221},{"x":1755703622118,"y":22.177},{"x":1755703561975,"y":28.498},{"x":1755703501849,"y":28.406},{"x":1755703441724,"y":34.279},{"x":1755703381593,"y":31.183},{"x":1755703321465,"y":24.3},{"x":1755703261342,"y":18.446},{"x":1755703201238,"y":15.512},{"x":1755703141057,"y":31.343},{"x":1755703080922,"y":32.754},{"x":1755703020827,"y":30.125},{"x":1755702960686,"y":33.169},{"x":1755702900585,"y":33.046},{"x":1755702840535,"y":36.486},{"x":1755702780261,"y":19.468},{"x":1755702722953,"y":31.064},{"x":1755702662797,"y":26.993},{"x":1755702602642,"y":24.312},{"x":1755702542525,"y":17.231},{"x":1755702482400,"y":17.134},{"x":1755702422271,"y":17.054},{"x":1755702362141,"y":16.896},{"x":1755702302009,"y":20.375},{"x":1755702241866,"y":21.938},{"x":1755702181744,"y":40.75},{"x":1755702121627,"y":31.292},{"x":1755702061505,"y":41.591},{"x":1755702001452,"y":35.54},{"x":1755701941212,"y":35.214},{"x":1755701881094,"y":37.35},{"x":1755701820954,"y":26.124},{"x":1755701760837,"y":13.042},{"x":1755701700727,"y":13.871},{"x":1755701640572,"y":18.979},{"x":1755701580476,"y":34.004},{"x":1755701520273,"y":35.0},{"x":1755701462967,"y":39.592},{"x":1755701402844,"y":34.399},{"x":1755701342728,"y":33.948},{"x":1755701282602,"y":36.658},{"x":1755701222480,"y":23.732},{"x":1755701162354,"y":15.731},{"x":1755701102229,"y":16.585},{"x":1755701042106,"y":37.751},{"x":1755700981956,"y":25.333},{"x":1755700921761,"y":23.61},{"x":1755700861640,"y":27.192},{"x":1755700801521,"y":33.732},{"x":1755700741388,"y":14.994},{"x":1755700681260,"y":36.184},{"x":1755700621135,"y":26.178},{"x":1755700560991,"y":13.739},{"x":1755700500879,"y":12.973},{"x":1755700440742,"y":19.71},{"x":1755700380622,"y":13.6},{"x":1755700320540,"y":24.055},{"x":1755700260478,"y":23.723},{"x":1755700200289,"y":26.04},{"x":1755700142936,"y":29.171},{"x":1755700082833,"y":45.985},{"x":1755700022703,"y":46.108},{"x":1755699962569,"y":42.146},{"x":1755699902443,"y":34.794},{"x":1755699842317,"y":21.973},{"x":1755699782197,"y":17.404},{"x":1755699722070,"y":21.899},{"x":1755699661922,"y":15.419},{"x":1755699601801,"y":16.837},{"x":1755699541681,"y":27.5},{"x":1755699481560,"y":22.674},{"x":1755699421435,"y":23.429},{"x":1755699361304,"y":24.029},{"x":1755699301179,"y":27.997},{"x":1755699241020,"y":22.393},{"x":1755699180878,"y":17.56},{"x":1755699120791,"y":22.648},{"x":1755699060510,"y":30.474},{"x":1755699000427,"y":28.39},{"x":1755698940240,"y":27.16},{"x":1755698882956,"y":26.501},{"x":1755698822821,"y":27.379},{"x":1755698762689,"y":16.542},{"x":1755698702562,"y":11.135},{"x":1755698642438,"y":13.898},{"x":1755698582303,"y":17.782},{"x":1755698522183,"y":21.396},{"x":1755698462022,"y":18.713},{"x":1755698401753,"y":18.49},{"x":1755698341542,"y":16.084},{"x":1755698281420,"y":15.746},{"x":1755698221287,"y":9.892},{"x":1755698161161,"y":20.134},{"x":1755698101007,"y":20.008},{"x":1755698040879,"y":35.683},{"x":1755697980757,"y":31.055},{"x":1755697920635,"y":33.701},{"x":1755697860475,"y":21.125},{"x":1755697800352,"y":26.44},{"x":1755697740192,"y":18.307},{"x":1755697682917,"y":16.998},{"x":1755697622797,"y":16.259},{"x":1755697562673,"y":25.458},{"x":1755697502545,"y":21.413},{"x":1755697442417,"y":20.504},{"x":1755697382288,"y":21.157},{"x":1755697322160,"y":28.46},{"x":1755697261995,"y":21.692},{"x":1755697201857,"y":9.642},{"x":1755697141729,"y":12.352},{"x":1755697081601,"y":15.348},{"x":1755697021470,"y":23.105},{"x":1755696961345,"y":30.94},{"x":1755696901210,"y":29.683},{"x":1755696841078,"y":30.85},{"x":1755696780933,"y":30.718},{"x":1755696720805,"y":7.613},{"x":1755696660690,"y":6.953},{"x":1755696600552,"y":9.205},{"x":1755696540438,"y":8.01},{"x":1755696480303,"y":5.945},{"x":1755696422970,"y":22.168},{"x":1755696362856,"y":5.419},{"x":1755696302711,"y":11.579},{"x":1755696242603,"y":8.279},{"x":1755696182449,"y":21.985},{"x":1755696122316,"y":23.68},{"x":1755696062175,"y":18.438},{"x":1755696002068,"y":14.53},{"x":1755695941908,"y":27.463},{"x":1755695881781,"y":35.242},{"x":1755695821658,"y":27.581},{"x":1755695761526,"y":31.94},{"x":1755695701430,"y":41.36},{"x":1755695641285,"y":49.59},{"x":1755695581142,"y":33.745},{"x":1755695520982,"y":22.256},{"x":1755695460824,"y":11.192},{"x":1755695400726,"y":7.948},{"x":1755695340554,"y":11.821},{"x":1755695280465,"y":9.497},{"x":1755695220272,"y":33.434},{"x":1755695163007,"y":31.126},{"x":1755695102879,"y":24.923},{"x":1755695042758,"y":18.661},{"x":1755694982634,"y":17.62},{"x":1755694922508,"y":11.18},{"x":1755694862380,"y":4.342},{"x":1755694802209,"y":11.597},{"x":1755694741959,"y":6.81},{"x":1755694681832,"y":23.099},{"x":1755694621703,"y":22.993},{"x":1755694561583,"y":31.409},{"x":1755694501459,"y":21.604},{"x":1755694441352,"y":14.875},{"x":1755694381196,"y":3.7},{"x":1755694321082,"y":8.118},{"x":1755694260933,"y":8.653},{"x":1755694200821,"y":11.327},{"x":1755694140674,"y":22.849},{"x":1755694080585,"y":25.094},{"x":1755694020460,"y":24.478},{"x":1755693960297,"y":20.428},{"x":1755693903007,"y":16.921},{"x":1755693842869,"y":13.05},{"x":1755693782742,"y":15.109},{"x":1755693722621,"y":15.012},{"x":1755693662505,"y":8.342},{"x":1755693602377,"y":11.914},{"x":1755693542253,"y":11.126},{"x":1755693482122,"y":25.7},{"x":1755693421989,"y":9.808},{"x":1755693361861,"y":22.07},{"x":1755693301742,"y":8.729},{"x":1755693241613,"y":4.782},{"x":1755693181490,"y":8.209},{"x":1755693121365,"y":14.836},{"x":1755693061233,"y":14.35},{"x":1755693001151,"y":16.476},{"x":1755692940945,"y":18.839},{"x":1755692880819,"y":41.306},{"x":1755692820680,"y":36.875},{"x":1755692760581,"y":36.518},{"x":1755692700466,"y":28.094},{"x":1755692640273,"y":17.178},{"x":1755692583009,"y":6.625},{"x":1755692522875,"y":7.892},{"x":1755692462754,"y":8.389},{"x":1755692402625,"y":15.832},{"x":1755692342503,"y":14.113},{"x":1755692282369,"y":13.063},{"x":1755692222234,"y":26.036},{"x":1755692162098,"y":35.257},{"x":1755692101963,"y":43.21},{"x":1755692041853,"y":16.164},{"x":1755691981689,"y":25.542},{"x":1755691921570,"y":7.206},{"x":1755691861398,"y":9.718},{"x":1755691801254,"y":18.37},{"x":1755691741116,"y":16.114},{"x":1755691680976,"y":29.842},{"x":1755691620843,"y":25.093},{"x":1755691560720,"y":37.072},{"x":1755691500648,"y":26.897},{"x":1755691440438,"y":13.254},{"x":1755691380283,"y":2.84},{"x":1755691322958,"y":11.509},{"x":1755691262833,"y":6.913},{"x":1755691202769,"y":12.576},{"x":1755691142573,"y":22.037},{"x":1755691082443,"y":21.186},{"x":1755691022320,"y":13.828},{"x":1755690962197,"y":21.094},{"x":1755690902075,"y":16.484},{"x":1755690841944,"y":20.731},{"x":1755690781815,"y":13.115},{"x":1755690721693,"y":13.488},{"x":1755690661568,"y":10.578},{"x":1755690601448,"y":9.634},{"x":1755690541319,"y":15.434},{"x":1755690481188,"y":8.233},{"x":1755690421062,"y":9.888},{"x":1755690360938,"y":12.562},{"x":1755690300891,"y":6.754},{"x":1755690240709,"y":13.38},{"x":1755690180581,"y":12.725},{"x":1755690120494,"y":16.37},{"x":1755690060202,"y":8.818},{"x":1755690002945,"y":23.099},{"x":1755689942815,"y":21.902},{"x":1755689882691,"y":19.812},{"x":1755689822557,"y":35.65},{"x":1755689762436,"y":31.633},{"x":1755689702303,"y":41.306},{"x":1755689642192,"y":24.322},{"x":1755689582066,"y":35.885},{"x":1755689521925,"y":39.733},{"x":1755689461801,"y":32.605},{"x":1755689401716,"y":39.682},{"x":1755689341550,"y":32.801},{"x":1755689281412,"y":28.052},{"x":1755689221296,"y":26.076},{"x":1755689161153,"y":35.946},{"x":1755689101012,"y":43.703},{"x":1755689040899,"y":41.939},{"x":1755688980757,"y":40.171},{"x":1755688920661,"y":44.465},{"x":1755688860497,"y":41.797},{"x":1755688800303,"y":46.972},{"x":1755688742936,"y":44.705},{"x":1755688682801,"y":23.572},{"x":1755688622685,"y":9.943},{"x":1755688562534,"y":11.885},{"x":1755688502403,"y":15.655},{"x":1755688442277,"y":4.058},{"x":1755688382135,"y":15.976},{"x":1755688321955,"y":23.087},{"x":1755688261804,"y":24.088},{"x":1755688201642,"y":19.909},{"x":1755688141518,"y":25.589},{"x":1755688081390,"y":31.022},{"x":1755688021263,"y":24.258},{"x":1755687961142,"y":14.238},{"x":1755687901004,"y":9.557},{"x":1755687840870,"y":7.336},{"x":1755687780751,"y":15.506},{"x":1755687720619,"y":4.542},{"x":1755687660534,"y":14.248},{"x":1755687600435,"y":11.134},{"x":1755687542942,"y":6.223},{"x":1755687482808,"y":3.902},{"x":1755687422670,"y":23.801},{"x":1755687362538,"y":33.911},{"x":1755687302405,"y":29.67},{"x":1755687242277,"y":23.443},{"x":1755687182147,"y":25.964},{"x":1755687121998,"y":20.952},{"x":1755687061858,"y":17.941},{"x":1755687001727,"y":7.33},{"x":1755686941602,"y":6.114},{"x":1755686881475,"y":9.841},{"x":1755686821325,"y":8.122},{"x":1755686761199,"y":10.183},{"x":1755686701103,"y":10.753},{"x":1755686640914,"y":17.234},{"x":1755686580776,"y":22.082},{"x":1755686520683,"y":18.607},{"x":1755686460443,"y":19.12},{"x":1755686400340,"y":23.233},{"x":1755686340157,"y":11.444},{"x":1755686282906,"y":18.073},{"x":1755686222783,"y":17.946},{"x":1755686162657,"y":19.264},{"x":1755686102523,"y":13.336},{"x":1755686042399,"y":9.796},{"x":1755685982280,"y":18.634},{"x":1755685922153,"y":14.264},{"x":1755685862022,"y":12.782},{"x":1755685801901,"y":14.89},{"x":1755685741763,"y":26.378},{"x":1755685681636,"y":21.713},{"x":1755685621507,"y":26.816},{"x":1755685561376,"y":35.252},{"x":1755685501252,"y":25.19},{"x":1755685441117,"y":40.487},{"x":1755685380972,"y":18.092},{"x":1755685320873,"y":27.128},{"x":1755685260725,"y":32.604},{"x":1755685200683,"y":18.82},{"x":1755685140459,"y":13.667},{"x":1755685080368,"y":15.259},{"x":1755685020292,"y":13.848},{"x":1755684962935,"y":14.393},{"x":1755684902806,"y":24.935},{"x":1755684842701,"y":22.476},{"x":1755684782532,"y":10.723},{"x":1755684722399,"y":23.819},{"x":1755684662256,"y":22.823},{"x":1755684602132,"y":25.434},{"x":1755684541956,"y":22.385},{"x":1755684481816,"y":15.671},{"x":1755684421690,"y":15.516},{"x":1755684361548,"y":17.9},{"x":1755684301428,"y":11.202},{"x":1755684241301,"y":26.354},{"x":1755684181178,"y":18.832},{"x":1755684121016,"y":22.013},{"x":1755684060888,"y":23.184},{"x":1755684000993,"y":21.143},{"x":1755683940592,"y":13.451},{"x":1755683880484,"y":21.649},{"x":1755683820452,"y":16.366},{"x":1755683762972,"y":21.163},{"x":1755683702845,"y":34.846},{"x":1755683642719,"y":14.471},{"x":1755683582595,"y":11.168},{"x":1755683522466,"y":11.086},{"x":1755683462343,"y":14.719},{"x":1755683402206,"y":16.507},{"x":1755683342078,"y":18.458},{"x":1755683281943,"y":20.772},{"x":1755683221819,"y":17.996},{"x":1755683161694,"y":16.027},{"x":1755683101577,"y":20.017},{"x":1755683041451,"y":22.774},{"x":1755682981309,"y":25.429},{"x":1755682921129,"y":20.585},{"x":1755682860981,"y":20.539},{"x":1755682800940,"y":29.216},{"x":1755682740715,"y":13.819},{"x":1755682680575,"y":14.378},{"x":1755682620495,"y":12.624},{"x":1755682560361,"y":17.594},{"x":1755682500245,"y":32.26},{"x":1755682442951,"y":23.76},{"x":1755682382830,"y":35.958},{"x":1755682322708,"y":17.623},{"x":1755682262586,"y":20.015},{"x":1755682202470,"y":14.76},{"x":1755682142319,"y":18.461},{"x":1755682082197,"y":26.339},{"x":1755682022073,"y":27.18},{"x":1755681961937,"y":29.13},{"x":1755681901814,"y":23.473},{"x":1755681841690,"y":24.046},{"x":1755681781580,"y":18.844},{"x":1755681721442,"y":17.634},{"x":1755681661318,"y":35.816},{"x":1755681601174,"y":24.761},{"x":1755681541031,"y":20.765},{"x":1755681480899,"y":20.038},{"x":1755681420836,"y":12.374},{"x":1755681360654,"y":15.896},{"x":1755681300653,"y":20.844},{"x":1755681240270,"y":14.046},{"x":1755681180168,"y":13.795},{"x":1755681122869,"y":27.65},{"x":1755681062733,"y":20.024},{"x":1755681002583,"y":22.714},{"x":1755680942468,"y":17.75},{"x":1755680882327,"y":19.943},{"x":1755680822205,"y":29.376},{"x":1755680762075,"y":13.175},{"x":1755680701946,"y":12.752},{"x":1755680641820,"y":16.466},{"x":1755680581697,"y":10.507},{"x":1755680521568,"y":16.428},{"x":1755680461462,"y":19.439},{"x":1755680401444,"y":15.517},{"x":1755680341186,"y":19.457},{"x":1755680281060,"y":17.381},{"x":1755680220914,"y":25.246},{"x":1755680160786,"y":25.032},{"x":1755680100670,"y":16.019},{"x":1755680040556,"y":36.67},{"x":1755679980396,"y":41.608},{"x":1755679920223,"y":59.933},{"x":1755679862958,"y":61.861},{"x":1755679802839,"y":24.421},{"x":1755679742710,"y":17.485},{"x":1755679682567,"y":21.479},{"x":1755679622440,"y":22.272},{"x":1755679562318,"y":20.225},{"x":1755679502196,"y":23.748},{"x":1755679442059,"y":27.234},{"x":1755679381919,"y":21.806},{"x":1755679321767,"y":25.015},{"x":1755679261613,"y":21.714},{"x":1755679201482,"y":39.781},{"x":1755679141362,"y":26.856},{"x":1755679081234,"y":29.602},{"x":1755679021097,"y":29.581},{"x":1755678960947,"y":28.76},{"x":1755678900826,"y":36.504},{"x":1755678840651,"y":37.662},{"x":1755678780542,"y":39.43},{"x":1755678720406,"y":38.88},{"x":1755678662995,"y":35.813},{"x":1755678602801,"y":27.6},{"x":1755678542753,"y":21.564},{"x":1755678482557,"y":21.158},{"x":1755678422416,"y":23.004},{"x":1755678362284,"y":25.739},{"x":1755678302161,"y":27.025},{"x":1755678242023,"y":20.204},{"x":1755678181892,"y":30.98},{"x":1755678121770,"y":31.122},{"x":1755678061639,"y":23.284},{"x":1755678001524,"y":21.937},{"x":1755677941381,"y":13.96},{"x":1755677881262,"y":13.667},{"x":1755677821141,"y":9.322},{"x":1755677761004,"y":20.767},{"x":1755677700900,"y":27.994},{"x":1755677640758,"y":29.759},{"x":1755677580655,"y":28.585},{"x":1755677520418,"y":22.111},{"x":1755677460187,"y":18.455},{"x":1755677402941,"y":20.264},{"x":1755677342826,"y":17.428},{"x":1755677282692,"y":19.909},{"x":1755677222574,"y":22.486},{"x":1755677162447,"y":27.71},{"x":1755677102297,"y":28.114},{"x":1755677042175,"y":29.626},{"x":1755676982050,"y":35.636},{"x":1755676921918,"y":31.879},{"x":1755676861789,"y":25.676},{"x":1755676801643,"y":23.35},{"x":1755676741491,"y":25.534},{"x":1755676681359,"y":24.52},{"x":1755676621226,"y":13.91},{"x":1755676561093,"y":15.167},{"x":1755676500954,"y":16.343},{"x":1755676440814,"y":16.862},{"x":1755676380670,"y":20.582},{"x":1755676320615,"y":20.242},{"x":1755676260390,"y":28.714},{"x":1755676200410,"y":29.893},{"x":1755676142915,"y":29.79},{"x":1755676082793,"y":26.534},{"x":1755676022667,"y":30.215},{"x":1755675962560,"y":29.992},{"x":1755675902395,"y":26.465},{"x":1755675842267,"y":28.84},{"x":1755675782134,"y":30.302},{"x":1755675721991,"y":33.166},{"x":1755675661858,"y":29.791},{"x":1755675601739,"y":28.445},{"x":1755675541610,"y":22.328},{"x":1755675481489,"y":25.946},{"x":1755675421366,"y":24.96},{"x":1755675361242,"y":26.798},{"x":1755675301104,"y":32.311},{"x":1755675240947,"y":25.207},{"x":1755675180811,"y":20.012},{"x":1755675120711,"y":29.243},{"x":1755675060538,"y":27.004},{"x":1755675000334,"y":29.608},{"x":1755674942938,"y":26.696},{"x":1755674882813,"y":24.89},{"x":1755674822697,"y":26.918},{"x":1755674762560,"y":26.606},{"x":1755674702437,"y":30.36},{"x":1755674642312,"y":33.464},{"x":1755674582187,"y":27.592},{"x":1755674522028,"y":29.395},{"x":1755674461895,"y":29.272},{"x":1755674401742,"y":25.59},{"x":1755674341638,"y":25.47},{"x":1755674281491,"y":28.673},{"x":1755674221357,"y":27.488},{"x":1755674161234,"y":36.833},{"x":1755674101112,"y":30.841},{"x":1755674040977,"y":30.228},{"x":1755673980835,"y":33.21},{"x":1755673920761,"y":34.625},{"x":1755673860572,"y":26.033},{"x":1755673800433,"y":25.884},{"x":1755673740359,"y":32.693},{"x":1755673683012,"y":30.767},{"x":1755673622863,"y":24.546},{"x":1755673562738,"y":59.42},{"x":1755673502617,"y":56.24},{"x":1755673442490,"y":57.756},{"x":1755673382381,"y":60.499},{"x":1755673322167,"y":63.44},{"x":1755673262033,"y":43.188},{"x":1755673201842,"y":40.357},{"x":1755673141549,"y":36.838},{"x":1755673081409,"y":39.461},{"x":1755673021285,"y":32.092},{"x":1755672961153,"y":30.649},{"x":1755672901018,"y":32.332},{"x":1755672840888,"y":29.412},{"x":1755672780767,"y":27.881},{"x":1755672720645,"y":29.407},{"x":1755672660470,"y":23.519},{"x":1755672600261,"y":28.598},{"x":1755672543017,"y":35.212},{"x":1755672482877,"y":31.446},{"x":1755672422756,"y":30.077},{"x":1755672362620,"y":29.693},{"x":1755672302488,"y":23.996},{"x":1755672242366,"y":24.289},{"x":1755672182235,"y":24.84},{"x":1755672122103,"y":26.088},{"x":1755672061956,"y":25.015},{"x":1755672001840,"y":29.73},{"x":1755671941703,"y":31.958},{"x":1755671881580,"y":31.819},{"x":1755671821460,"y":32.623},{"x":1755671761331,"y":32.016},{"x":1755671701211,"y":29.972},{"x":1755671641065,"y":26.461},{"x":1755671580933,"y":26.6},{"x":1755671520812,"y":29.692},{"x":1755671460690,"y":24.844},{"x":1755671400673,"y":25.339},{"x":1755671340433,"y":28.312},{"x":1755671280315,"y":28.51},{"x":1755671222975,"y":39.396},{"x":1755671162837,"y":59.532},{"x":1755671102714,"y":42.013},{"x":1755671042590,"y":57.289},{"x":1755670982463,"y":33.336},{"x":1755670922325,"y":43.813},{"x":1755670862190,"y":26.309},{"x":1755670802069,"y":45.42},{"x":1755670741939,"y":44.724},{"x":1755670681809,"y":32.366},{"x":1755670621690,"y":44.803},{"x":1755670561552,"y":43.888},{"x":1755670501429,"y":42.924},{"x":1755670441311,"y":31.076},{"x":1755670381164,"y":30.222},{"x":1755670320994,"y":28.726},{"x":1755670260852,"y":25.934},{"x":1755670200757,"y":26.488},{"x":1755670140617,"y":22.561},{"x":1755670080477,"y":25.128},{"x":1755670020251,"y":24.422},{"x":1755669962966,"y":24.973},{"x":1755669902824,"y":25.519},{"x":1755669842714,"y":24.41},{"x":1755669782569,"y":24.449},{"x":1755669722443,"y":24.78},{"x":1755669662316,"y":30.822},{"x":1755669602304,"y":28.471},{"x":1755669542024,"y":27.359},{"x":1755669481885,"y":30.908},{"x":1755669421756,"y":29.784},{"x":1755669361628,"y":33.844},{"x":1755669301491,"y":29.629},{"x":1755669241361,"y":20.74},{"x":1755669181238,"y":24.851},{"x":1755669121118,"y":25.45},{"x":1755669060984,"y":29.327},{"x":1755669000897,"y":25.637},{"x":1755668940673,"y":24.166},{"x":1755668880574,"y":37.354},{"x":1755668820467,"y":38.35},{"x":1755668760357,"y":42.606},{"x":1755668700090,"y":38.262},{"x":1755668642905,"y":37.324},{"x":1755668582767,"y":26.465},{"x":1755668522645,"y":24.116},{"x":1755668462510,"y":31.748},{"x":1755668402377,"y":27.444},{"x":1755668342249,"y":28.685},{"x":1755668282116,"y":30.716},{"x":1755668221983,"y":29.846},{"x":1755668161856,"y":33.574},{"x":1755668101734,"y":29.884},{"x":1755668041618,"y":28.693},{"x":1755667981498,"y":29.051},{"x":1755667921372,"y":29.669},{"x":1755667861238,"y":30.784},{"x":1755667801149,"y":26.116},{"x":1755667740930,"y":24.496},{"x":1755667680874,"y":24.797},{"x":1755667620663,"y":26.492},{"x":1755667560652,"y":31.561},{"x":1755667500409,"y":26.392},{"x":1755667440198,"y":28.862},{"x":1755667382945,"y":32.246},{"x":1755667322826,"y":29.392},{"x":1755667262682,"y":32.108},{"x":1755667202549,"y":29.094},{"x":1755667142425,"y":24.768},{"x":1755667082299,"y":27.349},{"x":1755667022169,"y":26.437},{"x":1755666962036,"y":23.79},{"x":1755666901899,"y":24.318},{"x":1755666841772,"y":24.152},{"x":1755666781605,"y":24.799},{"x":1755666721445,"y":26.243},{"x":1755666661302,"y":38.358},{"x":1755666601163,"y":40.679},{"x":1755666540971,"y":39.599},{"x":1755666480846,"y":40.12},{"x":1755666420722,"y":37.034},{"x":1755666360596,"y":27.307},{"x":1755666300515,"y":26.918},{"x":1755666240468,"y":27.314},{"x":1755666180245,"y":26.696},{"x":1755666122972,"y":25.427},{"x":1755666062851,"y":27.382},{"x":1755666002751,"y":24.716},{"x":1755665942601,"y":26.31},{"x":1755665882482,"y":27.868},{"x":1755665822355,"y":29.713},{"x":1755665762226,"y":28.042},{"x":1755665702097,"y":27.733},{"x":1755665641959,"y":27.293},{"x":1755665581829,"y":36.821},{"x":1755665521694,"y":36.208},{"x":1755665461560,"y":35.003},{"x":1755665401441,"y":37.997},{"x":1755665341314,"y":32.048},{"x":1755665281190,"y":29.11},{"x":1755665221063,"y":28.57},{"x":1755665160935,"y":28.423},{"x":1755665100833,"y":34.438},{"x":1755665040677,"y":30.025},{"x":1755664980587,"y":29.336},{"x":1755664920470,"y":31.169},{"x":1755664860125,"y":28.65},{"x":1755664802899,"y":32.99},{"x":1755664742768,"y":30.959},{"x":1755664682659,"y":28.404},{"x":1755664622518,"y":27.622},{"x":1755664562399,"y":26.784},{"x":1755664502270,"y":29.032},{"x":1755664442148,"y":25.243},{"x":1755664382032,"y":27.725},{"x":1755664321888,"y":29.042},{"x":1755664261764,"y":28.429},{"x":1755664201671,"y":42.643},{"x":1755664141519,"y":42.007},{"x":1755664081391,"y":43.932},{"x":1755664021265,"y":40.208},{"x":1755663961127,"y":37.045},{"x":1755663901027,"y":32.363},{"x":1755663840873,"y":28.234},{"x":1755663780765,"y":29.11},{"x":1755663720653,"y":28.912},{"x":1755663660502,"y":31.009},{"x":1755663600424,"y":40.627},{"x":1755663540270,"y":39.493},{"x":1755663482920,"y":31.055},{"x":1755663422788,"y":31.273},{"x":1755663362658,"y":25.092},{"x":1755663302552,"y":25.963},{"x":1755663242393,"y":38.262},{"x":1755663182244,"y":26.994},{"x":1755663122111,"y":23.082},{"x":1755663061923,"y":26.876},{"x":1755663001806,"y":31.764},{"x":1755662941685,"y":29.9},{"x":1755662881560,"y":33.875},{"x":1755662821431,"y":32.356},{"x":1755662761313,"y":31.902},{"x":1755662701189,"y":42.084},{"x":1755662641039,"y":26.436},{"x":1755662580909,"y":27.872},{"x":1755662520789,"y":38.042},{"x":1755662460679,"y":38.579},{"x":1755662400459,"y":38.184},{"x":1755662340283,"y":40.105},{"x":1755662282975,"y":39.242},{"x":1755662222863,"y":29.312},{"x":1755662162717,"y":32.155},{"x":1755662102589,"y":34.069},{"x":1755662042465,"y":33.349},{"x":1755661982334,"y":29.542},{"x":1755661922210,"y":31.028},{"x":1755661862095,"y":26.73},{"x":1755661801927,"y":27.132},{"x":1755661741779,"y":33.898},{"x":1755661681672,"y":31.118},{"x":1755661621509,"y":30.961},{"x":1755661561370,"y":28.303},{"x":1755661501250,"y":31.612},{"x":1755661441117,"y":36.707},{"x":1755661380978,"y":29.687},{"x":1755661320856,"y":29.036},{"x":1755661260721,"y":27.648},{"x":1755661200654,"y":28.886},{"x":1755661140534,"y":30.025},{"x":1755661080399,"y":25.727},{"x":1755661022974,"y":25.748},{"x":1755660962036,"y":26.051},{"x":1755660901905,"y":27.047},{"x":1755660841778,"y":32.399},{"x":1755660781652,"y":41.24},{"x":1755660721500,"y":45.584},{"x":1755660661377,"y":38.298},{"x":1755660601255,"y":37.1},{"x":1755660541128,"y":38.135},{"x":1755660480991,"y":30.522},{"x":1755660420864,"y":28.26},{"x":1755660360720,"y":27.881},{"x":1755660300612,"y":26.268},{"x":1755660240449,"y":30.192},{"x":1755660180327,"y":27.539},{"x":1755660123026,"y":29.69},{"x":1755660062869,"y":29.555},{"x":1755660002741,"y":56.734},{"x":1755659942609,"y":60.259},{"x":1755659882481,"y":54.395},{"x":1755659822387,"y":53.603},{"x":1755659762226,"y":55.638},{"x":1755659702081,"y":28.774},{"x":1755659641933,"y":33.598},{"x":1755659581776,"y":29.552},{"x":1755659521641,"y":30.146},{"x":1755659461465,"y":29.699},{"x":1755659401330,"y":33.998},{"x":1755659341207,"y":44.201},{"x":1755659281078,"y":36.625},{"x":1755659220927,"y":41.302},{"x":1755659160801,"y":32.008},{"x":1755659100705,"y":29.208},{"x":1755659040599,"y":33.893},{"x":1755658982779,"y":27.282},{"x":1755658922620,"y":27.394},{"x":1755658862457,"y":26.759},{"x":1755658801587,"y":37.554},{"x":1755658741405,"y":32.894},{"x":1755658681275,"y":28.453},{"x":1755658621152,"y":34.442},{"x":1755658560960,"y":31.826},{"x":1755658500852,"y":32.413},{"x":1755658440689,"y":31.398},{"x":1755658380579,"y":26.42},{"x":1755658320434,"y":26.412},{"x":1755658260337,"y":26.03},{"x":1755658203021,"y":27.442},{"x":1755658142901,"y":30.004},{"x":1755658082757,"y":29.899},{"x":1755658022629,"y":31.433},{"x":1755657962513,"y":29.755},{"x":1755657902380,"y":32.784},{"x":1755657842251,"y":28.78},{"x":1755657782128,"y":27.366},{"x":1755657722023,"y":26.713},{"x":1755657661872,"y":25.973},{"x":1755657601754,"y":26.568},{"x":1755657541624,"y":26.406},{"x":1755657481497,"y":31.865},{"x":1755657421374,"y":32.646},{"x":1755657361254,"y":32.876},{"x":1755657301135,"y":31.746},{"x":1755657240981,"y":31.369},{"x":1755657180854,"y":28.292},{"x":1755657120741,"y":28.331},{"x":1755657060656,"y":29.084},{"x":1755657000493,"y":27.692},{"x":1755656940276,"y":30.102},{"x":1755656880266,"y":26.16},{"x":1755656822915,"y":26.576},{"x":1755656762775,"y":26.362},{"x":1755656702646,"y":27.0},{"x":1755656642519,"y":29.152},{"x":1755656582398,"y":42.815},{"x":1755656522282,"y":42.336},{"x":1755656462142,"y":38.009},{"x":1755656402012,"y":36.323},{"x":1755656341866,"y":33.798},{"x":1755656281729,"y":33.82},{"x":1755656221600,"y":28.32},{"x":1755656161466,"y":27.451},{"x":1755656101341,"y":26.815},{"x":1755656041206,"y":25.97},{"x":1755655981075,"y":29.648},{"x":1755655920919,"y":25.931},{"x":1755655860755,"y":26.556},{"x":1755655800661,"y":30.24},{"x":1755655740500,"y":33.445},{"x":1755655680381,"y":35.506},{"x":1755655622994,"y":56.558},{"x":1755655562864,"y":51.46},{"x":1755655502758,"y":47.802},{"x":1755655442613,"y":48.335},{"x":1755655382491,"y":49.345},{"x":1755655322347,"y":32.72},{"x":1755655262220,"y":25.651},{"x":1755655202170,"y":28.786},{"x":1755655141946,"y":28.345},{"x":1755655081816,"y":28.922},{"x":1755655021689,"y":41.164},{"x":1755654961560,"y":32.251},{"x":1755654901425,"y":28.562},{"x":1755654841301,"y":28.802},{"x":1755654781167,"y":25.986},{"x":1755654721040,"y":30.32},{"x":1755654660909,"y":28.042},{"x":1755654600800,"y":27.701},{"x":1755654540642,"y":30.71},{"x":1755654480768,"y":29.326},{"x":1755654420372,"y":35.192},{"x":1755654360165,"y":28.346},{"x":1755654302957,"y":28.868},{"x":1755654242841,"y":29.536},{"x":1755654182719,"y":29.414},{"x":1755654122597,"y":32.393},{"x":1755654062440,"y":27.784},{"x":1755654002297,"y":25.49},{"x":1755653942159,"y":25.249},{"x":1755653882038,"y":26.839},{"x":1755653821890,"y":35.216},{"x":1755653761764,"y":31.189},{"x":1755653701634,"y":30.078},{"x":1755653641510,"y":33.517},{"x":1755653581383,"y":35.252},{"x":1755653521259,"y":36.912},{"x":1755653461128,"y":34.132},{"x":1755653401062,"y":33.416},{"x":1755653340838,"y":27.973},{"x":1755653280740,"y":27.164},{"x":1755653220659,"y":31.673},{"x":1755653160557,"y":26.952},{"x":1755653100314,"y":37.247},{"x":1755653040278,"y":37.542},{"x":1755652982935,"y":42.217},{"x":1755652922813,"y":46.166},{"x":1755652862692,"y":40.934},{"x":1755652802562,"y":37.574},{"x":1755652742436,"y":34.022},{"x":1755652682316,"y":32.129},{"x":1755652622189,"y":36.05},{"x":1755652562050,"y":26.894},{"x":1755652501937,"y":25.154},{"x":1755652441787,"y":25.604},{"x":1755652381660,"y":29.21},{"x":1755652321492,"y":30.072},{"x":1755652261347,"y":29.906},{"x":1755652201209,"y":32.623},{"x":1755652141055,"y":34.397},{"x":1755652080921,"y":28.279},{"x":1755652020803,"y":27.638},{"x":1755651960674,"y":31.188},{"x":1755651900672,"y":29.64},{"x":1755651840452,"y":29.368},{"x":1755651780335,"y":28.007},{"x":1755651722984,"y":27.769},{"x":1755651662858,"y":30.985},{"x":1755651602742,"y":30.029},{"x":1755651542589,"y":30.386},{"x":1755651482467,"y":30.844},{"x":1755651422341,"y":29.358},{"x":1755651362211,"y":32.478},{"x":1755651302109,"y":31.192},{"x":1755651241946,"y":31.495},{"x":1755651181821,"y":43.64},{"x":1755651121697,"y":55.888},{"x":1755651061573,"y":54.863},{"x":1755651001454,"y":56.747},{"x":1755650941329,"y":53.413},{"x":1755650881203,"y":38.774},{"x":1755650821072,"y":30.037},{"x":1755650760932,"y":34.108},{"x":1755650700844,"y":34.92},{"x":1755650640694,"y":33.29},{"x":1755650580516,"y":30.78},{"x":1755650520385,"y":33.248},{"x":1755650460288,"y":30.756},{"x":1755650402933,"y":30.252},{"x":1755650342805,"y":29.828},{"x":1755650282678,"y":31.528},{"x":1755650222555,"y":28.57},{"x":1755650162423,"y":26.779},{"x":1755650102309,"y":27.662},{"x":1755650042171,"y":26.543},{"x":1755649982043,"y":29.867},{"x":1755649921926,"y":30.62},{"x":1755649861780,"y":30.228},{"x":1755649801644,"y":30.499},{"x":1755649741500,"y":25.568},{"x":1755649681395,"y":25.912},{"x":1755649621242,"y":28.09},{"x":1755649561133,"y":32.113},{"x":1755649500974,"y":28.687},{"x":1755649440846,"y":26.786},{"x":1755649380712,"y":28.493},{"x":1755649320629,"y":30.407},{"x":1755649260446,"y":31.122},{"x":1755649200394,"y":27.402},{"x":1755649142988,"y":32.101},{"x":1755649082846,"y":31.626},{"x":1755649022722,"y":30.196},{"x":1755648962574,"y":29.077},{"x":1755648902445,"y":28.748},{"x":1755648842285,"y":26.966},{"x":1755648782155,"y":30.508},{"x":1755648722025,"y":31.403},{"x":1755648661832,"y":30.443},{"x":1755648601653,"y":28.28},{"x":1755648541528,"y":27.353},{"x":1755648481348,"y":26.228},{"x":1755648421212,"y":26.891},{"x":1755648361076,"y":31.974},{"x":1755648300928,"y":29.533},{"x":1755648240840,"y":28.818},{"x":1755648180702,"y":30.336},{"x":1755648120549,"y":32.216},{"x":1755648060368,"y":27.524},{"x":1755648000319,"y":28.403},{"x":1755647942915,"y":31.043},{"x":1755647882791,"y":31.303},{"x":1755647822667,"y":36.53},{"x":1755647762541,"y":29.314},{"x":1755647702413,"y":29.73},{"x":1755647642282,"y":33.036},{"x":1755647582151,"y":34.69},{"x":1755647522021,"y":40.423},{"x":1755647461892,"y":30.986},{"x":1755647401762,"y":30.732},{"x":1755647341642,"y":28.174},{"x":1755647281517,"y":26.67},{"x":1755647221400,"y":31.778},{"x":1755647161272,"y":28.727},{"x":1755647101195,"y":26.94},{"x":1755647040997,"y":27.329},{"x":1755646980868,"y":25.974},{"x":1755646920744,"y":32.579},{"x":1755646860608,"y":57.047},{"x":1755646800662,"y":56.222},{"x":1755646740311,"y":57.326},{"x":1755646680091,"y":56.296},{"x":1755646622916,"y":51.416},{"x":1755646562786,"y":30.258},{"x":1755646502648,"y":32.441},{"x":1755646442521,"y":34.936},{"x":1755646382393,"y":32.18},{"x":1755646322277,"y":32.82},{"x":1755646262151,"y":27.204},{"x":1755646202020,"y":30.85},{"x":1755646141872,"y":33.706},{"x":1755646081743,"y":37.782},{"x":1755646021608,"y":41.014},{"x":1755645961484,"y":34.298},{"x":1755645901367,"y":31.56},{"x":1755645841239,"y":30.901},{"x":1755645781109,"y":29.872},{"x":1755645720947,"y":32.071},{"x":1755645660823,"y":28.662},{"x":1755645600701,"y":29.266},{"x":1755645540589,"y":26.851},{"x":1755645480436,"y":27.053},{"x":1755645420359,"y":33.458},{"x":1755645360280,"y":29.711},{"x":1755645302932,"y":33.059},{"x":1755645242811,"y":33.048},{"x":1755645182698,"y":41.335},{"x":1755645122564,"y":41.2},{"x":1755645062376,"y":32.818},{"x":1755645002215,"y":31.472},{"x":1755644942095,"y":29.09},{"x":1755644881938,"y":28.368},{"x":1755644821805,"y":32.861},{"x":1755644761690,"y":25.24},{"x":1755644701567,"y":28.775},{"x":1755644641441,"y":28.423},{"x":1755644581321,"y":28.163},{"x":1755644521197,"y":32.898},{"x":1755644461067,"y":27.721},{"x":1755644400974,"y":29.935},{"x":1755644340732,"y":28.172},{"x":1755644280616,"y":28.256},{"x":1755644220521,"y":30.124},{"x":1755644160399,"y":27.104},{"x":1755644100182,"y":26.741},{"x":1755644042913,"y":29.784},{"x":1755643982797,"y":27.749},{"x":1755643922673,"y":28.079},{"x":1755643862544,"y":27.397},{"x":1755643802416,"y":29.706},{"x":1755643742276,"y":29.122},{"x":1755643682137,"y":27.641},{"x":1755643622011,"y":26.591},{"x":1755643561872,"y":25.272},{"x":1755643501748,"y":24.064},{"x":1755643441615,"y":24.089},{"x":1755643381490,"y":25.733},{"x":1755643321374,"y":25.205},{"x":1755643261248,"y":30.017},{"x":1755643201155,"y":31.367},{"x":1755643140965,"y":30.871},{"x":1755643080829,"y":45.846},{"x":1755643020697,"y":41.4},{"x":1755642960581,"y":43.06},{"x":1755642900516,"y":40.285},{"x":1755642840328,"y":39.883},{"x":1755642780256,"y":29.719},{"x":1755642722905,"y":26.056},{"x":1755642662775,"y":28.382},{"x":1755642602643,"y":29.093},{"x":1755642542527,"y":28.97},{"x":1755642482386,"y":44.299},{"x":1755642422262,"y":39.356},{"x":1755642362131,"y":38.111},{"x":1755642301989,"y":41.287},{"x":1755642241863,"y":47.314},{"x":1755642181736,"y":49.673},{"x":1755642121624,"y":31.496},{"x":1755642061499,"y":29.63},{"x":1755642001363,"y":28.375},{"x":1755641941239,"y":27.12},{"x":1755641881104,"y":33.238},{"x":1755641820961,"y":28.972},{"x":1755641760847,"y":28.552},{"x":1755641700682,"y":26.864},{"x":1755641640498,"y":27.247},{"x":1755641580308,"y":25.549},{"x":1755641520221,"y":28.483},{"x":1755641462929,"y":26.952},{"x":1755641402785,"y":31.794},{"x":1755641342604,"y":29.777},{"x":1755641282480,"y":28.153},{"x":1755641222348,"y":28.357},{"x":1755641162225,"y":30.695},{"x":1755641102092,"y":31.05},{"x":1755641041958,"y":31.357},{"x":1755640981831,"y":30.737},{"x":1755640921705,"y":29.419},{"x":1755640861577,"y":30.174},{"x":1755640801522,"y":32.912},{"x":1755640741307,"y":36.386},{"x":1755640681186,"y":30.874},{"x":1755640621035,"y":29.366},{"x":1755640560905,"y":29.123},{"x":1755640500780,"y":27.028},{"x":1755640440655,"y":32.092},{"x":1755640380561,"y":30.437},{"x":1755640320558,"y":30.17},{"x":1755640260202,"y":34.061},{"x":1755640202956,"y":32.819},{"x":1755640142835,"y":34.387},{"x":1755640082713,"y":32.873},{"x":1755640022584,"y":32.011},{"x":1755639962452,"y":31.12},{"x":1755639902325,"y":32.206},{"x":1755639842201,"y":38.069},{"x":1755639782073,"y":30.403},{"x":1755639721940,"y":29.536},{"x":1755639661806,"y":31.764},{"x":1755639601683,"y":34.854},{"x":1755639541555,"y":35.83},{"x":1755639481439,"y":35.168},{"x":1755639421304,"y":34.63},{"x":1755639361178,"y":32.906},{"x":1755639301065,"y":32.681},{"x":1755639240919,"y":32.869},{"x":1755639180798,"y":32.734},{"x":1755639120718,"y":34.789},{"x":1755639060542,"y":32.153},{"x":1755639000452,"y":37.97},{"x":1755638940407,"y":32.579},{"x":1755638882971,"y":34.151},{"x":1755638822845,"y":34.744},{"x":1755638762705,"y":34.752},{"x":1755638702570,"y":37.133},{"x":1755638642446,"y":36.898},{"x":1755638582321,"y":30.332},{"x":1755638522202,"y":30.686},{"x":1755638462068,"y":30.9},{"x":1755638401937,"y":35.446},{"x":1755638341814,"y":34.211},{"x":1755638281691,"y":34.019},{"x":1755638221548,"y":33.427},{"x":1755638161413,"y":35.791},{"x":1755638101288,"y":34.973},{"x":1755638041162,"y":30.377},{"x":1755637981025,"y":33.288},{"x":1755637920849,"y":33.164},{"x":1755637860714,"y":34.177},{"x":1755637800640,"y":32.758},{"x":1755637740494,"y":34.038},{"x":1755637680237,"y":33.588},{"x":1755637622962,"y":34.092},{"x":1755637562843,"y":40.133},{"x":1755637502705,"y":39.191},{"x":1755637442567,"y":36.242},{"x":1755637382446,"y":36.388},{"x":1755637322328,"y":36.847},{"x":1755637262195,"y":45.955},{"x":1755637202090,"y":41.102},{"x":1755637141925,"y":40.152},{"x":1755637081805,"y":43.068},{"x":1755637021671,"y":41.692},{"x":1755636961549,"y":45.671},{"x":1755636901431,"y":41.51},{"x":1755636841304,"y":38.477},{"x":1755636781248,"y":38.711},{"x":1755636721064,"y":41.722},{"x":1755636660917,"y":43.268},{"x":1755636600830,"y":37.128},{"x":1755636540680,"y":39.016},{"x":1755636480568,"y":37.529},{"x":1755636420389,"y":45.113},{"x":1755636360268,"y":44.002},{"x":1755636302953,"y":42.378},{"x":1755636242825,"y":40.906},{"x":1755636182704,"y":39.101},{"x":1755636122564,"y":39.425},{"x":1755636062433,"y":41.107},{"x":1755636002311,"y":43.864},{"x":1755635942184,"y":42.343},{"x":1755635882048,"y":40.447},{"x":1755635821917,"y":42.259},{"x":1755635761784,"y":47.645},{"x":1755635701651,"y":46.213},{"x":1755635641532,"y":46.715},{"x":1755635581369,"y":43.918},{"x":1755635521251,"y":59.785},{"x":1755635461124,"y":38.884},{"x":1755635401048,"y":38.651},{"x":1755635340843,"y":41.49},{"x":1755635280742,"y":42.812},{"x":1755635220594,"y":46.079},{"x":1755635160452,"y":45.079},{"x":1755635100320,"y":59.593},{"x":1755635043006,"y":55.892},{"x":1755634982875,"y":53.959},{"x":1755634922749,"y":65.155},{"x":1755634862622,"y":57.71},{"x":1755634802499,"y":48.529},{"x":1755634742374,"y":43.882},{"x":1755634682252,"y":57.894},{"x":1755634622128,"y":38.575},{"x":1755634561977,"y":38.659},{"x":1755634501842,"y":35.125},{"x":1755634441711,"y":40.295},{"x":1755634381588,"y":51.636},{"x":1755634321418,"y":42.773},{"x":1755634261258,"y":39.935},{"x":1755634201092,"y":41.879},{"x":1755634140937,"y":38.63},{"x":1755634080815,"y":53.582},{"x":1755634020687,"y":33.625},{"x":1755633960578,"y":48.802},{"x":1755633900459,"y":43.562},{"x":1755633840421,"y":44.183},{"x":1755633783013,"y":44.784},{"x":1755633722888,"y":45.962},{"x":1755633662764,"y":48.826},{"x":1755633602638,"y":39.286},{"x":1755633542489,"y":35.264},{"x":1755633482361,"y":34.12},{"x":1755633422234,"y":34.638},{"x":1755633362088,"y":34.951},{"x":1755633301957,"y":36.102},{"x":1755633241834,"y":50.986},{"x":1755633181715,"y":34.96},{"x":1755633121561,"y":38.059},{"x":1755633061436,"y":41.227},{"x":1755633001312,"y":39.845},{"x":1755632941199,"y":39.913},{"x":1755632881056,"y":38.25},{"x":1755632820916,"y":42.44},{"x":1755632760786,"y":33.314},{"x":1755632700880,"y":31.063},{"x":1755632640528,"y":31.464},{"x":1755632580406,"y":31.175},{"x":1755632520351,"y":35.929},{"x":1755632462978,"y":31.412},{"x":1755632402820,"y":36.497},{"x":1755632342701,"y":38.555},{"x":1755632282579,"y":35.884},{"x":1755632222475,"y":57.478},{"x":1755632162328,"y":36.125},{"x":1755632102204,"y":34.987},{"x":1755632042080,"y":36.146},{"x":1755631981947,"y":33.326},{"x":1755631921826,"y":48.911},{"x":1755631861699,"y":33.257},{"x":1755631801580,"y":36.161},{"x":1755631741440,"y":42.085},{"x":1755631681322,"y":55.69},{"x":1755631621195,"y":57.47},{"x":1755631561052,"y":62.093},{"x":1755631500970,"y":58.211},{"x":1755631440786,"y":67.214},{"x":1755631380672,"y":43.603},{"x":1755631320621,"y":35.381},{"x":1755631260460,"y":35.226},{"x":1755631200250,"y":32.281},{"x":1755631142939,"y":31.351},{"x":1755631082814,"y":40.248},{"x":1755631022705,"y":37.052},{"x":1755630962568,"y":36.649},{"x":1755630902421,"y":46.996},{"x":1755630842303,"y":44.989},{"x":1755630782180,"y":62.428},{"x":1755630722038,"y":44.17},{"x":1755630661808,"y":45.286},{"x":1755630601665,"y":39.434},{"x":1755630541547,"y":35.306},{"x":1755630481427,"y":42.238},{"x":1755630421302,"y":50.782},{"x":1755630361151,"y":34.524},{"x":1755630301017,"y":48.169},{"x":1755630240888,"y":35.914},{"x":1755630180762,"y":35.623},{"x":1755630120637,"y":37.277},{"x":1755630060623,"y":37.574},{"x":1755630000407,"y":37.786},{"x":1755629943006,"y":36.169},{"x":1755629882832,"y":40.88},{"x":1755629822710,"y":52.567},{"x":1755629762584,"y":42.714},{"x":1755629702457,"y":41.22},{"x":1755629642322,"y":49.98},{"x":1755629582198,"y":49.16},{"x":1755629522064,"y":38.891},{"x":1755629461909,"y":35.881},{"x":1755629401781,"y":34.702},{"x":1755629341646,"y":42.319},{"x":1755629281527,"y":40.849},{"x":1755629221405,"y":40.982},{"x":1755629161283,"y":31.432},{"x":1755629101176,"y":50.712},{"x":1755629041016,"y":39.204},{"x":1755628980886,"y":42.626},{"x":1755628920764,"y":47.226},{"x":1755628860665,"y":58.957},{"x":1755628800506,"y":61.824},{"x":1755628740288,"y":57.035},{"x":1755628680234,"y":62.758},{"x":1755628622901,"y":48.215},{"x":1755628562779,"y":40.324},{"x":1755628502659,"y":37.026},{"x":1755628442535,"y":37.284},{"x":1755628382409,"y":41.948},{"x":1755628322282,"y":56.21},{"x":1755628262146,"y":40.634},{"x":1755628202015,"y":40.638},{"x":1755628141862,"y":60.925},{"x":1755628081722,"y":40.991},{"x":1755628021597,"y":40.135},{"x":1755627961478,"y":42.607},{"x":1755627901357,"y":43.252},{"x":1755627841241,"y":36.595},{"x":1755627781110,"y":32.112},{"x":1755627720951,"y":34.51},{"x":1755627660822,"y":33.95},{"x":1755627600778,"y":33.961},{"x":1755627540557,"y":38.027},{"x":1755627480447,"y":47.141},{"x":1755627420231,"y":49.199},{"x":1755627362969,"y":48.452},{"x":1755627302829,"y":44.784},{"x":1755627242707,"y":39.292},{"x":1755627182590,"y":36.577},{"x":1755627122442,"y":32.894},{"x":1755627062301,"y":36.258},{"x":1755627002159,"y":33.271},{"x":1755626942020,"y":31.759},{"x":1755626881876,"y":31.836},{"x":1755626821751,"y":30.677},{"x":1755626761617,"y":41.562},{"x":1755626701496,"y":42.071},{"x":1755626641368,"y":43.151},{"x":1755626581242,"y":42.559},{"x":1755626521104,"y":41.765},{"x":1755626460962,"y":33.204},{"x":1755626401032,"y":36.989},{"x":1755626340694,"y":34.692},{"x":1755626280567,"y":37.526},{"x":1755626220408,"y":37.003},{"x":1755626160256,"y":34.33},{"x":1755626102988,"y":48.701},{"x":1755626042867,"y":32.772},{"x":1755625982747,"y":32.682},{"x":1755625922621,"y":35.536},{"x":1755625862496,"y":49.357},{"x":1755625802372,"y":45.847},{"x":1755625742248,"y":58.644},{"x":1755625682123,"y":58.616},{"x":1755625621990,"y":60.32},{"x":1755625561850,"y":49.958},{"x":1755625501730,"y":54.352},{"x":1755625441606,"y":28.711},{"x":1755625381470,"y":32.485},{"x":1755625321344,"y":35.504},{"x":1755625261213,"y":32.49},{"x":1755625201089,"y":38.598},{"x":1755625140936,"y":39.96},{"x":1755625080814,"y":48.078},{"x":1755625020692,"y":51.054},{"x":1755624960553,"y":47.062},{"x":1755624900336,"y":48.442},{"x":1755624840173,"y":41.516},{"x":1755624782930,"y":32.986},{"x":1755624722804,"y":35.706},{"x":1755624662676,"y":37.715},{"x":1755624602546,"y":34.156},{"x":1755624542413,"y":39.733},{"x":1755624482271,"y":34.568},{"x":1755624422148,"y":38.63},{"x":1755624362010,"y":45.072},{"x":1755624301884,"y":32.65},{"x":1755624241738,"y":32.257},{"x":1755624181608,"y":36.242},{"x":1755624121472,"y":35.654},{"x":1755624061343,"y":51.484},{"x":1755624001222,"y":51.93},{"x":1755623941097,"y":49.42},{"x":1755623880948,"y":53.942},{"x":1755623820871,"y":66.427},{"x":1755623760725,"y":32.598},{"x":1755623700607,"y":30.323},{"x":1755623640412,"y":33.066},{"x":1755623580220,"y":25.775},{"x":1755623523024,"y":32.717},{"x":1755623462880,"y":31.769},{"x":1755623402704,"y":39.38},{"x":1755623342583,"y":44.75},{"x":1755623282455,"y":37.932},{"x":1755623222330,"y":40.01},{"x":1755623162200,"y":35.441},{"x":1755623102064,"y":26.371},{"x":1755623041926,"y":26.443},{"x":1755622981794,"y":29.639},{"x":1755622921666,"y":46.037},{"x":1755622861550,"y":40.223},{"x":1755622801633,"y":35.996},{"x":1755622741263,"y":41.902},{"x":1755622681138,"y":37.548},{"x":1755622620999,"y":30.175},{"x":1755622560878,"y":34.025},{"x":1755622500795,"y":36.962},{"x":1755622440645,"y":38.002},{"x":1755622380673,"y":27.913},{"x":1755622320703,"y":28.613},{"x":1755622260202,"y":28.153},{"x":1755622202933,"y":31.034},{"x":1755622142792,"y":29.612},{"x":1755622082672,"y":23.567},{"x":1755622022531,"y":37.727},{"x":1755621962385,"y":33.469},{"x":1755621902262,"y":49.83},{"x":1755621842129,"y":49.001},{"x":1755621781987,"y":51.601},{"x":1755621721857,"y":40.807},{"x":1755621661729,"y":36.236},{"x":1755621601608,"y":26.44},{"x":1755621541475,"y":38.81},{"x":1755621481347,"y":36.796},{"x":1755621421221,"y":36.994},{"x":1755621361087,"y":37.302},{"x":1755621300953,"y":44.426},{"x":1755621240821,"y":43.433},{"x":1755621180703,"y":33.67},{"x":1755621120633,"y":34.487},{"x":1755621060478,"y":31.32},{"x":1755621000233,"y":29.279},{"x":1755620942996,"y":54.426},{"x":1755620882796,"y":43.304},{"x":1755620822669,"y":32.486},{"x":1755620762590,"y":35.989},{"x":1755620702401,"y":30.056},{"x":1755620642257,"y":29.81},{"x":1755620582126,"y":26.086},{"x":1755620521991,"y":37.877},{"x":1755620461856,"y":33.301},{"x":1755620401724,"y":42.486},{"x":1755620341590,"y":52.128},{"x":1755620281469,"y":53.73},{"x":1755620221345,"y":49.694},{"x":1755620161215,"y":36.263},{"x":1755620101101,"y":30.737},{"x":1755620040904,"y":23.204},{"x":1755619980782,"y":47.626},{"x":1755619920623,"y":49.956},{"x":1755619860460,"y":35.014},{"x":1755619800348,"y":31.633},{"x":1755619740265,"y":33.284},{"x":1755619682919,"y":29.203},{"x":1755619622791,"y":28.92},{"x":1755619562661,"y":34.524},{"x":1755619502537,"y":28.964},{"x":1755619442415,"y":37.021},{"x":1755619382287,"y":40.235},{"x":1755619322163,"y":37.277},{"x":1755619262038,"y":39.42},{"x":1755619201777,"y":37.391},{"x":1755619141568,"y":24.805},{"x":1755619081446,"y":28.414},{"x":1755619021320,"y":28.8},{"x":1755618961192,"y":25.41},{"x":1755618901054,"y":25.255},{"x":1755618840915,"y":32.237},{"x":1755618780792,"y":44.99},{"x":1755618720720,"y":45.75},{"x":1755618660541,"y":45.251},{"x":1755618600476,"y":57.932},{"x":1755618540293,"y":32.068},{"x":1755618480248,"y":22.698},{"x":1755618422908,"y":20.744},{"x":1755618362786,"y":24.32},{"x":1755618302674,"y":35.694},{"x":1755618242553,"y":35.254},{"x":1755618182415,"y":36.836},{"x":1755618122304,"y":36.708},{"x":1755618062107,"y":22.49},{"x":1755618001961,"y":24.799},{"x":1755617941834,"y":22.824},{"x":1755617881705,"y":23.272},{"x":1755617821608,"y":28.943},{"x":1755617761436,"y":31.673},{"x":1755617701318,"y":33.389},{"x":1755617641193,"y":44.887},{"x":1755617581066,"y":47.404},{"x":1755617520953,"y":52.966},{"x":1755617460806,"y":30.798},{"x":1755617400728,"y":17.617},{"x":1755617340607,"y":17.885},{"x":1755617280441,"y":21.22},{"x":1755617220281,"y":21.546},{"x":1755617162980,"y":25.921},{"x":1755617102858,"y":24.398},{"x":1755617042733,"y":25.331},{"x":1755616982588,"y":30.866},{"x":1755616922464,"y":23.596},{"x":1755616862342,"y":21.731},{"x":1755616802201,"y":39.263},{"x":1755616742073,"y":40.049},{"x":1755616681942,"y":40.902},{"x":1755616621818,"y":40.361},{"x":1755616561689,"y":37.688},{"x":1755616501561,"y":22.044},{"x":1755616441427,"y":18.426},{"x":1755616381298,"y":38.08},{"x":1755616321123,"y":55.952},{"x":1755616260964,"y":40.5},{"x":1755616200949,"y":42.79},{"x":1755616140678,"y":36.32},{"x":1755616080549,"y":32.285},{"x":1755616020460,"y":32.21},{"x":1755615960426,"y":23.226},{"x":1755615900088,"y":22.145},{"x":1755615842894,"y":34.382},{"x":1755615782776,"y":28.13},{"x":1755615722612,"y":31.526},{"x":1755615662459,"y":30.047},{"x":1755615602386,"y":37.084},{"x":1755615542193,"y":30.13},{"x":1755615482064,"y":18.472},{"x":1755615421926,"y":18.48},{"x":1755615361800,"y":16.877},{"x":1755615301684,"y":17.569},{"x":1755615241558,"y":28.375},{"x":1755615181431,"y":29.496},{"x":1755615121311,"y":41.71},{"x":1755615061188,"y":46.243},{"x":1755615001056,"y":37.223},{"x":1755614940897,"y":27.064},{"x":1755614880778,"y":38.294},{"x":1755614820658,"y":38.35},{"x":1755614760575,"y":42.848},{"x":1755614700431,"y":21.008},{"x":1755614640273,"y":17.197},{"x":1755614583008,"y":28.914},{"x":1755614522873,"y":31.66},{"x":1755614462745,"y":31.825},{"x":1755614402611,"y":27.697},{"x":1755614342479,"y":31.168},{"x":1755614282356,"y":14.342},{"x":1755614222219,"y":18.588},{"x":1755614162082,"y":22.279},{"x":1755614101940,"y":33.07},{"x":1755614041798,"y":44.386},{"x":1755613981671,"y":43.994},{"x":1755613921543,"y":37.742},{"x":1755613861418,"y":35.594},{"x":1755613801313,"y":38.999},{"x":1755613741178,"y":29.371},{"x":1755613681046,"y":25.667},{"x":1755613620917,"y":28.648},{"x":1755613560786,"y":27.055},{"x":1755613500669,"y":36.936},{"x":1755613440611,"y":29.416},{"x":1755613380392,"y":39.35},{"x":1755613320272,"y":38.48},{"x":1755613262978,"y":34.048},{"x":1755613202844,"y":29.978},{"x":1755613142724,"y":31.782},{"x":1755613082586,"y":17.305},{"x":1755613022460,"y":20.581},{"x":1755612962336,"y":20.52},{"x":1755612902207,"y":27.476},{"x":1755612842085,"y":30.205},{"x":1755612782040,"y":40.495},{"x":1755612721776,"y":35.132},{"x":1755612661615,"y":43.529},{"x":1755612601457,"y":25.212},{"x":1755612541330,"y":25.33},{"x":1755612481206,"y":27.968},{"x":1755612421061,"y":12.802},{"x":1755612360937,"y":10.262},{"x":1755612300819,"y":24.767},{"x":1755612240747,"y":29.594},{"x":1755612180559,"y":24.646},{"x":1755612120458,"y":24.732},{"x":1755612060071,"y":27.173},{"x":1755612002905,"y":18.641},{"x":1755611942778,"y":17.116},{"x":1755611882652,"y":14.506},{"x":1755611822534,"y":28.229},{"x":1755611762391,"y":25.94},{"x":1755611702257,"y":39.755},{"x":1755611642138,"y":38.078},{"x":1755611582013,"y":42.954},{"x":1755611521885,"y":28.699},{"x":1755611461756,"y":25.598},{"x":1755611401632,"y":17.768},{"x":1755611341508,"y":11.675},{"x":1755611281390,"y":11.462},{"x":1755611221266,"y":8.897},{"x":1755611161153,"y":10.886},{"x":1755611101083,"y":18.539},{"x":1755611040857,"y":14.278},{"x":1755610980723,"y":47.111},{"x":1755610920630,"y":42.318},{"x":1755610860502,"y":40.25},{"x":1755610800339,"y":42.386},{"x":1755610740268,"y":50.683},{"x":1755610682896,"y":26.338},{"x":1755610622772,"y":10.757},{"x":1755610562630,"y":19.676},{"x":1755610502512,"y":27.912},{"x":1755610442389,"y":25.708},{"x":1755610382258,"y":29.76},{"x":1755610322129,"y":33.743},{"x":1755610261994,"y":32.492},{"x":1755610201876,"y":42.707},{"x":1755610141749,"y":23.173},{"x":1755610081618,"y":24.36},{"x":1755610021500,"y":21.56},{"x":1755609961374,"y":23.644},{"x":1755609901252,"y":15.797},{"x":1755609841119,"y":8.41},{"x":1755609780982,"y":8.846},{"x":1755609720862,"y":19.687},{"x":1755609660742,"y":23.863},{"x":1755609600616,"y":40.028},{"x":1755609540501,"y":35.549},{"x":1755609480307,"y":35.952},{"x":1755609422988,"y":25.426},{"x":1755609362854,"y":23.501},{"x":1755609302775,"y":19.656},{"x":1755609242605,"y":8.395},{"x":1755609182469,"y":22.925},{"x":1755609122331,"y":28.843},{"x":1755609062199,"y":25.573},{"x":1755609002043,"y":52.408},{"x":1755608941880,"y":28.237},{"x":1755608881756,"y":33.397},{"x":1755608821633,"y":27.455},{"x":1755608761507,"y":30.244},{"x":1755608701375,"y":14.476},{"x":1755608641251,"y":29.828},{"x":1755608581116,"y":19.1},{"x":1755608520979,"y":25.475},{"x":1755608460858,"y":34.193},{"x":1755608400833,"y":36.486},{"x":1755608340546,"y":35.141},{"x":1755608280551,"y":27.235},{"x":1755608220233,"y":23.286},{"x":1755608163010,"y":12.269},{"x":1755608102829,"y":10.638},{"x":1755608042722,"y":12.895},{"x":1755607982576,"y":10.051},{"x":1755607922453,"y":14.368},{"x":1755607862320,"y":16.018},{"x":1755607802180,"y":37.247},{"x":1755607742062,"y":40.307},{"x":1755607681919,"y":34.834},{"x":1755607621778,"y":48.523},{"x":1755607561633,"y":32.113},{"x":1755607501517,"y":10.799},{"x":1755607441369,"y":7.9},{"x":1755607381240,"y":18.234},{"x":1755607321114,"y":20.158},{"x":1755607260962,"y":31.368},{"x":1755607200932,"y":22.798},{"x":1755607140696,"y":23.746},{"x":1755607080617,"y":29.442},{"x":1755607020429,"y":19.422},{"x":1755606960255,"y":8.448},{"x":1755606902988,"y":12.209},{"x":1755606842857,"y":11.333},{"x":1755606782734,"y":11.807},{"x":1755606722616,"y":8.341},{"x":1755606662487,"y":30.581},{"x":1755606602351,"y":31.336},{"x":1755606542222,"y":40.861},{"x":1755606482096,"y":39.926},{"x":1755606421964,"y":45.138},{"x":1755606361841,"y":18.368},{"x":1755606301730,"y":17.004},{"x":1755606241585,"y":42.829},{"x":1755606181456,"y":26.67},{"x":1755606121324,"y":20.162},{"x":1755606061201,"y":24.265},{"x":1755606001070,"y":27.521},{"x":1755605940930,"y":23.011},{"x":1755605880803,"y":19.454},{"x":1755605820726,"y":21.072},{"x":1755605760535,"y":18.196},{"x":1755605700473,"y":12.652},{"x":1755605640093,"y":14.21},{"x":1755605582894,"y":34.781},{"x":1755605522706,"y":21.443},{"x":1755605462550,"y":27.886},{"x":1755605402372,"y":28.454},{"x":1755605342240,"y":28.272},{"x":1755605282100,"y":26.789},{"x":1755605221972,"y":22.207},{"x":1755605161837,"y":10.678},{"x":1755605101714,"y":9.866},{"x":1755605041577,"y":20.263},{"x":1755604981452,"y":25.637},{"x":1755604921333,"y":24.335},{"x":1755604861193,"y":24.793},{"x":1755604801045,"y":27.108},{"x":1755604740820,"y":25.319},{"x":1755604680691,"y":32.765},{"x":1755604620588,"y":16.126},{"x":1755604560496,"y":15.302},{"x":1755604500306,"y":26.692},{"x":1755604440235,"y":33.773},{"x":1755604382915,"y":42.788},{"x":1755604322786,"y":56.83},{"x":1755604262660,"y":65.747},{"x":1755604202538,"y":25.321},{"x":1755604142395,"y":23.653},{"x":1755604082265,"y":14.797},{"x":1755604022139,"y":11.85},{"x":1755603962004,"y":24.218},{"x":1755603901883,"y":16.938},{"x":1755603841734,"y":18.534},{"x":1755603781605,"y":27.034},{"x":1755603721475,"y":24.77},{"x":1755603661352,"y":31.052},{"x":1755603601235,"y":24.276},{"x":1755603541094,"y":21.124},{"x":1755603480982,"y":32.297},{"x":1755603420829,"y":23.506},{"x":1755603360736,"y":32.182},{"x":1755603300616,"y":30.007},{"x":1755603240469,"y":47.138},{"x":1755603180305,"y":41.628},{"x":1755603120014,"y":36.799},{"x":1755603062895,"y":23.114},{"x":1755603002805,"y":26.419},{"x":1755602942629,"y":13.902},{"x":1755602882511,"y":13.95},{"x":1755602822388,"y":35.975},{"x":1755602762262,"y":33.215},{"x":1755602702125,"y":36.8},{"x":1755602641992,"y":46.856},{"x":1755602581860,"y":30.631},{"x":1755602521737,"y":26.154},{"x":1755602461613,"y":10.446},{"x":1755602401497,"y":11.974},{"x":1755602341370,"y":8.263},{"x":1755602281253,"y":8.698},{"x":1755602221126,"y":18.356},{"x":1755602160960,"y":36.659},{"x":1755602100858,"y":29.425},{"x":1755602040727,"y":30.05},{"x":1755601980542,"y":36.766},{"x":1755601920347,"y":25.082},{"x":1755601860263,"y":25.373},{"x":1755601802897,"y":30.523},{"x":1755601742776,"y":14.142},{"x":1755601682653,"y":21.61},{"x":1755601622521,"y":38.117},{"x":1755601562390,"y":26.562},{"x":1755601502280,"y":27.433},{"x":1755601442143,"y":30.618},{"x":1755601381992,"y":39.295},{"x":1755601321855,"y":24.313},{"x":1755601261734,"y":17.234},{"x":1755601201704,"y":19.844},{"x":1755601141457,"y":39.104},{"x":1755601081327,"y":23.348},{"x":1755601021199,"y":31.798},{"x":1755600961066,"y":43.51},{"x":1755600900949,"y":47.111},{"x":1755600840796,"y":23.318},{"x":1755600780683,"y":23.284},{"x":1755600720603,"y":21.466},{"x":1755600660450,"y":28.837},{"x":1755600600327,"y":33.736},{"x":1755600542983,"y":29.182},{"x":1755600482859,"y":25.235},{"x":1755600422727,"y":24.626},{"x":1755600362602,"y":17.124},{"x":1755600302484,"y":8.867},{"x":1755600242334,"y":16.531},{"x":1755600182214,"y":21.32},{"x":1755600122143,"y":18.414},{"x":1755600061925,"y":10.547},{"x":1755600001780,"y":14.965},{"x":1755599941652,"y":9.16},{"x":1755599881517,"y":40.423},{"x":1755599821396,"y":36.516},{"x":1755599761259,"y":37.889},{"x":1755599701136,"y":37.586},{"x":1755599640991,"y":50.672},{"x":1755599580865,"y":15.41},{"x":1755599520777,"y":13.674},{"x":1755599460597,"y":20.099},{"x":1755599400511,"y":26.09},{"x":1755599340364,"y":26.483},{"x":1755599280263,"y":25.228},{"x":1755599222958,"y":26.994},{"x":1755599162839,"y":26.508},{"x":1755599102717,"y":28.914},{"x":1755599042597,"y":33.532},{"x":1755598982460,"y":30.09},{"x":1755598922339,"y":16.754},{"x":1755598862208,"y":17.053},{"x":1755598802090,"y":19.991},{"x":1755598741952,"y":15.077},{"x":1755598681828,"y":18.752},{"x":1755598621703,"y":20.248},{"x":1755598561573,"y":21.644},{"x":1755598501453,"y":16.93},{"x":1755598441318,"y":14.952},{"x":1755598381194,"y":26.417},{"x":1755598321018,"y":16.804},{"x":1755598260854,"y":31.013},{"x":1755598200750,"y":46.67},{"x":1755598140573,"y":38.662},{"x":1755598080420,"y":38.083},{"x":1755598020293,"y":38.752},{"x":1755597963019,"y":25.07},{"x":1755597902886,"y":21.272},{"x":1755597842767,"y":17.2},{"x":1755597782636,"y":33.92},{"x":1755597722515,"y":26.171},{"x":1755597662376,"y":28.099},{"x":1755597602276,"y":31.607},{"x":1755597542109,"y":30.845},{"x":1755597481969,"y":28.577},{"x":1755597421841,"y":26.3},{"x":1755597361715,"y":25.106},{"x":1755597301578,"y":18.11},{"x":1755597241445,"y":17.86},{"x":1755597181327,"y":32.686},{"x":1755597121204,"y":24.853},{"x":1755597061025,"y":29.346},{"x":1755597000906,"y":32.152},{"x":1755596940779,"y":36.442},{"x":1755596880687,"y":20.814},{"x":1755596820573,"y":19.238},{"x":1755596760407,"y":25.819},{"x":1755596700376,"y":17.777},{"x":1755596642976,"y":30.984},{"x":1755596582846,"y":33.108},{"x":1755596522723,"y":43.489},{"x":1755596462587,"y":47.604},{"x":1755596402463,"y":43.862},{"x":1755596342330,"y":32.73},{"x":1755596282206,"y":37.674},{"x":1755596222076,"y":20.089},{"x":1755596161938,"y":39.328},{"x":1755596101807,"y":42.631},{"x":1755596041704,"y":33.96},{"x":1755595981583,"y":33.445},{"x":1755595921428,"y":30.035},{"x":1755595861302,"y":27.758},{"x":1755595801190,"y":17.732},{"x":1755595741030,"y":18.421},{"x":1755595680918,"y":16.952},{"x":1755595620773,"y":17.231},{"x":1755595560772,"y":21.635},{"x":1755595500726,"y":21.374},{"x":1755595440789,"y":30.521},{"x":1755595380253,"y":44.897},{"x":1755595322911,"y":49.52},{"x":1755595262784,"y":47.01},{"x":1755595202621,"y":44.68},{"x":1755595142515,"y":33.589},{"x":1755595082352,"y":20.802},{"x":1755595022232,"y":19.963},{"x":1755594962101,"y":32.939},{"x":1755594901959,"y":31.339},{"x":1755594841847,"y":31.073},{"x":1755594781692,"y":31.088},{"x":1755594721537,"y":33.056},{"x":1755594661362,"y":28.831},{"x":1755594601201,"y":25.481},{"x":1755594541019,"y":26.426},{"x":1755594480886,"y":25.476},{"x":1755594420757,"y":20.016},{"x":1755594360631,"y":19.054},{"x":1755594300554,"y":19.175},{"x":1755594240403,"y":16.235},{"x":1755594180390,"y":15.692},{"x":1755594122976,"y":15.839},{"x":1755594062851,"y":17.324},{"x":1755594002727,"y":43.747},{"x":1755593942597,"y":47.158},{"x":1755593882467,"y":65.147},{"x":1755593822329,"y":45.306},{"x":1755593762210,"y":40.255},{"x":1755593702082,"y":19.468},{"x":1755593641922,"y":23.252},{"x":1755593581792,"y":29.263},{"x":1755593521668,"y":27.631},{"x":1755593461548,"y":33.65},{"x":1755593401431,"y":38.407},{"x":1755593341290,"y":43.792},{"x":1755593281171,"y":33.624},{"x":1755593221020,"y":30.506},{"x":1755593160891,"y":34.746},{"x":1755593100849,"y":38.092},{"x":1755593040585,"y":40.261},{"x":1755592980404,"y":48.415},{"x":1755592920281,"y":33.901},{"x":1755592860177,"y":50.438},{"x":1755592802940,"y":37.734},{"x":1755592742818,"y":26.051},{"x":1755592682690,"y":22.576},{"x":1755592622572,"y":21.688},{"x":1755592562446,"y":24.748},{"x":1755592502317,"y":29.828},{"x":1755592442193,"y":24.029},{"x":1755592382056,"y":26.471},{"x":1755592321922,"y":38.074},{"x":1755592261786,"y":28.79},{"x":1755592201656,"y":23.633},{"x":1755592141522,"y":24.106},{"x":1755592081400,"y":24.673},{"x":1755592021262,"y":24.242},{"x":1755591961133,"y":32.172},{"x":1755591900996,"y":22.332},{"x":1755591840855,"y":30.498},{"x":1755591780727,"y":46.762},{"x":1755591720605,"y":46.816},{"x":1755591660469,"y":49.202},{"x":1755591600345,"y":45.236},{"x":1755591540176,"y":33.409},{"x":1755591482905,"y":26.779},{"x":1755591422785,"y":24.078},{"x":1755591362650,"y":27.803},{"x":1755591302494,"y":49.684},{"x":1755591242372,"y":35.36},{"x":1755591182210,"y":34.459},{"x":1755591122058,"y":35.762},{"x":1755591061900,"y":34.546},{"x":1755591001711,"y":31.597},{"x":1755590941583,"y":29.519},{"x":1755590881440,"y":44.327},{"x":1755590821312,"y":31.592},{"x":1755590761186,"y":34.109},{"x":1755590701073,"y":27.134},{"x":1755590640919,"y":25.224},{"x":1755590580789,"y":26.029},{"x":1755590520714,"y":49.025},{"x":1755590460669,"y":49.132},{"x":1755590400465,"y":48.69},{"x":1755590340222,"y":47.122},{"x":1755590282906,"y":38.72},{"x":1755590222773,"y":28.06},{"x":1755590162648,"y":31.469},{"x":1755590102529,"y":30.822},{"x":1755590042399,"y":25.547},{"x":1755589982265,"y":24.018},{"x":1755589922136,"y":27.335},{"x":1755589862012,"y":27.625},{"x":1755589801886,"y":24.926},{"x":1755589741744,"y":26.53},{"x":1755589681647,"y":48.526},{"x":1755589621496,"y":41.86},{"x":1755589561373,"y":43.084},{"x":1755589501262,"y":55.75},{"x":1755589441116,"y":63.193},{"x":1755589380985,"y":40.292},{"x":1755589320854,"y":35.932},{"x":1755589260737,"y":25.027},{"x":1755589200641,"y":33.031},{"x":1755589140386,"y":43.723},{"x":1755589080240,"y":47.726},{"x":1755589022960,"y":46.943},{"x":1755588962765,"y":47.274},{"x":1755588902624,"y":38.85},{"x":1755588842503,"y":34.332},{"x":1755588782371,"y":26.257},{"x":1755588722245,"y":26.755},{"x":1755588662093,"y":24.526},{"x":1755588601952,"y":24.358},{"x":1755588541775,"y":24.467},{"x":1755588481624,"y":22.768},{"x":1755588421494,"y":21.096},{"x":1755588361369,"y":24.216},{"x":1755588301253,"y":23.33},{"x":1755588241118,"y":27.63},{"x":1755588180983,"y":24.12},{"x":1755588120858,"y":22.783},{"x":1755588060732,"y":25.64},{"x":1755588000655,"y":27.329},{"x":1755587940496,"y":26.768},{"x":1755587880419,"y":26.372},{"x":1755587820197,"y":28.045},{"x":1755587762910,"y":28.871},{"x":1755587702783,"y":26.32},{"x":1755587642675,"y":23.538},{"x":1755587582532,"y":23.508},{"x":1755587522386,"y":24.828},{"x":1755587462241,"y":32.999},{"x":1755587402101,"y":48.107},{"x":1755587341964,"y":51.116},{"x":1755587281841,"y":41.477},{"x":1755587221711,"y":41.192},{"x":1755587161595,"y":34.062},{"x":1755587101464,"y":42.581},{"x":1755587041339,"y":43.408},{"x":1755586981211,"y":56.636},{"x":1755586921078,"y":57.436},{"x":1755586860930,"y":72.079},{"x":1755586800854,"y":66.582},{"x":1755586740606,"y":58.872},{"x":1755586680492,"y":57.916},{"x":1755586620307,"y":54.432},{"x":1755586562959,"y":35.509},{"x":1755586502839,"y":45.329},{"x":1755586442713,"y":43.375},{"x":1755586382574,"y":41.137},{"x":1755586322439,"y":40.028},{"x":1755586262303,"y":38.725},{"x":1755586202172,"y":35.868},{"x":1755586142026,"y":34.451},{"x":1755586081898,"y":42.276},{"x":1755586021775,"y":41.706},{"x":1755585961656,"y":41.068},{"x":1755585901519,"y":54.293},{"x":1755585841379,"y":67.199},{"x":1755585781244,"y":47.538},{"x":1755585721122,"y":64.988},{"x":1755585660957,"y":55.901},{"x":1755585600849,"y":44.063},{"x":1755585540654,"y":27.662},{"x":1755585480575,"y":42.636},{"x":1755585420404,"y":30.691},{"x":1755585360268,"y":38.092},{"x":1755585302989,"y":24.317},{"x":1755585242857,"y":40.951},{"x":1755585182733,"y":42.125},{"x":1755585122602,"y":33.156},{"x":1755585062471,"y":44.864},{"x":1755585002356,"y":41.952},{"x":1755584942234,"y":42.538},{"x":1755584882101,"y":30.013},{"x":1755584821954,"y":24.569},{"x":1755584761827,"y":23.928},{"x":1755584701699,"y":23.983},{"x":1755584641580,"y":22.357},{"x":1755584581469,"y":28.99},{"x":1755584521306,"y":21.367},{"x":1755584461177,"y":21.16},{"x":1755584400984,"y":22.033},{"x":1755584340804,"y":26.536},{"x":1755584280685,"y":28.904},{"x":1755584220939,"y":28.108},{"x":1755584160969,"y":33.199},{"x":1755584100359,"y":32.94},{"x":1755584040205,"y":31.752},{"x":1755583982904,"y":32.149},{"x":1755583922731,"y":30.847},{"x":1755583862578,"y":32.118},{"x":1755583802431,"y":28.876},{"x":1755583742303,"y":28.782},{"x":1755583682179,"y":26.519},{"x":1755583622033,"y":23.14},{"x":1755583561890,"y":22.847},{"x":1755583501764,"y":26.406},{"x":1755583441634,"y":27.704},{"x":1755583381511,"y":26.216},{"x":1755583321387,"y":27.506},{"x":1755583261272,"y":30.616},{"x":1755583201208,"y":30.26},{"x":1755583140956,"y":25.703},{"x":1755583080825,"y":23.383},{"x":1755583020709,"y":23.61},{"x":1755582960609,"y":22.914},{"x":1755582900495,"y":30.524},{"x":1755582840334,"y":25.507},{"x":1755582780225,"y":29.232},{"x":1755582722929,"y":29.488},{"x":1755582662803,"y":25.261},{"x":1755582602686,"y":27.287},{"x":1755582542562,"y":25.643},{"x":1755582482437,"y":26.402},{"x":1755582422310,"y":26.249},{"x":1755582362185,"y":32.345},{"x":1755582302056,"y":48.329},{"x":1755582241921,"y":52.736},{"x":1755582181799,"y":47.544},{"x":1755582121666,"y":48.34},{"x":1755582061521,"y":38.766},{"x":1755582001428,"y":26.902},{"x":1755581941260,"y":25.757},{"x":1755581881112,"y":24.869},{"x":1755581820968,"y":24.764},{"x":1755581760835,"y":27.301},{"x":1755581700747,"y":27.486},{"x":1755581640564,"y":26.833},{"x":1755581580467,"y":35.116},{"x":1755581520378,"y":28.536},{"x":1755581460188,"y":26.713},{"x":1755581402888,"y":25.884},{"x":1755581342752,"y":28.644},{"x":1755581282627,"y":28.426},{"x":1755581222504,"y":26.333},{"x":1755581162374,"y":27.259},{"x":1755581102241,"y":25.54},{"x":1755581042109,"y":25.036},{"x":1755580981978,"y":26.976},{"x":1755580921825,"y":29.833},{"x":1755580861693,"y":31.132},{"x":1755580801568,"y":28.488},{"x":1755580741442,"y":27.344},{"x":1755580681258,"y":25.628},{"x":1755580621132,"y":28.094},{"x":1755580560977,"y":24.514},{"x":1755580500853,"y":24.032},{"x":1755580440815,"y":28.15},{"x":1755580380580,"y":29.381},{"x":1755580320307,"y":34.048},{"x":1755580260084,"y":34.04},{"x":1755580202890,"y":32.164},{"x":1755580142768,"y":28.944},{"x":1755580082633,"y":29.468},{"x":1755580022511,"y":26.498},{"x":1755579962385,"y":29.044},{"x":1755579902264,"y":25.454},{"x":1755579842137,"y":24.554},{"x":1755579782016,"y":23.934},{"x":1755579721875,"y":24.289},{"x":1755579661746,"y":28.067},{"x":1755579601676,"y":38.33},{"x":1755579541458,"y":37.468},{"x":1755579481336,"y":37.855},{"x":1755579421200,"y":39.19},{"x":1755579361069,"y":34.039},{"x":1755579300945,"y":26.899},{"x":1755579240787,"y":26.963},{"x":1755579180671,"y":27.114},{"x":1755579120606,"y":25.092},{"x":1755579060423,"y":25.076},{"x":1755579002982,"y":29.054},{"x":1755578942858,"y":28.229},{"x":1755578882735,"y":26.777},{"x":1755578822603,"y":29.586},{"x":1755578762469,"y":27.122},{"x":1755578702339,"y":32.386},{"x":1755578642226,"y":27.109},{"x":1755578582095,"y":26.368},{"x":1755578521960,"y":28.478},{"x":1755578461821,"y":27.638},{"x":1755578401692,"y":27.263},{"x":1755578341570,"y":27.235},{"x":1755578281445,"y":26.456},{"x":1755578221323,"y":25.943},{"x":1755578161191,"y":25.992},{"x":1755578101062,"y":25.304},{"x":1755578040924,"y":29.556},{"x":1755577980808,"y":28.373},{"x":1755577920725,"y":28.169},{"x":1755577860587,"y":37.424},{"x":1755577800516,"y":35.694},{"x":1755577740275,"y":38.874},{"x":1755577682981,"y":30.667},{"x":1755577622858,"y":30.557},{"x":1755577562751,"y":27.409},{"x":1755577502621,"y":28.576},{"x":1755577442498,"y":27.113},{"x":1755577382377,"y":24.043},{"x":1755577322259,"y":25.034},{"x":1755577262135,"y":26.075},{"x":1755577201995,"y":26.713},{"x":1755577141856,"y":29.345},{"x":1755577081733,"y":32.346},{"x":1755577021617,"y":30.588},{"x":1755576961493,"y":30.167},{"x":1755576901358,"y":27.336},{"x":1755576841231,"y":25.477},{"x":1755576781024,"y":28.199},{"x":1755576720888,"y":26.496},{"x":1755576660701,"y":25.576},{"x":1755576600630,"y":25.729},{"x":1755576540498,"y":28.234},{"x":1755576480332,"y":28.205},{"x":1755576420032,"y":31.795},{"x":1755576362874,"y":31.684},{"x":1755576302754,"y":29.81},{"x":1755576242616,"y":27.719},{"x":1755576182488,"y":27.947},{"x":1755576122358,"y":30.74},{"x":1755576062204,"y":27.838},{"x":1755576001834,"y":28.255},{"x":1755575941483,"y":29.843},{"x":1755575881347,"y":30.35},{"x":1755575821238,"y":29.753},{"x":1755575761091,"y":28.212},{"x":1755575700959,"y":28.552},{"x":1755575640830,"y":27.512},{"x":1755575580713,"y":29.759},{"x":1755575520638,"y":28.746},{"x":1755575460482,"y":32.2},{"x":1755575400364,"y":27.15},{"x":1755575340250,"y":28.236},{"x":1755575282954,"y":30.752},{"x":1755575222835,"y":30.37},{"x":1755575162704,"y":37.124},{"x":1755575102582,"y":31.75},{"x":1755575042468,"y":27.4},{"x":1755574982331,"y":26.348},{"x":1755574922199,"y":26.591},{"x":1755574862073,"y":27.785},{"x":1755574801936,"y":30.475},{"x":1755574741812,"y":28.924},{"x":1755574681686,"y":28.102},{"x":1755574621571,"y":29.598},{"x":1755574561424,"y":29.282},{"x":1755574501301,"y":34.872},{"x":1755574441151,"y":27.772},{"x":1755574381002,"y":26.782},{"x":1755574320898,"y":25.523},{"x":1755574260681,"y":28.427},{"x":1755574200584,"y":31.991},{"x":1755574140548,"y":28.33},{"x":1755574080339,"y":26.468},{"x":1755574022972,"y":29.035},{"x":1755573962841,"y":32.69},{"x":1755573902719,"y":30.925},{"x":1755573842584,"y":30.408},{"x":1755573782460,"y":29.724},{"x":1755573722333,"y":26.322},{"x":1755573662211,"y":26.921},{"x":1755573602082,"y":30.242},{"x":1755573541941,"y":33.149},{"x":1755573481823,"y":27.618},{"x":1755573421714,"y":28.211},{"x":1755573361558,"y":27.824},{"x":1755573301451,"y":30.527},{"x":1755573241294,"y":35.17},{"x":1755573181134,"y":30.856},{"x":1755573120989,"y":29.047},{"x":1755573060840,"y":26.504},{"x":1755573000723,"y":24.68},{"x":1755572940573,"y":24.684},{"x":1755572880494,"y":26.19},{"x":1755572820280,"y":25.908},{"x":1755572762957,"y":27.583},{"x":1755572702829,"y":25.932},{"x":1755572642700,"y":26.752},{"x":1755572582566,"y":30.385},{"x":1755572522401,"y":29.0},{"x":1755572462246,"y":33.445},{"x":1755572402574,"y":32.464},{"x":1755572342410,"y":33.251},{"x":1755572282284,"y":35.22},{"x":1755572222147,"y":28.993},{"x":1755572161997,"y":27.823},{"x":1755572101874,"y":28.891},{"x":1755572041747,"y":27.616},{"x":1755571981620,"y":26.161},{"x":1755571921490,"y":24.358},{"x":1755571861365,"y":24.454},{"x":1755571801218,"y":24.95},{"x":1755571741100,"y":24.979},{"x":1755571680950,"y":29.154},{"x":1755571620826,"y":29.794},{"x":1755571560711,"y":34.946},{"x":1755571500621,"y":29.939},{"x":1755571440469,"y":28.549},{"x":1755571380330,"y":26.1},{"x":1755571320279,"y":26.843},{"x":1755571262914,"y":30.929},{"x":1755571202788,"y":28.936},{"x":1755571142666,"y":28.207},{"x":1755571082533,"y":25.588},{"x":1755571022405,"y":28.673},{"x":1755570962281,"y":31.421},{"x":1755570902151,"y":32.604},{"x":1755570842020,"y":31.658},{"x":1755570781881,"y":30.53},{"x":1755570721756,"y":28.907},{"x":1755570661629,"y":26.864},{"x":1755570601518,"y":31.063},{"x":1755570541373,"y":27.186},{"x":1755570481251,"y":26.959},{"x":1755570421126,"y":26.586},{"x":1755570360962,"y":28.95},{"x":1755570300846,"y":31.448},{"x":1755570240727,"y":27.516},{"x":1755570180573,"y":27.101},{"x":1755570120442,"y":29.604},{"x":1755570060274,"y":29.206},{"x":1755570003018,"y":27.7},{"x":1755569942877,"y":28.032},{"x":1755569882749,"y":26.575},{"x":1755569822625,"y":26.024},{"x":1755569762498,"y":26.495},{"x":1755569702359,"y":29.508},{"x":1755569642256,"y":32.768},{"x":1755569582117,"y":28.703},{"x":1755569521939,"y":28.36},{"x":1755569461775,"y":25.838},{"x":1755569401626,"y":28.51},{"x":1755569341499,"y":30.607},{"x":1755569281381,"y":31.524},{"x":1755569221243,"y":30.03},{"x":1755569161123,"y":25.834},{"x":1755569100975,"y":28.996},{"x":1755569040854,"y":27.63},{"x":1755568980704,"y":29.699},{"x":1755568920616,"y":28.453},{"x":1755568860423,"y":28.848},{"x":1755568800450,"y":38.796},{"x":1755568742981,"y":25.547},{"x":1755568682847,"y":36.012},{"x":1755568622720,"y":35.046},{"x":1755568562590,"y":33.797},{"x":1755568502477,"y":32.346},{"x":1755568442323,"y":32.396},{"x":1755568382205,"y":29.315},{"x":1755568322073,"y":28.944},{"x":1755568261918,"y":27.046},{"x":1755568201790,"y":27.714},{"x":1755568141668,"y":31.662},{"x":1755568081543,"y":29.015},{"x":1755568021415,"y":29.695},{"x":1755567961292,"y":25.301},{"x":1755567901217,"y":25.604},{"x":1755567841011,"y":28.495},{"x":1755567780879,"y":31.286},{"x":1755567720761,"y":35.406},{"x":1755567660634,"y":29.032},{"x":1755567600532,"y":27.698},{"x":1755567540357,"y":30.354},{"x":1755567482990,"y":28.243},{"x":1755567422867,"y":27.199},{"x":1755567362750,"y":28.112},{"x":1755567302612,"y":28.489},{"x":1755567242489,"y":29.785},{"x":1755567182361,"y":29.065},{"x":1755567122227,"y":29.5},{"x":1755567062124,"y":33.93},{"x":1755567001972,"y":28.264},{"x":1755566941845,"y":26.998},{"x":1755566881721,"y":28.746},{"x":1755566821593,"y":28.295},{"x":1755566761470,"y":32.024},{"x":1755566701346,"y":30.427},{"x":1755566641227,"y":29.783},{"x":1755566581086,"y":29.213},{"x":1755566520951,"y":27.226},{"x":1755566460829,"y":27.336},{"x":1755566400746,"y":24.746},{"x":1755566340574,"y":27.948},{"x":1755566280459,"y":25.9},{"x":1755566220283,"y":27.425},{"x":1755566160078,"y":30.628},{"x":1755566102901,"y":32.794},{"x":1755566042761,"y":30.974},{"x":1755565982632,"y":30.355},{"x":1755565922488,"y":28.751},{"x":1755565862330,"y":31.327},{"x":1755565802167,"y":35.093},{"x":1755565742036,"y":27.248},{"x":1755565681911,"y":27.516},{"x":1755565621757,"y":27.235},{"x":1755565561628,"y":27.761},{"x":1755565501500,"y":29.008},{"x":1755565441374,"y":28.571},{"x":1755565381237,"y":31.426},{"x":1755565321106,"y":29.354},{"x":1755565260964,"y":29.248},{"x":1755565201052,"y":29.107},{"x":1755565140586,"y":29.071},{"x":1755565080437,"y":26.153},{"x":1755565020250,"y":25.984},{"x":1755564962984,"y":24.461},{"x":1755564902859,"y":24.889},{"x":1755564842734,"y":24.988},{"x":1755564782602,"y":24.829},{"x":1755564722458,"y":26.185},{"x":1755564662332,"y":27.479},{"x":1755564602195,"y":27.716},{"x":1755564542068,"y":34.772},{"x":1755564481910,"y":36.905},{"x":1755564421773,"y":29.32},{"x":1755564361648,"y":29.46},{"x":1755564301558,"y":30.739},{"x":1755564241389,"y":28.571},{"x":1755564181245,"y":31.409},{"x":1755564121116,"y":24.616},{"x":1755564060983,"y":24.883},{"x":1755564000898,"y":25.108},{"x":1755563940756,"y":27.57},{"x":1755563880604,"y":29.608},{"x":1755563820509,"y":33.199},{"x":1755563760320,"y":31.195},{"x":1755563700215,"y":31.206},{"x":1755563642977,"y":30.388},{"x":1755563582856,"y":29.49},{"x":1755563522734,"y":31.344},{"x":1755563462599,"y":26.416},{"x":1755563402469,"y":25.668},{"x":1755563342341,"y":25.43},{"x":1755563282220,"y":25.638},{"x":1755563222084,"y":27.731},{"x":1755563161945,"y":32.398},{"x":1755563101806,"y":32.356},{"x":1755563041685,"y":30.194},{"x":1755562981561,"y":30.194},{"x":1755562921427,"y":28.573},{"x":1755562861302,"y":28.042},{"x":1755562801179,"y":28.158},{"x":1755562741025,"y":28.049},{"x":1755562680898,"y":27.652},{"x":1755562620776,"y":26.59},{"x":1755562560660,"y":31.116},{"x":1755562500549,"y":29.648},{"x":1755562440425,"y":31.106},{"x":1755562380305,"y":31.655},{"x":1755562322861,"y":31.6},{"x":1755562262717,"y":29.34},{"x":1755562202566,"y":27.637},{"x":1755562142436,"y":26.67},{"x":1755562082302,"y":25.007},{"x":1755562022173,"y":26.134},{"x":1755561962029,"y":29.621},{"x":1755561901891,"y":33.641},{"x":1755561841750,"y":27.82},{"x":1755561781619,"y":28.008},{"x":1755561721496,"y":28.499},{"x":1755561661393,"y":27.5},{"x":1755561601366,"y":33.86},{"x":1755561541085,"y":30.15},{"x":1755561480950,"y":28.41},{"x":1755561420816,"y":31.03},{"x":1755561360811,"y":27.679},{"x":1755561300766,"y":27.262},{"x":1755561240627,"y":28.842},{"x":1755561180437,"y":27.815},{"x":1755561123052,"y":29.06},{"x":1755561062893,"y":27.637},{"x":1755561002769,"y":28.224},{"x":1755560942656,"y":33.738},{"x":1755560882529,"y":31.816},{"x":1755560822405,"y":35.042},{"x":1755560762271,"y":29.995},{"x":1755560702136,"y":28.75},{"x":1755560642014,"y":35.53},{"x":1755560581877,"y":30.724},{"x":1755560521748,"y":29.426},{"x":1755560461599,"y":30.599},{"x":1755560401478,"y":30.344},{"x":1755560341343,"y":28.728},{"x":1755560281227,"y":27.5},{"x":1755560221099,"y":27.631},{"x":1755560160971,"y":27.665},{"x":1755560100867,"y":27.799},{"x":1755560040718,"y":30.148},{"x":1755559980594,"y":30.091},{"x":1755559920502,"y":32.749},{"x":1755559860344,"y":28.364},{"x":1755559800334,"y":35.132},{"x":1755559742910,"y":33.32},{"x":1755559682781,"y":34.252},{"x":1755559622664,"y":38.389},{"x":1755559562527,"y":30.044},{"x":1755559502400,"y":29.057},{"x":1755559442269,"y":28.568},{"x":1755559382144,"y":27.371},{"x":1755559322016,"y":30.848},{"x":1755559261882,"y":32.926},{"x":1755559201753,"y":30.139},{"x":1755559141629,"y":28.912},{"x":1755559081507,"y":29.408},{"x":1755559021391,"y":26.765},{"x":1755558961260,"y":35.492},{"x":1755558901144,"y":31.906},{"x":1755558841003,"y":30.504},{"x":1755558780859,"y":28.272},{"x":1755558720757,"y":27.372},{"x":1755558660593,"y":31.019},{"x":1755558600452,"y":27.03},{"x":1755558540260,"y":30.857},{"x":1755558482975,"y":29.56},{"x":1755558422853,"y":31.2},{"x":1755558362733,"y":30.179},{"x":1755558302604,"y":32.524},{"x":1755558242464,"y":29.275},{"x":1755558182342,"y":29.897},{"x":1755558122213,"y":28.331},{"x":1755558062087,"y":28.958},{"x":1755558002020,"y":27.193},{"x":1755557941826,"y":27.334},{"x":1755557881687,"y":27.355},{"x":1755557821567,"y":27.466},{"x":1755557761432,"y":31.603},{"x":1755557701311,"y":37.658},{"x":1755557641189,"y":31.208},{"x":1755557581058,"y":30.901},{"x":1755557520918,"y":30.821},{"x":1755557460798,"y":26.354},{"x":1755557400701,"y":31.559},{"x":1755557340570,"y":27.241},{"x":1755557280470,"y":27.148},{"x":1755557220316,"y":26.968},{"x":1755557160171,"y":27.035},{"x":1755557102921,"y":30.0},{"x":1755557042807,"y":31.003},{"x":1755556982680,"y":30.628},{"x":1755556922534,"y":32.498},{"x":1755556862407,"y":30.116},{"x":1755556802268,"y":31.555},{"x":1755556742145,"y":36.457},{"x":1755556681999,"y":29.848},{"x":1755556621872,"y":27.757},{"x":1755556561756,"y":28.241},{"x":1755556501617,"y":29.425},{"x":1755556441485,"y":36.162},{"x":1755556381354,"y":28.38},{"x":1755556321216,"y":28.146},{"x":1755556261090,"y":30.973},{"x":1755556201017,"y":29.468},{"x":1755556140791,"y":34.302},{"x":1755556080730,"y":30.136},{"x":1755556020557,"y":32.255},{"x":1755555960456,"y":31.932},{"x":1755555900280,"y":32.524},{"x":1755555842941,"y":33.654},{"x":1755555782824,"y":34.376},{"x":1755555722693,"y":32.917},{"x":1755555662577,"y":32.108},{"x":1755555602444,"y":35.868},{"x":1755555542315,"y":31.195},{"x":1755555482176,"y":34.844},{"x":1755555422048,"y":31.272},{"x":1755555361887,"y":34.723},{"x":1755555301761,"y":35.189},{"x":1755555241642,"y":34.021},{"x":1755555181477,"y":39.059},{"x":1755555121340,"y":31.394},{"x":1755555061188,"y":30.762},{"x":1755555001030,"y":31.775},{"x":1755554940880,"y":31.883},{"x":1755554880766,"y":28.166},{"x":1755554820590,"y":30.736},{"x":1755554760477,"y":28.288},{"x":1755554700404,"y":28.87},{"x":1755554643000,"y":42.049},{"x":1755554582861,"y":39.668},{"x":1755554522734,"y":42.522},{"x":1755554462594,"y":43.96},{"x":1755554402437,"y":42.68},{"x":1755554342265,"y":33.664},{"x":1755554282125,"y":31.896},{"x":1755554221968,"y":34.807},{"x":1755554161845,"y":30.63},{"x":1755554101720,"y":29.106},{"x":1755554041596,"y":39.251},{"x":1755553981474,"y":29.116},{"x":1755553921345,"y":38.94},{"x":1755553861201,"y":33.43},{"x":1755553801094,"y":36.349},{"x":1755553740916,"y":35.88},{"x":1755553680806,"y":34.09},{"x":1755553620650,"y":37.91},{"x":1755553560544,"y":40.979},{"x":1755553500393,"y":40.652},{"x":1755553440163,"y":40.918},{"x":1755553382904,"y":41.014},{"x":1755553322782,"y":38.226},{"x":1755553262645,"y":29.61},{"x":1755553202520,"y":28.806},{"x":1755553142392,"y":31.648},{"x":1755553082289,"y":32.785},{"x":1755553022115,"y":31.88},{"x":1755552961983,"y":35.43},{"x":1755552901853,"y":28.081},{"x":1755552841730,"y":30.204},{"x":1755552781608,"y":30.826},{"x":1755552721478,"y":29.316},{"x":1755552661350,"y":37.775},{"x":1755552601264,"y":33.134},{"x":1755552541073,"y":31.454},{"x":1755552480933,"y":33.264},{"x":1755552420812,"y":33.51},{"x":1755552360688,"y":37.252},{"x":1755552300581,"y":33.613},{"x":1755552240680,"y":35.9},{"x":1755552180317,"y":33.858},{"x":1755552120157,"y":34.378},{"x":1755552062849,"y":35.946},{"x":1755552002720,"y":36.396},{"x":1755551942585,"y":33.894},{"x":1755551882451,"y":37.114},{"x":1755551822334,"y":36.629},{"x":1755551762196,"y":34.423},{"x":1755551702078,"y":53.479},{"x":1755551641949,"y":53.046},{"x":1755551581802,"y":51.68},{"x":1755551521684,"y":52.955},{"x":1755551461527,"y":49.058},{"x":1755551401358,"y":29.128},{"x":1755551341208,"y":30.7},{"x":1755551281096,"y":30.478},{"x":1755551220947,"y":35.606},{"x":1755551160828,"y":34.52},{"x":1755551100704,"y":34.252},{"x":1755551040616,"y":36.119},{"x":1755550980444,"y":33.898},{"x":1755550920414,"y":44.176},{"x":1755550862957,"y":40.211},{"x":1755550802838,"y":40.351},{"x":1755550742712,"y":38.15},{"x":1755550682588,"y":38.521},{"x":1755550622475,"y":34.328},{"x":1755550562361,"y":29.992},{"x":1755550502198,"y":31.436},{"x":1755550442077,"y":31.241},{"x":1755550381942,"y":30.982},{"x":1755550321811,"y":44.735},{"x":1755550261674,"y":44.112},{"x":1755550201602,"y":42.302},{"x":1755550141424,"y":40.298},{"x":1755550081304,"y":38.206},{"x":1755550021155,"y":33.212},{"x":1755549961013,"y":31.958},{"x":1755549900991,"y":33.58},{"x":1755549840705,"y":53.159},{"x":1755549780580,"y":40.524},{"x":1755549720514,"y":45.546},{"x":1755549660230,"y":44.81},{"x":1755549602942,"y":57.686},{"x":1755549542817,"y":42.188},{"x":1755549482695,"y":65.653},{"x":1755549422573,"y":36.764},{"x":1755549362447,"y":47.921},{"x":1755549302316,"y":33.919},{"x":1755549242186,"y":36.552},{"x":1755549182047,"y":50.986},{"x":1755549121921,"y":49.979},{"x":1755549061798,"y":32.946},{"x":1755549001728,"y":30.905},{"x":1755548941539,"y":31.16},{"x":1755548881421,"y":33.674},{"x":1755548821292,"y":35.821},{"x":1755548761157,"y":35.398},{"x":1755548701019,"y":44.202},{"x":1755548640891,"y":36.112},{"x":1755548580747,"y":37.885},{"x":1755548520643,"y":35.566},{"x":1755548460470,"y":32.687},{"x":1755548400372,"y":33.368},{"x":1755548340096,"y":36.778},{"x":1755548282908,"y":33.025},{"x":1755548222790,"y":37.78},{"x":1755548162683,"y":30.442},{"x":1755548102543,"y":30.966},{"x":1755548042419,"y":31.816},{"x":1755547982264,"y":32.009},{"x":1755547922082,"y":41.752},{"x":1755547861954,"y":42.439},{"x":1755547801789,"y":38.371},{"x":1755547741657,"y":37.298},{"x":1755547681533,"y":45.578},{"x":1755547621388,"y":52.252},{"x":1755547561271,"y":57.176},{"x":1755547501151,"y":52.28},{"x":1755547441010,"y":52.614},{"x":1755547380877,"y":35.558},{"x":1755547320755,"y":32.558},{"x":1755547260653,"y":34.414},{"x":1755547200955,"y":34.7},{"x":1755547140337,"y":35.702},{"x":1755547080162,"y":42.502},{"x":1755547022906,"y":44.935},{"x":1755546962781,"y":35.747},{"x":1755546902646,"y":37.116},{"x":1755546842530,"y":35.54},{"x":1755546782399,"y":50.246},{"x":1755546722268,"y":33.571},{"x":1755546662145,"y":46.738},{"x":1755546602017,"y":51.697},{"x":1755546541883,"y":46.168},{"x":1755546481759,"y":49.69},{"x":1755546421633,"y":51.355},{"x":1755546361508,"y":42.848},{"x":1755546301388,"y":36.348},{"x":1755546241281,"y":37.648},{"x":1755546181130,"y":38.936},{"x":1755546120985,"y":41.922},{"x":1755546060879,"y":36.493},{"x":1755546000891,"y":40.824},{"x":1755545940570,"y":44.323},{"x":1755545880511,"y":36.047},{"x":1755545820254,"y":46.382},{"x":1755545763017,"y":47.428},{"x":1755545702883,"y":55.888},{"x":1755545642757,"y":48.168},{"x":1755545582630,"y":48.632},{"x":1755545522515,"y":50.569},{"x":1755545462384,"y":41.486},{"x":1755545402254,"y":38.784},{"x":1755545342123,"y":37.487},{"x":1755545281985,"y":40.504},{"x":1755545221893,"y":41.429},{"x":1755545161737,"y":43.868},{"x":1755545101615,"y":44.114},{"x":1755545041469,"y":37.502},{"x":1755544981347,"y":35.206},{"x":1755544921230,"y":35.887},{"x":1755544861107,"y":54.665},{"x":1755544800957,"y":51.838},{"x":1755544740824,"y":34.38},{"x":1755544680721,"y":51.223},{"x":1755544620701,"y":57.234},{"x":1755544560487,"y":62.096},{"x":1755544500347,"y":64.391},{"x":1755544442995,"y":63.04},{"x":1755544382855,"y":52.026},{"x":1755544322725,"y":42.415},{"x":1755544262575,"y":35.832},{"x":1755544202406,"y":38.058},{"x":1755544142301,"y":40.001},{"x":1755544082158,"y":53.604},{"x":1755544022029,"y":51.982},{"x":1755543961888,"y":52.319},{"x":1755543901760,"y":51.306},{"x":1755543841631,"y":54.353},{"x":1755543781513,"y":47.605},{"x":1755543721386,"y":42.137},{"x":1755543661276,"y":39.268},{"x":1755543601014,"y":34.678},{"x":1755543540806,"y":34.208},{"x":1755543480687,"y":44.832},{"x":1755543420583,"y":53.428},{"x":1755543360460,"y":48.898},{"x":1755543300351,"y":44.716},{"x":1755543242955,"y":40.924},{"x":1755543182831,"y":35.815},{"x":1755543122708,"y":34.374},{"x":1755543062580,"y":34.868},{"x":1755543002429,"y":38.105},{"x":1755542942293,"y":38.908},{"x":1755542882169,"y":37.733},{"x":1755542822036,"y":33.781},{"x":1755542761897,"y":36.716},{"x":1755542701771,"y":36.75},{"x":1755542641649,"y":37.794},{"x":1755542581527,"y":37.625},{"x":1755542521392,"y":46.909},{"x":1755542461267,"y":57.634},{"x":1755542401172,"y":66.876},{"x":1755542340991,"y":60.746},{"x":1755542280870,"y":54.626},{"x":1755542220747,"y":39.733},{"x":1755542160651,"y":43.36},{"x":1755542100487,"y":45.689},{"x":1755542040382,"y":38.464},{"x":1755541980206,"y":40.824},{"x":1755541922953,"y":52.866},{"x":1755541862826,"y":59.488},{"x":1755541802698,"y":48.992},{"x":1755541742584,"y":47.732},{"x":1755541682448,"y":49.748},{"x":1755541622311,"y":39.27},{"x":1755541562187,"y":39.427},{"x":1755541502066,"y":45.91},{"x":1755541441918,"y":52.656},{"x":1755541381794,"y":49.478},{"x":1755541321668,"y":45.974},{"x":1755541261553,"y":48.232},{"x":1755541201418,"y":42.87},{"x":1755541141291,"y":32.147},{"x":1755541081162,"y":37.381},{"x":1755541021053,"y":37.902},{"x":1755540960867,"y":44.299},{"x":1755540900788,"y":37.361},{"x":1755540840642,"y":37.804},{"x":1755540780461,"y":42.58},{"x":1755540720266,"y":41.053},{"x":1755540662955,"y":43.6},{"x":1755540602809,"y":44.033},{"x":1755540542678,"y":49.986},{"x":1755540482553,"y":34.868},{"x":1755540422424,"y":36.677},{"x":1755540362305,"y":39.544},{"x":1755540302159,"y":39.419},{"x":1755540242026,"y":37.182},{"x":1755540181895,"y":36.706},{"x":1755540121756,"y":31.775},{"x":1755540061635,"y":44.006},{"x":1755540001586,"y":61.318},{"x":1755539941351,"y":57.226},{"x":1755539881227,"y":53.384},{"x":1755539821095,"y":57.686},{"x":1755539760954,"y":46.082},{"x":1755539700846,"y":34.892},{"x":1755539640698,"y":34.864},{"x":1755539580582,"y":35.878},{"x":1755539520458,"y":49.24},{"x":1755539460364,"y":51.078},{"x":1755539400129,"y":45.344},{"x":1755539342925,"y":50.777},{"x":1755539282804,"y":53.176},{"x":1755539222680,"y":51.588},{"x":1755539162561,"y":41.492},{"x":1755539102426,"y":44.212},{"x":1755539042304,"y":38.76},{"x":1755538982171,"y":42.474},{"x":1755538922041,"y":32.898},{"x":1755538861897,"y":41.964},{"x":1755538801761,"y":40.958},{"x":1755538741631,"y":43.488},{"x":1755538681497,"y":39.928},{"x":1755538621421,"y":38.7},{"x":1755538561241,"y":33.805},{"x":1755538501110,"y":30.196},{"x":1755538440983,"y":32.459},{"x":1755538380846,"y":34.666},{"x":1755538320721,"y":35.298},{"x":1755538260598,"y":36.104},{"x":1755538200516,"y":37.933},{"x":1755538140302,"y":38.555},{"x":1755538083010,"y":29.321},{"x":1755538022871,"y":32.58},{"x":1755537962754,"y":29.082},{"x":1755537902618,"y":28.447},{"x":1755537842488,"y":27.432},{"x":1755537782363,"y":25.418},{"x":1755537722231,"y":30.289},{"x":1755537662103,"y":34.799},{"x":1755537601964,"y":35.628},{"x":1755537541825,"y":34.85},{"x":1755537481705,"y":31.925},{"x":1755537421585,"y":27.322},{"x":1755537361452,"y":50.699},{"x":1755537301335,"y":47.005},{"x":1755537241200,"y":50.642},{"x":1755537181063,"y":54.0},{"x":1755537120885,"y":53.617},{"x":1755537060715,"y":23.68},{"x":1755537000573,"y":27.271},{"x":1755536940454,"y":32.324},{"x":1755536880304,"y":30.814},{"x":1755536822961,"y":34.044},{"x":1755536762836,"y":33.008},{"x":1755536702709,"y":45.726},{"x":1755536642609,"y":39.446},{"x":1755536582459,"y":35.268},{"x":1755536522333,"y":41.07},{"x":1755536462200,"y":47.249},{"x":1755536402104,"y":41.89},{"x":1755536341923,"y":31.048},{"x":1755536281801,"y":30.448},{"x":1755536221673,"y":30.845},{"x":1755536161552,"y":39.343},{"x":1755536101428,"y":39.419},{"x":1755536041306,"y":42.241},{"x":1755535981190,"y":39.928},{"x":1755535921060,"y":45.016},{"x":1755535860925,"y":29.639},{"x":1755535800825,"y":26.141},{"x":1755535740680,"y":28.01},{"x":1755535680600,"y":28.996},{"x":1755535620441,"y":32.255},{"x":1755535560271,"y":39.847},{"x":1755535502953,"y":53.6},{"x":1755535442826,"y":34.13},{"x":1755535382702,"y":48.362},{"x":1755535322584,"y":46.163},{"x":1755535262466,"y":32.74},{"x":1755535202357,"y":28.355},{"x":1755535142201,"y":33.859},{"x":1755535082098,"y":29.917},{"x":1755535021945,"y":33.676},{"x":1755534961821,"y":25.904},{"x":1755534901690,"y":27.397},{"x":1755534841549,"y":22.751},{"x":1755534781431,"y":21.874},{"x":1755534721299,"y":25.648},{"x":1755534661174,"y":23.231},{"x":1755534601037,"y":26.996},{"x":1755534540873,"y":31.769},{"x":1755534480750,"y":32.027},{"x":1755534420595,"y":46.64},{"x":1755534360514,"y":40.92},{"x":1755534300348,"y":52.777},{"x":1755534240145,"y":50.318},{"x":1755534182922,"y":51.347},{"x":1755534122786,"y":44.638},{"x":1755534062661,"y":35.593},{"x":1755534002512,"y":45.822},{"x":1755533942390,"y":31.624},{"x":1755533882265,"y":38.79},{"x":1755533822116,"y":33.667},{"x":1755533761959,"y":40.873},{"x":1755533701830,"y":42.971},{"x":1755533641703,"y":43.938},{"x":1755533581562,"y":41.61},{"x":1755533521412,"y":36.175},{"x":1755533461223,"y":36.388},{"x":1755533401085,"y":31.646},{"x":1755533340928,"y":31.028},{"x":1755533280815,"y":26.752},{"x":1755533220674,"y":27.624},{"x":1755533160575,"y":32.77},{"x":1755533100399,"y":36.552},{"x":1755533040290,"y":29.611},{"x":1755532982921,"y":32.897},{"x":1755532922803,"y":32.278},{"x":1755532862673,"y":32.61},{"x":1755532802547,"y":33.698},{"x":1755532742358,"y":32.893},{"x":1755532682236,"y":52.055},{"x":1755532622106,"y":58.451},{"x":1755532561975,"y":53.794},{"x":1755532501848,"y":79.93},{"x":1755532441725,"y":55.384},{"x":1755532381596,"y":30.257},{"x":1755532321479,"y":28.428},{"x":1755532261355,"y":29.51},{"x":1755532201230,"y":46.097},{"x":1755532141107,"y":40.225},{"x":1755532080950,"y":43.531},{"x":1755532020815,"y":41.429},{"x":1755531960697,"y":42.42},{"x":1755531900610,"y":25.732},{"x":1755531840429,"y":29.98},{"x":1755531780354,"y":29.264},{"x":1755531723016,"y":41.538},{"x":1755531662891,"y":42.739},{"x":1755531602758,"y":35.453},{"x":1755531542639,"y":37.076},{"x":1755531482515,"y":37.994},{"x":1755531422387,"y":28.393},{"x":1755531362255,"y":27.75},{"x":1755531302135,"y":26.72},{"x":1755531241993,"y":30.83},{"x":1755531181865,"y":31.885},{"x":1755531121737,"y":33.066},{"x":1755531061610,"y":31.259},{"x":1755531001505,"y":28.321},{"x":1755530941274,"y":31.056},{"x":1755530881152,"y":28.83},{"x":1755530820992,"y":25.95},{"x":1755530760868,"y":28.254},{"x":1755530700777,"y":46.914},{"x":1755530640632,"y":46.374},{"x":1755530580498,"y":58.378},{"x":1755530520342,"y":52.434},{"x":1755530460138,"y":43.966},{"x":1755530402911,"y":24.852},{"x":1755530342779,"y":42.058},{"x":1755530282659,"y":29.272},{"x":1755530222538,"y":35.494},{"x":1755530162411,"y":30.38},{"x":1755530102282,"y":39.533},{"x":1755530042110,"y":35.262},{"x":1755529981981,"y":39.389},{"x":1755529921798,"y":26.555},{"x":1755529861625,"y":26.077},{"x":1755529801490,"y":24.529},{"x":1755529741368,"y":31.676},{"x":1755529681248,"y":20.611},{"x":1755529621119,"y":33.138},{"x":1755529560967,"y":45.073},{"x":1755529500852,"y":39.289},{"x":1755529440745,"y":44.683},{"x":1755529380613,"y":43.098},{"x":1755529320500,"y":22.822},{"x":1755529260483,"y":27.175},{"x":1755529203021,"y":26.615},{"x":1755529142883,"y":33.232},{"x":1755529082754,"y":24.973},{"x":1755529022627,"y":23.578},{"x":1755528962501,"y":23.581},{"x":1755528902382,"y":18.935},{"x":1755528842254,"y":31.322},{"x":1755528782128,"y":27.503},{"x":1755528722004,"y":51.857},{"x":1755528661866,"y":63.684},{"x":1755528601743,"y":70.343},{"x":1755528541614,"y":54.808},{"x":1755528481488,"y":74.363},{"x":1755528421357,"y":42.87},{"x":1755528361231,"y":37.536},{"x":1755528301131,"y":34.734},{"x":1755528240908,"y":33.359},{"x":1755528180782,"y":50.893},{"x":1755528120671,"y":46.256},{"x":1755528060557,"y":53.836},{"x":1755528000393,"y":46.168},{"x":1755527942990,"y":45.101},{"x":1755527882872,"y":19.679},{"x":1755527822738,"y":32.93},{"x":1755527762607,"y":20.068},{"x":1755527702473,"y":18.904},{"x":1755527642349,"y":22.898},{"x":1755527582220,"y":19.231},{"x":1755527522070,"y":32.285},{"x":1755527461932,"y":24.498},{"x":1755527401794,"y":24.298},{"x":1755527341657,"y":13.974},{"x":1755527281540,"y":13.976},{"x":1755527221415,"y":49.174},{"x":1755527161312,"y":35.4},{"x":1755527101168,"y":32.962},{"x":1755527041033,"y":31.492},{"x":1755526980888,"y":33.577},{"x":1755526920924,"y":11.146},{"x":1755526860774,"y":24.742},{"x":1755526800830,"y":33.673},{"x":1755526740373,"y":44.017},{"x":1755526680357,"y":51.472},{"x":1755526622995,"y":64.789},{"x":1755526562865,"y":42.13},{"x":1755526502725,"y":41.348},{"x":1755526442586,"y":26.552},{"x":1755526382439,"y":26.986},{"x":1755526322290,"y":33.817},{"x":1755526262100,"y":27.112},{"x":1755526201944,"y":28.618},{"x":1755526141818,"y":26.144},{"x":1755526081695,"y":9.536},{"x":1755526021563,"y":13.446},{"x":1755525961423,"y":13.524},{"x":1755525901303,"y":14.893},{"x":1755525841186,"y":8.294},{"x":1755525781036,"y":6.846},{"x":1755525720910,"y":16.997},{"x":1755525660806,"y":24.762},{"x":1755525600801,"y":30.695},{"x":1755525540615,"y":30.163},{"x":1755525480353,"y":34.396},{"x":1755525420343,"y":52.942},{"x":1755525362985,"y":34.686},{"x":1755525302855,"y":25.574},{"x":1755525242725,"y":25.13},{"x":1755525182608,"y":13.525},{"x":1755525122479,"y":26.789},{"x":1755525062350,"y":45.496},{"x":1755525002230,"y":43.679},{"x":1755524942104,"y":48.191},{"x":1755524881959,"y":40.343},{"x":1755524821839,"y":28.481},{"x":1755524761714,"y":27.032},{"x":1755524701614,"y":19.387},{"x":1755524641460,"y":28.526},{"x":1755524581334,"y":32.97},{"x":1755524521208,"y":31.711},{"x":1755524461062,"y":33.755},{"x":1755524400941,"y":25.493},{"x":1755524340773,"y":20.274},{"x":1755524280643,"y":10.037},{"x":1755524220527,"y":14.07},{"x":1755524160432,"y":22.058},{"x":1755524100280,"y":18.401},{"x":1755524042935,"y":13.93},{"x":1755523982818,"y":16.196},{"x":1755523922700,"y":18.457},{"x":1755523862579,"y":22.424},{"x":1755523802445,"y":32.303},{"x":1755523742327,"y":30.228},{"x":1755523682198,"y":30.152},{"x":1755523622069,"y":32.641},{"x":1755523561956,"y":34.824},{"x":1755523501812,"y":27.652},{"x":1755523441694,"y":43.454},{"x":1755523381563,"y":46.212},{"x":1755523321431,"y":25.89},{"x":1755523261315,"y":26.861},{"x":1755523201219,"y":40.514},{"x":1755523141043,"y":51.149},{"x":1755523080913,"y":55.951},{"x":1755523020826,"y":53.052},{"x":1755522960662,"y":60.802},{"x":1755522900569,"y":34.141},{"x":1755522840392,"y":22.168},{"x":1755522780282,"y":21.223},{"x":1755522723018,"y":24.626},{"x":1755522662873,"y":33.583},{"x":1755522602717,"y":25.211},{"x":1755522542594,"y":24.641},{"x":1755522482495,"y":37.429},{"x":1755522422325,"y":30.199},{"x":1755522362206,"y":20.051},{"x":1755522302077,"y":17.941},{"x":1755522241931,"y":18.466},{"x":1755522181801,"y":31.436},{"x":1755522121669,"y":13.256},{"x":1755522061538,"y":15.143},{"x":1755522001527,"y":34.966},{"x":1755521941253,"y":16.512},{"x":1755521881135,"y":33.792},{"x":1755521820993,"y":17.428},{"x":1755521760875,"y":39.102},{"x":1755521700791,"y":44.918},{"x":1755521640640,"y":62.02},{"x":1755521580528,"y":45.017},{"x":1755521520430,"y":57.688},{"x":1755521462948,"y":44.741},{"x":1755521402820,"y":36.487},{"x":1755521342695,"y":22.446},{"x":1755521282572,"y":38.544},{"x":1755521222446,"y":38.984},{"x":1755521162315,"y":29.506},{"x":1755521102184,"y":38.873},{"x":1755521042046,"y":38.293},{"x":1755520981907,"y":36.948},{"x":1755520921784,"y":39.379},{"x":1755520861663,"y":40.997},{"x":1755520801542,"y":40.745},{"x":1755520741416,"y":28.832},{"x":1755520681276,"y":22.804},{"x":1755520621149,"y":24.956},{"x":1755520561016,"y":22.328},{"x":1755520500909,"y":27.311},{"x":1755520440771,"y":33.235},{"x":1755520380642,"y":28.964},{"x":1755520320525,"y":27.488},{"x":1755520260404,"y":21.718},{"x":1755520200353,"y":20.152},{"x":1755520142973,"y":21.1},{"x":1755520082848,"y":22.687},{"x":1755520022734,"y":26.056},{"x":1755519962611,"y":35.063},{"x":1755519902466,"y":36.245},{"x":1755519842342,"y":35.498},{"x":1755519782215,"y":32.281},{"x":1755519722088,"y":31.394},{"x":1755519661911,"y":18.155},{"x":1755519601788,"y":16.265},{"x":1755519541658,"y":17.225},{"x":1755519481544,"y":15.492},{"x":1755519421412,"y":35.64},{"x":1755519361280,"y":13.778},{"x":1755519301178,"y":18.58},{"x":1755519240991,"y":23.934},{"x":1755519180866,"y":18.96},{"x":1755519120701,"y":23.099},{"x":1755519060537,"y":23.972},{"x":1755519000330,"y":22.876},{"x":1755518940191,"y":34.705},{"x":1755518882949,"y":31.496},{"x":1755518822817,"y":41.23},{"x":1755518762694,"y":52.96},{"x":1755518702565,"y":54.035},{"x":1755518642433,"y":53.672},{"x":1755518582305,"y":51.634},{"x":1755518522176,"y":40.432},{"x":1755518462056,"y":35.538},{"x":1755518401920,"y":29.64},{"x":1755518341714,"y":22.792},{"x":1755518281587,"y":44.591},{"x":1755518221455,"y":32.927},{"x":1755518161333,"y":31.879},{"x":1755518101193,"y":33.871},{"x":1755518041058,"y":35.89},{"x":1755517980920,"y":26.471},{"x":1755517920810,"y":26.609},{"x":1755517860662,"y":26.326},{"x":1755517800603,"y":27.942},{"x":1755517740391,"y":26.081},{"x":1755517680325,"y":26.694},{"x":1755517620122,"y":27.55},{"x":1755517562901,"y":26.8},{"x":1755517502755,"y":32.849},{"x":1755517442630,"y":31.303},{"x":1755517382506,"y":43.704},{"x":1755517322388,"y":22.909},{"x":1755517262247,"y":27.295},{"x":1755517202121,"y":22.874},{"x":1755517141979,"y":31.39},{"x":1755517081853,"y":37.537},{"x":1755517021731,"y":29.341},{"x":1755516961608,"y":41.434},{"x":1755516901495,"y":36.094},{"x":1755516841354,"y":25.771},{"x":1755516781225,"y":47.798},{"x":1755516721100,"y":53.545},{"x":1755516660960,"y":53.261},{"x":1755516600884,"y":46.024},{"x":1755516540711,"y":51.362},{"x":1755516480597,"y":40.566},{"x":1755516420466,"y":31.876},{"x":1755516360282,"y":26.562},{"x":1755516300306,"y":28.276},{"x":1755516242931,"y":28.532},{"x":1755516182796,"y":32.905},{"x":1755516122677,"y":26.394},{"x":1755516062547,"y":33.206},{"x":1755516002415,"y":31.672},{"x":1755515942289,"y":19.322},{"x":1755515882170,"y":32.413},{"x":1755515821999,"y":29.278},{"x":1755515761869,"y":24.496},{"x":1755515701734,"y":31.188},{"x":1755515641630,"y":26.704},{"x":1755515581427,"y":31.466},{"x":1755515521272,"y":29.884},{"x":1755515461038,"y":31.091},{"x":1755515400895,"y":58.393},{"x":1755515340748,"y":39.814},{"x":1755515280672,"y":40.709},{"x":1755515220517,"y":36.649},{"x":1755515160348,"y":32.168},{"x":1755515100237,"y":24.373},{"x":1755515042917,"y":29.015},{"x":1755514982790,"y":39.636},{"x":1755514922653,"y":30.55},{"x":1755514862516,"y":27.569},{"x":1755514802437,"y":39.806},{"x":1755514742256,"y":34.75},{"x":1755514682134,"y":52.844},{"x":1755514621990,"y":36.499},{"x":1755514561866,"y":30.538},{"x":1755514501771,"y":26.592},{"x":1755514441701,"y":22.188},{"x":1755514381501,"y":21.842},{"x":1755514321381,"y":24.672},{"x":1755514261257,"y":24.341},{"x":1755514201129,"y":24.955},{"x":1755514140987,"y":25.688},{"x":1755514080868,"y":20.92},{"x":1755514020723,"y":18.492},{"x":1755513960632,"y":14.636},{"x":1755513900602,"y":19.6},{"x":1755513840327,"y":24.996},{"x":1755513780185,"y":21.125},{"x":1755513722912,"y":29.672},{"x":1755513662792,"y":31.006},{"x":1755513602611,"y":49.708},{"x":1755513542505,"y":46.279},{"x":1755513482369,"y":42.745},{"x":1755513422230,"y":34.676},{"x":1755513362109,"y":31.756},{"x":1755513301979,"y":20.837},{"x":1755513241848,"y":20.197},{"x":1755513181736,"y":19.703},{"x":1755513121609,"y":24.384},{"x":1755513061483,"y":35.822},{"x":1755513001367,"y":39.331},{"x":1755512941231,"y":37.247},{"x":1755512881107,"y":30.925},{"x":1755512820959,"y":30.254},{"x":1755512760835,"y":24.203},{"x":1755512700706,"y":23.694},{"x":1755512640584,"y":23.572},{"x":1755512580454,"y":19.562},{"x":1755512520283,"y":17.932},{"x":1755512462979,"y":15.308},{"x":1755512402862,"y":22.033},{"x":1755512342720,"y":20.828},{"x":1755512282602,"y":25.259},{"x":1755512222481,"y":25.362},{"x":1755512162350,"y":23.326},{"x":1755512102227,"y":22.357},{"x":1755512042118,"y":22.409},{"x":1755511981946,"y":19.877},{"x":1755511921800,"y":20.828},{"x":1755511861648,"y":20.693},{"x":1755511801510,"y":17.999},{"x":1755511741381,"y":12.802},{"x":1755511681247,"y":18.522},{"x":1755511621118,"y":16.448},{"x":1755511560976,"y":21.996},{"x":1755511500856,"y":22.483},{"x":1755511440739,"y":24.395},{"x":1755511380588,"y":21.223},{"x":1755511320471,"y":32.122},{"x":1755511260281,"y":42.96},{"x":1755511203031,"y":39.914},{"x":1755511142878,"y":39.686},{"x":1755511082741,"y":42.97},{"x":1755511022618,"y":64.111},{"x":1755510962476,"y":35.864},{"x":1755510902355,"y":27.66},{"x":1755510842232,"y":27.29},{"x":1755510782105,"y":28.561},{"x":1755510721957,"y":25.746},{"x":1755510661826,"y":20.566},{"x":1755510601710,"y":20.099},{"x":1755510541570,"y":24.011},{"x":1755510481454,"y":14.477},{"x":1755510421329,"y":30.306},{"x":1755510361205,"y":16.565},{"x":1755510301150,"y":31.739},{"x":1755510240824,"y":27.132},{"x":1755510180722,"y":28.604},{"x":1755510120615,"y":31.464},{"x":1755510060461,"y":28.054},{"x":1755510000376,"y":17.891},{"x":1755509942984,"y":23.496},{"x":1755509882856,"y":29.65},{"x":1755509822726,"y":25.676},{"x":1755509762606,"y":25.02},{"x":1755509702462,"y":21.895},{"x":1755509642343,"y":29.587},{"x":1755509582225,"y":31.637},{"x":1755509522079,"y":31.328},{"x":1755509461937,"y":30.155},{"x":1755509401813,"y":34.49},{"x":1755509341657,"y":21.626},{"x":1755509281533,"y":17.971},{"x":1755509221461,"y":19.747},{"x":1755509161284,"y":34.37},{"x":1755509101172,"y":34.126},{"x":1755509041025,"y":35.441},{"x":1755508980920,"y":49.814},{"x":1755508920739,"y":59.21},{"x":1755508860640,"y":43.687},{"x":1755508800500,"y":36.275},{"x":1755508740256,"y":30.834},{"x":1755508683017,"y":21.251},{"x":1755508622901,"y":21.2},{"x":1755508562764,"y":20.039},{"x":1755508502640,"y":20.737},{"x":1755508442514,"y":34.751},{"x":1755508382405,"y":35.882},{"x":1755508322212,"y":36.792},{"x":1755508262058,"y":40.973},{"x":1755508201879,"y":37.77},{"x":1755508141751,"y":23.927},{"x":1755508081626,"y":19.933},{"x":1755508021506,"y":23.519},{"x":1755507961374,"y":22.427},{"x":1755507901247,"y":18.624},{"x":1755507841123,"y":22.204},{"x":1755507780971,"y":34.783},{"x":1755507720846,"y":25.885},{"x":1755507660726,"y":39.599},{"x":1755507600678,"y":38.569},{"x":1755507540439,"y":39.174},{"x":1755507480272,"y":42.343},{"x":1755507422962,"y":36.992},{"x":1755507362843,"y":22.158},{"x":1755507302711,"y":41.089},{"x":1755507242585,"y":27.359},{"x":1755507182433,"y":29.347},{"x":1755507122274,"y":21.338},{"x":1755507062144,"y":22.014},{"x":1755507002007,"y":20.71},{"x":1755506941855,"y":18.254},{"x":1755506881722,"y":26.674},{"x":1755506821599,"y":22.417},{"x":1755506761477,"y":25.054},{"x":1755506701362,"y":27.806},{"x":1755506641199,"y":26.513},{"x":1755506581063,"y":25.134},{"x":1755506520924,"y":25.561},{"x":1755506460800,"y":31.549},{"x":1755506400768,"y":28.342},{"x":1755506340531,"y":28.069},{"x":1755506280410,"y":21.616},{"x":1755506220297,"y":23.821},{"x":1755506160057,"y":24.041},{"x":1755506102890,"y":50.916},{"x":1755506042765,"y":29.939},{"x":1755505982623,"y":29.623},{"x":1755505922502,"y":42.173},{"x":1755505862373,"y":46.098},{"x":1755505802234,"y":40.698},{"x":1755505742111,"y":37.226},{"x":1755505681981,"y":38.567},{"x":1755505621856,"y":28.045},{"x":1755505561731,"y":23.424},{"x":1755505501584,"y":28.592},{"x":1755505441457,"y":38.376},{"x":1755505381334,"y":39.305},{"x":1755505321196,"y":39.618},{"x":1755505260981,"y":40.108},{"x":1755505200932,"y":34.842},{"x":1755505140717,"y":40.67},{"x":1755505080596,"y":39.871},{"x":1755505020493,"y":37.6},{"x":1755504960304,"y":40.739},{"x":1755504900351,"y":37.543},{"x":1755504842938,"y":27.857},{"x":1755504782794,"y":50.165},{"x":1755504722645,"y":44.255},{"x":1755504662484,"y":43.076},{"x":1755504602330,"y":53.522},{"x":1755504542194,"y":69.666},{"x":1755504482070,"y":50.219},{"x":1755504421922,"y":45.499},{"x":1755504361796,"y":46.849},{"x":1755504301674,"y":31.087},{"x":1755504241542,"y":25.126},{"x":1755504181459,"y":21.631},{"x":1755504121292,"y":20.18},{"x":1755504061169,"y":48.649},{"x":1755504001052,"y":40.534},{"x":1755503940807,"y":41.14},{"x":1755503880693,"y":52.09},{"x":1755503820593,"y":50.015},{"x":1755503760460,"y":35.632},{"x":1755503700322,"y":37.658},{"x":1755503643022,"y":38.63},{"x":1755503582878,"y":26.195},{"x":1755503522756,"y":26.852},{"x":1755503462629,"y":23.945},{"x":1755503402502,"y":25.295},{"x":1755503342393,"y":25.241},{"x":1755503282244,"y":34.832},{"x":1755503222114,"y":30.666},{"x":1755503161963,"y":27.886},{"x":1755503101807,"y":30.378},{"x":1755503041683,"y":28.775},{"x":1755502981557,"y":27.211},{"x":1755502921437,"y":27.39},{"x":1755502861300,"y":26.22},{"x":1755502801198,"y":23.71},{"x":1755502741031,"y":24.347},{"x":1755502680929,"y":24.886},{"x":1755502620786,"y":33.626},{"x":1755502560716,"y":34.022},{"x":1755502500562,"y":32.003},{"x":1755502440435,"y":30.332},{"x":1755502380315,"y":29.552},{"x":1755502322956,"y":23.941},{"x":1755502262835,"y":24.944},{"x":1755502202714,"y":25.619},{"x":1755502142591,"y":39.361},{"x":1755502082472,"y":41.282},{"x":1755502022351,"y":40.667},{"x":1755501962224,"y":41.984},{"x":1755501902076,"y":40.334},{"x":1755501841961,"y":32.038},{"x":1755501781816,"y":29.902},{"x":1755501721692,"y":25.937},{"x":1755501661573,"y":27.17},{"x":1755501601477,"y":34.135},{"x":1755501541323,"y":30.266},{"x":1755501481199,"y":32.046},{"x":1755501421060,"y":33.162},{"x":1755501360936,"y":36.616},{"x":1755501300787,"y":29.31},{"x":1755501240706,"y":42.379},{"x":1755501180475,"y":28.129},{"x":1755501120274,"y":25.86},{"x":1755501063006,"y":26.653},{"x":1755501002796,"y":27.248},{"x":1755500942675,"y":25.231},{"x":1755500882547,"y":25.282},{"x":1755500822426,"y":27.23},{"x":1755500762284,"y":47.465},{"x":1755500702154,"y":43.208},{"x":1755500642018,"y":42.643},{"x":1755500581892,"y":42.33},{"x":1755500521770,"y":41.017},{"x":1755500461648,"y":29.602},{"x":1755500401503,"y":26.905},{"x":1755500341321,"y":25.579},{"x":1755500281201,"y":24.846},{"x":1755500221058,"y":24.763},{"x":1755500160922,"y":26.91},{"x":1755500100808,"y":26.12},{"x":1755500040648,"y":29.239},{"x":1755499980562,"y":31.794},{"x":1755499920390,"y":34.758},{"x":1755499860299,"y":42.044},{"x":1755499802962,"y":28.208},{"x":1755499742831,"y":25.046},{"x":1755499682712,"y":29.16},{"x":1755499622582,"y":26.752},{"x":1755499562457,"y":28.481},{"x":1755499502336,"y":28.72},{"x":1755499442206,"y":30.772},{"x":1755499382079,"y":31.224},{"x":1755499321946,"y":27.595},{"x":1755499261837,"y":26.624},{"x":1755499201705,"y":28.99},{"x":1755499141578,"y":45.544},{"x":1755499081481,"y":50.884},{"x":1755499021331,"y":42.733},{"x":1755498961205,"y":41.059},{"x":1755498901083,"y":45.533},{"x":1755498840932,"y":28.472},{"x":1755498780814,"y":36.032},{"x":1755498720724,"y":31.958},{"x":1755498660638,"y":27.967},{"x":1755498600469,"y":26.1},{"x":1755498540285,"y":42.496},{"x":1755498482915,"y":31.68},{"x":1755498422794,"y":33.612},{"x":1755498362670,"y":37.157},{"x":1755498302544,"y":35.774},{"x":1755498242415,"y":33.68},{"x":1755498182282,"y":31.918},{"x":1755498122159,"y":32.479},{"x":1755498062024,"y":49.348},{"x":1755498001895,"y":31.56},{"x":1755497941761,"y":47.933},{"x":1755497881622,"y":38.701},{"x":1755497821495,"y":36.868},{"x":1755497761362,"y":51.316},{"x":1755497701241,"y":58.249},{"x":1755497641110,"y":77.852},{"x":1755497580938,"y":61.039},{"x":1755497520788,"y":74.49},{"x":1755497460595,"y":46.147},{"x":1755497400429,"y":56.658},{"x":1755497340389,"y":53.519},{"x":1755497282976,"y":54.186},{"x":1755497222840,"y":40.838},{"x":1755497162705,"y":40.602},{"x":1755497102586,"y":36.661},{"x":1755497042474,"y":42.404},{"x":1755496982322,"y":52.444},{"x":1755496922192,"y":51.079},{"x":1755496862057,"y":50.386},{"x":1755496801968,"y":53.548},{"x":1755496741755,"y":46.591},{"x":1755496681629,"y":54.054},{"x":1755496621502,"y":52.908},{"x":1755496561371,"y":51.714},{"x":1755496501252,"y":51.037},{"x":1755496441123,"y":52.375},{"x":1755496380984,"y":38.281},{"x":1755496320862,"y":40.241},{"x":1755496260722,"y":39.517},{"x":1755496200616,"y":40.598},{"x":1755496140479,"y":39.6},{"x":1755496080329,"y":47.893},{"x":1755496020180,"y":60.725},{"x":1755495962931,"y":58.003},{"x":1755495902808,"y":57.239},{"x":1755495842680,"y":57.349},{"x":1755495782557,"y":60.386},{"x":1755495722437,"y":42.119},{"x":1755495662306,"y":41.873},{"x":1755495602175,"y":44.12},{"x":1755495542048,"y":40.536},{"x":1755495481909,"y":38.848},{"x":1755495421776,"y":37.696},{"x":1755495361641,"y":37.918},{"x":1755495301498,"y":39.301},{"x":1755495241414,"y":41.664},{"x":1755495181253,"y":40.111},{"x":1755495121117,"y":47.144},{"x":1755495060963,"y":42.463},{"x":1755495001007,"y":39.504},{"x":1755494940687,"y":40.897},{"x":1755494880733,"y":38.323},{"x":1755494820367,"y":42.946},{"x":1755494760211,"y":40.075},{"x":1755494702973,"y":40.364},{"x":1755494642857,"y":39.176},{"x":1755494582733,"y":38.85},{"x":1755494522612,"y":42.636},{"x":1755494462488,"y":42.444},{"x":1755494402363,"y":44.534},{"x":1755494342240,"y":43.624},{"x":1755494282109,"y":41.599},{"x":1755494221984,"y":39.474},{"x":1755494161847,"y":44.924},{"x":1755494101725,"y":38.633},{"x":1755494041612,"y":37.398},{"x":1755493981456,"y":37.606},{"x":1755493921285,"y":36.868},{"x":1755493861110,"y":33.048},{"x":1755493800978,"y":28.946},{"x":1755493740808,"y":28.538},{"x":1755493680694,"y":43.042},{"x":1755493620581,"y":43.53},{"x":1755493560432,"y":57.756},{"x":1755493500443,"y":56.509},{"x":1755493443010,"y":57.511},{"x":1755493382881,"y":42.733},{"x":1755493322745,"y":41.009},{"x":1755493262624,"y":28.48},{"x":1755493202510,"y":28.367},{"x":1755493142338,"y":30.02},{"x":1755493082210,"y":30.643},{"x":1755493022070,"y":29.382},{"x":1755492961932,"y":28.278},{"x":1755492901808,"y":31.879},{"x":1755492841681,"y":27.101},{"x":1755492781548,"y":27.917},{"x":1755492721427,"y":27.01},{"x":1755492661287,"y":31.886},{"x":1755492601133,"y":29.974},{"x":1755492540986,"y":43.126},{"x":1755492480864,"y":43.643},{"x":1755492420739,"y":42.816},{"x":1755492360648,"y":40.513},{"x":1755492300550,"y":40.973},{"x":1755492240357,"y":32.22},{"x":1755492180196,"y":29.366},{"x":1755492122924,"y":26.173},{"x":1755492062797,"y":29.47},{"x":1755492002679,"y":31.126},{"x":1755491942543,"y":34.169},{"x":1755491882418,"y":30.331},{"x":1755491822289,"y":28.388},{"x":1755491762160,"y":26.148},{"x":1755491702028,"y":25.016},{"x":1755491641899,"y":42.065},{"x":1755491581777,"y":40.29},{"x":1755491521649,"y":39.606},{"x":1755491461523,"y":41.24},{"x":1755491401390,"y":42.461},{"x":1755491341271,"y":26.098},{"x":1755491281139,"y":30.558},{"x":1755491221021,"y":29.141},{"x":1755491160885,"y":33.934},{"x":1755491100741,"y":33.979},{"x":1755491040671,"y":34.205},{"x":1755490980520,"y":37.7},{"x":1755490920432,"y":30.57},{"x":1755490862970,"y":28.26},{"x":1755490802845,"y":28.594},{"x":1755490742725,"y":29.724},{"x":1755490682587,"y":27.193},{"x":1755490622469,"y":27.002},{"x":1755490562337,"y":25.826},{"x":1755490502221,"y":25.97},{"x":1755490442073,"y":25.758},{"x":1755490381919,"y":29.068},{"x":1755490321791,"y":36.886},{"x":1755490261550,"y":32.243},{"x":1755490201430,"y":32.353},{"x":1755490141303,"y":29.102},{"x":1755490081175,"y":27.343},{"x":1755490021014,"y":30.598},{"x":1755489960883,"y":27.906},{"x":1755489900850,"y":30.316},{"x":1755489840647,"y":26.826},{"x":1755489780490,"y":26.035},{"x":1755489720389,"y":28.741},{"x":1755489660034,"y":28.433},{"x":1755489602891,"y":31.014},{"x":1755489542757,"y":49.89},{"x":1755489482631,"y":44.965},{"x":1755489422483,"y":42.749},{"x":1755489362362,"y":41.748},{"x":1755489302221,"y":44.376},{"x":1755489242095,"y":25.621},{"x":1755489181955,"y":26.976},{"x":1755489121832,"y":31.158},{"x":1755489061709,"y":29.026},{"x":1755489001592,"y":32.888},{"x":1755488941468,"y":29.572},{"x":1755488881339,"y":29.678},{"x":1755488821223,"y":30.865},{"x":1755488761097,"y":31.603},{"x":1755488701045,"y":30.799},{"x":1755488640821,"y":30.173},{"x":1755488580704,"y":29.58},{"x":1755488520583,"y":28.824},{"x":1755488460532,"y":28.802},{"x":1755488400355,"y":29.119},{"x":1755488340205,"y":33.356},{"x":1755488282926,"y":32.269},{"x":1755488222802,"y":29.346},{"x":1755488162666,"y":28.67},{"x":1755488102547,"y":28.866},{"x":1755488042424,"y":52.625},{"x":1755487982319,"y":46.076},{"x":1755487922174,"y":43.38},{"x":1755487862048,"y":43.496},{"x":1755487801912,"y":45.487},{"x":1755487741778,"y":25.706},{"x":1755487681650,"y":27.248},{"x":1755487621531,"y":29.854},{"x":1755487561403,"y":27.528},{"x":1755487501290,"y":26.088},{"x":1755487441160,"y":31.034},{"x":1755487381009,"y":32.065},{"x":1755487320880,"y":27.488},{"x":1755487260760,"y":31.692},{"x":1755487200681,"y":31.246},{"x":1755487140534,"y":28.079},{"x":1755487080407,"y":31.321},{"x":1755487020193,"y":27.108},{"x":1755486962948,"y":25.304},{"x":1755486902816,"y":26.592},{"x":1755486842670,"y":29.291},{"x":1755486782523,"y":28.651},{"x":1755486722377,"y":27.588},{"x":1755486662213,"y":29.173},{"x":1755486602090,"y":29.23},{"x":1755486541366,"y":27.985},{"x":1755486481239,"y":31.008},{"x":1755486421122,"y":34.764},{"x":1755486360971,"y":31.954},{"x":1755486300894,"y":28.241},{"x":1755486240715,"y":28.582},{"x":1755486182568,"y":28.819},{"x":1755486122358,"y":48.464},{"x":1755486062187,"y":43.754},{"x":1755486001013,"y":43.956},{"x":1755485940600,"y":40.792},{"x":1755485880529,"y":38.352},{"x":1755485820412,"y":25.435},{"x":1755485762986,"y":26.413},{"x":1755485702868,"y":29.328},{"x":1755485642749,"y":29.131},{"x":1755485582619,"y":30.706},{"x":1755485522492,"y":33.068},{"x":1755485462363,"y":34.818},{"x":1755485402246,"y":34.632},{"x":1755485342113,"y":31.378},{"x":1755485281973,"y":27.325},{"x":1755485221854,"y":25.642},{"x":1755485161732,"y":30.251},{"x":1755485101601,"y":25.768},{"x":1755485041473,"y":26.516},{"x":1755484981341,"y":26.966},{"x":1755484921217,"y":27.563},{"x":1755484861084,"y":32.756},{"x":1755484800932,"y":32.034},{"x":1755484740793,"y":33.436},{"x":1755484680668,"y":44.504},{"x":1755484620576,"y":45.337},{"x":1755484560602,"y":41.5},{"x":1755484500389,"y":45.976},{"x":1755484440116,"y":41.275},{"x":1755484382900,"y":25.961},{"x":1755484322776,"y":25.064},{"x":1755484262649,"y":25.549},{"x":1755484202525,"y":30.762},{"x":1755484142391,"y":25.708},{"x":1755484082273,"y":27.881},{"x":1755484022131,"y":26.825},{"x":1755483962000,"y":27.277},{"x":1755483901868,"y":30.95},{"x":1755483841745,"y":36.803},{"x":1755483781622,"y":34.583},{"x":1755483721498,"y":34.387},{"x":1755483661377,"y":31.808},{"x":1755483601262,"y":28.54},{"x":1755483541128,"y":27.917},{"x":1755483480996,"y":27.095},{"x":1755483420900,"y":28.922},{"x":1755483360735,"y":26.917},{"x":1755483300632,"y":29.276},{"x":1755483240402,"y":32.028},{"x":1755483180246,"y":27.871},{"x":1755483122952,"y":26.915},{"x":1755483062802,"y":30.642},{"x":1755483002652,"y":43.094},{"x":1755482942528,"y":46.933},{"x":1755482882388,"y":42.064},{"x":1755482822259,"y":39.817},{"x":1755482762102,"y":39.672},{"x":1755482701941,"y":25.13},{"x":1755482641819,"y":26.225},{"x":1755482581704,"y":26.97},{"x":1755482521566,"y":29.026},{"x":1755482461443,"y":31.9},{"x":1755482401385,"y":30.762},{"x":1755482341118,"y":31.06},{"x":1755482280988,"y":35.448},{"x":1755482220859,"y":27.947},{"x":1755482160747,"y":26.998},{"x":1755482100663,"y":25.954},{"x":1755482040492,"y":28.148},{"x":1755481980332,"y":29.832},{"x":1755481920223,"y":28.802},{"x":1755481862939,"y":30.167},{"x":1755481802815,"y":29.759},{"x":1755481742687,"y":31.997},{"x":1755481682566,"y":30.947},{"x":1755481622445,"y":27.815},{"x":1755481562321,"y":27.883},{"x":1755481502196,"y":25.964},{"x":1755481442075,"y":27.044},{"x":1755481381940,"y":40.614},{"x":1755481321819,"y":43.621},{"x":1755481261700,"y":39.16},{"x":1755481201577,"y":39.62},{"x":1755481141447,"y":57.046},{"x":1755481081323,"y":57.769},{"x":1755481021204,"y":65.273},{"x":1755480961077,"y":63.049},{"x":1755480900932,"y":62.12},{"x":1755480840808,"y":48.377},{"x":1755480780694,"y":44.504},{"x":1755480720642,"y":42.21},{"x":1755480660470,"y":42.296},{"x":1755480600371,"y":42.06},{"x":1755480540288,"y":40.12},{"x":1755480482920,"y":38.771},{"x":1755480422793,"y":38.106},{"x":1755480362674,"y":42.594},{"x":1755480302544,"y":38.96},{"x":1755480242424,"y":43.312},{"x":1755480182299,"y":46.85},{"x":1755480122168,"y":44.695},{"x":1755480062029,"y":48.496},{"x":1755480001924,"y":43.606},{"x":1755479941795,"y":41.142},{"x":1755479881672,"y":38.971},{"x":1755479821544,"y":39.487},{"x":1755479761410,"y":52.807},{"x":1755479701289,"y":51.534},{"x":1755479641167,"y":51.69},{"x":1755479581008,"y":54.544},{"x":1755479520857,"y":54.83},{"x":1755479460708,"y":41.126},{"x":1755479400616,"y":46.435},{"x":1755479340323,"y":43.502},{"x":1755479282933,"y":43.12},{"x":1755479222803,"y":40.048},{"x":1755479162674,"y":40.045},{"x":1755479102539,"y":43.718},{"x":1755479042419,"y":41.572},{"x":1755478982292,"y":40.928},{"x":1755478922157,"y":41.807},{"x":1755478862039,"y":43.897},{"x":1755478801792,"y":43.44},{"x":1755478741518,"y":42.98},{"x":1755478681386,"y":43.081},{"x":1755478621258,"y":41.728},{"x":1755478561126,"y":43.117},{"x":1755478500995,"y":44.536},{"x":1755478440858,"y":45.066},{"x":1755478380741,"y":38.414},{"x":1755478320638,"y":42.998},{"x":1755478260532,"y":43.297},{"x":1755478200381,"y":43.148},{"x":1755478140281,"y":46.981},{"x":1755478082928,"y":45.061},{"x":1755478022803,"y":53.345},{"x":1755477962674,"y":53.419},{"x":1755477902555,"y":57.463},{"x":1755477842435,"y":57.07},{"x":1755477782314,"y":55.212},{"x":1755477722194,"y":39.817},{"x":1755477662073,"y":39.821},{"x":1755477601932,"y":40.331},{"x":1755477541801,"y":41.004},{"x":1755477481679,"y":43.588},{"x":1755477421549,"y":47.084},{"x":1755477361408,"y":44.677},{"x":1755477301281,"y":45.229},{"x":1755477241139,"y":41.705},{"x":1755477181037,"y":40.391},{"x":1755477120888,"y":47.284},{"x":1755477060762,"y":43.906},{"x":1755477000681,"y":43.002},{"x":1755476940504,"y":41.003},{"x":1755476880329,"y":40.123},{"x":1755476820253,"y":40.547},{"x":1755476762933,"y":39.677},{"x":1755476702813,"y":38.857},{"x":1755476642695,"y":41.1},{"x":1755476582572,"y":43.067},{"x":1755476522443,"y":42.758},{"x":1755476462318,"y":45.078},{"x":1755476402188,"y":40.308},{"x":1755476342067,"y":39.338},{"x":1755476281936,"y":37.356},{"x":1755476221811,"y":55.958},{"x":1755476161686,"y":58.693},{"x":1755476101568,"y":54.799},{"x":1755476041440,"y":52.908},{"x":1755475981281,"y":54.775},{"x":1755475921143,"y":40.402},{"x":1755475860954,"y":39.793},{"x":1755475800851,"y":40.879},{"x":1755475740598,"y":37.964},{"x":1755475680522,"y":38.888},{"x":1755475620308,"y":39.026},{"x":1755475562953,"y":39.289},{"x":1755475502823,"y":42.107},{"x":1755475442697,"y":43.265},{"x":1755475382577,"y":42.494},{"x":1755475322493,"y":45.422},{"x":1755475262337,"y":41.155},{"x":1755475202263,"y":47.477},{"x":1755475142043,"y":42.73},{"x":1755475081893,"y":44.137},{"x":1755475021776,"y":42.146},{"x":1755474961660,"y":41.701},{"x":1755474901541,"y":43.298},{"x":1755474841407,"y":37.481},{"x":1755474781281,"y":39.258},{"x":1755474721157,"y":45.353},{"x":1755474661016,"y":44.875},{"x":1755474600899,"y":43.596},{"x":1755474540754,"y":59.046},{"x":1755474480671,"y":53.238},{"x":1755474420555,"y":40.332},{"x":1755474360414,"y":42.408},{"x":1755474300292,"y":39.889},{"x":1755474242946,"y":31.636},{"x":1755474182827,"y":25.655},{"x":1755474122704,"y":27.841},{"x":1755474062577,"y":28.728},{"x":1755474002440,"y":30.492},{"x":1755473942319,"y":34.45},{"x":1755473882197,"y":30.707},{"x":1755473822072,"y":28.571},{"x":1755473761928,"y":27.238},{"x":1755473701806,"y":25.438},{"x":1755473641663,"y":25.054},{"x":1755473581535,"y":25.304},{"x":1755473521410,"y":28.115},{"x":1755473461288,"y":30.25},{"x":1755473401185,"y":29.656},{"x":1755473341031,"y":28.961},{"x":1755473280904,"y":33.011},{"x":1755473220777,"y":26.503},{"x":1755473160677,"y":29.296},{"x":1755473100574,"y":29.698},{"x":1755473040428,"y":28.625},{"x":1755472980467,"y":31.092},{"x":1755472922952,"y":26.86},{"x":1755472862794,"y":27.275},{"x":1755472802666,"y":40.58},{"x":1755472742537,"y":41.324},{"x":1755472682414,"y":40.864},{"x":1755472622304,"y":39.329},{"x":1755472562158,"y":37.602},{"x":1755472502035,"y":24.166},{"x":1755472441906,"y":26.699},{"x":1755472381756,"y":26.929},{"x":1755472321654,"y":34.712},{"x":1755472261448,"y":30.889},{"x":1755472201300,"y":27.048},{"x":1755472141156,"y":24.559},{"x":1755472081022,"y":25.164},{"x":1755472020893,"y":30.506},{"x":1755471960777,"y":26.43},{"x":1755471900694,"y":32.468},{"x":1755471840537,"y":32.663},{"x":1755471780383,"y":32.077},{"x":1755471720293,"y":31.164},{"x":1755471662962,"y":31.144},{"x":1755471602857,"y":31.315},{"x":1755471542708,"y":30.823},{"x":1755471482583,"y":30.544},{"x":1755471422456,"y":27.157},{"x":1755471362334,"y":25.012},{"x":1755471302211,"y":25.487},{"x":1755471242085,"y":25.144},{"x":1755471181938,"y":28.967},{"x":1755471121806,"y":42.925},{"x":1755471061680,"y":44.86},{"x":1755471001555,"y":43.637},{"x":1755470941426,"y":42.598},{"x":1755470881289,"y":42.904},{"x":1755470821149,"y":28.134},{"x":1755470761009,"y":34.38},{"x":1755470700937,"y":29.358},{"x":1755470640740,"y":29.255},{"x":1755470580575,"y":28.77},{"x":1755470520437,"y":28.326},{"x":1755470460399,"y":30.232},{"x":1755470402980,"y":30.818},{"x":1755470342855,"y":31.121},{"x":1755470282734,"y":29.208},{"x":1755470222602,"y":27.733},{"x":1755470162482,"y":25.698},{"x":1755470102354,"y":30.107},{"x":1755470042209,"y":26.386},{"x":1755469982085,"y":29.764},{"x":1755469921951,"y":29.075},{"x":1755469861827,"y":27.605},{"x":1755469801703,"y":34.991},{"x":1755469741562,"y":29.681},{"x":1755469681438,"y":28.934},{"x":1755469621313,"y":29.544},{"x":1755469561190,"y":28.196},{"x":1755469501070,"y":31.643},{"x":1755469440915,"y":28.663},{"x":1755469380789,"y":41.275},{"x":1755469320675,"y":42.305},{"x":1755469260592,"y":47.281},{"x":1755469200363,"y":48.257},{"x":1755469140272,"y":48.048},{"x":1755469082967,"y":31.58},{"x":1755469022845,"y":32.009},{"x":1755468962706,"y":32.152},{"x":1755468902568,"y":30.3},{"x":1755468842455,"y":35.365},{"x":1755468782311,"y":33.862},{"x":1755468722161,"y":31.44},{"x":1755468661988,"y":29.303},{"x":1755468601760,"y":29.167},{"x":1755468541631,"y":32.395},{"x":1755468481507,"y":28.588},{"x":1755468421382,"y":27.901},{"x":1755468361258,"y":30.938},{"x":1755468301126,"y":30.642},{"x":1755468240982,"y":33.301},{"x":1755468180857,"y":28.468},{"x":1755468120721,"y":30.034},{"x":1755468060637,"y":31.54},{"x":1755468000650,"y":32.256},{"x":1755467940256,"y":30.284},{"x":1755467882964,"y":29.147},{"x":1755467822835,"y":29.417},{"x":1755467762705,"y":27.18},{"x":1755467702572,"y":41.953},{"x":1755467642448,"y":43.279},{"x":1755467582326,"y":45.498},{"x":1755467522196,"y":45.362},{"x":1755467462063,"y":43.704},{"x":1755467401924,"y":33.064},{"x":1755467341801,"y":31.442},{"x":1755467281676,"y":31.403},{"x":1755467221551,"y":32.813},{"x":1755467161428,"y":33.011},{"x":1755467101312,"y":36.691},{"x":1755467041170,"y":31.051},{"x":1755466981041,"y":35.293},{"x":1755466920905,"y":28.307},{"x":1755466860791,"y":32.051},{"x":1755466800693,"y":31.1},{"x":1755466740538,"y":36.241},{"x":1755466680377,"y":36.587},{"x":1755466620191,"y":31.685},{"x":1755466562942,"y":28.865},{"x":1755466502818,"y":29.492},{"x":1755466442695,"y":28.64},{"x":1755466382554,"y":31.6},{"x":1755466322436,"y":33.506},{"x":1755466262308,"y":27.949},{"x":1755466202184,"y":27.944},{"x":1755466142054,"y":32.716},{"x":1755466081919,"y":36.796},{"x":1755466021801,"y":37.524},{"x":1755465961661,"y":48.302},{"x":1755465901543,"y":45.892},{"x":1755465841410,"y":42.55},{"x":1755465781281,"y":45.51},{"x":1755465721149,"y":45.571},{"x":1755465661005,"y":28.201},{"x":1755465600941,"y":28.598},{"x":1755465540698,"y":28.861},{"x":1755465480570,"y":28.006},{"x":1755465420463,"y":31.777},{"x":1755465360325,"y":29.85},{"x":1755465300348,"y":33.384},{"x":1755465242950,"y":33.125},{"x":1755465182817,"y":33.203},{"x":1755465122642,"y":38.638},{"x":1755465062312,"y":35.154},{"x":1755465002158,"y":29.755},{"x":1755464942034,"y":30.006},{"x":1755464881901,"y":30.319},{"x":1755464821787,"y":32.802},{"x":1755464761657,"y":30.484},{"x":1755464701534,"y":30.043},{"x":1755464641411,"y":29.338},{"x":1755464581305,"y":32.879},{"x":1755464521167,"y":34.608},{"x":1755464461043,"y":32.844},{"x":1755464401041,"y":48.685},{"x":1755464340760,"y":46.111},{"x":1755464280653,"y":44.675},{"x":1755464220563,"y":48.179},{"x":1755464160442,"y":46.361},{"x":1755464100276,"y":27.865},{"x":1755464042946,"y":27.962},{"x":1755463982829,"y":29.562},{"x":1755463922700,"y":31.979},{"x":1755463862570,"y":31.356},{"x":1755463802452,"y":34.231},{"x":1755463742319,"y":36.728},{"x":1755463682198,"y":34.907},{"x":1755463622038,"y":37.123},{"x":1755463561911,"y":32.762},{"x":1755463501761,"y":31.198},{"x":1755463441640,"y":32.455},{"x":1755463381504,"y":33.348},{"x":1755463321376,"y":35.632},{"x":1755463261249,"y":31.358},{"x":1755463201119,"y":37.792},{"x":1755463140972,"y":30.558},{"x":1755463080841,"y":30.106},{"x":1755463020709,"y":29.458},{"x":1755462960598,"y":49.622},{"x":1755462900465,"y":49.679},{"x":1755462840273,"y":51.098},{"x":1755462783007,"y":47.98},{"x":1755462722878,"y":49.862},{"x":1755462662756,"y":31.927},{"x":1755462602617,"y":33.792},{"x":1755462542483,"y":32.946},{"x":1755462482356,"y":33.175},{"x":1755462422227,"y":33.379},{"x":1755462362098,"y":29.374},{"x":1755462301968,"y":29.719},{"x":1755462241855,"y":29.836},{"x":1755462181717,"y":33.736},{"x":1755462121593,"y":34.022},{"x":1755462061455,"y":39.048},{"x":1755462001335,"y":37.528},{"x":1755461941192,"y":37.074},{"x":1755461881066,"y":37.403},{"x":1755461820931,"y":46.807},{"x":1755461760798,"y":40.298},{"x":1755461700703,"y":40.12},{"x":1755461640562,"y":45.836},{"x":1755461580477,"y":43.054},{"x":1755461520207,"y":42.581},{"x":1755461463007,"y":37.47},{"x":1755461402841,"y":40.65},{"x":1755461342706,"y":46.391},{"x":1755461282577,"y":45.293},{"x":1755461222457,"y":49.026},{"x":1755461162318,"y":43.537},{"x":1755461102197,"y":39.488},{"x":1755461042060,"y":39.092},{"x":1755460981924,"y":54.362},{"x":1755460921795,"y":71.488},{"x":1755460861661,"y":51.838},{"x":1755460801661,"y":52.721},{"x":1755460741368,"y":51.611},{"x":1755460681242,"y":40.932},{"x":1755460621115,"y":45.301},{"x":1755460560978,"y":37.739},{"x":1755460500859,"y":37.684},{"x":1755460440747,"y":40.799},{"x":1755460380596,"y":36.721},{"x":1755460320513,"y":55.861},{"x":1755460260352,"y":35.861},{"x":1755460200244,"y":32.08},{"x":1755460142906,"y":31.782},{"x":1755460082780,"y":35.132},{"x":1755460022658,"y":37.374},{"x":1755459962528,"y":37.874},{"x":1755459902400,"y":50.425},{"x":1755459842277,"y":51.87},{"x":1755459782150,"y":63.906},{"x":1755459722033,"y":55.499},{"x":1755459661892,"y":47.492},{"x":1755459601765,"y":41.915},{"x":1755459541637,"y":39.785},{"x":1755459481508,"y":71.267},{"x":1755459421380,"y":90.41},{"x":1755459361258,"y":69.707},{"x":1755459301135,"y":69.434},{"x":1755459240992,"y":74.626},{"x":1755459180878,"y":69.002},{"x":1755459120797,"y":67.368},{"x":1755459060611,"y":66.044},{"x":1755459000605,"y":78.823},{"x":1755458940347,"y":65.543},{"x":1755458882965,"y":36.727},{"x":1755458822841,"y":38.363},{"x":1755458762712,"y":38.46},{"x":1755458702592,"y":42.608},{"x":1755458642451,"y":47.947},{"x":1755458582329,"y":47.147},{"x":1755458522195,"y":40.012},{"x":1755458462067,"y":47.922},{"x":1755458401938,"y":47.137},{"x":1755458341810,"y":56.768},{"x":1755458281679,"y":46.135},{"x":1755458221569,"y":50.38},{"x":1755458161429,"y":44.406},{"x":1755458101291,"y":55.714},{"x":1755458041165,"y":43.0},{"x":1755457981009,"y":38.698},{"x":1755457920861,"y":38.482},{"x":1755457860595,"y":41.388},{"x":1755457800489,"y":39.6},{"x":1755457740279,"y":41.645},{"x":1755457682949,"y":39.782},{"x":1755457622829,"y":38.281},{"x":1755457562724,"y":39.593},{"x":1755457502577,"y":37.988},{"x":1755457442444,"y":41.831},{"x":1755457382324,"y":44.368},{"x":1755457322203,"y":40.476},{"x":1755457262081,"y":39.39},{"x":1755457201960,"y":55.05},{"x":1755457141798,"y":34.95},{"x":1755457081659,"y":54.238},{"x":1755457021538,"y":37.96},{"x":1755456961412,"y":43.422},{"x":1755456901290,"y":56.975},{"x":1755456841159,"y":50.57},{"x":1755456781029,"y":48.848},{"x":1755456720904,"y":50.401},{"x":1755456660773,"y":52.34},{"x":1755456600683,"y":44.704},{"x":1755456540498,"y":40.105},{"x":1755456480376,"y":37.133},{"x":1755456420172,"y":34.523},{"x":1755456362971,"y":48.131},{"x":1755456302833,"y":34.259},{"x":1755456242706,"y":32.104},{"x":1755456182582,"y":36.382},{"x":1755456122511,"y":38.54},{"x":1755456062329,"y":38.821},{"x":1755456002202,"y":39.107},{"x":1755455942088,"y":37.974},{"x":1755455881954,"y":43.278},{"x":1755455821825,"y":41.088},{"x":1755455761702,"y":53.828},{"x":1755455701578,"y":46.776},{"x":1755455641447,"y":55.973},{"x":1755455581328,"y":52.272},{"x":1755455521198,"y":43.98},{"x":1755455461106,"y":37.724},{"x":1755455401014,"y":49.328},{"x":1755455340767,"y":36.272},{"x":1755455280657,"y":37.86},{"x":1755455220466,"y":43.315},{"x":1755455160327,"y":35.124},{"x":1755455100187,"y":35.394},{"x":1755455042919,"y":35.124},{"x":1755454982795,"y":33.857},{"x":1755454922677,"y":40.898},{"x":1755454862546,"y":33.984},{"x":1755454802422,"y":36.56},{"x":1755454742302,"y":34.843},{"x":1755454682184,"y":34.928},{"x":1755454622090,"y":45.996},{"x":1755454561915,"y":42.71},{"x":1755454501791,"y":48.776},{"x":1755454441658,"y":46.007},{"x":1755454381534,"y":44.754},{"x":1755454321376,"y":33.419},{"x":1755454261217,"y":38.093},{"x":1755454201061,"y":39.293},{"x":1755454140912,"y":39.454},{"x":1755454080801,"y":37.282},{"x":1755454020636,"y":33.401},{"x":1755453960554,"y":31.04},{"x":1755453900374,"y":34.175},{"x":1755453840202,"y":34.858},{"x":1755453782911,"y":36.818},{"x":1755453722791,"y":49.062},{"x":1755453662628,"y":47.287},{"x":1755453602547,"y":47.518},{"x":1755453542321,"y":63.686},{"x":1755453482199,"y":46.592},{"x":1755453422071,"y":37.39},{"x":1755453361915,"y":38.309},{"x":1755453301786,"y":35.879},{"x":1755453241649,"y":33.236},{"x":1755453181532,"y":32.13},{"x":1755453121386,"y":31.594},{"x":1755453061259,"y":44.131},{"x":1755453001109,"y":50.717},{"x":1755452940962,"y":51.031},{"x":1755452880844,"y":50.777},{"x":1755452820715,"y":53.447},{"x":1755452760660,"y":40.878},{"x":1755452700628,"y":43.013},{"x":1755452640278,"y":44.251},{"x":1755452582995,"y":60.763},{"x":1755452522864,"y":42.388},{"x":1755452462740,"y":42.82},{"x":1755452402619,"y":35.527},{"x":1755452342498,"y":35.366},{"x":1755452282370,"y":42.527},{"x":1755452222246,"y":41.212},{"x":1755452162105,"y":41.207},{"x":1755452101962,"y":39.846},{"x":1755452041822,"y":37.128},{"x":1755451981693,"y":41.314},{"x":1755451921568,"y":33.666},{"x":1755451861439,"y":34.175},{"x":1755451801328,"y":36.446},{"x":1755451741151,"y":41.246},{"x":1755451681015,"y":36.221},{"x":1755451620887,"y":36.396},{"x":1755451560765,"y":33.575},{"x":1755451500694,"y":36.05},{"x":1755451440559,"y":37.535},{"x":1755451380387,"y":51.329},{"x":1755451320211,"y":39.968},{"x":1755451262954,"y":42.024},{"x":1755451202826,"y":42.476},{"x":1755451142708,"y":41.954},{"x":1755451082577,"y":53.92},{"x":1755451022446,"y":50.33},{"x":1755450962313,"y":38.038},{"x":1755450902186,"y":36.676},{"x":1755450842077,"y":37.223},{"x":1755450781917,"y":35.881},{"x":1755450721765,"y":36.991},{"x":1755450661631,"y":38.065},{"x":1755450601472,"y":37.249},{"x":1755450541344,"y":40.142},{"x":1755450481219,"y":48.443},{"x":1755450421088,"y":59.599},{"x":1755450360944,"y":67.244},{"x":1755450300827,"y":73.987},{"x":1755450240679,"y":71.239},{"x":1755450180510,"y":56.747},{"x":1755450120487,"y":43.166},{"x":1755450062996,"y":47.893},{"x":1755450002843,"y":55.603},{"x":1755449942719,"y":37.171},{"x":1755449882591,"y":36.234},{"x":1755449822475,"y":48.766},{"x":1755449762338,"y":39.464},{"x":1755449702219,"y":35.126},{"x":1755449642099,"y":36.125},{"x":1755449581965,"y":39.089},{"x":1755449521845,"y":47.704},{"x":1755449461715,"y":46.374},{"x":1755449401601,"y":45.473},{"x":1755449341473,"y":45.942},{"x":1755449281351,"y":50.896},{"x":1755449221231,"y":48.337},{"x":1755449161109,"y":43.44},{"x":1755449101032,"y":41.576},{"x":1755449040802,"y":42.989},{"x":1755448980685,"y":40.256},{"x":1755448920594,"y":42.42},{"x":1755448860444,"y":36.684},{"x":1755448800304,"y":40.079},{"x":1755448742941,"y":45.414},{"x":1755448682808,"y":48.084},{"x":1755448622673,"y":53.016},{"x":1755448562555,"y":64.704},{"x":1755448502468,"y":48.941},{"x":1755448442292,"y":38.122},{"x":1755448382159,"y":41.135},{"x":1755448322032,"y":38.248},{"x":1755448261901,"y":36.953},{"x":1755448201782,"y":37.165},{"x":1755448141657,"y":36.251},{"x":1755448081533,"y":50.773},{"x":1755448021416,"y":45.851},{"x":1755447961294,"y":58.208},{"x":1755447901160,"y":50.005},{"x":1755447841021,"y":39.988},{"x":1755447780899,"y":40.956},{"x":1755447720782,"y":40.716},{"x":1755447660646,"y":47.863},{"x":1755447600581,"y":53.132},{"x":1755447540391,"y":36.109},{"x":1755447480401,"y":36.127},{"x":1755447422959,"y":39.151},{"x":1755447362826,"y":42.803},{"x":1755447302694,"y":48.492},{"x":1755447242590,"y":38.458},{"x":1755447182418,"y":38.011},{"x":1755447122265,"y":40.32},{"x":1755447062128,"y":63.118},{"x":1755447001953,"y":44.573},{"x":1755446941830,"y":46.162},{"x":1755446881704,"y":50.628},{"x":1755446821572,"y":48.914},{"x":1755446761452,"y":50.234},{"x":1755446701316,"y":46.846},{"x":1755446641197,"y":45.943},{"x":1755446581062,"y":46.228},{"x":1755446520923,"y":53.551},{"x":1755446460804,"y":45.389},{"x":1755446400746,"y":41.526},{"x":1755446340479,"y":44.57},{"x":1755446280355,"y":44.236},{"x":1755446220227,"y":50.197},{"x":1755446163013,"y":45.492},{"x":1755446102887,"y":49.19},{"x":1755446042765,"y":55.14},{"x":1755445982646,"y":51.7},{"x":1755445922536,"y":66.838},{"x":1755445862389,"y":51.32},{"x":1755445802272,"y":49.234},{"x":1755445742147,"y":55.282},{"x":1755445681997,"y":74.67},{"x":1755445621907,"y":75.991},{"x":1755445561752,"y":68.582},{"x":1755445501636,"y":77.59},{"x":1755445441505,"y":61.987},{"x":1755445381372,"y":43.463},{"x":1755445321247,"y":43.067},{"x":1755445261115,"y":44.902},{"x":1755445201006,"y":45.181},{"x":1755445140834,"y":42.378},{"x":1755445080727,"y":43.55},{"x":1755445020558,"y":43.979},{"x":1755444960474,"y":43.711},{"x":1755444900316,"y":44.293},{"x":1755444842986,"y":44.508},{"x":1755444782862,"y":44.465},{"x":1755444722745,"y":54.389},{"x":1755444662624,"y":55.058},{"x":1755444602499,"y":57.638},{"x":1755444542365,"y":60.99},{"x":1755444482237,"y":58.806},{"x":1755444422103,"y":48.221},{"x":1755444361969,"y":43.684},{"x":1755444301831,"y":54.766},{"x":1755444241707,"y":52.789},{"x":1755444181576,"y":47.14},{"x":1755444121445,"y":46.822},{"x":1755444061317,"y":47.873},{"x":1755444001200,"y":74.494},{"x":1755443941037,"y":56.444},{"x":1755443880911,"y":58.529},{"x":1755443820802,"y":60.104},{"x":1755443760662,"y":60.083},{"x":1755443700477,"y":63.566},{"x":1755443640323,"y":58.595},{"x":1755443582972,"y":64.145},{"x":1755443522822,"y":46.417},{"x":1755443462629,"y":49.97},{"x":1755443402458,"y":51.444},{"x":1755443342331,"y":46.685},{"x":1755443282201,"y":51.535},{"x":1755443222076,"y":53.286},{"x":1755443161948,"y":55.159},{"x":1755443101826,"y":54.978},{"x":1755443041705,"y":52.88},{"x":1755442981585,"y":58.399},{"x":1755442921464,"y":57.571},{"x":1755442861360,"y":48.74},{"x":1755442801306,"y":48.583},{"x":1755442741068,"y":46.324},{"x":1755442680935,"y":44.562},{"x":1755442620817,"y":50.144},{"x":1755442560759,"y":65.594},{"x":1755442500580,"y":35.188},{"x":1755442440413,"y":32.574},{"x":1755442380236,"y":29.854},{"x":1755442322978,"y":35.225},{"x":1755442262853,"y":33.068},{"x":1755442202730,"y":35.467},{"x":1755442142615,"y":31.852},{"x":1755442082484,"y":41.819},{"x":1755442022350,"y":39.835},{"x":1755441962232,"y":38.425},{"x":1755441902110,"y":36.122},{"x":1755441841953,"y":37.846},{"x":1755441781823,"y":33.386},{"x":1755441721703,"y":34.154},{"x":1755441661576,"y":33.178},{"x":1755441601455,"y":37.465},{"x":1755441541324,"y":60.257},{"x":1755441481204,"y":57.816},{"x":1755441421065,"y":64.579},{"x":1755441360919,"y":59.668},{"x":1755441300811,"y":57.211},{"x":1755441240673,"y":52.44},{"x":1755441180618,"y":39.158},{"x":1755441120414,"y":36.674},{"x":1755441060326,"y":35.885},{"x":1755441002961,"y":33.691},{"x":1755440942816,"y":42.466},{"x":1755440882695,"y":41.077},{"x":1755440822594,"y":38.922},{"x":1755440762432,"y":41.274},{"x":1755440702299,"y":46.588},{"x":1755440642157,"y":49.697},{"x":1755440582032,"y":45.197},{"x":1755440521897,"y":53.063},{"x":1755440461772,"y":50.296},{"x":1755440401650,"y":43.216},{"x":1755440341520,"y":40.234},{"x":1755440281392,"y":42.85},{"x":1755440221269,"y":34.9},{"x":1755440161134,"y":50.232},{"x":1755440101006,"y":56.828},{"x":1755440040904,"y":58.616},{"x":1755439980731,"y":37.424},{"x":1755439920628,"y":44.119},{"x":1755439860436,"y":39.521},{"x":1755439800290,"y":33.667},{"x":1755439740118,"y":32.9},{"x":1755439682910,"y":33.468},{"x":1755439622793,"y":32.792},{"x":1755439562672,"y":29.49},{"x":1755439502554,"y":31.601},{"x":1755439442413,"y":27.655},{"x":1755439382279,"y":23.075},{"x":1755439322173,"y":49.111},{"x":1755439262024,"y":29.162},{"x":1755439201770,"y":36.313},{"x":1755439141528,"y":32.117},{"x":1755439081411,"y":32.315},{"x":1755439021284,"y":27.986},{"x":1755438961150,"y":32.647},{"x":1755438901034,"y":24.691},{"x":1755438840871,"y":21.424},{"x":1755438780751,"y":39.941},{"x":1755438720663,"y":21.804},{"x":1755438660499,"y":22.362},{"x":1755438600399,"y":27.446},{"x":1755438540192,"y":25.532},{"x":1755438482910,"y":20.831},{"x":1755438422775,"y":19.962},{"x":1755438362650,"y":43.696},{"x":1755438302523,"y":46.66},{"x":1755438242393,"y":42.044},{"x":1755438182261,"y":47.785},{"x":1755438122135,"y":24.202},{"x":1755438062011,"y":29.515},{"x":1755438001879,"y":49.603},{"x":1755437941750,"y":36.334},{"x":1755437881628,"y":34.375},{"x":1755437821505,"y":28.598},{"x":1755437761364,"y":34.924},{"x":1755437701232,"y":42.341},{"x":1755437641100,"y":49.374},{"x":1755437580961,"y":44.585},{"x":1755437520842,"y":44.054},{"x":1755437460711,"y":42.9},{"x":1755437400641,"y":42.773},{"x":1755437340432,"y":38.866},{"x":1755437280288,"y":37.727},{"x":1755437222959,"y":48.895},{"x":1755437162830,"y":51.725},{"x":1755437102728,"y":49.607},{"x":1755437042566,"y":50.11},{"x":1755436982432,"y":54.71},{"x":1755436922303,"y":38.965},{"x":1755436862175,"y":36.173},{"x":1755436802048,"y":40.891},{"x":1755436741924,"y":40.146},{"x":1755436681798,"y":42.839},{"x":1755436621633,"y":24.726},{"x":1755436561503,"y":12.058},{"x":1755436501363,"y":16.589},{"x":1755436441253,"y":25.457},{"x":1755436381021,"y":7.949},{"x":1755436320868,"y":11.305},{"x":1755436260718,"y":15.203},{"x":1755436200591,"y":11.716},{"x":1755436140379,"y":9.953},{"x":1755436080269,"y":23.746},{"x":1755436022918,"y":32.663},{"x":1755435962802,"y":35.622},{"x":1755435902672,"y":31.375},{"x":1755435842523,"y":41.843},{"x":1755435782398,"y":27.251},{"x":1755435722272,"y":18.59},{"x":1755435662146,"y":18.234},{"x":1755435601999,"y":16.092},{"x":1755435541807,"y":22.201},{"x":1755435481690,"y":26.338},{"x":1755435421574,"y":40.963},{"x":1755435361428,"y":40.277},{"x":1755435301309,"y":50.312},{"x":1755435241210,"y":40.124},{"x":1755435181050,"y":32.178},{"x":1755435120914,"y":21.142},{"x":1755435060782,"y":9.067},{"x":1755435000709,"y":14.364},{"x":1755434940577,"y":12.317},{"x":1755434880457,"y":21.737},{"x":1755434820306,"y":31.284},{"x":1755434762961,"y":21.406},{"x":1755434702838,"y":30.443},{"x":1755434642717,"y":30.11},{"x":1755434582594,"y":23.63},{"x":1755434522469,"y":26.818},{"x":1755434462330,"y":25.411},{"x":1755434402194,"y":12.516},{"x":1755434342068,"y":25.133},{"x":1755434281925,"y":18.95},{"x":1755434221800,"y":21.851},{"x":1755434161678,"y":15.462},{"x":1755434101542,"y":9.667},{"x":1755434041421,"y":7.513},{"x":1755433981297,"y":16.091},{"x":1755433921174,"y":31.84},{"x":1755433861024,"y":22.68},{"x":1755433800961,"y":30.023},{"x":1755433740748,"y":41.514},{"x":1755433680651,"y":37.205},{"x":1755433620537,"y":37.71},{"x":1755433560310,"y":43.277},{"x":1755433502996,"y":31.781},{"x":1755433442871,"y":38.358},{"x":1755433382754,"y":17.12},{"x":1755433322634,"y":25.152},{"x":1755433262497,"y":22.841},{"x":1755433202385,"y":28.998},{"x":1755433142250,"y":28.255},{"x":1755433082123,"y":44.137},{"x":1755433021986,"y":38.928},{"x":1755432961857,"y":65.198},{"x":1755432901731,"y":49.244},{"x":1755432841606,"y":62.281},{"x":1755432781477,"y":49.552},{"x":1755432721343,"y":39.073},{"x":1755432661196,"y":32.434},{"x":1755432601076,"y":28.843},{"x":1755432540893,"y":23.054},{"x":1755432480772,"y":27.925},{"x":1755432420646,"y":35.675},{"x":1755432360552,"y":36.092},{"x":1755432300445,"y":38.932},{"x":1755432240239,"y":35.388},{"x":1755432182940,"y":36.547},{"x":1755432122819,"y":29.372},{"x":1755432062697,"y":32.821},{"x":1755432002580,"y":33.582},{"x":1755431942420,"y":40.25},{"x":1755431882299,"y":38.906},{"x":1755431822161,"y":47.892},{"x":1755431761981,"y":51.938},{"x":1755431701856,"y":45.275},{"x":1755431641730,"y":46.056},{"x":1755431581602,"y":41.392},{"x":1755431521478,"y":41.951},{"x":1755431461342,"y":27.83},{"x":1755431401229,"y":28.337},{"x":1755431341087,"y":31.958},{"x":1755431280946,"y":37.123},{"x":1755431220805,"y":19.423},{"x":1755431160695,"y":23.4},{"x":1755431100610,"y":30.998},{"x":1755431040431,"y":34.188},{"x":1755430980284,"y":31.668},{"x":1755430922996,"y":35.668},{"x":1755430862872,"y":30.646},{"x":1755430802749,"y":29.765},{"x":1755430742622,"y":36.275},{"x":1755430682509,"y":31.422},{"x":1755430622383,"y":36.546},{"x":1755430562252,"y":39.794},{"x":1755430502126,"y":38.278},{"x":1755430441987,"y":38.452},{"x":1755430381859,"y":49.884},{"x":1755430321731,"y":28.063},{"x":1755430261605,"y":27.826},{"x":1755430201502,"y":33.28},{"x":1755430141340,"y":30.101},{"x":1755430081224,"y":23.504},{"x":1755430021095,"y":26.694},{"x":1755429960931,"y":23.293},{"x":1755429900844,"y":29.189},{"x":1755429840703,"y":29.942},{"x":1755429780544,"y":38.414},{"x":1755429720452,"y":32.076},{"x":1755429660362,"y":27.157},{"x":1755429602999,"y":34.093},{"x":1755429542880,"y":38.767},{"x":1755429482747,"y":52.283},{"x":1755429422618,"y":56.562},{"x":1755429362488,"y":55.196},{"x":1755429302340,"y":51.178},{"x":1755429242234,"y":41.159},{"x":1755429182060,"y":54.775},{"x":1755429121921,"y":29.972},{"x":1755429061746,"y":31.334},{"x":1755429001588,"y":36.3},{"x":1755428941463,"y":43.717},{"x":1755428881339,"y":39.588},{"x":1755428821213,"y":53.188},{"x":1755428761057,"y":65.656},{"x":1755428700916,"y":66.002},{"x":1755428640819,"y":60.472},{"x":1755428580667,"y":65.075},{"x":1755428520532,"y":24.514},{"x":1755428460414,"y":23.282},{"x":1755428400282,"y":8.725},{"x":1755428342939,"y":12.712},{"x":1755428282820,"y":8.852},{"x":1755428222703,"y":16.841},{"x":1755428162571,"y":25.133},{"x":1755428102451,"y":25.163},{"x":1755428042330,"y":28.315},{"x":1755427982206,"y":36.414},{"x":1755427922083,"y":23.741},{"x":1755427861948,"y":15.697},{"x":1755427801827,"y":19.682},{"x":1755427741696,"y":34.373},{"x":1755427681574,"y":48.515},{"x":1755427621469,"y":39.354},{"x":1755427561326,"y":45.263},{"x":1755427501208,"y":37.933},{"x":1755427441063,"y":22.543},{"x":1755427380935,"y":40.835},{"x":1755427320818,"y":44.455},{"x":1755427260689,"y":46.186},{"x":1755427200609,"y":56.4},{"x":1755427140442,"y":59.17},{"x":1755427080334,"y":60.568},{"x":1755427022969,"y":51.692},{"x":1755426962844,"y":56.602},{"x":1755426902720,"y":74.868},{"x":1755426842590,"y":58.105},{"x":1755426782455,"y":60.49},{"x":1755426722313,"y":55.6},{"x":1755426662192,"y":44.965},{"x":1755426602067,"y":45.761},{"x":1755426541914,"y":29.294},{"x":1755426481783,"y":38.233},{"x":1755426421660,"y":57.779},{"x":1755426361532,"y":30.697},{"x":1755426301412,"y":30.756},{"x":1755426241290,"y":42.343},{"x":1755426181163,"y":35.789},{"x":1755426121017,"y":36.656},{"x":1755426060888,"y":35.645},{"x":1755426000818,"y":36.703},{"x":1755425940598,"y":37.786},{"x":1755425880576,"y":32.404},{"x":1755425820383,"y":33.384},{"x":1755425760158,"y":39.917},{"x":1755425702905,"y":41.21},{"x":1755425642803,"y":36.491},{"x":1755425582654,"y":36.156},{"x":1755425522450,"y":34.24},{"x":1755425462296,"y":33.619},{"x":1755425402143,"y":34.418},{"x":1755425341995,"y":35.039},{"x":1755425281876,"y":52.961},{"x":1755425221746,"y":51.683},{"x":1755425161632,"y":48.388},{"x":1755425101510,"y":45.028},{"x":1755425041393,"y":42.797},{"x":1755424981255,"y":36.126},{"x":1755424921104,"y":44.072},{"x":1755424860973,"y":39.564},{"x":1755424800904,"y":38.91},{"x":1755424740687,"y":43.542},{"x":1755424680616,"y":58.195},{"x":1755424620462,"y":37.82},{"x":1755424560276,"y":38.702},{"x":1755424500203,"y":39.004},{"x":1755424442929,"y":37.216},{"x":1755424382800,"y":38.827},{"x":1755424322677,"y":37.382},{"x":1755424262558,"y":33.062},{"x":1755424202434,"y":54.353},{"x":1755424142315,"y":57.986},{"x":1755424082196,"y":52.235},{"x":1755424022071,"y":49.422},{"x":1755423961935,"y":51.581},{"x":1755423901806,"y":35.065},{"x":1755423841683,"y":38.501},{"x":1755423781551,"y":30.38},{"x":1755423721424,"y":40.314},{"x":1755423661305,"y":32.939},{"x":1755423601164,"y":33.553},{"x":1755423541019,"y":33.458},{"x":1755423480889,"y":31.192},{"x":1755423420767,"y":32.321},{"x":1755423360686,"y":46.428},{"x":1755423300557,"y":51.258},{"x":1755423240479,"y":47.368},{"x":1755423180351,"y":47.692},{"x":1755423122927,"y":47.958},{"x":1755423062794,"y":36.571},{"x":1755423002670,"y":35.035},{"x":1755422942544,"y":32.585},{"x":1755422882420,"y":37.078},{"x":1755422822299,"y":35.938},{"x":1755422762172,"y":53.902},{"x":1755422702031,"y":50.56},{"x":1755422641895,"y":50.772},{"x":1755422581768,"y":50.452},{"x":1755422521643,"y":49.363},{"x":1755422461519,"y":38.051},{"x":1755422401399,"y":37.378},{"x":1755422341270,"y":38.096},{"x":1755422281142,"y":35.264},{"x":1755422220989,"y":33.697},{"x":1755422161013,"y":35.291},{"x":1755422101138,"y":38.508},{"x":1755422040699,"y":39.022},{"x":1755421980807,"y":33.145},{"x":1755421920469,"y":34.147},{"x":1755421860045,"y":33.875},{"x":1755421802866,"y":33.516},{"x":1755421742743,"y":29.788},{"x":1755421682604,"y":39.422},{"x":1755421622480,"y":37.032},{"x":1755421562353,"y":50.028},{"x":1755421502229,"y":47.132},{"x":1755421442100,"y":48.007},{"x":1755421381957,"y":46.162},{"x":1755421321839,"y":34.628},{"x":1755421261703,"y":33.608},{"x":1755421201673,"y":48.413},{"x":1755421141344,"y":50.5},{"x":1755421081233,"y":42.917},{"x":1755421021101,"y":45.692},{"x":1755420960963,"y":43.493},{"x":1755420900837,"y":36.863},{"x":1755420840710,"y":36.293},{"x":1755420780584,"y":39.798},{"x":1755420720513,"y":35.928},{"x":1755420660361,"y":36.449},{"x":1755420600249,"y":42.992},{"x":1755420542913,"y":59.868},{"x":1755420482784,"y":36.598},{"x":1755420422656,"y":39.38},{"x":1755420362530,"y":41.874},{"x":1755420302392,"y":33.024},{"x":1755420242264,"y":29.356},{"x":1755420182138,"y":47.022},{"x":1755420121990,"y":46.2},{"x":1755420061816,"y":48.36},{"x":1755420001697,"y":48.636},{"x":1755419941575,"y":55.35},{"x":1755419881455,"y":33.576},{"x":1755419821340,"y":35.422},{"x":1755419761199,"y":35.221},{"x":1755419701076,"y":32.161},{"x":1755419640917,"y":33.523},{"x":1755419580795,"y":31.853},{"x":1755419520719,"y":32.965},{"x":1755419460562,"y":32.423},{"x":1755419400429,"y":35.614},{"x":1755419340285,"y":42.287},{"x":1755419282981,"y":40.37},{"x":1755419222856,"y":37.62},{"x":1755419162731,"y":38.524},{"x":1755419102612,"y":48.727},{"x":1755419042468,"y":50.666},{"x":1755418982347,"y":43.265},{"x":1755418922196,"y":43.645},{"x":1755418862079,"y":52.063},{"x":1755418801934,"y":36.713},{"x":1755418741832,"y":41.401},{"x":1755418681695,"y":38.342},{"x":1755418621564,"y":40.714},{"x":1755418561438,"y":37.829},{"x":1755418501312,"y":34.166},{"x":1755418441186,"y":34.321},{"x":1755418381024,"y":50.383},{"x":1755418320882,"y":33.013},{"x":1755418260738,"y":52.894},{"x":1755418200626,"y":58.223},{"x":1755418140480,"y":33.959},{"x":1755418080321,"y":40.139},{"x":1755418023006,"y":36.385},{"x":1755417962871,"y":37.856},{"x":1755417902743,"y":38.209},{"x":1755417842621,"y":33.506},{"x":1755417782488,"y":34.021},{"x":1755417722360,"y":37.279},{"x":1755417662243,"y":36.796},{"x":1755417602149,"y":45.841},{"x":1755417541906,"y":45.671},{"x":1755417481769,"y":52.873},{"x":1755417421640,"y":56.233},{"x":1755417361514,"y":45.827},{"x":1755417301389,"y":35.095},{"x":1755417241279,"y":32.525},{"x":1755417181133,"y":34.464},{"x":1755417120993,"y":35.741},{"x":1755417060867,"y":34.218},{"x":1755417000764,"y":35.154},{"x":1755416940641,"y":29.449},{"x":1755416880539,"y":42.167},{"x":1755416820437,"y":29.291},{"x":1755416760201,"y":24.875},{"x":1755416702939,"y":27.108},{"x":1755416642809,"y":35.081},{"x":1755416582685,"y":36.322},{"x":1755416522561,"y":37.859},{"x":1755416462439,"y":48.035},{"x":1755416402313,"y":49.115},{"x":1755416342190,"y":49.031},{"x":1755416282067,"y":47.334},{"x":1755416221918,"y":46.241},{"x":1755416161781,"y":28.836},{"x":1755416101667,"y":20.824},{"x":1755416041533,"y":23.278},{"x":1755415981404,"y":26.518},{"x":1755415921263,"y":37.288},{"x":1755415861143,"y":28.805},{"x":1755415800978,"y":33.203},{"x":1755415740820,"y":31.382},{"x":1755415680717,"y":24.635},{"x":1755415620541,"y":30.625},{"x":1755415560516,"y":24.343},{"x":1755415500309,"y":21.913},{"x":1755415440226,"y":25.674},{"x":1755415382906,"y":31.399},{"x":1755415322776,"y":31.676},{"x":1755415262645,"y":30.634},{"x":1755415202517,"y":32.834},{"x":1755415142383,"y":44.65},{"x":1755415082258,"y":50.728},{"x":1755415022139,"y":53.279},{"x":1755414962014,"y":46.756},{"x":1755414901864,"y":48.415},{"x":1755414841769,"y":41.202},{"x":1755414781635,"y":38.554},{"x":1755414721430,"y":39.218},{"x":1755414661264,"y":54.856},{"x":1755414601129,"y":47.749},{"x":1755414540955,"y":37.072},{"x":1755414480840,"y":45.283},{"x":1755414420705,"y":39.644},{"x":1755414360604,"y":36.138},{"x":1755414300516,"y":35.936},{"x":1755414240344,"y":34.075},{"x":1755414180082,"y":33.564},{"x":1755414122899,"y":29.514},{"x":1755414062778,"y":34.042},{"x":1755414002669,"y":23.909},{"x":1755413942536,"y":25.855},{"x":1755413882409,"y":28.876},{"x":1755413822290,"y":41.875},{"x":1755413762161,"y":38.636},{"x":1755413702036,"y":34.6},{"x":1755413641884,"y":41.471},{"x":1755413581759,"y":46.53},{"x":1755413521633,"y":40.189},{"x":1755413461494,"y":25.187},{"x":1755413401377,"y":22.29},{"x":1755413341249,"y":22.535},{"x":1755413281127,"y":21.013},{"x":1755413220998,"y":21.048},{"x":1755413160877,"y":35.941},{"x":1755413100822,"y":40.357},{"x":1755413040631,"y":44.742},{"x":1755412980557,"y":39.994},{"x":1755412920265,"y":38.856},{"x":1755412860116,"y":29.11},{"x":1755412802891,"y":41.922},{"x":1755412742794,"y":54.061},{"x":1755412682639,"y":31.087},{"x":1755412622522,"y":41.639},{"x":1755412562399,"y":40.09},{"x":1755412502275,"y":39.712},{"x":1755412442158,"y":36.62},{"x":1755412382027,"y":41.419},{"x":1755412321893,"y":33.268},{"x":1755412261772,"y":30.547},{"x":1755412201659,"y":32.16},{"x":1755412141530,"y":33.091},{"x":1755412081410,"y":31.501},{"x":1755412021286,"y":29.75},{"x":1755411961160,"y":24.857},{"x":1755411901006,"y":27.224},{"x":1755411840867,"y":29.108},{"x":1755411780728,"y":31.182},{"x":1755411720627,"y":31.05},{"x":1755411660482,"y":43.426},{"x":1755411600301,"y":28.764},{"x":1755411540308,"y":42.311},{"x":1755411482930,"y":26.526},{"x":1755411422803,"y":31.127},{"x":1755411362667,"y":30.066},{"x":1755411302544,"y":29.971},{"x":1755411242421,"y":30.371},{"x":1755411182258,"y":41.726},{"x":1755411122099,"y":30.666},{"x":1755411061933,"y":32.194},{"x":1755411001780,"y":46.484},{"x":1755410941653,"y":32.532},{"x":1755410881529,"y":48.685},{"x":1755410821401,"y":45.331},{"x":1755410761284,"y":43.602},{"x":1755410701162,"y":29.771},{"x":1755410641154,"y":28.874},{"x":1755410580899,"y":31.369},{"x":1755410520837,"y":32.71},{"x":1755410460844,"y":46.409},{"x":1755410400606,"y":46.684},{"x":1755410340409,"y":41.274},{"x":1755410280230,"y":56.336},{"x":1755410222979,"y":55.08},{"x":1755410162862,"y":49.996},{"x":1755410102740,"y":48.103},{"x":1755410042621,"y":37.118},{"x":1755409982504,"y":29.779},{"x":1755409922390,"y":30.995},{"x":1755409862271,"y":25.675},{"x":1755409802069,"y":27.138},{"x":1755409741929,"y":26.591},{"x":1755409681810,"y":27.19},{"x":1755409621690,"y":35.032},{"x":1755409561567,"y":33.966},{"x":1755409501463,"y":24.577},{"x":1755409441325,"y":24.658},{"x":1755409381183,"y":27.494},{"x":1755409321062,"y":27.035},{"x":1755409260931,"y":45.442},{"x":1755409200873,"y":40.772},{"x":1755409140674,"y":38.934},{"x":1755409080619,"y":38.329},{"x":1755409020494,"y":37.296},{"x":1755408960364,"y":31.408},{"x":1755408900201,"y":30.407},{"x":1755408842937,"y":28.655},{"x":1755408782815,"y":29.459},{"x":1755408722662,"y":25.868},{"x":1755408662531,"y":25.89},{"x":1755408602412,"y":25.696},{"x":1755408542288,"y":28.894},{"x":1755408482168,"y":28.805},{"x":1755408422047,"y":28.972},{"x":1755408361914,"y":28.176},{"x":1755408301786,"y":28.698},{"x":1755408241670,"y":32.293},{"x":1755408181542,"y":33.858},{"x":1755408121406,"y":33.708},{"x":1755408061288,"y":33.226},{"x":1755408001196,"y":36.552},{"x":1755407941038,"y":28.108},{"x":1755407880910,"y":38.059},{"x":1755407820791,"y":37.928},{"x":1755407760690,"y":48.751},{"x":1755407700477,"y":53.526},{"x":1755407640254,"y":47.239},{"x":1755407580208,"y":41.665},{"x":1755407522875,"y":40.69},{"x":1755407462742,"y":29.242},{"x":1755407402580,"y":35.91},{"x":1755407342453,"y":33.308},{"x":1755407282333,"y":28.903},{"x":1755407222209,"y":42.828},{"x":1755407162073,"y":42.446},{"x":1755407101932,"y":59.269},{"x":1755407041798,"y":55.072},{"x":1755406981676,"y":54.877},{"x":1755406921553,"y":40.188},{"x":1755406861462,"y":42.264},{"x":1755406801298,"y":28.122},{"x":1755406740880,"y":27.251},{"x":1755406680761,"y":27.416},{"x":1755406620647,"y":26.861},{"x":1755406560517,"y":26.286},{"x":1755406500303,"y":29.496},{"x":1755406440105,"y":37.975},{"x":1755406382952,"y":37.054},{"x":1755406322789,"y":38.24},{"x":1755406262669,"y":37.367},{"x":1755406202537,"y":37.6},{"x":1755406142426,"y":36.629},{"x":1755406082290,"y":29.639},{"x":1755406022177,"y":28.369},{"x":1755405962033,"y":30.112},{"x":1755405901904,"y":31.26},{"x":1755405841774,"y":28.19},{"x":1755405781647,"y":46.2},{"x":1755405721519,"y":43.382},{"x":1755405661396,"y":38.773},{"x":1755405601278,"y":41.472},{"x":1755405541138,"y":31.654},{"x":1755405480986,"y":26.872},{"x":1755405420859,"y":30.989},{"x":1755405360777,"y":29.293},{"x":1755405300621,"y":29.748},{"x":1755405240470,"y":32.318},{"x":1755405180323,"y":26.654},{"x":1755405122972,"y":27.031},{"x":1755405062844,"y":27.625},{"x":1755405002721,"y":33.84},{"x":1755404942593,"y":49.592},{"x":1755404882474,"y":41.958},{"x":1755404822354,"y":45.197},{"x":1755404762223,"y":48.799},{"x":1755404702102,"y":45.452},{"x":1755404641969,"y":35.916},{"x":1755404581834,"y":31.667},{"x":1755404521706,"y":27.515},{"x":1755404461580,"y":26.542},{"x":1755404401462,"y":30.708},{"x":1755404341316,"y":32.948},{"x":1755404281187,"y":27.728},{"x":1755404221063,"y":26.395},{"x":1755404160917,"y":41.071},{"x":1755404100860,"y":39.659},{"x":1755404040685,"y":41.572},{"x":1755403980500,"y":44.984},{"x":1755403920325,"y":46.882},{"x":1755403862909,"y":43.585},{"x":1755403802793,"y":39.82},{"x":1755403742656,"y":36.239},{"x":1755403682531,"y":38.156},{"x":1755403622422,"y":31.825},{"x":1755403562288,"y":28.381},{"x":1755403502170,"y":29.778},{"x":1755403442041,"y":27.002},{"x":1755403381903,"y":31.741},{"x":1755403321777,"y":26.524},{"x":1755403261652,"y":31.568},{"x":1755403201530,"y":29.197},{"x":1755403141302,"y":43.952},{"x":1755403081153,"y":36.311},{"x":1755403021022,"y":31.123},{"x":1755402960882,"y":28.955},{"x":1755402900784,"y":27.545},{"x":1755402840639,"y":29.356},{"x":1755402780564,"y":30.893},{"x":1755402720479,"y":27.948},{"x":1755402660190,"y":28.702},{"x":1755402603011,"y":28.741},{"x":1755402542867,"y":27.455},{"x":1755402482713,"y":38.728},{"x":1755402422588,"y":35.328},{"x":1755402362442,"y":33.658},{"x":1755402302312,"y":34.238},{"x":1755402242188,"y":29.006},{"x":1755402182065,"y":31.742},{"x":1755402121935,"y":26.098},{"x":1755402061823,"y":26.423},{"x":1755402001676,"y":40.577},{"x":1755401941556,"y":41.718},{"x":1755401881433,"y":62.899},{"x":1755401821312,"y":58.132},{"x":1755401761185,"y":57.198},{"x":1755401701063,"y":42.814},{"x":1755401640912,"y":45.833},{"x":1755401580783,"y":30.626},{"x":1755401520679,"y":30.198},{"x":1755401460547,"y":32.37},{"x":1755401400388,"y":27.662},{"x":1755401342966,"y":36.162},{"x":1755401282832,"y":35.622},{"x":1755401222735,"y":44.296},{"x":1755401162596,"y":45.295},{"x":1755401102455,"y":48.742},{"x":1755401042342,"y":40.001},{"x":1755400982212,"y":37.518},{"x":1755400922086,"y":33.29},{"x":1755400861940,"y":32.059},{"x":1755400801821,"y":30.859},{"x":1755400741688,"y":31.034},{"x":1755400681572,"y":44.923},{"x":1755400621461,"y":44.748},{"x":1755400561302,"y":40.392},{"x":1755400501167,"y":40.136},{"x":1755400440967,"y":39.583},{"x":1755400380790,"y":26.731},{"x":1755400320749,"y":31.076},{"x":1755400260518,"y":28.178},{"x":1755400200387,"y":29.19},{"x":1755400141618,"y":31.967},{"x":1755400081495,"y":32.051},{"x":1755400021383,"y":35.694},{"x":1755399961247,"y":34.841},{"x":1755399901115,"y":29.58},{"x":1755399840948,"y":25.429},{"x":1755399782360,"y":50.278},{"x":1755399722216,"y":53.971},{"x":1755399662056,"y":50.308},{"x":1755399602436,"y":54.889},{"x":1755399542280,"y":52.65},{"x":1755399482147,"y":28.168},{"x":1755399422021,"y":27.287},{"x":1755399361942,"y":25.824},{"x":1755399301781,"y":28.284},{"x":1755399241640,"y":29.759},{"x":1755399181515,"y":29.162},{"x":1755399121387,"y":28.705},{"x":1755399061241,"y":29.299},{"x":1755399001102,"y":31.915},{"x":1755398940951,"y":29.191},{"x":1755398880830,"y":32.405},{"x":1755398820686,"y":30.005},{"x":1755398760562,"y":29.861},{"x":1755398700496,"y":41.824},{"x":1755398640220,"y":41.137},{"x":1755398582937,"y":40.657},{"x":1755398522815,"y":45.886},{"x":1755398462716,"y":43.765},{"x":1755398402564,"y":29.756},{"x":1755398342437,"y":33.013},{"x":1755398282313,"y":31.068},{"x":1755398222184,"y":27.623},{"x":1755398162048,"y":27.7},{"x":1755398101907,"y":30.52},{"x":1755398041783,"y":26.35},{"x":1755397981649,"y":24.631},{"x":1755397921526,"y":38.954},{"x":1755397861402,"y":42.518},{"x":1755397801297,"y":46.153},{"x":1755397741122,"y":42.929},{"x":1755397680964,"y":42.509},{"x":1755397620845,"y":28.62},{"x":1755397560720,"y":26.284},{"x":1755397500615,"y":29.921},{"x":1755397440626,"y":39.593},{"x":1755397380286,"y":40.393},{"x":1755397323014,"y":35.432},{"x":1755397262787,"y":33.264},{"x":1755397202672,"y":36.75},{"x":1755397142543,"y":27.568},{"x":1755397082432,"y":44.737},{"x":1755397022305,"y":42.34},{"x":1755396962175,"y":43.2},{"x":1755396902041,"y":48.467},{"x":1755396841926,"y":43.067},{"x":1755396781766,"y":26.18},{"x":1755396721633,"y":25.77},{"x":1755396661468,"y":25.886},{"x":1755396601325,"y":31.619},{"x":1755396541196,"y":29.065},{"x":1755396481068,"y":28.205},{"x":1755396420920,"y":27.59},{"x":1755396360771,"y":30.103},{"x":1755396300653,"y":30.468},{"x":1755396240538,"y":29.882},{"x":1755396180372,"y":27.716},{"x":1755396120294,"y":26.862},{"x":1755396062932,"y":28.231},{"x":1755396002847,"y":28.884},{"x":1755395942661,"y":29.045},{"x":1755395882532,"y":29.316},{"x":1755395822405,"y":28.222},{"x":1755395762267,"y":27.043},{"x":1755395702141,"y":26.622},{"x":1755395642008,"y":26.488},{"x":1755395581877,"y":29.368},{"x":1755395521751,"y":28.817},{"x":1755395461619,"y":32.208},{"x":1755395401500,"y":46.95},{"x":1755395341377,"y":60.672},{"x":1755395281254,"y":56.88},{"x":1755395221127,"y":54.302},{"x":1755395160999,"y":53.418},{"x":1755395100923,"y":40.345},{"x":1755395040734,"y":26.914},{"x":1755394980556,"y":26.706},{"x":1755394920497,"y":25.915},{"x":1755394860328,"y":25.178},{"x":1755394800374,"y":28.435},{"x":1755394742927,"y":34.778},{"x":1755394682804,"y":32.386},{"x":1755394622679,"y":32.249},{"x":1755394562549,"y":29.048},{"x":1755394502414,"y":26.034},{"x":1755394442291,"y":30.162},{"x":1755394382144,"y":28.644},{"x":1755394322010,"y":28.452},{"x":1755394261871,"y":27.196},{"x":1755394201742,"y":26.849},{"x":1755394141621,"y":33.05},{"x":1755394081502,"y":27.067},{"x":1755394021352,"y":36.614},{"x":1755393961225,"y":39.972},{"x":1755393901102,"y":49.39},{"x":1755393840964,"y":53.41},{"x":1755393780839,"y":48.472},{"x":1755393720705,"y":36.396},{"x":1755393660590,"y":24.802},{"x":1755393600526,"y":24.85},{"x":1755393540326,"y":28.774},{"x":1755393480263,"y":26.009},{"x":1755393422952,"y":25.922},{"x":1755393362811,"y":26.26},{"x":1755393302687,"y":58.295},{"x":1755393242576,"y":61.613},{"x":1755393182407,"y":66.919},{"x":1755393122304,"y":67.067},{"x":1755393062113,"y":50.03},{"x":1755393001956,"y":34.751},{"x":1755392941830,"y":35.16},{"x":1755392881695,"y":27.457},{"x":1755392821566,"y":26.85},{"x":1755392761444,"y":29.262},{"x":1755392701321,"y":28.856},{"x":1755392641186,"y":32.0},{"x":1755392581053,"y":27.235},{"x":1755392520898,"y":26.89},{"x":1755392460784,"y":26.55},{"x":1755392400762,"y":42.082},{"x":1755392340531,"y":44.716},{"x":1755392280387,"y":41.368},{"x":1755392220272,"y":39.652},{"x":1755392162958,"y":34.561},{"x":1755392102829,"y":28.38},{"x":1755392042705,"y":27.029},{"x":1755391982587,"y":27.72},{"x":1755391922419,"y":28.682},{"x":1755391862297,"y":38.846},{"x":1755391802174,"y":29.483},{"x":1755391742047,"y":28.626},{"x":1755391681909,"y":28.31},{"x":1755391621780,"y":33.983},{"x":1755391561659,"y":29.988},{"x":1755391501547,"y":29.398},{"x":1755391441399,"y":29.478},{"x":1755391381275,"y":26.539},{"x":1755391321146,"y":26.712},{"x":1755391260996,"y":61.432},{"x":1755391200891,"y":59.804},{"x":1755391140731,"y":58.568},{"x":1755391080615,"y":58.228},{"x":1755391020543,"y":57.347},{"x":1755390960464,"y":27.04},{"x":1755390900241,"y":27.295},{"x":1755390842964,"y":30.024},{"x":1755390782845,"y":30.618},{"x":1755390722723,"y":29.785},{"x":1755390662601,"y":30.341},{"x":1755390602413,"y":29.624},{"x":1755390542289,"y":27.576},{"x":1755390482159,"y":26.704},{"x":1755390422035,"y":34.763},{"x":1755390361903,"y":34.013},{"x":1755390301782,"y":46.688},{"x":1755390241657,"y":44.959},{"x":1755390181524,"y":46.477},{"x":1755390121407,"y":46.282},{"x":1755390061284,"y":49.733},{"x":1755390001163,"y":33.82},{"x":1755389941024,"y":29.62},{"x":1755389880898,"y":36.145},{"x":1755389820765,"y":27.946},{"x":1755389760666,"y":28.776},{"x":1755389700680,"y":27.788},{"x":1755389640378,"y":31.134},{"x":1755389580240,"y":31.829},{"x":1755389522986,"y":31.14},{"x":1755389462786,"y":29.477},{"x":1755389402634,"y":34.858},{"x":1755389342517,"y":27.107},{"x":1755389282402,"y":38.782},{"x":1755389222260,"y":32.838},{"x":1755389162135,"y":31.169},{"x":1755389102014,"y":28.236},{"x":1755389041864,"y":31.124},{"x":1755388981742,"y":33.229},{"x":1755388921607,"y":28.854},{"x":1755388861496,"y":29.578},{"x":1755388801452,"y":29.634},{"x":1755388741182,"y":27.66},{"x":1755388681062,"y":31.456},{"x":1755388620914,"y":27.612},{"x":1755388560801,"y":26.894},{"x":1755388500686,"y":30.762},{"x":1755388440543,"y":47.405},{"x":1755388380411,"y":51.553},{"x":1755388320238,"y":45.136},{"x":1755388262985,"y":56.927},{"x":1755388202861,"y":56.43},{"x":1755388142820,"y":41.458},{"x":1755388082628,"y":46.066},{"x":1755388022496,"y":40.987},{"x":1755387962380,"y":26.783},{"x":1755387902250,"y":27.439},{"x":1755387842124,"y":27.653},{"x":1755387781992,"y":31.588},{"x":1755387721866,"y":33.026},{"x":1755387661739,"y":36.368},{"x":1755387601618,"y":34.429},{"x":1755387541485,"y":34.511},{"x":1755387481366,"y":36.955},{"x":1755387421239,"y":32.508},{"x":1755387361114,"y":35.014},{"x":1755387300970,"y":34.502},{"x":1755387240838,"y":54.372},{"x":1755387180686,"y":59.694},{"x":1755387120583,"y":52.956},{"x":1755387060431,"y":50.396},{"x":1755387000366,"y":52.957},{"x":1755386943016,"y":32.37},{"x":1755386882893,"y":32.153},{"x":1755386822769,"y":35.226},{"x":1755386762624,"y":33.332},{"x":1755386702490,"y":30.748},{"x":1755386642368,"y":31.357},{"x":1755386582236,"y":46.561},{"x":1755386522109,"y":49.039},{"x":1755386461970,"y":43.961},{"x":1755386401850,"y":44.557},{"x":1755386341733,"y":53.128},{"x":1755386281599,"y":43.9},{"x":1755386221480,"y":48.629},{"x":1755386161344,"y":49.66},{"x":1755386101217,"y":52.058},{"x":1755386041076,"y":38.791},{"x":1755385980875,"y":36.071},{"x":1755385920768,"y":47.497},{"x":1755385860581,"y":40.824},{"x":1755385800332,"y":40.614},{"x":1755385740068,"y":40.535},{"x":1755385682917,"y":38.972},{"x":1755385622791,"y":33.067},{"x":1755385562668,"y":29.184},{"x":1755385502551,"y":28.697},{"x":1755385442422,"y":37.199},{"x":1755385382283,"y":39.533},{"x":1755385322166,"y":42.403},{"x":1755385262030,"y":35.268},{"x":1755385201868,"y":32.868},{"x":1755385141629,"y":32.317},{"x":1755385081507,"y":32.117},{"x":1755385021388,"y":50.572},{"x":1755384961258,"y":46.472},{"x":1755384901138,"y":43.522},{"x":1755384840988,"y":43.422},{"x":1755384780855,"y":42.953},{"x":1755384720727,"y":32.705},{"x":1755384660561,"y":32.998},{"x":1755384600407,"y":33.118},{"x":1755384540307,"y":34.818},{"x":1755384482991,"y":33.994},{"x":1755384422861,"y":34.591},{"x":1755384362733,"y":34.686},{"x":1755384302620,"y":35.032},{"x":1755384242476,"y":35.16},{"x":1755384182352,"y":34.918},{"x":1755384122224,"y":33.93},{"x":1755384062098,"y":48.58},{"x":1755384001963,"y":45.089},{"x":1755383941829,"y":54.517},{"x":1755383881697,"y":55.122},{"x":1755383821574,"y":50.722},{"x":1755383761451,"y":35.378},{"x":1755383701327,"y":32.423},{"x":1755383641197,"y":31.986},{"x":1755383581064,"y":36.848},{"x":1755383520925,"y":31.698},{"x":1755383460799,"y":31.423},{"x":1755383400749,"y":32.47},{"x":1755383340555,"y":29.951},{"x":1755383280454,"y":46.997},{"x":1755383220312,"y":35.081},{"x":1755383160138,"y":40.063},{"x":1755383102922,"y":39.851},{"x":1755383042795,"y":39.846},{"x":1755382982678,"y":47.766},{"x":1755382922544,"y":33.541},{"x":1755382862428,"y":55.256},{"x":1755382802305,"y":48.892},{"x":1755382742181,"y":45.36},{"x":1755382682045,"y":45.011},{"x":1755382621914,"y":44.216},{"x":1755382561782,"y":29.573},{"x":1755382501650,"y":31.615},{"x":1755382441528,"y":31.88},{"x":1755382381371,"y":36.347},{"x":1755382321231,"y":35.503},{"x":1755382261071,"y":35.011},{"x":1755382200919,"y":33.731},{"x":1755382140727,"y":33.947},{"x":1755382080641,"y":30.832},{"x":1755382020465,"y":31.817},{"x":1755381960398,"y":32.23},{"x":1755381900143,"y":35.338},{"x":1755381842898,"y":50.388},{"x":1755381782777,"y":49.489},{"x":1755381722658,"y":50.944},{"x":1755381662538,"y":49.501},{"x":1755381602413,"y":49.303},{"x":1755381542278,"y":40.264},{"x":1755381482135,"y":31.83},{"x":1755381422015,"y":30.524},{"x":1755381361887,"y":30.89},{"x":1755381301765,"y":30.738},{"x":1755381241637,"y":35.202},{"x":1755381181510,"y":31.716},{"x":1755381121390,"y":32.765},{"x":1755381061263,"y":29.869},{"x":1755381001139,"y":35.989},{"x":1755380940998,"y":50.226},{"x":1755380880875,"y":53.908},{"x":1755380820749,"y":68.542},{"x":1755380760641,"y":68.995},{"x":1755380700580,"y":65.287},{"x":1755380640359,"y":48.508},{"x":1755380580238,"y":50.219},{"x":1755380522897,"y":34.157},{"x":1755380462762,"y":35.026},{"x":1755380402646,"y":37.174},{"x":1755380342529,"y":31.757},{"x":1755380282409,"y":42.154},{"x":1755380222282,"y":42.99},{"x":1755380162158,"y":54.208},{"x":1755380102029,"y":57.173},{"x":1755380041905,"y":57.198},{"x":1755379981781,"y":43.776},{"x":1755379921679,"y":41.311},{"x":1755379861525,"y":33.068},{"x":1755379801395,"y":34.237},{"x":1755379741270,"y":32.288},{"x":1755379681149,"y":48.276},{"x":1755379621013,"y":49.198},{"x":1755379560891,"y":59.701},{"x":1755379500790,"y":65.039},{"x":1755379440673,"y":65.093},{"x":1755379380550,"y":52.534},{"x":1755379320381,"y":52.145},{"x":1755379260221,"y":41.168},{"x":1755379202940,"y":39.884},{"x":1755379142816,"y":34.156},{"x":1755379082687,"y":31.553},{"x":1755379022547,"y":44.065},{"x":1755378962405,"y":50.56},{"x":1755378902284,"y":46.373},{"x":1755378842168,"y":67.751},{"x":1755378781981,"y":64.238},{"x":1755378721847,"y":36.499},{"x":1755378661685,"y":35.396},{"x":1755378601542,"y":34.582},{"x":1755378541409,"y":32.374},{"x":1755378481289,"y":32.964},{"x":1755378421159,"y":46.0},{"x":1755378361041,"y":58.992},{"x":1755378300909,"y":59.05},{"x":1755378240796,"y":61.292},{"x":1755378180645,"y":60.619},{"x":1755378120553,"y":53.203},{"x":1755378060484,"y":37.633},{"x":1755378000359,"y":36.28},{"x":1755377942995,"y":46.862},{"x":1755377882875,"y":46.396},{"x":1755377822728,"y":50.609},{"x":1755377762598,"y":51.436},{"x":1755377702444,"y":44.129},{"x":1755377642351,"y":41.294},{"x":1755377582197,"y":40.204},{"x":1755377522066,"y":40.049},{"x":1755377461916,"y":35.735},{"x":1755377401799,"y":38.882},{"x":1755377341665,"y":38.286},{"x":1755377281547,"y":37.392},{"x":1755377221428,"y":36.091},{"x":1755377161306,"y":34.362},{"x":1755377101201,"y":37.386},{"x":1755377041009,"y":40.655},{"x":1755376980879,"y":60.966},{"x":1755376920763,"y":41.904},{"x":1755376860640,"y":52.452},{"x":1755376800657,"y":61.702},{"x":1755376740351,"y":61.694},{"x":1755376680096,"y":84.814},{"x":1755376622912,"y":67.925},{"x":1755376562791,"y":53.676},{"x":1755376502665,"y":42.941},{"x":1755376442563,"y":41.286},{"x":1755376382423,"y":51.086},{"x":1755376322292,"y":42.114},{"x":1755376262170,"y":38.59},{"x":1755376202059,"y":38.356},{"x":1755376141893,"y":36.167},{"x":1755376081770,"y":50.226},{"x":1755376021644,"y":52.032},{"x":1755375961526,"y":38.887},{"x":1755375901401,"y":56.552},{"x":1755375841268,"y":40.751},{"x":1755375781132,"y":67.711},{"x":1755375720996,"y":75.13},{"x":1755375660869,"y":75.192},{"x":1755375600841,"y":67.57},{"x":1755375540598,"y":74.536},{"x":1755375480456,"y":42.463},{"x":1755375420346,"y":40.466},{"x":1755375363010,"y":42.216},{"x":1755375302867,"y":37.704},{"x":1755375242739,"y":40.19},{"x":1755375182608,"y":38.318},{"x":1755375122439,"y":38.707},{"x":1755375062291,"y":39.962},{"x":1755375002131,"y":42.962},{"x":1755374941982,"y":36.966},{"x":1755374881855,"y":65.471},{"x":1755374821719,"y":65.336},{"x":1755374761618,"y":65.327},{"x":1755374701456,"y":64.091},{"x":1755374641329,"y":65.568},{"x":1755374581191,"y":61.448},{"x":1755374521059,"y":61.723},{"x":1755374460931,"y":64.426},{"x":1755374400930,"y":69.458},{"x":1755374340604,"y":64.18},{"x":1755374280521,"y":84.72},{"x":1755374220290,"y":85.99},{"x":1755374162906,"y":79.307},{"x":1755374102766,"y":76.751},{"x":1755374042646,"y":76.21},{"x":1755373982507,"y":59.119},{"x":1755373922381,"y":66.954},{"x":1755373862265,"y":60.964},{"x":1755373802126,"y":40.914},{"x":1755373741992,"y":38.568},{"x":1755373681868,"y":37.92},{"x":1755373621742,"y":51.602},{"x":1755373561615,"y":44.21},{"x":1755373501490,"y":48.517},{"x":1755373441362,"y":59.982},{"x":1755373381237,"y":66.636},{"x":1755373321108,"y":49.727},{"x":1755373260937,"y":48.455},{"x":1755373200845,"y":47.545},{"x":1755373140585,"y":38.156},{"x":1755373080500,"y":41.041},{"x":1755373020339,"y":40.286},{"x":1755372960152,"y":41.477},{"x":1755372902901,"y":41.742},{"x":1755372842776,"y":50.552},{"x":1755372782656,"y":46.628},{"x":1755372722545,"y":61.172},{"x":1755372662398,"y":42.473},{"x":1755372602242,"y":38.65},{"x":1755372542117,"y":38.027},{"x":1755372481990,"y":37.062},{"x":1755372421866,"y":37.957},{"x":1755372361738,"y":37.674},{"x":1755372301616,"y":36.752},{"x":1755372241479,"y":46.356},{"x":1755372181356,"y":51.754},{"x":1755372121231,"y":45.937},{"x":1755372061102,"y":65.027},{"x":1755372000991,"y":62.111},{"x":1755371940788,"y":45.551},{"x":1755371880676,"y":41.434},{"x":1755371820489,"y":41.254},{"x":1755371760356,"y":38.418},{"x":1755371700353,"y":45.779},{"x":1755371642939,"y":41.372},{"x":1755371582785,"y":37.438},{"x":1755371522657,"y":45.19},{"x":1755371462494,"y":48.92},{"x":1755371402324,"y":47.156},{"x":1755371342202,"y":47.116},{"x":1755371282079,"y":46.981},{"x":1755371221931,"y":54.536},{"x":1755371161803,"y":46.106},{"x":1755371101678,"y":46.134},{"x":1755371041575,"y":44.37},{"x":1755370981417,"y":37.63},{"x":1755370921314,"y":40.739},{"x":1755370861180,"y":36.206},{"x":1755370801109,"y":38.363},{"x":1755370740891,"y":40.59},{"x":1755370680753,"y":37.986},{"x":1755370620641,"y":43.945},{"x":1755370560568,"y":38.059},{"x":1755370500356,"y":38.309},{"x":1755370442944,"y":38.119},{"x":1755370382814,"y":38.827},{"x":1755370322688,"y":45.714},{"x":1755370262550,"y":41.695},{"x":1755370202412,"y":40.288},{"x":1755370142288,"y":42.409},{"x":1755370082160,"y":45.63},{"x":1755370022029,"y":47.612},{"x":1755369961895,"y":45.233},{"x":1755369901765,"y":44.221},{"x":1755369841638,"y":64.442},{"x":1755369781505,"y":57.029},{"x":1755369721383,"y":67.026},{"x":1755369661254,"y":62.653},{"x":1755369601160,"y":57.833},{"x":1755369540961,"y":41.586},{"x":1755369480837,"y":44.386},{"x":1755369420721,"y":43.637},{"x":1755369360616,"y":57.148},{"x":1755369300485,"y":41.885},{"x":1755369240330,"y":42.872},{"x":1755369180100,"y":36.046},{"x":1755369122899,"y":46.213},{"x":1755369062772,"y":51.498},{"x":1755369002648,"y":43.812},{"x":1755368942523,"y":56.222},{"x":1755368882391,"y":46.613},{"x":1755368822262,"y":38.941},{"x":1755368762136,"y":36.84},{"x":1755368702006,"y":39.198},{"x":1755368641871,"y":49.175},{"x":1755368581743,"y":49.352},{"x":1755368521611,"y":48.34},{"x":1755368461488,"y":50.014},{"x":1755368401353,"y":45.594},{"x":1755368341228,"y":32.126},{"x":1755368281095,"y":36.504},{"x":1755368220941,"y":60.496},{"x":1755368160817,"y":40.402},{"x":1755368100806,"y":42.644},{"x":1755368040516,"y":38.477},{"x":1755367980392,"y":38.693},{"x":1755367920192,"y":41.551},{"x":1755367862965,"y":42.344},{"x":1755367802804,"y":40.342},{"x":1755367742681,"y":38.006},{"x":1755367682586,"y":38.618},{"x":1755367622441,"y":36.907},{"x":1755367562329,"y":32.482},{"x":1755367502197,"y":41.053},{"x":1755367442078,"y":40.997},{"x":1755367381936,"y":41.894},{"x":1755367321842,"y":38.437},{"x":1755367261668,"y":34.65},{"x":1755367201632,"y":36.086},{"x":1755367141344,"y":32.963},{"x":1755367081225,"y":34.693},{"x":1755367021092,"y":44.363},{"x":1755366960948,"y":33.196},{"x":1755366900838,"y":32.676},{"x":1755366840693,"y":39.21},{"x":1755366780615,"y":33.064},{"x":1755366720456,"y":35.22},{"x":1755366660357,"y":34.138},{"x":1755366600299,"y":37.196},{"x":1755366542945,"y":41.112},{"x":1755366482817,"y":33.572},{"x":1755366422696,"y":32.454},{"x":1755366362547,"y":31.896},{"x":1755366302425,"y":30.576},{"x":1755366242274,"y":43.469},{"x":1755366182140,"y":54.757},{"x":1755366122005,"y":51.85},{"x":1755366061872,"y":54.494},{"x":1755366001688,"y":59.93},{"x":1755365941557,"y":45.62},{"x":1755365881438,"y":31.244},{"x":1755365821321,"y":38.279},{"x":1755365761194,"y":34.493},{"x":1755365701074,"y":31.41},{"x":1755365640934,"y":31.21},{"x":1755365580798,"y":31.856},{"x":1755365520698,"y":46.64},{"x":1755365460591,"y":44.736},{"x":1755365400485,"y":43.37},{"x":1755365340229,"y":44.962},{"x":1755365283014,"y":41.536},{"x":1755365222883,"y":36.232},{"x":1755365162734,"y":30.119},{"x":1755365102608,"y":30.424},{"x":1755365042471,"y":37.422},{"x":1755364982342,"y":29.557},{"x":1755364922207,"y":32.238},{"x":1755364862076,"y":29.329},{"x":1755364801933,"y":41.842},{"x":1755364741807,"y":46.7},{"x":1755364681689,"y":47.116},{"x":1755364621561,"y":54.067},{"x":1755364561428,"y":51.846},{"x":1755364501301,"y":43.344},{"x":1755364441176,"y":41.327},{"x":1755364381058,"y":46.32},{"x":1755364320897,"y":34.684},{"x":1755364260729,"y":55.937},{"x":1755364200605,"y":53.788},{"x":1755364140540,"y":37.261},{"x":1755364080349,"y":36.666},{"x":1755364020303,"y":36.752},{"x":1755363962944,"y":30.623},{"x":1755363902816,"y":26.1},{"x":1755363842689,"y":35.872},{"x":1755363782571,"y":40.912},{"x":1755363722432,"y":35.36},{"x":1755363662319,"y":38.834},{"x":1755363602395,"y":36.394},{"x":1755363542052,"y":36.496},{"x":1755363481873,"y":32.868},{"x":1755363421745,"y":31.585},{"x":1755363361614,"y":30.113},{"x":1755363301499,"y":30.55},{"x":1755363241364,"y":30.206},{"x":1755363181231,"y":28.762},{"x":1755363121097,"y":33.359},{"x":1755363060941,"y":36.366},{"x":1755363000840,"y":42.296},{"x":1755362940670,"y":40.848},{"x":1755362880587,"y":45.277},{"x":1755362820434,"y":39.57},{"x":1755362760371,"y":42.398},{"x":1755362702962,"y":29.347},{"x":1755362642832,"y":33.568},{"x":1755362582709,"y":43.212},{"x":1755362522576,"y":44.071},{"x":1755362462459,"y":45.744},{"x":1755362402314,"y":57.485},{"x":1755362342192,"y":44.231},{"x":1755362282066,"y":34.74},{"x":1755362221920,"y":35.752},{"x":1755362161791,"y":33.193},{"x":1755362101680,"y":50.959},{"x":1755362041556,"y":57.128},{"x":1755361981434,"y":39.581},{"x":1755361921311,"y":39.865},{"x":1755361861190,"y":42.695},{"x":1755361801041,"y":50.354},{"x":1755361740755,"y":29.437},{"x":1755361680662,"y":30.334},{"x":1755361620561,"y":35.056},{"x":1755361560397,"y":30.605},{"x":1755361500263,"y":46.55},{"x":1755361442911,"y":41.915},{"x":1755361382799,"y":42.056},{"x":1755361322667,"y":44.19},{"x":1755361262544,"y":44.797},{"x":1755361202417,"y":30.421},{"x":1755361142289,"y":53.651},{"x":1755361082167,"y":36.618},{"x":1755361022048,"y":60.344},{"x":1755360961895,"y":39.233},{"x":1755360901757,"y":38.095},{"x":1755360841637,"y":36.36},{"x":1755360781475,"y":49.933},{"x":1755360721328,"y":23.711},{"x":1755360661159,"y":27.448},{"x":1755360600960,"y":26.854},{"x":1755360540827,"y":26.375},{"x":1755360480700,"y":26.074},{"x":1755360420588,"y":31.58},{"x":1755360360392,"y":29.651},{"x":1755360300285,"y":45.514},{"x":1755360242938,"y":25.643},{"x":1755360182807,"y":23.85},{"x":1755360122677,"y":23.609},{"x":1755360062546,"y":29.822},{"x":1755360002446,"y":34.968},{"x":1755359942290,"y":33.846},{"x":1755359882180,"y":36.404},{"x":1755359822029,"y":29.797},{"x":1755359761889,"y":31.579},{"x":1755359701766,"y":27.343},{"x":1755359641637,"y":29.821},{"x":1755359581510,"y":27.16},{"x":1755359521384,"y":29.779},{"x":1755359461256,"y":24.14},{"x":1755359401122,"y":34.931},{"x":1755359340949,"y":44.705},{"x":1755359280825,"y":43.604},{"x":1755359220693,"y":47.939},{"x":1755359160606,"y":41.875},{"x":1755359100546,"y":35.585},{"x":1755359040304,"y":25.469},{"x":1755358982965,"y":30.241},{"x":1755358922847,"y":31.579},{"x":1755358862714,"y":27.306},{"x":1755358802587,"y":35.426},{"x":1755358742454,"y":27.649},{"x":1755358682331,"y":34.115},{"x":1755358622213,"y":34.728},{"x":1755358562082,"y":43.264},{"x":1755358501943,"y":39.38},{"x":1755358441813,"y":28.315},{"x":1755358381690,"y":19.234},{"x":1755358321560,"y":36.433},{"x":1755358261429,"y":36.092},{"x":1755358201299,"y":34.31},{"x":1755358141156,"y":38.722},{"x":1755358081031,"y":41.803},{"x":1755358020903,"y":41.207},{"x":1755357960780,"y":29.851},{"x":1755357900640,"y":21.786},{"x":1755357840511,"y":28.036},{"x":1755357780381,"y":29.196},{"x":1755357720311,"y":18.761},{"x":1755357662975,"y":23.66},{"x":1755357602848,"y":24.353},{"x":1755357542720,"y":19.067},{"x":1755357482605,"y":20.87},{"x":1755357422475,"y":21.953},{"x":1755357362352,"y":27.263},{"x":1755357302213,"y":35.48},{"x":1755357242086,"y":28.049},{"x":1755357181914,"y":36.636},{"x":1755357121823,"y":31.484},{"x":1755357061624,"y":30.218},{"x":1755357001481,"y":21.101},{"x":1755356941354,"y":27.47},{"x":1755356881232,"y":30.071},{"x":1755356821105,"y":29.645},{"x":1755356760963,"y":26.537},{"x":1755356700846,"y":26.545},{"x":1755356640710,"y":50.441},{"x":1755356580604,"y":48.035},{"x":1755356520504,"y":68.208},{"x":1755356460370,"y":50.923},{"x":1755356402968,"y":49.806},{"x":1755356342832,"y":40.706},{"x":1755356282709,"y":38.17},{"x":1755356222579,"y":47.473},{"x":1755356162458,"y":41.335},{"x":1755356102333,"y":57.36},{"x":1755356042214,"y":46.411},{"x":1755355982078,"y":42.809},{"x":1755355921941,"y":36.817},{"x":1755355861811,"y":43.66},{"x":1755355801676,"y":42.236},{"x":1755355741543,"y":59.988},{"x":1755355681425,"y":44.609},{"x":1755355621290,"y":46.369},{"x":1755355561169,"y":25.332},{"x":1755355501041,"y":33.954},{"x":1755355440807,"y":37.106},{"x":1755355380678,"y":38.173},{"x":1755355320568,"y":42.222},{"x":1755355260463,"y":37.88},{"x":1755355200175,"y":52.936},{"x":1755355142959,"y":46.14},{"x":1755355082831,"y":47.107},{"x":1755355022704,"y":54.52},{"x":1755354962582,"y":53.598},{"x":1755354902453,"y":42.294},{"x":1755354842322,"y":63.366},{"x":1755354782194,"y":41.42},{"x":1755354722062,"y":39.262},{"x":1755354661920,"y":40.35},{"x":1755354601770,"y":55.187},{"x":1755354541632,"y":38.952},{"x":1755354481508,"y":48.25},{"x":1755354421384,"y":47.53},{"x":1755354361269,"y":56.125},{"x":1755354301153,"y":55.811},{"x":1755354240982,"y":32.479},{"x":1755354180848,"y":36.187},{"x":1755354120727,"y":29.338},{"x":1755354060619,"y":26.926},{"x":1755354000488,"y":27.085},{"x":1755353940277,"y":30.977},{"x":1755353883016,"y":23.494},{"x":1755353822880,"y":24.419},{"x":1755353762756,"y":27.439},{"x":1755353702605,"y":26.536},{"x":1755353642482,"y":20.288},{"x":1755353582359,"y":24.493},{"x":1755353522213,"y":27.3},{"x":1755353462029,"y":25.35},{"x":1755353401873,"y":35.311},{"x":1755353341744,"y":19.8},{"x":1755353281614,"y":14.528},{"x":1755353221494,"y":18.233},{"x":1755353161368,"y":8.8},{"x":1755353101248,"y":29.056},{"x":1755353041106,"y":35.214},{"x":1755352980969,"y":35.496},{"x":1755352920838,"y":31.204},{"x":1755352860737,"y":31.998},{"x":1755352800719,"y":27.27},{"x":1755352740482,"y":8.25},{"x":1755352680337,"y":17.142},{"x":1755352620056,"y":18.482},{"x":1755352562896,"y":32.432},{"x":1755352502768,"y":28.025},{"x":1755352442643,"y":20.33},{"x":1755352382541,"y":22.452},{"x":1755352322397,"y":26.41},{"x":1755352262270,"y":42.05},{"x":1755352202142,"y":40.294},{"x":1755352141989,"y":53.436},{"x":1755352081855,"y":36.166},{"x":1755352021740,"y":28.267},{"x":1755351961617,"y":33.119},{"x":1755351901516,"y":24.436},{"x":1755351841364,"y":32.712},{"x":1755351781231,"y":35.411},{"x":1755351721116,"y":47.228},{"x":1755351660942,"y":38.423},{"x":1755351601023,"y":40.194},{"x":1755351540660,"y":34.409},{"x":1755351480686,"y":26.256},{"x":1755351420755,"y":28.585},{"x":1755351360196,"y":31.09},{"x":1755351302915,"y":29.537},{"x":1755351242814,"y":25.957},{"x":1755351182672,"y":26.431},{"x":1755351122553,"y":32.507},{"x":1755351062434,"y":26.802},{"x":1755351002321,"y":42.192},{"x":1755350942182,"y":31.414},{"x":1755350882062,"y":34.085},{"x":1755350821923,"y":33.294},{"x":1755350761805,"y":26.867},{"x":1755350701681,"y":29.69},{"x":1755350641558,"y":23.128},{"x":1755350581432,"y":20.424},{"x":1755350521295,"y":20.394},{"x":1755350461168,"y":25.568},{"x":1755350401048,"y":26.44},{"x":1755350340884,"y":20.657},{"x":1755350280764,"y":20.339},{"x":1755350220645,"y":39.32},{"x":1755350160618,"y":37.718},{"x":1755350100484,"y":45.042},{"x":1755350040182,"y":42.035},{"x":1755349982976,"y":27.974},{"x":1755349922807,"y":17.06},{"x":1755349862655,"y":15.797},{"x":1755349802513,"y":11.112},{"x":1755349742387,"y":9.961},{"x":1755349682257,"y":29.171},{"x":1755349622148,"y":29.466},{"x":1755349562007,"y":20.46},{"x":1755349501877,"y":29.226},{"x":1755349441756,"y":30.358},{"x":1755349381648,"y":20.052},{"x":1755349321520,"y":9.724},{"x":1755349261406,"y":18.172},{"x":1755349201408,"y":12.077},{"x":1755349141052,"y":21.875},{"x":1755349080911,"y":13.958},{"x":1755349020790,"y":26.338},{"x":1755348960697,"y":26.53},{"x":1755348900622,"y":25.46},{"x":1755348840456,"y":33.424},{"x":1755348780282,"y":44.371},{"x":1755348722997,"y":21.094},{"x":1755348662873,"y":23.753},{"x":1755348602749,"y":22.121},{"x":1755348542624,"y":16.321},{"x":1755348482505,"y":27.846},{"x":1755348422378,"y":29.22},{"x":1755348362244,"y":30.305},{"x":1755348302124,"y":17.567},{"x":1755348241981,"y":21.533},{"x":1755348181847,"y":23.218},{"x":1755348121713,"y":25.691},{"x":1755348061596,"y":25.844},{"x":1755348001475,"y":32.73},{"x":1755347941354,"y":34.129},{"x":1755347881227,"y":27.114},{"x":1755347821095,"y":35.092},{"x":1755347760954,"y":44.263},{"x":1755347700846,"y":62.636},{"x":1755347640686,"y":51.271},{"x":1755347580566,"y":50.722},{"x":1755347520569,"y":29.122},{"x":1755347460353,"y":28.352},{"x":1755347402998,"y":38.635},{"x":1755347342882,"y":17.197},{"x":1755347282758,"y":30.976},{"x":1755347222637,"y":36.396},{"x":1755347162491,"y":32.624},{"x":1755347102366,"y":46.528},{"x":1755347042225,"y":27.474},{"x":1755346982104,"y":27.878},{"x":1755346921958,"y":22.784},{"x":1755346861850,"y":30.53},{"x":1755346801702,"y":27.107},{"x":1755346741577,"y":27.985},{"x":1755346681457,"y":18.076},{"x":1755346621325,"y":17.186},{"x":1755346561192,"y":23.678},{"x":1755346501067,"y":27.655},{"x":1755346440950,"y":27.844},{"x":1755346380805,"y":32.675},{"x":1755346320693,"y":33.936},{"x":1755346260525,"y":24.527},{"x":1755346200537,"y":28.327},{"x":1755346140195,"y":19.854},{"x":1755346082922,"y":24.256},{"x":1755346022801,"y":24.617},{"x":1755345962683,"y":35.783},{"x":1755345902522,"y":26.746},{"x":1755345842396,"y":21.643},{"x":1755345782290,"y":8.64},{"x":1755345722148,"y":14.737},{"x":1755345662035,"y":18.374},{"x":1755345601722,"y":17.794},{"x":1755345541533,"y":33.288},{"x":1755345481408,"y":18.307},{"x":1755345421284,"y":18.124},{"x":1755345361159,"y":21.058},{"x":1755345301043,"y":17.176},{"x":1755345240899,"y":16.499},{"x":1755345180781,"y":18.93},{"x":1755345120681,"y":20.425},{"x":1755345060555,"y":21.505},{"x":1755345000566,"y":27.353},{"x":1755344940221,"y":27.026},{"x":1755344882958,"y":26.298},{"x":1755344822833,"y":31.175},{"x":1755344762709,"y":30.248},{"x":1755344702576,"y":25.584},{"x":1755344642452,"y":20.94},{"x":1755344582328,"y":25.946},{"x":1755344522198,"y":20.654},{"x":1755344462074,"y":44.435},{"x":1755344401941,"y":54.406},{"x":1755344341806,"y":50.148},{"x":1755344281691,"y":50.858},{"x":1755344221565,"y":52.45},{"x":1755344161440,"y":31.57},{"x":1755344101340,"y":35.225},{"x":1755344041201,"y":30.313},{"x":1755343981074,"y":31.316},{"x":1755343920929,"y":28.525},{"x":1755343860803,"y":22.26},{"x":1755343800712,"y":22.451},{"x":1755343740543,"y":39.786},{"x":1755343680492,"y":32.359},{"x":1755343620328,"y":27.953},{"x":1755343562976,"y":32.188},{"x":1755343502851,"y":30.17},{"x":1755343442706,"y":26.981},{"x":1755343382579,"y":35.309},{"x":1755343322460,"y":47.124},{"x":1755343262339,"y":29.438},{"x":1755343202212,"y":35.947},{"x":1755343142089,"y":38.02},{"x":1755343081934,"y":29.292},{"x":1755343021798,"y":29.668},{"x":1755342961666,"y":34.064},{"x":1755342901543,"y":35.317},{"x":1755342841432,"y":34.596},{"x":1755342781292,"y":41.438},{"x":1755342721145,"y":40.188},{"x":1755342660994,"y":39.504},{"x":1755342600852,"y":38.785},{"x":1755342540659,"y":37.518},{"x":1755342480620,"y":46.274},{"x":1755342420424,"y":32.957},{"x":1755342360305,"y":36.606},{"x":1755342302951,"y":29.542},{"x":1755342242830,"y":38.71},{"x":1755342182713,"y":43.868},{"x":1755342122600,"y":38.959},{"x":1755342062457,"y":41.447},{"x":1755342002370,"y":36.984},{"x":1755341942160,"y":38.524},{"x":1755341881999,"y":43.523},{"x":1755341821874,"y":40.921},{"x":1755341761751,"y":38.202},{"x":1755341701621,"y":40.327},{"x":1755341641492,"y":40.374},{"x":1755341581374,"y":28.846},{"x":1755341521237,"y":32.539},{"x":1755341461100,"y":32.57},{"x":1755341400971,"y":33.907},{"x":1755341340833,"y":34.344},{"x":1755341280716,"y":41.528},{"x":1755341220598,"y":36.866},{"x":1755341160476,"y":36.167},{"x":1755341100395,"y":28.866},{"x":1755341043013,"y":33.978},{"x":1755340982907,"y":67.505},{"x":1755340922756,"y":32.669},{"x":1755340862637,"y":42.82},{"x":1755340802514,"y":43.932},{"x":1755340742392,"y":50.634},{"x":1755340682261,"y":50.772},{"x":1755340622131,"y":45.997},{"x":1755340562004,"y":50.876},{"x":1755340501875,"y":58.42},{"x":1755340441750,"y":39.252},{"x":1755340381606,"y":35.53},{"x":1755340321484,"y":30.197},{"x":1755340261411,"y":27.188},{"x":1755340201346,"y":30.212},{"x":1755340141101,"y":32.304},{"x":1755340080951,"y":29.21},{"x":1755340020835,"y":40.116},{"x":1755339960702,"y":34.117},{"x":1755339900682,"y":36.221},{"x":1755339840525,"y":38.233},{"x":1755339780253,"y":41.164},{"x":1755339722959,"y":38.831},{"x":1755339662831,"y":33.858},{"x":1755339602703,"y":30.076},{"x":1755339542566,"y":45.814},{"x":1755339482447,"y":42.503},{"x":1755339422318,"y":40.63},{"x":1755339362179,"y":39.758},{"x":1755339302034,"y":42.352},{"x":1755339241896,"y":51.01},{"x":1755339181751,"y":29.713},{"x":1755339121634,"y":28.362},{"x":1755339061424,"y":30.952},{"x":1755339001293,"y":29.677},{"x":1755338941173,"y":36.008},{"x":1755338881032,"y":39.03},{"x":1755338820894,"y":37.835},{"x":1755338760769,"y":37.636},{"x":1755338700639,"y":36.51},{"x":1755338640537,"y":41.34},{"x":1755338580394,"y":33.658},{"x":1755338520197,"y":33.45},{"x":1755338462937,"y":35.85},{"x":1755338402850,"y":32.882},{"x":1755338342687,"y":31.735},{"x":1755338282550,"y":44.772},{"x":1755338222424,"y":47.621},{"x":1755338162298,"y":57.791},{"x":1755338102172,"y":48.124},{"x":1755338042047,"y":46.696},{"x":1755337981933,"y":32.684},{"x":1755337921782,"y":53.705},{"x":1755337861648,"y":32.808},{"x":1755337801528,"y":32.23},{"x":1755337741406,"y":35.617},{"x":1755337681292,"y":32.207},{"x":1755337621157,"y":34.488},{"x":1755337561011,"y":40.622},{"x":1755337500884,"y":33.167},{"x":1755337440722,"y":41.593},{"x":1755337380568,"y":36.422},{"x":1755337320458,"y":37.573},{"x":1755337260217,"y":54.412},{"x":1755337202949,"y":50.291},{"x":1755337142853,"y":35.105},{"x":1755337082704,"y":29.948},{"x":1755337022580,"y":32.532},{"x":1755336962452,"y":43.55},{"x":1755336902316,"y":39.984},{"x":1755336842193,"y":42.376},{"x":1755336782069,"y":52.033},{"x":1755336721933,"y":45.541},{"x":1755336661809,"y":41.06},{"x":1755336601621,"y":40.94},{"x":1755336541486,"y":44.038},{"x":1755336481365,"y":40.727},{"x":1755336421235,"y":41.916},{"x":1755336361105,"y":35.564},{"x":1755336300981,"y":34.159},{"x":1755336240836,"y":39.937},{"x":1755336180727,"y":31.927},{"x":1755336120600,"y":39.859},{"x":1755336060447,"y":35.771},{"x":1755336000359,"y":31.735},{"x":1755335940130,"y":27.937},{"x":1755335882927,"y":27.88},{"x":1755335822804,"y":27.508},{"x":1755335762684,"y":35.438},{"x":1755335702550,"y":39.992},{"x":1755335642426,"y":33.589},{"x":1755335582286,"y":42.66},{"x":1755335522085,"y":44.983},{"x":1755335461884,"y":41.084},{"x":1755335401728,"y":45.419},{"x":1755335341613,"y":40.987},{"x":1755335281503,"y":29.302},{"x":1755335221352,"y":33.902},{"x":1755335161229,"y":31.294},{"x":1755335101106,"y":33.412},{"x":1755335040947,"y":37.027},{"x":1755334980827,"y":32.928},{"x":1755334920724,"y":32.524},{"x":1755334860628,"y":37.356},{"x":1755334800555,"y":32.659},{"x":1755334740350,"y":33.833},{"x":1755334682943,"y":32.021},{"x":1755334622824,"y":31.702},{"x":1755334562703,"y":35.012},{"x":1755334502566,"y":44.156},{"x":1755334442439,"y":33.508},{"x":1755334382306,"y":32.484},{"x":1755334322176,"y":45.552},{"x":1755334262053,"y":47.3},{"x":1755334201920,"y":47.248},{"x":1755334141781,"y":46.25},{"x":1755334081662,"y":35.39},{"x":1755334021527,"y":31.045},{"x":1755333961407,"y":31.518},{"x":1755333901286,"y":55.396},{"x":1755333841126,"y":36.156},{"x":1755333781019,"y":34.703},{"x":1755333720857,"y":43.148},{"x":1755333660714,"y":34.801},{"x":1755333600612,"y":42.313},{"x":1755333540488,"y":36.454},{"x":1755333480355,"y":51.827},{"x":1755333420293,"y":39.522},{"x":1755333362918,"y":36.732},{"x":1755333302797,"y":38.963},{"x":1755333242675,"y":48.28},{"x":1755333182550,"y":44.251},{"x":1755333122427,"y":43.795},{"x":1755333062300,"y":40.493},{"x":1755333002170,"y":33.785},{"x":1755332942034,"y":35.322},{"x":1755332881900,"y":30.157},{"x":1755332821777,"y":35.098},{"x":1755332761656,"y":47.066},{"x":1755332701523,"y":41.038},{"x":1755332641403,"y":48.002},{"x":1755332581247,"y":49.466},{"x":1755332521118,"y":37.961},{"x":1755332460972,"y":45.613},{"x":1755332400826,"y":49.877},{"x":1755332340490,"y":41.597},{"x":1755332280367,"y":37.032},{"x":1755332220308,"y":39.409},{"x":1755332162956,"y":30.5},{"x":1755332102826,"y":31.754},{"x":1755332042710,"y":31.423},{"x":1755331982567,"y":33.515},{"x":1755331922414,"y":31.446},{"x":1755331862306,"y":39.215},{"x":1755331802145,"y":39.724},{"x":1755331741989,"y":33.44},{"x":1755331681855,"y":36.18},{"x":1755331621733,"y":36.859},{"x":1755331561612,"y":31.192},{"x":1755331501491,"y":35.111},{"x":1755331441363,"y":44.092},{"x":1755331381233,"y":35.216},{"x":1755331321109,"y":34.957},{"x":1755331260982,"y":39.596},{"x":1755331200918,"y":32.59},{"x":1755331140701,"y":35.927},{"x":1755331080572,"y":36.924},{"x":1755331020408,"y":35.726},{"x":1755330960298,"y":35.19},{"x":1755330902929,"y":34.286},{"x":1755330842805,"y":32.63},{"x":1755330782684,"y":39.966},{"x":1755330722558,"y":36.257},{"x":1755330662433,"y":38.08},{"x":1755330602297,"y":33.149},{"x":1755330542159,"y":38.912},{"x":1755330482035,"y":36.614},{"x":1755330421899,"y":31.171},{"x":1755330361772,"y":34.536},{"x":1755330301667,"y":39.646},{"x":1755330241521,"y":34.825},{"x":1755330181394,"y":47.465},{"x":1755330121271,"y":47.606},{"x":1755330061144,"y":61.676},{"x":1755330001050,"y":54.87},{"x":1755329940865,"y":60.925},{"x":1755329880739,"y":41.622},{"x":1755329820641,"y":39.965},{"x":1755329760582,"y":36.746},{"x":1755329700353,"y":30.998},{"x":1755329640266,"y":27.574},{"x":1755329582934,"y":27.989},{"x":1755329522806,"y":31.427},{"x":1755329462673,"y":42.271},{"x":1755329402551,"y":50.555},{"x":1755329342423,"y":57.439},{"x":1755329282291,"y":47.792},{"x":1755329222162,"y":40.422},{"x":1755329162032,"y":29.545},{"x":1755329101896,"y":45.265},{"x":1755329041774,"y":29.435},{"x":1755328981648,"y":31.246},{"x":1755328921530,"y":30.71},{"x":1755328861444,"y":29.224},{"x":1755328801285,"y":33.031},{"x":1755328741154,"y":47.598},{"x":1755328681001,"y":33.184},{"x":1755328620934,"y":29.728},{"x":1755328560779,"y":34.046},{"x":1755328500667,"y":31.183},{"x":1755328440461,"y":30.575},{"x":1755328380138,"y":32.105},{"x":1755328322910,"y":31.793},{"x":1755328262785,"y":24.292},{"x":1755328202614,"y":37.103},{"x":1755328142501,"y":33.438},{"x":1755328082373,"y":43.223},{"x":1755328022253,"y":49.16},{"x":1755327962132,"y":54.92},{"x":1755327901980,"y":41.887},{"x":1755327841859,"y":37.416},{"x":1755327781730,"y":34.748},{"x":1755327721607,"y":29.701},{"x":1755327661483,"y":29.641},{"x":1755327601378,"y":29.282},{"x":1755327541192,"y":29.035},{"x":1755327481062,"y":31.607},{"x":1755327420915,"y":31.412},{"x":1755327360791,"y":32.929},{"x":1755327300665,"y":48.323},{"x":1755327240555,"y":40.199},{"x":1755327180568,"y":36.67},{"x":1755327120297,"y":34.919},{"x":1755327060115,"y":34.624},{"x":1755327002913,"y":34.853},{"x":1755326942782,"y":29.712},{"x":1755326882670,"y":29.629},{"x":1755326822534,"y":29.611},{"x":1755326762401,"y":31.544},{"x":1755326702267,"y":38.142},{"x":1755326642141,"y":34.374},{"x":1755326581999,"y":32.149},{"x":1755326521868,"y":38.236},{"x":1755326461747,"y":36.671},{"x":1755326401617,"y":34.951},{"x":1755326341481,"y":39.961},{"x":1755326281356,"y":44.963},{"x":1755326221234,"y":41.97},{"x":1755326161098,"y":38.381},{"x":1755326100973,"y":36.437},{"x":1755326040833,"y":39.059},{"x":1755325980718,"y":33.937},{"x":1755325920627,"y":33.559},{"x":1755325860487,"y":33.332},{"x":1755325800391,"y":34.556},{"x":1755325742946,"y":51.092},{"x":1755325682832,"y":35.944},{"x":1755325622703,"y":49.285},{"x":1755325562580,"y":35.282},{"x":1755325502459,"y":58.652},{"x":1755325442323,"y":40.016},{"x":1755325382202,"y":49.691},{"x":1755325322053,"y":38.848},{"x":1755325261917,"y":48.972},{"x":1755325201786,"y":31.256},{"x":1755325141661,"y":34.505},{"x":1755325081527,"y":34.57},{"x":1755325021410,"y":49.736},{"x":1755324961264,"y":39.528},{"x":1755324901150,"y":57.424},{"x":1755324841009,"y":56.018},{"x":1755324780879,"y":52.282},{"x":1755324720781,"y":49.901},{"x":1755324660580,"y":57.144},{"x":1755324600361,"y":55.648},{"x":1755324540170,"y":50.278},{"x":1755324482942,"y":50.987},{"x":1755324422818,"y":37.198},{"x":1755324362680,"y":36.85},{"x":1755324302535,"y":34.259},{"x":1755324242405,"y":33.893},{"x":1755324182272,"y":31.262},{"x":1755324122163,"y":32.802},{"x":1755324062028,"y":36.68},{"x":1755324001761,"y":31.568},{"x":1755323941421,"y":31.975},{"x":1755323881300,"y":31.634},{"x":1755323821174,"y":29.596},{"x":1755323761018,"y":28.53},{"x":1755323700869,"y":40.476},{"x":1755323640727,"y":42.784},{"x":1755323580636,"y":43.508},{"x":1755323520523,"y":43.938},{"x":1755323460283,"y":41.06},{"x":1755323402981,"y":40.386},{"x":1755323342863,"y":34.13},{"x":1755323282747,"y":32.407},{"x":1755323222605,"y":33.66},{"x":1755323162482,"y":31.332},{"x":1755323102351,"y":28.29},{"x":1755323042224,"y":26.747},{"x":1755322982092,"y":27.402},{"x":1755322921953,"y":36.515},{"x":1755322861829,"y":37.822},{"x":1755322801561,"y":39.574},{"x":1755322741433,"y":44.044},{"x":1755322681305,"y":38.324},{"x":1755322621183,"y":28.991},{"x":1755322561050,"y":27.934},{"x":1755322500933,"y":27.925},{"x":1755322440766,"y":32.816},{"x":1755322380662,"y":31.441},{"x":1755322320549,"y":33.078},{"x":1755322260430,"y":30.203},{"x":1755322200391,"y":30.478},{"x":1755322142939,"y":30.062},{"x":1755322082823,"y":35.732},{"x":1755322022699,"y":30.968},{"x":1755321962573,"y":28.451},{"x":1755321902435,"y":27.607},{"x":1755321842312,"y":38.188},{"x":1755321782185,"y":27.992},{"x":1755321722057,"y":27.408},{"x":1755321661929,"y":52.788},{"x":1755321601809,"y":55.398},{"x":1755321541681,"y":55.663},{"x":1755321481531,"y":54.643},{"x":1755321421405,"y":53.072},{"x":1755321361278,"y":33.014},{"x":1755321301216,"y":34.784},{"x":1755321240980,"y":32.704},{"x":1755321180836,"y":34.404},{"x":1755321120747,"y":28.667},{"x":1755321060599,"y":30.08},{"x":1755321000383,"y":34.898},{"x":1755320943023,"y":32.959},{"x":1755320882888,"y":33.504},{"x":1755320822762,"y":35.994},{"x":1755320762637,"y":37.121},{"x":1755320702517,"y":33.42},{"x":1755320642398,"y":33.292},{"x":1755320582272,"y":28.799},{"x":1755320522148,"y":29.81},{"x":1755320462019,"y":31.031},{"x":1755320401818,"y":30.926},{"x":1755320341627,"y":40.025},{"x":1755320281504,"y":39.677},{"x":1755320221378,"y":39.359},{"x":1755320161255,"y":50.444},{"x":1755320101134,"y":57.24},{"x":1755320040988,"y":54.925},{"x":1755319980865,"y":53.573},{"x":1755319920752,"y":54.583},{"x":1755319860617,"y":44.861},{"x":1755319800545,"y":55.208},{"x":1755319740242,"y":55.922},{"x":1755319682950,"y":55.687},{"x":1755319622823,"y":61.345},{"x":1755319562702,"y":69.926},{"x":1755319502575,"y":66.095},{"x":1755319442446,"y":57.696},{"x":1755319382323,"y":51.078},{"x":1755319322198,"y":53.857},{"x":1755319262068,"y":32.927},{"x":1755319201935,"y":31.754},{"x":1755319141807,"y":35.675},{"x":1755319081690,"y":31.714},{"x":1755319021561,"y":31.535},{"x":1755318961433,"y":29.722},{"x":1755318901325,"y":32.254},{"x":1755318841184,"y":32.084},{"x":1755318781054,"y":36.444},{"x":1755318720914,"y":32.515},{"x":1755318660793,"y":35.072},{"x":1755318600656,"y":39.277},{"x":1755318540431,"y":39.955},{"x":1755318480345,"y":44.036},{"x":1755318422995,"y":38.558},{"x":1755318362869,"y":38.374},{"x":1755318302749,"y":36.647},{"x":1755318242625,"y":33.458},{"x":1755318182504,"y":35.1},{"x":1755318122379,"y":37.672},{"x":1755318062261,"y":30.204},{"x":1755318002138,"y":37.734},{"x":1755317942019,"y":29.495},{"x":1755317881882,"y":31.589},{"x":1755317821753,"y":36.022},{"x":1755317761625,"y":32.122},{"x":1755317701518,"y":31.909},{"x":1755317641381,"y":31.32},{"x":1755317581221,"y":30.97},{"x":1755317521057,"y":31.399},{"x":1755317460895,"y":30.263},{"x":1755317400821,"y":32.062},{"x":1755317340637,"y":32.009},{"x":1755317280779,"y":29.224},{"x":1755317220304,"y":32.658},{"x":1755317162965,"y":36.809},{"x":1755317102847,"y":32.461},{"x":1755317042723,"y":31.349},{"x":1755316982595,"y":31.216},{"x":1755316922470,"y":29.743},{"x":1755316862309,"y":30.253},{"x":1755316802238,"y":36.284},{"x":1755316742007,"y":38.992},{"x":1755316681876,"y":39.157},{"x":1755316621754,"y":36.664},{"x":1755316561632,"y":34.705},{"x":1755316501509,"y":37.535},{"x":1755316441378,"y":32.686},{"x":1755316381254,"y":30.012},{"x":1755316321118,"y":34.343},{"x":1755316260969,"y":35.987},{"x":1755316200844,"y":34.502},{"x":1755316140711,"y":33.613},{"x":1755316080613,"y":33.126},{"x":1755316020473,"y":38.618},{"x":1755315960319,"y":40.616},{"x":1755315903013,"y":35.902},{"x":1755315842898,"y":35.257},{"x":1755315782757,"y":37.201},{"x":1755315722635,"y":30.179},{"x":1755315662520,"y":29.378},{"x":1755315602385,"y":29.345},{"x":1755315542261,"y":31.736},{"x":1755315482137,"y":43.94},{"x":1755315421988,"y":32.72},{"x":1755315361858,"y":32.844},{"x":1755315301739,"y":32.132},{"x":1755315241591,"y":37.584},{"x":1755315181473,"y":33.818},{"x":1755315121337,"y":36.604},{"x":1755315061199,"y":32.816},{"x":1755315001073,"y":31.589},{"x":1755314940906,"y":29.701},{"x":1755314880787,"y":39.728},{"x":1755314820667,"y":43.168},{"x":1755314760539,"y":52.934},{"x":1755314700429,"y":52.796},{"x":1755314640271,"y":52.78},{"x":1755314582966,"y":39.955},{"x":1755314522856,"y":38.932},{"x":1755314462710,"y":36.332},{"x":1755314402587,"y":42.464},{"x":1755314342445,"y":44.297},{"x":1755314282333,"y":42.796},{"x":1755314222214,"y":36.683},{"x":1755314162035,"y":33.452},{"x":1755314101901,"y":31.414},{"x":1755314041744,"y":29.374},{"x":1755313981592,"y":29.276},{"x":1755313921460,"y":29.629},{"x":1755313861296,"y":33.134},{"x":1755313800280,"y":35.102},{"x":1755313743019,"y":30.839},{"x":1755313682896,"y":31.934},{"x":1755313622775,"y":34.738},{"x":1755313562655,"y":32.174},{"x":1755313502527,"y":31.361},{"x":1755313442404,"y":29.142},{"x":1755313382254,"y":28.854},{"x":1755313322092,"y":28.447},{"x":1755313261902,"y":28.976},{"x":1755313201520,"y":32.429},{"x":1755313141223,"y":42.086},{"x":1755313081081,"y":34.316},{"x":1755313020914,"y":34.066},{"x":1755312960793,"y":33.534},{"x":1755312900703,"y":33.898},{"x":1755312840580,"y":33.985},{"x":1755312780324,"y":32.915},{"x":1755312720172,"y":31.57},{"x":1755312662940,"y":29.261},{"x":1755312602820,"y":29.076},{"x":1755312542694,"y":32.838},{"x":1755312482573,"y":40.81},{"x":1755312422427,"y":39.308},{"x":1755312362298,"y":35.692},{"x":1755312302171,"y":34.402},{"x":1755312242043,"y":33.396},{"x":1755312181912,"y":29.782},{"x":1755312121783,"y":32.51},{"x":1755312061650,"y":31.378},{"x":1755312001526,"y":32.281},{"x":1755311941397,"y":29.208},{"x":1755311881265,"y":32.324},{"x":1755311821142,"y":35.965},{"x":1755311760998,"y":31.572},{"x":1755311700876,"y":32.788},{"x":1755311640745,"y":33.253},{"x":1755311580621,"y":32.957},{"x":1755311520607,"y":32.171},{"x":1755311460330,"y":35.622},{"x":1755311400354,"y":31.854},{"x":1755311342896,"y":30.822},{"x":1755311282775,"y":30.355},{"x":1755311222651,"y":30.694},{"x":1755311162526,"y":33.84},{"x":1755311102401,"y":29.941},{"x":1755311042275,"y":29.693},{"x":1755310982144,"y":31.576},{"x":1755310921992,"y":39.865},{"x":1755310861851,"y":42.544},{"x":1755310801733,"y":38.496},{"x":1755310741580,"y":36.058},{"x":1755310681465,"y":31.852},{"x":1755310621325,"y":30.936},{"x":1755310561190,"y":42.469},{"x":1755310501066,"y":45.808},{"x":1755310440912,"y":39.498},{"x":1755310380774,"y":40.837},{"x":1755310320692,"y":41.94},{"x":1755310260526,"y":32.039},{"x":1755310200414,"y":35.219},{"x":1755310140025,"y":32.376},{"x":1755310082891,"y":34.918},{"x":1755310022769,"y":31.523},{"x":1755309962647,"y":30.244},{"x":1755309902524,"y":33.046},{"x":1755309842402,"y":36.34},{"x":1755309782299,"y":30.012},{"x":1755309722161,"y":30.01},{"x":1755309662037,"y":28.45},{"x":1755309601883,"y":28.894},{"x":1755309541713,"y":35.304},{"x":1755309481580,"y":31.384},{"x":1755309421452,"y":31.829},{"x":1755309361337,"y":32.107},{"x":1755309301209,"y":31.153},{"x":1755309241086,"y":29.586},{"x":1755309180946,"y":33.816},{"x":1755309120830,"y":37.652},{"x":1755309060695,"y":37.67},{"x":1755309000578,"y":37.019},{"x":1755308940462,"y":35.27},{"x":1755308880244,"y":38.477},{"x":1755308823005,"y":34.35},{"x":1755308762874,"y":30.76},{"x":1755308702760,"y":30.509},{"x":1755308642630,"y":31.879},{"x":1755308582514,"y":30.354},{"x":1755308522384,"y":29.963},{"x":1755308462269,"y":30.826},{"x":1755308402149,"y":31.229},{"x":1755308342038,"y":30.977},{"x":1755308281881,"y":30.955},{"x":1755308221743,"y":36.557},{"x":1755308161602,"y":30.569},{"x":1755308101483,"y":33.457},{"x":1755308041358,"y":42.409},{"x":1755307981284,"y":42.553},{"x":1755307921126,"y":41.279},{"x":1755307860990,"y":42.14},{"x":1755307800877,"y":42.424},{"x":1755307740746,"y":31.74},{"x":1755307680623,"y":29.996},{"x":1755307620510,"y":30.438},{"x":1755307560418,"y":32.784},{"x":1755307500171,"y":30.775},{"x":1755307442953,"y":32.176},{"x":1755307382832,"y":31.342},{"x":1755307322706,"y":32.358},{"x":1755307262592,"y":30.763},{"x":1755307202465,"y":29.153},{"x":1755307142343,"y":29.371},{"x":1755307082217,"y":29.738},{"x":1755307022084,"y":30.998},{"x":1755306961944,"y":30.575},{"x":1755306901818,"y":40.903},{"x":1755306841675,"y":36.634},{"x":1755306781527,"y":37.288},{"x":1755306721393,"y":34.836},{"x":1755306661231,"y":36.829},{"x":1755306601074,"y":34.852},{"x":1755306540930,"y":35.092},{"x":1755306480817,"y":32.808},{"x":1755306420670,"y":29.602},{"x":1755306360569,"y":28.886},{"x":1755306300462,"y":28.681},{"x":1755306240297,"y":34.231},{"x":1755306180185,"y":29.958},{"x":1755306122938,"y":31.049},{"x":1755306062807,"y":35.362},{"x":1755306002706,"y":36.152},{"x":1755305942569,"y":37.0},{"x":1755305882433,"y":37.93},{"x":1755305822313,"y":34.3},{"x":1755305762193,"y":32.694},{"x":1755305702074,"y":30.24},{"x":1755305641928,"y":28.336},{"x":1755305581805,"y":33.312},{"x":1755305521685,"y":28.553},{"x":1755305461556,"y":30.157},{"x":1755305401431,"y":29.502},{"x":1755305341276,"y":30.978},{"x":1755305281158,"y":32.502},{"x":1755305221000,"y":34.644},{"x":1755305160873,"y":34.996},{"x":1755305100860,"y":34.542},{"x":1755305040564,"y":34.236},{"x":1755304980374,"y":33.511},{"x":1755304920302,"y":36.623},{"x":1755304860062,"y":32.09},{"x":1755304802932,"y":30.566},{"x":1755304742795,"y":33.139},{"x":1755304682674,"y":33.61},{"x":1755304622552,"y":33.916},{"x":1755304562428,"y":36.509},{"x":1755304502300,"y":37.285},{"x":1755304442179,"y":37.892},{"x":1755304382050,"y":34.69},{"x":1755304321910,"y":35.593},{"x":1755304261780,"y":38.86},{"x":1755304201665,"y":38.236},{"x":1755304141530,"y":29.882},{"x":1755304081410,"y":32.033},{"x":1755304021274,"y":31.636},{"x":1755303961141,"y":31.261},{"x":1755303900997,"y":33.056},{"x":1755303840862,"y":31.312},{"x":1755303780738,"y":29.992},{"x":1755303720619,"y":30.401},{"x":1755303660507,"y":30.392},{"x":1755303600391,"y":31.12},{"x":1755303540378,"y":38.849},{"x":1755303482966,"y":38.558},{"x":1755303422850,"y":40.229},{"x":1755303362724,"y":39.407},{"x":1755303302597,"y":40.715},{"x":1755303242488,"y":44.092},{"x":1755303182333,"y":33.558},{"x":1755303122191,"y":32.957},{"x":1755303062039,"y":33.163},{"x":1755303001875,"y":29.592},{"x":1755302941758,"y":29.597},{"x":1755302881635,"y":36.475},{"x":1755302821502,"y":32.438},{"x":1755302761362,"y":33.649},{"x":1755302701239,"y":33.203},{"x":1755302641101,"y":34.246},{"x":1755302580959,"y":32.333},{"x":1755302520833,"y":31.817},{"x":1755302460720,"y":31.871},{"x":1755302400835,"y":28.993},{"x":1755302340444,"y":29.97},{"x":1755302280295,"y":30.005},{"x":1755302220138,"y":32.935},{"x":1755302162907,"y":28.706},{"x":1755302102788,"y":34.417},{"x":1755302042658,"y":33.798},{"x":1755301982550,"y":35.249},{"x":1755301922402,"y":38.4},{"x":1755301862270,"y":36.144},{"x":1755301802175,"y":38.828},{"x":1755301742000,"y":39.222},{"x":1755301681885,"y":39.696},{"x":1755301621740,"y":43.35},{"x":1755301561614,"y":44.488},{"x":1755301501491,"y":39.32},{"x":1755301441365,"y":41.227},{"x":1755301381241,"y":40.237},{"x":1755301321121,"y":40.33},{"x":1755301260982,"y":42.976},{"x":1755301200880,"y":39.498},{"x":1755301140706,"y":36.493},{"x":1755301080553,"y":34.795},{"x":1755301020512,"y":37.994},{"x":1755300960211,"y":37.562},{"x":1755300902958,"y":37.194},{"x":1755300842845,"y":36.708},{"x":1755300782723,"y":39.774},{"x":1755300722601,"y":42.866},{"x":1755300662480,"y":40.508},{"x":1755300602347,"y":41.465},{"x":1755300542214,"y":37.678},{"x":1755300482090,"y":35.737},{"x":1755300421951,"y":37.676},{"x":1755300361827,"y":36.576},{"x":1755300301695,"y":36.445},{"x":1755300241571,"y":39.184},{"x":1755300181440,"y":39.002},{"x":1755300121318,"y":41.617},{"x":1755300061201,"y":42.343},{"x":1755300001083,"y":40.998},{"x":1755299940918,"y":43.645},{"x":1755299880794,"y":37.256},{"x":1755299820677,"y":38.866},{"x":1755299760526,"y":37.082},{"x":1755299700425,"y":37.661},{"x":1755299640317,"y":37.349},{"x":1755299582953,"y":36.917},{"x":1755299522803,"y":37.786},{"x":1755299462651,"y":36.197},{"x":1755299402515,"y":36.616},{"x":1755299342388,"y":39.096},{"x":1755299282260,"y":42.39},{"x":1755299222116,"y":41.971},{"x":1755299161984,"y":40.854},{"x":1755299101864,"y":37.445},{"x":1755299041725,"y":50.678},{"x":1755298981607,"y":36.362},{"x":1755298921482,"y":36.706},{"x":1755298861376,"y":34.243},{"x":1755298801301,"y":36.396},{"x":1755298741089,"y":38.912},{"x":1755298680952,"y":36.606},{"x":1755298620832,"y":53.452},{"x":1755298560765,"y":58.031},{"x":1755298500626,"y":41.782},{"x":1755298440480,"y":41.573},{"x":1755298380288,"y":36.158},{"x":1755298320214,"y":37.645},{"x":1755298262907,"y":33.766},{"x":1755298202777,"y":31.177},{"x":1755298142648,"y":32.605},{"x":1755298082521,"y":33.646},{"x":1755298022390,"y":37.315},{"x":1755297962263,"y":41.407},{"x":1755297902141,"y":40.262},{"x":1755297842005,"y":42.997},{"x":1755297781878,"y":39.634},{"x":1755297721769,"y":37.369},{"x":1755297661620,"y":39.631},{"x":1755297601495,"y":32.923},{"x":1755297541374,"y":30.882},{"x":1755297481249,"y":31.316},{"x":1755297421127,"y":33.704},{"x":1755297360992,"y":33.871},{"x":1755297300872,"y":32.477},{"x":1755297240741,"y":33.006},{"x":1755297180623,"y":49.586},{"x":1755297120559,"y":36.835},{"x":1755297060421,"y":45.58},{"x":1755297000307,"y":44.725},{"x":1755296940086,"y":40.216},{"x":1755296882905,"y":37.607},{"x":1755296822769,"y":39.904},{"x":1755296762636,"y":38.551},{"x":1755296702515,"y":37.084},{"x":1755296642392,"y":47.21},{"x":1755296582267,"y":33.634},{"x":1755296522147,"y":34.798},{"x":1755296462021,"y":31.727},{"x":1755296401888,"y":31.013},{"x":1755296341754,"y":37.213},{"x":1755296281634,"y":37.232},{"x":1755296221508,"y":53.765},{"x":1755296161394,"y":40.236},{"x":1755296101262,"y":43.942},{"x":1755296041136,"y":43.475},{"x":1755295980978,"y":42.096},{"x":1755295920834,"y":40.667},{"x":1755295860678,"y":40.782},{"x":1755295800580,"y":43.278},{"x":1755295740410,"y":44.534},{"x":1755295680269,"y":45.961},{"x":1755295622964,"y":40.327},{"x":1755295562839,"y":39.005},{"x":1755295502708,"y":53.863},{"x":1755295442579,"y":34.806},{"x":1755295382459,"y":42.292},{"x":1755295322334,"y":48.752},{"x":1755295262204,"y":43.33},{"x":1755295202096,"y":44.49},{"x":1755295141914,"y":45.539},{"x":1755295081783,"y":42.407},{"x":1755295021666,"y":34.372},{"x":1755294961541,"y":36.661},{"x":1755294901411,"y":36.676},{"x":1755294841285,"y":37.687},{"x":1755294781161,"y":52.378},{"x":1755294721010,"y":41.531},{"x":1755294660894,"y":39.208},{"x":1755294600969,"y":39.209},{"x":1755294540718,"y":43.874},{"x":1755294480797,"y":51.997},{"x":1755294420350,"y":46.961},{"x":1755294360310,"y":60.576},{"x":1755294302967,"y":36.761},{"x":1755294242844,"y":36.008},{"x":1755294182713,"y":36.737},{"x":1755294122591,"y":40.17},{"x":1755294062474,"y":44.158},{"x":1755294002307,"y":46.217},{"x":1755293942171,"y":41.923},{"x":1755293882047,"y":63.121},{"x":1755293821908,"y":36.732},{"x":1755293761785,"y":41.803},{"x":1755293701665,"y":51.298},{"x":1755293641539,"y":38.868},{"x":1755293581414,"y":50.09},{"x":1755293521295,"y":50.381},{"x":1755293461171,"y":32.105},{"x":1755293401036,"y":33.538},{"x":1755293340881,"y":37.309},{"x":1755293280770,"y":36.521},{"x":1755293220621,"y":45.56},{"x":1755293160518,"y":44.87},{"x":1755293100358,"y":57.697},{"x":1755293040171,"y":42.18},{"x":1755292982965,"y":44.602},{"x":1755292922840,"y":35.59},{"x":1755292862713,"y":33.421},{"x":1755292802592,"y":30.426},{"x":1755292742471,"y":42.239},{"x":1755292682342,"y":38.701},{"x":1755292622211,"y":38.354},{"x":1755292562084,"y":34.568},{"x":1755292501947,"y":40.103},{"x":1755292441837,"y":43.625},{"x":1755292381682,"y":38.706},{"x":1755292321533,"y":33.109},{"x":1755292261389,"y":31.991},{"x":1755292201204,"y":30.526},{"x":1755292141055,"y":33.582},{"x":1755292080916,"y":29.461},{"x":1755292020810,"y":32.167},{"x":1755291960684,"y":30.978},{"x":1755291900617,"y":31.283},{"x":1755291840507,"y":34.412},{"x":1755291780309,"y":39.043},{"x":1755291722953,"y":33.388},{"x":1755291662820,"y":37.196},{"x":1755291602719,"y":38.646},{"x":1755291542552,"y":46.53},{"x":1755291482429,"y":52.316},{"x":1755291422309,"y":37.801},{"x":1755291362183,"y":35.942},{"x":1755291302062,"y":37.832},{"x":1755291241913,"y":31.595},{"x":1755291181799,"y":33.852},{"x":1755291121665,"y":33.88},{"x":1755291061544,"y":34.297},{"x":1755291001420,"y":36.205},{"x":1755290941297,"y":33.818},{"x":1755290881154,"y":39.784},{"x":1755290821026,"y":42.022},{"x":1755290760889,"y":34.226},{"x":1755290700844,"y":36.293},{"x":1755290640626,"y":36.406},{"x":1755290580503,"y":32.204},{"x":1755290520306,"y":38.646},{"x":1755290460180,"y":35.201},{"x":1755290402935,"y":35.377},{"x":1755290342832,"y":34.931},{"x":1755290282696,"y":36.853},{"x":1755290222580,"y":45.277},{"x":1755290162452,"y":40.14},{"x":1755290102323,"y":34.463},{"x":1755290042195,"y":53.686},{"x":1755289982072,"y":35.855},{"x":1755289921942,"y":56.084},{"x":1755289861815,"y":35.09},{"x":1755289801701,"y":35.222},{"x":1755289741560,"y":32.611},{"x":1755289681435,"y":62.332},{"x":1755289621301,"y":48.244},{"x":1755289561178,"y":50.171},{"x":1755289501037,"y":48.665},{"x":1755289440905,"y":44.838},{"x":1755289380776,"y":44.971},{"x":1755289320639,"y":44.369},{"x":1755289260480,"y":52.316},{"x":1755289200286,"y":44.987},{"x":1755289143013,"y":40.363},{"x":1755289082891,"y":39.2},{"x":1755289022771,"y":64.657},{"x":1755288962642,"y":39.617},{"x":1755288902519,"y":39.58},{"x":1755288842399,"y":47.321},{"x":1755288782240,"y":46.882},{"x":1755288722102,"y":44.43},{"x":1755288661949,"y":52.3},{"x":1755288601792,"y":52.757},{"x":1755288541670,"y":45.77},{"x":1755288481533,"y":41.869},{"x":1755288421416,"y":37.621},{"x":1755288361300,"y":39.134},{"x":1755288301174,"y":42.329},{"x":1755288241014,"y":33.996},{"x":1755288180890,"y":47.857},{"x":1755288120767,"y":48.416},{"x":1755288060702,"y":45.968},{"x":1755288000562,"y":49.708},{"x":1755287940404,"y":50.69},{"x":1755287880285,"y":38.176},{"x":1755287822973,"y":38.628},{"x":1755287762859,"y":53.184},{"x":1755287702712,"y":39.119},{"x":1755287642584,"y":49.613},{"x":1755287582451,"y":62.689},{"x":1755287522342,"y":35.477},{"x":1755287462217,"y":34.343},{"x":1755287402098,"y":39.985},{"x":1755287341972,"y":56.082},{"x":1755287281828,"y":59.948},{"x":1755287221706,"y":61.895},{"x":1755287161585,"y":59.863},{"x":1755287101474,"y":57.854},{"x":1755287041349,"y":48.56},{"x":1755286981232,"y":44.834},{"x":1755286921106,"y":33.358},{"x":1755286860953,"y":31.861},{"x":1755286800852,"y":31.524},{"x":1755286740707,"y":31.321},{"x":1755286680611,"y":33.84},{"x":1755286620437,"y":50.143},{"x":1755286560296,"y":44.946},{"x":1755286502967,"y":48.108},{"x":1755286442847,"y":45.191},{"x":1755286382727,"y":47.8},{"x":1755286322608,"y":38.335},{"x":1755286262481,"y":35.436},{"x":1755286202360,"y":42.838},{"x":1755286142236,"y":39.086},{"x":1755286082108,"y":40.453},{"x":1755286021971,"y":50.515},{"x":1755285961850,"y":35.634},{"x":1755285901727,"y":35.341},{"x":1755285841591,"y":39.557},{"x":1755285781468,"y":41.333},{"x":1755285721337,"y":39.998},{"x":1755285661192,"y":64.264},{"x":1755285601066,"y":66.443},{"x":1755285540913,"y":67.394},{"x":1755285480785,"y":61.939},{"x":1755285420647,"y":74.226},{"x":1755285360564,"y":41.936},{"x":1755285300478,"y":40.543},{"x":1755285240242,"y":35.43},{"x":1755285182906,"y":39.434},{"x":1755285122761,"y":45.869},{"x":1755285062582,"y":46.249},{"x":1755285002430,"y":47.632},{"x":1755284942306,"y":53.503},{"x":1755284882187,"y":53.988},{"x":1755284822060,"y":38.358},{"x":1755284761926,"y":43.115},{"x":1755284701800,"y":39.097},{"x":1755284641678,"y":59.803},{"x":1755284581551,"y":49.22},{"x":1755284521429,"y":48.448},{"x":1755284461310,"y":45.161},{"x":1755284401217,"y":45.444},{"x":1755284340982,"y":37.592},{"x":1755284280856,"y":40.842},{"x":1755284220725,"y":42.737},{"x":1755284160625,"y":44.906},{"x":1755284100479,"y":48.233},{"x":1755284040296,"y":45.636},{"x":1755283980239,"y":48.685},{"x":1755283922937,"y":47.999},{"x":1755283862807,"y":49.156},{"x":1755283802679,"y":37.06},{"x":1755283742565,"y":50.424},{"x":1755283682432,"y":47.824},{"x":1755283622292,"y":56.837},{"x":1755283562169,"y":56.614},{"x":1755283502052,"y":61.23},{"x":1755283441885,"y":48.984},{"x":1755283381755,"y":46.514},{"x":1755283321640,"y":54.006},{"x":1755283261505,"y":35.746},{"x":1755283201376,"y":48.017},{"x":1755283141246,"y":48.044},{"x":1755283081123,"y":54.394},{"x":1755283020981,"y":54.433},{"x":1755282960851,"y":47.993},{"x":1755282900747,"y":54.264},{"x":1755282840599,"y":44.59},{"x":1755282780568,"y":39.389},{"x":1755282720382,"y":41.256},{"x":1755282660252,"y":51.451},{"x":1755282602936,"y":54.978},{"x":1755282542809,"y":49.123},{"x":1755282482684,"y":46.938},{"x":1755282422556,"y":52.955},{"x":1755282362426,"y":45.798},{"x":1755282302292,"y":45.058},{"x":1755282242169,"y":39.448},{"x":1755282182044,"y":41.785},{"x":1755282121909,"y":63.872},{"x":1755282061783,"y":55.696},{"x":1755282001689,"y":49.666},{"x":1755281941545,"y":47.807},{"x":1755281881419,"y":56.374},{"x":1755281821305,"y":66.335},{"x":1755281761155,"y":63.53},{"x":1755281701020,"y":64.102},{"x":1755281640881,"y":47.437},{"x":1755281580778,"y":48.601},{"x":1755281520651,"y":42.997},{"x":1755281460447,"y":39.241},{"x":1755281400332,"y":42.256},{"x":1755281340233,"y":49.652},{"x":1755281282903,"y":49.225},{"x":1755281222785,"y":51.215},{"x":1755281162660,"y":52.382},{"x":1755281102529,"y":50.25},{"x":1755281042396,"y":39.08},{"x":1755280982278,"y":46.225},{"x":1755280922157,"y":39.822},{"x":1755280862018,"y":40.332},{"x":1755280801831,"y":54.083},{"x":1755280741622,"y":49.986},{"x":1755280681502,"y":49.59},{"x":1755280621374,"y":44.116},{"x":1755280561244,"y":43.308},{"x":1755280501121,"y":56.05},{"x":1755280440984,"y":70.787},{"x":1755280380873,"y":76.156},{"x":1755280320741,"y":73.412},{"x":1755280260626,"y":71.29},{"x":1755280200500,"y":61.235},{"x":1755280140298,"y":48.558},{"x":1755280083003,"y":45.434},{"x":1755280022885,"y":50.587},{"x":1755279962750,"y":61.313},{"x":1755279902640,"y":69.202},{"x":1755279842502,"y":67.072},{"x":1755279782377,"y":68.512},{"x":1755279722236,"y":86.176},{"x":1755279662124,"y":59.879},{"x":1755279601950,"y":50.03},{"x":1755279541844,"y":51.943},{"x":1755279481701,"y":53.701},{"x":1755279421575,"y":56.252},{"x":1755279361446,"y":52.559},{"x":1755279301321,"y":58.97},{"x":1755279241191,"y":54.371},{"x":1755279181061,"y":45.768},{"x":1755279120930,"y":46.193},{"x":1755279060794,"y":52.448},{"x":1755279000719,"y":50.66},{"x":1755278940471,"y":47.042},{"x":1755278880315,"y":46.777},{"x":1755278820074,"y":55.398},{"x":1755278762904,"y":64.327},{"x":1755278702787,"y":63.073},{"x":1755278642656,"y":75.775},{"x":1755278582547,"y":73.732},{"x":1755278522411,"y":74.956},{"x":1755278462292,"y":62.87},{"x":1755278402164,"y":60.542},{"x":1755278342032,"y":50.779},{"x":1755278281908,"y":46.72},{"x":1755278221770,"y":51.518},{"x":1755278161639,"y":60.414},{"x":1755278101512,"y":62.177},{"x":1755278041388,"y":61.283},{"x":1755277981241,"y":60.551},{"x":1755277921094,"y":64.547},{"x":1755277860919,"y":60.715},{"x":1755277800782,"y":54.223},{"x":1755277740624,"y":56.947},{"x":1755277680507,"y":57.971},{"x":1755277620335,"y":58.409},{"x":1755277560318,"y":53.43},{"x":1755277502959,"y":53.506},{"x":1755277442837,"y":49.272},{"x":1755277382717,"y":37.805},{"x":1755277322584,"y":60.073},{"x":1755277262458,"y":60.302},{"x":1755277202361,"y":62.166},{"x":1755277142199,"y":57.656},{"x":1755277082075,"y":61.866},{"x":1755277021939,"y":41.196},{"x":1755276961809,"y":37.156},{"x":1755276901698,"y":33.724},{"x":1755276841557,"y":31.319},{"x":1755276781433,"y":44.864},{"x":1755276721297,"y":49.358},{"x":1755276661190,"y":60.578},{"x":1755276601016,"y":53.13},{"x":1755276540873,"y":46.543},{"x":1755276480731,"y":49.447},{"x":1755276420539,"y":45.246},{"x":1755276360364,"y":30.307},{"x":1755276300237,"y":33.419},{"x":1755276240110,"y":34.729},{"x":1755276182895,"y":40.126},{"x":1755276122789,"y":31.02},{"x":1755276062666,"y":31.231},{"x":1755276002543,"y":37.656},{"x":1755275942416,"y":47.828},{"x":1755275882290,"y":52.142},{"x":1755275822166,"y":49.562},{"x":1755275762033,"y":57.391},{"x":1755275701904,"y":38.152},{"x":1755275641779,"y":34.5},{"x":1755275581656,"y":40.982},{"x":1755275521533,"y":46.452},{"x":1755275461411,"y":49.604},{"x":1755275401322,"y":49.663},{"x":1755275341139,"y":50.776},{"x":1755275281004,"y":48.856},{"x":1755275220888,"y":43.678},{"x":1755275160759,"y":41.042},{"x":1755275100657,"y":44.395},{"x":1755275040684,"y":43.234},{"x":1755274980574,"y":43.627},{"x":1755274920339,"y":31.072},{"x":1755274862974,"y":31.519},{"x":1755274802853,"y":27.342},{"x":1755274742662,"y":33.109},{"x":1755274682542,"y":40.931},{"x":1755274622422,"y":56.143},{"x":1755274562287,"y":50.962},{"x":1755274502160,"y":38.032},{"x":1755274442048,"y":35.026},{"x":1755274381896,"y":44.638},{"x":1755274321716,"y":30.532},{"x":1755274261579,"y":38.083},{"x":1755274201432,"y":33.342},{"x":1755274141306,"y":37.115},{"x":1755274081179,"y":40.823},{"x":1755274021052,"y":34.447},{"x":1755273960930,"y":59.35},{"x":1755273900806,"y":50.088},{"x":1755273840678,"y":46.454},{"x":1755273780618,"y":45.116},{"x":1755273720482,"y":33.798},{"x":1755273660215,"y":28.187},{"x":1755273602977,"y":28.199},{"x":1755273542832,"y":28.562},{"x":1755273482700,"y":33.265},{"x":1755273422592,"y":33.848},{"x":1755273362454,"y":36.028},{"x":1755273302332,"y":39.022},{"x":1755273242202,"y":39.826},{"x":1755273182070,"y":37.122},{"x":1755273121939,"y":35.414},{"x":1755273061809,"y":26.287},{"x":1755273001702,"y":27.331},{"x":1755272941556,"y":36.502},{"x":1755272881423,"y":47.284},{"x":1755272821300,"y":44.672},{"x":1755272761178,"y":47.23},{"x":1755272701079,"y":43.846},{"x":1755272640887,"y":31.848},{"x":1755272580764,"y":47.717},{"x":1755272520650,"y":33.218},{"x":1755272460520,"y":34.438},{"x":1755272400407,"y":31.434},{"x":1755272340321,"y":32.765},{"x":1755272282935,"y":27.193},{"x":1755272222807,"y":21.036},{"x":1755272162687,"y":34.386},{"x":1755272102618,"y":31.99},{"x":1755272042417,"y":35.794},{"x":1755271982292,"y":61.711},{"x":1755271922168,"y":47.789},{"x":1755271862039,"y":35.171},{"x":1755271801908,"y":38.579},{"x":1755271741763,"y":40.213},{"x":1755271681640,"y":35.548},{"x":1755271621492,"y":30.763},{"x":1755271561372,"y":33.064},{"x":1755271501241,"y":39.702},{"x":1755271441116,"y":44.118},{"x":1755271380967,"y":42.688},{"x":1755271320856,"y":28.805},{"x":1755271260728,"y":41.916},{"x":1755271200653,"y":42.6},{"x":1755271140413,"y":59.303},{"x":1755271080315,"y":65.281},{"x":1755271020226,"y":70.262},{"x":1755270962928,"y":67.799},{"x":1755270902823,"y":67.412},{"x":1755270842713,"y":53.24},{"x":1755270782545,"y":58.453},{"x":1755270722442,"y":55.561},{"x":1755270662235,"y":55.853},{"x":1755270602086,"y":49.66},{"x":1755270541941,"y":50.521},{"x":1755270481821,"y":72.238},{"x":1755270421702,"y":45.521},{"x":1755270361579,"y":45.34},{"x":1755270301460,"y":54.361},{"x":1755270241340,"y":55.662},{"x":1755270181218,"y":55.618},{"x":1755270121091,"y":66.737},{"x":1755270060952,"y":70.04},{"x":1755270000912,"y":50.675},{"x":1755269940689,"y":51.332},{"x":1755269880599,"y":49.919},{"x":1755269820456,"y":49.121},{"x":1755269760309,"y":62.304},{"x":1755269702977,"y":52.364},{"x":1755269642852,"y":45.451},{"x":1755269582716,"y":43.912},{"x":1755269522596,"y":56.627},{"x":1755269462476,"y":58.512},{"x":1755269402379,"y":56.096},{"x":1755269342232,"y":52.681},{"x":1755269282106,"y":66.013},{"x":1755269221970,"y":86.458},{"x":1755269161852,"y":35.064},{"x":1755269101730,"y":34.351},{"x":1755269041604,"y":48.924},{"x":1755268981487,"y":47.563},{"x":1755268921369,"y":46.337},{"x":1755268861249,"y":52.406},{"x":1755268801157,"y":56.567},{"x":1755268740969,"y":44.491},{"x":1755268680857,"y":55.422},{"x":1755268620733,"y":56.165},{"x":1755268560633,"y":44.35},{"x":1755268500526,"y":46.688},{"x":1755268440321,"y":44.489},{"x":1755268383015,"y":43.384},{"x":1755268322894,"y":39.33},{"x":1755268262771,"y":39.576},{"x":1755268202640,"y":41.184},{"x":1755268142507,"y":41.323},{"x":1755268082381,"y":42.38},{"x":1755268022256,"y":46.104},{"x":1755267962133,"y":43.823},{"x":1755267902006,"y":45.137},{"x":1755267841869,"y":29.898},{"x":1755267781738,"y":25.384},{"x":1755267721613,"y":26.674},{"x":1755267661486,"y":31.465},{"x":1755267601364,"y":33.712},{"x":1755267541234,"y":32.426},{"x":1755267481094,"y":32.5},{"x":1755267420975,"y":29.566},{"x":1755267360832,"y":50.676},{"x":1755267300699,"y":48.817},{"x":1755267240522,"y":51.098},{"x":1755267180430,"y":50.921},{"x":1755267120212,"y":46.788},{"x":1755267062900,"y":24.994},{"x":1755267002749,"y":29.263},{"x":1755266942622,"y":44.198},{"x":1755266882514,"y":40.693},{"x":1755266822392,"y":43.762},{"x":1755266762270,"y":45.361},{"x":1755266702141,"y":46.458},{"x":1755266642023,"y":38.73},{"x":1755266581867,"y":37.846},{"x":1755266521732,"y":38.807},{"x":1755266461618,"y":43.514},{"x":1755266401608,"y":40.459},{"x":1755266341367,"y":35.936},{"x":1755266281246,"y":39.6},{"x":1755266221112,"y":40.476},{"x":1755266160936,"y":34.364},{"x":1755266100819,"y":29.363},{"x":1755266040691,"y":48.346},{"x":1755265980602,"y":41.762},{"x":1755265920550,"y":55.615},{"x":1755265860345,"y":50.576},{"x":1755265800182,"y":50.62},{"x":1755265742942,"y":55.22},{"x":1755265682803,"y":38.555},{"x":1755265622678,"y":37.606},{"x":1755265562565,"y":41.56},{"x":1755265502431,"y":42.253},{"x":1755265442319,"y":43.934},{"x":1755265382180,"y":29.777},{"x":1755265322060,"y":27.024},{"x":1755265261910,"y":66.09},{"x":1755265201787,"y":50.796},{"x":1755265141660,"y":51.776},{"x":1755265081532,"y":47.635},{"x":1755265021402,"y":49.784},{"x":1755264961272,"y":37.464},{"x":1755264901151,"y":39.466},{"x":1755264841000,"y":39.028},{"x":1755264780871,"y":39.38},{"x":1755264720754,"y":39.427},{"x":1755264660612,"y":36.863},{"x":1755264600528,"y":29.552},{"x":1755264540380,"y":29.128},{"x":1755264480231,"y":38.501},{"x":1755264422955,"y":43.043},{"x":1755264362824,"y":52.674},{"x":1755264302703,"y":59.038},{"x":1755264242584,"y":53.212},{"x":1755264182460,"y":61.673},{"x":1755264122338,"y":41.282},{"x":1755264062213,"y":42.648},{"x":1755264002090,"y":39.894},{"x":1755263941951,"y":38.995},{"x":1755263881821,"y":40.817},{"x":1755263821698,"y":39.221},{"x":1755263761558,"y":39.644},{"x":1755263701440,"y":26.465},{"x":1755263641309,"y":24.628},{"x":1755263581190,"y":24.35},{"x":1755263521015,"y":46.574},{"x":1755263460890,"y":51.119},{"x":1755263400781,"y":49.056},{"x":1755263340590,"y":49.381},{"x":1755263280503,"y":37.608},{"x":1755263220350,"y":42.065},{"x":1755263160217,"y":59.106},{"x":1755263102952,"y":55.772},{"x":1755263042818,"y":64.426},{"x":1755262982681,"y":65.813},{"x":1755262922552,"y":52.531},{"x":1755262862418,"y":55.171},{"x":1755262802346,"y":43.054},{"x":1755262742143,"y":50.519},{"x":1755262682005,"y":43.373},{"x":1755262621881,"y":60.151},{"x":1755262561762,"y":68.131},{"x":1755262501640,"y":50.437},{"x":1755262441513,"y":48.073},{"x":1755262381390,"y":38.522},{"x":1755262321279,"y":42.352},{"x":1755262261124,"y":40.694},{"x":1755262200922,"y":36.667},{"x":1755262140777,"y":49.818},{"x":1755262080660,"y":35.909},{"x":1755262020552,"y":39.067},{"x":1755261960517,"y":25.532},{"x":1755261900224,"y":32.06},{"x":1755261842980,"y":24.961},{"x":1755261782862,"y":51.246},{"x":1755261722739,"y":49.949},{"x":1755261662607,"y":53.321},{"x":1755261602490,"y":57.414},{"x":1755261542362,"y":51.33},{"x":1755261482253,"y":45.696},{"x":1755261422101,"y":51.3},{"x":1755261361960,"y":42.617},{"x":1755261301840,"y":39.426},{"x":1755261241715,"y":38.57},{"x":1755261181595,"y":35.076},{"x":1755261121470,"y":40.68},{"x":1755261061346,"y":22.909},{"x":1755261001260,"y":30.8},{"x":1755260941098,"y":41.401},{"x":1755260880953,"y":51.61},{"x":1755260820829,"y":47.929},{"x":1755260760709,"y":59.861},{"x":1755260700626,"y":73.674},{"x":1755260640493,"y":48.569},{"x":1755260580368,"y":60.509},{"x":1755260520198,"y":52.231},{"x":1755260462932,"y":43.913},{"x":1755260402814,"y":44.13},{"x":1755260342690,"y":56.779},{"x":1755260282562,"y":43.496},{"x":1755260222448,"y":35.495},{"x":1755260162318,"y":27.545},{"x":1755260102193,"y":29.531},{"x":1755260042055,"y":34.266},{"x":1755259981868,"y":45.01},{"x":1755259921698,"y":54.012},{"x":1755259861570,"y":49.396},{"x":1755259801367,"y":51.962},{"x":1755259741263,"y":46.704},{"x":1755259681107,"y":39.772},{"x":1755259620980,"y":38.684},{"x":1755259560836,"y":37.674},{"x":1755259500725,"y":35.897},{"x":1755259440565,"y":36.096},{"x":1755259380512,"y":28.862},{"x":1755259320251,"y":29.603},{"x":1755259262973,"y":23.996},{"x":1755259202861,"y":21.138},{"x":1755259142709,"y":29.249},{"x":1755259082587,"y":33.598},{"x":1755259022464,"y":39.677},{"x":1755258962330,"y":50.515},{"x":1755258902212,"y":42.564},{"x":1755258842069,"y":35.711},{"x":1755258781948,"y":29.314},{"x":1755258721808,"y":40.139},{"x":1755258661686,"y":32.206},{"x":1755258601568,"y":20.262},{"x":1755258541429,"y":19.062},{"x":1755258481308,"y":16.355},{"x":1755258421177,"y":39.263},{"x":1755258361053,"y":33.702},{"x":1755258301052,"y":32.993},{"x":1755258240791,"y":33.138},{"x":1755258180639,"y":35.357},{"x":1755258120534,"y":13.476},{"x":1755258060374,"y":22.696},{"x":1755258000219,"y":29.422},{"x":1755257942992,"y":19.805},{"x":1755257882867,"y":22.38},{"x":1755257822744,"y":19.678},{"x":1755257762623,"y":34.672},{"x":1755257702490,"y":23.664},{"x":1755257642363,"y":26.929},{"x":1755257582230,"y":19.136},{"x":1755257522108,"y":19.475},{"x":1755257461955,"y":7.301},{"x":1755257401832,"y":12.468},{"x":1755257341700,"y":24.414},{"x":1755257281572,"y":25.363},{"x":1755257221444,"y":36.57},{"x":1755257161323,"y":35.941},{"x":1755257101195,"y":44.302},{"x":1755257041071,"y":37.208},{"x":1755256980913,"y":30.611},{"x":1755256920790,"y":34.226},{"x":1755256860673,"y":27.428},{"x":1755256800611,"y":28.998},{"x":1755256740421,"y":31.124},{"x":1755256680224,"y":21.235},{"x":1755256622955,"y":27.284},{"x":1755256562831,"y":19.121},{"x":1755256502711,"y":13.616},{"x":1755256442606,"y":7.957},{"x":1755256382432,"y":6.919},{"x":1755256322290,"y":19.559},{"x":1755256262128,"y":30.146},{"x":1755256201971,"y":53.986},{"x":1755256141844,"y":37.651},{"x":1755256081715,"y":31.804},{"x":1755256021593,"y":26.185},{"x":1755255961467,"y":24.935},{"x":1755255901342,"y":13.265},{"x":1755255841238,"y":13.609},{"x":1755255781094,"y":18.27},{"x":1755255720952,"y":14.191},{"x":1755255660826,"y":41.477},{"x":1755255600726,"y":44.412},{"x":1755255540583,"y":41.107},{"x":1755255480497,"y":37.094},{"x":1755255420310,"y":34.084},{"x":1755255362961,"y":8.62},{"x":1755255302833,"y":13.022},{"x":1755255242702,"y":41.308},{"x":1755255182581,"y":30.12},{"x":1755255122455,"y":38.284},{"x":1755255062316,"y":39.685},{"x":1755255002191,"y":46.601},{"x":1755254942062,"y":46.523},{"x":1755254881928,"y":28.766},{"x":1755254821800,"y":21.589},{"x":1755254761672,"y":26.348},{"x":1755254701553,"y":11.084},{"x":1755254641427,"y":16.036},{"x":1755254581297,"y":18.103},{"x":1755254521167,"y":30.515},{"x":1755254461017,"y":36.379},{"x":1755254400948,"y":39.74},{"x":1755254340730,"y":46.36},{"x":1755254280631,"y":48.305},{"x":1755254220515,"y":32.336},{"x":1755254160493,"y":36.623},{"x":1755254102995,"y":42.131},{"x":1755254042876,"y":35.005},{"x":1755253982753,"y":31.492},{"x":1755253922626,"y":36.374},{"x":1755253862509,"y":41.128},{"x":1755253802393,"y":53.017},{"x":1755253742263,"y":33.07},{"x":1755253682171,"y":36.402},{"x":1755253622006,"y":33.781},{"x":1755253561880,"y":17.682},{"x":1755253501740,"y":10.958},{"x":1755253441621,"y":4.328},{"x":1755253381498,"y":21.092},{"x":1755253321381,"y":22.597},{"x":1755253261247,"y":35.422},{"x":1755253201125,"y":38.513},{"x":1755253140979,"y":33.386},{"x":1755253080854,"y":37.888},{"x":1755253020726,"y":24.572},{"x":1755252960628,"y":26.124},{"x":1755252900330,"y":19.146},{"x":1755252840233,"y":28.622},{"x":1755252782938,"y":24.184},{"x":1755252722796,"y":24.36},{"x":1755252662633,"y":19.273},{"x":1755252602490,"y":21.71},{"x":1755252542359,"y":16.025},{"x":1755252482230,"y":12.028},{"x":1755252422103,"y":14.6},{"x":1755252361960,"y":36.286},{"x":1755252301826,"y":42.611},{"x":1755252241695,"y":48.93},{"x":1755252181562,"y":46.088},{"x":1755252121441,"y":47.544},{"x":1755252061311,"y":30.179},{"x":1755252001223,"y":25.15},{"x":1755251941008,"y":32.921},{"x":1755251880861,"y":33.853},{"x":1755251820742,"y":33.234},{"x":1755251760637,"y":27.323},{"x":1755251700529,"y":28.086},{"x":1755251640340,"y":32.717},{"x":1755251580247,"y":30.388},{"x":1755251522948,"y":32.65},{"x":1755251462828,"y":22.681},{"x":1755251402705,"y":22.927},{"x":1755251342580,"y":20.047},{"x":1755251282457,"y":27.568},{"x":1755251222354,"y":31.558},{"x":1755251162194,"y":37.778},{"x":1755251102069,"y":46.949},{"x":1755251041945,"y":44.911},{"x":1755250981820,"y":43.728},{"x":1755250921698,"y":39.344},{"x":1755250861548,"y":29.228},{"x":1755250801431,"y":29.412},{"x":1755250741298,"y":24.839},{"x":1755250681162,"y":24.702},{"x":1755250621036,"y":21.575},{"x":1755250560900,"y":15.894},{"x":1755250500801,"y":12.961},{"x":1755250440663,"y":18.222},{"x":1755250380558,"y":13.927},{"x":1755250320393,"y":14.598},{"x":1755250260397,"y":29.131},{"x":1755250202979,"y":37.254},{"x":1755250142846,"y":37.856},{"x":1755250082728,"y":37.4},{"x":1755250022597,"y":39.136},{"x":1755249962465,"y":23.749},{"x":1755249902351,"y":12.715},{"x":1755249842216,"y":18.041},{"x":1755249782091,"y":32.752},{"x":1755249721938,"y":33.245},{"x":1755249661808,"y":34.042},{"x":1755249601681,"y":35.51},{"x":1755249541547,"y":32.798},{"x":1755249481414,"y":29.364},{"x":1755249421301,"y":29.549},{"x":1755249361175,"y":45.499},{"x":1755249301031,"y":46.093},{"x":1755249240917,"y":36.002},{"x":1755249180768,"y":28.692},{"x":1755249120647,"y":22.531},{"x":1755249060537,"y":37.846},{"x":1755249000264,"y":32.6},{"x":1755248940088,"y":36.282},{"x":1755248882904,"y":58.331},{"x":1755248822775,"y":45.557},{"x":1755248762650,"y":29.622},{"x":1755248702536,"y":35.44},{"x":1755248642399,"y":35.9},{"x":1755248582267,"y":33.456},{"x":1755248522144,"y":37.058},{"x":1755248462014,"y":21.217},{"x":1755248401760,"y":20.52},{"x":1755248341560,"y":20.158},{"x":1755248281435,"y":20.44},{"x":1755248221309,"y":48.32},{"x":1755248161186,"y":44.674},{"x":1755248101065,"y":43.658},{"x":1755248040927,"y":49.524},{"x":1755247980794,"y":53.377},{"x":1755247920704,"y":20.886},{"x":1755247860551,"y":24.632},{"x":1755247800460,"y":29.491},{"x":1755247740299,"y":27.494},{"x":1755247682976,"y":30.778},{"x":1755247622847,"y":33.072},{"x":1755247562726,"y":29.366},{"x":1755247502605,"y":33.094},{"x":1755247442471,"y":32.195},{"x":1755247382343,"y":32.027},{"x":1755247322225,"y":35.002},{"x":1755247262089,"y":25.034},{"x":1755247201953,"y":21.336},{"x":1755247141829,"y":23.651},{"x":1755247081697,"y":24.059},{"x":1755247021572,"y":31.408},{"x":1755246961447,"y":37.604},{"x":1755246901326,"y":51.299},{"x":1755246841207,"y":48.403},{"x":1755246781067,"y":65.899},{"x":1755246720923,"y":47.656},{"x":1755246660798,"y":37.8},{"x":1755246600731,"y":28.127},{"x":1755246540551,"y":52.832},{"x":1755246480375,"y":43.236},{"x":1755246420293,"y":39.732},{"x":1755246362965,"y":53.603},{"x":1755246302841,"y":37.878},{"x":1755246242722,"y":40.384},{"x":1755246182593,"y":38.491},{"x":1755246122473,"y":35.39},{"x":1755246062351,"y":19.699},{"x":1755246002228,"y":22.853},{"x":1755245942098,"y":23.897},{"x":1755245881962,"y":20.447},{"x":1755245821843,"y":35.104},{"x":1755245761707,"y":32.822},{"x":1755245701581,"y":38.482},{"x":1755245641467,"y":42.557},{"x":1755245581300,"y":44.527},{"x":1755245521158,"y":33.799},{"x":1755245460987,"y":37.93},{"x":1755245400852,"y":40.402},{"x":1755245340676,"y":38.36},{"x":1755245280561,"y":36.994},{"x":1755245220480,"y":34.884},{"x":1755245160316,"y":40.48},{"x":1755245102975,"y":39.668},{"x":1755245042858,"y":19.182},{"x":1755244982732,"y":23.248},{"x":1755244922613,"y":41.706},{"x":1755244862472,"y":35.338},{"x":1755244802328,"y":37.424},{"x":1755244742158,"y":36.994},{"x":1755244682011,"y":37.614},{"x":1755244621875,"y":31.83},{"x":1755244561739,"y":24.356},{"x":1755244501626,"y":23.441},{"x":1755244441500,"y":28.654},{"x":1755244381377,"y":32.716},{"x":1755244321252,"y":31.603},{"x":1755244261116,"y":42.806},{"x":1755244200974,"y":63.953},{"x":1755244140849,"y":44.095},{"x":1755244080735,"y":41.666},{"x":1755244020608,"y":51.145},{"x":1755243960552,"y":36.9},{"x":1755243900421,"y":43.164},{"x":1755243840230,"y":46.052},{"x":1755243782958,"y":39.539},{"x":1755243722841,"y":30.518},{"x":1755243662720,"y":26.762},{"x":1755243602588,"y":39.743},{"x":1755243542463,"y":40.517},{"x":1755243482343,"y":38.472},{"x":1755243422226,"y":33.06},{"x":1755243362100,"y":34.105},{"x":1755243301957,"y":53.23},{"x":1755243241832,"y":31.561},{"x":1755243181705,"y":30.582},{"x":1755243121585,"y":28.01},{"x":1755243061461,"y":24.541},{"x":1755243001368,"y":40.939},{"x":1755242941201,"y":34.864},{"x":1755242881046,"y":43.734},{"x":1755242820905,"y":48.221},{"x":1755242760761,"y":51.484},{"x":1755242700657,"y":47.68},{"x":1755242640564,"y":34.847},{"x":1755242580441,"y":23.948},{"x":1755242520210,"y":24.1},{"x":1755242462973,"y":37.844},{"x":1755242402857,"y":44.833},{"x":1755242342735,"y":46.664},{"x":1755242282614,"y":39.16},{"x":1755242222494,"y":38.926},{"x":1755242162365,"y":38.022},{"x":1755242102250,"y":31.025},{"x":1755242042112,"y":20.219},{"x":1755241981949,"y":24.426},{"x":1755241921788,"y":27.539},{"x":1755241861628,"y":34.132},{"x":1755241801471,"y":34.176},{"x":1755241741348,"y":46.612},{"x":1755241681229,"y":48.257},{"x":1755241621088,"y":55.772},{"x":1755241560953,"y":36.509},{"x":1755241500850,"y":47.491},{"x":1755241440728,"y":35.921},{"x":1755241380618,"y":34.247},{"x":1755241320494,"y":28.265},{"x":1755241260397,"y":31.01},{"x":1755241200212,"y":28.741},{"x":1755241142920,"y":28.111},{"x":1755241082794,"y":32.392},{"x":1755241022681,"y":31.32},{"x":1755240962538,"y":35.142},{"x":1755240902425,"y":33.142},{"x":1755240842298,"y":48.164},{"x":1755240782155,"y":46.066},{"x":1755240722036,"y":49.645},{"x":1755240661903,"y":47.944},{"x":1755240601783,"y":47.251},{"x":1755240541675,"y":25.91},{"x":1755240481549,"y":28.062},{"x":1755240421413,"y":38.72},{"x":1755240361289,"y":37.646},{"x":1755240301179,"y":41.452},{"x":1755240240956,"y":40.98},{"x":1755240180819,"y":44.545},{"x":1755240120689,"y":38.431},{"x":1755240060545,"y":39.036},{"x":1755240000460,"y":40.507},{"x":1755239940239,"y":35.684},{"x":1755239882955,"y":38.605},{"x":1755239822842,"y":27.046},{"x":1755239762734,"y":30.02},{"x":1755239702595,"y":31.693},{"x":1755239642477,"y":33.736},{"x":1755239582346,"y":39.017},{"x":1755239522222,"y":32.897},{"x":1755239462099,"y":29.65},{"x":1755239401964,"y":38.508},{"x":1755239341836,"y":53.374},{"x":1755239281698,"y":63.53},{"x":1755239221573,"y":51.474},{"x":1755239161444,"y":52.949},{"x":1755239101313,"y":39.097},{"x":1755239041187,"y":31.46},{"x":1755238981052,"y":38.873},{"x":1755238920921,"y":38.766},{"x":1755238860791,"y":53.636},{"x":1755238800708,"y":42.349},{"x":1755238740554,"y":62.024},{"x":1755238680377,"y":43.385},{"x":1755238620189,"y":65.342},{"x":1755238562919,"y":44.837},{"x":1755238502774,"y":59.39},{"x":1755238442642,"y":40.904},{"x":1755238382503,"y":50.801},{"x":1755238322356,"y":25.889},{"x":1755238262213,"y":25.67},{"x":1755238202030,"y":41.098},{"x":1755238141898,"y":40.332},{"x":1755238081775,"y":50.192},{"x":1755238021658,"y":32.358},{"x":1755237961531,"y":28.53},{"x":1755237901415,"y":28.205},{"x":1755237841290,"y":36.322},{"x":1755237781167,"y":46.886},{"x":1755237721036,"y":46.388},{"x":1755237660910,"y":46.232},{"x":1755237600900,"y":47.167},{"x":1755237540649,"y":35.618},{"x":1755237480532,"y":29.497},{"x":1755237420411,"y":29.474},{"x":1755237360290,"y":39.761},{"x":1755237302986,"y":39.533},{"x":1755237242859,"y":40.304},{"x":1755237182741,"y":40.058},{"x":1755237122639,"y":41.465},{"x":1755237062490,"y":36.584},{"x":1755237002371,"y":38.12},{"x":1755236942240,"y":26.392},{"x":1755236882120,"y":30.73},{"x":1755236821977,"y":30.416},{"x":1755236761845,"y":25.937},{"x":1755236701730,"y":29.195},{"x":1755236641607,"y":27.094},{"x":1755236581481,"y":26.626},{"x":1755236521352,"y":27.196},{"x":1755236461229,"y":29.549},{"x":1755236401095,"y":24.93},{"x":1755236340983,"y":46.429},{"x":1755236280826,"y":49.025},{"x":1755236220715,"y":46.399},{"x":1755236160624,"y":50.86},{"x":1755236100497,"y":48.83},{"x":1755236040306,"y":30.5},{"x":1755235980027,"y":31.368},{"x":1755235922896,"y":29.311},{"x":1755235862776,"y":39.636},{"x":1755235802640,"y":39.815},{"x":1755235742521,"y":35.076},{"x":1755235682372,"y":36.618},{"x":1755235622257,"y":36.482},{"x":1755235562130,"y":38.327},{"x":1755235501996,"y":33.498},{"x":1755235441868,"y":30.734},{"x":1755235381753,"y":26.296},{"x":1755235321633,"y":37.784},{"x":1755235261510,"y":40.883},{"x":1755235201366,"y":40.805},{"x":1755235141239,"y":39.611},{"x":1755235081117,"y":37.818},{"x":1755235020981,"y":27.732},{"x":1755234960836,"y":26.159},{"x":1755234900874,"y":27.113},{"x":1755234840591,"y":27.211},{"x":1755234780434,"y":32.641},{"x":1755234720314,"y":47.548},{"x":1755234662968,"y":45.505},{"x":1755234602817,"y":44.503},{"x":1755234542695,"y":55.877},{"x":1755234482567,"y":63.007},{"x":1755234422436,"y":48.185},{"x":1755234362300,"y":44.73},{"x":1755234302178,"y":41.563},{"x":1755234242059,"y":41.359},{"x":1755234181922,"y":32.023},{"x":1755234121793,"y":31.691},{"x":1755234061671,"y":46.841},{"x":1755234001617,"y":53.479},{"x":1755233941400,"y":53.479},{"x":1755233881282,"y":50.116},{"x":1755233821161,"y":53.298},{"x":1755233761018,"y":38.268},{"x":1755233700898,"y":51.212},{"x":1755233640757,"y":51.11},{"x":1755233580632,"y":48.733},{"x":1755233520534,"y":65.82},{"x":1755233460459,"y":65.795},{"x":1755233400217,"y":68.658},{"x":1755233342949,"y":55.364},{"x":1755233282825,"y":53.18},{"x":1755233222697,"y":50.125},{"x":1755233162566,"y":30.679},{"x":1755233102448,"y":30.359},{"x":1755233042321,"y":30.241},{"x":1755232982194,"y":31.352},{"x":1755232922076,"y":28.711},{"x":1755232861939,"y":33.396},{"x":1755232801819,"y":31.423},{"x":1755232741700,"y":30.523},{"x":1755232681576,"y":30.229},{"x":1755232621447,"y":29.956},{"x":1755232561317,"y":32.916},{"x":1755232501213,"y":35.114},{"x":1755232441067,"y":35.564},{"x":1755232380926,"y":31.698},{"x":1755232320814,"y":31.032},{"x":1755232260678,"y":31.306},{"x":1755232200563,"y":36.128},{"x":1755232140374,"y":28.915},{"x":1755232080266,"y":28.598},{"x":1755232022950,"y":35.03},{"x":1755231962827,"y":36.409},{"x":1755231902707,"y":38.836},{"x":1755231842592,"y":32.881},{"x":1755231782462,"y":36.22},{"x":1755231722352,"y":30.886},{"x":1755231662142,"y":29.496},{"x":1755231602009,"y":27.274},{"x":1755231541863,"y":26.449},{"x":1755231481732,"y":27.466},{"x":1755231421611,"y":27.15},{"x":1755231361482,"y":33.116},{"x":1755231301368,"y":31.3},{"x":1755231241218,"y":39.22},{"x":1755231181053,"y":32.974},{"x":1755231120926,"y":33.275},{"x":1755231060772,"y":31.666},{"x":1755231000691,"y":36.433},{"x":1755230940548,"y":33.395},{"x":1755230880434,"y":37.838},{"x":1755230820288,"y":28.84},{"x":1755230760091,"y":29.65},{"x":1755230702902,"y":43.008},{"x":1755230642787,"y":32.972},{"x":1755230582664,"y":32.816},{"x":1755230522561,"y":32.989},{"x":1755230462410,"y":32.908},{"x":1755230402196,"y":28.666},{"x":1755230342046,"y":27.635},{"x":1755230281910,"y":32.401},{"x":1755230221785,"y":27.334},{"x":1755230161676,"y":28.486},{"x":1755230101540,"y":29.06},{"x":1755230041417,"y":29.854},{"x":1755229981280,"y":28.188},{"x":1755229921163,"y":28.538},{"x":1755229861000,"y":31.314},{"x":1755229800889,"y":30.433},{"x":1755229740750,"y":38.386},{"x":1755229680622,"y":37.039},{"x":1755229620474,"y":38.76},{"x":1755229560350,"y":31.873},{"x":1755229500148,"y":31.074},{"x":1755229442946,"y":31.06},{"x":1755229382819,"y":28.996},{"x":1755229322688,"y":33.421},{"x":1755229262574,"y":32.146},{"x":1755229202452,"y":30.538},{"x":1755229142321,"y":31.934},{"x":1755229082193,"y":28.686},{"x":1755229022071,"y":29.782},{"x":1755228961941,"y":27.93},{"x":1755228901816,"y":31.462},{"x":1755228841669,"y":31.674},{"x":1755228781537,"y":31.726},{"x":1755228721417,"y":30.446},{"x":1755228661278,"y":34.339},{"x":1755228601165,"y":31.326},{"x":1755228541005,"y":30.845},{"x":1755228480876,"y":31.565},{"x":1755228420753,"y":33.62},{"x":1755228360629,"y":35.233},{"x":1755228300502,"y":27.778},{"x":1755228240554,"y":28.326},{"x":1755228180257,"y":36.893},{"x":1755228122975,"y":33.349},{"x":1755228062869,"y":33.504},{"x":1755228002730,"y":31.13},{"x":1755227942597,"y":30.545},{"x":1755227882475,"y":32.335},{"x":1755227822400,"y":29.953},{"x":1755227762226,"y":32.148},{"x":1755227702109,"y":37.712},{"x":1755227641946,"y":31.24},{"x":1755227581795,"y":34.176},{"x":1755227521672,"y":27.089},{"x":1755227461523,"y":29.867},{"x":1755227401393,"y":33.848},{"x":1755227341276,"y":28.944},{"x":1755227281153,"y":32.563},{"x":1755227221020,"y":28.141},{"x":1755227160900,"y":31.218},{"x":1755227100775,"y":40.594},{"x":1755227040694,"y":51.268},{"x":1755226980566,"y":51.23},{"x":1755226920451,"y":51.379},{"x":1755226862918,"y":42.589},{"x":1755226802539,"y":42.6},{"x":1755226742214,"y":35.153},{"x":1755226682073,"y":30.054},{"x":1755226621939,"y":28.46},{"x":1755226561779,"y":28.795},{"x":1755226501657,"y":34.931},{"x":1755226441526,"y":35.798},{"x":1755226381401,"y":32.034},{"x":1755226321282,"y":31.866},{"x":1755226261153,"y":32.435},{"x":1755226201025,"y":31.021},{"x":1755226140877,"y":36.268},{"x":1755226080751,"y":33.052},{"x":1755226020629,"y":31.729},{"x":1755225960517,"y":27.407},{"x":1755225900359,"y":29.988},{"x":1755225840218,"y":30.154},{"x":1755225782969,"y":30.874},{"x":1755225722841,"y":30.74},{"x":1755225662716,"y":30.684},{"x":1755225602596,"y":28.277},{"x":1755225542474,"y":27.64},{"x":1755225482348,"y":32.173},{"x":1755225422220,"y":27.99},{"x":1755225362101,"y":27.54},{"x":1755225301954,"y":28.925},{"x":1755225241840,"y":38.632},{"x":1755225181720,"y":41.584},{"x":1755225121591,"y":37.745},{"x":1755225061460,"y":35.316},{"x":1755225001335,"y":32.363},{"x":1755224941205,"y":34.482},{"x":1755224881080,"y":37.114},{"x":1755224820937,"y":30.034},{"x":1755224760809,"y":27.092},{"x":1755224700712,"y":29.796},{"x":1755224640608,"y":29.515},{"x":1755224580392,"y":30.731},{"x":1755224520324,"y":33.622},{"x":1755224462933,"y":33.601},{"x":1755224402804,"y":35.96},{"x":1755224342682,"y":32.894},{"x":1755224282556,"y":31.088},{"x":1755224222433,"y":30.452},{"x":1755224162305,"y":29.177},{"x":1755224102178,"y":29.596},{"x":1755224042069,"y":28.789},{"x":1755223981952,"y":28.123},{"x":1755223921722,"y":31.678},{"x":1755223861566,"y":27.058},{"x":1755223801417,"y":44.526},{"x":1755223741274,"y":43.572},{"x":1755223681148,"y":41.306},{"x":1755223621013,"y":43.966},{"x":1755223560854,"y":37.65},{"x":1755223500719,"y":27.086},{"x":1755223440610,"y":27.94},{"x":1755223380387,"y":28.38},{"x":1755223320288,"y":36.584},{"x":1755223262999,"y":35.846},{"x":1755223202991,"y":32.596},{"x":1755223142745,"y":32.941},{"x":1755223082630,"y":32.086},{"x":1755223022498,"y":35.633},{"x":1755222962381,"y":39.26},{"x":1755222902228,"y":34.968},{"x":1755222842107,"y":33.829},{"x":1755222781971,"y":32.438},{"x":1755222721840,"y":32.388},{"x":1755222661695,"y":36.313},{"x":1755222601571,"y":35.777},{"x":1755222541421,"y":33.325},{"x":1755222481287,"y":34.723},{"x":1755222421173,"y":31.75},{"x":1755222361011,"y":33.974},{"x":1755222300955,"y":30.287},{"x":1755222240728,"y":34.456},{"x":1755222180583,"y":34.566},{"x":1755222120459,"y":33.397},{"x":1755222060263,"y":32.837},{"x":1755222002961,"y":34.849},{"x":1755221942846,"y":32.531},{"x":1755221882715,"y":32.045},{"x":1755221822586,"y":33.259},{"x":1755221762480,"y":28.18},{"x":1755221702323,"y":26.604},{"x":1755221642207,"y":26.786},{"x":1755221582071,"y":29.698},{"x":1755221521909,"y":29.572},{"x":1755221461796,"y":30.091},{"x":1755221401675,"y":36.088},{"x":1755221341550,"y":37.524},{"x":1755221281426,"y":32.966},{"x":1755221221303,"y":32.93},{"x":1755221161165,"y":31.012},{"x":1755221101032,"y":31.108},{"x":1755221040886,"y":49.159},{"x":1755220980760,"y":40.057},{"x":1755220920665,"y":38.686},{"x":1755220860490,"y":38.598},{"x":1755220800439,"y":48.679},{"x":1755220740326,"y":41.764},{"x":1755220682947,"y":35.526},{"x":1755220622825,"y":34.082},{"x":1755220562682,"y":33.03},{"x":1755220502557,"y":28.667},{"x":1755220442431,"y":28.951},{"x":1755220382285,"y":26.413},{"x":1755220322134,"y":27.042},{"x":1755220261989,"y":27.772},{"x":1755220201827,"y":27.95},{"x":1755220141706,"y":29.747},{"x":1755220081572,"y":31.081},{"x":1755220021439,"y":33.298},{"x":1755219961309,"y":32.15},{"x":1755219901174,"y":31.489},{"x":1755219841055,"y":30.736},{"x":1755219780895,"y":33.13},{"x":1755219720772,"y":27.547},{"x":1755219660675,"y":28.048},{"x":1755219601031,"y":26.851},{"x":1755219540488,"y":30.757},{"x":1755219480391,"y":35.538},{"x":1755219422975,"y":33.895},{"x":1755219362853,"y":32.555},{"x":1755219302738,"y":29.723},{"x":1755219242592,"y":29.579},{"x":1755219182475,"y":31.421},{"x":1755219122344,"y":28.596},{"x":1755219062221,"y":28.079},{"x":1755219002088,"y":28.584},{"x":1755218941944,"y":27.475},{"x":1755218881815,"y":27.75},{"x":1755218821701,"y":31.028},{"x":1755218761571,"y":33.058},{"x":1755218701455,"y":34.348},{"x":1755218641317,"y":33.954},{"x":1755218581196,"y":30.552},{"x":1755218521062,"y":27.085},{"x":1755218460922,"y":27.21},{"x":1755218400831,"y":29.657},{"x":1755218340661,"y":28.505},{"x":1755218280540,"y":28.705},{"x":1755218220471,"y":28.447},{"x":1755218160262,"y":27.325},{"x":1755218103015,"y":27.289},{"x":1755218042887,"y":37.666},{"x":1755217982747,"y":37.165},{"x":1755217922605,"y":40.499},{"x":1755217862481,"y":37.037},{"x":1755217802359,"y":32.926},{"x":1755217742225,"y":30.617},{"x":1755217682102,"y":30.226},{"x":1755217621965,"y":34.583},{"x":1755217561846,"y":31.702},{"x":1755217501710,"y":32.324},{"x":1755217441582,"y":31.423},{"x":1755217381459,"y":33.742},{"x":1755217321327,"y":37.722},{"x":1755217261226,"y":33.906},{"x":1755217201094,"y":37.135},{"x":1755217140953,"y":36.584},{"x":1755217080822,"y":35.491},{"x":1755217020689,"y":34.111},{"x":1755216960587,"y":28.456},{"x":1755216900472,"y":27.668},{"x":1755216840269,"y":27.605},{"x":1755216783003,"y":28.95},{"x":1755216722832,"y":29.161},{"x":1755216662698,"y":28.754},{"x":1755216602510,"y":33.134},{"x":1755216542379,"y":33.27},{"x":1755216482258,"y":35.065},{"x":1755216422130,"y":30.541},{"x":1755216361993,"y":29.683},{"x":1755216301881,"y":28.324},{"x":1755216241736,"y":28.098},{"x":1755216181607,"y":27.882},{"x":1755216121485,"y":27.488},{"x":1755216061381,"y":37.872},{"x":1755216001327,"y":33.574},{"x":1755215941012,"y":34.074},{"x":1755215880886,"y":36.251},{"x":1755215820809,"y":33.708},{"x":1755215760666,"y":36.475},{"x":1755215700524,"y":29.327},{"x":1755215640337,"y":29.246},{"x":1755215580202,"y":29.686},{"x":1755215522961,"y":30.528},{"x":1755215462826,"y":34.406},{"x":1755215402703,"y":28.523},{"x":1755215342606,"y":34.564},{"x":1755215282462,"y":32.516},{"x":1755215222341,"y":36.134},{"x":1755215162213,"y":37.012},{"x":1755215102085,"y":29.146},{"x":1755215041957,"y":28.304},{"x":1755214981831,"y":27.562},{"x":1755214921709,"y":27.78},{"x":1755214861578,"y":32.089},{"x":1755214801467,"y":29.064},{"x":1755214741318,"y":35.629},{"x":1755214681194,"y":39.31},{"x":1755214621061,"y":35.335},{"x":1755214560934,"y":39.523},{"x":1755214500796,"y":33.676},{"x":1755214440673,"y":33.611},{"x":1755214380551,"y":32.837},{"x":1755214320565,"y":26.72},{"x":1755214260272,"y":36.396},{"x":1755214202982,"y":31.08},{"x":1755214142862,"y":31.177},{"x":1755214082738,"y":33.911},{"x":1755214022615,"y":37.847},{"x":1755213962479,"y":40.484},{"x":1755213902371,"y":38.262},{"x":1755213842233,"y":36.928},{"x":1755213782115,"y":33.545},{"x":1755213721974,"y":31.03},{"x":1755213661846,"y":36.589},{"x":1755213601726,"y":31.32},{"x":1755213541600,"y":31.591},{"x":1755213481476,"y":30.45},{"x":1755213421355,"y":36.094},{"x":1755213361215,"y":51.85},{"x":1755213301095,"y":46.896},{"x":1755213240950,"y":34.379},{"x":1755213180793,"y":29.8},{"x":1755213120722,"y":30.046},{"x":1755213060492,"y":32.622},{"x":1755213000297,"y":27.84},{"x":1755212940074,"y":33.997},{"x":1755212882921,"y":31.326},{"x":1755212822785,"y":35.72},{"x":1755212762666,"y":39.17},{"x":1755212702565,"y":35.882},{"x":1755212642416,"y":39.394},{"x":1755212582300,"y":38.584},{"x":1755212522186,"y":38.563},{"x":1755212462061,"y":39.41},{"x":1755212401962,"y":35.672},{"x":1755212341775,"y":33.811},{"x":1755212281657,"y":32.492},{"x":1755212221538,"y":31.322},{"x":1755212161404,"y":41.35},{"x":1755212101277,"y":36.61},{"x":1755212041159,"y":36.184},{"x":1755211981013,"y":34.417},{"x":1755211920897,"y":33.779},{"x":1755211860777,"y":37.832},{"x":1755211800712,"y":32.422},{"x":1755211740543,"y":32.776},{"x":1755211680446,"y":32.588},{"x":1755211620283,"y":34.228},{"x":1755211562984,"y":39.214},{"x":1755211502862,"y":33.563},{"x":1755211442738,"y":30.697},{"x":1755211382613,"y":30.841},{"x":1755211322496,"y":32.694},{"x":1755211262366,"y":37.717},{"x":1755211202243,"y":32.944},{"x":1755211142130,"y":31.44},{"x":1755211081983,"y":31.304},{"x":1755211021863,"y":28.979},{"x":1755210961745,"y":34.201},{"x":1755210901622,"y":30.521},{"x":1755210841495,"y":32.628},{"x":1755210781375,"y":31.272},{"x":1755210721252,"y":30.859},{"x":1755210661123,"y":38.096},{"x":1755210601022,"y":35.144},{"x":1755210540863,"y":35.382},{"x":1755210480748,"y":32.257},{"x":1755210420625,"y":35.314},{"x":1755210360509,"y":29.209},{"x":1755210300394,"y":29.536},{"x":1755210240219,"y":31.817},{"x":1755210183012,"y":31.613},{"x":1755210122881,"y":32.546},{"x":1755210062765,"y":32.065},{"x":1755210002649,"y":30.022},{"x":1755209942511,"y":29.908},{"x":1755209882370,"y":30.073},{"x":1755209822244,"y":32.665},{"x":1755209762112,"y":34.009},{"x":1755209701983,"y":36.524},{"x":1755209641866,"y":34.015},{"x":1755209581703,"y":32.17},{"x":1755209521539,"y":31.31},{"x":1755209461381,"y":32.208},{"x":1755209401233,"y":30.389},{"x":1755209341076,"y":30.749},{"x":1755209280920,"y":31.22},{"x":1755209220784,"y":32.248},{"x":1755209160658,"y":33.422},{"x":1755209100571,"y":29.077},{"x":1755209040402,"y":29.041},{"x":1755208980348,"y":32.161},{"x":1755208922999,"y":31.807},{"x":1755208862896,"y":31.512},{"x":1755208802799,"y":42.967},{"x":1755208742606,"y":40.098},{"x":1755208682478,"y":42.372},{"x":1755208622356,"y":44.765},{"x":1755208562233,"y":40.537},{"x":1755208502109,"y":39.312},{"x":1755208441971,"y":39.21},{"x":1755208381835,"y":38.464},{"x":1755208321713,"y":40.462},{"x":1755208261594,"y":34.594},{"x":1755208201439,"y":36.432},{"x":1755208141307,"y":34.99},{"x":1755208081190,"y":31.472},{"x":1755208021048,"y":35.038},{"x":1755207960906,"y":31.568},{"x":1755207900847,"y":34.49},{"x":1755207840623,"y":36.902},{"x":1755207780487,"y":34.286},{"x":1755207720416,"y":39.734},{"x":1755207660218,"y":36.992},{"x":1755207603023,"y":36.306},{"x":1755207542888,"y":34.127},{"x":1755207482701,"y":34.71},{"x":1755207422579,"y":36.469},{"x":1755207362452,"y":39.896},{"x":1755207302327,"y":35.429},{"x":1755207242201,"y":33.792},{"x":1755207182078,"y":39.554},{"x":1755207121936,"y":38.795},{"x":1755207061819,"y":40.34},{"x":1755207001701,"y":40.958},{"x":1755206941571,"y":36.899},{"x":1755206881441,"y":33.239},{"x":1755206821312,"y":33.119},{"x":1755206761191,"y":32.884},{"x":1755206701055,"y":32.461},{"x":1755206640917,"y":33.29},{"x":1755206580786,"y":39.218},{"x":1755206520667,"y":36.384},{"x":1755206460534,"y":47.165},{"x":1755206400349,"y":46.74},{"x":1755206340166,"y":48.433},{"x":1755206282947,"y":55.613},{"x":1755206222833,"y":55.716},{"x":1755206162691,"y":50.495},{"x":1755206102554,"y":44.699},{"x":1755206042421,"y":42.011},{"x":1755205982293,"y":45.782},{"x":1755205922149,"y":58.684},{"x":1755205861986,"y":52.129},{"x":1755205801829,"y":47.006},{"x":1755205741710,"y":51.722},{"x":1755205681587,"y":55.655},{"x":1755205621454,"y":52.222},{"x":1755205561332,"y":49.308},{"x":1755205501191,"y":48.803},{"x":1755205441063,"y":52.372},{"x":1755205380933,"y":56.105},{"x":1755205320807,"y":68.518},{"x":1755205260690,"y":35.491},{"x":1755205200658,"y":34.012},{"x":1755205140381,"y":44.513},{"x":1755205080313,"y":43.319},{"x":1755205022995,"y":44.966},{"x":1755204962875,"y":45.713},{"x":1755204902740,"y":43.163},{"x":1755204842620,"y":60.791},{"x":1755204782482,"y":51.971},{"x":1755204722352,"y":45.881},{"x":1755204662226,"y":42.364},{"x":1755204602099,"y":42.431},{"x":1755204541958,"y":58.406},{"x":1755204481856,"y":47.728},{"x":1755204421716,"y":46.43},{"x":1755204361592,"y":60.604},{"x":1755204301478,"y":60.59},{"x":1755204241348,"y":65.098},{"x":1755204181213,"y":59.351},{"x":1755204121090,"y":73.085},{"x":1755204060945,"y":56.314},{"x":1755204000866,"y":45.713},{"x":1755203940688,"y":49.85},{"x":1755203880576,"y":48.121},{"x":1755203820496,"y":45.814},{"x":1755203760323,"y":51.919},{"x":1755203700069,"y":51.895},{"x":1755203642882,"y":52.021},{"x":1755203582751,"y":52.603},{"x":1755203522626,"y":49.003},{"x":1755203462494,"y":52.423},{"x":1755203402357,"y":51.791},{"x":1755203342232,"y":49.502},{"x":1755203282108,"y":48.598},{"x":1755203221964,"y":43.608},{"x":1755203161842,"y":42.548},{"x":1755203101717,"y":42.505},{"x":1755203041595,"y":46.949},{"x":1755202981464,"y":44.137},{"x":1755202921346,"y":59.552},{"x":1755202861203,"y":46.808},{"x":1755202801095,"y":48.607},{"x":1755202740927,"y":47.195},{"x":1755202680799,"y":41.699},{"x":1755202620699,"y":49.312},{"x":1755202560580,"y":45.43},{"x":1755202500475,"y":59.638},{"x":1755202440306,"y":42.282},{"x":1755202383006,"y":53.218},{"x":1755202322856,"y":73.625},{"x":1755202262709,"y":76.164},{"x":1755202202548,"y":73.596},{"x":1755202142415,"y":69.952},{"x":1755202082293,"y":56.358},{"x":1755202022154,"y":51.198},{"x":1755201962028,"y":57.529},{"x":1755201901897,"y":59.142},{"x":1755201841767,"y":66.762},{"x":1755201781648,"y":70.46},{"x":1755201721525,"y":74.765},{"x":1755201661412,"y":73.328},{"x":1755201601335,"y":73.734},{"x":1755201541136,"y":63.973},{"x":1755201480977,"y":74.292},{"x":1755201420826,"y":72.2},{"x":1755201360706,"y":60.203},{"x":1755201300570,"y":49.354},{"x":1755201240334,"y":63.532},{"x":1755201180302,"y":53.939},{"x":1755201123029,"y":50.611},{"x":1755201062884,"y":64.266},{"x":1755201002663,"y":43.985},{"x":1755200942536,"y":38.753},{"x":1755200882410,"y":35.06},{"x":1755200822292,"y":34.968},{"x":1755200762165,"y":52.823},{"x":1755200702038,"y":65.857},{"x":1755200641905,"y":53.603},{"x":1755200581774,"y":74.852},{"x":1755200521668,"y":77.338},{"x":1755200461528,"y":51.396},{"x":1755200401391,"y":52.066},{"x":1755200341273,"y":46.11},{"x":1755200281139,"y":46.873},{"x":1755200220981,"y":45.415},{"x":1755200160871,"y":40.818},{"x":1755200100760,"y":58.398},{"x":1755200040612,"y":54.323},{"x":1755199980547,"y":54.092},{"x":1755199920382,"y":53.918},{"x":1755199860230,"y":49.498},{"x":1755199802927,"y":57.554},{"x":1755199742795,"y":37.333},{"x":1755199682671,"y":37.513},{"x":1755199622541,"y":48.21},{"x":1755199562415,"y":47.876},{"x":1755199502292,"y":72.163},{"x":1755199442179,"y":70.968},{"x":1755199382032,"y":71.06},{"x":1755199321897,"y":76.14},{"x":1755199261770,"y":67.673},{"x":1755199201646,"y":57.064},{"x":1755199141520,"y":56.212},{"x":1755199081399,"y":54.346},{"x":1755199021279,"y":57.422},{"x":1755198961148,"y":53.213},{"x":1755198900991,"y":41.843},{"x":1755198840858,"y":41.893},{"x":1755198780722,"y":61.883},{"x":1755198720600,"y":64.952},{"x":1755198660399,"y":61.043},{"x":1755198600257,"y":64.918},{"x":1755198542999,"y":57.923},{"x":1755198482884,"y":51.779},{"x":1755198422765,"y":62.538},{"x":1755198362645,"y":50.11},{"x":1755198302522,"y":48.306},{"x":1755198242409,"y":58.472},{"x":1755198182275,"y":57.692},{"x":1755198122142,"y":68.326},{"x":1755198062011,"y":74.49},{"x":1755198001894,"y":66.899},{"x":1755197941701,"y":60.42},{"x":1755197881581,"y":65.039},{"x":1755197821451,"y":59.406},{"x":1755197761334,"y":36.59},{"x":1755197701192,"y":39.676},{"x":1755197641062,"y":50.746},{"x":1755197580925,"y":48.301},{"x":1755197520812,"y":48.251},{"x":1755197460672,"y":61.632},{"x":1755197400613,"y":51.871},{"x":1755197340383,"y":34.649},{"x":1755197280279,"y":45.754},{"x":1755197222962,"y":44.687},{"x":1755197162828,"y":44.762},{"x":1755197102709,"y":48.754},{"x":1755197042584,"y":60.301},{"x":1755196982466,"y":57.847},{"x":1755196922342,"y":64.532},{"x":1755196862218,"y":55.726},{"x":1755196802094,"y":49.204},{"x":1755196741952,"y":47.712},{"x":1755196681829,"y":53.429},{"x":1755196621704,"y":55.456},{"x":1755196561580,"y":53.593},{"x":1755196501452,"y":39.126},{"x":1755196441323,"y":51.94},{"x":1755196381219,"y":53.652},{"x":1755196321084,"y":50.837},{"x":1755196260943,"y":48.522},{"x":1755196200887,"y":46.855},{"x":1755196140689,"y":44.206},{"x":1755196080605,"y":42.968},{"x":1755196020422,"y":44.086},{"x":1755195960239,"y":48.943},{"x":1755195900035,"y":63.841},{"x":1755195842904,"y":45.144},{"x":1755195782780,"y":56.881},{"x":1755195722660,"y":55.146},{"x":1755195662556,"y":44.978},{"x":1755195602415,"y":48.396},{"x":1755195542293,"y":50.743},{"x":1755195482166,"y":53.328},{"x":1755195422045,"y":53.68},{"x":1755195361898,"y":47.942},{"x":1755195301775,"y":35.413},{"x":1755195241650,"y":35.534},{"x":1755195181528,"y":44.392},{"x":1755195121380,"y":43.43},{"x":1755195061234,"y":43.351},{"x":1755195001073,"y":42.48},{"x":1755194940915,"y":41.206},{"x":1755194880790,"y":42.204},{"x":1755194820661,"y":34.924},{"x":1755194760569,"y":44.401},{"x":1755194700494,"y":45.922},{"x":1755194640331,"y":44.165},{"x":1755194583024,"y":48.222},{"x":1755194522898,"y":59.34},{"x":1755194462754,"y":60.662},{"x":1755194402645,"y":74.268},{"x":1755194342505,"y":47.592},{"x":1755194282381,"y":50.064},{"x":1755194222257,"y":48.337},{"x":1755194162131,"y":52.442},{"x":1755194101993,"y":46.454},{"x":1755194041865,"y":34.282},{"x":1755193981734,"y":46.486},{"x":1755193921552,"y":49.444},{"x":1755193861423,"y":45.605},{"x":1755193801286,"y":46.121},{"x":1755193741161,"y":41.213},{"x":1755193681031,"y":34.019},{"x":1755193620891,"y":39.762},{"x":1755193560772,"y":33.192},{"x":1755193500852,"y":32.476},{"x":1755193440528,"y":49.57},{"x":1755193380335,"y":45.642},{"x":1755193320093,"y":53.567},{"x":1755193262912,"y":56.592},{"x":1755193202791,"y":53.184},{"x":1755193142669,"y":49.32},{"x":1755193082545,"y":51.224},{"x":1755193022416,"y":54.71},{"x":1755192962319,"y":44.248},{"x":1755192902162,"y":51.983},{"x":1755192842038,"y":46.59},{"x":1755192781912,"y":37.339},{"x":1755192721791,"y":34.351},{"x":1755192661659,"y":48.924},{"x":1755192601572,"y":46.51},{"x":1755192541410,"y":41.107},{"x":1755192481283,"y":40.649},{"x":1755192421161,"y":43.11},{"x":1755192361018,"y":33.838},{"x":1755192300902,"y":36.07},{"x":1755192240772,"y":39.33},{"x":1755192180637,"y":44.466},{"x":1755192120518,"y":42.29},{"x":1755192060338,"y":54.8},{"x":1755192000210,"y":48.223},{"x":1755191942934,"y":48.714},{"x":1755191882797,"y":43.825},{"x":1755191822671,"y":41.16},{"x":1755191762523,"y":43.369},{"x":1755191702395,"y":46.816},{"x":1755191642282,"y":44.045},{"x":1755191582129,"y":33.941},{"x":1755191521987,"y":31.764},{"x":1755191461853,"y":38.418},{"x":1755191401677,"y":38.132},{"x":1755191341545,"y":42.6},{"x":1755191281429,"y":50.126},{"x":1755191221303,"y":51.07},{"x":1755191161177,"y":39.157},{"x":1755191101057,"y":32.641},{"x":1755191040922,"y":35.375},{"x":1755190980795,"y":39.574},{"x":1755190920677,"y":39.266},{"x":1755190860569,"y":61.164},{"x":1755190800412,"y":56.712},{"x":1755190740284,"y":57.931},{"x":1755190682943,"y":42.274},{"x":1755190622819,"y":44.278},{"x":1755190562693,"y":41.753},{"x":1755190502573,"y":39.871},{"x":1755190442440,"y":33.179},{"x":1755190382312,"y":48.018},{"x":1755190322185,"y":57.439},{"x":1755190262059,"y":46.435},{"x":1755190201917,"y":41.389},{"x":1755190141792,"y":42.298},{"x":1755190081659,"y":29.771},{"x":1755190021530,"y":31.481},{"x":1755189961404,"y":38.172},{"x":1755189901285,"y":32.556},{"x":1755189841156,"y":40.004},{"x":1755189781026,"y":38.726},{"x":1755189720883,"y":46.924},{"x":1755189660770,"y":54.018},{"x":1755189600680,"y":46.87},{"x":1755189540504,"y":33.044},{"x":1755189480437,"y":38.806},{"x":1755189420233,"y":28.463},{"x":1755189362915,"y":29.089},{"x":1755189302788,"y":31.708},{"x":1755189242663,"y":34.266},{"x":1755189182527,"y":31.153},{"x":1755189122398,"y":28.352},{"x":1755189062265,"y":23.617},{"x":1755189002136,"y":40.268},{"x":1755188941995,"y":36.262},{"x":1755188881886,"y":46.373},{"x":1755188821750,"y":45.332},{"x":1755188761628,"y":46.818},{"x":1755188701506,"y":53.846},{"x":1755188641375,"y":39.124},{"x":1755188581248,"y":28.776},{"x":1755188521097,"y":29.795},{"x":1755188460932,"y":48.988},{"x":1755188400825,"y":54.568},{"x":1755188340661,"y":43.724},{"x":1755188280551,"y":35.68},{"x":1755188220478,"y":33.95},{"x":1755188160285,"y":37.276},{"x":1755188102989,"y":55.411},{"x":1755188042880,"y":28.745},{"x":1755187982710,"y":45.079},{"x":1755187922567,"y":27.592},{"x":1755187862428,"y":41.687},{"x":1755187802286,"y":39.203},{"x":1755187742147,"y":40.822},{"x":1755187682015,"y":44.458},{"x":1755187621866,"y":33.565},{"x":1755187561739,"y":33.829},{"x":1755187501615,"y":35.081},{"x":1755187441478,"y":34.867},{"x":1755187381353,"y":30.428},{"x":1755187321222,"y":50.552},{"x":1755187261082,"y":37.463},{"x":1755187201107,"y":43.091},{"x":1755187140769,"y":51.822},{"x":1755187080669,"y":56.05},{"x":1755187020604,"y":44.144},{"x":1755186960408,"y":34.747},{"x":1755186900260,"y":32.238},{"x":1755186843026,"y":34.325},{"x":1755186782858,"y":41.934},{"x":1755186722741,"y":29.908},{"x":1755186662602,"y":26.27},{"x":1755186602495,"y":23.285},{"x":1755186542342,"y":28.697},{"x":1755186482219,"y":43.129},{"x":1755186422092,"y":33.758},{"x":1755186361977,"y":32.417},{"x":1755186301831,"y":21.212},{"x":1755186241697,"y":32.033},{"x":1755186181571,"y":22.622},{"x":1755186121440,"y":19.426},{"x":1755186061314,"y":32.683},{"x":1755186001231,"y":35.204},{"x":1755185941063,"y":44.786},{"x":1755185880932,"y":44.861},{"x":1755185820734,"y":44.011},{"x":1755185760654,"y":42.852},{"x":1755185700519,"y":35.438},{"x":1755185640350,"y":42.145},{"x":1755185580089,"y":24.794},{"x":1755185522898,"y":25.38},{"x":1755185462776,"y":22.216},{"x":1755185402646,"y":26.68},{"x":1755185342525,"y":19.513},{"x":1755185282404,"y":21.982},{"x":1755185222278,"y":21.965},{"x":1755185162154,"y":43.157},{"x":1755185102032,"y":41.154},{"x":1755185041876,"y":45.079},{"x":1755184981754,"y":43.29},{"x":1755184921626,"y":40.843},{"x":1755184861502,"y":25.67},{"x":1755184801371,"y":22.693},{"x":1755184741253,"y":30.998},{"x":1755184681152,"y":30.943},{"x":1755184620997,"y":31.248},{"x":1755184560869,"y":33.078},{"x":1755184500734,"y":31.304},{"x":1755184440656,"y":29.498},{"x":1755184380475,"y":34.824},{"x":1755184320329,"y":46.426},{"x":1755184260205,"y":38.201},{"x":1755184202909,"y":37.906},{"x":1755184142780,"y":46.723},{"x":1755184082656,"y":29.485},{"x":1755184022517,"y":21.718},{"x":1755183962397,"y":20.803},{"x":1755183902283,"y":30.52},{"x":1755183842151,"y":20.142},{"x":1755183782031,"y":19.669},{"x":1755183721893,"y":28.288},{"x":1755183661771,"y":32.849},{"x":1755183601680,"y":33.412},{"x":1755183541504,"y":64.253},{"x":1755183481377,"y":55.817},{"x":1755183421253,"y":47.195},{"x":1755183361126,"y":28.033},{"x":1755183300979,"y":20.57},{"x":1755183240839,"y":18.384},{"x":1755183180729,"y":17.732},{"x":1755183120628,"y":14.52},{"x":1755183060424,"y":16.226},{"x":1755183000390,"y":16.361},{"x":1755182940274,"y":25.39},{"x":1755182882929,"y":31.01},{"x":1755182822794,"y":39.269},{"x":1755182762669,"y":43.721},{"x":1755182702546,"y":40.309},{"x":1755182642421,"y":47.353},{"x":1755182582303,"y":49.172},{"x":1755182522170,"y":48.56},{"x":1755182462054,"y":43.567},{"x":1755182401913,"y":32.669},{"x":1755182341782,"y":32.083},{"x":1755182281649,"y":33.776},{"x":1755182221519,"y":23.566},{"x":1755182161370,"y":24.322},{"x":1755182101238,"y":25.481},{"x":1755182041105,"y":30.97},{"x":1755181980943,"y":33.785},{"x":1755181920814,"y":21.84},{"x":1755181860688,"y":33.889},{"x":1755181800633,"y":30.544},{"x":1755181740440,"y":37.214},{"x":1755181680283,"y":45.187},{"x":1755181622944,"y":39.811},{"x":1755181562820,"y":37.243},{"x":1755181502694,"y":25.232},{"x":1755181442574,"y":41.483},{"x":1755181382445,"y":33.184},{"x":1755181322330,"y":27.82},{"x":1755181262201,"y":27.991},{"x":1755181202042,"y":31.415},{"x":1755181141900,"y":19.662},{"x":1755181081772,"y":37.83},{"x":1755181021646,"y":25.937},{"x":1755180961517,"y":24.766},{"x":1755180901401,"y":37.051},{"x":1755180841277,"y":38.987},{"x":1755180781134,"y":40.85},{"x":1755180720963,"y":26.176},{"x":1755180660772,"y":28.316},{"x":1755180600614,"y":29.615},{"x":1755180540470,"y":32.44},{"x":1755180480306,"y":51.916},{"x":1755180422964,"y":46.9},{"x":1755180362843,"y":27.683},{"x":1755180302719,"y":26.56},{"x":1755180242591,"y":13.933},{"x":1755180182469,"y":20.665},{"x":1755180122336,"y":16.459},{"x":1755180062210,"y":37.908},{"x":1755180002114,"y":30.13},{"x":1755179941922,"y":43.596},{"x":1755179881783,"y":42.74},{"x":1755179821653,"y":33.798},{"x":1755179761525,"y":37.252},{"x":1755179701410,"y":25.838},{"x":1755179641268,"y":24.665},{"x":1755179581144,"y":33.74},{"x":1755179520999,"y":23.644},{"x":1755179460872,"y":22.147},{"x":1755179400752,"y":30.563},{"x":1755179340613,"y":32.02},{"x":1755179280556,"y":43.369},{"x":1755179220425,"y":42.204},{"x":1755179160269,"y":33.666},{"x":1755179102960,"y":16.913},{"x":1755179042852,"y":27.704},{"x":1755178982712,"y":24.371},{"x":1755178922594,"y":32.72},{"x":1755178862444,"y":32.191},{"x":1755178802325,"y":30.77},{"x":1755178742207,"y":29.441},{"x":1755178682071,"y":23.2},{"x":1755178621929,"y":19.631},{"x":1755178561800,"y":34.74},{"x":1755178501690,"y":19.926},{"x":1755178441549,"y":25.775},{"x":1755178381431,"y":10.592},{"x":1755178321308,"y":11.635},{"x":1755178261176,"y":23.91},{"x":1755178201022,"y":33.703},{"x":1755178140830,"y":35.726},{"x":1755178080718,"y":40.613},{"x":1755178020672,"y":33.905},{"x":1755177960533,"y":39.829},{"x":1755177900286,"y":22.964},{"x":1755177842966,"y":16.805},{"x":1755177782833,"y":17.736},{"x":1755177722707,"y":8.884},{"x":1755177662574,"y":7.762},{"x":1755177602449,"y":9.786},{"x":1755177542324,"y":39.323},{"x":1755177482193,"y":46.807},{"x":1755177422058,"y":42.072},{"x":1755177361925,"y":41.495},{"x":1755177301784,"y":39.98},{"x":1755177241660,"y":14.336},{"x":1755177181503,"y":12.841},{"x":1755177121346,"y":35.742},{"x":1755177061231,"y":27.708},{"x":1755177000998,"y":33.86},{"x":1755176940858,"y":28.093},{"x":1755176880739,"y":49.615},{"x":1755176820591,"y":43.279},{"x":1755176760494,"y":31.277},{"x":1755176700370,"y":21.943},{"x":1755176640254,"y":8.85},{"x":1755176582942,"y":22.398},{"x":1755176522809,"y":25.92},{"x":1755176462682,"y":33.108},{"x":1755176402609,"y":21.592},{"x":1755176342429,"y":25.583},{"x":1755176282289,"y":21.475},{"x":1755176222163,"y":21.596},{"x":1755176162035,"y":51.77},{"x":1755176101904,"y":38.885},{"x":1755176041776,"y":37.254},{"x":1755175981648,"y":32.729},{"x":1755175921525,"y":34.57},{"x":1755175861388,"y":21.823},{"x":1755175801258,"y":21.318},{"x":1755175741134,"y":18.131},{"x":1755175680999,"y":26.125},{"x":1755175620878,"y":22.88},{"x":1755175560724,"y":20.164},{"x":1755175500760,"y":10.489},{"x":1755175440525,"y":19.292},{"x":1755175380317,"y":12.563},{"x":1755175320192,"y":25.114},{"x":1755175262933,"y":21.086},{"x":1755175202815,"y":44.641},{"x":1755175142688,"y":30.277},{"x":1755175082569,"y":48.556},{"x":1755175022434,"y":33.317},{"x":1755174962311,"y":22.721},{"x":1755174902179,"y":36.2},{"x":1755174842052,"y":29.242},{"x":1755174781920,"y":30.008},{"x":1755174721795,"y":24.554},{"x":1755174661675,"y":46.292},{"x":1755174601582,"y":32.352},{"x":1755174541417,"y":22.946},{"x":1755174481281,"y":16.337},{"x":1755174421147,"y":16.158},{"x":1755174360962,"y":24.682},{"x":1755174300849,"y":39.888},{"x":1755174240723,"y":30.31},{"x":1755174180565,"y":31.26},{"x":1755174120391,"y":47.029},{"x":1755174060292,"y":26.448},{"x":1755174003007,"y":18.049},{"x":1755173942877,"y":23.903},{"x":1755173882736,"y":24.325},{"x":1755173822619,"y":20.689},{"x":1755173762468,"y":21.122},{"x":1755173702352,"y":32.783},{"x":1755173642217,"y":27.818},{"x":1755173582098,"y":17.354},{"x":1755173521927,"y":26.738},{"x":1755173461792,"y":37.112},{"x":1755173401610,"y":33.906},{"x":1755173341463,"y":32.753},{"x":1755173281341,"y":48.961},{"x":1755173221218,"y":75.902},{"x":1755173161091,"y":38.354},{"x":1755173100948,"y":46.919},{"x":1755173040816,"y":40.918},{"x":1755172980720,"y":36.562},{"x":1755172920617,"y":28.369},{"x":1755172860485,"y":18.341},{"x":1755172800318,"y":30.654},{"x":1755172743014,"y":36.026},{"x":1755172682878,"y":23.582},{"x":1755172622747,"y":25.344},{"x":1755172562624,"y":38.593},{"x":1755172502498,"y":39.9},{"x":1755172442369,"y":52.247},{"x":1755172382243,"y":51.611},{"x":1755172322108,"y":42.664},{"x":1755172261954,"y":46.973},{"x":1755172201827,"y":26.671},{"x":1755172141703,"y":25.723},{"x":1755172081584,"y":32.833},{"x":1755172021471,"y":28.07},{"x":1755171961335,"y":19.672},{"x":1755171901206,"y":15.81},{"x":1755171841067,"y":9.746},{"x":1755171780923,"y":35.797},{"x":1755171720796,"y":22.624},{"x":1755171660693,"y":38.209},{"x":1755171600705,"y":39.728},{"x":1755171540407,"y":44.671},{"x":1755171480302,"y":30.142},{"x":1755171420160,"y":28.266},{"x":1755171362900,"y":21.761},{"x":1755171302764,"y":35.034},{"x":1755171242641,"y":32.768},{"x":1755171182516,"y":28.619},{"x":1755171122380,"y":34.763},{"x":1755171062239,"y":29.78},{"x":1755171002137,"y":35.462},{"x":1755170941946,"y":27.392},{"x":1755170881812,"y":21.566},{"x":1755170821680,"y":21.618},{"x":1755170761552,"y":53.023},{"x":1755170701425,"y":46.681},{"x":1755170641296,"y":45.38},{"x":1755170581169,"y":44.486},{"x":1755170521016,"y":44.064},{"x":1755170460874,"y":32.8},{"x":1755170400812,"y":35.836},{"x":1755170340607,"y":43.522},{"x":1755170280470,"y":35.333},{"x":1755170220285,"y":33.66},{"x":1755170162966,"y":33.684},{"x":1755170102838,"y":28.484},{"x":1755170042725,"y":23.195},{"x":1755169982526,"y":22.584},{"x":1755169922340,"y":41.464},{"x":1755169862211,"y":46.952},{"x":1755169802025,"y":44.198},{"x":1755169741895,"y":34.468},{"x":1755169681780,"y":37.837},{"x":1755169621625,"y":32.054},{"x":1755169561489,"y":33.606},{"x":1755169501354,"y":28.574},{"x":1755169441222,"y":31.984},{"x":1755169381079,"y":34.405},{"x":1755169320927,"y":28.789},{"x":1755169260787,"y":16.279},{"x":1755169200890,"y":31.457},{"x":1755169140509,"y":56.974},{"x":1755169080372,"y":32.65},{"x":1755169020222,"y":42.808},{"x":1755168962962,"y":42.254},{"x":1755168902851,"y":40.981},{"x":1755168842704,"y":33.334},{"x":1755168782560,"y":36.092},{"x":1755168722424,"y":28.296},{"x":1755168662281,"y":50.099},{"x":1755168602156,"y":19.781},{"x":1755168542020,"y":19.222},{"x":1755168481870,"y":12.928},{"x":1755168421738,"y":37.342},{"x":1755168361615,"y":44.402},{"x":1755168301491,"y":41.81},{"x":1755168241348,"y":35.532},{"x":1755168181223,"y":41.594},{"x":1755168121089,"y":29.729},{"x":1755168060940,"y":36.586},{"x":1755168000881,"y":31.234},{"x":1755167940692,"y":45.475},{"x":1755167880603,"y":25.003},{"x":1755167820474,"y":10.091},{"x":1755167760318,"y":10.512},{"x":1755167702997,"y":23.37},{"x":1755167642862,"y":36.28},{"x":1755167582738,"y":38.126},{"x":1755167522615,"y":45.966},{"x":1755167462490,"y":42.896},{"x":1755167402359,"y":39.078},{"x":1755167342222,"y":28.705},{"x":1755167282099,"y":28.466},{"x":1755167221969,"y":29.83},{"x":1755167161842,"y":17.156},{"x":1755167101716,"y":16.682},{"x":1755167041607,"y":21.252},{"x":1755166981447,"y":28.704},{"x":1755166921360,"y":40.992},{"x":1755166861202,"y":40.062},{"x":1755166801083,"y":46.031},{"x":1755166740933,"y":39.916},{"x":1755166680790,"y":33.964},{"x":1755166620683,"y":34.526},{"x":1755166560515,"y":34.219},{"x":1755166500390,"y":31.12},{"x":1755166443034,"y":32.909},{"x":1755166382851,"y":36.028},{"x":1755166322692,"y":19.422},{"x":1755166262551,"y":16.421},{"x":1755166202367,"y":16.178},{"x":1755166142215,"y":27.952},{"x":1755166082079,"y":50.036},{"x":1755166021935,"y":27.744},{"x":1755165961815,"y":46.907},{"x":1755165901680,"y":46.118},{"x":1755165841555,"y":33.899},{"x":1755165781422,"y":32.621},{"x":1755165721300,"y":27.358},{"x":1755165661186,"y":33.784},{"x":1755165601182,"y":30.734},{"x":1755165540763,"y":36.295},{"x":1755165480646,"y":33.306},{"x":1755165420585,"y":33.733},{"x":1755165360473,"y":31.224},{"x":1755165303022,"y":18.746},{"x":1755165242890,"y":18.556},{"x":1755165182767,"y":22.338},{"x":1755165122635,"y":39.656},{"x":1755165062502,"y":26.954},{"x":1755165002368,"y":27.497},{"x":1755164942247,"y":40.897},{"x":1755164882123,"y":44.483},{"x":1755164821982,"y":41.92},{"x":1755164761852,"y":34.145},{"x":1755164701719,"y":31.164},{"x":1755164641583,"y":32.381},{"x":1755164581449,"y":38.143},{"x":1755164521318,"y":41.256},{"x":1755164461192,"y":35.336},{"x":1755164401065,"y":35.729},{"x":1755164340889,"y":34.176},{"x":1755164280770,"y":36.587},{"x":1755164220651,"y":23.14},{"x":1755164160548,"y":20.123},{"x":1755164100357,"y":14.71},{"x":1755164040190,"y":20.503},{"x":1755163983029,"y":27.64},{"x":1755163922880,"y":44.554},{"x":1755163862761,"y":39.785},{"x":1755163802627,"y":43.302},{"x":1755163742500,"y":51.145},{"x":1755163682380,"y":35.59},{"x":1755163622242,"y":34.733},{"x":1755163562107,"y":35.995},{"x":1755163501970,"y":39.695},{"x":1755163441842,"y":31.636},{"x":1755163381724,"y":27.571},{"x":1755163321595,"y":27.396},{"x":1755163261477,"y":33.812},{"x":1755163201358,"y":22.292},{"x":1755163141225,"y":24.671},{"x":1755163081113,"y":24.025},{"x":1755163020964,"y":30.905},{"x":1755162960829,"y":46.633},{"x":1755162900734,"y":40.68},{"x":1755162840529,"y":40.526},{"x":1755162780396,"y":39.05},{"x":1755162720182,"y":30.941},{"x":1755162662959,"y":17.724},{"x":1755162602827,"y":19.224},{"x":1755162542696,"y":23.375},{"x":1755162482576,"y":20.887},{"x":1755162422445,"y":27.796},{"x":1755162362318,"y":47.354},{"x":1755162302193,"y":43.753},{"x":1755162242062,"y":49.318},{"x":1755162181932,"y":44.641},{"x":1755162121803,"y":40.968},{"x":1755162061672,"y":19.759},{"x":1755162001604,"y":22.042},{"x":1755161941397,"y":31.241},{"x":1755161881266,"y":28.714},{"x":1755161821131,"y":34.066},{"x":1755161760967,"y":38.31},{"x":1755161700861,"y":37.159},{"x":1755161640758,"y":45.427},{"x":1755161580606,"y":41.41},{"x":1755161520479,"y":42.367},{"x":1755161460347,"y":44.07},{"x":1755161400178,"y":39.737},{"x":1755161342910,"y":28.382},{"x":1755161282788,"y":21.004},{"x":1755161222668,"y":19.042},{"x":1755161162545,"y":32.792},{"x":1755161102413,"y":40.517},{"x":1755161042295,"y":48.888},{"x":1755160982176,"y":53.186},{"x":1755160922032,"y":49.411},{"x":1755160861907,"y":36.452},{"x":1755160801773,"y":42.847},{"x":1755160741641,"y":36.701},{"x":1755160681488,"y":41.203},{"x":1755160621365,"y":24.115},{"x":1755160561239,"y":34.39},{"x":1755160501115,"y":37.976},{"x":1755160440966,"y":37.909},{"x":1755160380837,"y":40.078},{"x":1755160320747,"y":40.086},{"x":1755160260583,"y":36.413},{"x":1755160200408,"y":30.948},{"x":1755160140270,"y":21.888},{"x":1755160082932,"y":25.848},{"x":1755160022811,"y":19.495},{"x":1755159962689,"y":27.538},{"x":1755159902570,"y":38.172},{"x":1755159842440,"y":31.724},{"x":1755159782314,"y":38.711},{"x":1755159722189,"y":53.232},{"x":1755159662043,"y":53.441},{"x":1755159601897,"y":47.792},{"x":1755159541752,"y":48.307},{"x":1755159481631,"y":50.207},{"x":1755159421500,"y":44.857},{"x":1755159361384,"y":41.44},{"x":1755159301238,"y":45.804},{"x":1755159241146,"y":23.828},{"x":1755159180965,"y":26.532},{"x":1755159120800,"y":22.12},{"x":1755159060663,"y":20.527},{"x":1755159000609,"y":24.04},{"x":1755158940409,"y":28.853},{"x":1755158880391,"y":30.668},{"x":1755158822908,"y":34.111},{"x":1755158762786,"y":34.398},{"x":1755158702638,"y":28.619},{"x":1755158642506,"y":46.478},{"x":1755158582388,"y":45.112},{"x":1755158522259,"y":49.345},{"x":1755158462142,"y":46.064},{"x":1755158402049,"y":47.819},{"x":1755158341823,"y":27.143},{"x":1755158281693,"y":49.35},{"x":1755158221569,"y":48.64},{"x":1755158161445,"y":44.43},{"x":1755158101337,"y":37.476},{"x":1755158041200,"y":40.588},{"x":1755157981077,"y":34.674},{"x":1755157920933,"y":33.852},{"x":1755157860866,"y":32.939},{"x":1755157800831,"y":41.999},{"x":1755157740676,"y":37.843},{"x":1755157680458,"y":22.762},{"x":1755157620270,"y":28.772},{"x":1755157563133,"y":45.142},{"x":1755157502874,"y":42.805},{"x":1755157442738,"y":35.156},{"x":1755157382603,"y":37.726},{"x":1755157322484,"y":44.071},{"x":1755157262345,"y":42.617},{"x":1755157202216,"y":41.209},{"x":1755157142094,"y":38.828},{"x":1755157081960,"y":39.109},{"x":1755157021836,"y":34.926},{"x":1755156961702,"y":41.508},{"x":1755156901580,"y":42.259},{"x":1755156841455,"y":49.511},{"x":1755156781326,"y":49.52},{"x":1755156721206,"y":57.227},{"x":1755156661067,"y":61.64},{"x":1755156600953,"y":54.322},{"x":1755156540808,"y":53.004},{"x":1755156480666,"y":44.479},{"x":1755156420525,"y":35.97},{"x":1755156360435,"y":42.78},{"x":1755156300204,"y":47.438},{"x":1755156242953,"y":45.806},{"x":1755156182840,"y":49.952},{"x":1755156122721,"y":50.081},{"x":1755156062605,"y":44.851},{"x":1755156002435,"y":38.111},{"x":1755155942314,"y":39.738},{"x":1755155882192,"y":37.327},{"x":1755155822061,"y":41.01},{"x":1755155761916,"y":38.395},{"x":1755155701785,"y":36.571},{"x":1755155641634,"y":35.578},{"x":1755155581465,"y":40.021},{"x":1755155521324,"y":39.468},{"x":1755155461207,"y":40.104},{"x":1755155401005,"y":39.496},{"x":1755155340875,"y":38.608},{"x":1755155280758,"y":63.007},{"x":1755155220669,"y":60.406},{"x":1755155160563,"y":64.027},{"x":1755155100469,"y":67.205},{"x":1755155040330,"y":61.639},{"x":1755154982976,"y":43.808},{"x":1755154922871,"y":45.224},{"x":1755154862744,"y":42.042},{"x":1755154802637,"y":54.35},{"x":1755154742388,"y":54.047},{"x":1755154682267,"y":47.527},{"x":1755154622142,"y":48.646},{"x":1755154562005,"y":50.749},{"x":1755154501879,"y":37.44},{"x":1755154441747,"y":39.066},{"x":1755154381623,"y":41.945},{"x":1755154321501,"y":44.918},{"x":1755154261377,"y":54.925},{"x":1755154201264,"y":54.326},{"x":1755154141121,"y":54.619},{"x":1755154080973,"y":50.969},{"x":1755154020839,"y":39.692},{"x":1755153960711,"y":44.347},{"x":1755153900649,"y":42.427},{"x":1755153840479,"y":40.084},{"x":1755153780319,"y":39.607},{"x":1755153723024,"y":54.366},{"x":1755153662889,"y":55.004},{"x":1755153602761,"y":59.887},{"x":1755153542630,"y":59.816},{"x":1755153482510,"y":56.52},{"x":1755153422387,"y":43.308},{"x":1755153362259,"y":41.791},{"x":1755153302138,"y":37.434},{"x":1755153241992,"y":39.805},{"x":1755153181871,"y":37.999},{"x":1755153121749,"y":38.612},{"x":1755153061622,"y":40.098},{"x":1755153001509,"y":37.876},{"x":1755152941364,"y":40.579},{"x":1755152881233,"y":60.138},{"x":1755152821110,"y":49.777},{"x":1755152760956,"y":75.589},{"x":1755152700805,"y":83.047},{"x":1755152640681,"y":99.804},{"x":1755152580597,"y":82.24},{"x":1755152520440,"y":74.149},{"x":1755152460287,"y":69.259},{"x":1755152402980,"y":70.339},{"x":1755152342854,"y":53.594},{"x":1755152282722,"y":67.574},{"x":1755152222608,"y":55.445},{"x":1755152162472,"y":74.934},{"x":1755152102344,"y":57.822},{"x":1755152042265,"y":67.13},{"x":1755151982086,"y":70.417},{"x":1755151921915,"y":44.42},{"x":1755151861773,"y":42.612},{"x":1755151801542,"y":42.748},{"x":1755151741416,"y":41.437},{"x":1755151681281,"y":43.522},{"x":1755151621159,"y":45.478},{"x":1755151561013,"y":43.543},{"x":1755151500892,"y":42.401},{"x":1755151440777,"y":51.388},{"x":1755151380655,"y":45.218},{"x":1755151320520,"y":44.948},{"x":1755151260608,"y":44.726},{"x":1755151200401,"y":55.056},{"x":1755151142914,"y":64.547},{"x":1755151082784,"y":68.072},{"x":1755151022663,"y":63.308},{"x":1755150962491,"y":62.71},{"x":1755150902360,"y":49.952},{"x":1755150842235,"y":43.33},{"x":1755150782101,"y":42.774},{"x":1755150721967,"y":40.963},{"x":1755150661841,"y":51.985},{"x":1755150601721,"y":51.904},{"x":1755150541600,"y":49.784},{"x":1755150481472,"y":53.575},{"x":1755150421352,"y":55.91},{"x":1755150361244,"y":42.908},{"x":1755150301167,"y":41.176},{"x":1755150240943,"y":41.484},{"x":1755150180813,"y":52.226},{"x":1755150120694,"y":52.226},{"x":1755150060575,"y":52.859},{"x":1755150000458,"y":54.754},{"x":1755149940279,"y":50.61},{"x":1755149883002,"y":38.682},{"x":1755149822879,"y":38.861},{"x":1755149762735,"y":41.622},{"x":1755149702614,"y":49.741},{"x":1755149642493,"y":50.558},{"x":1755149582372,"y":55.313},{"x":1755149522231,"y":57.532},{"x":1755149462107,"y":60.253},{"x":1755149401974,"y":59.873},{"x":1755149341823,"y":53.97},{"x":1755149281683,"y":53.635},{"x":1755149221543,"y":54.99},{"x":1755149161420,"y":57.15},{"x":1755149101292,"y":55.788},{"x":1755149041150,"y":55.434},{"x":1755148981006,"y":42.572},{"x":1755148920883,"y":42.409},{"x":1755148860756,"y":43.163},{"x":1755148800668,"y":43.547},{"x":1755148740519,"y":60.814},{"x":1755148680404,"y":64.993},{"x":1755148620178,"y":68.1},{"x":1755148562945,"y":69.424},{"x":1755148502825,"y":68.801},{"x":1755148442708,"y":56.669},{"x":1755148382562,"y":48.96},{"x":1755148322385,"y":43.04},{"x":1755148262253,"y":50.778},{"x":1755148202089,"y":50.3},{"x":1755148141943,"y":50.845},{"x":1755148081845,"y":53.041},{"x":1755148021695,"y":53.406},{"x":1755147961581,"y":54.152},{"x":1755147901461,"y":52.621},{"x":1755147841334,"y":54.856},{"x":1755147781200,"y":44.177},{"x":1755147721068,"y":46.553},{"x":1755147660936,"y":41.045},{"x":1755147601003,"y":46.721},{"x":1755147540624,"y":39.266},{"x":1755147480500,"y":48.911},{"x":1755147420361,"y":49.806},{"x":1755147360208,"y":56.369},{"x":1755147302933,"y":44.678},{"x":1755147242793,"y":45.493},{"x":1755147182669,"y":44.618},{"x":1755147122522,"y":41.201},{"x":1755147062392,"y":39.953},{"x":1755147002263,"y":38.884},{"x":1755146942140,"y":38.136},{"x":1755146882011,"y":39.246},{"x":1755146821883,"y":39.005},{"x":1755146761760,"y":42.731},{"x":1755146701636,"y":46.04},{"x":1755146641512,"y":40.362},{"x":1755146581389,"y":33.026},{"x":1755146521261,"y":36.132},{"x":1755146461130,"y":43.606},{"x":1755146400896,"y":41.814},{"x":1755146340725,"y":54.54},{"x":1755146280608,"y":49.967},{"x":1755146220456,"y":51.113},{"x":1755146160347,"y":38.149},{"x":1755146100303,"y":42.037},{"x":1755146042955,"y":30.91},{"x":1755145982838,"y":30.023},{"x":1755145922718,"y":27.401},{"x":1755145862576,"y":27.648},{"x":1755145802437,"y":26.41},{"x":1755145742302,"y":49.604},{"x":1755145682178,"y":54.637},{"x":1755145622048,"y":60.437},{"x":1755145561917,"y":58.987},{"x":1755145501788,"y":60.725},{"x":1755145441668,"y":38.88},{"x":1755145381538,"y":32.848},{"x":1755145322659,"y":46.487},{"x":1755145262528,"y":42.653},{"x":1755145202404,"y":43.24},{"x":1755145142275,"y":51.211},{"x":1755145082171,"y":53.152},{"x":1755145022012,"y":50.801},{"x":1755144961881,"y":53.504},{"x":1755144901771,"y":56.657},{"x":1755144841601,"y":56.357},{"x":1755144781434,"y":55.669},{"x":1755144721300,"y":28.852},{"x":1755144661150,"y":32.122},{"x":1755144601011,"y":30.48},{"x":1755144540886,"y":30.607},{"x":1755144480790,"y":31.726},{"x":1755144420633,"y":28.362},{"x":1755144360512,"y":33.722},{"x":1755144300382,"y":26.552},{"x":1755144240271,"y":30.133},{"x":1755144182935,"y":30.025},{"x":1755144122807,"y":36.732},{"x":1755144062673,"y":37.136},{"x":1755144002551,"y":51.16},{"x":1755143942380,"y":58.648},{"x":1755143882260,"y":58.279},{"x":1755143822137,"y":59.922},{"x":1755143761996,"y":57.665},{"x":1755143701880,"y":44.753},{"x":1755143641744,"y":33.17},{"x":1755143581624,"y":30.209},{"x":1755143521498,"y":28.45},{"x":1755143461367,"y":27.728},{"x":1755143401256,"y":27.304},{"x":1755143341131,"y":27.9},{"x":1755143280978,"y":31.366},{"x":1755143220858,"y":33.793},{"x":1755143160731,"y":31.987},{"x":1755143100678,"y":31.457},{"x":1755143040524,"y":33.785},{"x":1755142980355,"y":29.896},{"x":1755142920260,"y":29.327},{"x":1755142862724,"y":29.171},{"x":1755142802609,"y":28.817},{"x":1755142742498,"y":27.979},{"x":1755142682352,"y":30.485},{"x":1755142622222,"y":30.469},{"x":1755142562096,"y":41.285},{"x":1755142501968,"y":42.784},{"x":1755142441835,"y":40.744},{"x":1755142381707,"y":43.147},{"x":1755142321585,"y":32.016},{"x":1755142261452,"y":31.718},{"x":1755142201329,"y":32.029},{"x":1755142141187,"y":31.757},{"x":1755142081029,"y":32.255},{"x":1755142020899,"y":34.712},{"x":1755141960826,"y":32.791},{"x":1755141900652,"y":32.222},{"x":1755141840628,"y":31.718},{"x":1755141780387,"y":29.02},{"x":1755141720298,"y":32.005},{"x":1755141663003,"y":28.088},{"x":1755141602877,"y":27.727},{"x":1755141542755,"y":30.383},{"x":1755141482633,"y":30.283},{"x":1755141422504,"y":30.58},{"x":1755141362379,"y":29.914},{"x":1755141302251,"y":34.63},{"x":1755141242101,"y":33.943},{"x":1755141181921,"y":31.249},{"x":1755141121798,"y":41.261},{"x":1755141061622,"y":45.624},{"x":1755141001495,"y":42.678},{"x":1755140941368,"y":44.742},{"x":1755140881244,"y":43.118},{"x":1755140821125,"y":34.279},{"x":1755140760994,"y":34.59},{"x":1755140700882,"y":33.41},{"x":1755140640749,"y":32.584},{"x":1755140580560,"y":32.16},{"x":1755140520514,"y":30.518},{"x":1755140463055,"y":29.515},{"x":1755140402163,"y":33.364},{"x":1755140341794,"y":28.516},{"x":1755140281673,"y":29.874},{"x":1755140221548,"y":32.374},{"x":1755140161432,"y":30.271},{"x":1755140101309,"y":30.908},{"x":1755140041178,"y":35.798},{"x":1755139981053,"y":32.8},{"x":1755139920915,"y":40.927},{"x":1755139860795,"y":38.994},{"x":1755139800699,"y":38.918},{"x":1755139740564,"y":42.572},{"x":1755139680376,"y":36.317},{"x":1755139622983,"y":31.637},{"x":1755139562858,"y":36.484},{"x":1755139502732,"y":35.234},{"x":1755139442611,"y":34.876},{"x":1755139382489,"y":36.89},{"x":1755139322370,"y":33.335},{"x":1755139262248,"y":33.941},{"x":1755139202086,"y":31.44},{"x":1755139141934,"y":32.137},{"x":1755139081804,"y":36.846},{"x":1755139021682,"y":30.672},{"x":1755138961551,"y":30.212},{"x":1755138901431,"y":31.366},{"x":1755138841304,"y":42.25},{"x":1755138781183,"y":49.327},{"x":1755138721050,"y":45.952},{"x":1755138660909,"y":43.424},{"x":1755138600820,"y":40.746},{"x":1755138540649,"y":30.479},{"x":1755138480577,"y":29.548},{"x":1755138420409,"y":33.484},{"x":1755138360324,"y":32.203},{"x":1755138303030,"y":28.541},{"x":1755138242878,"y":31.297},{"x":1755138182747,"y":31.106},{"x":1755138122648,"y":37.818},{"x":1755138062489,"y":35.077},{"x":1755138002367,"y":33.836},{"x":1755137942236,"y":31.37},{"x":1755137882101,"y":31.952},{"x":1755137821884,"y":33.69},{"x":1755137761751,"y":39.034},{"x":1755137701634,"y":45.115},{"x":1755137641520,"y":47.774},{"x":1755137581372,"y":43.085},{"x":1755137521258,"y":41.803},{"x":1755137461094,"y":45.676},{"x":1755137400990,"y":31.048},{"x":1755137340810,"y":30.241},{"x":1755137280687,"y":30.617},{"x":1755137220568,"y":31.805},{"x":1755137160421,"y":30.253},{"x":1755137100249,"y":30.7},{"x":1755137042981,"y":29.172},{"x":1755136982846,"y":27.43},{"x":1755136922709,"y":30.234},{"x":1755136862573,"y":30.541},{"x":1755136802494,"y":34.44},{"x":1755136742320,"y":38.302},{"x":1755136682190,"y":37.682},{"x":1755136622069,"y":38.18},{"x":1755136561942,"y":48.395},{"x":1755136501818,"y":45.107},{"x":1755136441685,"y":33.36},{"x":1755136381555,"y":35.761},{"x":1755136321436,"y":33.422},{"x":1755136261312,"y":32.496},{"x":1755136201193,"y":32.804},{"x":1755136141055,"y":31.939},{"x":1755136080911,"y":28.814},{"x":1755136020794,"y":28.874},{"x":1755135960667,"y":28.703},{"x":1755135900568,"y":27.187},{"x":1755135840276,"y":27.072},{"x":1755135780090,"y":30.538},{"x":1755135722894,"y":32.893},{"x":1755135662773,"y":33.865},{"x":1755135602650,"y":33.84},{"x":1755135542545,"y":31.331},{"x":1755135482407,"y":34.001},{"x":1755135422284,"y":29.503},{"x":1755135362138,"y":29.755},{"x":1755135301981,"y":28.955},{"x":1755135241857,"y":29.328},{"x":1755135181736,"y":29.051},{"x":1755135121613,"y":32.455},{"x":1755135061489,"y":32.232},{"x":1755135001368,"y":32.231},{"x":1755134941237,"y":31.927},{"x":1755134881107,"y":37.147},{"x":1755134820956,"y":40.718},{"x":1755134760835,"y":32.358},{"x":1755134700718,"y":30.337},{"x":1755134640587,"y":27.574},{"x":1755134580428,"y":27.916},{"x":1755134520276,"y":32.627},{"x":1755134463003,"y":28.589},{"x":1755134402881,"y":28.613},{"x":1755134342755,"y":30.643},{"x":1755134282629,"y":33.204},{"x":1755134222502,"y":34.936},{"x":1755134162362,"y":39.312},{"x":1755134102229,"y":31.35},{"x":1755134042107,"y":29.746},{"x":1755133981976,"y":28.654},{"x":1755133921806,"y":28.038},{"x":1755133861670,"y":42.877},{"x":1755133801494,"y":39.41},{"x":1755133741372,"y":50.058},{"x":1755133681239,"y":50.996},{"x":1755133621118,"y":53.077},{"x":1755133560961,"y":38.098},{"x":1755133500843,"y":41.908},{"x":1755133440729,"y":35.443},{"x":1755133380584,"y":37.064},{"x":1755133320474,"y":36.988},{"x":1755133260367,"y":35.726},{"x":1755133202990,"y":34.204},{"x":1755133142859,"y":34.976},{"x":1755133082737,"y":34.345},{"x":1755133022610,"y":33.719},{"x":1755132962487,"y":33.858},{"x":1755132902344,"y":32.052},{"x":1755132842229,"y":49.874},{"x":1755132782104,"y":45.538},{"x":1755132721971,"y":44.923},{"x":1755132661837,"y":44.279},{"x":1755132601716,"y":47.148},{"x":1755132541591,"y":35.636},{"x":1755132481460,"y":33.509},{"x":1755132421337,"y":32.894},{"x":1755132361213,"y":32.742},{"x":1755132301100,"y":29.686},{"x":1755132240940,"y":30.44},{"x":1755132180815,"y":35.071},{"x":1755132120694,"y":30.655},{"x":1755132060581,"y":34.812},{"x":1755132000528,"y":34.93},{"x":1755131940324,"y":33.706},{"x":1755131883022,"y":36.163},{"x":1755131822889,"y":35.086},{"x":1755131762765,"y":38.599},{"x":1755131702625,"y":36.726},{"x":1755131642505,"y":36.908},{"x":1755131582384,"y":35.573},{"x":1755131522268,"y":42.973},{"x":1755131462149,"y":32.94},{"x":1755131402021,"y":32.464},{"x":1755131341893,"y":30.344},{"x":1755131281774,"y":30.808},{"x":1755131221634,"y":33.83},{"x":1755131161509,"y":27.696},{"x":1755131101390,"y":27.739},{"x":1755131041250,"y":31.43},{"x":1755130981124,"y":31.985},{"x":1755130920990,"y":32.322},{"x":1755130860854,"y":32.519},{"x":1755130800765,"y":34.908},{"x":1755130740584,"y":29.18},{"x":1755130680456,"y":29.155},{"x":1755130620328,"y":28.838},{"x":1755130563015,"y":36.049},{"x":1755130502904,"y":34.825},{"x":1755130442753,"y":34.14},{"x":1755130382601,"y":30.793},{"x":1755130322472,"y":34.318},{"x":1755130262337,"y":38.31},{"x":1755130202166,"y":33.937},{"x":1755130142035,"y":33.415},{"x":1755130081895,"y":34.174},{"x":1755130021761,"y":33.487},{"x":1755129961634,"y":29.822},{"x":1755129901505,"y":28.422},{"x":1755129841386,"y":28.277},{"x":1755129781266,"y":29.192},{"x":1755129721128,"y":28.87},{"x":1755129661005,"y":29.554},{"x":1755129600958,"y":33.772},{"x":1755129540736,"y":34.079},{"x":1755129480625,"y":34.181},{"x":1755129420499,"y":56.208},{"x":1755129360354,"y":54.101},{"x":1755129300238,"y":55.877},{"x":1755129242906,"y":54.798},{"x":1755129182779,"y":49.964},{"x":1755129122668,"y":27.226},{"x":1755129062537,"y":30.707},{"x":1755129002405,"y":29.37},{"x":1755128942288,"y":34.241},{"x":1755128882156,"y":30.442},{"x":1755128822027,"y":36.572},{"x":1755128761890,"y":33.631},{"x":1755128701791,"y":32.191},{"x":1755128641641,"y":40.043},{"x":1755128581509,"y":33.826},{"x":1755128521388,"y":31.205},{"x":1755128461262,"y":31.589},{"x":1755128401142,"y":31.927},{"x":1755128340997,"y":32.233},{"x":1755128280869,"y":31.052},{"x":1755128220744,"y":30.412},{"x":1755128160625,"y":29.311},{"x":1755128100491,"y":29.573},{"x":1755128040380,"y":32.696},{"x":1755127983014,"y":47.822},{"x":1755127922889,"y":42.845},{"x":1755127862767,"y":44.412},{"x":1755127802577,"y":44.345},{"x":1755127742448,"y":42.412},{"x":1755127682318,"y":34.036},{"x":1755127622193,"y":31.097},{"x":1755127562070,"y":30.732},{"x":1755127501939,"y":27.716},{"x":1755127441814,"y":27.509},{"x":1755127381693,"y":27.469},{"x":1755127321566,"y":27.697},{"x":1755127261440,"y":28.679},{"x":1755127201320,"y":29.132},{"x":1755127141192,"y":31.867},{"x":1755127081065,"y":38.029},{"x":1755127020923,"y":41.528},{"x":1755126960802,"y":36.85},{"x":1755126900722,"y":32.767},{"x":1755126840526,"y":31.266},{"x":1755126780388,"y":30.922},{"x":1755126720305,"y":37.36},{"x":1755126662964,"y":33.596},{"x":1755126602814,"y":30.042},{"x":1755126542688,"y":30.673},{"x":1755126482569,"y":29.808},{"x":1755126422432,"y":30.84},{"x":1755126362312,"y":41.632},{"x":1755126302178,"y":39.284},{"x":1755126242051,"y":42.932},{"x":1755126181920,"y":42.395},{"x":1755126121792,"y":42.754},{"x":1755126061663,"y":35.868},{"x":1755126001618,"y":29.808},{"x":1755125941384,"y":29.185},{"x":1755125881256,"y":28.744},{"x":1755125821133,"y":28.525},{"x":1755125760989,"y":32.21},{"x":1755125700872,"y":27.49},{"x":1755125640747,"y":31.067},{"x":1755125580631,"y":31.074},{"x":1755125520544,"y":33.233},{"x":1755125460377,"y":40.838},{"x":1755125400312,"y":37.279},{"x":1755125340054,"y":37.416},{"x":1755125282900,"y":37.48},{"x":1755125222778,"y":49.944},{"x":1755125162649,"y":49.564},{"x":1755125102538,"y":48.241},{"x":1755125042418,"y":46.297},{"x":1755124982299,"y":41.648},{"x":1755124922164,"y":34.274},{"x":1755124862049,"y":32.993},{"x":1755124801907,"y":39.87},{"x":1755124741785,"y":35.324},{"x":1755124681661,"y":36.229},{"x":1755124621531,"y":36.624},{"x":1755124561410,"y":34.289},{"x":1755124501290,"y":36.056},{"x":1755124441154,"y":37.985},{"x":1755124381017,"y":36.907},{"x":1755124320912,"y":34.872},{"x":1755124260733,"y":32.528},{"x":1755124200659,"y":39.281},{"x":1755124140408,"y":34.949},{"x":1755124080233,"y":34.32},{"x":1755124022954,"y":34.165},{"x":1755123962830,"y":43.879},{"x":1755123902707,"y":48.106},{"x":1755123842575,"y":42.671},{"x":1755123782454,"y":40.501},{"x":1755123722322,"y":45.91},{"x":1755123662201,"y":35.344},{"x":1755123602073,"y":35.315},{"x":1755123541935,"y":34.843},{"x":1755123481810,"y":34.514},{"x":1755123421687,"y":33.438},{"x":1755123361543,"y":39.054},{"x":1755123301419,"y":35.708},{"x":1755123241297,"y":35.081},{"x":1755123181160,"y":32.61},{"x":1755123120982,"y":31.973},{"x":1755123060836,"y":36.96},{"x":1755123000721,"y":34.3},{"x":1755122940546,"y":33.449},{"x":1755122880491,"y":38.536},{"x":1755122820332,"y":40.86},{"x":1755122762997,"y":39.992},{"x":1755122702851,"y":39.848},{"x":1755122642725,"y":33.268},{"x":1755122582592,"y":31.414},{"x":1755122522467,"y":27.407},{"x":1755122462332,"y":39.82},{"x":1755122402228,"y":44.047},{"x":1756331940881,"y":27.881},{"x":1756331880749,"y":28.057},{"x":1756331820638,"y":28.547},{"x":1756331760552,"y":27.468},{"x":1756331700413,"y":30.506},{"x":1756331640279,"y":36.121},{"x":1756331582956,"y":35.068},{"x":1756331522836,"y":35.736},{"x":1756331462701,"y":33.827},{"x":1756331402587,"y":29.832},{"x":1756331342463,"y":28.403},{"x":1756331282329,"y":28.796},{"x":1756331222201,"y":26.55},{"x":1756331162078,"y":27.521},{"x":1756331101942,"y":27.719},{"x":1756331041813,"y":27.323},{"x":1756330981690,"y":27.354},{"x":1756330921547,"y":26.612},{"x":1756330861422,"y":28.127},{"x":1756330800874,"y":31.985},{"x":1756330740619,"y":33.19},{"x":1756330680537,"y":33.025},{"x":1756330620379,"y":31.747},{"x":1756330562855,"y":33.958},{"x":1756330502726,"y":28.789},{"x":1756330442601,"y":29.25},{"x":1756330382483,"y":31.631},{"x":1756330322336,"y":28.019},{"x":1756330262212,"y":35.186},{"x":1756330202084,"y":33.996},{"x":1756330141937,"y":35.758},{"x":1756330081819,"y":36.235},{"x":1756330021683,"y":35.37},{"x":1756329961517,"y":41.813},{"x":1756329901108,"y":34.271},{"x":1756329840956,"y":30.677},{"x":1756329780827,"y":29.476},{"x":1756329720691,"y":26.308},{"x":1756329660614,"y":33.971},{"x":1756329600525,"y":29.75},{"x":1756329540283,"y":30.301},{"x":1756329482921,"y":29.848},{"x":1756329422796,"y":30.078},{"x":1756329362472,"y":31.481},{"x":1756329302341,"y":29.525},{"x":1756329242204,"y":30.318},{"x":1756329182072,"y":30.995},{"x":1756329121891,"y":32.216},{"x":1756329061764,"y":33.846},{"x":1756329001603,"y":29.026},{"x":1756328941468,"y":31.139},{"x":1756328881340,"y":31.518},{"x":1756328821217,"y":35.846},{"x":1756328761095,"y":42.829},{"x":1756328700955,"y":38.063},{"x":1756328640824,"y":35.894},{"x":1756328580693,"y":34.741},{"x":1756328520603,"y":31.252},{"x":1756328460547,"y":37.584},{"x":1756328401678,"y":29.309},{"x":1756328341019,"y":31.741},{"x":1756328280890,"y":33.805},{"x":1756328220770,"y":33.643},{"x":1756328160650,"y":34.458},{"x":1756328100522,"y":32.225},{"x":1756328040394,"y":36.876},{"x":1756327980120,"y":38.29},{"x":1756327922903,"y":49.19},{"x":1756327862758,"y":52.661},{"x":1756327802616,"y":45.678},{"x":1756327742483,"y":43.589},{"x":1756327682361,"y":43.487},{"x":1756327622238,"y":33.122},{"x":1756327562114,"y":33.797},{"x":1756327501983,"y":34.669},{"x":1756327441874,"y":38.046},{"x":1756327381721,"y":39.28},{"x":1756327321578,"y":39.78},{"x":1756327261457,"y":39.054},{"x":1756327200852,"y":36.229},{"x":1756327140666,"y":36.094},{"x":1756327080560,"y":32.724},{"x":1756327020426,"y":29.47},{"x":1756326960405,"y":30.629},{"x":1756326900112,"y":30.088},{"x":1756326842768,"y":33.683},{"x":1756326782631,"y":36.506},{"x":1756326722505,"y":35.016},{"x":1756326662381,"y":34.31},{"x":1756326602254,"y":35.089},{"x":1756326542120,"y":32.87},{"x":1756326481968,"y":32.969},{"x":1756326421845,"y":35.718},{"x":1756326361724,"y":31.224},{"x":1756326301603,"y":31.637},{"x":1756326241477,"y":33.889},{"x":1756326181357,"y":33.305},{"x":1756326121232,"y":38.684},{"x":1756326061092,"y":31.739},{"x":1756326000980,"y":31.673},{"x":1756325940805,"y":30.187},{"x":1756325880682,"y":31.38},{"x":1756325820627,"y":39.623},{"x":1756325760526,"y":35.422},{"x":1756325700464,"y":35.314},{"x":1756325640230,"y":49.004},{"x":1756325582918,"y":57.702},{"x":1756325522825,"y":61.895},{"x":1756325462617,"y":56.425},{"x":1756325402479,"y":54.391},{"x":1756325342352,"y":40.927},{"x":1756325282222,"y":32.851},{"x":1756325222087,"y":34.95},{"x":1756325161507,"y":33.714},{"x":1756325101385,"y":32.116},{"x":1756325041253,"y":38.198},{"x":1756324981132,"y":37.804},{"x":1756324920987,"y":36.062},{"x":1756324860892,"y":38.359},{"x":1756324800397,"y":35.405},{"x":1756324742971,"y":31.585},{"x":1756324682871,"y":49.918},{"x":1756324622705,"y":40.97},{"x":1756324562566,"y":57.022},{"x":1756324502437,"y":40.734},{"x":1756324442181,"y":56.656},{"x":1756324382050,"y":33.346},{"x":1756324321918,"y":49.232},{"x":1756324261656,"y":40.361},{"x":1756324200945,"y":38.581},{"x":1756324140820,"y":55.423},{"x":1756324080794,"y":56.335},{"x":1756324020559,"y":33.488},{"x":1756323960450,"y":47.881},{"x":1756323900408,"y":59.76},{"x":1756323842973,"y":40.134},{"x":1756323782836,"y":40.927},{"x":1756323722704,"y":41.78},{"x":1756323662561,"y":39.635},{"x":1756323602446,"y":42.12},{"x":1756323542290,"y":39.043},{"x":1756323482165,"y":38.741},{"x":1756323422007,"y":37.246},{"x":1756323361236,"y":37.387},{"x":1756323301120,"y":29.38},{"x":1756323240951,"y":41.396},{"x":1756323180829,"y":43.4},{"x":1756323120747,"y":46.59},{"x":1756323060540,"y":46.248},{"x":1756323000505,"y":49.524},{"x":1756322940133,"y":48.787},{"x":1756322882864,"y":47.707},{"x":1756322822736,"y":36.084},{"x":1756322762591,"y":36.65},{"x":1756322702463,"y":37.541},{"x":1756322642328,"y":33.992},{"x":1756322582207,"y":32.798},{"x":1756322522088,"y":32.975},{"x":1756322461357,"y":33.288},{"x":1756322401246,"y":38.405},{"x":1756322341023,"y":37.046},{"x":1756322280899,"y":36.611},{"x":1756322220779,"y":33.338},{"x":1756322160670,"y":33.422},{"x":1756322100505,"y":34.75},{"x":1756322040379,"y":31.193},{"x":1756321980312,"y":33.866},{"x":1756321922864,"y":36.547},{"x":1756321862690,"y":46.806},{"x":1756321802547,"y":51.952},{"x":1756321742415,"y":56.796},{"x":1756321682302,"y":70.145},{"x":1756321622156,"y":64.83},{"x":1756321561990,"y":65.034},{"x":1756321501854,"y":66.242},{"x":1756321441584,"y":52.721},{"x":1756321381469,"y":49.17},{"x":1756321321347,"y":44.024},{"x":1756321261213,"y":48.042},{"x":1756321200491,"y":44.348},{"x":1756321142913,"y":43.681},{"x":1756321082786,"y":44.693},{"x":1756321022652,"y":44.472},{"x":1756320962514,"y":47.251},{"x":1756320902381,"y":53.238},{"x":1756320842241,"y":50.832},{"x":1756320782095,"y":55.313},{"x":1756320721952,"y":51.678},{"x":1756320661682,"y":44.755},{"x":1756320601045,"y":43.529},{"x":1756320540902,"y":44.489},{"x":1756320480781,"y":43.837},{"x":1756320420646,"y":48.828},{"x":1756320360539,"y":61.48},{"x":1756320300533,"y":58.088},{"x":1756320240184,"y":58.198},{"x":1756320182912,"y":55.831},{"x":1756320122787,"y":67.381},{"x":1756320062662,"y":42.211},{"x":1756320002538,"y":43.114},{"x":1756319942403,"y":43.362},{"x":1756319882269,"y":39.059},{"x":1756319822134,"y":43.367},{"x":1756319761989,"y":39.884},{"x":1756319701859,"y":42.095},{"x":1756319641680,"y":46.517},{"x":1756319581532,"y":46.886},{"x":1756319521402,"y":64.442},{"x":1756319461271,"y":42.786},{"x":1756319401161,"y":43.432},{"x":1756319340997,"y":45.928},{"x":1756319280871,"y":53.404},{"x":1756319220743,"y":55.042},{"x":1756319160625,"y":49.876},{"x":1756319100532,"y":47.238},{"x":1756319040524,"y":55.04},{"x":1756318980313,"y":64.616},{"x":1756318922926,"y":68.25},{"x":1756318862791,"y":63.312},{"x":1756318802664,"y":65.087},{"x":1756318742534,"y":55.548},{"x":1756318682412,"y":41.92},{"x":1756318622291,"y":44.952},{"x":1756318562152,"y":41.603},{"x":1756318502042,"y":46.079},{"x":1756318441892,"y":45.301},{"x":1756318381775,"y":56.155},{"x":1756318321607,"y":60.858},{"x":1756318261441,"y":58.147},{"x":1756318200799,"y":55.54},{"x":1756318140626,"y":57.976},{"x":1756318082920,"y":48.912},{"x":1756318022797,"y":53.526},{"x":1756317962661,"y":46.844},{"x":1756317902538,"y":60.46},{"x":1756317842404,"y":55.541},{"x":1756317782269,"y":70.984},{"x":1756317722141,"y":57.521},{"x":1756317662007,"y":40.28},{"x":1756317601759,"y":40.601},{"x":1756317541151,"y":42.904},{"x":1756317480991,"y":41.863},{"x":1756317420871,"y":48.958},{"x":1756317360732,"y":44.172},{"x":1756317300641,"y":47.46},{"x":1756317240392,"y":45.152},{"x":1756317180245,"y":46.097},{"x":1756317122957,"y":44.884},{"x":1756317062812,"y":38.478},{"x":1756317002701,"y":56.777},{"x":1756316942553,"y":43.618},{"x":1756316882440,"y":39.54},{"x":1756316822309,"y":45.144},{"x":1756316762190,"y":40.626},{"x":1756316702053,"y":44.662},{"x":1756316641915,"y":56.531},{"x":1756316581778,"y":64.766},{"x":1756316521647,"y":65.226},{"x":1756316461527,"y":64.324},{"x":1756316401404,"y":61.345},{"x":1756316341280,"y":57.056},{"x":1756316281153,"y":39.745},{"x":1756316221029,"y":41.72},{"x":1756316160890,"y":37.085},{"x":1756316100786,"y":44.593},{"x":1756316040640,"y":44.55},{"x":1756315980603,"y":58.007},{"x":1756315920456,"y":54.194},{"x":1756315860372,"y":52.936},{"x":1756315802999,"y":50.815},{"x":1756315742875,"y":49.412},{"x":1756315682750,"y":43.046},{"x":1756315622593,"y":38.702},{"x":1756315562458,"y":42.594},{"x":1756315502339,"y":50.573},{"x":1756315442200,"y":61.711},{"x":1756315382075,"y":56.509},{"x":1756315321923,"y":55.771},{"x":1756315261256,"y":50.269},{"x":1756315201133,"y":39.281},{"x":1756315140964,"y":39.779},{"x":1756315080840,"y":36.587},{"x":1756315020746,"y":50.309},{"x":1756314960610,"y":37.229},{"x":1756314900469,"y":35.058},{"x":1756314840246,"y":43.069},{"x":1756314782875,"y":39.461},{"x":1756314722713,"y":37.831},{"x":1756314662555,"y":51.011},{"x":1756314602386,"y":40.116},{"x":1756314542254,"y":34.974},{"x":1756314482119,"y":33.938},{"x":1756314421977,"y":26.418},{"x":1756314361822,"y":32.794},{"x":1756314301647,"y":35.573},{"x":1756314241511,"y":34.426},{"x":1756314181387,"y":55.405},{"x":1756314121253,"y":52.621},{"x":1756314061125,"y":56.328},{"x":1756314000364,"y":60.528},{"x":1756313942904,"y":57.832},{"x":1756313882779,"y":30.545},{"x":1756313822655,"y":29.761},{"x":1756313762524,"y":30.917},{"x":1756313702391,"y":34.458},{"x":1756313642279,"y":33.797},{"x":1756313582143,"y":44.232},{"x":1756313522005,"y":43.939},{"x":1756313461601,"y":42.719},{"x":1756313400842,"y":46.777},{"x":1756313340694,"y":40.636},{"x":1756313280682,"y":28.826},{"x":1756313220493,"y":30.551},{"x":1756313160372,"y":29.866},{"x":1756313100315,"y":24.665},{"x":1756313042885,"y":24.821},{"x":1756312982755,"y":55.514},{"x":1756312922646,"y":41.658},{"x":1756312862490,"y":39.684},{"x":1756312802366,"y":41.556},{"x":1756312742242,"y":39.509},{"x":1756312682121,"y":28.608},{"x":1756312621990,"y":30.882},{"x":1756312561449,"y":49.944},{"x":1756312501317,"y":43.232},{"x":1756312441192,"y":56.202},{"x":1756312381053,"y":39.169},{"x":1756312320919,"y":42.551},{"x":1756312260793,"y":39.842},{"x":1756312200721,"y":30.766},{"x":1756312140558,"y":33.653},{"x":1756312080473,"y":31.854},{"x":1756312020254,"y":31.704},{"x":1756311962941,"y":27.709},{"x":1756311902814,"y":32.116},{"x":1756311842642,"y":28.012},{"x":1756311782519,"y":47.112},{"x":1756311722385,"y":30.116},{"x":1756311661375,"y":34.067},{"x":1756311601245,"y":28.327},{"x":1756311540935,"y":29.272},{"x":1756311480810,"y":22.89},{"x":1756311420723,"y":34.986},{"x":1756311360673,"y":42.434},{"x":1756311300421,"y":49.519},{"x":1756311240284,"y":50.836},{"x":1756311182902,"y":52.898},{"x":1756311122743,"y":40.283},{"x":1756311062568,"y":40.753},{"x":1756311002420,"y":28.618},{"x":1756310942284,"y":25.855},{"x":1756310882157,"y":35.611},{"x":1756310822029,"y":32.537},{"x":1756310761883,"y":41.538},{"x":1756310701744,"y":40.915},{"x":1756310641612,"y":55.234},{"x":1756310581466,"y":39.721},{"x":1756310521321,"y":32.293},{"x":1756310461200,"y":22.271},{"x":1756310401934,"y":28.529},{"x":1756310341747,"y":32.272},{"x":1756310281615,"y":38.963},{"x":1756310221493,"y":45.358},{"x":1756310161363,"y":41.989},{"x":1756310100775,"y":40.925},{"x":1756310040643,"y":37.511},{"x":1756309980546,"y":25.391},{"x":1756309920432,"y":28.466},{"x":1756309860345,"y":24.518},{"x":1756309802978,"y":23.664},{"x":1756309742825,"y":40.366},{"x":1756309682700,"y":25.363},{"x":1756309622570,"y":30.514},{"x":1756309562433,"y":32.046},{"x":1756309502296,"y":31.571},{"x":1756309442105,"y":32.138},{"x":1756309381960,"y":45.647},{"x":1756309321832,"y":47.731},{"x":1756309261696,"y":40.691},{"x":1756309201570,"y":36.22},{"x":1756309141432,"y":32.471},{"x":1756309081302,"y":41.048},{"x":1756309021168,"y":22.284},{"x":1756308961032,"y":19.013},{"x":1756308900907,"y":35.466},{"x":1756308840759,"y":36.19},{"x":1756308780645,"y":46.922},{"x":1756308720507,"y":39.124},{"x":1756308660392,"y":41.68},{"x":1756308600271,"y":31.084},{"x":1756308542958,"y":29.104},{"x":1756308482829,"y":42.106},{"x":1756308422704,"y":23.369},{"x":1756308362569,"y":22.793},{"x":1756308302430,"y":32.676},{"x":1756308242298,"y":27.074},{"x":1756308182174,"y":35.132},{"x":1756308122038,"y":27.37},{"x":1756308061525,"y":26.7},{"x":1756308001388,"y":22.955},{"x":1756307941256,"y":47.986},{"x":1756307881126,"y":56.503},{"x":1756307820984,"y":52.897},{"x":1756307760867,"y":50.828},{"x":1756307700753,"y":52.013},{"x":1756307640638,"y":25.525},{"x":1756307580394,"y":28.139},{"x":1756307522920,"y":25.795},{"x":1756307462778,"y":31.434},{"x":1756307402630,"y":34.22},{"x":1756307342482,"y":37.427},{"x":1756307282357,"y":35.017},{"x":1756307222233,"y":34.204},{"x":1756307162104,"y":29.759},{"x":1756307101966,"y":30.898},{"x":1756307041833,"y":25.924},{"x":1756306981710,"y":32.866},{"x":1756306921586,"y":39.488},{"x":1756306861470,"y":35.626},{"x":1756306800402,"y":35.399},{"x":1756306742993,"y":37.571},{"x":1756306682854,"y":34.15},{"x":1756306622757,"y":24.262},{"x":1756306562591,"y":24.66},{"x":1756306502459,"y":25.703},{"x":1756306442330,"y":25.373},{"x":1756306382198,"y":25.644},{"x":1756306322070,"y":22.057},{"x":1756306261863,"y":31.471},{"x":1756306201728,"y":32.336},{"x":1756306141598,"y":25.854},{"x":1756306081472,"y":28.354},{"x":1756306021348,"y":29.551},{"x":1756305961226,"y":29.128},{"x":1756305901141,"y":35.395},{"x":1756305840898,"y":52.68},{"x":1756305780776,"y":44.95},{"x":1756305720661,"y":60.164},{"x":1756305660540,"y":49.82},{"x":1756305600510,"y":34.542},{"x":1756305540302,"y":41.783},{"x":1756305483003,"y":44.299},{"x":1756305422799,"y":21.28},{"x":1756305362661,"y":44.248},{"x":1756305302538,"y":28.01},{"x":1756305242412,"y":29.599},{"x":1756305182286,"y":33.451},{"x":1756305122147,"y":34.351},{"x":1756305061996,"y":21.647},{"x":1756305001832,"y":21.446},{"x":1756304941680,"y":18.198},{"x":1756304881566,"y":10.825},{"x":1756304821433,"y":9.822},{"x":1756304761293,"y":19.576},{"x":1756304700964,"y":25.573},{"x":1756304640822,"y":26.173},{"x":1756304580700,"y":30.455},{"x":1756304520583,"y":38.858},{"x":1756304460472,"y":28.849},{"x":1756304400381,"y":30.821},{"x":1756304343012,"y":34.691},{"x":1756304282872,"y":39.565},{"x":1756304222754,"y":39.137},{"x":1756304162395,"y":40.724},{"x":1756304102264,"y":35.59},{"x":1756304042127,"y":40.307},{"x":1756303981932,"y":17.044},{"x":1756303921789,"y":16.261},{"x":1756303861484,"y":17.12},{"x":1756303800870,"y":16.366},{"x":1756303740596,"y":15.994},{"x":1756303680516,"y":27.017},{"x":1756303620222,"y":14.4},{"x":1756303562908,"y":12.085},{"x":1756303502758,"y":21.371},{"x":1756303442627,"y":19.235},{"x":1756303382491,"y":18.79},{"x":1756303322361,"y":14.3},{"x":1756303262227,"y":10.363},{"x":1756303200445,"y":17.52},{"x":1756303142942,"y":30.036},{"x":1756303082811,"y":35.285},{"x":1756303022701,"y":42.517},{"x":1756302962563,"y":52.682},{"x":1756302902435,"y":53.797},{"x":1756302842208,"y":50.096},{"x":1756302782078,"y":42.379},{"x":1756302721935,"y":40.364},{"x":1756302661650,"y":27.937},{"x":1756302600900,"y":31.387},{"x":1756302540733,"y":23.843},{"x":1756302480751,"y":26.508},{"x":1756302420522,"y":43.895},{"x":1756302360353,"y":43.938},{"x":1756302300446,"y":56.135},{"x":1756302242943,"y":36.106},{"x":1756302182825,"y":36.241},{"x":1756302122697,"y":35.514},{"x":1756302062569,"y":26.489},{"x":1756302002443,"y":40.829},{"x":1756301942322,"y":12.212},{"x":1756301882192,"y":10.16},{"x":1756301822053,"y":23.612},{"x":1756301761919,"y":33.898},{"x":1756301701803,"y":35.276},{"x":1756301641658,"y":52.736},{"x":1756301581537,"y":36.194},{"x":1756301521406,"y":45.912},{"x":1756301461291,"y":23.681},{"x":1756301401178,"y":27.598},{"x":1756301341014,"y":22.976},{"x":1756301280896,"y":19.534},{"x":1756301220750,"y":24.203},{"x":1756301160632,"y":24.902},{"x":1756301100594,"y":21.973},{"x":1756301040319,"y":29.928},{"x":1756300980290,"y":31.32},{"x":1756300922912,"y":30.043},{"x":1756300862666,"y":33.083},{"x":1756300802537,"y":30.156},{"x":1756300742389,"y":23.11},{"x":1756300682266,"y":36.313},{"x":1756300622146,"y":46.051},{"x":1756300561998,"y":59.767},{"x":1756300501876,"y":63.632},{"x":1756300441757,"y":66.284},{"x":1756300381612,"y":54.21},{"x":1756300321475,"y":46.609},{"x":1756300261297,"y":56.204},{"x":1756300200978,"y":41.466},{"x":1756300140769,"y":38.017},{"x":1756300080695,"y":45.604},{"x":1756300020568,"y":50.311},{"x":1756299960529,"y":42.221},{"x":1756299900285,"y":40.294},{"x":1756299842927,"y":53.749},{"x":1756299782806,"y":24.476},{"x":1756299722689,"y":29.68},{"x":1756299662583,"y":29.86},{"x":1756299600494,"y":28.675},{"x":1756299542936,"y":28.988},{"x":1756299482808,"y":30.737},{"x":1756299422679,"y":28.416},{"x":1756299362526,"y":30.422},{"x":1756299302395,"y":28.734},{"x":1756299242255,"y":25.189},{"x":1756299182120,"y":26.97},{"x":1756299121987,"y":31.504},{"x":1756299061623,"y":25.637},{"x":1756299001061,"y":23.861},{"x":1756298940914,"y":24.629},{"x":1756298880809,"y":36.306},{"x":1756298820669,"y":44.958},{"x":1756298760563,"y":44.092},{"x":1756298700635,"y":57.192},{"x":1756298642915,"y":53.371},{"x":1756298582784,"y":40.091},{"x":1756298522669,"y":39.36},{"x":1756298462537,"y":38.064},{"x":1756298402403,"y":39.839},{"x":1756298342259,"y":57.662},{"x":1756298282131,"y":54.614},{"x":1756298221983,"y":43.492},{"x":1756298161424,"y":48.713},{"x":1756298101301,"y":50.47},{"x":1756298041161,"y":30.978},{"x":1756297981020,"y":23.612},{"x":1756297920896,"y":20.58},{"x":1756297860754,"y":19.184},{"x":1756297800754,"y":30.948},{"x":1756297740533,"y":36.548},{"x":1756297680363,"y":36.288},{"x":1756297622923,"y":35.201},{"x":1756297562797,"y":37.55},{"x":1756297502660,"y":31.806},{"x":1756297442386,"y":29.159},{"x":1756297382268,"y":36.097},{"x":1756297322139,"y":53.226},{"x":1756297261238,"y":38.905},{"x":1756297201096,"y":35.052},{"x":1756297140941,"y":48.866},{"x":1756297080810,"y":36.146},{"x":1756297020721,"y":23.316},{"x":1756296960668,"y":20.908},{"x":1756296900574,"y":26.225},{"x":1756296840203,"y":17.165},{"x":1756296782975,"y":15.589},{"x":1756296722788,"y":13.184},{"x":1756296662618,"y":7.208},{"x":1756296602462,"y":9.49},{"x":1756296542329,"y":8.959},{"x":1756296482201,"y":16.952},{"x":1756296422071,"y":13.346},{"x":1756296361915,"y":30.972},{"x":1756296301826,"y":21.901},{"x":1756296241653,"y":17.585},{"x":1756296181523,"y":12.053},{"x":1756296121401,"y":7.976},{"x":1756296061282,"y":15.203},{"x":1756296000497,"y":33.348},{"x":1756295940224,"y":10.355},{"x":1756295882901,"y":47.448},{"x":1756295822780,"y":30.666},{"x":1756295762659,"y":38.999},{"x":1756295702523,"y":44.783},{"x":1756295642388,"y":39.293},{"x":1756295582263,"y":29.221},{"x":1756295522138,"y":8.831},{"x":1756295462019,"y":16.672},{"x":1756295401864,"y":26.858},{"x":1756295341745,"y":26.472},{"x":1756295281612,"y":31.072},{"x":1756295221488,"y":28.7},{"x":1756295161360,"y":30.498},{"x":1756295101232,"y":26.778},{"x":1756295041020,"y":29.783},{"x":1756294980883,"y":30.215},{"x":1756294920746,"y":35.806},{"x":1756294860640,"y":21.338},{"x":1756294800500,"y":16.583},{"x":1756294740369,"y":15.644},{"x":1756294680190,"y":22.9},{"x":1756294622796,"y":21.035},{"x":1756294562676,"y":16.618},{"x":1756294502547,"y":30.967},{"x":1756294442422,"y":33.635},{"x":1756294382283,"y":35.06},{"x":1756294322155,"y":30.355},{"x":1756294262020,"y":34.871},{"x":1756294201681,"y":29.052},{"x":1756294141542,"y":20.322},{"x":1756294081419,"y":25.5},{"x":1756294021284,"y":33.658},{"x":1756293961147,"y":44.29},{"x":1756293900491,"y":36.234},{"x":1756293840422,"y":29.984},{"x":1756293780328,"y":26.242},{"x":1756293722921,"y":27.234},{"x":1756293661186,"y":13.078},{"x":1756293601069,"y":9.594},{"x":1756293540899,"y":13.909},{"x":1756293480772,"y":15.043},{"x":1756293420720,"y":20.893},{"x":1756293360560,"y":20.518},{"x":1756293300459,"y":14.948},{"x":1756293240257,"y":29.244},{"x":1756293182980,"y":13.609},{"x":1756293122812,"y":13.504},{"x":1756293062672,"y":21.816},{"x":1756293002524,"y":17.22},{"x":1756292942380,"y":21.446},{"x":1756292882248,"y":22.675},{"x":1756292822109,"y":28.412},{"x":1756292761970,"y":25.84},{"x":1756292701837,"y":29.3},{"x":1756292641695,"y":29.878},{"x":1756292581560,"y":36.422},{"x":1756292521449,"y":19.85},{"x":1756292461314,"y":37.451},{"x":1756292400422,"y":42.923},{"x":1756292342954,"y":36.684},{"x":1756292282825,"y":38.615},{"x":1756292222707,"y":37.306},{"x":1756292162597,"y":26.666},{"x":1756292102443,"y":19.318},{"x":1756292042317,"y":13.969},{"x":1756291982191,"y":14.623},{"x":1756291922064,"y":10.812},{"x":1756291861906,"y":10.111},{"x":1756291801781,"y":9.641},{"x":1756291741660,"y":17.441},{"x":1756291681532,"y":17.004},{"x":1756291621402,"y":24.612},{"x":1756291561286,"y":21.594},{"x":1756291501164,"y":20.417},{"x":1756291441004,"y":21.829},{"x":1756291380869,"y":27.71},{"x":1756291320780,"y":25.025},{"x":1756291260659,"y":21.222},{"x":1756291200591,"y":17.82},{"x":1756291140419,"y":28.369},{"x":1756291080231,"y":38.494},{"x":1756291022923,"y":32.588},{"x":1756290962792,"y":26.804},{"x":1756290902660,"y":32.388},{"x":1756290842523,"y":44.705},{"x":1756290782403,"y":40.828},{"x":1756290722262,"y":40.96},{"x":1756290662155,"y":54.958},{"x":1756290602018,"y":31.751},{"x":1756290541862,"y":36.492},{"x":1756290481720,"y":31.0},{"x":1756290421598,"y":43.015},{"x":1756290361468,"y":33.524},{"x":1756290300679,"y":34.906},{"x":1756290240511,"y":39.025},{"x":1756290180377,"y":42.916},{"x":1756290120272,"y":46.46},{"x":1756290062922,"y":44.299},{"x":1756290002790,"y":38.003},{"x":1756289948710,"y":42.534},{"x":1756289881118,"y":18.887},{"x":1756289820990,"y":24.912},{"x":1756289760848,"y":7.637},{"x":1756289700810,"y":5.566},{"x":1756289640573,"y":20.096},{"x":1756289580476,"y":18.428},{"x":1756289520239,"y":8.906},{"x":1756289462950,"y":28.308},{"x":1756289402773,"y":13.498},{"x":1756289342639,"y":8.731},{"x":1756289282510,"y":20.74},{"x":1756289222390,"y":23.838},{"x":1756289162266,"y":26.105},{"x":1756289102147,"y":32.851},{"x":1756289042029,"y":28.166},{"x":1756288981893,"y":19.049},{"x":1756288921760,"y":21.085},{"x":1756288861661,"y":21.904},{"x":1756288803068,"y":47.053},{"x":1756288742877,"y":26.779},{"x":1756288682760,"y":20.834},{"x":1756288622640,"y":33.796},{"x":1756288562509,"y":25.145},{"x":1756288502389,"y":39.902},{"x":1756288442260,"y":34.351},{"x":1756288382133,"y":47.992},{"x":1756288321999,"y":50.972},{"x":1756288261685,"y":28.314},{"x":1756288200980,"y":24.12},{"x":1756288140840,"y":22.387},{"x":1756288080734,"y":25.45},{"x":1756288020606,"y":12.085},{"x":1756287960461,"y":12.08},{"x":1756287900429,"y":16.021},{"x":1756287842981,"y":10.386},{"x":1756287782855,"y":32.597},{"x":1756287722710,"y":22.471},{"x":1756287662580,"y":17.576},{"x":1756287602456,"y":19.148},{"x":1756287542336,"y":25.027},{"x":1756287482194,"y":22.906},{"x":1756287422071,"y":15.445},{"x":1756287361925,"y":28.889},{"x":1756287301788,"y":30.395},{"x":1756287241657,"y":40.685},{"x":1756287181530,"y":31.682},{"x":1756287121401,"y":35.424},{"x":1756287061276,"y":34.052},{"x":1756287001124,"y":38.388},{"x":1756286940980,"y":22.322},{"x":1756286880854,"y":19.141},{"x":1756286820732,"y":14.471},{"x":1756286760620,"y":9.566},{"x":1756286700564,"y":32.896},{"x":1756286640371,"y":17.438},{"x":1756286582982,"y":15.74},{"x":1756286522860,"y":15.458},{"x":1756286462737,"y":23.444},{"x":1756286402605,"y":22.544},{"x":1756286342474,"y":22.343},{"x":1756286282348,"y":10.752},{"x":1756286222219,"y":11.213},{"x":1756286162081,"y":25.462},{"x":1756286101952,"y":36.25},{"x":1756286041822,"y":28.708},{"x":1756285981688,"y":41.359},{"x":1756285921490,"y":36.919},{"x":1756285861330,"y":32.969},{"x":1756285801018,"y":37.721},{"x":1756285740802,"y":33.437},{"x":1756285680693,"y":23.735},{"x":1756285620544,"y":30.052},{"x":1756285560455,"y":24.256},{"x":1756285443015,"y":26.938},{"x":1756285382884,"y":21.288},{"x":1756285322776,"y":23.034},{"x":1756285262608,"y":19.86},{"x":1756285200563,"y":16.768},{"x":1756285142984,"y":20.153},{"x":1756285082850,"y":20.064},{"x":1756285022728,"y":18.798},{"x":1756284962584,"y":21.956},{"x":1756284902463,"y":29.772},{"x":1756284842326,"y":26.329},{"x":1756284782199,"y":33.097},{"x":1756284722081,"y":40.471},{"x":1756284661668,"y":50.07},{"x":1756284600813,"y":50.557},{"x":1756284540676,"y":53.602},{"x":1756284480723,"y":21.35},{"x":1756284420422,"y":30.768},{"x":1756284360337,"y":27.097},{"x":1756284302962,"y":24.491},{"x":1756284242830,"y":25.598},{"x":1756284182703,"y":37.742},{"x":1756284122602,"y":17.509},{"x":1756284062457,"y":21.642},{"x":1756284002329,"y":27.024},{"x":1756283942177,"y":40.085},{"x":1756283882045,"y":40.058},{"x":1756283821881,"y":28.732},{"x":1756283761164,"y":30.275},{"x":1756283701039,"y":31.516},{"x":1756283640885,"y":22.441},{"x":1756283580764,"y":26.506},{"x":1756283520685,"y":24.462},{"x":1756283460507,"y":27.851},{"x":1756283400525,"y":29.729},{"x":1756283340239,"y":21.178},{"x":1756283282963,"y":18.984},{"x":1756283222850,"y":32.759},{"x":1756283162698,"y":27.329},{"x":1756283102574,"y":29.304},{"x":1756283042291,"y":28.531},{"x":1756282982160,"y":34.516},{"x":1756282922022,"y":23.891},{"x":1756282861379,"y":30.95},{"x":1756282801261,"y":21.892},{"x":1756282741131,"y":22.571},{"x":1756282680972,"y":30.215},{"x":1756282620855,"y":29.062},{"x":1756282560711,"y":29.118},{"x":1756282500670,"y":30.764},{"x":1756282440420,"y":24.995},{"x":1756282380190,"y":29.712},{"x":1756282322989,"y":27.728},{"x":1756282262830,"y":33.132},{"x":1756282202684,"y":29.388},{"x":1756282142548,"y":29.902},{"x":1756282082398,"y":27.4},{"x":1756282022263,"y":31.15},{"x":1756281962139,"y":27.427},{"x":1756281901998,"y":25.208},{"x":1756281841864,"y":29.807},{"x":1756281781736,"y":21.846},{"x":1756281721600,"y":26.876},{"x":1756281661482,"y":26.023},{"x":1756281602162,"y":41.849},{"x":1756281541902,"y":43.915},{"x":1756281481780,"y":36.047},{"x":1756281421652,"y":31.633},{"x":1756281361519,"y":40.811},{"x":1756281300708,"y":35.458},{"x":1756281240520,"y":21.733},{"x":1756281180410,"y":30.151},{"x":1756281120261,"y":28.487},{"x":1756281062992,"y":38.416},{"x":1756281002863,"y":23.927},{"x":1756280942735,"y":23.658},{"x":1756280882612,"y":22.429},{"x":1756280822485,"y":23.478},{"x":1756280762369,"y":25.915},{"x":1756280702225,"y":20.87},{"x":1756280642048,"y":36.0},{"x":1756280581914,"y":34.802},{"x":1756280521785,"y":40.129},{"x":1756280461661,"y":37.844},{"x":1756280401530,"y":34.918},{"x":1756280341417,"y":31.634},{"x":1756280281272,"y":34.507},{"x":1756280221148,"y":25.308},{"x":1756280160999,"y":32.572},{"x":1756280100887,"y":25.192},{"x":1756280040772,"y":18.808},{"x":1756279980628,"y":21.365},{"x":1756279920612,"y":26.55},{"x":1756279860413,"y":24.197},{"x":1756279800481,"y":22.544},{"x":1756279742913,"y":34.241},{"x":1756279682750,"y":25.562},{"x":1756279622615,"y":28.237},{"x":1756279562488,"y":30.263},{"x":1756279502375,"y":33.434},{"x":1756279442251,"y":29.543},{"x":1756279382121,"y":23.798},{"x":1756279321979,"y":25.344},{"x":1756279261231,"y":28.577},{"x":1756279201128,"y":28.424},{"x":1756279140965,"y":45.685},{"x":1756279080847,"y":35.562},{"x":1756279020803,"y":29.11},{"x":1756278960578,"y":23.197},{"x":1756278900446,"y":49.058},{"x":1756278840209,"y":23.804},{"x":1756278782910,"y":26.951},{"x":1756278722740,"y":26.131},{"x":1756278662576,"y":23.147},{"x":1756278602419,"y":23.108},{"x":1756278542283,"y":31.1},{"x":1756278482148,"y":24.728},{"x":1756278422033,"y":24.82},{"x":1756278361424,"y":27.012},{"x":1756278301295,"y":25.547},{"x":1756278241159,"y":27.425},{"x":1756278181023,"y":26.704},{"x":1756278120889,"y":24.35},{"x":1756278063779,"y":33.254},{"x":1756278000624,"y":32.0},{"x":1756277940325,"y":28.453},{"x":1756277880048,"y":32.9},{"x":1756277822880,"y":25.355},{"x":1756277762753,"y":25.465},{"x":1756277702623,"y":28.594},{"x":1756277642489,"y":27.052},{"x":1756277582372,"y":26.362},{"x":1756277522247,"y":30.497},{"x":1756277462113,"y":33.326},{"x":1756277401963,"y":34.614},{"x":1756277341817,"y":32.603},{"x":1756277281699,"y":31.141},{"x":1756277221563,"y":31.019},{"x":1756277161438,"y":26.455},{"x":1756277101318,"y":25.862},{"x":1756277041025,"y":24.862},{"x":1756276980884,"y":28.63},{"x":1756276920764,"y":30.031},{"x":1756276860628,"y":26.719},{"x":1756276800680,"y":28.537},{"x":1756276740364,"y":31.464},{"x":1756276682996,"y":28.855},{"x":1756276622822,"y":36.019},{"x":1756276562685,"y":40.007},{"x":1756276502551,"y":34.673},{"x":1756276442422,"y":36.424},{"x":1756276382282,"y":37.716},{"x":1756276322151,"y":36.478},{"x":1756276262004,"y":54.901},{"x":1756276201889,"y":34.081},{"x":1756276141731,"y":32.188},{"x":1756276081597,"y":33.564},{"x":1756276021465,"y":29.148},{"x":1756275961337,"y":32.095},{"x":1756275900649,"y":32.714},{"x":1756275840568,"y":26.126},{"x":1756275780310,"y":30.704},{"x":1756275722968,"y":40.535},{"x":1756275662848,"y":27.913},{"x":1756275602713,"y":44.687},{"x":1756275542572,"y":28.298},{"x":1756275482444,"y":44.677},{"x":1756275422345,"y":25.812},{"x":1756275362178,"y":37.234},{"x":1756275302038,"y":22.628},{"x":1756275241893,"y":36.43},{"x":1756275181743,"y":37.471},{"x":1756275121571,"y":37.813},{"x":1756275061435,"y":24.697},{"x":1756275000806,"y":24.562},{"x":1756274940593,"y":21.312},{"x":1756274882770,"y":24.607},{"x":1756274822638,"y":23.836},{"x":1756274762523,"y":24.234},{"x":1756274702473,"y":23.851},{"x":1756274642269,"y":22.885},{"x":1756274582142,"y":26.672},{"x":1756274521988,"y":27.641},{"x":1756274461864,"y":23.291},{"x":1756274400452,"y":23.888},{"x":1756274340240,"y":22.729},{"x":1756274282924,"y":20.906},{"x":1756274222806,"y":26.006},{"x":1756274162680,"y":19.037},{"x":1756274102558,"y":24.107},{"x":1756274042426,"y":25.321},{"x":1756273982291,"y":24.07},{"x":1756273922168,"y":35.994},{"x":1756273862038,"y":26.648},{"x":1756273801831,"y":25.876},{"x":1756273741668,"y":24.654},{"x":1756273681545,"y":22.397},{"x":1756273621425,"y":21.743},{"x":1756273561289,"y":25.649},{"x":1756273501181,"y":30.292},{"x":1756273440992,"y":23.663},{"x":1756273380856,"y":26.152},{"x":1756273320736,"y":25.676},{"x":1756273260635,"y":24.989},{"x":1756273200573,"y":29.249},{"x":1756273140415,"y":33.346},{"x":1756273080336,"y":32.758},{"x":1756273022967,"y":31.046},{"x":1756272962812,"y":34.322},{"x":1756272902689,"y":32.032},{"x":1756272842545,"y":29.708},{"x":1756272782402,"y":29.723},{"x":1756272722268,"y":28.422},{"x":1756272662137,"y":31.294},{"x":1756272602018,"y":26.046},{"x":1756272541873,"y":25.718},{"x":1756272481754,"y":25.11},{"x":1756272421608,"y":24.348},{"x":1756272361477,"y":30.68},{"x":1756272301339,"y":28.468},{"x":1756272241202,"y":28.69},{"x":1756272181061,"y":29.32},{"x":1756272120911,"y":27.426},{"x":1756272060729,"y":28.138},{"x":1756272000658,"y":28.141},{"x":1756271940414,"y":28.765},{"x":1756271880100,"y":26.948},{"x":1756271822888,"y":24.948},{"x":1756271762354,"y":27.778},{"x":1756271702216,"y":27.152},{"x":1756271642099,"y":27.797},{"x":1756271581904,"y":27.743},{"x":1756271521774,"y":24.006},{"x":1756271461574,"y":23.519},{"x":1756271401426,"y":30.488},{"x":1756271341297,"y":25.843},{"x":1756271281171,"y":29.099},{"x":1756271221045,"y":25.517},{"x":1756271160902,"y":28.147},{"x":1756271100803,"y":31.622},{"x":1756271040625,"y":26.692},{"x":1756270980415,"y":26.498},{"x":1756270920290,"y":32.58},{"x":1756270862950,"y":31.846},{"x":1756270801168,"y":35.31},{"x":1756270740965,"y":27.77},{"x":1756270680851,"y":28.1},{"x":1756270620719,"y":25.92},{"x":1756270560622,"y":25.925},{"x":1756270500559,"y":28.556},{"x":1756270440245,"y":28.89},{"x":1756270383018,"y":28.356},{"x":1756270322876,"y":27.29},{"x":1756270262740,"y":25.174},{"x":1756270202618,"y":27.833},{"x":1756270142495,"y":28.348},{"x":1756270082296,"y":28.65},{"x":1756270022169,"y":28.337},{"x":1756269962044,"y":26.968},{"x":1756269901910,"y":29.202},{"x":1756269841777,"y":32.55},{"x":1756269781651,"y":28.457},{"x":1756269721526,"y":28.884},{"x":1756269661402,"y":29.003},{"x":1756269601018,"y":26.881},{"x":1756269540873,"y":30.512},{"x":1756269480745,"y":26.207},{"x":1756269420640,"y":25.129},{"x":1756269360526,"y":26.128},{"x":1756269300400,"y":28.255},{"x":1756269240237,"y":37.892},{"x":1756269182910,"y":31.313},{"x":1756269122780,"y":31.404},{"x":1756269062647,"y":28.536},{"x":1756269002556,"y":27.337},{"x":1756268942400,"y":29.609},{"x":1756268882271,"y":25.654},{"x":1756268822128,"y":26.62},{"x":1756268761988,"y":25.042},{"x":1756268701682,"y":25.938},{"x":1756268641484,"y":28.423},{"x":1756268581361,"y":34.028},{"x":1756268521230,"y":30.994},{"x":1756268461103,"y":32.245},{"x":1756268400984,"y":30.266},{"x":1756268340805,"y":25.292},{"x":1756268280683,"y":28.391},{"x":1756268220570,"y":25.289},{"x":1756268160490,"y":25.566},{"x":1756268100267,"y":25.054},{"x":1756268042957,"y":26.06},{"x":1756267982817,"y":33.208},{"x":1756267922695,"y":29.182},{"x":1756267862500,"y":28.828},{"x":1756267800890,"y":29.042},{"x":1756267740703,"y":27.25},{"x":1756267680308,"y":31.638},{"x":1756267623016,"y":25.543},{"x":1756267562554,"y":25.379},{"x":1756267502417,"y":25.451},{"x":1756267441056,"y":26.596},{"x":1756267380920,"y":34.624},{"x":1756267320789,"y":30.758},{"x":1756267263651,"y":36.124},{"x":1756267200526,"y":36.331},{"x":1756267140311,"y":31.852},{"x":1756267083014,"y":33.014},{"x":1756267022868,"y":29.364},{"x":1756266962745,"y":29.138},{"x":1756266902621,"y":25.836},{"x":1756266842496,"y":24.953},{"x":1756266782371,"y":26.861},{"x":1756266722235,"y":31.332},{"x":1756266662112,"y":27.718},{"x":1756266601390,"y":26.915},{"x":1756266541264,"y":29.53},{"x":1756266481130,"y":26.915},{"x":1756266420994,"y":34.054},{"x":1756266360870,"y":26.567},{"x":1756266300887,"y":25.228},{"x":1756266240549,"y":25.988},{"x":1756266180364,"y":29.855},{"x":1756266120231,"y":34.343},{"x":1756266062993,"y":27.724},{"x":1756266002862,"y":27.508},{"x":1756265942725,"y":29.966},{"x":1756265882601,"y":27.889},{"x":1756265822466,"y":30.846},{"x":1756265762344,"y":28.812},{"x":1756265702220,"y":25.483},{"x":1756265642082,"y":25.193},{"x":1756265581950,"y":24.779},{"x":1756265521830,"y":26.546},{"x":1756265461696,"y":32.658},{"x":1756265401564,"y":28.289},{"x":1756265341437,"y":28.489},{"x":1756265281301,"y":27.236},{"x":1756265221174,"y":25.861},{"x":1756265161014,"y":32.653},{"x":1756265100736,"y":28.837},{"x":1756265040571,"y":28.867},{"x":1756264980481,"y":27.965},{"x":1756264920873,"y":24.954},{"x":1756264861879,"y":28.787},{"x":1756264801746,"y":24.928},{"x":1756264741590,"y":27.613},{"x":1756264681407,"y":28.682},{"x":1756264621312,"y":28.325},{"x":1756264562917,"y":33.199},{"x":1756264502797,"y":25.532},{"x":1756264442540,"y":25.628},{"x":1756264382387,"y":30.647},{"x":1756264322271,"y":29.076},{"x":1756264262099,"y":29.782},{"x":1756264200960,"y":29.051},{"x":1756264140813,"y":26.648},{"x":1756264081644,"y":25.654},{"x":1756264021519,"y":25.982},{"x":1756263962913,"y":25.723},{"x":1756263869108,"y":28.72},{"x":1756263866111,"y":26.027},{"x":1756263863064,"y":170.226},{"x":1756263858512,"y":170.226},{"x":1756263540330,"y":33.65},{"x":1756263482923,"y":33.592},{"x":1756263422793,"y":31.021},{"x":1756263362662,"y":27.205},{"x":1756263302536,"y":28.97},{"x":1756263242394,"y":26.305},{"x":1756263182258,"y":26.44},{"x":1756263122113,"y":29.52},{"x":1756263061980,"y":29.848},{"x":1756263001851,"y":33.6},{"x":1756262941726,"y":31.711},{"x":1756262881597,"y":30.958},{"x":1756262821476,"y":29.929},{"x":1756262761345,"y":30.395},{"x":1756262701191,"y":26.891},{"x":1756262641026,"y":25.966},{"x":1756262580881,"y":24.917},{"x":1756262520757,"y":25.35},{"x":1756262460622,"y":25.273},{"x":1756262400536,"y":25.589},{"x":1756262340346,"y":29.711},{"x":1756262280284,"y":29.645},{"x":1756262222930,"y":34.487},{"x":1756262162806,"y":30.504},{"x":1756262102675,"y":27.899},{"x":1756262042552,"y":28.355},{"x":1756261982430,"y":30.928},{"x":1756261922308,"y":27.094},{"x":1756261862166,"y":29.239},{"x":1756261802033,"y":27.878},{"x":1756261741873,"y":29.394},{"x":1756261681754,"y":33.179},{"x":1756261621611,"y":27.961},{"x":1756261561472,"y":30.354},{"x":1756261500705,"y":26.792},{"x":1756261440621,"y":26.737},{"x":1756261380409,"y":29.399},{"x":1756261323031,"y":24.887},{"x":1756261262877,"y":24.458},{"x":1756261202748,"y":24.763},{"x":1756261142620,"y":31.489},{"x":1756261082496,"y":35.412},{"x":1756261022351,"y":30.708},{"x":1756260962215,"y":32.525},{"x":1756260902089,"y":32.287},{"x":1756260841847,"y":28.961},{"x":1756260781715,"y":30.014},{"x":1756260721570,"y":32.387},{"x":1756260661438,"y":31.759},{"x":1756260600833,"y":29.845},{"x":1756260540630,"y":33.254},{"x":1756260482763,"y":32.398},{"x":1756260422633,"y":29.897},{"x":1756260362506,"y":32.604},{"x":1756260302373,"y":32.429},{"x":1756260242245,"y":33.493},{"x":1756260182113,"y":31.877},{"x":1756260121979,"y":32.101},{"x":1756260061863,"y":29.636},{"x":1756260003072,"y":30.402},{"x":1756259942888,"y":26.093},{"x":1756259882766,"y":30.188},{"x":1756259822622,"y":34.16},{"x":1756259762492,"y":28.073},{"x":1756259702374,"y":31.133},{"x":1756259642252,"y":28.816},{"x":1756259582101,"y":30.019},{"x":1756259521962,"y":33.852},{"x":1756259461849,"y":29.59},{"x":1756259401708,"y":25.367},{"x":1756259341584,"y":26.179},{"x":1756259281455,"y":28.813},{"x":1756259221333,"y":35.531},{"x":1756259161200,"y":29.575},{"x":1756259101100,"y":29.182},{"x":1756259040920,"y":27.676},{"x":1756258980802,"y":26.178},{"x":1756258920689,"y":29.227},{"x":1756258860588,"y":28.788},{"x":1756258800582,"y":29.73},{"x":1756258740335,"y":29.078},{"x":1756258680218,"y":30.52},{"x":1756258622891,"y":29.872},{"x":1756258562766,"y":32.161},{"x":1756258502638,"y":28.555},{"x":1756258442510,"y":29.094},{"x":1756258382391,"y":28.576},{"x":1756258322261,"y":30.964},{"x":1756258262139,"y":32.878},{"x":1756258202015,"y":30.272},{"x":1756258141874,"y":30.618},{"x":1756258081767,"y":29.904},{"x":1756258021635,"y":53.287},{"x":1756257961501,"y":59.309},{"x":1756257900867,"y":51.677},{"x":1756257840765,"y":50.322},{"x":1756257780613,"y":35.994},{"x":1756257720475,"y":25.656},{"x":1756257660374,"y":29.83},{"x":1756257600534,"y":27.451},{"x":1756257542953,"y":27.169},{"x":1756257482540,"y":27.676},{"x":1756257422424,"y":26.74},{"x":1756257362285,"y":32.261},{"x":1756257302149,"y":32.788},{"x":1756257242020,"y":32.747},{"x":1756257181878,"y":35.431},{"x":1756257121737,"y":30.031},{"x":1756257061549,"y":27.934},{"x":1756257000713,"y":27.436},{"x":1756256940555,"y":28.146},{"x":1756256882905,"y":39.664},{"x":1756256822776,"y":38.934},{"x":1756256762654,"y":42.536},{"x":1756256702519,"y":49.68},{"x":1756256642387,"y":40.284},{"x":1756256582266,"y":32.116},{"x":1756256522099,"y":31.59},{"x":1756256461974,"y":32.495},{"x":1756256400159,"y":32.402},{"x":1756256342907,"y":27.641},{"x":1756256282782,"y":27.012},{"x":1756256222655,"y":27.919},{"x":1756256162505,"y":38.227},{"x":1756256102382,"y":45.362},{"x":1756256042266,"y":44.392},{"x":1756255982115,"y":44.398},{"x":1756255921975,"y":41.578},{"x":1756255861711,"y":29.106},{"x":1756255800824,"y":32.57},{"x":1756255740674,"y":28.492},{"x":1756255680549,"y":27.048},{"x":1756255620503,"y":27.55},{"x":1756255560317,"y":27.92},{"x":1756255503035,"y":29.131},{"x":1756255442900,"y":29.179},{"x":1756255382764,"y":31.788},{"x":1756255322641,"y":30.677},{"x":1756255262521,"y":28.108},{"x":1756255202396,"y":29.628},{"x":1756255142269,"y":28.244},{"x":1756255082146,"y":27.023},{"x":1756255022028,"y":26.874},{"x":1756254961546,"y":29.72},{"x":1756254901416,"y":30.132},{"x":1756254841248,"y":30.336},{"x":1756254781123,"y":30.564},{"x":1756254720968,"y":35.195},{"x":1756254660850,"y":32.068},{"x":1756254600818,"y":29.142},{"x":1756254540600,"y":28.697},{"x":1756254480475,"y":26.932},{"x":1756254420292,"y":27.47},{"x":1756254363035,"y":30.797},{"x":1756254302884,"y":31.007},{"x":1756254242753,"y":34.162},{"x":1756254182629,"y":29.551},{"x":1756254122499,"y":32.092},{"x":1756254062380,"y":32.936},{"x":1756254002246,"y":33.743},{"x":1756253942117,"y":40.777},{"x":1756253881971,"y":32.192},{"x":1756253821847,"y":41.195},{"x":1756253761483,"y":41.54},{"x":1756253701350,"y":55.61},{"x":1756253641228,"y":63.574},{"x":1756253581086,"y":58.237},{"x":1756253520900,"y":45.304},{"x":1756253460740,"y":35.909},{"x":1756253400641,"y":36.178},{"x":1756253340482,"y":39.466},{"x":1756253282970,"y":35.398},{"x":1756253222817,"y":38.309},{"x":1756253162685,"y":33.983},{"x":1756253102553,"y":32.171},{"x":1756253042430,"y":36.379},{"x":1756252982290,"y":35.041},{"x":1756252922156,"y":32.551},{"x":1756252865047,"y":31.627},{"x":1756252800393,"y":30.77},{"x":1756252742985,"y":48.847},{"x":1756252682853,"y":43.618},{"x":1756252622721,"y":43.16},{"x":1756252562589,"y":43.504},{"x":1756252502455,"y":37.178},{"x":1756252442321,"y":33.655},{"x":1756252382196,"y":29.833},{"x":1756252322067,"y":29.138},{"x":1756252261921,"y":26.269},{"x":1756252201794,"y":26.322},{"x":1756252141645,"y":26.394},{"x":1756252081502,"y":29.698},{"x":1756252021379,"y":30.056},{"x":1756251961244,"y":30.376},{"x":1756251901149,"y":33.43},{"x":1756251840953,"y":32.257},{"x":1756251780819,"y":31.349},{"x":1756251720700,"y":31.865},{"x":1756251660611,"y":32.212},{"x":1756251600480,"y":41.291},{"x":1756251540349,"y":43.441},{"x":1756251480097,"y":41.214},{"x":1756251422896,"y":41.887},{"x":1756251362766,"y":42.019},{"x":1756251302602,"y":30.888},{"x":1756251242479,"y":34.019},{"x":1756251182347,"y":29.845},{"x":1756251122218,"y":29.502},{"x":1756251062086,"y":30.728},{"x":1756251001966,"y":30.503},{"x":1756250941832,"y":31.001},{"x":1756250881710,"y":31.552},{"x":1756250821571,"y":33.229},{"x":1756250761444,"y":43.621},{"x":1756250700737,"y":41.746},{"x":1756250640596,"y":42.408},{"x":1756250580480,"y":41.078},{"x":1756250522947,"y":41.203},{"x":1756250462821,"y":38.272},{"x":1756250402699,"y":29.612},{"x":1756250342550,"y":29.208},{"x":1756250282431,"y":29.696},{"x":1756250222307,"y":33.554},{"x":1756250162171,"y":30.085},{"x":1756250102048,"y":33.664},{"x":1756250041916,"y":35.666},{"x":1756249981753,"y":31.608},{"x":1756249921596,"y":32.432},{"x":1756249861456,"y":39.553},{"x":1756249801204,"y":39.887},{"x":1756249741056,"y":45.372},{"x":1756249680911,"y":45.238},{"x":1756249620777,"y":37.65},{"x":1756249560653,"y":33.769},{"x":1756249500546,"y":34.519},{"x":1756249440379,"y":37.06},{"x":1756249380216,"y":33.67},{"x":1756249322982,"y":33.778},{"x":1756249262850,"y":30.617},{"x":1756249202146,"y":30.492},{"x":1756249141909,"y":33.918},{"x":1756249081777,"y":29.632},{"x":1756249021646,"y":28.214},{"x":1756248961511,"y":28.61},{"x":1756248900697,"y":28.327},{"x":1756248840460,"y":33.35},{"x":1756248780311,"y":32.915},{"x":1756248722969,"y":45.388},{"x":1756248662834,"y":48.276},{"x":1756248602683,"y":43.878},{"x":1756248542541,"y":46.176},{"x":1756248482410,"y":37.08},{"x":1756248422291,"y":28.115},{"x":1756248362148,"y":31.231},{"x":1756248302034,"y":29.027},{"x":1756248241888,"y":32.324},{"x":1756248181765,"y":30.962},{"x":1756248121634,"y":31.816},{"x":1756248061511,"y":30.937},{"x":1756248000840,"y":34.588},{"x":1756247940664,"y":39.392},{"x":1756247880527,"y":43.206},{"x":1756247820371,"y":44.662},{"x":1756247762888,"y":42.308},{"x":1756247702757,"y":41.111},{"x":1756247642626,"y":42.653},{"x":1756247582494,"y":31.457},{"x":1756247522378,"y":34.344},{"x":1756247462240,"y":36.374},{"x":1756247402110,"y":36.52},{"x":1756247341951,"y":39.914},{"x":1756247281828,"y":36.007},{"x":1756247221702,"y":33.581},{"x":1756247161564,"y":32.971},{"x":1756247100926,"y":33.054},{"x":1756247040784,"y":46.158},{"x":1756246980649,"y":39.737},{"x":1756246920529,"y":42.746},{"x":1756246860433,"y":42.341},{"x":1756246800340,"y":43.625},{"x":1756246742951,"y":37.273},{"x":1756246682566,"y":33.432},{"x":1756246622447,"y":28.883},{"x":1756246562299,"y":30.569},{"x":1756246502186,"y":32.514},{"x":1756246442039,"y":40.153},{"x":1756246381898,"y":33.532},{"x":1756246321760,"y":33.39},{"x":1756246261491,"y":33.224},{"x":1756246200855,"y":32.159},{"x":1756246140672,"y":36.146},{"x":1756246080556,"y":31.603},{"x":1756246020452,"y":31.093},{"x":1756245960385,"y":41.372},{"x":1756245902971,"y":40.664},{"x":1756245842833,"y":46.026},{"x":1756245782701,"y":42.078},{"x":1756245722577,"y":39.385},{"x":1756245662458,"y":36.293},{"x":1756245601231,"y":36.192},{"x":1756245540889,"y":35.192},{"x":1756245480778,"y":34.093},{"x":1756245420636,"y":30.132},{"x":1756245360509,"y":29.839},{"x":1756245300454,"y":30.154},{"x":1756245240250,"y":30.569},{"x":1756245182967,"y":41.52},{"x":1756245122838,"y":40.94},{"x":1756245062706,"y":43.226},{"x":1756245002581,"y":46.667},{"x":1756244942464,"y":46.116},{"x":1756244882339,"y":35.555},{"x":1756244822217,"y":34.444},{"x":1756244762081,"y":34.135},{"x":1756244701943,"y":29.539},{"x":1756244641819,"y":29.735},{"x":1756244581678,"y":29.51},{"x":1756244521548,"y":30.086},{"x":1756244461428,"y":30.791},{"x":1756244400842,"y":44.881},{"x":1756244340687,"y":44.015},{"x":1756244280543,"y":43.272},{"x":1756244220492,"y":43.024},{"x":1756244162943,"y":45.152},{"x":1756244102811,"y":40.296},{"x":1756244042625,"y":34.147},{"x":1756243982462,"y":33.994},{"x":1756243922322,"y":36.233},{"x":1756243862186,"y":30.091},{"x":1756243802053,"y":36.917},{"x":1756243741902,"y":32.98},{"x":1756243681783,"y":33.457},{"x":1756243621646,"y":33.511},{"x":1756243561505,"y":33.908},{"x":1756243501115,"y":39.134},{"x":1756243440982,"y":44.022},{"x":1756243380840,"y":44.351},{"x":1756243320723,"y":44.813},{"x":1756243260628,"y":43.997},{"x":1756243200553,"y":49.043},{"x":1756243140309,"y":35.5},{"x":1756243082947,"y":36.87},{"x":1756243022832,"y":37.466},{"x":1756242962666,"y":34.969},{"x":1756242902551,"y":39.043},{"x":1756242842229,"y":34.186},{"x":1756242782081,"y":45.206},{"x":1756242721925,"y":37.344},{"x":1756242661755,"y":46.656},{"x":1756242601614,"y":45.554},{"x":1756242541463,"y":44.074},{"x":1756242481331,"y":50.612},{"x":1756242421198,"y":48.425},{"x":1756242361082,"y":37.837},{"x":1756242300954,"y":33.296},{"x":1756242240812,"y":30.875},{"x":1756242180684,"y":33.428},{"x":1756242120617,"y":32.014},{"x":1756242060461,"y":41.062},{"x":1756242000200,"y":39.908},{"x":1756241942909,"y":49.348},{"x":1756241882788,"y":49.348},{"x":1756241822656,"y":46.703},{"x":1756241762525,"y":52.469},{"x":1756241702398,"y":51.338},{"x":1756241642270,"y":38.306},{"x":1756241582147,"y":55.628},{"x":1756241521991,"y":42.602},{"x":1756241461579,"y":45.979},{"x":1756241400831,"y":33.769},{"x":1756241340678,"y":47.59},{"x":1756241280650,"y":34.735},{"x":1756241220404,"y":40.244},{"x":1756241160252,"y":62.48},{"x":1756241100186,"y":45.932},{"x":1756241042903,"y":46.104},{"x":1756240982764,"y":44.988},{"x":1756240922624,"y":45.575},{"x":1756240862499,"y":31.744},{"x":1756240802342,"y":32.281},{"x":1756240742200,"y":34.17},{"x":1756240682072,"y":35.779},{"x":1756240621930,"y":43.669},{"x":1756240561152,"y":41.28},{"x":1756240501046,"y":55.864},{"x":1756240440875,"y":43.322},{"x":1756240380727,"y":46.865},{"x":1756240320614,"y":61.481},{"x":1756240260499,"y":44.156},{"x":1756240200535,"y":45.86},{"x":1756240142953,"y":59.544},{"x":1756240082808,"y":34.134},{"x":1756240022667,"y":36.932},{"x":1756239962543,"y":38.414},{"x":1756239902413,"y":40.588},{"x":1756239842286,"y":36.157},{"x":1756239782161,"y":48.854},{"x":1756239722034,"y":49.979},{"x":1756239661248,"y":49.129},{"x":1756239601129,"y":52.658},{"x":1756239540975,"y":38.904},{"x":1756239480840,"y":31.936},{"x":1756239420743,"y":33.533},{"x":1756239360731,"y":42.108},{"x":1756239300504,"y":34.751},{"x":1756239242967,"y":29.724},{"x":1756239182834,"y":32.7},{"x":1756239122682,"y":31.492},{"x":1756239062521,"y":34.747},{"x":1756239002364,"y":40.6},{"x":1756238942242,"y":39.655},{"x":1756238882110,"y":39.52},{"x":1756238821963,"y":38.062},{"x":1756238761132,"y":39.242},{"x":1756238700995,"y":43.094},{"x":1756238640860,"y":35.952},{"x":1756238580752,"y":35.24},{"x":1756238520603,"y":36.422},{"x":1756238460593,"y":44.442},{"x":1756238401531,"y":36.793},{"x":1756238341117,"y":47.747},{"x":1756238280960,"y":39.037},{"x":1756238220827,"y":41.814},{"x":1756238160686,"y":37.721},{"x":1756238100589,"y":47.119},{"x":1756238040389,"y":41.167},{"x":1756237980416,"y":37.529},{"x":1756237920074,"y":47.963},{"x":1756237862899,"y":46.802},{"x":1756237802759,"y":71.312},{"x":1756237742628,"y":76.36},{"x":1756237682502,"y":57.672},{"x":1756237622381,"y":49.631},{"x":1756237562231,"y":47.162},{"x":1756237502128,"y":40.204},{"x":1756237441967,"y":40.645},{"x":1756237381847,"y":35.707},{"x":1756237321717,"y":39.888},{"x":1756237261591,"y":32.566},{"x":1756237201467,"y":30.887},{"x":1756237141343,"y":30.821},{"x":1756237081216,"y":44.356},{"x":1756237021088,"y":48.444},{"x":1756236960945,"y":52.206},{"x":1756236900846,"y":46.159},{"x":1756236840704,"y":51.754},{"x":1756236780579,"y":38.519},{"x":1756236720516,"y":37.54},{"x":1756236660363,"y":39.974},{"x":1756236600275,"y":32.77},{"x":1756236542956,"y":37.361},{"x":1756236482840,"y":36.851},{"x":1756236422719,"y":37.698},{"x":1756236362601,"y":39.872},{"x":1756236302476,"y":35.658},{"x":1756236242326,"y":49.134},{"x":1756236182200,"y":55.039},{"x":1756236122071,"y":47.902},{"x":1756236061228,"y":64.559},{"x":1756236001120,"y":43.306},{"x":1756235940942,"y":39.823},{"x":1756235880821,"y":35.845},{"x":1756235820739,"y":31.849},{"x":1756235760560,"y":35.81},{"x":1756235700408,"y":39.232},{"x":1756235640278,"y":39.331},{"x":1756235583023,"y":52.358},{"x":1756235522831,"y":53.197},{"x":1756235462666,"y":52.103},{"x":1756235402527,"y":53.84},{"x":1756235342398,"y":48.742},{"x":1756235282267,"y":43.872},{"x":1756235222127,"y":43.898},{"x":1756235161981,"y":41.329},{"x":1756235101853,"y":34.823},{"x":1756235041708,"y":43.757},{"x":1756234981589,"y":51.718},{"x":1756234921456,"y":40.344},{"x":1756234861314,"y":62.176},{"x":1756234803024,"y":39.523},{"x":1756234742855,"y":38.731},{"x":1756234682723,"y":37.746},{"x":1756234622593,"y":35.84},{"x":1756234562468,"y":36.232},{"x":1756234502350,"y":47.743},{"x":1756234442237,"y":33.035},{"x":1756234382107,"y":37.523},{"x":1756234321973,"y":34.542},{"x":1756234261663,"y":33.92},{"x":1756234200876,"y":35.737},{"x":1756234140745,"y":38.377},{"x":1756234080643,"y":50.684},{"x":1756234020564,"y":48.828},{"x":1756233960371,"y":61.268},{"x":1756233900311,"y":60.916},{"x":1756233842955,"y":55.956},{"x":1756233782825,"y":60.074},{"x":1756233722687,"y":45.892},{"x":1756233662575,"y":35.407},{"x":1756233602429,"y":36.533},{"x":1756233542302,"y":34.782},{"x":1756233482166,"y":39.03},{"x":1756233422038,"y":42.466},{"x":1756233361897,"y":39.517},{"x":1756233301768,"y":50.798},{"x":1756233241634,"y":45.728},{"x":1756233181510,"y":46.582},{"x":1756233121375,"y":46.332},{"x":1756233061255,"y":46.726},{"x":1756233001139,"y":35.062},{"x":1756232940945,"y":32.814},{"x":1756232880822,"y":31.906},{"x":1756232820670,"y":33.088},{"x":1756232760555,"y":41.371},{"x":1756232700446,"y":40.122},{"x":1756232640464,"y":40.164},{"x":1756232580212,"y":43.979},{"x":1756232522924,"y":51.118},{"x":1756232462740,"y":50.704},{"x":1756232402605,"y":64.092},{"x":1756232342487,"y":47.194},{"x":1756232282360,"y":35.479},{"x":1756232222266,"y":38.257},{"x":1756232162120,"y":43.073},{"x":1756232101979,"y":35.614},{"x":1756232041849,"y":39.134},{"x":1756231981715,"y":49.094},{"x":1756231921584,"y":72.066},{"x":1756231861424,"y":51.427},{"x":1756231800879,"y":48.535},{"x":1756231740699,"y":40.098},{"x":1756231680605,"y":31.402},{"x":1756231620369,"y":36.03},{"x":1756231560321,"y":35.263},{"x":1756231502988,"y":36.763},{"x":1756231442872,"y":37.301},{"x":1756231382741,"y":37.475},{"x":1756231322618,"y":35.884},{"x":1756231262481,"y":33.628},{"x":1756231201236,"y":37.268},{"x":1756231140985,"y":34.606},{"x":1756231080861,"y":34.997},{"x":1756231020739,"y":37.092},{"x":1756230960682,"y":36.061},{"x":1756230900593,"y":36.751},{"x":1756230840349,"y":30.552},{"x":1756230780297,"y":36.092},{"x":1756230722914,"y":39.611},{"x":1756230662779,"y":33.822},{"x":1756230602661,"y":47.394},{"x":1756230542537,"y":54.26},{"x":1756230482386,"y":55.451},{"x":1756230422261,"y":53.722},{"x":1756230362131,"y":46.921},{"x":1756230301992,"y":48.653},{"x":1756230241850,"y":38.461},{"x":1756230181723,"y":35.844},{"x":1756230121581,"y":38.143},{"x":1756230061444,"y":39.743},{"x":1756230000822,"y":48.397},{"x":1756229940610,"y":34.231},{"x":1756229880577,"y":31.616},{"x":1756229820408,"y":34.447},{"x":1756229760348,"y":49.268},{"x":1756229702918,"y":43.27},{"x":1756229642773,"y":42.098},{"x":1756229582651,"y":45.787},{"x":1756229522510,"y":42.848},{"x":1756229462377,"y":33.288},{"x":1756229402246,"y":34.913},{"x":1756229342106,"y":39.331},{"x":1756229281972,"y":30.754},{"x":1756229221826,"y":34.444},{"x":1756229161703,"y":37.277},{"x":1756229101571,"y":64.552},{"x":1756229041446,"y":48.49},{"x":1756228981316,"y":46.748},{"x":1756228921181,"y":44.161},{"x":1756228861043,"y":42.245},{"x":1756228800918,"y":39.81},{"x":1756228740776,"y":37.694},{"x":1756228680658,"y":40.679},{"x":1756228620567,"y":36.276},{"x":1756228560416,"y":34.642},{"x":1756228500288,"y":35.344},{"x":1756228442958,"y":42.608},{"x":1756228382818,"y":50.197},{"x":1756228322672,"y":42.276},{"x":1756228262481,"y":52.784},{"x":1756228202343,"y":49.517},{"x":1756228142207,"y":32.797},{"x":1756228082082,"y":42.44},{"x":1756228021942,"y":34.619},{"x":1756227961660,"y":34.252},{"x":1756227901537,"y":36.349},{"x":1756227841398,"y":34.019},{"x":1756227781261,"y":34.124},{"x":1756227721131,"y":33.499},{"x":1756227660994,"y":39.935},{"x":1756227602015,"y":47.39},{"x":1756227541816,"y":61.891},{"x":1756227481692,"y":45.38},{"x":1756227421568,"y":43.684},{"x":1756227361438,"y":36.2},{"x":1756227300746,"y":31.276},{"x":1756227240567,"y":32.096},{"x":1756227180431,"y":32.239},{"x":1756227120272,"y":32.495},{"x":1756227060079,"y":38.327},{"x":1756227002924,"y":40.97},{"x":1756226942787,"y":50.542},{"x":1756226882650,"y":43.65},{"x":1756226822507,"y":49.548},{"x":1756226762387,"y":44.298},{"x":1756226702269,"y":40.864},{"x":1756226642136,"y":40.366},{"x":1756226581993,"y":31.571},{"x":1756226521868,"y":38.136},{"x":1756226461736,"y":42.472},{"x":1756226401611,"y":39.732},{"x":1756226341481,"y":41.262},{"x":1756226281346,"y":41.551},{"x":1756226221206,"y":45.58},{"x":1756226161077,"y":30.692},{"x":1756226100940,"y":30.202},{"x":1756226040805,"y":31.763},{"x":1756225980681,"y":32.335},{"x":1756225920621,"y":36.04},{"x":1756225860482,"y":41.441},{"x":1756225800334,"y":44.394},{"x":1756225742951,"y":42.67},{"x":1756225682810,"y":41.992},{"x":1756225622690,"y":48.413},{"x":1756225562553,"y":33.658},{"x":1756225502438,"y":30.917},{"x":1756225442300,"y":38.79},{"x":1756225382153,"y":31.272},{"x":1756225322024,"y":28.03},{"x":1756225261310,"y":40.326},{"x":1756225201198,"y":42.396},{"x":1756225140947,"y":39.096},{"x":1756225080825,"y":41.383},{"x":1756225020704,"y":39.556},{"x":1756224960629,"y":24.535},{"x":1756224900453,"y":25.932},{"x":1756224840275,"y":33.118},{"x":1756224782933,"y":26.765},{"x":1756224722778,"y":17.354},{"x":1756224662620,"y":26.058},{"x":1756224602468,"y":29.552},{"x":1756224542342,"y":28.853},{"x":1756224482208,"y":32.312},{"x":1756224422079,"y":33.409},{"x":1756224361747,"y":32.784},{"x":1756224301599,"y":30.103},{"x":1756224241474,"y":30.222},{"x":1756224181329,"y":38.303},{"x":1756224121184,"y":48.152},{"x":1756224061099,"y":48.436},{"x":1756224002120,"y":41.851},{"x":1756223941880,"y":41.119},{"x":1756223881744,"y":36.874},{"x":1756223821622,"y":28.487},{"x":1756223761493,"y":32.744},{"x":1756223700755,"y":31.928},{"x":1756223640524,"y":33.143},{"x":1756223580451,"y":31.872},{"x":1756223520295,"y":49.186},{"x":1756223463008,"y":47.245},{"x":1756223402886,"y":36.69},{"x":1756223342755,"y":31.866},{"x":1756223282650,"y":45.685},{"x":1756223222499,"y":24.101},{"x":1756223162373,"y":48.95},{"x":1756223102252,"y":36.733},{"x":1756223042126,"y":49.288},{"x":1756222981975,"y":38.72},{"x":1756222921870,"y":51.937},{"x":1756222861724,"y":29.322},{"x":1756222801601,"y":21.444},{"x":1756222741453,"y":22.312},{"x":1756222681331,"y":35.826},{"x":1756222621206,"y":17.792},{"x":1756222561068,"y":31.229},{"x":1756222500935,"y":22.61},{"x":1756222440791,"y":37.601},{"x":1756222380677,"y":38.896},{"x":1756222320567,"y":25.045},{"x":1756222260607,"y":27.518},{"x":1756222200447,"y":21.875},{"x":1756222142953,"y":24.744},{"x":1756222082836,"y":36.168},{"x":1756222022725,"y":49.141},{"x":1756221962574,"y":51.602},{"x":1756221902438,"y":52.65},{"x":1756221842259,"y":41.594},{"x":1756221782133,"y":23.956},{"x":1756221722010,"y":17.998},{"x":1756221661240,"y":28.415},{"x":1756221601117,"y":44.765},{"x":1756221540958,"y":46.662},{"x":1756221480825,"y":37.738},{"x":1756221420781,"y":36.332},{"x":1756221360625,"y":36.391},{"x":1756221300469,"y":21.079},{"x":1756221240256,"y":26.657},{"x":1756221182993,"y":23.392},{"x":1756221122813,"y":22.498},{"x":1756221062663,"y":36.216},{"x":1756221002508,"y":36.656},{"x":1756220942356,"y":35.893},{"x":1756220882232,"y":33.997},{"x":1756220822105,"y":41.761},{"x":1756220761963,"y":27.835},{"x":1756220701838,"y":28.386},{"x":1756220641714,"y":21.288},{"x":1756220581588,"y":15.16},{"x":1756220521425,"y":9.475},{"x":1756220461300,"y":17.982},{"x":1756220402101,"y":16.384},{"x":1756220341898,"y":13.052},{"x":1756220281763,"y":36.022},{"x":1756220221634,"y":32.521},{"x":1756220161491,"y":49.549},{"x":1756220100629,"y":49.463},{"x":1756220040471,"y":45.815},{"x":1756219980387,"y":40.478},{"x":1756219920127,"y":32.372},{"x":1756219862911,"y":33.644},{"x":1756219802800,"y":30.385},{"x":1756219742645,"y":40.67},{"x":1756219682517,"y":28.145},{"x":1756219622352,"y":32.111},{"x":1756219562223,"y":31.331},{"x":1756219502082,"y":30.62},{"x":1756219441850,"y":33.914},{"x":1756219381701,"y":28.836},{"x":1756219321577,"y":21.764},{"x":1756219261439,"y":23.137},{"x":1756219200858,"y":15.44},{"x":1756219140639,"y":17.366},{"x":1756219080517,"y":11.899},{"x":1756219020396,"y":12.366},{"x":1756218962853,"y":10.862},{"x":1756218902723,"y":21.463},{"x":1756218842589,"y":16.279},{"x":1756218782474,"y":16.945},{"x":1756218722368,"y":22.957},{"x":1756218662203,"y":20.894},{"x":1756218602088,"y":13.878},{"x":1756218541934,"y":25.975},{"x":1756218481819,"y":26.291},{"x":1756218421676,"y":23.879},{"x":1756218361526,"y":21.875},{"x":1756218300905,"y":20.129},{"x":1756218240794,"y":30.194},{"x":1756218180642,"y":47.321},{"x":1756218120555,"y":49.81},{"x":1756218060443,"y":49.603},{"x":1756218000321,"y":48.457},{"x":1756217942988,"y":33.004},{"x":1756217882863,"y":35.869},{"x":1756217822736,"y":38.564},{"x":1756217762342,"y":35.772},{"x":1756217702220,"y":27.449},{"x":1756217642081,"y":25.984},{"x":1756217581914,"y":20.404},{"x":1756217521769,"y":36.133},{"x":1756217461568,"y":32.894},{"x":1756217401391,"y":34.398},{"x":1756217341255,"y":35.918},{"x":1756217281123,"y":39.041},{"x":1756217220959,"y":24.728},{"x":1756217160834,"y":27.032},{"x":1756217100722,"y":26.599},{"x":1756217040598,"y":38.576},{"x":1756216980456,"y":48.426},{"x":1756216920367,"y":49.439},{"x":1756216862968,"y":51.084},{"x":1756216800526,"y":49.112},{"x":1756216740249,"y":31.621},{"x":1756216683021,"y":23.4},{"x":1756216622883,"y":39.184},{"x":1756216562762,"y":47.034},{"x":1756216502619,"y":49.148},{"x":1756216442489,"y":46.417},{"x":1756216382363,"y":52.231},{"x":1756216322229,"y":49.925},{"x":1756216262106,"y":46.902},{"x":1756216201962,"y":52.964},{"x":1756216141838,"y":39.016},{"x":1756216081716,"y":53.13},{"x":1756216021546,"y":36.575},{"x":1756215961419,"y":34.459},{"x":1756215901318,"y":38.419},{"x":1756215841090,"y":37.724},{"x":1756215780944,"y":36.72},{"x":1756215720822,"y":34.295},{"x":1756215660713,"y":30.012},{"x":1756215600636,"y":27.275},{"x":1756215540507,"y":31.633},{"x":1756215480348,"y":54.238},{"x":1756215422946,"y":55.169},{"x":1756215362818,"y":48.205},{"x":1756215302686,"y":55.864},{"x":1756215242561,"y":58.508},{"x":1756215182417,"y":51.65},{"x":1756215122276,"y":27.734},{"x":1756215062146,"y":24.079},{"x":1756215001990,"y":26.494},{"x":1756214941844,"y":36.752},{"x":1756214881719,"y":34.076},{"x":1756214821569,"y":38.29},{"x":1756214761438,"y":45.941},{"x":1756214700969,"y":47.941},{"x":1756214640809,"y":41.21},{"x":1756214580678,"y":35.004},{"x":1756214520550,"y":38.684},{"x":1756214460471,"y":40.273},{"x":1756214400350,"y":40.196},{"x":1756214343004,"y":41.603},{"x":1756214282855,"y":38.902},{"x":1756214222731,"y":44.585},{"x":1756214162369,"y":52.349},{"x":1756214102225,"y":46.068},{"x":1756214042104,"y":34.776},{"x":1756213981981,"y":30.248},{"x":1756213921849,"y":29.539},{"x":1756213861498,"y":26.888},{"x":1756213800889,"y":29.045},{"x":1756213740668,"y":32.231},{"x":1756213680354,"y":33.736},{"x":1756213622976,"y":33.992},{"x":1756213562851,"y":38.125},{"x":1756213502732,"y":47.321},{"x":1756213442612,"y":42.492},{"x":1756213382470,"y":57.564},{"x":1756213322352,"y":57.972},{"x":1756213262210,"y":72.182},{"x":1756213201305,"y":72.481},{"x":1756213140829,"y":91.447},{"x":1756213080705,"y":73.356},{"x":1756213020585,"y":70.052},{"x":1756212960476,"y":64.92},{"x":1756212900356,"y":46.026},{"x":1756212840046,"y":47.726},{"x":1756212782897,"y":53.512},{"x":1756212722772,"y":48.668},{"x":1756212662643,"y":49.056},{"x":1756212602496,"y":47.164},{"x":1756212542361,"y":46.385},{"x":1756212482241,"y":43.055},{"x":1756212422112,"y":31.584},{"x":1756212361992,"y":32.316},{"x":1756212301784,"y":34.249},{"x":1756212241653,"y":43.127},{"x":1756212181525,"y":44.023},{"x":1756212121395,"y":42.304},{"x":1756212061264,"y":44.761},{"x":1756212000944,"y":41.016},{"x":1756211940706,"y":31.42},{"x":1756211880602,"y":31.505},{"x":1756211820488,"y":31.247},{"x":1756211760300,"y":31.877},{"x":1756211702961,"y":33.404},{"x":1756211642838,"y":35.428},{"x":1756211582697,"y":42.707},{"x":1756211522574,"y":37.318},{"x":1756211462444,"y":38.297},{"x":1756211402311,"y":36.679},{"x":1756211342177,"y":32.081},{"x":1756211282059,"y":37.832},{"x":1756211221910,"y":38.942},{"x":1756211161784,"y":39.636},{"x":1756211101638,"y":53.928},{"x":1756211041512,"y":43.933},{"x":1756210981377,"y":54.419},{"x":1756210921252,"y":37.543},{"x":1756210861124,"y":28.928},{"x":1756210801019,"y":18.634},{"x":1756210740837,"y":13.943},{"x":1756210680699,"y":30.848},{"x":1756210620652,"y":26.761},{"x":1756210560549,"y":48.452},{"x":1756210500414,"y":49.831},{"x":1756210440086,"y":47.875},{"x":1756210382900,"y":51.427},{"x":1756210322746,"y":46.091},{"x":1756210262570,"y":54.548},{"x":1756210202447,"y":31.152},{"x":1756210142311,"y":35.46},{"x":1756210082164,"y":26.687},{"x":1756210022044,"y":52.585},{"x":1756209961915,"y":53.796},{"x":1756209901779,"y":48.883},{"x":1756209841639,"y":51.145},{"x":1756209781511,"y":50.851},{"x":1756209721373,"y":34.759},{"x":1756209661259,"y":38.298},{"x":1756209601634,"y":23.712},{"x":1756209541083,"y":19.098},{"x":1756209480925,"y":22.82},{"x":1756209420806,"y":34.835},{"x":1756209360710,"y":42.436},{"x":1756209300606,"y":36.46},{"x":1756209240399,"y":41.228},{"x":1756209180356,"y":40.596},{"x":1756209122980,"y":31.408},{"x":1756209062855,"y":30.463},{"x":1756209002727,"y":26.984},{"x":1756208942586,"y":25.174},{"x":1756208882424,"y":29.443},{"x":1756208822292,"y":25.591},{"x":1756208762157,"y":25.056},{"x":1756208702026,"y":29.543},{"x":1756208641881,"y":28.896},{"x":1756208581749,"y":23.834},{"x":1756208521608,"y":32.207},{"x":1756208461484,"y":30.52},{"x":1756208401136,"y":41.81},{"x":1756208340965,"y":39.61},{"x":1756208280836,"y":39.284},{"x":1756208220731,"y":31.261},{"x":1756208160567,"y":29.189},{"x":1756208100621,"y":22.315},{"x":1756208040279,"y":24.014},{"x":1756207982928,"y":36.68},{"x":1756207922806,"y":51.019},{"x":1756207862711,"y":50.85},{"x":1756207802571,"y":48.656},{"x":1756207742472,"y":48.068},{"x":1756207682316,"y":45.967},{"x":1756207622187,"y":32.509},{"x":1756207562028,"y":34.04},{"x":1756207500746,"y":36.738},{"x":1756207440485,"y":36.115},{"x":1756207380306,"y":29.562},{"x":1756207322992,"y":28.579},{"x":1756207262833,"y":22.697},{"x":1756207202716,"y":21.416},{"x":1756207142567,"y":32.744},{"x":1756207082443,"y":20.081},{"x":1756207022326,"y":19.361},{"x":1756206962205,"y":18.992},{"x":1756206902058,"y":22.244},{"x":1756206841902,"y":35.563},{"x":1756206781768,"y":49.648},{"x":1756206721603,"y":47.029},{"x":1756206661462,"y":44.218},{"x":1756206601217,"y":44.303},{"x":1756206541061,"y":27.936},{"x":1756206480930,"y":30.422},{"x":1756206420787,"y":23.316},{"x":1756206360715,"y":27.769},{"x":1756206300670,"y":25.463},{"x":1756206240468,"y":36.841},{"x":1756206180358,"y":47.756},{"x":1756206122961,"y":38.616},{"x":1756206062846,"y":33.55},{"x":1756206000722,"y":32.531},{"x":1756205940222,"y":25.745},{"x":1756205882914,"y":21.379},{"x":1756205822783,"y":16.801},{"x":1756205762670,"y":33.038},{"x":1756205702582,"y":33.808},{"x":1756205642442,"y":32.5},{"x":1756205582258,"y":30.673},{"x":1756205522173,"y":31.741},{"x":1756205461990,"y":16.681},{"x":1756205401852,"y":18.94},{"x":1756205341731,"y":20.894},{"x":1756205281565,"y":22.918},{"x":1756205221420,"y":22.759},{"x":1756205161295,"y":36.902},{"x":1756205101284,"y":31.426},{"x":1756205041028,"y":36.918},{"x":1756204980900,"y":34.662},{"x":1756204920773,"y":43.892},{"x":1756204860662,"y":25.318},{"x":1756204800615,"y":22.954},{"x":1756204740411,"y":18.724},{"x":1756204680371,"y":19.846},{"x":1756204622886,"y":6.205},{"x":1756204562755,"y":15.238},{"x":1756204502633,"y":12.718},{"x":1756204442499,"y":27.086},{"x":1756204382375,"y":31.247},{"x":1756204322248,"y":31.094},{"x":1756204262116,"y":44.688},{"x":1756204201978,"y":45.862},{"x":1756204141847,"y":36.595},{"x":1756204081703,"y":32.936},{"x":1756204021596,"y":46.391},{"x":1756203961448,"y":21.844},{"x":1756203901043,"y":16.42},{"x":1756203840865,"y":17.93},{"x":1756203780740,"y":25.121},{"x":1756203720652,"y":27.611},{"x":1756203660558,"y":31.513},{"x":1756203600434,"y":32.483},{"x":1756203546132,"y":38.395},{"x":1756203480818,"y":26.356},{"x":1756203420708,"y":25.103},{"x":1756203360689,"y":24.049},{"x":1756203300534,"y":23.332},{"x":1756203240226,"y":22.376},{"x":1756203182910,"y":21.487},{"x":1756203122782,"y":24.169},{"x":1756203062631,"y":29.447},{"x":1756203002492,"y":30.648},{"x":1756202942342,"y":32.548},{"x":1756202882209,"y":27.834},{"x":1756202822049,"y":50.808},{"x":1756202761873,"y":31.061},{"x":1756202701733,"y":37.122},{"x":1756202641610,"y":29.64},{"x":1756202581477,"y":30.51},{"x":1756202521375,"y":9.882},{"x":1756202461245,"y":11.489},{"x":1756202401528,"y":14.434},{"x":1756202341085,"y":23.579},{"x":1756202280947,"y":19.255},{"x":1756202220804,"y":22.087},{"x":1756202160710,"y":24.625},{"x":1756202100522,"y":33.908},{"x":1756202040470,"y":28.58},{"x":1756201980361,"y":24.444},{"x":1756201922971,"y":13.344},{"x":1756201862814,"y":15.02},{"x":1756201802675,"y":9.792},{"x":1756201742540,"y":16.048},{"x":1756201682416,"y":14.597},{"x":1756201622290,"y":27.918},{"x":1756201562145,"y":21.233},{"x":1756201501987,"y":19.886},{"x":1756201441799,"y":25.64},{"x":1756201381667,"y":22.478},{"x":1756201321541,"y":20.777},{"x":1756201261404,"y":11.414},{"x":1756201201166,"y":20.687},{"x":1756201141008,"y":24.299},{"x":1756201080851,"y":30.185},{"x":1756201020715,"y":30.637},{"x":1756200960666,"y":35.359},{"x":1756200900531,"y":22.747},{"x":1756200840337,"y":17.8},{"x":1756200783035,"y":31.616},{"x":1756200722874,"y":31.534},{"x":1756200662750,"y":25.734},{"x":1756200602632,"y":11.741},{"x":1756200542490,"y":30.179},{"x":1756200482364,"y":26.429},{"x":1756200422237,"y":33.482},{"x":1756200362112,"y":35.683},{"x":1756200301265,"y":37.057},{"x":1756200241121,"y":28.884},{"x":1756200180983,"y":27.43},{"x":1756200120860,"y":50.358},{"x":1756200060739,"y":33.198},{"x":1756200000674,"y":28.884},{"x":1756199940413,"y":36.382},{"x":1756199882976,"y":31.39},{"x":1756199822848,"y":19.579},{"x":1756199762323,"y":16.118},{"x":1756199702201,"y":21.397},{"x":1756199642051,"y":29.219},{"x":1756199581904,"y":28.46},{"x":1756199521730,"y":19.704},{"x":1756199461544,"y":32.812},{"x":1756199401377,"y":29.226},{"x":1756199341241,"y":30.172},{"x":1756199281112,"y":31.771},{"x":1756199220960,"y":28.751},{"x":1756199160836,"y":20.04},{"x":1756199100768,"y":18.571},{"x":1756199040622,"y":21.247},{"x":1756198980459,"y":25.674},{"x":1756198920513,"y":28.696},{"x":1756198862944,"y":41.864},{"x":1756198802091,"y":40.922},{"x":1756198741859,"y":37.435},{"x":1756198681737,"y":37.34},{"x":1756198621605,"y":32.39},{"x":1756198561467,"y":28.232},{"x":1756198500660,"y":26.902},{"x":1756198440486,"y":27.358},{"x":1756198380330,"y":26.576},{"x":1756198320086,"y":20.152},{"x":1756198262939,"y":22.294},{"x":1756198202762,"y":21.882},{"x":1756198142649,"y":25.052},{"x":1756198082504,"y":30.395},{"x":1756198022370,"y":24.061},{"x":1756197962222,"y":21.132},{"x":1756197902099,"y":16.481},{"x":1756197841913,"y":18.611},{"x":1756197781784,"y":19.236},{"x":1756197721658,"y":20.126},{"x":1756197661519,"y":35.839},{"x":1756197600881,"y":38.411},{"x":1756197540621,"y":49.069},{"x":1756197480471,"y":50.389},{"x":1756197420356,"y":41.454},{"x":1756197362840,"y":30.643},{"x":1756197302709,"y":19.224},{"x":1756197242578,"y":18.426},{"x":1756197182451,"y":20.158},{"x":1756197122313,"y":22.408},{"x":1756197062171,"y":22.985},{"x":1756197002031,"y":30.712},{"x":1756196941882,"y":29.923},{"x":1756196881759,"y":29.378},{"x":1756196821624,"y":27.234},{"x":1756196761491,"y":28.028},{"x":1756196700925,"y":39.037},{"x":1756196640814,"y":22.813},{"x":1756196580668,"y":22.079},{"x":1756196520534,"y":22.154},{"x":1756196460408,"y":26.63},{"x":1756196400345,"y":27.653},{"x":1756196343008,"y":30.419},{"x":1756196282570,"y":30.394},{"x":1756196222436,"y":21.284},{"x":1756196162301,"y":38.516},{"x":1756196102179,"y":29.143},{"x":1756196042050,"y":29.854},{"x":1756195981896,"y":30.476},{"x":1756195921766,"y":26.096},{"x":1756195861597,"y":28.235},{"x":1756195801424,"y":16.64},{"x":1756195741287,"y":37.362},{"x":1756195681166,"y":38.458},{"x":1756195621026,"y":40.464},{"x":1756195560907,"y":47.54},{"x":1756195500826,"y":42.661},{"x":1756195440613,"y":32.867},{"x":1756195380476,"y":27.09},{"x":1756195320286,"y":25.397},{"x":1756195263017,"y":29.542},{"x":1756195202030,"y":29.519},{"x":1756195141786,"y":27.227},{"x":1756195081659,"y":40.334},{"x":1756195021532,"y":26.14},{"x":1756194961404,"y":25.307},{"x":1756194900878,"y":30.638},{"x":1756194840664,"y":32.173},{"x":1756194780546,"y":24.923},{"x":1756194720480,"y":21.6},{"x":1756194660309,"y":24.893},{"x":1756194602916,"y":24.676},{"x":1756194542789,"y":22.404},{"x":1756194482666,"y":27.809},{"x":1756194422532,"y":43.468},{"x":1756194362407,"y":40.596},{"x":1756194302281,"y":38.557},{"x":1756194242156,"y":38.608},{"x":1756194181995,"y":35.938},{"x":1756194121878,"y":36.403},{"x":1756194061782,"y":32.636},{"x":1756194001660,"y":41.828},{"x":1756193941490,"y":38.56},{"x":1756193881359,"y":38.743},{"x":1756193821233,"y":49.372},{"x":1756193761108,"y":57.299},{"x":1756193700968,"y":27.497},{"x":1756193640777,"y":32.486},{"x":1756193580657,"y":34.32},{"x":1756193520613,"y":31.156},{"x":1756193460426,"y":41.191},{"x":1756193400349,"y":21.191},{"x":1756193342945,"y":21.277},{"x":1756193282833,"y":24.602},{"x":1756193222693,"y":24.389},{"x":1756193162560,"y":29.437},{"x":1756193102431,"y":26.236},{"x":1756193042300,"y":25.682},{"x":1756192982173,"y":28.631},{"x":1756192922049,"y":28.922},{"x":1756192861410,"y":30.067},{"x":1756192801284,"y":27.715},{"x":1756192741153,"y":30.13},{"x":1756192681025,"y":28.031},{"x":1756192620903,"y":27.887},{"x":1756192560768,"y":29.674},{"x":1756192500580,"y":26.686},{"x":1756192440440,"y":25.53},{"x":1756192380255,"y":24.103},{"x":1756192322988,"y":31.466},{"x":1756192262870,"y":27.815},{"x":1756192202700,"y":29.272},{"x":1756192142566,"y":32.988},{"x":1756192082433,"y":28.879},{"x":1756192022299,"y":25.511},{"x":1756191962167,"y":24.401},{"x":1756191902049,"y":21.284},{"x":1756191841890,"y":23.261},{"x":1756191781760,"y":24.752},{"x":1756191721641,"y":26.894},{"x":1756191661528,"y":18.52},{"x":1756191603050,"y":22.507},{"x":1756191542881,"y":22.724},{"x":1756191482755,"y":36.461},{"x":1756191422626,"y":36.03},{"x":1756191362501,"y":36.742},{"x":1756191302379,"y":36.115},{"x":1756191242240,"y":37.151},{"x":1756191182106,"y":25.978},{"x":1756191121952,"y":24.664},{"x":1756191061643,"y":22.986},{"x":1756191000980,"y":20.801},{"x":1756190940867,"y":26.13},{"x":1756190880740,"y":26.389},{"x":1756190820600,"y":25.576},{"x":1756190760496,"y":26.532},{"x":1756190700387,"y":28.782},{"x":1756190642980,"y":28.501},{"x":1756190582861,"y":27.005},{"x":1756190522729,"y":27.272},{"x":1756190462603,"y":27.086},{"x":1756190402483,"y":23.73},{"x":1756190342360,"y":24.118},{"x":1756190282222,"y":23.333},{"x":1756190222097,"y":25.994},{"x":1756190161956,"y":26.827},{"x":1756190101839,"y":27.72},{"x":1756190041704,"y":25.769},{"x":1756189981576,"y":28.706},{"x":1756189921452,"y":34.597},{"x":1756189861335,"y":27.091},{"x":1756189801198,"y":26.651},{"x":1756189741027,"y":25.208},{"x":1756189680882,"y":24.187},{"x":1756189620748,"y":24.007},{"x":1756189560604,"y":26.053},{"x":1756189500589,"y":29.803},{"x":1756189440336,"y":35.894},{"x":1756189383011,"y":36.832},{"x":1756189322860,"y":34.619},{"x":1756189262685,"y":34.728},{"x":1756189202555,"y":44.965},{"x":1756189142431,"y":27.548},{"x":1756189082301,"y":35.5},{"x":1756189022177,"y":47.179},{"x":1756188962036,"y":34.176},{"x":1756188901881,"y":48.002},{"x":1756188841747,"y":48.787},{"x":1756188781589,"y":49.519},{"x":1756188721451,"y":31.51},{"x":1756188661307,"y":30.7},{"x":1756188600750,"y":31.519},{"x":1756188540620,"y":29.479},{"x":1756188482898,"y":25.026},{"x":1756188422782,"y":22.031},{"x":1756188362660,"y":22.601},{"x":1756188302516,"y":22.998},{"x":1756188242393,"y":22.684},{"x":1756188182258,"y":24.564},{"x":1756188122143,"y":24.275},{"x":1756188062000,"y":28.326},{"x":1756188000506,"y":25.234},{"x":1756187940286,"y":23.023},{"x":1756187882963,"y":22.714},{"x":1756187822833,"y":23.707},{"x":1756187762712,"y":23.063},{"x":1756187702586,"y":27.274},{"x":1756187642455,"y":26.735},{"x":1756187582337,"y":38.504},{"x":1756187522214,"y":38.65},{"x":1756187462087,"y":39.241},{"x":1756187400861,"y":35.616},{"x":1756187340697,"y":37.364},{"x":1756187280616,"y":24.491},{"x":1756187220484,"y":26.034},{"x":1756187160310,"y":26.052},{"x":1756187100185,"y":23.461},{"x":1756187042896,"y":23.998},{"x":1756186982760,"y":28.127},{"x":1756186922626,"y":24.899},{"x":1756186862501,"y":23.154},{"x":1756186802382,"y":24.14},{"x":1756186742260,"y":21.583},{"x":1756186682124,"y":20.999},{"x":1756186621985,"y":26.813},{"x":1756186561350,"y":27.05},{"x":1756186501218,"y":23.846},{"x":1756186441061,"y":26.549},{"x":1756186380914,"y":24.631},{"x":1756186320797,"y":25.679},{"x":1756186260695,"y":26.374},{"x":1756186200594,"y":26.183},{"x":1756186140439,"y":26.939},{"x":1756186080347,"y":25.254},{"x":1756186023023,"y":24.293},{"x":1756185962880,"y":25.675},{"x":1756185902741,"y":27.205},{"x":1756185842552,"y":27.804},{"x":1756185782403,"y":29.89},{"x":1756185722270,"y":26.522},{"x":1756185661620,"y":27.634},{"x":1756185601490,"y":26.659},{"x":1756185541361,"y":26.198},{"x":1756185481221,"y":27.413},{"x":1756185421067,"y":25.301},{"x":1756185360956,"y":23.885},{"x":1756185300801,"y":22.414},{"x":1756185240648,"y":22.735},{"x":1756185180470,"y":26.018},{"x":1756185120254,"y":25.956},{"x":1756185062984,"y":26.346},{"x":1756185002837,"y":27.598},{"x":1756184942715,"y":27.703},{"x":1756184882594,"y":26.575},{"x":1756184822460,"y":26.574},{"x":1756184762338,"y":26.024},{"x":1756184702222,"y":26.946},{"x":1756184642079,"y":27.278},{"x":1756184581938,"y":26.938},{"x":1756184521811,"y":25.685},{"x":1756184461707,"y":27.09},{"x":1756184401718,"y":26.964},{"x":1756184341084,"y":27.728},{"x":1756184280942,"y":30.418},{"x":1756184220818,"y":29.93},{"x":1756184160698,"y":26.412},{"x":1756184100615,"y":25.969},{"x":1756184040454,"y":27.23},{"x":1756183980257,"y":23.918},{"x":1756183922974,"y":26.918},{"x":1756183862854,"y":26.116},{"x":1756183802742,"y":26.821},{"x":1756183742596,"y":30.994},{"x":1756183682473,"y":28.127},{"x":1756183622346,"y":28.433},{"x":1756183562189,"y":28.28},{"x":1756183502062,"y":31.975},{"x":1756183441931,"y":31.34},{"x":1756183381828,"y":27.51},{"x":1756183321673,"y":36.462},{"x":1756183261554,"y":35.051},{"x":1756183201426,"y":35.788},{"x":1756183141304,"y":35.002},{"x":1756183081172,"y":36.307},{"x":1756183020535,"y":25.987},{"x":1756182962931,"y":29.23},{"x":1756182902809,"y":29.932},{"x":1756182842679,"y":26.622},{"x":1756182782549,"y":26.086},{"x":1756182722424,"y":29.386},{"x":1756182662284,"y":30.722},{"x":1756182602156,"y":27.978},{"x":1756182542011,"y":30.491},{"x":1756182481884,"y":29.61},{"x":1756182421762,"y":25.938},{"x":1756182361629,"y":28.056},{"x":1756182300935,"y":28.416},{"x":1756182240814,"y":28.985},{"x":1756182180681,"y":30.842},{"x":1756182120608,"y":28.315},{"x":1756182062695,"y":26.67},{"x":1756182002563,"y":26.321},{"x":1756181942425,"y":27.744},{"x":1756181882302,"y":31.039},{"x":1756181822173,"y":26.693},{"x":1756181761553,"y":24.119},{"x":1756181701434,"y":25.224},{"x":1756181641274,"y":28.834},{"x":1756181581113,"y":25.684},{"x":1756181520962,"y":26.345},{"x":1756181460772,"y":29.192},{"x":1756181402690,"y":28.057},{"x":1756181342567,"y":31.462},{"x":1756181282345,"y":26.995},{"x":1756181222212,"y":25.631},{"x":1756181161212,"y":29.845},{"x":1756181101085,"y":29.738},{"x":1756181040938,"y":26.352},{"x":1756180980818,"y":36.121},{"x":1756180920685,"y":41.544},{"x":1756180863538,"y":38.893},{"x":1756180801364,"y":40.559},{"x":1756180740937,"y":41.598},{"x":1756180680809,"y":41.011},{"x":1756180620684,"y":36.712},{"x":1756180560629,"y":32.998},{"x":1756180500414,"y":36.191},{"x":1756180440249,"y":30.871},{"x":1756180382976,"y":29.992},{"x":1756180322846,"y":28.878},{"x":1756180262711,"y":31.643},{"x":1756180202591,"y":42.988},{"x":1756180142465,"y":26.996},{"x":1756180082361,"y":26.97},{"x":1756180022225,"y":27.544},{"x":1756179962102,"y":28.356},{"x":1756179901963,"y":32.665},{"x":1756179841834,"y":37.061},{"x":1756179781693,"y":38.503},{"x":1756179721569,"y":38.296},{"x":1756179661415,"y":36.23},{"x":1756179600909,"y":38.443},{"x":1756179540720,"y":25.95},{"x":1756179480595,"y":25.406},{"x":1756179420462,"y":27.565},{"x":1756179360228,"y":28.415},{"x":1756179300084,"y":29.489},{"x":1756179242810,"y":29.512},{"x":1756179182694,"y":31.696},{"x":1756179122561,"y":33.666},{"x":1756179062427,"y":30.289},{"x":1756179002301,"y":29.626},{"x":1756178942176,"y":28.043},{"x":1756178882029,"y":27.77},{"x":1756178821885,"y":25.082},{"x":1756178761755,"y":30.762},{"x":1756178701574,"y":29.864},{"x":1756178641435,"y":27.996},{"x":1756178581269,"y":27.908},{"x":1756178521124,"y":25.627},{"x":1756178460978,"y":25.547},{"x":1756178400867,"y":25.121},{"x":1756178340717,"y":39.011},{"x":1756178280605,"y":37.2},{"x":1756178220612,"y":36.184},{"x":1756178160181,"y":37.259},{"x":1756178102976,"y":37.086},{"x":1756178042770,"y":27.654},{"x":1756177982626,"y":28.738},{"x":1756177922489,"y":29.233},{"x":1756177862336,"y":26.812},{"x":1756177801075,"y":27.289},{"x":1756177740933,"y":27.222},{"x":1756177681443,"y":28.96},{"x":1756177621326,"y":28.328},{"x":1756177561157,"y":29.146},{"x":1756177501022,"y":34.648},{"x":1756177452900,"y":31.314},{"x":1756177446928,"y":27.478},{"x":1756177142966,"y":26.134},{"x":1756177082839,"y":25.919},{"x":1756177022712,"y":25.924},{"x":1756176962591,"y":24.893},{"x":1756176902455,"y":31.948},{"x":1756176842247,"y":31.764},{"x":1756176782112,"y":30.51},{"x":1756176721977,"y":31.909},{"x":1756176661642,"y":26.616},{"x":1756176600930,"y":24.14},{"x":1756176540769,"y":23.834},{"x":1756176480675,"y":24.258},{"x":1756176420565,"y":25.393},{"x":1756176360434,"y":27.173},{"x":1756176300350,"y":42.689},{"x":1756176242948,"y":39.824},{"x":1756176182815,"y":44.916},{"x":1756176122676,"y":41.665},{"x":1756176062551,"y":42.443},{"x":1756176002427,"y":27.871},{"x":1756175942302,"y":26.382},{"x":1756175882166,"y":24.866},{"x":1756175822036,"y":25.754},{"x":1756175761905,"y":29.219},{"x":1756175701785,"y":29.375},{"x":1756175641645,"y":32.065},{"x":1756175581521,"y":32.416},{"x":1756175521391,"y":34.732},{"x":1756175461234,"y":33.05},{"x":1756175401118,"y":27.175},{"x":1756175340952,"y":29.221},{"x":1756175280837,"y":30.146},{"x":1756175220711,"y":29.251},{"x":1756175160583,"y":29.567},{"x":1756175100526,"y":26.966},{"x":1756175040440,"y":25.109},{"x":1756174980287,"y":26.562},{"x":1756174922929,"y":26.059},{"x":1756174862791,"y":38.006},{"x":1756174802669,"y":37.914},{"x":1756174742540,"y":37.736},{"x":1756174682416,"y":35.86},{"x":1756174622308,"y":34.675},{"x":1756174562171,"y":26.461},{"x":1756174502056,"y":26.218},{"x":1756174441907,"y":27.5},{"x":1756174381761,"y":25.608},{"x":1756174321597,"y":29.596},{"x":1756174261440,"y":28.495},{"x":1756174200718,"y":29.246},{"x":1756174140576,"y":27.124},{"x":1756174082731,"y":31.066},{"x":1756174022607,"y":27.301},{"x":1756173962444,"y":29.06},{"x":1756173902289,"y":27.724},{"x":1756173842163,"y":26.015},{"x":1756173782036,"y":26.04},{"x":1756173721908,"y":36.913},{"x":1756173661797,"y":40.571},{"x":1756173600382,"y":37.698},{"x":1756173542936,"y":41.197},{"x":1756173482832,"y":40.111},{"x":1756173422677,"y":27.737},{"x":1756173362549,"y":31.259},{"x":1756173302422,"y":29.7},{"x":1756173242298,"y":27.202},{"x":1756173182175,"y":27.055},{"x":1756173122042,"y":24.359},{"x":1756173061890,"y":23.76},{"x":1756173001766,"y":24.583},{"x":1756172941637,"y":24.298},{"x":1756172881512,"y":27.384},{"x":1756172821391,"y":25.721},{"x":1756172761258,"y":24.721},{"x":1756172701202,"y":26.645},{"x":1756172640998,"y":29.764},{"x":1756172580869,"y":30.036},{"x":1756172520743,"y":38.485},{"x":1756172460617,"y":38.267},{"x":1756172400581,"y":35.591},{"x":1756172340394,"y":34.511},{"x":1756172280303,"y":25.283},{"x":1756172222910,"y":26.425},{"x":1756172162785,"y":38.636},{"x":1756172102657,"y":37.855},{"x":1756172042539,"y":37.124},{"x":1756171982394,"y":38.609},{"x":1756171922270,"y":38.402},{"x":1756171862141,"y":38.548},{"x":1756171802015,"y":35.872},{"x":1756171741884,"y":36.156},{"x":1756171681760,"y":30.948},{"x":1756171621651,"y":29.815},{"x":1756171561515,"y":25.938},{"x":1756171500948,"y":25.501},{"x":1756171440822,"y":25.735},{"x":1756171380685,"y":27.548},{"x":1756171320626,"y":26.701},{"x":1756171260666,"y":27.192},{"x":1756171200621,"y":28.91},{"x":1756171142942,"y":30.067},{"x":1756171082572,"y":30.744},{"x":1756171022437,"y":29.155},{"x":1756170962310,"y":28.19},{"x":1756170902176,"y":28.032},{"x":1756170842056,"y":28.926},{"x":1756170781959,"y":27.724},{"x":1756170721780,"y":28.705},{"x":1756170661500,"y":26.238},{"x":1756170600703,"y":26.64},{"x":1756170540595,"y":33.652},{"x":1756170482933,"y":32.868},{"x":1756170422816,"y":30.295},{"x":1756170362689,"y":30.104},{"x":1756170302561,"y":32.491},{"x":1756170242431,"y":31.432},{"x":1756170182296,"y":31.127},{"x":1756170122169,"y":32.122},{"x":1756170065050,"y":30.665},{"x":1756170000361,"y":29.461},{"x":1756169943026,"y":32.54},{"x":1756169882872,"y":31.282},{"x":1756169822745,"y":47.792},{"x":1756169762596,"y":59.5},{"x":1756169702464,"y":56.686},{"x":1756169642329,"y":54.726},{"x":1756169582206,"y":54.419},{"x":1756169522082,"y":37.642},{"x":1756169461946,"y":32.02},{"x":1756169401821,"y":39.935},{"x":1756169341693,"y":45.608},{"x":1756169281563,"y":45.342},{"x":1756169221435,"y":45.702},{"x":1756169161316,"y":36.655},{"x":1756169101209,"y":34.048},{"x":1756169041035,"y":33.806},{"x":1756168980897,"y":34.097},{"x":1756168920771,"y":33.217},{"x":1756168860644,"y":30.775},{"x":1756168800570,"y":28.321},{"x":1756168740407,"y":26.248},{"x":1756168680261,"y":30.667},{"x":1756168622942,"y":34.02},{"x":1756168562817,"y":32.75},{"x":1756168502680,"y":31.531},{"x":1756168442541,"y":28.6},{"x":1756168382406,"y":30.949},{"x":1756168322290,"y":29.598},{"x":1756168262135,"y":28.553},{"x":1756168201990,"y":31.757},{"x":1756168141855,"y":31.51},{"x":1756168081716,"y":30.041},{"x":1756168021590,"y":30.325},{"x":1756167961466,"y":30.803},{"x":1756167901012,"y":32.723},{"x":1756167840835,"y":33.359},{"x":1756167780714,"y":30.067},{"x":1756167720604,"y":29.642},{"x":1756167660519,"y":32.092},{"x":1756167600411,"y":30.485},{"x":1756167543015,"y":31.63},{"x":1756167482888,"y":30.48},{"x":1756167422763,"y":31.669},{"x":1756167362357,"y":31.333},{"x":1756167302232,"y":30.778},{"x":1756167242109,"y":29.905},{"x":1756167181971,"y":29.567},{"x":1756167121799,"y":27.697},{"x":1756167061489,"y":28.688},{"x":1756167000865,"y":30.115},{"x":1756166940703,"y":31.726},{"x":1756166880571,"y":30.109},{"x":1756166820483,"y":31.5},{"x":1756166760353,"y":33.175},{"x":1756166702973,"y":31.697},{"x":1756166642846,"y":31.739},{"x":1756166582718,"y":33.959},{"x":1756166522589,"y":33.252},{"x":1756166462461,"y":28.79},{"x":1756166400447,"y":27.644},{"x":1756166342980,"y":28.975},{"x":1756166282860,"y":31.075},{"x":1756166222723,"y":32.953},{"x":1756166162581,"y":31.177},{"x":1756166102449,"y":31.021},{"x":1756166042322,"y":32.052},{"x":1756165982191,"y":28.174},{"x":1756165922072,"y":38.707},{"x":1756165861936,"y":40.723},{"x":1756165801826,"y":37.063},{"x":1756165741688,"y":38.809},{"x":1756165681546,"y":47.67},{"x":1756165621417,"y":33.64},{"x":1756165561286,"y":37.836},{"x":1756165501179,"y":37.255},{"x":1756165441009,"y":34.85},{"x":1756165380887,"y":33.839},{"x":1756165320760,"y":36.371},{"x":1756165260618,"y":42.815},{"x":1756165200528,"y":41.363},{"x":1756165140335,"y":40.94},{"x":1756165080273,"y":45.076},{"x":1756165022935,"y":40.49},{"x":1756164962742,"y":33.812},{"x":1756164902588,"y":30.29},{"x":1756164842453,"y":34.393},{"x":1756164782324,"y":31.696},{"x":1756164722198,"y":33.724},{"x":1756164662068,"y":35.197},{"x":1756164601924,"y":33.754},{"x":1756164541787,"y":32.261},{"x":1756164481670,"y":31.69},{"x":1756164421545,"y":31.794},{"x":1756164361409,"y":30.655},{"x":1756164300687,"y":29.561},{"x":1756164240561,"y":29.981},{"x":1756164180417,"y":32.849},{"x":1756164120246,"y":34.955},{"x":1756164062940,"y":33.422},{"x":1756164002813,"y":30.286},{"x":1756163942594,"y":32.406},{"x":1756163882471,"y":31.891},{"x":1756163822350,"y":32.782},{"x":1756163762201,"y":42.118},{"x":1756163702094,"y":38.269},{"x":1756163641937,"y":42.202},{"x":1756163581824,"y":39.875},{"x":1756163521624,"y":55.475},{"x":1756163461431,"y":47.347},{"x":1756163401246,"y":41.64},{"x":1756163341078,"y":43.709},{"x":1756163280935,"y":41.62},{"x":1756163220815,"y":34.518},{"x":1756163160690,"y":45.226},{"x":1756163100617,"y":58.574},{"x":1756163040459,"y":57.761},{"x":1756162980303,"y":55.98},{"x":1756162922946,"y":54.895},{"x":1756162862821,"y":34.552},{"x":1756162801666,"y":29.327},{"x":1756162741019,"y":33.914},{"x":1756162680896,"y":34.32},{"x":1756162620770,"y":33.131},{"x":1756162560705,"y":31.939},{"x":1756162500548,"y":33.606},{"x":1756162440370,"y":29.623},{"x":1756162380222,"y":38.808},{"x":1756162322926,"y":41.058},{"x":1756162262801,"y":41.216},{"x":1756162202656,"y":39.173},{"x":1756162142529,"y":40.048},{"x":1756162082406,"y":34.739},{"x":1756162022279,"y":36.295},{"x":1756161962149,"y":34.285},{"x":1756161902018,"y":35.402},{"x":1756161841799,"y":32.999},{"x":1756161781671,"y":31.888},{"x":1756161721537,"y":28.927},{"x":1756161661399,"y":28.544},{"x":1756161600812,"y":31.666},{"x":1756161540649,"y":30.826},{"x":1756161480523,"y":35.328},{"x":1756161420367,"y":33.037},{"x":1756161362850,"y":56.407},{"x":1756161302679,"y":55.177},{"x":1756161242550,"y":57.882},{"x":1756161182416,"y":56.192},{"x":1756161122276,"y":58.724},{"x":1756161062152,"y":33.618},{"x":1756161002016,"y":30.8},{"x":1756160941879,"y":29.201},{"x":1756160881756,"y":27.343},{"x":1756160821630,"y":31.829},{"x":1756160761502,"y":30.234},{"x":1756160700991,"y":31.516},{"x":1756160640838,"y":31.238},{"x":1756160580711,"y":30.626},{"x":1756160520598,"y":30.248},{"x":1756160460509,"y":28.333},{"x":1756160400339,"y":29.933},{"x":1756160340145,"y":28.026},{"x":1756160282898,"y":27.32},{"x":1756160222770,"y":30.101},{"x":1756160162317,"y":29.982},{"x":1756160102190,"y":30.017},{"x":1756160042054,"y":33.69},{"x":1756159981933,"y":30.637},{"x":1756159921775,"y":30.745},{"x":1756159861518,"y":29.753},{"x":1756159800834,"y":32.473},{"x":1756159740654,"y":31.998},{"x":1756159680645,"y":40.278},{"x":1756159620396,"y":40.049},{"x":1756159560381,"y":41.584},{"x":1756159502965,"y":41.569},{"x":1756159442835,"y":40.235},{"x":1756159382719,"y":30.763},{"x":1756159322561,"y":30.802},{"x":1756159262458,"y":27.491},{"x":1756159202994,"y":28.651},{"x":1756159142880,"y":30.186},{"x":1756159082731,"y":30.924},{"x":1756159022597,"y":33.641},{"x":1756158962464,"y":44.506},{"x":1756158902338,"y":43.19},{"x":1756158842209,"y":45.331},{"x":1756158782079,"y":47.686},{"x":1756158721938,"y":41.305},{"x":1756158661583,"y":33.726},{"x":1756158600843,"y":30.685},{"x":1756158540673,"y":32.822},{"x":1756158480565,"y":31.487},{"x":1756158420438,"y":32.51},{"x":1756158360309,"y":33.306},{"x":1756158303010,"y":33.281},{"x":1756158242872,"y":43.964},{"x":1756158182737,"y":46.252},{"x":1756158122616,"y":48.434},{"x":1756158062502,"y":45.599},{"x":1756158002351,"y":45.739},{"x":1756157942222,"y":33.14},{"x":1756157882102,"y":31.838},{"x":1756157821956,"y":31.171},{"x":1756157761221,"y":29.304},{"x":1756157701094,"y":29.573},{"x":1756157640928,"y":30.647},{"x":1756157580805,"y":40.535},{"x":1756157520791,"y":45.125},{"x":1756157460531,"y":44.627},{"x":1756157400494,"y":45.767},{"x":1756157342957,"y":49.97},{"x":1756157282816,"y":35.165},{"x":1756157222663,"y":35.178},{"x":1756157162518,"y":34.793},{"x":1756157102389,"y":34.301},{"x":1756157042269,"y":34.885},{"x":1756156982167,"y":32.408},{"x":1756156921998,"y":32.725},{"x":1756156861270,"y":45.798},{"x":1756156801132,"y":43.927},{"x":1756156740963,"y":42.727},{"x":1756156680840,"y":46.36},{"x":1756156620704,"y":43.174},{"x":1756156560661,"y":34.642},{"x":1756156500387,"y":34.693},{"x":1756156440255,"y":32.046},{"x":1756156382920,"y":33.076},{"x":1756156322752,"y":33.424},{"x":1756156262568,"y":33.641},{"x":1756156202376,"y":34.782},{"x":1756156142246,"y":33.053},{"x":1756156082112,"y":34.835},{"x":1756156021974,"y":33.935},{"x":1756155961502,"y":32.878},{"x":1756155901383,"y":33.613},{"x":1756155841265,"y":36.589},{"x":1756155781130,"y":34.422},{"x":1756155720988,"y":34.452},{"x":1756155660862,"y":47.732},{"x":1756155602076,"y":61.966},{"x":1756155541879,"y":60.941},{"x":1756155481734,"y":56.642},{"x":1756155421607,"y":53.928},{"x":1756155361476,"y":46.247},{"x":1756155300900,"y":36.606},{"x":1756155240718,"y":37.471},{"x":1756155180658,"y":38.473},{"x":1756155120732,"y":35.711},{"x":1756155060219,"y":51.036},{"x":1756155002977,"y":39.755},{"x":1756154942851,"y":47.142},{"x":1756154882717,"y":45.392},{"x":1756154822593,"y":48.454},{"x":1756154762452,"y":49.592},{"x":1756154702314,"y":41.58},{"x":1756154642175,"y":31.86},{"x":1756154582050,"y":30.529},{"x":1756154521915,"y":29.486},{"x":1756154461760,"y":29.172},{"x":1756154401619,"y":31.686},{"x":1756154341485,"y":40.616},{"x":1756154281364,"y":51.817},{"x":1756154221233,"y":55.169},{"x":1756154161098,"y":54.169},{"x":1756154100961,"y":57.018},{"x":1756154040813,"y":43.77},{"x":1756153980692,"y":43.192},{"x":1756153920618,"y":40.997},{"x":1756153860513,"y":41.282},{"x":1756153800385,"y":40.144},{"x":1756153742935,"y":40.834},{"x":1756153682812,"y":55.16},{"x":1756153622680,"y":44.795},{"x":1756153562557,"y":46.594},{"x":1756153502428,"y":45.408},{"x":1756153442280,"y":46.591},{"x":1756153382153,"y":45.02},{"x":1756153322008,"y":44.075},{"x":1756153261160,"y":43.608},{"x":1756153201050,"y":41.131},{"x":1756153140869,"y":46.854},{"x":1756153080759,"y":46.817},{"x":1756153020687,"y":49.686},{"x":1756152960529,"y":64.855},{"x":1756152900389,"y":46.147},{"x":1756152840171,"y":49.045},{"x":1756152782914,"y":43.996},{"x":1756152722728,"y":46.261},{"x":1756152662634,"y":55.386},{"x":1756152602448,"y":41.782},{"x":1756152542313,"y":53.837},{"x":1756152482190,"y":41.234},{"x":1756152422038,"y":41.792},{"x":1756152361650,"y":46.903},{"x":1756152301512,"y":43.129},{"x":1756152241372,"y":43.423},{"x":1756152181257,"y":40.062},{"x":1756152121099,"y":44.99},{"x":1756152060943,"y":49.369},{"x":1756152002054,"y":43.624},{"x":1756151941790,"y":59.852},{"x":1756151881667,"y":57.036},{"x":1756151821543,"y":85.655},{"x":1756151761387,"y":75.571},{"x":1756151700788,"y":83.682},{"x":1756151640628,"y":82.847},{"x":1756151580516,"y":56.027},{"x":1756151520379,"y":44.489},{"x":1756151460318,"y":42.805},{"x":1756151402900,"y":53.623},{"x":1756151342771,"y":41.928},{"x":1756151282643,"y":58.264},{"x":1756151222520,"y":47.977},{"x":1756151162381,"y":48.958},{"x":1756151102227,"y":47.269},{"x":1756151042104,"y":48.659},{"x":1756150981961,"y":58.163},{"x":1756150921833,"y":56.171},{"x":1756150861706,"y":51.445},{"x":1756150801589,"y":66.954},{"x":1756150741460,"y":54.276},{"x":1756150681336,"y":45.914},{"x":1756150621202,"y":46.051},{"x":1756150561051,"y":48.402},{"x":1756150500909,"y":43.417},{"x":1756150440774,"y":42.58},{"x":1756150380660,"y":44.017},{"x":1756150320595,"y":56.898},{"x":1756150260439,"y":55.987},{"x":1756150200343,"y":58.885},{"x":1756150142969,"y":57.872},{"x":1756150082837,"y":56.552},{"x":1756150022715,"y":43.422},{"x":1756149962596,"y":43.956},{"x":1756149902469,"y":47.491},{"x":1756149842263,"y":42.356},{"x":1756149782134,"y":57.079},{"x":1756149721993,"y":40.176},{"x":1756149661252,"y":43.306},{"x":1756149601147,"y":47.525},{"x":1756149540922,"y":47.098},{"x":1756149480796,"y":46.166},{"x":1756149420698,"y":48.013},{"x":1756149360584,"y":44.172},{"x":1756149300516,"y":55.853},{"x":1756149243025,"y":45.236},{"x":1756149182893,"y":43.15},{"x":1756149122751,"y":46.783},{"x":1756149062565,"y":42.916},{"x":1756149002420,"y":40.375},{"x":1756148942298,"y":39.635},{"x":1756148882168,"y":40.138},{"x":1756148822038,"y":43.343},{"x":1756148761629,"y":43.016},{"x":1756148701486,"y":45.647},{"x":1756148641381,"y":46.828},{"x":1756148581241,"y":42.726},{"x":1756148521112,"y":44.126},{"x":1756148460949,"y":44.166},{"x":1756148401203,"y":45.668},{"x":1756148340903,"y":43.386},{"x":1756148280778,"y":54.605},{"x":1756148220654,"y":56.332},{"x":1756148160531,"y":45.112},{"x":1756148100388,"y":65.821},{"x":1756148040257,"y":60.551},{"x":1756147982965,"y":70.266},{"x":1756147922830,"y":69.606},{"x":1756147862709,"y":65.317},{"x":1756147802585,"y":53.55},{"x":1756147742451,"y":73.35},{"x":1756147682328,"y":43.18},{"x":1756147622187,"y":48.467},{"x":1756147562034,"y":59.294},{"x":1756147501904,"y":34.492},{"x":1756147441652,"y":40.955},{"x":1756147381533,"y":42.252},{"x":1756147321401,"y":39.642},{"x":1756147261281,"y":42.09},{"x":1756147200910,"y":39.54},{"x":1756147140629,"y":42.353},{"x":1756147080554,"y":45.058},{"x":1756147020321,"y":45.343},{"x":1756146960315,"y":44.965},{"x":1756146902943,"y":44.741},{"x":1756146842808,"y":40.441},{"x":1756146782671,"y":38.603},{"x":1756146722545,"y":37.368},{"x":1756146662414,"y":35.939},{"x":1756146602297,"y":39.889},{"x":1756146542159,"y":43.886},{"x":1756146482046,"y":40.921},{"x":1756146421896,"y":40.342},{"x":1756146361777,"y":38.887},{"x":1756146301655,"y":48.43},{"x":1756146241510,"y":50.692},{"x":1756146181387,"y":55.949},{"x":1756146121255,"y":55.984},{"x":1756146061131,"y":50.798},{"x":1756146001096,"y":37.673},{"x":1756145940862,"y":45.643},{"x":1756145880741,"y":35.611},{"x":1756145820673,"y":39.396},{"x":1756145760589,"y":36.511},{"x":1756145700412,"y":36.918},{"x":1756145643011,"y":41.856},{"x":1756145582879,"y":47.779},{"x":1756145522700,"y":46.81},{"x":1756145462533,"y":47.957},{"x":1756145402391,"y":50.876},{"x":1756145342262,"y":66.683},{"x":1756145282143,"y":39.281},{"x":1756145221983,"y":38.933},{"x":1756145161730,"y":33.888},{"x":1756145101594,"y":34.045},{"x":1756145041472,"y":38.963},{"x":1756144981347,"y":35.1},{"x":1756144921223,"y":33.9},{"x":1756144861108,"y":34.702},{"x":1756144802121,"y":32.845},{"x":1756144741966,"y":37.315},{"x":1756144681820,"y":33.86},{"x":1756144621671,"y":36.665},{"x":1756144561539,"y":35.18},{"x":1756144501357,"y":35.69},{"x":1756144441225,"y":37.75},{"x":1756144381096,"y":37.38},{"x":1756144320948,"y":35.662},{"x":1756144260832,"y":34.098},{"x":1756144200748,"y":34.622},{"x":1756144140586,"y":38.959},{"x":1756144080460,"y":35.6},{"x":1756144020300,"y":34.777},{"x":1756143962976,"y":35.065},{"x":1756143902865,"y":34.674},{"x":1756143842735,"y":53.086},{"x":1756143782619,"y":41.396},{"x":1756143722491,"y":37.162},{"x":1756143662359,"y":32.057},{"x":1756143602232,"y":59.579},{"x":1756143542101,"y":61.07},{"x":1756143481968,"y":60.148},{"x":1756143421844,"y":62.959},{"x":1756143361213,"y":55.849},{"x":1756143301049,"y":40.266},{"x":1756143240903,"y":33.878},{"x":1756143180789,"y":34.568},{"x":1756143120705,"y":33.25},{"x":1756143060522,"y":35.621},{"x":1756143000459,"y":35.005},{"x":1756142940264,"y":42.628},{"x":1756142882908,"y":51.271},{"x":1756142822775,"y":46.777},{"x":1756142762656,"y":46.684},{"x":1756142702512,"y":46.661},{"x":1756142642373,"y":45.316},{"x":1756142582252,"y":42.16},{"x":1756142522106,"y":34.842},{"x":1756142461174,"y":47.539},{"x":1756142401086,"y":48.044},{"x":1756142340887,"y":46.097},{"x":1756142280766,"y":58.93},{"x":1756142220632,"y":62.228},{"x":1756142160481,"y":54.742},{"x":1756142100326,"y":52.021},{"x":1756142042986,"y":47.658},{"x":1756141982839,"y":43.48},{"x":1756141922702,"y":41.008},{"x":1756141862548,"y":36.485},{"x":1756141802410,"y":34.156},{"x":1756141742279,"y":32.489},{"x":1756141682147,"y":31.568},{"x":1756141621997,"y":36.462},{"x":1756141561557,"y":35.329},{"x":1756141501420,"y":33.932},{"x":1756141441301,"y":33.024},{"x":1756141381159,"y":35.039},{"x":1756141321019,"y":34.862},{"x":1756141260901,"y":33.686},{"x":1756141202219,"y":33.701},{"x":1756141141983,"y":31.369},{"x":1756141081862,"y":32.965},{"x":1756141021714,"y":32.747},{"x":1756140961584,"y":29.214},{"x":1756140900764,"y":29.312},{"x":1756140840607,"y":36.354},{"x":1756140780497,"y":41.413},{"x":1756140720450,"y":33.424},{"x":1756140660269,"y":32.356},{"x":1756140602946,"y":34.014},{"x":1756140542803,"y":29.588},{"x":1756140482652,"y":29.477},{"x":1756140422539,"y":31.638},{"x":1756140362404,"y":30.355},{"x":1756140302276,"y":30.862},{"x":1756140242142,"y":33.941},{"x":1756140182002,"y":42.079},{"x":1756140121907,"y":55.846},{"x":1756140061751,"y":54.252},{"x":1756140001631,"y":53.495},{"x":1756139941493,"y":64.855},{"x":1756139881372,"y":36.176},{"x":1756139821257,"y":24.737},{"x":1756139761121,"y":43.346},{"x":1756139700973,"y":29.429},{"x":1756139640841,"y":30.257},{"x":1756139580719,"y":31.006},{"x":1756139520628,"y":29.172},{"x":1756139460432,"y":27.727},{"x":1756139400389,"y":27.544},{"x":1756139342984,"y":32.608},{"x":1756139282808,"y":36.026},{"x":1756139222686,"y":37.199},{"x":1756139162562,"y":38.537},{"x":1756139102430,"y":31.061},{"x":1756139042304,"y":23.266},{"x":1756138982198,"y":30.071},{"x":1756138922062,"y":25.6},{"x":1756138861374,"y":26.591},{"x":1756138801256,"y":29.226},{"x":1756138741055,"y":21.397},{"x":1756138680919,"y":30.298},{"x":1756138620793,"y":32.808},{"x":1756138560714,"y":36.389},{"x":1756138500639,"y":35.16},{"x":1756138440425,"y":33.298},{"x":1756138380266,"y":26.696},{"x":1756138320277,"y":25.847},{"x":1756138262898,"y":36.5},{"x":1756138202755,"y":28.446},{"x":1756138142625,"y":26.384},{"x":1756138082501,"y":25.901},{"x":1756138022382,"y":23.399},{"x":1756137962245,"y":27.15},{"x":1756137902120,"y":22.783},{"x":1756137841968,"y":21.502},{"x":1756137781933,"y":19.938},{"x":1756137721717,"y":23.732},{"x":1756137661631,"y":25.884},{"x":1756137600172,"y":26.495},{"x":1756137542925,"y":26.449},{"x":1756137482793,"y":25.097},{"x":1756137422678,"y":29.189},{"x":1756137362535,"y":23.957},{"x":1756137302418,"y":24.48},{"x":1756137242302,"y":33.92},{"x":1756137182177,"y":43.484},{"x":1756137122042,"y":44.406},{"x":1756137061902,"y":42.204},{"x":1756137001773,"y":42.972},{"x":1756136941634,"y":35.453},{"x":1756136881505,"y":26.269},{"x":1756136821383,"y":22.885},{"x":1756136761259,"y":24.468},{"x":1756136701162,"y":20.435},{"x":1756136640916,"y":17.279},{"x":1756136580797,"y":27.419},{"x":1756136520651,"y":27.29},{"x":1756136460590,"y":27.708},{"x":1756136400408,"y":28.4},{"x":1756136340239,"y":35.443},{"x":1756136282988,"y":28.247},{"x":1756136222820,"y":26.927},{"x":1756136162691,"y":25.747},{"x":1756136102559,"y":28.906},{"x":1756136042418,"y":34.862},{"x":1756135982297,"y":36.894},{"x":1756135922173,"y":51.554},{"x":1756135862042,"y":30.564},{"x":1756135801921,"y":30.948},{"x":1756135741789,"y":20.032},{"x":1756135681666,"y":26.588},{"x":1756135621536,"y":25.9},{"x":1756135561417,"y":25.729},{"x":1756135500969,"y":22.09},{"x":1756135440850,"y":28.442},{"x":1756135380699,"y":31.474},{"x":1756135320632,"y":28.345},{"x":1756135260468,"y":29.424},{"x":1756135200342,"y":31.298},{"x":1756135143015,"y":18.919},{"x":1756135082881,"y":22.596},{"x":1756135022735,"y":20.183},{"x":1756134962405,"y":20.66},{"x":1756134902265,"y":25.243},{"x":1756134842127,"y":29.546},{"x":1756134781980,"y":15.325},{"x":1756134721781,"y":21.918},{"x":1756134661485,"y":17.171},{"x":1756134600795,"y":30.466},{"x":1756134540623,"y":37.511},{"x":1756134482956,"y":16.766},{"x":1756134422829,"y":29.443},{"x":1756134362710,"y":40.351},{"x":1756134302584,"y":38.711},{"x":1756134242465,"y":41.084},{"x":1756134182334,"y":38.644},{"x":1756134122201,"y":30.772},{"x":1756134062081,"y":19.397},{"x":1756134002145,"y":19.302},{"x":1756133941813,"y":16.013},{"x":1756133881685,"y":20.309},{"x":1756133821560,"y":27.187},{"x":1756133761427,"y":44.258},{"x":1756133700728,"y":29.71},{"x":1756133640522,"y":30.336},{"x":1756133580380,"y":33.901},{"x":1756133520261,"y":16.669},{"x":1756133462960,"y":15.34},{"x":1756133402846,"y":17.016},{"x":1756133342721,"y":26.383},{"x":1756133282591,"y":31.195},{"x":1756133222466,"y":23.77},{"x":1756133162339,"y":25.739},{"x":1756133102215,"y":27.246},{"x":1756133042083,"y":19.519},{"x":1756132981940,"y":20.989},{"x":1756132921812,"y":21.44},{"x":1756132861667,"y":20.519},{"x":1756132801560,"y":16.987},{"x":1756132741400,"y":16.567},{"x":1756132681271,"y":17.686},{"x":1756132621150,"y":16.506},{"x":1756132561009,"y":14.046},{"x":1756132500886,"y":17.183},{"x":1756132440755,"y":20.437},{"x":1756132380616,"y":14.786},{"x":1756132320526,"y":22.339},{"x":1756132260360,"y":28.019},{"x":1756132200452,"y":39.373},{"x":1756132142928,"y":40.361},{"x":1756132082802,"y":55.992},{"x":1756132022675,"y":33.218},{"x":1756131962535,"y":24.673},{"x":1756131902404,"y":18.732},{"x":1756131842262,"y":12.946},{"x":1756131782141,"y":17.698},{"x":1756131722003,"y":26.549},{"x":1756131661457,"y":27.907},{"x":1756131601327,"y":24.11},{"x":1756131541199,"y":24.224},{"x":1756131481063,"y":42.668},{"x":1756131420936,"y":17.806},{"x":1756131360815,"y":17.376},{"x":1756131300788,"y":19.574},{"x":1756131240531,"y":18.102},{"x":1756131180361,"y":31.67},{"x":1756131120105,"y":21.211},{"x":1756131062915,"y":22.394},{"x":1756131002758,"y":21.505},{"x":1756130942636,"y":36.239},{"x":1756130882504,"y":28.12},{"x":1756130822374,"y":25.832},{"x":1756130761909,"y":31.906},{"x":1756130701781,"y":32.05},{"x":1756130641644,"y":29.662},{"x":1756130581506,"y":31.134},{"x":1756130521368,"y":24.292},{"x":1756130461250,"y":20.848},{"x":1756130401940,"y":18.539},{"x":1756130341750,"y":15.413},{"x":1756130281625,"y":18.667},{"x":1756130221498,"y":24.564},{"x":1756130161372,"y":34.882},{"x":1756130100793,"y":36.566},{"x":1756130040626,"y":35.87},{"x":1756129980507,"y":39.174},{"x":1756129920369,"y":24.49},{"x":1756129860106,"y":19.513},{"x":1756129802902,"y":19.813},{"x":1756129742773,"y":17.111},{"x":1756129682653,"y":14.24},{"x":1756129622517,"y":23.624},{"x":1756129562380,"y":19.511},{"x":1756129502254,"y":26.207},{"x":1756129442123,"y":22.961},{"x":1756129381987,"y":25.373},{"x":1756129321850,"y":20.9},{"x":1756129261743,"y":19.111},{"x":1756129201590,"y":43.313},{"x":1756129141452,"y":27.346},{"x":1756129081335,"y":25.398},{"x":1756129021195,"y":22.945},{"x":1756128961062,"y":22.781},{"x":1756128900938,"y":20.387},{"x":1756128840744,"y":9.394},{"x":1756128780683,"y":9.072},{"x":1756128720500,"y":13.9},{"x":1756128660397,"y":15.869},{"x":1756128603020,"y":36.944},{"x":1756128542872,"y":16.904},{"x":1756128482736,"y":18.971},{"x":1756128422613,"y":11.868},{"x":1756128362495,"y":12.761},{"x":1756128302344,"y":9.058},{"x":1756128242204,"y":8.828},{"x":1756128182076,"y":22.834},{"x":1756128121936,"y":33.952},{"x":1756128061357,"y":38.644},{"x":1756128001256,"y":36.3},{"x":1756127941035,"y":35.512},{"x":1756127880901,"y":28.11},{"x":1756127820792,"y":15.619},{"x":1756127760736,"y":10.44},{"x":1756127700511,"y":15.528},{"x":1756127640405,"y":24.461},{"x":1756127580137,"y":23.767},{"x":1756127522937,"y":23.014},{"x":1756127462762,"y":23.701},{"x":1756127402593,"y":27.25},{"x":1756127342462,"y":14.996},{"x":1756127282334,"y":17.917},{"x":1756127222204,"y":19.888},{"x":1756127162074,"y":24.768},{"x":1756127101929,"y":25.704},{"x":1756127041790,"y":28.807},{"x":1756126981670,"y":30.245},{"x":1756126921528,"y":24.692},{"x":1756126861395,"y":17.232},{"x":1756126801074,"y":5.533},{"x":1756126740404,"y":25.426},{"x":1756126682935,"y":13.388},{"x":1756126622823,"y":10.438},{"x":1756126562660,"y":8.948},{"x":1756126502540,"y":9.221},{"x":1756126442413,"y":8.224},{"x":1756126382281,"y":10.28},{"x":1756126322147,"y":14.219},{"x":1756126261989,"y":10.295},{"x":1756126201866,"y":7.64},{"x":1756126141730,"y":6.053},{"x":1756126081612,"y":48.716},{"x":1756126021484,"y":32.419},{"x":1756125961335,"y":31.784},{"x":1756125901270,"y":36.786},{"x":1756125840954,"y":48.799},{"x":1756125780817,"y":28.41},{"x":1756125720708,"y":12.268},{"x":1756125660571,"y":9.434},{"x":1756125600490,"y":9.752},{"x":1756125540336,"y":21.683},{"x":1756125482991,"y":24.965},{"x":1756125422873,"y":21.776},{"x":1756125362747,"y":24.66},{"x":1756125302607,"y":27.008},{"x":1756125242487,"y":24.149},{"x":1756125182361,"y":47.525},{"x":1756125122233,"y":22.088},{"x":1756125062097,"y":25.855},{"x":1756125001954,"y":44.843},{"x":1756124941819,"y":21.26},{"x":1756124881677,"y":21.228},{"x":1756124821548,"y":17.431},{"x":1756124761411,"y":26.311},{"x":1756124700722,"y":28.327},{"x":1756124640564,"y":22.888},{"x":1756124580439,"y":30.402},{"x":1756124520136,"y":34.834},{"x":1756124462911,"y":19.1},{"x":1756124402789,"y":35.617},{"x":1756124342665,"y":46.016},{"x":1756124282533,"y":34.902},{"x":1756124222396,"y":43.144},{"x":1756124162262,"y":52.086},{"x":1756124102136,"y":9.083},{"x":1756124041939,"y":12.194},{"x":1756123981799,"y":28.277},{"x":1756123921622,"y":21.228},{"x":1756123861435,"y":36.169},{"x":1756123800921,"y":17.936},{"x":1756123740713,"y":18.51},{"x":1756123680174,"y":17.794},{"x":1756123622987,"y":20.509},{"x":1756123562858,"y":18.988},{"x":1756123502722,"y":30.818},{"x":1756123442471,"y":26.176},{"x":1756123382346,"y":32.962},{"x":1756123322210,"y":31.07},{"x":1756123262086,"y":31.957},{"x":1756123202891,"y":16.889},{"x":1756123142737,"y":19.213},{"x":1756123082618,"y":12.196},{"x":1756123022488,"y":14.588},{"x":1756122962371,"y":13.906},{"x":1756122902219,"y":14.224},{"x":1756122842085,"y":12.487},{"x":1756122781946,"y":12.781},{"x":1756122721814,"y":8.533},{"x":1756122661683,"y":24.194},{"x":1756122600916,"y":15.71},{"x":1756122540787,"y":21.773},{"x":1756122480695,"y":25.501},{"x":1756122420571,"y":25.441},{"x":1756122360462,"y":42.288},{"x":1756122300349,"y":8.61},{"x":1756122242885,"y":21.976},{"x":1756122182759,"y":26.269},{"x":1756122122637,"y":18.241},{"x":1756122062500,"y":26.614},{"x":1756122002365,"y":24.14},{"x":1756121942234,"y":25.141},{"x":1756121882102,"y":12.744},{"x":1756121821967,"y":22.228},{"x":1756121761569,"y":17.573},{"x":1756121701434,"y":12.833},{"x":1756121641300,"y":14.662},{"x":1756121581168,"y":18.91},{"x":1756121521040,"y":9.521},{"x":1756121460901,"y":11.387},{"x":1756121400787,"y":10.193},{"x":1756121340600,"y":6.364},{"x":1756121280483,"y":8.112},{"x":1756121220398,"y":10.118},{"x":1756121160034,"y":9.778},{"x":1756121102731,"y":16.21},{"x":1756121042595,"y":18.316},{"x":1756120982480,"y":6.775},{"x":1756120922350,"y":17.262},{"x":1756120861271,"y":10.04},{"x":1756120801163,"y":6.031},{"x":1756120740992,"y":7.698},{"x":1756120680868,"y":33.82},{"x":1756120620781,"y":29.898},{"x":1756120560651,"y":27.138},{"x":1756120500491,"y":28.303},{"x":1756120440389,"y":34.828},{"x":1756120380185,"y":13.248},{"x":1756120322937,"y":9.115},{"x":1756120262776,"y":23.773},{"x":1756120202634,"y":14.935},{"x":1756120142482,"y":18.845},{"x":1756120082361,"y":26.382},{"x":1756120022241,"y":25.478},{"x":1756119962101,"y":43.127},{"x":1756119901948,"y":48.227},{"x":1756119841701,"y":42.64},{"x":1756119781576,"y":32.017},{"x":1756119721447,"y":32.107},{"x":1756119661331,"y":30.583},{"x":1756119602051,"y":30.824},{"x":1756119541833,"y":19.655},{"x":1756119481699,"y":17.107},{"x":1756119421566,"y":22.434},{"x":1756119361450,"y":38.204},{"x":1756119300640,"y":25.334},{"x":1756119240528,"y":29.68},{"x":1756119180380,"y":25.498},{"x":1756119120145,"y":33.097},{"x":1756119062895,"y":19.404},{"x":1756119002767,"y":18.824},{"x":1756118942642,"y":17.923},{"x":1756118882496,"y":13.666},{"x":1756118822373,"y":28.643},{"x":1756118762232,"y":26.844},{"x":1756118702113,"y":28.682},{"x":1756118641975,"y":27.158},{"x":1756118581840,"y":21.215},{"x":1756118521684,"y":11.932},{"x":1756118461571,"y":9.396},{"x":1756118400814,"y":15.703},{"x":1756118340593,"y":14.671},{"x":1756118280526,"y":12.682},{"x":1756118220315,"y":16.144},{"x":1756118162835,"y":12.592},{"x":1756118102720,"y":13.08},{"x":1756118042583,"y":15.124},{"x":1756117982442,"y":21.264},{"x":1756117922315,"y":17.16},{"x":1756117862178,"y":18.542},{"x":1756117802051,"y":11.791},{"x":1756117741901,"y":14.245},{"x":1756117681767,"y":33.056},{"x":1756117621633,"y":18.484},{"x":1756117561517,"y":13.022},{"x":1756117501398,"y":13.805},{"x":1756117441152,"y":14.032},{"x":1756117381028,"y":16.403},{"x":1756117320892,"y":16.601},{"x":1756117260767,"y":15.816},{"x":1756117200727,"y":43.0},{"x":1756117143470,"y":57.091},{"x":1756117081033,"y":54.785},{"x":1756117020912,"y":35.902},{"x":1756116960783,"y":34.781},{"x":1756116900713,"y":10.277},{"x":1756116840500,"y":12.971},{"x":1756116780419,"y":15.353},{"x":1756116720221,"y":16.907},{"x":1756116662876,"y":11.557},{"x":1756116602725,"y":17.096},{"x":1756116542581,"y":18.068},{"x":1756116482452,"y":30.84},{"x":1756116422330,"y":29.026},{"x":1756116362212,"y":26.314},{"x":1756116302085,"y":24.649},{"x":1756116241942,"y":25.7},{"x":1756116181817,"y":11.839},{"x":1756116121698,"y":14.618},{"x":1756116061582,"y":10.392},{"x":1756116001707,"y":13.12},{"x":1756115941084,"y":14.5},{"x":1756115880947,"y":18.048},{"x":1756115820824,"y":27.658},{"x":1756115760727,"y":29.454},{"x":1756115700701,"y":31.99},{"x":1756115640494,"y":26.722},{"x":1756115580330,"y":29.165},{"x":1756115520270,"y":14.806},{"x":1756115462968,"y":11.207},{"x":1756115402803,"y":13.151},{"x":1756115342685,"y":16.057},{"x":1756115282560,"y":14.83},{"x":1756115222429,"y":20.776},{"x":1756115162298,"y":16.792},{"x":1756115102184,"y":16.62},{"x":1756115042040,"y":17.224},{"x":1756114981897,"y":18.212},{"x":1756114921760,"y":17.587},{"x":1756114861633,"y":18.498},{"x":1756114801504,"y":16.915},{"x":1756114741366,"y":20.227},{"x":1756114681244,"y":15.632},{"x":1756114621107,"y":50.677},{"x":1756114560976,"y":40.469},{"x":1756114500864,"y":42.24},{"x":1756114440730,"y":41.459},{"x":1756114380615,"y":50.615},{"x":1756114320557,"y":15.991},{"x":1756114260251,"y":18.718},{"x":1756114203026,"y":14.012},{"x":1756114142891,"y":13.349},{"x":1756114082760,"y":27.359},{"x":1756114022630,"y":25.048},{"x":1756113962489,"y":35.85},{"x":1756113902354,"y":38.425},{"x":1756113842227,"y":36.956},{"x":1756113782101,"y":26.581},{"x":1756113721947,"y":23.338},{"x":1756113661530,"y":22.09},{"x":1756113601367,"y":23.558},{"x":1756113541240,"y":16.242},{"x":1756113481113,"y":18.547},{"x":1756113421018,"y":17.308},{"x":1756113360836,"y":22.472},{"x":1756113300751,"y":40.144},{"x":1756113240530,"y":20.633},{"x":1756113180410,"y":19.451},{"x":1756113123025,"y":19.637},{"x":1756113062836,"y":21.811},{"x":1756113002684,"y":20.149},{"x":1756112942551,"y":18.409},{"x":1756112882411,"y":16.456},{"x":1756112822284,"y":23.099},{"x":1756112762136,"y":21.581},{"x":1756112701986,"y":32.843},{"x":1756112641865,"y":17.581},{"x":1756112581721,"y":21.455},{"x":1756112521587,"y":21.922},{"x":1756112461472,"y":26.932},{"x":1756112401629,"y":26.518},{"x":1756112341150,"y":24.926},{"x":1756112280993,"y":23.159},{"x":1756112220867,"y":19.339},{"x":1756112160767,"y":32.495},{"x":1756112100638,"y":17.12},{"x":1756112040503,"y":14.984},{"x":1756111980475,"y":15.88},{"x":1756111920368,"y":16.117},{"x":1756111862929,"y":26.556},{"x":1756111802786,"y":25.184},{"x":1756111742653,"y":25.532},{"x":1756111682524,"y":26.83},{"x":1756111622400,"y":31.481},{"x":1756111562281,"y":29.767},{"x":1756111502140,"y":41.242},{"x":1756111441989,"y":20.701},{"x":1756111381876,"y":22.313},{"x":1756111321734,"y":30.025},{"x":1756111261595,"y":33.019},{"x":1756111200957,"y":32.494},{"x":1756111140743,"y":28.895},{"x":1756111080649,"y":32.718},{"x":1756111020376,"y":35.288},{"x":1756110960451,"y":37.06},{"x":1756110902962,"y":40.595},{"x":1756110842826,"y":36.383},{"x":1756110782696,"y":34.308},{"x":1756110722562,"y":36.605},{"x":1756110662427,"y":26.845},{"x":1756110602315,"y":32.922},{"x":1756110542170,"y":31.417},{"x":1756110482041,"y":35.209},{"x":1756110421905,"y":32.472},{"x":1756110361787,"y":36.133},{"x":1756110301055,"y":41.732},{"x":1756110240900,"y":39.418},{"x":1756110180772,"y":35.996},{"x":1756110120661,"y":40.807},{"x":1756110060578,"y":41.61},{"x":1756110000382,"y":35.524},{"x":1756109942980,"y":35.764},{"x":1756109882859,"y":52.752},{"x":1756109822736,"y":50.792},{"x":1756109762353,"y":63.148},{"x":1756109702181,"y":58.648},{"x":1756109642055,"y":48.182},{"x":1756109581936,"y":52.164},{"x":1756109521766,"y":42.815},{"x":1756109461511,"y":43.074},{"x":1756109400790,"y":47.626},{"x":1756109340593,"y":36.773},{"x":1756109282872,"y":34.338},{"x":1756109222751,"y":42.821},{"x":1756109162618,"y":28.556},{"x":1756109102496,"y":34.95},{"x":1756109042259,"y":24.095},{"x":1756108982135,"y":25.097},{"x":1756108921994,"y":27.52},{"x":1756108861872,"y":30.936},{"x":1756108800489,"y":40.807},{"x":1756108742941,"y":39.989},{"x":1756108682846,"y":28.769},{"x":1756108622694,"y":26.322},{"x":1756108562578,"y":29.62},{"x":1756108502421,"y":32.431},{"x":1756108442258,"y":32.972},{"x":1756108382128,"y":27.488},{"x":1756108321993,"y":30.136},{"x":1756108261765,"y":35.156},{"x":1756108200943,"y":34.591},{"x":1756108140775,"y":36.422},{"x":1756108080676,"y":37.428},{"x":1756108020537,"y":37.945},{"x":1756107960372,"y":35.425},{"x":1756107900258,"y":37.954},{"x":1756107842927,"y":31.781},{"x":1756107782809,"y":27.278},{"x":1756107722682,"y":31.265},{"x":1756107662568,"y":23.824},{"x":1756107602377,"y":23.912},{"x":1756107542245,"y":25.735},{"x":1756107482120,"y":27.42},{"x":1756107421982,"y":26.136},{"x":1756107361331,"y":28.606},{"x":1756107301216,"y":30.755},{"x":1756107241022,"y":35.296},{"x":1756107180884,"y":35.293},{"x":1756107120780,"y":38.315},{"x":1756107060629,"y":32.561},{"x":1756107000504,"y":34.782},{"x":1756106940434,"y":27.125},{"x":1756106882918,"y":30.29},{"x":1756106822804,"y":29.79},{"x":1756106762664,"y":32.508},{"x":1756106702543,"y":45.907},{"x":1756106642310,"y":53.47},{"x":1756106582182,"y":44.506},{"x":1756106522044,"y":55.739},{"x":1756106461550,"y":63.239},{"x":1756106401419,"y":43.169},{"x":1756106341282,"y":55.645},{"x":1756106281164,"y":48.595},{"x":1756106221016,"y":26.549},{"x":1756106160893,"y":30.431},{"x":1756106100800,"y":31.037},{"x":1756106040630,"y":36.93},{"x":1756105980493,"y":30.534},{"x":1756105920315,"y":31.562},{"x":1756105862957,"y":38.431},{"x":1756105802800,"y":40.216},{"x":1756105742661,"y":42.043},{"x":1756105682531,"y":40.39},{"x":1756105622404,"y":42.371},{"x":1756105562286,"y":43.236},{"x":1756105502148,"y":36.252},{"x":1756105441991,"y":29.366},{"x":1756105381867,"y":34.205},{"x":1756105321732,"y":31.411},{"x":1756105261631,"y":32.519},{"x":1756105200521,"y":34.615},{"x":1756105142914,"y":46.514},{"x":1756105082781,"y":30.739},{"x":1756105022668,"y":42.329},{"x":1756104962528,"y":42.828},{"x":1756104902380,"y":39.082},{"x":1756104842248,"y":34.662},{"x":1756104782118,"y":32.512},{"x":1756104721983,"y":22.712},{"x":1756104661570,"y":24.497},{"x":1756104600832,"y":29.854},{"x":1756104540672,"y":23.693},{"x":1756104480627,"y":28.784},{"x":1756104420428,"y":32.498},{"x":1756104360281,"y":32.38},{"x":1756104303019,"y":36.14},{"x":1756104242881,"y":34.912},{"x":1756104182740,"y":30.379},{"x":1756104122611,"y":26.828},{"x":1756104062491,"y":45.928},{"x":1756104002339,"y":30.86},{"x":1756103942203,"y":25.47},{"x":1756103882086,"y":30.577},{"x":1756103821931,"y":23.234},{"x":1756103761244,"y":34.057},{"x":1756103701126,"y":31.898},{"x":1756103640950,"y":46.036},{"x":1756103580831,"y":42.395},{"x":1756103520717,"y":44.593},{"x":1756103460593,"y":39.725},{"x":1756103400557,"y":40.202},{"x":1756103340307,"y":37.633},{"x":1756103280265,"y":24.842},{"x":1756103222822,"y":32.708},{"x":1756103162672,"y":42.11},{"x":1756103102549,"y":29.344},{"x":1756103042403,"y":33.28},{"x":1756102982286,"y":30.566},{"x":1756102922132,"y":32.672},{"x":1756102861546,"y":50.898},{"x":1756102801421,"y":35.12},{"x":1756102741282,"y":56.663},{"x":1756102681156,"y":40.687},{"x":1756102621029,"y":39.79},{"x":1756102560892,"y":52.103},{"x":1756102500783,"y":37.882},{"x":1756102440617,"y":47.792},{"x":1756102380510,"y":33.407},{"x":1756102320384,"y":44.87},{"x":1756102260276,"y":31.122},{"x":1756102202902,"y":49.2},{"x":1756102142762,"y":49.133},{"x":1756102082637,"y":46.915},{"x":1756102022500,"y":37.29},{"x":1756101962371,"y":31.284},{"x":1756101902239,"y":32.015},{"x":1756101842107,"y":35.275},{"x":1756101781963,"y":31.746},{"x":1756101721826,"y":35.195},{"x":1756101661708,"y":37.496},{"x":1756101600463,"y":39.385},{"x":1756101540240,"y":36.096},{"x":1756101482958,"y":37.421},{"x":1756101422832,"y":27.553},{"x":1756101362721,"y":25.907},{"x":1756101302575,"y":25.87},{"x":1756101242448,"y":27.16},{"x":1756101182318,"y":28.048},{"x":1756101122196,"y":37.196},{"x":1756101062066,"y":29.964},{"x":1756101001137,"y":25.337},{"x":1756100940947,"y":24.81},{"x":1756100880844,"y":24.841},{"x":1756100820697,"y":28.652},{"x":1756100760665,"y":32.555},{"x":1756100700374,"y":27.524},{"x":1756100642991,"y":39.619},{"x":1756100582871,"y":38.566},{"x":1756100522737,"y":37.842},{"x":1756100462614,"y":38.546},{"x":1756100402489,"y":38.413},{"x":1756100342363,"y":29.434},{"x":1756100282230,"y":28.104},{"x":1756100222107,"y":27.582},{"x":1756100161962,"y":27.13},{"x":1756100101827,"y":31.88},{"x":1756100041701,"y":27.972},{"x":1756099981575,"y":27.636},{"x":1756099921445,"y":25.89},{"x":1756099861323,"y":25.956},{"x":1756099801190,"y":29.095},{"x":1756099741051,"y":25.236},{"x":1756099680914,"y":26.644},{"x":1756099620783,"y":26.104},{"x":1756099560660,"y":26.472},{"x":1756099500582,"y":24.577},{"x":1756099440473,"y":31.118},{"x":1756099380363,"y":30.301},{"x":1756099322961,"y":30.596},{"x":1756099262670,"y":32.05},{"x":1756099202552,"y":31.3},{"x":1756099142421,"y":34.195},{"x":1756099082291,"y":28.08},{"x":1756099022184,"y":28.361},{"x":1756098961998,"y":24.78},{"x":1756098901878,"y":26.113},{"x":1756098841764,"y":51.539},{"x":1756098781609,"y":46.458},{"x":1756098721463,"y":45.99},{"x":1756098661303,"y":53.021},{"x":1756098601142,"y":52.751},{"x":1756098540986,"y":39.331},{"x":1756098480836,"y":50.839},{"x":1756098420706,"y":48.966},{"x":1756098360649,"y":46.528},{"x":1756098300464,"y":42.118},{"x":1756098242754,"y":42.559},{"x":1756098182599,"y":25.706},{"x":1756098122460,"y":26.076},{"x":1756098062350,"y":27.506},{"x":1756098000444,"y":29.396},{"x":1756097940270,"y":29.749},{"x":1756097882973,"y":33.022},{"x":1756097822841,"y":28.445},{"x":1756097762713,"y":30.004},{"x":1756097702593,"y":30.766},{"x":1756097642452,"y":28.55},{"x":1756097582330,"y":32.009},{"x":1756097522212,"y":29.741},{"x":1756097462077,"y":29.615},{"x":1756097401304,"y":29.495},{"x":1756097341156,"y":30.954},{"x":1756097281031,"y":32.867},{"x":1756097220864,"y":36.092},{"x":1756097160758,"y":36.128},{"x":1756097100679,"y":34.169},{"x":1756097040463,"y":30.91},{"x":1756096980319,"y":28.865},{"x":1756096922925,"y":32.005},{"x":1756096862806,"y":26.382},{"x":1756096802681,"y":26.494},{"x":1756096742548,"y":26.189},{"x":1756096682416,"y":26.094},{"x":1756096622268,"y":33.029},{"x":1756096562147,"y":31.476},{"x":1756096501991,"y":33.218},{"x":1756096441862,"y":32.791},{"x":1756096381711,"y":31.906},{"x":1756096321599,"y":29.062},{"x":1756096261469,"y":29.796},{"x":1756096201337,"y":29.663},{"x":1756096141192,"y":43.014},{"x":1756096081050,"y":55.331},{"x":1756096020895,"y":57.526},{"x":1756095960777,"y":69.43},{"x":1756095901645,"y":51.122},{"x":1756095841517,"y":39.694},{"x":1756095781385,"y":25.496},{"x":1756095721241,"y":27.223},{"x":1756095661111,"y":34.343},{"x":1756095600968,"y":33.316},{"x":1756095540825,"y":28.498},{"x":1756095480746,"y":28.285},{"x":1756095420596,"y":29.243},{"x":1756095360472,"y":29.563},{"x":1756095300250,"y":30.412},{"x":1756095242933,"y":30.571},{"x":1756095182775,"y":29.653},{"x":1756095122643,"y":41.159},{"x":1756095062480,"y":34.945},{"x":1756095002408,"y":39.415},{"x":1756094942284,"y":38.92},{"x":1756094882956,"y":38.91},{"x":1756094822835,"y":28.814},{"x":1756094761056,"y":31.136},{"x":1756094700928,"y":33.494},{"x":1756094640779,"y":28.498},{"x":1756094580693,"y":27.852},{"x":1756094520559,"y":27.762},{"x":1756094463264,"y":28.1},{"x":1756094400709,"y":27.27},{"x":1756094340357,"y":28.034},{"x":1756094283021,"y":30.816},{"x":1756094222884,"y":30.511},{"x":1756094162764,"y":29.605},{"x":1756094102633,"y":30.684},{"x":1756094042489,"y":37.805},{"x":1756093982365,"y":31.388},{"x":1756093922235,"y":30.808},{"x":1756093862088,"y":29.76},{"x":1756093801093,"y":28.333},{"x":1756093740933,"y":32.756},{"x":1756093680813,"y":28.78},{"x":1756093620666,"y":29.442},{"x":1756093560608,"y":31.378},{"x":1756093500471,"y":27.958},{"x":1756093440286,"y":28.128},{"x":1756093382966,"y":28.553},{"x":1756093322840,"y":28.004},{"x":1756093262724,"y":28.387},{"x":1756093202594,"y":31.583},{"x":1756093142464,"y":38.758},{"x":1756093082343,"y":43.003},{"x":1756093022232,"y":38.201},{"x":1756092962094,"y":39.385},{"x":1756092901961,"y":41.354},{"x":1756092841829,"y":42.439},{"x":1756092781711,"y":44.096},{"x":1756092721578,"y":40.831},{"x":1756092661455,"y":43.352},{"x":1756092601350,"y":38.884},{"x":1756092541184,"y":38.56},{"x":1756092481033,"y":37.975},{"x":1756092420907,"y":37.507},{"x":1756092360766,"y":35.171},{"x":1756092300938,"y":34.763},{"x":1756092240880,"y":38.122},{"x":1756092180765,"y":41.564},{"x":1756092120516,"y":42.131},{"x":1756092061677,"y":41.124},{"x":1756092001572,"y":39.901},{"x":1756091941437,"y":37.708},{"x":1756091881303,"y":37.274},{"x":1756091821212,"y":44.424},{"x":1756091762696,"y":39.378},{"x":1756091702478,"y":39.469},{"x":1756091642349,"y":38.748},{"x":1756091582169,"y":38.15},{"x":1756091522053,"y":37.885},{"x":1756091461592,"y":37.568},{"x":1756091400727,"y":40.426},{"x":1756091340551,"y":40.366},{"x":1756091281747,"y":41.012},{"x":1756091221621,"y":40.6},{"x":1756091162685,"y":35.714},{"x":1756091102557,"y":39.81},{"x":1756091050388,"y":36.344},{"x":1756091043426,"y":42.655},{"x":1756090741083,"y":41.696},{"x":1756090680942,"y":40.276},{"x":1756090620805,"y":49.372},{"x":1756090560731,"y":47.881},{"x":1756090500574,"y":44.441},{"x":1756090440384,"y":45.152},{"x":1756090380394,"y":44.15},{"x":1756090322935,"y":38.389},{"x":1756090262818,"y":46.964},{"x":1756090202686,"y":61.326},{"x":1756090142566,"y":65.098},{"x":1756090082427,"y":63.204},{"x":1756090022300,"y":61.994},{"x":1756089962176,"y":51.917},{"x":1756089902043,"y":39.698},{"x":1756089841911,"y":43.982},{"x":1756089781762,"y":37.967},{"x":1756089721641,"y":38.743},{"x":1756089661501,"y":36.337},{"x":1756089600823,"y":36.449},{"x":1756089540606,"y":38.962},{"x":1756089480535,"y":36.344},{"x":1756089420356,"y":37.48},{"x":1756089362853,"y":41.485},{"x":1756089302723,"y":38.75},{"x":1756089242595,"y":40.988},{"x":1756089182472,"y":43.825},{"x":1756089122350,"y":62.316},{"x":1756089062208,"y":61.816},{"x":1756089002085,"y":60.316},{"x":1756088941953,"y":60.268},{"x":1756088881820,"y":63.794},{"x":1756088821692,"y":59.696},{"x":1756088761560,"y":60.571},{"x":1756088701012,"y":58.808},{"x":1756088640854,"y":54.703},{"x":1756088580710,"y":30.726},{"x":1756088520600,"y":26.952},{"x":1756088460539,"y":30.228},{"x":1756088400351,"y":33.824},{"x":1756088342966,"y":31.741},{"x":1756088282847,"y":32.005},{"x":1756088222709,"y":30.343},{"x":1756088162435,"y":31.181},{"x":1756088102312,"y":27.35},{"x":1756088042175,"y":27.823},{"x":1756087981928,"y":26.323},{"x":1756087921724,"y":31.891},{"x":1756087861528,"y":26.911},{"x":1756087801058,"y":30.134},{"x":1756087740900,"y":28.951},{"x":1756087680796,"y":28.913},{"x":1756087620628,"y":32.909},{"x":1756087560563,"y":27.845},{"x":1756087500454,"y":26.887},{"x":1756087440261,"y":26.638},{"x":1756087382924,"y":26.941},{"x":1756087322784,"y":25.476},{"x":1756087262649,"y":28.285},{"x":1756087200324,"y":28.186},{"x":1756087142968,"y":26.248},{"x":1756087082829,"y":41.479},{"x":1756087022708,"y":40.087},{"x":1756086962586,"y":43.422},{"x":1756086902459,"y":53.725},{"x":1756086842341,"y":57.331},{"x":1756086782216,"y":41.64},{"x":1756086722090,"y":43.028},{"x":1756086661958,"y":46.922},{"x":1756086601827,"y":40.175},{"x":1756086541694,"y":36.707},{"x":1756086481563,"y":34.468},{"x":1756086421425,"y":33.264},{"x":1756086361299,"y":35.25},{"x":1756086301175,"y":32.207},{"x":1756086241019,"y":29.471},{"x":1756086180864,"y":28.512},{"x":1756086120739,"y":28.28},{"x":1756086060644,"y":26.954},{"x":1756086000535,"y":28.452},{"x":1756085940328,"y":30.821},{"x":1756085880287,"y":31.182},{"x":1756085822907,"y":33.054},{"x":1756085762794,"y":33.186},{"x":1756085702665,"y":36.562},{"x":1756085642531,"y":28.054},{"x":1756085582409,"y":31.536},{"x":1756085522273,"y":31.655},{"x":1756085462146,"y":30.654},{"x":1756085402047,"y":31.409},{"x":1756085341871,"y":28.432},{"x":1756085281742,"y":29.148},{"x":1756085221613,"y":29.002},{"x":1756085161478,"y":29.38},{"x":1756085100957,"y":31.279},{"x":1756085040833,"y":28.328},{"x":1756084980676,"y":26.155},{"x":1756084920570,"y":26.912},{"x":1756084860434,"y":27.839},{"x":1756084800300,"y":31.934},{"x":1756084742995,"y":34.159},{"x":1756084682862,"y":35.816},{"x":1756084622725,"y":32.195},{"x":1756084562351,"y":32.215},{"x":1756084502219,"y":29.818},{"x":1756084442097,"y":35.071},{"x":1756084381933,"y":31.375},{"x":1756084321803,"y":31.663},{"x":1756084261549,"y":31.964},{"x":1756084200951,"y":30.026},{"x":1756084140752,"y":30.882},{"x":1756084080674,"y":36.253},{"x":1756084020528,"y":34.494},{"x":1756083960389,"y":33.125},{"x":1756083900158,"y":33.463},{"x":1756083842904,"y":30.12},{"x":1756083782781,"y":32.365},{"x":1756083722662,"y":27.409},{"x":1756083662542,"y":27.792},{"x":1756083600302,"y":28.83},{"x":1756083542925,"y":39.136},{"x":1756083482824,"y":35.269},{"x":1756083422702,"y":32.707},{"x":1756083362580,"y":30.594},{"x":1756083302457,"y":32.711},{"x":1756083242350,"y":31.618},{"x":1756083182203,"y":31.956},{"x":1756083122052,"y":32.528},{"x":1756083061898,"y":30.382},{"x":1756083001783,"y":27.966},{"x":1756082941652,"y":28.168},{"x":1756082881522,"y":30.565},{"x":1756082821404,"y":34.798},{"x":1756082761272,"y":31.646},{"x":1756082701175,"y":31.261},{"x":1756082640963,"y":28.231},{"x":1756082580842,"y":31.019},{"x":1756082520713,"y":33.707},{"x":1756082460618,"y":29.886},{"x":1756082400482,"y":32.579},{"x":1756082340327,"y":28.129},{"x":1756082282966,"y":32.663},{"x":1756082222760,"y":30.75},{"x":1756082162638,"y":32.977},{"x":1756082102512,"y":32.326},{"x":1756082042403,"y":41.443},{"x":1756081982257,"y":28.813},{"x":1756081922128,"y":29.06},{"x":1756081861997,"y":27.904},{"x":1756081801827,"y":26.795},{"x":1756081741699,"y":29.902},{"x":1756081681572,"y":31.973},{"x":1756081621443,"y":32.857},{"x":1756081561325,"y":45.256},{"x":1756081500965,"y":39.788},{"x":1756081440839,"y":37.553},{"x":1756081380725,"y":36.288},{"x":1756081320593,"y":33.082},{"x":1756081260587,"y":31.128},{"x":1756081200521,"y":28.37},{"x":1756081142955,"y":28.986},{"x":1756081082566,"y":30.712},{"x":1756081022447,"y":33.756},{"x":1756080962301,"y":33.788},{"x":1756080902179,"y":32.852},{"x":1756080842039,"y":33.75},{"x":1756080781886,"y":30.256},{"x":1756080721730,"y":28.052},{"x":1756080661534,"y":27.769},{"x":1756080601261,"y":28.909},{"x":1756080541116,"y":28.265},{"x":1756080480953,"y":27.479},{"x":1756080420824,"y":32.947},{"x":1756080360705,"y":31.274},{"x":1756080300690,"y":41.196},{"x":1756080240442,"y":32.591},{"x":1756080180352,"y":30.743},{"x":1756080123014,"y":29.467},{"x":1756080062893,"y":27.365},{"x":1756080000207,"y":33.655},{"x":1756079942915,"y":33.35},{"x":1756079882792,"y":28.402},{"x":1756079822672,"y":28.05},{"x":1756079762540,"y":34.15},{"x":1756079702409,"y":33.089},{"x":1756079642286,"y":34.624},{"x":1756079582182,"y":34.453},{"x":1756079522005,"y":34.846},{"x":1756079461842,"y":36.799},{"x":1756079401741,"y":35.425},{"x":1756079341604,"y":30.703},{"x":1756079281465,"y":33.071},{"x":1756079221331,"y":29.6},{"x":1756079161209,"y":35.086},{"x":1756079101177,"y":31.927},{"x":1756079040943,"y":30.848},{"x":1756078980829,"y":34.482},{"x":1756078920697,"y":31.511},{"x":1756078860640,"y":32.298},{"x":1756078800479,"y":31.151},{"x":1756078740299,"y":33.475},{"x":1756078682988,"y":32.602},{"x":1756078622824,"y":31.769},{"x":1756078562705,"y":31.494},{"x":1756078502572,"y":31.897},{"x":1756078442445,"y":31.847},{"x":1756078382326,"y":34.027},{"x":1756078322196,"y":34.513},{"x":1756078262067,"y":28.729},{"x":1756078201900,"y":27.998},{"x":1756078141769,"y":30.073},{"x":1756078081648,"y":29.148},{"x":1756078021514,"y":36.431},{"x":1756077961384,"y":32.278},{"x":1756077901022,"y":32.858},{"x":1756077840850,"y":33.12},{"x":1756077780720,"y":31.652},{"x":1756077720645,"y":31.169},{"x":1756077660505,"y":30.276},{"x":1756077600323,"y":31.271},{"x":1756077543003,"y":28.535},{"x":1756077482879,"y":28.886},{"x":1756077422722,"y":28.463},{"x":1756077362342,"y":34.151},{"x":1756077302180,"y":29.597},{"x":1756077242056,"y":38.114},{"x":1756077181892,"y":35.807},{"x":1756077121759,"y":34.561},{"x":1756077061505,"y":37.841},{"x":1756077000666,"y":33.599},{"x":1756076940488,"y":30.005},{"x":1756076880505,"y":41.543},{"x":1756076823019,"y":40.448},{"x":1756076762874,"y":39.695},{"x":1756076702742,"y":54.69},{"x":1756076642613,"y":41.01},{"x":1756076582481,"y":32.347},{"x":1756076522345,"y":31.648},{"x":1756076462170,"y":35.557},{"x":1756076402192,"y":32.821},{"x":1756076341943,"y":40.258},{"x":1756076281817,"y":41.791},{"x":1756076221692,"y":37.428},{"x":1756076161564,"y":34.852},{"x":1756076100956,"y":41.404},{"x":1756076040822,"y":32.465},{"x":1756075980705,"y":31.938},{"x":1756075920639,"y":31.243},{"x":1756075860489,"y":29.466},{"x":1756075800355,"y":34.594},{"x":1756075742975,"y":31.061},{"x":1756075682861,"y":33.652},{"x":1756075622727,"y":31.571},{"x":1756075562590,"y":32.688},{"x":1756075502465,"y":31.847},{"x":1756075442348,"y":30.718},{"x":1756075382216,"y":29.374},{"x":1756075322094,"y":29.904},{"x":1756075261911,"y":29.678},{"x":1756075201778,"y":30.154},{"x":1756075141658,"y":33.119},{"x":1756075081517,"y":29.653},{"x":1756075021388,"y":28.56},{"x":1756074961259,"y":37.88},{"x":1756074901125,"y":38.244},{"x":1756074840983,"y":41.629},{"x":1756074780861,"y":39.998},{"x":1756074720760,"y":31.66},{"x":1756074660596,"y":31.388},{"x":1756074600464,"y":30.964},{"x":1756074540359,"y":32.456},{"x":1756074482992,"y":32.684},{"x":1756074422874,"y":32.497},{"x":1756074362772,"y":31.648},{"x":1756074302616,"y":31.566},{"x":1756074242485,"y":31.265},{"x":1756074182354,"y":31.276},{"x":1756074122217,"y":34.128},{"x":1756074062092,"y":35.834},{"x":1756074001948,"y":32.596},{"x":1756073941823,"y":34.12},{"x":1756073881696,"y":33.366},{"x":1756073821582,"y":29.818},{"x":1756073761453,"y":30.326},{"x":1756073701333,"y":36.276},{"x":1756073641207,"y":30.364},{"x":1756073581065,"y":35.291},{"x":1756073520933,"y":31.004},{"x":1756073460783,"y":27.864},{"x":1756073400718,"y":28.91},{"x":1756073340513,"y":30.989},{"x":1756073280441,"y":32.12},{"x":1756073222935,"y":25.963},{"x":1756073162824,"y":30.642},{"x":1756073102691,"y":31.694},{"x":1756073042567,"y":29.844},{"x":1756072982421,"y":30.235},{"x":1756072922304,"y":37.547},{"x":1756072862153,"y":28.906},{"x":1756072802072,"y":28.126},{"x":1756072741787,"y":27.485},{"x":1756072681669,"y":29.208},{"x":1756072621534,"y":32.098},{"x":1756072561395,"y":33.025},{"x":1756072501269,"y":35.04},{"x":1756072441110,"y":48.1},{"x":1756072380972,"y":47.557},{"x":1756072320840,"y":46.469},{"x":1756072260685,"y":44.251},{"x":1756072200674,"y":42.904},{"x":1756072140383,"y":36.656},{"x":1756072080230,"y":34.639},{"x":1756072022945,"y":33.733},{"x":1756071962795,"y":32.478},{"x":1756071902675,"y":32.718},{"x":1756071842548,"y":32.606},{"x":1756071782421,"y":38.891},{"x":1756071722296,"y":38.938},{"x":1756071662166,"y":45.136},{"x":1756071602036,"y":38.56},{"x":1756071541904,"y":31.044},{"x":1756071481774,"y":31.94},{"x":1756071421643,"y":30.025},{"x":1756071361522,"y":36.617},{"x":1756071301390,"y":31.166},{"x":1756071241259,"y":31.608},{"x":1756071181064,"y":30.289},{"x":1756071120926,"y":33.408},{"x":1756071060802,"y":41.395},{"x":1756071000791,"y":44.734},{"x":1756070940585,"y":45.827},{"x":1756070880472,"y":32.957},{"x":1756070822966,"y":42.937},{"x":1756070762834,"y":30.354},{"x":1756070702686,"y":29.576},{"x":1756070642549,"y":29.5},{"x":1756070582426,"y":30.572},{"x":1756070522292,"y":30.319},{"x":1756070462162,"y":33.523},{"x":1756070402031,"y":36.944},{"x":1756070341890,"y":35.741},{"x":1756070281750,"y":35.581},{"x":1756070221645,"y":38.756},{"x":1756070161491,"y":37.145},{"x":1756070101370,"y":37.728},{"x":1756070041221,"y":32.332},{"x":1756069981042,"y":30.84},{"x":1756069920915,"y":31.541},{"x":1756069860736,"y":32.155},{"x":1756069800641,"y":34.523},{"x":1756069740342,"y":33.133},{"x":1756069680278,"y":31.003},{"x":1756069622896,"y":31.447},{"x":1756069562759,"y":32.222},{"x":1756069502629,"y":29.812},{"x":1756069442499,"y":36.618},{"x":1756069382386,"y":32.645},{"x":1756069322257,"y":31.93},{"x":1756069262117,"y":31.318},{"x":1756069202071,"y":31.553},{"x":1756069141813,"y":35.924},{"x":1756069081693,"y":37.928},{"x":1756069021562,"y":33.734},{"x":1756068961466,"y":35.068},{"x":1756068901325,"y":33.578},{"x":1756068841172,"y":36.34},{"x":1756068781042,"y":32.399},{"x":1756068720912,"y":32.002},{"x":1756068660781,"y":32.564},{"x":1756068600754,"y":34.11},{"x":1756068540562,"y":37.516},{"x":1756068480417,"y":41.065},{"x":1756068420301,"y":44.43},{"x":1756068360101,"y":42.115},{"x":1756068302907,"y":42.445},{"x":1756068242764,"y":41.365},{"x":1756068182624,"y":41.574},{"x":1756068122506,"y":40.182},{"x":1756068062371,"y":40.65},{"x":1756068002233,"y":37.931},{"x":1756067942099,"y":39.275},{"x":1756067881961,"y":39.451},{"x":1756067821825,"y":40.54},{"x":1756067761698,"y":45.266},{"x":1756067701573,"y":47.483},{"x":1756067641436,"y":44.002},{"x":1756067581288,"y":43.296},{"x":1756067521159,"y":44.432},{"x":1756067461017,"y":41.08},{"x":1756067400939,"y":39.155},{"x":1756067340731,"y":39.827},{"x":1756067280726,"y":39.93},{"x":1756067220460,"y":42.674},{"x":1756067160368,"y":44.15},{"x":1756067102982,"y":48.859},{"x":1756067042847,"y":48.55},{"x":1756066982722,"y":42.91},{"x":1756066922581,"y":46.129},{"x":1756066862429,"y":47.406},{"x":1756066802295,"y":45.478},{"x":1756066742163,"y":42.842},{"x":1756066682027,"y":43.441},{"x":1756066621889,"y":45.666},{"x":1756066561757,"y":44.626},{"x":1756066501613,"y":64.357},{"x":1756066441482,"y":67.516},{"x":1756066381358,"y":66.229},{"x":1756066321236,"y":71.852},{"x":1756066261020,"y":62.416},{"x":1756066200888,"y":44.368},{"x":1756066140667,"y":44.766},{"x":1756066080599,"y":43.6},{"x":1756066020421,"y":52.055},{"x":1756065960275,"y":49.487},{"x":1756065902979,"y":50.392},{"x":1756065842848,"y":44.846},{"x":1756065782723,"y":63.139},{"x":1756065722557,"y":49.404},{"x":1756065662429,"y":49.816},{"x":1756065602318,"y":65.321},{"x":1756065542173,"y":51.358},{"x":1756065482036,"y":58.366},{"x":1756065421906,"y":48.252},{"x":1756065361774,"y":43.225},{"x":1756065301635,"y":41.891},{"x":1756065241512,"y":57.824},{"x":1756065181384,"y":56.706},{"x":1756065121237,"y":57.748},{"x":1756065061105,"y":67.362},{"x":1756065000956,"y":49.631},{"x":1756064940813,"y":43.529},{"x":1756064880724,"y":43.094},{"x":1756064820620,"y":51.292},{"x":1756064760395,"y":49.3},{"x":1756064700326,"y":48.025},{"x":1756064642929,"y":47.435},{"x":1756064582800,"y":44.488},{"x":1756064522663,"y":50.365},{"x":1756064462539,"y":50.749},{"x":1756064402404,"y":50.813},{"x":1756064342280,"y":61.504},{"x":1756064282153,"y":46.972},{"x":1756064221996,"y":53.08},{"x":1756064161874,"y":52.248},{"x":1756064101754,"y":51.324},{"x":1756064041613,"y":55.669},{"x":1756063981476,"y":55.112},{"x":1756063921342,"y":43.667},{"x":1756063861218,"y":57.666},{"x":1756063801109,"y":52.969},{"x":1756063740914,"y":51.661},{"x":1756063680789,"y":62.76},{"x":1756063620694,"y":55.129},{"x":1756063560465,"y":40.494},{"x":1756063500423,"y":42.041},{"x":1756063440193,"y":43.615},{"x":1756063382922,"y":60.634},{"x":1756063322797,"y":38.988},{"x":1756063262674,"y":37.975},{"x":1756063202531,"y":52.349},{"x":1756063142406,"y":34.898},{"x":1756063082283,"y":36.715},{"x":1756063022131,"y":36.716},{"x":1756062961984,"y":36.682},{"x":1756062901856,"y":37.872},{"x":1756062841723,"y":41.677},{"x":1756062781589,"y":50.85},{"x":1756062721451,"y":60.104},{"x":1756062661277,"y":50.269},{"x":1756062601140,"y":47.414},{"x":1756062540967,"y":48.629},{"x":1756062480843,"y":36.328},{"x":1756062420660,"y":42.142},{"x":1756062360598,"y":38.957},{"x":1756062300409,"y":38.227},{"x":1756062240232,"y":41.808},{"x":1756062182945,"y":45.163},{"x":1756062122802,"y":41.472},{"x":1756062062672,"y":46.52},{"x":1756062002569,"y":47.315},{"x":1756061942398,"y":50.358},{"x":1756061882253,"y":38.952},{"x":1756061822129,"y":36.289},{"x":1756061761967,"y":49.03},{"x":1756061701833,"y":60.067},{"x":1756061641702,"y":65.14},{"x":1756061581565,"y":47.062},{"x":1756061521442,"y":49.823},{"x":1756061461311,"y":55.158},{"x":1756061401185,"y":36.154},{"x":1756061341019,"y":42.55},{"x":1756061280886,"y":39.437},{"x":1756061220761,"y":34.98},{"x":1756061160677,"y":34.855},{"x":1756061100608,"y":52.15},{"x":1756061040342,"y":40.77},{"x":1756060980243,"y":35.596},{"x":1756060922919,"y":41.299},{"x":1756060862719,"y":37.236},{"x":1756060802577,"y":42.332},{"x":1756060742447,"y":38.532},{"x":1756060682296,"y":47.579},{"x":1756060622170,"y":67.068},{"x":1756060562043,"y":47.008},{"x":1756060501895,"y":48.63},{"x":1756060441758,"y":42.464},{"x":1756060381608,"y":34.734},{"x":1756060321472,"y":35.761},{"x":1756060261333,"y":36.014},{"x":1756060201219,"y":39.149},{"x":1756060141057,"y":38.912},{"x":1756060080928,"y":42.766},{"x":1756060020797,"y":56.569},{"x":1756059960671,"y":45.995},{"x":1756059900541,"y":40.458},{"x":1756059840374,"y":35.608},{"x":1756059780263,"y":33.634},{"x":1756059722899,"y":49.579},{"x":1756059662784,"y":48.767},{"x":1756059602648,"y":48.215},{"x":1756059542508,"y":49.061},{"x":1756059482392,"y":48.155},{"x":1756059422361,"y":48.487},{"x":1756059362125,"y":40.68},{"x":1756059301978,"y":38.804},{"x":1756059241847,"y":55.516},{"x":1756059181715,"y":49.478},{"x":1756059121567,"y":46.933},{"x":1756059061412,"y":43.814},{"x":1756059001290,"y":43.981},{"x":1756058941125,"y":61.78},{"x":1756058880968,"y":38.239},{"x":1756058820841,"y":37.446},{"x":1756058760708,"y":37.687},{"x":1756058700646,"y":44.096},{"x":1756058640450,"y":56.335},{"x":1756058580355,"y":47.609},{"x":1756058520065,"y":46.014},{"x":1756058462892,"y":50.072},{"x":1756058402754,"y":41.112},{"x":1756058342605,"y":38.91},{"x":1756058282467,"y":43.838},{"x":1756058222341,"y":39.752},{"x":1756058162193,"y":40.276},{"x":1756058102063,"y":54.304},{"x":1756058041913,"y":38.221},{"x":1756057981788,"y":40.872},{"x":1756057921649,"y":41.194},{"x":1756057861522,"y":38.437},{"x":1756057801393,"y":41.777},{"x":1756057741253,"y":42.648},{"x":1756057681119,"y":46.595},{"x":1756057620972,"y":40.063},{"x":1756057560837,"y":39.106},{"x":1756057500799,"y":36.026},{"x":1756057440667,"y":52.28},{"x":1756057380565,"y":46.757},{"x":1756057320399,"y":46.129},{"x":1756057262968,"y":45.514},{"x":1756057202837,"y":49.547},{"x":1756057142710,"y":48.552},{"x":1756057082585,"y":47.646},{"x":1756057022457,"y":70.386},{"x":1756056962311,"y":66.337},{"x":1756056902181,"y":52.835},{"x":1756056842040,"y":50.021},{"x":1756056781906,"y":40.928},{"x":1756056721778,"y":47.246},{"x":1756056661638,"y":38.737},{"x":1756056601548,"y":38.371},{"x":1756056541392,"y":59.512},{"x":1756056481248,"y":44.656},{"x":1756056421118,"y":42.265},{"x":1756056360985,"y":40.193},{"x":1756056300841,"y":51.383},{"x":1756056240763,"y":49.708},{"x":1756056180550,"y":65.167},{"x":1756056120418,"y":47.932},{"x":1756056060356,"y":45.217},{"x":1756056002992,"y":36.49},{"x":1756055942849,"y":36.071},{"x":1756055882718,"y":40.096},{"x":1756055822577,"y":55.064},{"x":1756055762439,"y":40.494},{"x":1756055702312,"y":39.4},{"x":1756055642185,"y":39.588},{"x":1756055582026,"y":55.471},{"x":1756055521888,"y":52.044},{"x":1756055461713,"y":60.736},{"x":1756055401561,"y":47.992},{"x":1756055341438,"y":42.194},{"x":1756055281312,"y":36.902},{"x":1756055221186,"y":33.668},{"x":1756055161045,"y":33.38},{"x":1756055100910,"y":32.7},{"x":1756055040772,"y":33.319},{"x":1756054980653,"y":40.057},{"x":1756054920539,"y":39.325},{"x":1756054860495,"y":37.736},{"x":1756054800224,"y":36.529},{"x":1756054742918,"y":43.01},{"x":1756054682796,"y":35.573},{"x":1756054622671,"y":52.109},{"x":1756054562541,"y":36.064},{"x":1756054502401,"y":35.198},{"x":1756054442266,"y":31.867},{"x":1756054382129,"y":30.455},{"x":1756054321985,"y":48.88},{"x":1756054261782,"y":50.49},{"x":1756054201663,"y":49.03},{"x":1756054141527,"y":50.954},{"x":1756054081394,"y":49.096},{"x":1756054021259,"y":62.359},{"x":1756053961117,"y":49.471},{"x":1756053901098,"y":43.771},{"x":1756053840827,"y":47.406},{"x":1756053780662,"y":41.989},{"x":1756053720555,"y":38.944},{"x":1756053660350,"y":44.724},{"x":1756053600319,"y":50.297},{"x":1756053542943,"y":49.199},{"x":1756053482820,"y":55.139},{"x":1756053422688,"y":56.596},{"x":1756053362566,"y":55.934},{"x":1756053302428,"y":55.956},{"x":1756053242281,"y":54.62},{"x":1756053182158,"y":41.302},{"x":1756053122042,"y":36.99},{"x":1756053061876,"y":34.703},{"x":1756053001754,"y":32.616},{"x":1756052941607,"y":31.538},{"x":1756052881469,"y":31.627},{"x":1756052821336,"y":33.514},{"x":1756052761215,"y":39.204},{"x":1756052701090,"y":51.936},{"x":1756052640929,"y":51.349},{"x":1756052580808,"y":46.158},{"x":1756052520675,"y":48.802},{"x":1756052460546,"y":39.464},{"x":1756052400480,"y":41.426},{"x":1756052340320,"y":39.476},{"x":1756052282905,"y":36.32},{"x":1756052222785,"y":40.014},{"x":1756052162650,"y":49.606},{"x":1756052102526,"y":36.226},{"x":1756052042404,"y":46.57},{"x":1756051982250,"y":42.792},{"x":1756051922115,"y":43.487},{"x":1756051861875,"y":45.128},{"x":1756051801723,"y":42.036},{"x":1756051741599,"y":31.186},{"x":1756051681457,"y":43.54},{"x":1756051621329,"y":56.744},{"x":1756051561207,"y":42.077},{"x":1756051501087,"y":49.579},{"x":1756051440937,"y":41.626},{"x":1756051380803,"y":39.984},{"x":1756051320672,"y":48.644},{"x":1756051260568,"y":47.953},{"x":1756051200557,"y":45.082},{"x":1756051140303,"y":46.009},{"x":1756051082990,"y":49.144},{"x":1756051022870,"y":37.867},{"x":1756050962741,"y":41.188},{"x":1756050902620,"y":40.277},{"x":1756050842497,"y":42.206},{"x":1756050782373,"y":40.373},{"x":1756050722248,"y":47.226},{"x":1756050662116,"y":38.278},{"x":1756050601974,"y":38.506},{"x":1756050541842,"y":37.952},{"x":1756050481711,"y":33.198},{"x":1756050421595,"y":35.702},{"x":1756050361465,"y":37.666},{"x":1756050301388,"y":38.65},{"x":1756050241209,"y":41.515},{"x":1756050181091,"y":47.416},{"x":1756050120948,"y":38.496},{"x":1756050060845,"y":39.991},{"x":1756050000763,"y":37.572},{"x":1756049940604,"y":46.129},{"x":1756049880445,"y":33.19},{"x":1756049820330,"y":33.193},{"x":1756049760097,"y":38.882},{"x":1756049702895,"y":54.152},{"x":1756049642773,"y":54.751},{"x":1756049582654,"y":39.403},{"x":1756049522518,"y":60.088},{"x":1756049462391,"y":41.263},{"x":1756049402268,"y":60.404},{"x":1756049342133,"y":58.956},{"x":1756049281982,"y":60.314},{"x":1756049221847,"y":55.874},{"x":1756049161728,"y":54.452},{"x":1756049101600,"y":45.047},{"x":1756049041478,"y":40.735},{"x":1756048981355,"y":40.934},{"x":1756048921231,"y":39.041},{"x":1756048861106,"y":42.619},{"x":1756048801005,"y":37.207},{"x":1756048740843,"y":37.309},{"x":1756048680724,"y":36.578},{"x":1756048620609,"y":47.524},{"x":1756048560513,"y":48.294},{"x":1756048500450,"y":55.06},{"x":1756048440139,"y":48.91},{"x":1756048382917,"y":50.95},{"x":1756048322771,"y":40.302},{"x":1756048262636,"y":35.428},{"x":1756048202476,"y":37.186},{"x":1756048142347,"y":41.554},{"x":1756048082219,"y":34.69},{"x":1756048022088,"y":46.084},{"x":1756047961949,"y":50.617},{"x":1756047901816,"y":49.919},{"x":1756047841690,"y":49.038},{"x":1756047781554,"y":52.106},{"x":1756047721428,"y":39.605},{"x":1756047661300,"y":38.736},{"x":1756047601288,"y":41.947},{"x":1756047540943,"y":43.492},{"x":1756047480843,"y":48.228},{"x":1756047420694,"y":32.15},{"x":1756047360588,"y":29.646},{"x":1756047300546,"y":32.82},{"x":1756047240342,"y":28.108},{"x":1756047182909,"y":28.686},{"x":1756047122774,"y":32.808},{"x":1756047062659,"y":45.568},{"x":1756047002544,"y":49.061},{"x":1756046942394,"y":42.326},{"x":1756046882275,"y":35.126},{"x":1756046822162,"y":35.356},{"x":1756046761997,"y":30.32},{"x":1756046701853,"y":36.169},{"x":1756046641726,"y":33.354},{"x":1756046581594,"y":33.028},{"x":1756046521457,"y":40.702},{"x":1756046461322,"y":38.574},{"x":1756046401192,"y":45.522},{"x":1756046341029,"y":38.399},{"x":1756046280886,"y":43.934},{"x":1756046220792,"y":43.306},{"x":1756046160628,"y":37.859},{"x":1756046100550,"y":45.701},{"x":1756046040338,"y":35.249},{"x":1756045983014,"y":50.179},{"x":1756045922885,"y":54.802},{"x":1756045862756,"y":56.626},{"x":1756045802632,"y":57.893},{"x":1756045742503,"y":73.376},{"x":1756045682376,"y":64.123},{"x":1756045622247,"y":40.819},{"x":1756045562123,"y":34.306},{"x":1756045501969,"y":32.801},{"x":1756045441837,"y":38.97},{"x":1756045381717,"y":44.846},{"x":1756045321599,"y":48.156},{"x":1756045261466,"y":31.163},{"x":1756045201343,"y":30.536},{"x":1756045141211,"y":36.18},{"x":1756045081076,"y":41.596},{"x":1756045020941,"y":41.224},{"x":1756044960820,"y":48.721},{"x":1756044900816,"y":49.193},{"x":1756044840613,"y":33.689},{"x":1756044780452,"y":40.794},{"x":1756044720352,"y":33.338},{"x":1756044660069,"y":38.092},{"x":1756044602871,"y":33.31},{"x":1756044542741,"y":29.797},{"x":1756044482620,"y":32.831},{"x":1756044422497,"y":28.996},{"x":1756044362361,"y":39.74},{"x":1756044302232,"y":49.192},{"x":1756044242105,"y":43.658},{"x":1756044181955,"y":43.16},{"x":1756044121834,"y":59.453},{"x":1756044061707,"y":38.657},{"x":1756044001655,"y":29.716},{"x":1756043941411,"y":33.419},{"x":1756043881282,"y":27.84},{"x":1756043821160,"y":44.447},{"x":1756043761018,"y":42.019},{"x":1756043700937,"y":42.664},{"x":1756043640763,"y":46.003},{"x":1756043580647,"y":43.672},{"x":1756043520557,"y":30.95},{"x":1756043460407,"y":31.963},{"x":1756043400239,"y":35.09},{"x":1756043342935,"y":33.769},{"x":1756043282812,"y":40.321},{"x":1756043222689,"y":45.108},{"x":1756043162560,"y":41.527},{"x":1756043102430,"y":50.989},{"x":1756043042308,"y":42.25},{"x":1756042982173,"y":40.302},{"x":1756042922052,"y":34.08},{"x":1756042861908,"y":33.499},{"x":1756042801785,"y":25.12},{"x":1756042741663,"y":35.71},{"x":1756042681510,"y":34.889},{"x":1756042621387,"y":31.754},{"x":1756042561260,"y":27.462},{"x":1756042501140,"y":38.275},{"x":1756042440996,"y":40.464},{"x":1756042380753,"y":43.937},{"x":1756042320711,"y":28.634},{"x":1756042260547,"y":29.388},{"x":1756042200481,"y":25.24},{"x":1756042140259,"y":43.888},{"x":1756042082922,"y":35.754},{"x":1756042022810,"y":30.047},{"x":1756041962666,"y":38.462},{"x":1756041902532,"y":60.002},{"x":1756041842389,"y":33.854},{"x":1756041782259,"y":60.739},{"x":1756041722108,"y":52.6},{"x":1756041661948,"y":56.893},{"x":1756041601819,"y":48.158},{"x":1756041541676,"y":53.135},{"x":1756041481543,"y":29.803},{"x":1756041421421,"y":24.386},{"x":1756041361288,"y":29.564},{"x":1756041301175,"y":29.495},{"x":1756041241019,"y":29.372},{"x":1756041180868,"y":34.078},{"x":1756041120711,"y":47.036},{"x":1756041060674,"y":31.226},{"x":1756041000469,"y":61.692},{"x":1756040940248,"y":39.914},{"x":1756040882982,"y":37.891},{"x":1756040822853,"y":46.14},{"x":1756040762701,"y":34.666},{"x":1756040702562,"y":24.596},{"x":1756040642418,"y":23.036},{"x":1756040582281,"y":30.061},{"x":1756040522144,"y":26.912},{"x":1756040462028,"y":35.692},{"x":1756040401981,"y":36.355},{"x":1756040341710,"y":28.884},{"x":1756040281578,"y":42.27},{"x":1756040221464,"y":27.338},{"x":1756040161335,"y":38.794},{"x":1756040101203,"y":46.429},{"x":1756040041058,"y":48.061},{"x":1756039980900,"y":47.281},{"x":1756039920790,"y":61.508},{"x":1756039860621,"y":35.622},{"x":1756039800472,"y":30.866},{"x":1756039740353,"y":34.512},{"x":1756039682985,"y":39.154},{"x":1756039622852,"y":27.69},{"x":1756039562721,"y":23.248},{"x":1756039502590,"y":30.238},{"x":1756039442458,"y":26.257},{"x":1756039382325,"y":34.64},{"x":1756039322207,"y":42.346},{"x":1756039262065,"y":34.079},{"x":1756039201915,"y":38.072},{"x":1756039141787,"y":25.546},{"x":1756039081658,"y":21.767},{"x":1756039021505,"y":20.708},{"x":1756038961346,"y":29.735},{"x":1756038901221,"y":38.312},{"x":1756038841063,"y":35.8},{"x":1756038780917,"y":25.414},{"x":1756038720795,"y":42.391},{"x":1756038660672,"y":37.35},{"x":1756038600605,"y":42.756},{"x":1756038540404,"y":40.094},{"x":1756038480337,"y":41.879},{"x":1756038422960,"y":54.732},{"x":1756038362812,"y":35.215},{"x":1756038302687,"y":38.161},{"x":1756038242544,"y":29.892},{"x":1756038182415,"y":33.083},{"x":1756038122295,"y":38.592},{"x":1756038062163,"y":30.415},{"x":1756038002028,"y":35.112},{"x":1756037941888,"y":37.364},{"x":1756037881735,"y":23.618},{"x":1756037821615,"y":25.411},{"x":1756037761469,"y":29.136},{"x":1756037701344,"y":27.444},{"x":1756037641201,"y":31.402},{"x":1756037581072,"y":35.785},{"x":1756037520916,"y":28.823},{"x":1756037460778,"y":31.01},{"x":1756037400689,"y":38.506},{"x":1756037340493,"y":28.86},{"x":1756037280342,"y":48.479},{"x":1756037222999,"y":26.62},{"x":1756037162861,"y":21.636},{"x":1756037102724,"y":24.893},{"x":1756037042590,"y":39.72},{"x":1756036982461,"y":29.171},{"x":1756036922324,"y":29.887},{"x":1756036862154,"y":29.262},{"x":1756036802108,"y":21.932},{"x":1756036741824,"y":35.782},{"x":1756036681696,"y":47.104},{"x":1756036621566,"y":48.743},{"x":1756036561430,"y":52.747},{"x":1756036501299,"y":50.455},{"x":1756036441156,"y":48.024},{"x":1756036381041,"y":28.322},{"x":1756036320893,"y":27.498},{"x":1756036260748,"y":34.834},{"x":1756036200618,"y":34.139},{"x":1756036140575,"y":28.644},{"x":1756036080389,"y":26.874},{"x":1756036020321,"y":24.974},{"x":1756035962896,"y":23.963},{"x":1756035902774,"y":29.018},{"x":1756035842636,"y":31.685},{"x":1756035782501,"y":31.591},{"x":1756035722358,"y":42.41},{"x":1756035662296,"y":49.931},{"x":1756035602116,"y":46.44},{"x":1756035541966,"y":49.267},{"x":1756035481835,"y":43.553},{"x":1756035421698,"y":20.815},{"x":1756035361565,"y":27.488},{"x":1756035301430,"y":30.596},{"x":1756035241296,"y":35.587},{"x":1756035181169,"y":32.099},{"x":1756035121035,"y":29.279},{"x":1756035060909,"y":30.031},{"x":1756035000818,"y":33.63},{"x":1756034940638,"y":48.418},{"x":1756034880550,"y":29.566},{"x":1756034820402,"y":42.365},{"x":1756034760271,"y":41.093},{"x":1756034702910,"y":38.534},{"x":1756034642772,"y":27.395},{"x":1756034582650,"y":44.731},{"x":1756034522520,"y":46.276},{"x":1756034462400,"y":40.218},{"x":1756034402264,"y":28.235},{"x":1756034342144,"y":28.83},{"x":1756034281983,"y":35.826},{"x":1756034221857,"y":59.55},{"x":1756034161710,"y":45.455},{"x":1756034101574,"y":38.536},{"x":1756034041437,"y":32.908},{"x":1756033981308,"y":27.742},{"x":1756033921178,"y":42.397},{"x":1756033860985,"y":37.106},{"x":1756033800945,"y":55.562},{"x":1756033740697,"y":38.508},{"x":1756033680757,"y":39.238},{"x":1756033620354,"y":36.473},{"x":1756033560193,"y":34.562},{"x":1756033502894,"y":32.416},{"x":1756033442776,"y":35.73},{"x":1756033382610,"y":30.773},{"x":1756033322502,"y":31.753},{"x":1756033262350,"y":28.645},{"x":1756033202251,"y":43.332},{"x":1756033142039,"y":28.876},{"x":1756033081902,"y":28.384},{"x":1756033021805,"y":31.201},{"x":1756032961660,"y":23.174},{"x":1756032901540,"y":29.741},{"x":1756032841411,"y":34.73},{"x":1756032781288,"y":28.199},{"x":1756032721157,"y":32.209},{"x":1756032661015,"y":29.716},{"x":1756032600917,"y":36.259},{"x":1756032540765,"y":29.221},{"x":1756032480708,"y":36.659},{"x":1756032420573,"y":33.062},{"x":1756032360377,"y":29.093},{"x":1756032300232,"y":41.146},{"x":1756032242971,"y":31.643},{"x":1756032182841,"y":38.492},{"x":1756032122720,"y":56.249},{"x":1756032062600,"y":59.105},{"x":1756032002458,"y":69.696},{"x":1756031942324,"y":48.815},{"x":1756031882194,"y":65.369},{"x":1756031822064,"y":37.619},{"x":1756031761921,"y":39.146},{"x":1756031701794,"y":39.596},{"x":1756031641682,"y":43.784},{"x":1756031581473,"y":44.417},{"x":1756031521341,"y":46.652},{"x":1756031461210,"y":45.204},{"x":1756031401079,"y":45.972},{"x":1756031340933,"y":44.359},{"x":1756031280829,"y":50.353},{"x":1756031220696,"y":55.126},{"x":1756031160590,"y":56.603},{"x":1756031100517,"y":54.026},{"x":1756031040331,"y":55.765},{"x":1756030982995,"y":56.759},{"x":1756030922843,"y":43.886},{"x":1756030862719,"y":44.749},{"x":1756030802560,"y":56.384},{"x":1756030742430,"y":49.847},{"x":1756030682304,"y":39.589},{"x":1756030622175,"y":50.705},{"x":1756030562037,"y":49.856},{"x":1756030501894,"y":42.811},{"x":1756030441777,"y":40.853},{"x":1756030381637,"y":46.084},{"x":1756030321484,"y":37.523},{"x":1756030261328,"y":35.698},{"x":1756030201198,"y":33.443},{"x":1756030141015,"y":34.459},{"x":1756030080889,"y":46.59},{"x":1756030020774,"y":45.913},{"x":1756029960666,"y":51.14},{"x":1756029900598,"y":44.676},{"x":1756029840379,"y":42.965},{"x":1756029780257,"y":35.771},{"x":1756029722903,"y":34.361},{"x":1756029662779,"y":46.604},{"x":1756029602634,"y":30.35},{"x":1756029542466,"y":39.769},{"x":1756029482335,"y":36.568},{"x":1756029422195,"y":48.116},{"x":1756029362069,"y":57.767},{"x":1756029301919,"y":50.146},{"x":1756029241792,"y":32.435},{"x":1756029181667,"y":41.1},{"x":1756029121529,"y":39.028},{"x":1756029061400,"y":34.249},{"x":1756029001282,"y":31.379},{"x":1756028941142,"y":30.965},{"x":1756028881012,"y":31.099},{"x":1756028820874,"y":33.846},{"x":1756028760748,"y":32.03},{"x":1756028700701,"y":34.465},{"x":1756028640479,"y":43.153},{"x":1756028580343,"y":34.952},{"x":1756028520145,"y":34.435},{"x":1756028462928,"y":38.192},{"x":1756028402806,"y":34.435},{"x":1756028342674,"y":44.086},{"x":1756028282547,"y":48.138},{"x":1756028222420,"y":44.886},{"x":1756028162289,"y":47.886},{"x":1756028102152,"y":49.116},{"x":1756028042000,"y":52.648},{"x":1756027981854,"y":42.796},{"x":1756027921721,"y":40.583},{"x":1756027861592,"y":53.624},{"x":1756027801481,"y":67.601},{"x":1756027741341,"y":69.541},{"x":1756027681210,"y":73.853},{"x":1756027621065,"y":68.473},{"x":1756027560911,"y":53.197},{"x":1756027500822,"y":44.874},{"x":1756027440673,"y":55.234},{"x":1756027380516,"y":50.29},{"x":1756027320241,"y":43.828},{"x":1756027262932,"y":47.906},{"x":1756027202821,"y":44.474},{"x":1756027142682,"y":42.412},{"x":1756027082564,"y":47.659},{"x":1756027022439,"y":45.584},{"x":1756026962309,"y":49.133},{"x":1756026902187,"y":46.519},{"x":1756026842051,"y":50.616},{"x":1756026781889,"y":45.643},{"x":1756026721758,"y":47.281},{"x":1756026661597,"y":46.073},{"x":1756026601455,"y":43.889},{"x":1756026541311,"y":44.423},{"x":1756026481176,"y":52.061},{"x":1756026421046,"y":35.346},{"x":1756026360896,"y":53.981},{"x":1756026300779,"y":40.064},{"x":1756026240653,"y":43.878},{"x":1756026180446,"y":44.278},{"x":1756026120332,"y":38.903},{"x":1756026063013,"y":38.245},{"x":1756026002885,"y":36.587},{"x":1756025942733,"y":35.261},{"x":1756025882603,"y":36.569},{"x":1756025822470,"y":35.929},{"x":1756025762342,"y":39.277},{"x":1756025702212,"y":42.713},{"x":1756025642068,"y":47.84},{"x":1756025581929,"y":38.718},{"x":1756025521796,"y":56.964},{"x":1756025461657,"y":45.578},{"x":1756025401534,"y":41.036},{"x":1756025341385,"y":42.39},{"x":1756025281258,"y":41.912},{"x":1756025221127,"y":40.385},{"x":1756025160964,"y":44.246},{"x":1756025100889,"y":42.596},{"x":1756025040732,"y":44.161},{"x":1756024980513,"y":45.448},{"x":1756024920338,"y":45.779},{"x":1756024860087,"y":41.864},{"x":1756024802899,"y":44.018},{"x":1756024742769,"y":48.092},{"x":1756024682629,"y":39.802},{"x":1756024622501,"y":39.265},{"x":1756024562370,"y":43.861},{"x":1756024502238,"y":43.901},{"x":1756024442103,"y":37.314},{"x":1756024381961,"y":39.955},{"x":1756024321825,"y":31.47},{"x":1756024261695,"y":39.775},{"x":1756024201577,"y":50.188},{"x":1756024141438,"y":50.752},{"x":1756024081306,"y":46.057},{"x":1756024021229,"y":45.053},{"x":1756023961035,"y":40.78},{"x":1756023900975,"y":45.414},{"x":1756023840866,"y":40.1},{"x":1756023780815,"y":37.836},{"x":1756023720509,"y":35.814},{"x":1756023660433,"y":40.759},{"x":1756023602951,"y":35.185},{"x":1756023542810,"y":42.397},{"x":1756023482675,"y":40.481},{"x":1756023422551,"y":40.718},{"x":1756023362412,"y":37.205},{"x":1756023302276,"y":45.361},{"x":1756023242150,"y":43.457},{"x":1756023181990,"y":44.99},{"x":1756023121838,"y":45.854},{"x":1756023061665,"y":42.259},{"x":1756023001519,"y":33.124},{"x":1756022941397,"y":33.751},{"x":1756022881282,"y":49.643},{"x":1756022821125,"y":49.789},{"x":1756022760984,"y":50.21},{"x":1756022700860,"y":51.631},{"x":1756022640813,"y":57.475},{"x":1756022580636,"y":56.956},{"x":1756022520433,"y":55.934},{"x":1756022460306,"y":57.208},{"x":1756022402951,"y":52.151},{"x":1756022342802,"y":58.042},{"x":1756022282665,"y":39.367},{"x":1756022222523,"y":40.678},{"x":1756022162394,"y":38.728},{"x":1756022102272,"y":38.273},{"x":1756022042145,"y":38.078},{"x":1756021981997,"y":39.679},{"x":1756021921865,"y":43.417},{"x":1756021861723,"y":45.824},{"x":1756021801593,"y":40.238},{"x":1756021741450,"y":43.554},{"x":1756021681330,"y":36.432},{"x":1756021621201,"y":34.754},{"x":1756021561057,"y":37.002},{"x":1756021500978,"y":34.225},{"x":1756021440813,"y":41.742},{"x":1756021380549,"y":36.469},{"x":1756021320405,"y":38.255},{"x":1756021260297,"y":45.125},{"x":1756021202981,"y":39.472},{"x":1756021142842,"y":44.909},{"x":1756021082709,"y":41.971},{"x":1756021022579,"y":37.078},{"x":1756020962447,"y":42.898},{"x":1756020902322,"y":35.456},{"x":1756020842196,"y":30.966},{"x":1756020782039,"y":49.883},{"x":1756020721897,"y":46.289},{"x":1756020661770,"y":52.741},{"x":1756020601636,"y":52.35},{"x":1756020541502,"y":49.795},{"x":1756020481369,"y":39.262},{"x":1756020421238,"y":39.972},{"x":1756020361110,"y":32.396},{"x":1756020301009,"y":34.826},{"x":1756020240849,"y":29.732},{"x":1756020180721,"y":35.099},{"x":1756020120592,"y":45.527},{"x":1756020060580,"y":36.936},{"x":1756020000295,"y":38.18},{"x":1756019943036,"y":42.197},{"x":1756019882888,"y":36.985},{"x":1756019822762,"y":44.711},{"x":1756019762604,"y":38.02},{"x":1756019702471,"y":39.992},{"x":1756019642335,"y":44.006},{"x":1756019582199,"y":43.074},{"x":1756019522042,"y":41.828},{"x":1756019461872,"y":45.091},{"x":1756019401720,"y":38.868},{"x":1756019341577,"y":39.912},{"x":1756019281433,"y":44.442},{"x":1756019221297,"y":42.342},{"x":1756019161150,"y":45.247},{"x":1756019101012,"y":36.38},{"x":1756019040875,"y":53.748},{"x":1756018980749,"y":41.748},{"x":1756018920641,"y":45.288},{"x":1756018860524,"y":48.882},{"x":1756018800470,"y":52.904},{"x":1756018742976,"y":50.964},{"x":1756018682839,"y":48.019},{"x":1756018622732,"y":47.766},{"x":1756018562582,"y":42.797},{"x":1756018502454,"y":39.272},{"x":1756018442321,"y":42.714},{"x":1756018382200,"y":38.753},{"x":1756018322069,"y":43.021},{"x":1756018261916,"y":48.125},{"x":1756018201774,"y":57.75},{"x":1756018141648,"y":47.521},{"x":1756018081521,"y":47.718},{"x":1756018021390,"y":43.126},{"x":1756017961269,"y":52.71},{"x":1756017901177,"y":33.192},{"x":1756017840999,"y":39.23},{"x":1756017780871,"y":34.028},{"x":1756017720783,"y":34.62},{"x":1756017660664,"y":32.046},{"x":1756017600562,"y":30.112},{"x":1756017540433,"y":38.464},{"x":1756017480046,"y":40.831},{"x":1756017422893,"y":40.678},{"x":1756017362763,"y":41.078},{"x":1756017302632,"y":43.936},{"x":1756017242499,"y":42.066},{"x":1756017182377,"y":33.571},{"x":1756017122245,"y":36.338},{"x":1756017062114,"y":30.216},{"x":1756017001991,"y":34.52},{"x":1756016941845,"y":32.69},{"x":1756016881713,"y":38.284},{"x":1756016821575,"y":30.757},{"x":1756016761453,"y":35.501},{"x":1756016701324,"y":32.323},{"x":1756016641202,"y":32.848},{"x":1756016581051,"y":35.377},{"x":1756016520916,"y":47.31},{"x":1756016460786,"y":33.96},{"x":1756016400745,"y":49.454},{"x":1756016340525,"y":27.366},{"x":1756016280409,"y":54.652},{"x":1756016220238,"y":37.939},{"x":1756016162954,"y":48.706},{"x":1756016102808,"y":37.991},{"x":1756016042678,"y":52.87},{"x":1756015982546,"y":43.082},{"x":1756015922399,"y":52.487},{"x":1756015862211,"y":53.342},{"x":1756015802058,"y":54.355},{"x":1756015741909,"y":38.102},{"x":1756015681782,"y":37.492},{"x":1756015621657,"y":35.992},{"x":1756015561528,"y":35.394},{"x":1756015501408,"y":36.808},{"x":1756015441282,"y":36.942},{"x":1756015381137,"y":36.328},{"x":1756015320996,"y":29.374},{"x":1756015260881,"y":31.396},{"x":1756015200967,"y":32.765},{"x":1756015140601,"y":34.922},{"x":1756015080481,"y":36.428},{"x":1756015020309,"y":31.028},{"x":1756014962970,"y":30.372},{"x":1756014902825,"y":30.824},{"x":1756014842682,"y":30.572},{"x":1756014782559,"y":42.277},{"x":1756014722417,"y":36.672},{"x":1756014662287,"y":35.268},{"x":1756014602133,"y":33.391},{"x":1756014541994,"y":33.23},{"x":1756014481861,"y":40.06},{"x":1756014421733,"y":35.569},{"x":1756014361596,"y":34.744},{"x":1756014301466,"y":36.476},{"x":1756014241331,"y":32.855},{"x":1756014181208,"y":36.562},{"x":1756014121073,"y":31.261},{"x":1756014060934,"y":29.459},{"x":1756014000851,"y":34.034},{"x":1756013940732,"y":33.074},{"x":1756013880550,"y":33.271},{"x":1756013820470,"y":32.357},{"x":1756013760344,"y":33.29},{"x":1756013700104,"y":33.006},{"x":1756013642895,"y":31.954},{"x":1756013582765,"y":33.893},{"x":1756013522629,"y":34.751},{"x":1756013462498,"y":33.224},{"x":1756013402376,"y":33.154},{"x":1756013342213,"y":32.933},{"x":1756013282085,"y":34.961},{"x":1756013221948,"y":45.994},{"x":1756013161805,"y":34.229},{"x":1756013101685,"y":32.256},{"x":1756013041562,"y":34.364},{"x":1756012981430,"y":34.328},{"x":1756012921306,"y":34.343},{"x":1756012861177,"y":36.385},{"x":1756012801021,"y":39.221},{"x":1756012740844,"y":36.146},{"x":1756012680719,"y":35.029},{"x":1756012620674,"y":34.943},{"x":1756012560458,"y":32.976},{"x":1756012500324,"y":32.794},{"x":1756012442999,"y":35.43},{"x":1756012382866,"y":32.071},{"x":1756012322726,"y":45.45},{"x":1756012262560,"y":49.204},{"x":1756012202384,"y":50.456},{"x":1756012142244,"y":51.864},{"x":1756012082073,"y":48.042},{"x":1756012021935,"y":33.06},{"x":1756011961812,"y":32.137},{"x":1756011901686,"y":29.911},{"x":1756011841560,"y":34.446},{"x":1756011781432,"y":32.478},{"x":1756011721302,"y":30.226},{"x":1756011661142,"y":32.437},{"x":1756011601192,"y":35.234},{"x":1756011540766,"y":42.401},{"x":1756011480681,"y":36.445},{"x":1756011420487,"y":38.887},{"x":1756011360425,"y":39.82},{"x":1756011300233,"y":38.791},{"x":1756011242861,"y":37.475},{"x":1756011182741,"y":41.207},{"x":1756011122587,"y":35.162},{"x":1756011062453,"y":32.372},{"x":1756011002325,"y":35.015},{"x":1756010942198,"y":35.086},{"x":1756010882060,"y":40.682},{"x":1756010821927,"y":35.224},{"x":1756010761806,"y":37.052},{"x":1756010701679,"y":33.949},{"x":1756010641544,"y":34.104},{"x":1756010581420,"y":37.699},{"x":1756010521270,"y":34.637},{"x":1756010461149,"y":33.253},{"x":1756010401043,"y":37.529},{"x":1756010340893,"y":35.65},{"x":1756010280761,"y":38.383},{"x":1756010220652,"y":34.286},{"x":1756010160526,"y":33.728},{"x":1756010100476,"y":32.7},{"x":1756010040157,"y":34.427},{"x":1756009982764,"y":38.989},{"x":1756009922612,"y":33.325},{"x":1756009862467,"y":33.288},{"x":1756009802344,"y":33.712},{"x":1756009742221,"y":34.729},{"x":1756009682085,"y":40.733},{"x":1756009621948,"y":35.995},{"x":1756009561820,"y":34.496},{"x":1756009501689,"y":32.254},{"x":1756009441545,"y":32.816},{"x":1756009381416,"y":36.692},{"x":1756009321292,"y":36.336},{"x":1756009261173,"y":32.998},{"x":1756009201060,"y":36.025},{"x":1756009140889,"y":37.07},{"x":1756009080765,"y":35.041},{"x":1756009020664,"y":33.91},{"x":1756008960648,"y":34.51},{"x":1756008900275,"y":33.1},{"x":1756008840057,"y":32.68},{"x":1756008782847,"y":41.843},{"x":1756008722718,"y":31.43},{"x":1756008662544,"y":36.143},{"x":1756008602383,"y":37.699},{"x":1756008542246,"y":46.56},{"x":1756008482120,"y":41.15},{"x":1756008421985,"y":38.454},{"x":1756008361836,"y":37.886},{"x":1756008301708,"y":31.0},{"x":1756008241584,"y":31.136},{"x":1756008181458,"y":33.698},{"x":1756008121333,"y":33.658},{"x":1756008061179,"y":34.087},{"x":1756008001035,"y":32.364},{"x":1756007940706,"y":32.668},{"x":1756007880665,"y":34.912},{"x":1756007820483,"y":38.924},{"x":1756007760325,"y":37.674},{"x":1756007702955,"y":35.513},{"x":1756007642817,"y":31.796},{"x":1756007582687,"y":30.437},{"x":1756007522544,"y":30.799},{"x":1756007462453,"y":30.787},{"x":1756007402285,"y":31.429},{"x":1756007342132,"y":28.018},{"x":1756007281999,"y":34.962},{"x":1756007221869,"y":28.525},{"x":1756007161743,"y":38.933},{"x":1756007101617,"y":35.491},{"x":1756007041479,"y":35.148},{"x":1756006981348,"y":33.559},{"x":1756006921221,"y":32.978},{"x":1756006861093,"y":30.794},{"x":1756006801012,"y":30.218},{"x":1756006740819,"y":35.366},{"x":1756006680675,"y":32.903},{"x":1756006620545,"y":34.032},{"x":1756006560445,"y":33.205},{"x":1756006502988,"y":33.894},{"x":1756006442861,"y":36.869},{"x":1756006382729,"y":31.037},{"x":1756006322606,"y":33.564},{"x":1756006262492,"y":37.24},{"x":1756006202351,"y":36.962},{"x":1756006142214,"y":39.364},{"x":1756006082087,"y":46.055},{"x":1756006021940,"y":43.62},{"x":1756005961812,"y":46.411},{"x":1756005901693,"y":45.643},{"x":1756005841551,"y":50.788},{"x":1756005781421,"y":33.084},{"x":1756005721293,"y":31.686},{"x":1756005661159,"y":30.695},{"x":1756005601020,"y":33.418},{"x":1756005540819,"y":37.433},{"x":1756005480694,"y":33.151},{"x":1756005420539,"y":36.119},{"x":1756005360440,"y":35.603},{"x":1756005300255,"y":36.169},{"x":1756005242962,"y":37.469},{"x":1756005182790,"y":32.81},{"x":1756005122649,"y":33.946},{"x":1756005062498,"y":33.511},{"x":1756005002355,"y":32.525},{"x":1756004942224,"y":37.444},{"x":1756004882065,"y":35.406},{"x":1756004821921,"y":34.568},{"x":1756004761687,"y":33.881},{"x":1756004701562,"y":34.556},{"x":1756004641401,"y":40.368},{"x":1756004582209,"y":36.002},{"x":1756004522058,"y":35.992},{"x":1756004461845,"y":33.511},{"x":1756004401552,"y":31.157},{"x":1756004341209,"y":38.046},{"x":1756004281082,"y":33.119},{"x":1756004220940,"y":33.312},{"x":1756004160831,"y":36.739},{"x":1756004100708,"y":37.921},{"x":1756004040603,"y":40.915},{"x":1756003980314,"y":42.073},{"x":1756003923009,"y":41.207},{"x":1756003862858,"y":37.948},{"x":1756003802737,"y":38.72},{"x":1756003742597,"y":41.836},{"x":1756003682464,"y":32.194},{"x":1756003622331,"y":31.805},{"x":1756003562202,"y":30.763},{"x":1756003502083,"y":30.792},{"x":1756003441930,"y":37.973},{"x":1756003381775,"y":34.87},{"x":1756003321648,"y":35.51},{"x":1756003261479,"y":33.505},{"x":1756003201353,"y":37.706},{"x":1756003141206,"y":40.74},{"x":1756003081077,"y":34.464},{"x":1756003020927,"y":34.89},{"x":1756002960804,"y":32.104},{"x":1756002900731,"y":33.478},{"x":1756002840540,"y":33.366},{"x":1756002780402,"y":34.009},{"x":1756002720274,"y":34.157},{"x":1756002662941,"y":32.492},{"x":1756002602807,"y":37.31},{"x":1756002542665,"y":36.05},{"x":1756002482533,"y":34.408},{"x":1756002422402,"y":33.532},{"x":1756002362266,"y":31.829},{"x":1756002302104,"y":31.35},{"x":1756002241957,"y":32.964},{"x":1756002181820,"y":33.456},{"x":1756002121680,"y":32.627},{"x":1756002061551,"y":32.198},{"x":1756002001423,"y":33.221},{"x":1756001941294,"y":30.708},{"x":1756001881160,"y":32.746},{"x":1756001821030,"y":35.49},{"x":1756001760898,"y":34.997},{"x":1756001700825,"y":39.86},{"x":1756001640615,"y":50.804},{"x":1756001580504,"y":49.026},{"x":1756001520221,"y":47.783},{"x":1756001462879,"y":46.972},{"x":1756001402733,"y":44.741},{"x":1756001342598,"y":42.397},{"x":1756001282455,"y":39.487},{"x":1756001222323,"y":38.432},{"x":1756001162188,"y":38.032},{"x":1756001102061,"y":43.549},{"x":1756001041917,"y":38.04},{"x":1756000981760,"y":36.082},{"x":1756000921636,"y":34.124},{"x":1756000861511,"y":32.017},{"x":1756000801547,"y":35.262},{"x":1756000741163,"y":30.578},{"x":1756000681037,"y":31.892},{"x":1756000620910,"y":32.4},{"x":1756000560837,"y":32.64},{"x":1756000500632,"y":37.289},{"x":1756000440531,"y":33.274},{"x":1756000380340,"y":34.996},{"x":1756000323001,"y":49.153},{"x":1756000262863,"y":48.539},{"x":1756000202729,"y":51.998},{"x":1756000142597,"y":49.877},{"x":1756000082469,"y":46.399},{"x":1756000022341,"y":35.002},{"x":1755999962219,"y":33.912},{"x":1755999902092,"y":38.462},{"x":1755999841939,"y":33.557},{"x":1755999781798,"y":32.675},{"x":1755999721664,"y":33.248},{"x":1755999661530,"y":33.287},{"x":1755999601401,"y":38.71},{"x":1755999541274,"y":38.845},{"x":1755999481144,"y":34.582},{"x":1755999420999,"y":37.718},{"x":1755999360880,"y":33.314},{"x":1755999300785,"y":36.818},{"x":1755999240599,"y":37.357},{"x":1755999180449,"y":32.533},{"x":1755999120316,"y":33.514},{"x":1755999062941,"y":36.33},{"x":1755999002810,"y":32.059},{"x":1755998942674,"y":38.461},{"x":1755998882552,"y":33.404},{"x":1755998822406,"y":36.27},{"x":1755998762269,"y":37.928},{"x":1755998702140,"y":36.065},{"x":1755998641999,"y":40.026},{"x":1755998581870,"y":34.022},{"x":1755998521729,"y":32.915},{"x":1755998461603,"y":35.0},{"x":1755998401473,"y":35.142},{"x":1755998341344,"y":40.567},{"x":1755998281219,"y":37.267},{"x":1755998221078,"y":39.336},{"x":1755998160930,"y":39.78},{"x":1755998100804,"y":39.706},{"x":1755998040691,"y":39.107},{"x":1755997980599,"y":39.347},{"x":1755997920360,"y":34.696},{"x":1755997860208,"y":34.614},{"x":1755997802960,"y":32.455},{"x":1755997742835,"y":32.711},{"x":1755997682700,"y":33.791},{"x":1755997622560,"y":31.181},{"x":1755997562435,"y":33.296},{"x":1755997502303,"y":34.64},{"x":1755997442179,"y":37.386},{"x":1755997382082,"y":36.781},{"x":1755997321901,"y":35.099},{"x":1755997261794,"y":33.624},{"x":1755997201815,"y":36.545},{"x":1755997141497,"y":33.911},{"x":1755997081369,"y":34.446},{"x":1755997021276,"y":33.955},{"x":1755996961126,"y":32.675},{"x":1755996901013,"y":36.178},{"x":1755996840843,"y":35.491},{"x":1755996780723,"y":35.875},{"x":1755996720765,"y":38.7},{"x":1755996660453,"y":36.847},{"x":1755996600268,"y":36.774},{"x":1755996540224,"y":34.019},{"x":1755996482903,"y":34.169},{"x":1755996422766,"y":37.62},{"x":1755996362639,"y":40.79},{"x":1755996302501,"y":44.802},{"x":1755996242380,"y":39.402},{"x":1755996182254,"y":39.836},{"x":1755996122127,"y":45.978},{"x":1755996061968,"y":38.56},{"x":1755996001845,"y":55.432},{"x":1755995941725,"y":48.601},{"x":1755995881590,"y":45.322},{"x":1755995821454,"y":44.494},{"x":1755995761324,"y":42.63},{"x":1755995701185,"y":42.733},{"x":1755995641049,"y":39.2},{"x":1755995580914,"y":38.11},{"x":1755995520809,"y":37.483},{"x":1755995460668,"y":35.686},{"x":1755995400524,"y":40.997},{"x":1755995340287,"y":34.771},{"x":1755995283020,"y":38.258},{"x":1755995222875,"y":40.969},{"x":1755995162726,"y":42.073},{"x":1755995102607,"y":47.656},{"x":1755995042468,"y":42.9},{"x":1755994982333,"y":40.736},{"x":1755994922192,"y":39.708},{"x":1755994862054,"y":38.786},{"x":1755994801890,"y":42.808},{"x":1755994741755,"y":37.519},{"x":1755994681621,"y":34.508},{"x":1755994621488,"y":38.443},{"x":1755994561358,"y":40.603},{"x":1755994501235,"y":40.57},{"x":1755994441095,"y":40.88},{"x":1755994380926,"y":39.306},{"x":1755994320841,"y":37.052},{"x":1755994260637,"y":37.09},{"x":1755994200498,"y":37.415},{"x":1755994140291,"y":49.549},{"x":1755994080073,"y":52.903},{"x":1755994022888,"y":56.67},{"x":1755993962752,"y":51.678},{"x":1755993902637,"y":37.333},{"x":1755993842478,"y":39.96},{"x":1755993782347,"y":39.167},{"x":1755993722211,"y":37.414},{"x":1755993662128,"y":45.721},{"x":1755993602099,"y":39.638},{"x":1755993541602,"y":36.27},{"x":1755993481446,"y":35.924},{"x":1755993421327,"y":39.524},{"x":1755993361193,"y":42.641},{"x":1755993301065,"y":39.248},{"x":1755993240929,"y":37.992},{"x":1755993180807,"y":37.476},{"x":1755993120735,"y":35.09},{"x":1755993060572,"y":39.408},{"x":1755993000366,"y":38.069},{"x":1755992940079,"y":37.922},{"x":1755992882898,"y":39.365},{"x":1755992822762,"y":40.081},{"x":1755992762644,"y":45.391},{"x":1755992702516,"y":39.62},{"x":1755992642392,"y":39.769},{"x":1755992582261,"y":40.097},{"x":1755992522113,"y":38.912},{"x":1755992461966,"y":42.448},{"x":1755992401870,"y":37.58},{"x":1755992341697,"y":35.314},{"x":1755992281571,"y":37.188},{"x":1755992221427,"y":39.695},{"x":1755992161298,"y":43.284},{"x":1755992101166,"y":40.039},{"x":1755992041024,"y":39.599},{"x":1755991980878,"y":36.684},{"x":1755991920826,"y":35.446},{"x":1755991860634,"y":37.336},{"x":1755991800570,"y":33.215},{"x":1755991740495,"y":34.304},{"x":1755991680220,"y":36.262},{"x":1755991622914,"y":38.918},{"x":1755991562768,"y":43.436},{"x":1755991502621,"y":41.531},{"x":1755991442510,"y":40.818},{"x":1755991382377,"y":41.054},{"x":1755991322238,"y":38.93},{"x":1755991262107,"y":38.86},{"x":1755991201967,"y":36.314},{"x":1755991141822,"y":39.89},{"x":1755991081690,"y":37.541},{"x":1755991021562,"y":37.902},{"x":1755990961414,"y":37.387},{"x":1755990901301,"y":40.423},{"x":1755990841145,"y":43.997},{"x":1755990780962,"y":43.7},{"x":1755990720874,"y":41.588},{"x":1755990660687,"y":43.588},{"x":1755990600515,"y":39.302},{"x":1755990540348,"y":37.801},{"x":1755990482990,"y":38.765},{"x":1755990422821,"y":37.104},{"x":1755990362694,"y":36.76},{"x":1755990302577,"y":37.411},{"x":1755990242445,"y":38.551},{"x":1755990182297,"y":39.418},{"x":1755990122175,"y":41.675},{"x":1755990062055,"y":45.626},{"x":1755990001975,"y":38.408},{"x":1755989941734,"y":36.944},{"x":1755989881591,"y":39.014},{"x":1755989821464,"y":38.766},{"x":1755989761333,"y":39.398},{"x":1755989701210,"y":36.954},{"x":1755989641070,"y":37.64},{"x":1755989580935,"y":38.744},{"x":1755989520816,"y":42.565},{"x":1755989460705,"y":41.33},{"x":1755989400736,"y":43.042},{"x":1755989340470,"y":44.088},{"x":1755989280387,"y":44.879},{"x":1755989220155,"y":41.599},{"x":1755989162894,"y":42.696},{"x":1755989102756,"y":38.906},{"x":1755989042627,"y":38.456},{"x":1755988982485,"y":42.677},{"x":1755988922354,"y":41.009},{"x":1755988862215,"y":42.037},{"x":1755988802077,"y":52.187},{"x":1755988741934,"y":60.022},{"x":1755988681817,"y":60.128},{"x":1755988621659,"y":64.709},{"x":1755988561522,"y":63.979},{"x":1755988501383,"y":49.666},{"x":1755988441272,"y":49.58},{"x":1755988381132,"y":51.16},{"x":1755988320986,"y":36.521},{"x":1755988260862,"y":40.628},{"x":1755988200749,"y":40.972},{"x":1755988140542,"y":50.659},{"x":1755988080321,"y":64.253},{"x":1755988020147,"y":52.816},{"x":1755987962890,"y":51.836},{"x":1755987902763,"y":53.269},{"x":1755987842636,"y":45.402},{"x":1755987782517,"y":46.04},{"x":1755987722376,"y":45.821},{"x":1755987662249,"y":41.914},{"x":1755987602124,"y":37.73},{"x":1755987541991,"y":37.57},{"x":1755987481852,"y":54.772},{"x":1755987421738,"y":37.811},{"x":1755987361584,"y":37.523},{"x":1755987301474,"y":52.204},{"x":1755987241336,"y":52.456},{"x":1755987181215,"y":50.47},{"x":1755987121042,"y":56.026},{"x":1755987060900,"y":56.396},{"x":1755987000761,"y":46.585},{"x":1755986940625,"y":45.524},{"x":1755986880499,"y":60.262},{"x":1755986820459,"y":43.266},{"x":1755986760295,"y":44.269},{"x":1755986702972,"y":43.483},{"x":1755986642848,"y":42.872},{"x":1755986582725,"y":42.634},{"x":1755986522614,"y":40.462},{"x":1755986462466,"y":55.088},{"x":1755986402390,"y":41.388},{"x":1755986342200,"y":42.107},{"x":1755986282076,"y":44.074},{"x":1755986221944,"y":42.599},{"x":1755986161821,"y":43.441},{"x":1755986101696,"y":45.323},{"x":1755986041569,"y":45.124},{"x":1755985981447,"y":44.998},{"x":1755985921315,"y":39.98},{"x":1755985861187,"y":40.687},{"x":1755985801039,"y":39.144},{"x":1755985740888,"y":42.371},{"x":1755985680819,"y":39.415},{"x":1755985620627,"y":43.157},{"x":1755985560484,"y":44.166},{"x":1755985500368,"y":47.243},{"x":1755985440198,"y":46.91},{"x":1755985382912,"y":44.244},{"x":1755985322782,"y":43.405},{"x":1755985262660,"y":43.256},{"x":1755985202525,"y":44.228},{"x":1755985142405,"y":44.483},{"x":1755985082279,"y":43.402},{"x":1755985022152,"y":43.176},{"x":1755984961983,"y":43.592},{"x":1755984901851,"y":45.835},{"x":1755984841713,"y":45.972},{"x":1755984781571,"y":45.173},{"x":1755984721442,"y":47.656},{"x":1755984661309,"y":43.151},{"x":1755984601193,"y":44.797},{"x":1755984541030,"y":43.266},{"x":1755984480902,"y":40.909},{"x":1755984420777,"y":43.139},{"x":1755984360645,"y":42.654},{"x":1755984300583,"y":45.247},{"x":1755984240344,"y":47.428},{"x":1755984182910,"y":45.558},{"x":1755984122794,"y":46.315},{"x":1755984062676,"y":47.392},{"x":1755984002545,"y":43.343},{"x":1755983942402,"y":47.207},{"x":1755983882276,"y":41.33},{"x":1755983822149,"y":38.516},{"x":1755983761990,"y":39.712},{"x":1755983701851,"y":47.941},{"x":1755983641715,"y":50.298},{"x":1755983581571,"y":50.993},{"x":1755983521413,"y":55.67},{"x":1755983461247,"y":54.373},{"x":1755983401123,"y":40.63},{"x":1755983340949,"y":51.427},{"x":1755983280818,"y":49.477},{"x":1755983220676,"y":51.793},{"x":1755983160627,"y":50.857},{"x":1755983100457,"y":55.513},{"x":1755983042924,"y":54.841},{"x":1755982982797,"y":52.628},{"x":1755982922672,"y":50.294},{"x":1755982862548,"y":47.33},{"x":1755982802432,"y":61.714},{"x":1755982742257,"y":60.955},{"x":1755982682118,"y":59.059},{"x":1755982621954,"y":55.55},{"x":1755982561827,"y":52.465},{"x":1755982501691,"y":49.408},{"x":1755982441559,"y":50.657},{"x":1755982381416,"y":54.19},{"x":1755982321289,"y":58.68},{"x":1755982261166,"y":62.251},{"x":1755982201032,"y":61.168},{"x":1755982140854,"y":76.08},{"x":1755982080751,"y":63.307},{"x":1755982020607,"y":68.5},{"x":1755981960530,"y":57.498},{"x":1755981900400,"y":60.044},{"x":1755981842953,"y":56.863},{"x":1755981782856,"y":53.228},{"x":1755981722701,"y":49.978},{"x":1755981662595,"y":49.225},{"x":1755981602441,"y":51.05},{"x":1755981542312,"y":51.161},{"x":1755981482188,"y":54.301},{"x":1755981422054,"y":75.434},{"x":1755981361909,"y":57.131},{"x":1755981301778,"y":58.474},{"x":1755981241642,"y":66.086},{"x":1755981181523,"y":50.952},{"x":1755981121382,"y":75.318},{"x":1755981061255,"y":72.595},{"x":1755981001171,"y":71.71},{"x":1755980940992,"y":73.117},{"x":1755980880857,"y":75.295},{"x":1755980820751,"y":52.451},{"x":1755980760624,"y":51.73},{"x":1755980700589,"y":52.892},{"x":1755980640311,"y":54.149},{"x":1755980582969,"y":56.046},{"x":1755980522832,"y":51.31},{"x":1755980462697,"y":45.388},{"x":1755980402555,"y":46.83},{"x":1755980342418,"y":48.38},{"x":1755980282298,"y":52.859},{"x":1755980222172,"y":48.107},{"x":1755980162012,"y":52.759},{"x":1755980101865,"y":87.781},{"x":1755980041750,"y":78.829},{"x":1755979981616,"y":91.446},{"x":1755979921413,"y":73.664},{"x":1755979861257,"y":70.732},{"x":1755979801076,"y":64.915},{"x":1755979740912,"y":68.964},{"x":1755979680799,"y":47.492},{"x":1755979620657,"y":46.439},{"x":1755979560589,"y":46.183},{"x":1755979500357,"y":47.442},{"x":1755979440279,"y":49.421},{"x":1755979382911,"y":53.476},{"x":1755979322782,"y":54.166},{"x":1755979262645,"y":51.827},{"x":1755979202552,"y":50.194},{"x":1755979142350,"y":50.674},{"x":1755979082227,"y":52.048},{"x":1755979022098,"y":55.486},{"x":1755978961956,"y":51.431},{"x":1755978901825,"y":47.21},{"x":1755978841689,"y":47.334},{"x":1755978781558,"y":50.578},{"x":1755978721409,"y":49.694},{"x":1755978661267,"y":49.76},{"x":1755978601132,"y":56.52},{"x":1755978540994,"y":52.46},{"x":1755978480887,"y":55.481},{"x":1755978420726,"y":67.84},{"x":1755978360643,"y":59.435},{"x":1755978300521,"y":52.691},{"x":1755978240378,"y":56.896},{"x":1755978182988,"y":46.729},{"x":1755978122868,"y":50.975},{"x":1755978062740,"y":47.095},{"x":1755978002659,"y":58.596},{"x":1755977942482,"y":68.6},{"x":1755977882344,"y":69.05},{"x":1755977822208,"y":83.078},{"x":1755977762074,"y":81.352},{"x":1755977701921,"y":74.518},{"x":1755977641788,"y":67.208},{"x":1755977581661,"y":64.531},{"x":1755977521534,"y":57.559},{"x":1755977461431,"y":57.384},{"x":1755977401297,"y":53.569},{"x":1755977341146,"y":59.58},{"x":1755977281023,"y":54.047},{"x":1755977220882,"y":57.894},{"x":1755977160751,"y":53.407},{"x":1755977100674,"y":65.768},{"x":1755977040505,"y":55.708},{"x":1755976980500,"y":57.958},{"x":1755976923020,"y":61.31},{"x":1755976862873,"y":58.465},{"x":1755976802751,"y":48.722},{"x":1755976742625,"y":52.637},{"x":1755976682512,"y":51.173},{"x":1755976622386,"y":47.275},{"x":1755976562255,"y":51.487},{"x":1755976502117,"y":53.921},{"x":1755976441973,"y":53.941},{"x":1755976381830,"y":56.116},{"x":1755976321689,"y":55.513},{"x":1755976261538,"y":68.09},{"x":1755976201375,"y":47.764},{"x":1755976141243,"y":62.922},{"x":1755976081120,"y":51.829},{"x":1755976020956,"y":54.175},{"x":1755975960832,"y":52.742},{"x":1755975900755,"y":56.524},{"x":1755975840661,"y":57.912},{"x":1755975780447,"y":84.93},{"x":1755975720272,"y":64.926},{"x":1755975663021,"y":64.631},{"x":1755975602906,"y":58.808},{"x":1755975542699,"y":53.696},{"x":1755975482570,"y":52.478},{"x":1755975422437,"y":50.849},{"x":1755975362304,"y":54.185},{"x":1755975302178,"y":70.067},{"x":1755975242046,"y":52.364},{"x":1755975181907,"y":58.128},{"x":1755975121771,"y":54.02},{"x":1755975061637,"y":52.493},{"x":1755975001525,"y":55.762},{"x":1755974941375,"y":59.171},{"x":1755974881239,"y":57.85},{"x":1755974821104,"y":64.657},{"x":1755974760964,"y":58.142},{"x":1755974700956,"y":55.739},{"x":1755974640717,"y":59.762},{"x":1755974580493,"y":54.107},{"x":1755974520517,"y":49.231},{"x":1755974463025,"y":51.484},{"x":1755974402882,"y":45.82},{"x":1755974342740,"y":58.151},{"x":1755974282606,"y":59.279},{"x":1755974222479,"y":54.56},{"x":1755974162360,"y":52.838},{"x":1755974102243,"y":47.885},{"x":1755974042106,"y":41.918},{"x":1755973981961,"y":42.732},{"x":1755973921826,"y":45.68},{"x":1755973861692,"y":45.572},{"x":1755973801679,"y":48.683},{"x":1755973741419,"y":51.467},{"x":1755973681283,"y":51.164},{"x":1755973621156,"y":42.318},{"x":1755973560999,"y":42.048},{"x":1755973500886,"y":58.837},{"x":1755973440757,"y":42.866},{"x":1755973380598,"y":43.363},{"x":1755973320530,"y":43.606},{"x":1755973260302,"y":45.076},{"x":1755973202976,"y":51.361},{"x":1755973142850,"y":56.741},{"x":1755973082730,"y":68.042},{"x":1755973022577,"y":42.44},{"x":1755972962447,"y":42.986},{"x":1755972902281,"y":42.124},{"x":1755972842121,"y":45.094},{"x":1755972781959,"y":42.23},{"x":1755972721809,"y":42.758},{"x":1755972661601,"y":47.148},{"x":1755972601446,"y":47.328},{"x":1755972541315,"y":45.262},{"x":1755972481183,"y":58.769},{"x":1755972421029,"y":44.371},{"x":1755972360896,"y":39.904},{"x":1755972300811,"y":37.406},{"x":1755972240653,"y":40.428},{"x":1755972180539,"y":49.254},{"x":1755972120385,"y":44.675},{"x":1755972060073,"y":43.748},{"x":1755972002905,"y":44.032},{"x":1755971942749,"y":44.837},{"x":1755971882630,"y":45.449},{"x":1755971822472,"y":49.364},{"x":1755971762338,"y":47.18},{"x":1755971702202,"y":48.042},{"x":1755971642090,"y":42.042},{"x":1755971581932,"y":37.627},{"x":1755971521807,"y":48.462},{"x":1755971461678,"y":41.272},{"x":1755971401518,"y":46.506},{"x":1755971341382,"y":44.558},{"x":1755971281252,"y":54.06},{"x":1755971221100,"y":64.742},{"x":1755971160936,"y":64.834},{"x":1755971100999,"y":66.248},{"x":1755971040729,"y":58.518},{"x":1755970980563,"y":49.638},{"x":1755970920415,"y":59.742},{"x":1755970860288,"y":39.862},{"x":1755970802986,"y":41.207},{"x":1755970742854,"y":42.205},{"x":1755970682718,"y":46.308},{"x":1755970622592,"y":54.87},{"x":1755970562447,"y":46.908},{"x":1755970502320,"y":52.736},{"x":1755970442184,"y":48.73},{"x":1755970382048,"y":53.293},{"x":1755970321907,"y":44.316},{"x":1755970261751,"y":51.541},{"x":1755970201636,"y":53.935},{"x":1755970141493,"y":54.754},{"x":1755970081338,"y":42.614},{"x":1755970021190,"y":57.908},{"x":1755969961060,"y":52.56},{"x":1755969900918,"y":51.84},{"x":1755969840765,"y":73.544},{"x":1755969780627,"y":55.858},{"x":1755969720590,"y":45.224},{"x":1755969660534,"y":45.659},{"x":1755969600197,"y":43.187},{"x":1755969542905,"y":56.285},{"x":1755969482784,"y":46.487},{"x":1755969422644,"y":43.134},{"x":1755969362504,"y":39.734},{"x":1755969302346,"y":39.066},{"x":1755969242203,"y":37.219},{"x":1755969182088,"y":36.221},{"x":1755969121925,"y":38.035},{"x":1755969061754,"y":41.808},{"x":1755969001609,"y":40.937},{"x":1755968941461,"y":50.563},{"x":1755968881329,"y":39.694},{"x":1755968821169,"y":50.174},{"x":1755968761038,"y":49.074},{"x":1755968700898,"y":49.068},{"x":1755968640774,"y":63.506},{"x":1755968580638,"y":70.526},{"x":1755968520500,"y":40.564},{"x":1755968460345,"y":36.8},{"x":1755968403040,"y":39.262},{"x":1755968342822,"y":35.702},{"x":1755968282697,"y":36.446},{"x":1755968222559,"y":41.203},{"x":1755968162429,"y":47.726},{"x":1755968102295,"y":50.208},{"x":1755968042166,"y":51.983},{"x":1755967982046,"y":58.121},{"x":1755967921890,"y":68.101},{"x":1755967861763,"y":61.411},{"x":1755967801631,"y":58.343},{"x":1755967741499,"y":52.123},{"x":1755967681368,"y":51.199},{"x":1755967621242,"y":41.52},{"x":1755967561108,"y":43.88},{"x":1755967501048,"y":34.28},{"x":1755967440801,"y":36.954},{"x":1755967380669,"y":44.525},{"x":1755967320659,"y":39.203},{"x":1755967260414,"y":36.523},{"x":1755967200249,"y":40.979},{"x":1755967142938,"y":48.336},{"x":1755967082816,"y":61.001},{"x":1755967022686,"y":56.797},{"x":1755966962560,"y":57.287},{"x":1755966902412,"y":54.515},{"x":1755966842290,"y":62.14},{"x":1755966782151,"y":37.856},{"x":1755966721989,"y":40.914},{"x":1755966661855,"y":43.872},{"x":1755966601722,"y":58.729},{"x":1755966541581,"y":58.108},{"x":1755966481458,"y":41.941},{"x":1755966421330,"y":40.93},{"x":1755966361188,"y":53.495},{"x":1755966301057,"y":49.596},{"x":1755966240911,"y":47.746},{"x":1755966180792,"y":51.542},{"x":1755966120680,"y":59.028},{"x":1755966060525,"y":33.864},{"x":1755966000494,"y":36.898},{"x":1755965940297,"y":34.703},{"x":1755965882982,"y":35.676},{"x":1755965822861,"y":48.354},{"x":1755965762728,"y":46.337},{"x":1755965702598,"y":46.064},{"x":1755965642468,"y":44.01},{"x":1755965582343,"y":52.079},{"x":1755965522178,"y":61.6},{"x":1755965462006,"y":56.249},{"x":1755965401848,"y":53.059},{"x":1755965341710,"y":67.603},{"x":1755965281569,"y":55.675},{"x":1755965221436,"y":41.533},{"x":1755965161306,"y":47.674},{"x":1755965101168,"y":47.018},{"x":1755965041018,"y":45.811},{"x":1755964980881,"y":36.384},{"x":1755964920751,"y":37.774},{"x":1755964860676,"y":45.481},{"x":1755964800481,"y":40.391},{"x":1755964740216,"y":48.106},{"x":1755964682956,"y":45.469},{"x":1755964622826,"y":38.684},{"x":1755964562687,"y":38.002},{"x":1755964502569,"y":43.87},{"x":1755964442426,"y":37.225},{"x":1755964382287,"y":43.879},{"x":1755964322142,"y":33.942},{"x":1755964261994,"y":41.807},{"x":1755964201854,"y":47.38},{"x":1755964141713,"y":55.382},{"x":1755964081588,"y":56.368},{"x":1755964021476,"y":66.698},{"x":1755963961335,"y":55.368},{"x":1755963901270,"y":65.891},{"x":1755963841010,"y":58.501},{"x":1755963780886,"y":46.831},{"x":1755963720763,"y":48.416},{"x":1755963660631,"y":46.582},{"x":1755963600635,"y":29.996},{"x":1755963540313,"y":51.526},{"x":1755963480244,"y":46.988},{"x":1755963422910,"y":45.155},{"x":1755963362775,"y":46.322},{"x":1755963302650,"y":51.72},{"x":1755963242530,"y":52.534},{"x":1755963182396,"y":48.528},{"x":1755963122273,"y":72.259},{"x":1755963062126,"y":42.895},{"x":1755963001991,"y":37.687},{"x":1755962941865,"y":38.663},{"x":1755962881734,"y":41.744},{"x":1755962821587,"y":42.524},{"x":1755962761455,"y":47.376},{"x":1755962701333,"y":39.26},{"x":1755962641203,"y":45.509},{"x":1755962581068,"y":30.564},{"x":1755962520934,"y":37.202},{"x":1755962460811,"y":36.037},{"x":1755962400755,"y":36.877},{"x":1755962340544,"y":45.896},{"x":1755962280439,"y":41.932},{"x":1755962220294,"y":41.747},{"x":1755962162989,"y":40.118},{"x":1755962102857,"y":49.991},{"x":1755962042724,"y":55.482},{"x":1755961982595,"y":53.956},{"x":1755961922433,"y":31.596},{"x":1755961862284,"y":40.584},{"x":1755961802135,"y":44.458},{"x":1755961742005,"y":37.369},{"x":1755961681866,"y":40.088},{"x":1755961621737,"y":34.655},{"x":1755961561620,"y":39.126},{"x":1755961501526,"y":44.876},{"x":1755961441349,"y":48.384},{"x":1755961381217,"y":45.182},{"x":1755961321057,"y":38.928},{"x":1755961260910,"y":38.638},{"x":1755961200839,"y":44.681},{"x":1755961140626,"y":37.334},{"x":1755961080495,"y":40.298},{"x":1755961020520,"y":36.39},{"x":1755960960284,"y":29.17},{"x":1755960902911,"y":49.436},{"x":1755960842748,"y":40.464},{"x":1755960782611,"y":46.726},{"x":1755960722489,"y":43.165},{"x":1755960662357,"y":50.156},{"x":1755960602220,"y":42.874},{"x":1755960542080,"y":35.753},{"x":1755960481930,"y":20.974},{"x":1755960421804,"y":23.003},{"x":1755960361681,"y":32.286},{"x":1755960301550,"y":35.678},{"x":1755960241412,"y":50.941},{"x":1755960181266,"y":58.274},{"x":1755960121136,"y":66.985},{"x":1755960060991,"y":61.567},{"x":1755960000897,"y":57.662},{"x":1755959940707,"y":51.265},{"x":1755959880638,"y":43.279},{"x":1755959820519,"y":32.3},{"x":1755959760302,"y":31.088},{"x":1755959700250,"y":36.45},{"x":1755959642910,"y":25.922},{"x":1755959582774,"y":36.149},{"x":1755959522642,"y":34.304},{"x":1755959462514,"y":35.077},{"x":1755959402385,"y":35.281},{"x":1755959342247,"y":33.846},{"x":1755959282123,"y":44.944},{"x":1755959221989,"y":42.402},{"x":1755959161845,"y":37.291},{"x":1755959101738,"y":35.644},{"x":1755959041584,"y":33.245},{"x":1755958981466,"y":34.189},{"x":1755958921347,"y":40.231},{"x":1755958861217,"y":34.902},{"x":1755958801105,"y":55.886},{"x":1755958740925,"y":45.634},{"x":1755958680804,"y":51.27},{"x":1755958620804,"y":49.58},{"x":1755958560552,"y":52.799},{"x":1755958500461,"y":53.981},{"x":1755958440341,"y":56.168},{"x":1755958382958,"y":66.126},{"x":1755958322799,"y":36.727},{"x":1755958262626,"y":33.89},{"x":1755958202480,"y":43.392},{"x":1755958142349,"y":39.772},{"x":1755958082221,"y":33.796},{"x":1755958022088,"y":34.754},{"x":1755957961946,"y":33.577},{"x":1755957901816,"y":39.446},{"x":1755957841689,"y":40.132},{"x":1755957781559,"y":30.102},{"x":1755957721426,"y":31.939},{"x":1755957661329,"y":27.427},{"x":1755957601224,"y":45.254},{"x":1755957540997,"y":51.008},{"x":1755957480862,"y":49.474},{"x":1755957420739,"y":46.544},{"x":1755957360716,"y":33.683},{"x":1755957300504,"y":44.482},{"x":1755957240373,"y":37.28},{"x":1755957180282,"y":39.486},{"x":1755957122923,"y":29.471},{"x":1755957062780,"y":37.89},{"x":1755957002650,"y":27.876},{"x":1755956942524,"y":30.428},{"x":1755956882404,"y":42.493},{"x":1755956822271,"y":47.345},{"x":1755956762151,"y":34.315},{"x":1755956702018,"y":42.211},{"x":1755956641876,"y":23.088},{"x":1755956581711,"y":33.818},{"x":1755956521596,"y":31.272},{"x":1755956461450,"y":34.18},{"x":1755956401325,"y":22.372},{"x":1755956341183,"y":33.078},{"x":1755956281051,"y":30.764},{"x":1755956220911,"y":25.787},{"x":1755956160801,"y":30.104},{"x":1755956100743,"y":27.163},{"x":1755956040558,"y":30.923},{"x":1755955980410,"y":69.012},{"x":1755955920392,"y":48.527},{"x":1755955862906,"y":23.294},{"x":1755955802781,"y":38.36},{"x":1755955742655,"y":36.198},{"x":1755955682523,"y":57.005},{"x":1755955622388,"y":43.777},{"x":1755955562255,"y":53.035},{"x":1755955502120,"y":49.936},{"x":1755955441971,"y":44.485},{"x":1755955381849,"y":40.042},{"x":1755955321724,"y":46.187},{"x":1755955261602,"y":42.871},{"x":1755955201479,"y":32.204},{"x":1755955141331,"y":46.855},{"x":1755955081201,"y":59.609},{"x":1755955021056,"y":49.057},{"x":1755954960915,"y":45.776},{"x":1755954900830,"y":53.556},{"x":1755954840677,"y":55.735},{"x":1755954780525,"y":43.624},{"x":1755954720337,"y":38.803},{"x":1755954662930,"y":39.786},{"x":1755954602787,"y":44.671},{"x":1755954542663,"y":51.322},{"x":1755954482530,"y":43.039},{"x":1755954422408,"y":44.524},{"x":1755954362253,"y":48.794},{"x":1755954302111,"y":49.942},{"x":1755954241971,"y":50.509},{"x":1755954181843,"y":50.254},{"x":1755954121709,"y":61.886},{"x":1755954061583,"y":38.096},{"x":1755954001566,"y":44.196},{"x":1755953941305,"y":43.506},{"x":1755953881178,"y":38.557},{"x":1755953821052,"y":31.486},{"x":1755953760917,"y":45.49},{"x":1755953700826,"y":48.751},{"x":1755953640679,"y":30.565},{"x":1755953580565,"y":27.96},{"x":1755953520470,"y":21.361},{"x":1755953460321,"y":36.684},{"x":1755953402988,"y":41.819},{"x":1755953342854,"y":22.025},{"x":1755953282742,"y":28.246},{"x":1755953222618,"y":27.934},{"x":1755953162479,"y":29.449},{"x":1755953102353,"y":29.328},{"x":1755953042227,"y":28.616},{"x":1755952982098,"y":28.71},{"x":1755952921948,"y":36.997},{"x":1755952861830,"y":31.702},{"x":1755952801708,"y":30.905},{"x":1755952741557,"y":33.134},{"x":1755952681432,"y":36.049},{"x":1755952621309,"y":40.343},{"x":1755952561182,"y":44.836},{"x":1755952501058,"y":38.617},{"x":1755952440923,"y":35.783},{"x":1755952380800,"y":45.026},{"x":1755952320718,"y":54.898},{"x":1755952260551,"y":57.27},{"x":1755952200395,"y":59.464},{"x":1755952140293,"y":55.596},{"x":1755952082935,"y":39.416},{"x":1755952022804,"y":37.925},{"x":1755951962665,"y":34.18},{"x":1755951902543,"y":38.386},{"x":1755951842414,"y":39.134},{"x":1755951782291,"y":37.12},{"x":1755951722175,"y":50.627},{"x":1755951662052,"y":29.97},{"x":1755951601923,"y":25.769},{"x":1755951541788,"y":45.454},{"x":1755951481669,"y":39.037},{"x":1755951421549,"y":44.858},{"x":1755951361420,"y":48.51},{"x":1755951301280,"y":44.375},{"x":1755951241179,"y":33.889},{"x":1755951180937,"y":70.512},{"x":1755951120799,"y":49.368},{"x":1755951060619,"y":56.057},{"x":1755951000503,"y":47.908},{"x":1755950940444,"y":44.167},{"x":1755950882932,"y":48.516},{"x":1755950822810,"y":52.954},{"x":1755950762683,"y":60.7},{"x":1755950702552,"y":49.66},{"x":1755950642415,"y":56.461},{"x":1755950582293,"y":49.692},{"x":1755950522171,"y":49.812},{"x":1755950462060,"y":45.251},{"x":1755950401856,"y":38.35},{"x":1755950341615,"y":49.127},{"x":1755950281489,"y":42.612},{"x":1755950221363,"y":37.22},{"x":1755950161249,"y":38.074},{"x":1755950101112,"y":32.501},{"x":1755950040974,"y":38.915},{"x":1755949980844,"y":33.276},{"x":1755949920730,"y":37.146},{"x":1755949860645,"y":45.007},{"x":1755949800475,"y":40.013},{"x":1755949740300,"y":41.045},{"x":1755949683033,"y":32.406},{"x":1755949622893,"y":43.636},{"x":1755949562771,"y":33.764},{"x":1755949502641,"y":31.68},{"x":1755949442516,"y":41.768},{"x":1755949382395,"y":26.546},{"x":1755949322302,"y":25.952},{"x":1755949262138,"y":27.302},{"x":1755949202015,"y":31.955},{"x":1755949141879,"y":33.292},{"x":1755949081757,"y":33.11},{"x":1755949021612,"y":34.435},{"x":1755948961488,"y":39.642},{"x":1755948901353,"y":34.55},{"x":1755948841230,"y":45.984},{"x":1755948781100,"y":45.444},{"x":1755948720956,"y":45.182},{"x":1755948660833,"y":41.604},{"x":1755948600782,"y":55.278},{"x":1755948540625,"y":33.853},{"x":1755948480506,"y":39.954},{"x":1755948420345,"y":38.884},{"x":1755948362986,"y":37.123},{"x":1755948302852,"y":40.193},{"x":1755948242725,"y":35.152},{"x":1755948182588,"y":39.028},{"x":1755948122464,"y":45.778},{"x":1755948062342,"y":32.032},{"x":1755948002200,"y":33.864},{"x":1755947942077,"y":41.809},{"x":1755947881921,"y":35.286},{"x":1755947821801,"y":40.914},{"x":1755947761671,"y":30.859},{"x":1755947701540,"y":34.912},{"x":1755947641416,"y":47.765},{"x":1755947581280,"y":28.625},{"x":1755947521124,"y":26.002},{"x":1755947460971,"y":33.691},{"x":1755947400841,"y":39.844},{"x":1755947340686,"y":44.332},{"x":1755947280588,"y":52.045},{"x":1755947220479,"y":46.332},{"x":1755947160262,"y":39.72},{"x":1755947102981,"y":28.192},{"x":1755947042816,"y":34.656},{"x":1755946982689,"y":32.749},{"x":1755946922567,"y":25.144},{"x":1755946862437,"y":24.103},{"x":1755946802325,"y":32.783},{"x":1755946742156,"y":43.249},{"x":1755946681999,"y":38.604},{"x":1755946621879,"y":40.439},{"x":1755946561754,"y":44.568},{"x":1755946501624,"y":50.864},{"x":1755946441495,"y":42.188},{"x":1755946381366,"y":41.357},{"x":1755946321246,"y":47.828},{"x":1755946261103,"y":42.588},{"x":1755946200969,"y":47.677},{"x":1755946140837,"y":46.421},{"x":1755946080753,"y":43.855},{"x":1755946020633,"y":58.212},{"x":1755945960453,"y":41.564},{"x":1755945900355,"y":36.072},{"x":1755945840244,"y":42.578},{"x":1755945782934,"y":51.961},{"x":1755945722813,"y":42.449},{"x":1755945662688,"y":35.417},{"x":1755945602563,"y":39.439},{"x":1755945542442,"y":39.054},{"x":1755945482319,"y":37.4},{"x":1755945422198,"y":41.92},{"x":1755945362067,"y":36.216},{"x":1755945301930,"y":33.991},{"x":1755945241798,"y":39.79},{"x":1755945181657,"y":33.596},{"x":1755945121537,"y":40.49},{"x":1755945061411,"y":38.785},{"x":1755945001314,"y":43.109},{"x":1755944941126,"y":49.966},{"x":1755944880986,"y":45.454},{"x":1755944820855,"y":42.577},{"x":1755944760740,"y":42.631},{"x":1755944700706,"y":53.914},{"x":1755944640597,"y":48.619},{"x":1755944580345,"y":57.148},{"x":1755944520352,"y":69.926},{"x":1755944462918,"y":60.542},{"x":1755944402790,"y":47.474},{"x":1755944342675,"y":53.854},{"x":1755944282552,"y":43.009},{"x":1755944222433,"y":43.72},{"x":1755944162304,"y":31.026},{"x":1755944102182,"y":35.708},{"x":1755944042064,"y":54.205},{"x":1755943981931,"y":34.768},{"x":1755943921791,"y":36.746},{"x":1755943861697,"y":28.674},{"x":1755943801494,"y":43.387},{"x":1755943741361,"y":37.094},{"x":1755943681232,"y":41.39},{"x":1755943621086,"y":67.759},{"x":1755943560970,"y":35.224},{"x":1755943500857,"y":42.8},{"x":1755943440732,"y":34.085},{"x":1755943380582,"y":24.326},{"x":1755943320460,"y":25.417},{"x":1755943260217,"y":26.962},{"x":1755943202933,"y":23.357},{"x":1755943142773,"y":31.934},{"x":1755943082655,"y":33.979},{"x":1755943022519,"y":32.194},{"x":1755942962394,"y":34.919},{"x":1755942902268,"y":28.423},{"x":1755942842134,"y":32.707},{"x":1755942781993,"y":34.37},{"x":1755942721862,"y":32.725},{"x":1755942661701,"y":34.364},{"x":1755942601582,"y":38.756},{"x":1755942541458,"y":32.754},{"x":1755942481342,"y":41.267},{"x":1755942421232,"y":51.486},{"x":1755942361083,"y":38.561},{"x":1755942300980,"y":47.083},{"x":1755942240788,"y":45.581},{"x":1755942180656,"y":48.209},{"x":1755942120584,"y":41.833},{"x":1755942060481,"y":40.645},{"x":1755942000272,"y":33.845},{"x":1755941940074,"y":57.606},{"x":1755941882903,"y":36.394},{"x":1755941822751,"y":36.521},{"x":1755941762627,"y":39.601},{"x":1755941702509,"y":38.11},{"x":1755941642380,"y":39.275},{"x":1755941582255,"y":32.15},{"x":1755941522102,"y":36.42},{"x":1755941461967,"y":38.74},{"x":1755941401845,"y":36.223},{"x":1755941341712,"y":38.06},{"x":1755941281555,"y":41.626},{"x":1755941221456,"y":35.939},{"x":1755941161297,"y":39.914},{"x":1755941101177,"y":42.422},{"x":1755941040969,"y":44.425},{"x":1755940980839,"y":55.885},{"x":1755940920712,"y":50.896},{"x":1755940860618,"y":54.76},{"x":1755940800496,"y":62.393},{"x":1755940740244,"y":50.33},{"x":1755940682970,"y":45.506},{"x":1755940622839,"y":41.932},{"x":1755940562710,"y":46.18},{"x":1755940502589,"y":44.923},{"x":1755940442458,"y":48.866},{"x":1755940382333,"y":48.283},{"x":1755940322193,"y":42.925},{"x":1755940262018,"y":47.068},{"x":1755940201880,"y":53.486},{"x":1755940141744,"y":53.821},{"x":1755940081608,"y":75.947},{"x":1755940021496,"y":66.938},{"x":1755939961361,"y":68.63},{"x":1755939901234,"y":63.593},{"x":1755939841104,"y":62.399},{"x":1755939780964,"y":62.893},{"x":1755939720833,"y":68.298},{"x":1755939660721,"y":79.999},{"x":1755939600538,"y":52.856},{"x":1755939540231,"y":41.896},{"x":1755939483004,"y":40.271},{"x":1755939422874,"y":40.621},{"x":1755939362773,"y":40.038},{"x":1755939302628,"y":41.056},{"x":1755939242507,"y":46.655},{"x":1755939182364,"y":46.866},{"x":1755939122235,"y":49.41},{"x":1755939062090,"y":60.876},{"x":1755939001951,"y":48.934},{"x":1755938941807,"y":29.186},{"x":1755938881685,"y":38.026},{"x":1755938821561,"y":34.73},{"x":1755938761442,"y":37.685},{"x":1755938701385,"y":40.093},{"x":1755938641187,"y":38.8},{"x":1755938581059,"y":40.144},{"x":1755938520925,"y":38.291},{"x":1755938460805,"y":39.084},{"x":1755938400874,"y":46.867},{"x":1755938340555,"y":37.026},{"x":1755938280488,"y":36.992},{"x":1755938223000,"y":33.008},{"x":1755938162876,"y":37.84},{"x":1755938102757,"y":36.422},{"x":1755938042630,"y":36.485},{"x":1755937982502,"y":43.904},{"x":1755937922397,"y":44.42},{"x":1755937862259,"y":51.26},{"x":1755937802138,"y":40.582},{"x":1755937741987,"y":57.083},{"x":1755937681860,"y":51.551},{"x":1755937621724,"y":53.68},{"x":1755937561602,"y":52.486},{"x":1755937501470,"y":47.238},{"x":1755937441347,"y":60.566},{"x":1755937381234,"y":46.514},{"x":1755937321096,"y":47.114},{"x":1755937260951,"y":47.576},{"x":1755937200918,"y":58.946},{"x":1755937140711,"y":60.725},{"x":1755937080624,"y":46.709},{"x":1755937020424,"y":50.706},{"x":1755936963019,"y":47.724},{"x":1755936902849,"y":49.32},{"x":1755936842719,"y":51.416},{"x":1755936782625,"y":49.918},{"x":1755936722438,"y":37.016},{"x":1755936662265,"y":48.558},{"x":1755936602095,"y":44.521},{"x":1755936541949,"y":48.316},{"x":1755936481817,"y":34.145},{"x":1755936421684,"y":40.747},{"x":1755936361556,"y":43.29},{"x":1755936301429,"y":45.685},{"x":1755936241309,"y":47.77},{"x":1755936181188,"y":42.737},{"x":1755936121058,"y":42.346},{"x":1755936060927,"y":37.128},{"x":1755936000976,"y":40.682},{"x":1755935940653,"y":39.366},{"x":1755935880527,"y":34.064},{"x":1755935820393,"y":41.372},{"x":1755935760223,"y":44.782},{"x":1755935702941,"y":39.698},{"x":1755935642821,"y":42.766},{"x":1755935582695,"y":61.115},{"x":1755935522575,"y":65.306},{"x":1755935462467,"y":69.606},{"x":1755935402318,"y":63.266},{"x":1755935342196,"y":66.34},{"x":1755935282076,"y":50.512},{"x":1755935221945,"y":42.385},{"x":1755935161815,"y":40.349},{"x":1755935101687,"y":44.375},{"x":1755935041561,"y":47.819},{"x":1755934981435,"y":41.466},{"x":1755934921298,"y":42.187},{"x":1755934861165,"y":47.486},{"x":1755934801064,"y":41.081},{"x":1755934740879,"y":36.533},{"x":1755934680761,"y":41.304},{"x":1755934620652,"y":45.308},{"x":1755934560585,"y":47.563},{"x":1755934500425,"y":46.766},{"x":1755934440273,"y":43.688},{"x":1755934380250,"y":41.825},{"x":1755934322930,"y":51.707},{"x":1755934262788,"y":54.781},{"x":1755934202666,"y":47.479},{"x":1755934142527,"y":52.793},{"x":1755934082408,"y":46.372},{"x":1755934022288,"y":44.708},{"x":1755933962158,"y":33.928},{"x":1755933902012,"y":38.248},{"x":1755933841879,"y":37.303},{"x":1755933781752,"y":38.111},{"x":1755933721616,"y":38.897},{"x":1755933661473,"y":46.416},{"x":1755933601357,"y":44.359},{"x":1755933541226,"y":40.51},{"x":1755933481121,"y":42.977},{"x":1755933420953,"y":37.87},{"x":1755933360839,"y":44.176},{"x":1755933300729,"y":43.808},{"x":1755933240587,"y":46.454},{"x":1755933180439,"y":39.659},{"x":1755933120238,"y":40.55},{"x":1755933060186,"y":41.374},{"x":1755933002888,"y":37.786},{"x":1755932942752,"y":39.034},{"x":1755932882624,"y":36.667},{"x":1755932822504,"y":46.709},{"x":1755932762380,"y":40.738},{"x":1755932702247,"y":37.17},{"x":1755932642111,"y":37.972},{"x":1755932581974,"y":41.338},{"x":1755932521850,"y":33.776},{"x":1755932461733,"y":36.03},{"x":1755932401667,"y":36.358},{"x":1755932341418,"y":49.529},{"x":1755932281292,"y":38.164},{"x":1755932221160,"y":40.315},{"x":1755932161013,"y":56.044},{"x":1755932100911,"y":48.624},{"x":1755932040794,"y":50.658},{"x":1755931980666,"y":55.41},{"x":1755931920495,"y":58.184},{"x":1755931860392,"y":46.115},{"x":1755931800294,"y":44.656},{"x":1755931742941,"y":37.574},{"x":1755931682815,"y":35.89},{"x":1755931622693,"y":40.271},{"x":1755931562576,"y":37.498},{"x":1755931502449,"y":35.718},{"x":1755931442325,"y":41.189},{"x":1755931382199,"y":46.312},{"x":1755931322078,"y":40.729},{"x":1755931261939,"y":45.672},{"x":1755931201811,"y":45.968},{"x":1755931141683,"y":38.833},{"x":1755931081560,"y":61.645},{"x":1755931021438,"y":39.805},{"x":1755930961303,"y":52.198},{"x":1755930901173,"y":35.507},{"x":1755930841053,"y":53.497},{"x":1755930780924,"y":34.565},{"x":1755930720798,"y":65.502},{"x":1755930660670,"y":50.813},{"x":1755930600620,"y":73.692},{"x":1755930540465,"y":56.236},{"x":1755930480300,"y":65.041},{"x":1755930420186,"y":42.881},{"x":1755930362914,"y":66.637},{"x":1755930302789,"y":55.475},{"x":1755930242647,"y":61.356},{"x":1755930182525,"y":43.146},{"x":1755930122400,"y":37.735},{"x":1755930062266,"y":34.973},{"x":1755930002140,"y":37.733},{"x":1755929941982,"y":33.497},{"x":1755929881862,"y":41.035},{"x":1755929821748,"y":39.692},{"x":1755929761616,"y":39.874},{"x":1755929701486,"y":33.317},{"x":1755929641343,"y":46.42},{"x":1755929581201,"y":46.848},{"x":1755929521046,"y":47.364},{"x":1755929460936,"y":44.039},{"x":1755929400868,"y":45.354},{"x":1755929340650,"y":30.322},{"x":1755929280510,"y":29.348},{"x":1755929220363,"y":34.435},{"x":1755929160290,"y":32.918},{"x":1755929102956,"y":35.615},{"x":1755929042818,"y":34.487},{"x":1755928982734,"y":36.76},{"x":1755928922570,"y":35.771},{"x":1755928862440,"y":47.155},{"x":1755928802350,"y":45.293},{"x":1755928742151,"y":56.983},{"x":1755928682018,"y":57.766},{"x":1755928621892,"y":60.474},{"x":1755928561775,"y":51.264},{"x":1755928501621,"y":47.026},{"x":1755928441500,"y":32.088},{"x":1755928381373,"y":36.565},{"x":1755928321249,"y":36.512},{"x":1755928261112,"y":43.567},{"x":1755928200998,"y":39.503},{"x":1755928140808,"y":36.265},{"x":1755928080750,"y":31.693},{"x":1755928020610,"y":33.92},{"x":1755927960473,"y":29.608},{"x":1755927900299,"y":31.793},{"x":1755927840183,"y":31.585},{"x":1755927782936,"y":33.709},{"x":1755927722797,"y":33.485},{"x":1755927662659,"y":33.569},{"x":1755927602557,"y":33.823},{"x":1755927542411,"y":32.053},{"x":1755927482288,"y":34.831},{"x":1755927422165,"y":35.033},{"x":1755927362043,"y":37.603},{"x":1755927301892,"y":33.856},{"x":1755927241768,"y":30.11},{"x":1755927181654,"y":34.657},{"x":1755927121528,"y":36.145},{"x":1755927061406,"y":32.394},{"x":1755927001279,"y":36.577},{"x":1755926941103,"y":32.072},{"x":1755926880975,"y":32.081},{"x":1755926820843,"y":33.964},{"x":1755926760729,"y":31.804},{"x":1755926700645,"y":32.41},{"x":1755926640609,"y":34.363},{"x":1755926580393,"y":35.304},{"x":1755926520270,"y":35.287},{"x":1755926462953,"y":30.696},{"x":1755926402835,"y":30.818},{"x":1755926342694,"y":34.606},{"x":1755926282572,"y":29.536},{"x":1755926222457,"y":29.233},{"x":1755926162316,"y":32.284},{"x":1755926102197,"y":30.304},{"x":1755926042070,"y":35.196},{"x":1755925981896,"y":34.17},{"x":1755925921726,"y":32.666},{"x":1755925861614,"y":33.937},{"x":1755925801465,"y":46.931},{"x":1755925741322,"y":45.984},{"x":1755925681199,"y":43.96},{"x":1755925621062,"y":45.904},{"x":1755925560938,"y":43.836},{"x":1755925500825,"y":32.884},{"x":1755925440712,"y":35.725},{"x":1755925380655,"y":39.515},{"x":1755925320456,"y":33.569},{"x":1755925260284,"y":30.223},{"x":1755925202984,"y":32.582},{"x":1755925142833,"y":32.166},{"x":1755925082715,"y":37.507},{"x":1755925022588,"y":33.41},{"x":1755924962467,"y":33.637},{"x":1755924902347,"y":28.558},{"x":1755924842212,"y":42.101},{"x":1755924782081,"y":41.97},{"x":1755924721944,"y":55.979},{"x":1755924661839,"y":57.775},{"x":1755924601704,"y":53.906},{"x":1755924541576,"y":54.254},{"x":1755924481447,"y":43.136},{"x":1755924421321,"y":32.99},{"x":1755924361200,"y":32.141},{"x":1755924301117,"y":35.17},{"x":1755924240909,"y":33.157},{"x":1755924180785,"y":30.865},{"x":1755924120667,"y":33.461},{"x":1755924060563,"y":29.309},{"x":1755924000410,"y":29.816},{"x":1755923940338,"y":33.769},{"x":1755923882990,"y":46.198},{"x":1755923822862,"y":49.417},{"x":1755923762738,"y":47.116},{"x":1755923702614,"y":44.64},{"x":1755923642486,"y":46.648},{"x":1755923582357,"y":33.348},{"x":1755923521546,"y":33.845},{"x":1755923461421,"y":30.848},{"x":1755923401307,"y":29.518},{"x":1755923341169,"y":29.272},{"x":1755923281027,"y":31.427},{"x":1755923220903,"y":31.61},{"x":1755923160756,"y":35.411},{"x":1755923100713,"y":31.477},{"x":1755923040535,"y":41.617},{"x":1755922980433,"y":42.06},{"x":1755922920227,"y":42.007},{"x":1755922862906,"y":46.261},{"x":1755922802784,"y":44.267},{"x":1755922742663,"y":36.191},{"x":1755922682544,"y":34.512},{"x":1755922622415,"y":33.288},{"x":1755922562286,"y":29.317},{"x":1755922502153,"y":33.265},{"x":1755922442008,"y":32.863},{"x":1755922381831,"y":33.238},{"x":1755922321716,"y":31.687},{"x":1755922261520,"y":30.449},{"x":1755922201396,"y":33.264},{"x":1755922141275,"y":29.394},{"x":1755922081147,"y":29.213},{"x":1755922021019,"y":31.664},{"x":1755921960870,"y":29.485},{"x":1755921900755,"y":34.522},{"x":1755921840664,"y":30.324},{"x":1755921780547,"y":30.569},{"x":1755921720212,"y":30.089},{"x":1755921662877,"y":30.286},{"x":1755921602387,"y":35.386},{"x":1755921542244,"y":30.643},{"x":1755921482132,"y":43.865},{"x":1755921421978,"y":43.764},{"x":1755921361847,"y":45.064},{"x":1755921301723,"y":44.52},{"x":1755921241593,"y":43.625},{"x":1755921181473,"y":42.601},{"x":1755921121338,"y":43.853},{"x":1755921061216,"y":39.964},{"x":1755921001083,"y":48.917},{"x":1755920940933,"y":51.289},{"x":1755920880828,"y":43.351},{"x":1755920820698,"y":42.55},{"x":1755920760555,"y":41.594},{"x":1755920700409,"y":29.722},{"x":1755920640298,"y":33.035},{"x":1755920583028,"y":28.918},{"x":1755920522892,"y":28.372},{"x":1755920462779,"y":32.125},{"x":1755920402655,"y":34.787},{"x":1755920342534,"y":43.478},{"x":1755920282413,"y":42.386},{"x":1755920222282,"y":39.748},{"x":1755920162174,"y":38.336},{"x":1755920102049,"y":40.613},{"x":1755920041869,"y":32.232},{"x":1755919981755,"y":35.032},{"x":1755919921629,"y":28.456},{"x":1755919861505,"y":31.957},{"x":1755919801474,"y":32.242},{"x":1755919741237,"y":34.693},{"x":1755919681119,"y":38.734},{"x":1755919620983,"y":34.777},{"x":1755919560840,"y":31.723},{"x":1755919500747,"y":28.145},{"x":1755919440634,"y":28.45},{"x":1755919380480,"y":31.412},{"x":1755919320309,"y":45.337},{"x":1755919260214,"y":45.042},{"x":1755919202928,"y":44.779},{"x":1755919142796,"y":44.009},{"x":1755919082673,"y":44.339},{"x":1755919022580,"y":29.854},{"x":1755918962417,"y":32.533},{"x":1755918902295,"y":33.888},{"x":1755918842102,"y":33.683},{"x":1755918781940,"y":42.139},{"x":1755918721804,"y":41.897},{"x":1755918661626,"y":43.495},{"x":1755918601499,"y":41.087},{"x":1755918541380,"y":40.891},{"x":1755918481258,"y":32.039},{"x":1755918421137,"y":31.877},{"x":1755918360993,"y":33.953},{"x":1755918300867,"y":29.412},{"x":1755918240809,"y":32.345},{"x":1755918182912,"y":32.514},{"x":1755918122758,"y":33.18},{"x":1755918062552,"y":33.004},{"x":1755918002799,"y":35.332},{"x":1755917942607,"y":32.8},{"x":1755917882484,"y":32.392},{"x":1755917822354,"y":31.531},{"x":1755917762224,"y":31.224},{"x":1755917702092,"y":32.51},{"x":1755917641964,"y":30.451},{"x":1755917581811,"y":28.87},{"x":1755917521687,"y":31.136},{"x":1755917461577,"y":31.52},{"x":1755917401441,"y":36.755},{"x":1755917341308,"y":32.119},{"x":1755917281187,"y":30.218},{"x":1755917221060,"y":29.105},{"x":1755917160919,"y":39.676},{"x":1755917100925,"y":42.476},{"x":1755917040692,"y":41.112},{"x":1755916980555,"y":39.542},{"x":1755916920431,"y":37.649},{"x":1755916860298,"y":38.051},{"x":1755916802988,"y":34.504},{"x":1755916742855,"y":31.277},{"x":1755916682736,"y":32.893},{"x":1755916622593,"y":32.075},{"x":1755916562467,"y":29.72},{"x":1755916502342,"y":30.76},{"x":1755916442211,"y":46.758},{"x":1755916382080,"y":45.03},{"x":1755916321893,"y":46.279},{"x":1755916261768,"y":47.094},{"x":1755916201645,"y":45.046},{"x":1755916141516,"y":38.144},{"x":1755916081393,"y":32.233},{"x":1755916021268,"y":31.478},{"x":1755915961133,"y":30.671},{"x":1755915901016,"y":29.7},{"x":1755915840865,"y":33.928},{"x":1755915780741,"y":31.903},{"x":1755915720629,"y":31.805},{"x":1755915660584,"y":32.825},{"x":1755915600338,"y":31.182},{"x":1755915540228,"y":29.494},{"x":1755915482918,"y":31.025},{"x":1755915422814,"y":31.217},{"x":1755915362675,"y":43.538},{"x":1755915302549,"y":42.696},{"x":1755915242419,"y":41.285},{"x":1755915182307,"y":48.307},{"x":1755915122148,"y":41.807},{"x":1755915061915,"y":34.501},{"x":1755915001772,"y":31.993},{"x":1755914941646,"y":29.796},{"x":1755914881529,"y":33.214},{"x":1755914821391,"y":28.06},{"x":1755914761268,"y":28.662},{"x":1755914701150,"y":28.777},{"x":1755914641011,"y":33.074},{"x":1755914580880,"y":51.157},{"x":1755914520753,"y":50.412},{"x":1755914460651,"y":46.56},{"x":1755914400545,"y":45.883},{"x":1755914340427,"y":42.853},{"x":1755914280103,"y":30.41},{"x":1755914222903,"y":31.315},{"x":1755914162786,"y":30.857},{"x":1755914102658,"y":31.795},{"x":1755914042532,"y":31.951},{"x":1755913982412,"y":35.447},{"x":1755913922297,"y":43.061},{"x":1755913862169,"y":39.649},{"x":1755913802030,"y":37.451},{"x":1755913741886,"y":35.25},{"x":1755913681762,"y":34.518},{"x":1755913621639,"y":35.609},{"x":1755913561515,"y":32.711},{"x":1755913501414,"y":33.451},{"x":1755913441272,"y":33.306},{"x":1755913381146,"y":35.987},{"x":1755913321015,"y":45.924},{"x":1755913260887,"y":45.253},{"x":1755913200816,"y":47.357},{"x":1755913140634,"y":47.941},{"x":1755913080503,"y":47.266},{"x":1755913020373,"y":35.832},{"x":1755912960178,"y":38.777},{"x":1755912902944,"y":36.203},{"x":1755912842808,"y":46.768},{"x":1755912782683,"y":47.06},{"x":1755912722547,"y":49.103},{"x":1755912662427,"y":52.718},{"x":1755912602284,"y":48.973},{"x":1755912542161,"y":36.48},{"x":1755912482044,"y":34.153},{"x":1755912421908,"y":35.958},{"x":1755912361770,"y":35.399},{"x":1755912301644,"y":34.579},{"x":1755912241514,"y":35.268},{"x":1755912181391,"y":33.938},{"x":1755912121269,"y":33.445},{"x":1755912061139,"y":33.556},{"x":1755912001046,"y":38.768},{"x":1755911940866,"y":37.534},{"x":1755911880745,"y":37.618},{"x":1755911820645,"y":38.647},{"x":1755911760510,"y":36.654},{"x":1755911700280,"y":42.39},{"x":1755911642942,"y":36.308},{"x":1755911582844,"y":36.175},{"x":1755911522654,"y":33.691},{"x":1755911462500,"y":35.029},{"x":1755911402354,"y":33.911},{"x":1755911342225,"y":32.352},{"x":1755911282100,"y":32.988},{"x":1755911221961,"y":42.799},{"x":1755911161828,"y":46.951},{"x":1755911101698,"y":47.848},{"x":1755911041578,"y":47.976},{"x":1755910981458,"y":50.924},{"x":1755910921335,"y":39.386},{"x":1755910861213,"y":37.148},{"x":1755910801235,"y":37.367},{"x":1755910740899,"y":39.799},{"x":1755910680780,"y":35.303},{"x":1755910620672,"y":34.302},{"x":1755910560543,"y":38.12},{"x":1755910500421,"y":36.133},{"x":1755910440276,"y":39.565},{"x":1755910382977,"y":34.657},{"x":1755910322856,"y":43.309},{"x":1755910262736,"y":45.284},{"x":1755910202607,"y":51.58},{"x":1755910142474,"y":46.926},{"x":1755910082342,"y":48.42},{"x":1755910022225,"y":34.081},{"x":1755909962108,"y":33.496},{"x":1755909901958,"y":35.059},{"x":1755909841822,"y":35.548},{"x":1755909781698,"y":39.284},{"x":1755909721568,"y":48.606},{"x":1755909661443,"y":46.651},{"x":1755909601320,"y":45.467},{"x":1755909541193,"y":49.858},{"x":1755909481061,"y":47.057},{"x":1755909420923,"y":34.193},{"x":1755909360821,"y":33.51},{"x":1755909300669,"y":37.562},{"x":1755909240557,"y":36.69},{"x":1755909180493,"y":36.87},{"x":1755909120382,"y":36.143},{"x":1755909062948,"y":33.613},{"x":1755909002815,"y":33.169},{"x":1755908942694,"y":32.94},{"x":1755908882569,"y":36.958},{"x":1755908822443,"y":42.228},{"x":1755908762316,"y":35.62},{"x":1755908702164,"y":34.864},{"x":1755908642033,"y":31.392},{"x":1755908581895,"y":31.55},{"x":1755908521757,"y":35.357},{"x":1755908461631,"y":39.635},{"x":1755908401501,"y":38.905},{"x":1755908341346,"y":50.597},{"x":1755908281213,"y":49.031},{"x":1755908221087,"y":47.306},{"x":1755908160948,"y":49.27},{"x":1755908100856,"y":48.967},{"x":1755908040695,"y":35.75},{"x":1755907980604,"y":35.459},{"x":1755907920474,"y":33.209},{"x":1755907860304,"y":37.086},{"x":1755907802891,"y":31.826},{"x":1755907742769,"y":31.928},{"x":1755907682639,"y":35.341},{"x":1755907622507,"y":35.284},{"x":1755907562382,"y":38.965},{"x":1755907502254,"y":36.332},{"x":1755907442124,"y":37.276},{"x":1755907381983,"y":33.62},{"x":1755907321857,"y":33.49},{"x":1755907261741,"y":33.889},{"x":1755907201675,"y":34.592},{"x":1755907141452,"y":32.694},{"x":1755907081334,"y":34.985},{"x":1755907021198,"y":35.278},{"x":1755906961065,"y":31.626},{"x":1755906900935,"y":38.014},{"x":1755906840785,"y":33.034},{"x":1755906780673,"y":31.388},{"x":1755906720601,"y":34.264},{"x":1755906660425,"y":33.851},{"x":1755906600389,"y":37.552},{"x":1755906542967,"y":32.906},{"x":1755906482843,"y":32.791},{"x":1755906422718,"y":32.988},{"x":1755906362587,"y":33.511},{"x":1755906302455,"y":33.052},{"x":1755906242329,"y":31.014},{"x":1755906182211,"y":29.698},{"x":1755906122079,"y":29.272},{"x":1755906061920,"y":30.6},{"x":1755906001790,"y":33.581},{"x":1755905941672,"y":33.508},{"x":1755905881541,"y":35.562},{"x":1755905821420,"y":36.41},{"x":1755905761279,"y":34.588},{"x":1755905701162,"y":33.089},{"x":1755905641026,"y":37.118},{"x":1755905580892,"y":31.132},{"x":1755905520836,"y":31.676},{"x":1755905460654,"y":31.364},{"x":1755905400529,"y":32.897},{"x":1755905340332,"y":47.788},{"x":1755905280208,"y":55.516},{"x":1755905222958,"y":54.498},{"x":1755905162829,"y":59.232},{"x":1755905102709,"y":55.865},{"x":1755905042588,"y":46.309},{"x":1755904982463,"y":34.927},{"x":1755904922309,"y":33.773},{"x":1755904862174,"y":32.135},{"x":1755904802034,"y":34.018},{"x":1755904741894,"y":36.946},{"x":1755904681772,"y":50.406},{"x":1755904621646,"y":62.761},{"x":1755904561521,"y":60.078},{"x":1755904501389,"y":57.182},{"x":1755904441268,"y":57.218},{"x":1755904381133,"y":47.537},{"x":1755904320971,"y":34.775},{"x":1755904260815,"y":32.819},{"x":1755904200733,"y":32.598},{"x":1755904140542,"y":31.453},{"x":1755904080393,"y":29.382},{"x":1755904020302,"y":29.272},{"x":1755903962945,"y":29.455},{"x":1755903902841,"y":31.481},{"x":1755903842689,"y":33.126},{"x":1755903782564,"y":35.627},{"x":1755903722441,"y":39.149},{"x":1755903662336,"y":33.886},{"x":1755903602262,"y":33.886},{"x":1755903542028,"y":42.592},{"x":1755903481860,"y":41.777},{"x":1755903421731,"y":46.378},{"x":1755903361603,"y":41.088},{"x":1755903301477,"y":40.717},{"x":1755903241354,"y":32.812},{"x":1755903181225,"y":33.521},{"x":1755903121098,"y":37.789},{"x":1755903060965,"y":35.339},{"x":1755903000865,"y":40.276},{"x":1755902940720,"y":37.484},{"x":1755902880629,"y":34.418},{"x":1755902820486,"y":35.231},{"x":1755902760311,"y":32.032},{"x":1755902702995,"y":33.275},{"x":1755902642843,"y":32.75},{"x":1755902582723,"y":32.671},{"x":1755902522593,"y":34.432},{"x":1755902462460,"y":33.829},{"x":1755902402346,"y":39.829},{"x":1755902342215,"y":41.015},{"x":1755902282090,"y":35.957},{"x":1755902221952,"y":35.035},{"x":1755902161824,"y":37.11},{"x":1755902101699,"y":31.934},{"x":1755902041573,"y":32.146},{"x":1755901981444,"y":31.82},{"x":1755901921327,"y":33.695},{"x":1755901861201,"y":37.572},{"x":1755901801081,"y":36.918},{"x":1755901740935,"y":37.21},{"x":1755901680814,"y":37.673},{"x":1755901620686,"y":38.021},{"x":1755901560604,"y":40.951},{"x":1755901500501,"y":38.074},{"x":1755901440334,"y":47.598},{"x":1755901380233,"y":45.289},{"x":1755901322899,"y":43.972},{"x":1755901262784,"y":46.879},{"x":1755901202664,"y":38.01},{"x":1755901142540,"y":32.598},{"x":1755901082420,"y":33.461},{"x":1755901022304,"y":35.91},{"x":1755900962165,"y":40.607},{"x":1755900902039,"y":39.245},{"x":1755900841897,"y":36.944},{"x":1755900781758,"y":35.293},{"x":1755900721593,"y":36.841},{"x":1755900661417,"y":34.651},{"x":1755900601260,"y":32.315},{"x":1755900541114,"y":30.308},{"x":1755900480981,"y":30.421},{"x":1755900420853,"y":34.908},{"x":1755900360740,"y":33.894},{"x":1755900300655,"y":36.534},{"x":1755900240496,"y":39.346},{"x":1755900180402,"y":37.751},{"x":1755900123006,"y":34.564},{"x":1755900062875,"y":34.702},{"x":1755900002739,"y":33.76},{"x":1755899942603,"y":32.525},{"x":1755899882477,"y":43.694},{"x":1755899822356,"y":45.982},{"x":1755899762223,"y":46.264},{"x":1755899702088,"y":46.532},{"x":1755899641936,"y":46.652},{"x":1755899581807,"y":35.351},{"x":1755899521688,"y":37.42},{"x":1755899461553,"y":37.141},{"x":1755899401428,"y":51.148},{"x":1755899341322,"y":46.757},{"x":1755899281179,"y":46.294},{"x":1755899221056,"y":48.498},{"x":1755899160900,"y":45.522},{"x":1755899100875,"y":45.316},{"x":1755899040654,"y":38.345},{"x":1755898980510,"y":38.029},{"x":1755898920373,"y":34.711},{"x":1755898862975,"y":34.069},{"x":1755898802844,"y":38.437},{"x":1755898742722,"y":37.138},{"x":1755898682608,"y":36.15},{"x":1755898622472,"y":37.214},{"x":1755898562345,"y":36.348},{"x":1755898502222,"y":41.042},{"x":1755898442104,"y":33.929},{"x":1755898381958,"y":33.666},{"x":1755898321835,"y":32.928},{"x":1755898261674,"y":31.376},{"x":1755898201552,"y":36.509},{"x":1755898141403,"y":34.226},{"x":1755898081280,"y":34.516},{"x":1755898021155,"y":34.084},{"x":1755897961026,"y":35.808},{"x":1755897900925,"y":62.22},{"x":1755897840778,"y":60.113},{"x":1755897780633,"y":59.825},{"x":1755897720564,"y":59.333},{"x":1755897660475,"y":57.61},{"x":1755897600227,"y":34.19},{"x":1755897542980,"y":37.276},{"x":1755897482855,"y":44.582},{"x":1755897422721,"y":46.211},{"x":1755897362604,"y":48.998},{"x":1755897302480,"y":54.192},{"x":1755897242352,"y":51.844},{"x":1755897182207,"y":42.082},{"x":1755897122037,"y":42.001},{"x":1755897061852,"y":42.734},{"x":1755897001715,"y":38.44},{"x":1755896941587,"y":40.223},{"x":1755896881464,"y":36.722},{"x":1755896821341,"y":36.011},{"x":1755896761219,"y":35.122},{"x":1755896701098,"y":37.697},{"x":1755896640947,"y":41.356},{"x":1755896580813,"y":40.319},{"x":1755896520715,"y":43.574},{"x":1755896460622,"y":38.9},{"x":1755896400388,"y":34.921},{"x":1755896342962,"y":36.965},{"x":1755896282840,"y":44.686},{"x":1755896222712,"y":45.498},{"x":1755896162585,"y":46.162},{"x":1755896102455,"y":49.445},{"x":1755896042336,"y":53.251},{"x":1755895982208,"y":37.834},{"x":1755895922076,"y":38.009},{"x":1755895861932,"y":40.313},{"x":1755895801809,"y":37.692},{"x":1755895741683,"y":42.426},{"x":1755895681562,"y":49.904},{"x":1755895621439,"y":50.449},{"x":1755895561320,"y":47.513},{"x":1755895501219,"y":46.016},{"x":1755895441060,"y":53.038},{"x":1755895380929,"y":36.167},{"x":1755895320813,"y":36.061},{"x":1755895260680,"y":37.792},{"x":1755895200620,"y":35.947},{"x":1755895140401,"y":38.431},{"x":1755895080345,"y":35.015},{"x":1755895020196,"y":40.098},{"x":1755894962923,"y":37.399},{"x":1755894902784,"y":37.205},{"x":1755894842646,"y":36.714},{"x":1755894782523,"y":39.766},{"x":1755894722395,"y":42.106},{"x":1755894662263,"y":42.87},{"x":1755894602127,"y":49.987},{"x":1755894541983,"y":50.56},{"x":1755894481876,"y":50.353},{"x":1755894421724,"y":50.479},{"x":1755894361597,"y":49.2},{"x":1755894301519,"y":51.533},{"x":1755894241369,"y":47.376},{"x":1755894181222,"y":43.051},{"x":1755894121120,"y":44.671},{"x":1755894060952,"y":46.253},{"x":1755894000932,"y":44.888},{"x":1755893940683,"y":43.703},{"x":1755893880715,"y":43.013},{"x":1755893820640,"y":41.501},{"x":1755893760730,"y":51.888},{"x":1755893702986,"y":55.754},{"x":1755893642838,"y":68.838},{"x":1755893582744,"y":53.441},{"x":1755893522548,"y":52.032},{"x":1755893462389,"y":40.786},{"x":1755893402226,"y":41.988},{"x":1755893342102,"y":44.953},{"x":1755893281965,"y":43.536},{"x":1755893221817,"y":45.912},{"x":1755893161694,"y":44.85},{"x":1755893101561,"y":44.122},{"x":1755893041409,"y":51.251},{"x":1755892981256,"y":49.168},{"x":1755892921109,"y":43.007},{"x":1755892860977,"y":45.577},{"x":1755892800936,"y":44.335},{"x":1755892740740,"y":42.814},{"x":1755892680611,"y":41.238},{"x":1755892620495,"y":53.363},{"x":1755892560572,"y":53.392},{"x":1755892500271,"y":51.73},{"x":1755892442918,"y":62.094},{"x":1755892382789,"y":52.96},{"x":1755892322669,"y":46.476},{"x":1755892262538,"y":46.878},{"x":1755892202413,"y":48.826},{"x":1755892142307,"y":43.754},{"x":1755892082194,"y":42.672},{"x":1755892022024,"y":40.561},{"x":1755891961893,"y":56.446},{"x":1755891901759,"y":57.164},{"x":1755891841635,"y":59.197},{"x":1755891781500,"y":65.99},{"x":1755891721384,"y":59.725},{"x":1755891661243,"y":62.179},{"x":1755891601123,"y":69.773},{"x":1755891540946,"y":68.891},{"x":1755891480824,"y":58.597},{"x":1755891420700,"y":57.984},{"x":1755891360597,"y":48.95},{"x":1755891300452,"y":45.299},{"x":1755891240445,"y":50.668},{"x":1755891180194,"y":45.28},{"x":1755891122928,"y":55.674},{"x":1755891062806,"y":72.497},{"x":1755891002687,"y":71.809},{"x":1755890942545,"y":54.865},{"x":1755890882442,"y":64.604},{"x":1755890822276,"y":43.555},{"x":1755890762132,"y":43.352},{"x":1755890701980,"y":45.282},{"x":1755890641850,"y":40.042},{"x":1755890581713,"y":44.484},{"x":1755890521594,"y":56.102},{"x":1755890461468,"y":53.947},{"x":1755890401357,"y":38.315},{"x":1755890341223,"y":58.841},{"x":1755890281085,"y":50.509},{"x":1755890220986,"y":49.787},{"x":1755890160806,"y":61.04},{"x":1755890100668,"y":48.629},{"x":1755890040523,"y":60.983},{"x":1755889980355,"y":55.718},{"x":1755889923029,"y":50.358},{"x":1755889862883,"y":47.233},{"x":1755889802729,"y":48.151},{"x":1755889742604,"y":46.297},{"x":1755889682471,"y":49.865},{"x":1755889622350,"y":47.454},{"x":1755889562222,"y":50.002},{"x":1755889502091,"y":43.278},{"x":1755889441955,"y":60.772},{"x":1755889381828,"y":44.466},{"x":1755889321711,"y":40.729},{"x":1755889261580,"y":41.551},{"x":1755889201597,"y":51.24},{"x":1755889141264,"y":60.697},{"x":1755889081136,"y":59.479},{"x":1755889020988,"y":53.698},{"x":1755888960896,"y":55.069},{"x":1755888900795,"y":45.468},{"x":1755888840634,"y":51.982},{"x":1755888780518,"y":42.586},{"x":1755888720387,"y":41.567},{"x":1755888660206,"y":40.843},{"x":1755888602923,"y":33.883},{"x":1755888542781,"y":67.34},{"x":1755888482653,"y":78.767},{"x":1755888422523,"y":62.798},{"x":1755888362398,"y":64.478},{"x":1755888302260,"y":62.507},{"x":1755888242135,"y":36.912},{"x":1755888182005,"y":34.29},{"x":1755888121867,"y":36.472},{"x":1755888061737,"y":37.234},{"x":1755888001609,"y":36.756},{"x":1755887941481,"y":41.55},{"x":1755887881350,"y":41.226},{"x":1755887821226,"y":38.798},{"x":1755887761122,"y":40.331},{"x":1755887700992,"y":44.372},{"x":1755887640848,"y":41.695},{"x":1755887580700,"y":41.844},{"x":1755887520606,"y":53.892},{"x":1755887460349,"y":52.895},{"x":1755887400250,"y":53.267},{"x":1755887342902,"y":63.667},{"x":1755887282762,"y":48.996},{"x":1755887222641,"y":40.852},{"x":1755887162519,"y":40.612},{"x":1755887102378,"y":44.96},{"x":1755887042254,"y":38.848},{"x":1755886982112,"y":39.058},{"x":1755886921965,"y":35.587},{"x":1755886861838,"y":39.355},{"x":1755886801711,"y":35.981},{"x":1755886741582,"y":36.445},{"x":1755886681460,"y":36.473},{"x":1755886621335,"y":38.012},{"x":1755886561210,"y":41.216},{"x":1755886501072,"y":44.282},{"x":1755886440958,"y":52.508},{"x":1755886380787,"y":51.172},{"x":1755886320695,"y":53.366},{"x":1755886260568,"y":50.297},{"x":1755886200456,"y":44.867},{"x":1755886140272,"y":36.61},{"x":1755886082924,"y":36.884},{"x":1755886022797,"y":39.072},{"x":1755885962670,"y":43.001},{"x":1755885902540,"y":41.758},{"x":1755885842416,"y":41.408},{"x":1755885782286,"y":45.305},{"x":1755885722144,"y":41.803},{"x":1755885662021,"y":38.344},{"x":1755885601853,"y":45.971},{"x":1755885541636,"y":39.698},{"x":1755885481498,"y":53.946},{"x":1755885421377,"y":57.505},{"x":1755885361250,"y":34.534},{"x":1755885301127,"y":34.05},{"x":1755885240995,"y":35.382},{"x":1755885180877,"y":35.48},{"x":1755885120806,"y":39.488},{"x":1755885060600,"y":36.162},{"x":1755885000520,"y":46.6},{"x":1755884940350,"y":54.572},{"x":1755884882949,"y":46.666},{"x":1755884822826,"y":43.386},{"x":1755884762691,"y":43.741},{"x":1755884702569,"y":35.852},{"x":1755884642448,"y":41.371},{"x":1755884582350,"y":35.917},{"x":1755884522202,"y":37.757},{"x":1755884462075,"y":36.29},{"x":1755884401927,"y":33.833},{"x":1755884341788,"y":37.618},{"x":1755884281661,"y":40.88},{"x":1755884221540,"y":37.169},{"x":1755884161418,"y":36.913},{"x":1755884101282,"y":41.302},{"x":1755884041147,"y":36.578},{"x":1755883981018,"y":32.785},{"x":1755883920834,"y":32.546},{"x":1755883860690,"y":37.758},{"x":1755883800662,"y":37.229},{"x":1755883740406,"y":33.707},{"x":1755883680224,"y":33.456},{"x":1755883622901,"y":39.331},{"x":1755883562780,"y":38.036},{"x":1755883502648,"y":43.97},{"x":1755883442530,"y":42.347},{"x":1755883382404,"y":36.223},{"x":1755883322283,"y":40.93},{"x":1755883262154,"y":37.926},{"x":1755883202026,"y":42.106},{"x":1755883141892,"y":37.043},{"x":1755883081765,"y":37.764},{"x":1755883021641,"y":39.834},{"x":1755882961509,"y":37.559},{"x":1755882901383,"y":41.528},{"x":1755882841241,"y":37.175},{"x":1755882781070,"y":37.739},{"x":1755882720924,"y":41.507},{"x":1755882660746,"y":37.968},{"x":1755882600663,"y":37.568},{"x":1755882540515,"y":40.669},{"x":1755882480330,"y":43.793},{"x":1755882420245,"y":44.916},{"x":1755882362968,"y":42.373},{"x":1755882302832,"y":46.087},{"x":1755882242711,"y":40.796},{"x":1755882182583,"y":40.778},{"x":1755882122456,"y":38.77},{"x":1755882062323,"y":40.772},{"x":1755882002229,"y":37.532},{"x":1755881942048,"y":42.761},{"x":1755881881894,"y":39.588},{"x":1755881821768,"y":42.436},{"x":1755881761648,"y":44.546},{"x":1755881701502,"y":43.525},{"x":1755881641378,"y":46.226},{"x":1755881581237,"y":56.612},{"x":1755881521115,"y":36.199},{"x":1755881460973,"y":43.506},{"x":1755881400886,"y":39.137},{"x":1755881340733,"y":44.258},{"x":1755881280683,"y":63.133},{"x":1755881220510,"y":63.698},{"x":1755881160355,"y":68.536},{"x":1755881100149,"y":80.62},{"x":1755881042904,"y":62.416},{"x":1755880982783,"y":47.096},{"x":1755880922652,"y":46.752},{"x":1755880862537,"y":50.936},{"x":1755880802395,"y":45.881},{"x":1755880742257,"y":56.036},{"x":1755880682126,"y":39.463},{"x":1755880621980,"y":37.152},{"x":1755880561850,"y":42.84},{"x":1755880501714,"y":39.931},{"x":1755880441579,"y":43.296},{"x":1755880381457,"y":49.582},{"x":1755880321335,"y":44.748},{"x":1755880261204,"y":47.24},{"x":1755880201112,"y":42.155},{"x":1755880140906,"y":46.123},{"x":1755880080800,"y":42.242},{"x":1755880020654,"y":42.718},{"x":1755879960527,"y":40.496},{"x":1755879900452,"y":42.712},{"x":1755879840270,"y":49.432},{"x":1755879782998,"y":49.223},{"x":1755879722877,"y":57.325},{"x":1755879662643,"y":49.636},{"x":1755879602519,"y":42.317},{"x":1755879542390,"y":48.665},{"x":1755879482269,"y":45.374},{"x":1755879422144,"y":48.018},{"x":1755879362009,"y":44.11},{"x":1755879301868,"y":58.104},{"x":1755879241727,"y":55.902},{"x":1755879181611,"y":53.281},{"x":1755879121436,"y":50.996},{"x":1755879061303,"y":51.152},{"x":1755879001187,"y":37.69},{"x":1755878941000,"y":38.238},{"x":1755878880889,"y":44.567},{"x":1755878820779,"y":44.474},{"x":1755878760688,"y":44.299},{"x":1755878700522,"y":50.387},{"x":1755878640318,"y":54.007},{"x":1755878580304,"y":46.604},{"x":1755878522920,"y":59.197},{"x":1755878462804,"y":50.398},{"x":1755878402680,"y":48.068},{"x":1755878342528,"y":41.518},{"x":1755878282408,"y":52.738},{"x":1755878222261,"y":49.806},{"x":1755878162141,"y":55.116},{"x":1755878102020,"y":61.18},{"x":1755878041890,"y":59.208},{"x":1755877981771,"y":47.192},{"x":1755877921651,"y":54.734},{"x":1755877861518,"y":45.377},{"x":1755877801391,"y":44.623},{"x":1755877741264,"y":43.162},{"x":1755877681140,"y":46.084},{"x":1755877621004,"y":50.725},{"x":1755877560879,"y":45.481},{"x":1755877500869,"y":49.36},{"x":1755877440715,"y":49.591},{"x":1755877380574,"y":66.256},{"x":1755877320523,"y":52.704},{"x":1755877260086,"y":50.664},{"x":1755877202896,"y":46.298},{"x":1755877142791,"y":49.302},{"x":1755877082638,"y":47.483},{"x":1755877022522,"y":50.256},{"x":1755876962391,"y":63.322},{"x":1755876902274,"y":52.775},{"x":1755876842152,"y":46.704},{"x":1755876782016,"y":48.905},{"x":1755876721869,"y":44.42},{"x":1755876661749,"y":50.176},{"x":1755876601633,"y":45.079},{"x":1755876541485,"y":48.317},{"x":1755876481357,"y":41.677},{"x":1755876421230,"y":41.1},{"x":1755876361098,"y":47.629},{"x":1755876300981,"y":40.841},{"x":1755876240843,"y":38.233},{"x":1755876180693,"y":35.764},{"x":1755876120621,"y":38.251},{"x":1755876060461,"y":40.762},{"x":1755876000377,"y":47.921},{"x":1755875942947,"y":40.661},{"x":1755875882839,"y":50.722},{"x":1755875822695,"y":49.237},{"x":1755875762567,"y":45.008},{"x":1755875702439,"y":44.063},{"x":1755875642320,"y":59.722},{"x":1755875582126,"y":37.748},{"x":1755875521851,"y":34.493},{"x":1755875461708,"y":34.088},{"x":1755875401558,"y":41.918},{"x":1755875341393,"y":40.756},{"x":1755875281269,"y":37.121},{"x":1755875221136,"y":40.81},{"x":1755875160996,"y":54.535},{"x":1755875100909,"y":43.571},{"x":1755875040761,"y":47.501},{"x":1755874980595,"y":65.545},{"x":1755874920549,"y":67.422},{"x":1755874860399,"y":64.573},{"x":1755874800321,"y":70.861},{"x":1755874742900,"y":62.042},{"x":1755874682775,"y":46.302},{"x":1755874622650,"y":47.126},{"x":1755874562530,"y":50.9},{"x":1755874502406,"y":54.862},{"x":1755874442282,"y":54.043},{"x":1755874382138,"y":50.538},{"x":1755874321994,"y":44.444},{"x":1755874261854,"y":43.776},{"x":1755874201727,"y":32.656},{"x":1755874141605,"y":25.692},{"x":1755874081481,"y":39.853},{"x":1755874021345,"y":31.115},{"x":1755873961223,"y":47.921},{"x":1755873901096,"y":43.002},{"x":1755873840813,"y":43.151},{"x":1755873780652,"y":60.709},{"x":1755873720524,"y":42.31},{"x":1755873660445,"y":38.369},{"x":1755873600344,"y":36.082},{"x":1755873543018,"y":47.077},{"x":1755873482878,"y":31.146},{"x":1755873422743,"y":25.841},{"x":1755873362600,"y":27.731},{"x":1755873302474,"y":55.146},{"x":1755873242351,"y":46.231},{"x":1755873182203,"y":42.415},{"x":1755873122077,"y":45.748},{"x":1755873061926,"y":60.859},{"x":1755873001805,"y":26.63},{"x":1755872941673,"y":26.114},{"x":1755872881538,"y":32.862},{"x":1755872821398,"y":21.728},{"x":1755872761282,"y":27.329},{"x":1755872701140,"y":22.33},{"x":1755872640998,"y":26.237},{"x":1755872580876,"y":36.953},{"x":1755872520751,"y":31.116},{"x":1755872460624,"y":25.273},{"x":1755872400654,"y":37.469},{"x":1755872340334,"y":23.606},{"x":1755872280290,"y":25.534},{"x":1755872222912,"y":28.836},{"x":1755872162783,"y":31.224},{"x":1755872102675,"y":36.14},{"x":1755872042496,"y":40.176},{"x":1755871982388,"y":51.877},{"x":1755871922195,"y":45.802},{"x":1755871862020,"y":61.316},{"x":1755871801874,"y":41.502},{"x":1755871741752,"y":53.513},{"x":1755871681615,"y":44.591},{"x":1755871621486,"y":36.533},{"x":1755871561366,"y":32.263},{"x":1755871501246,"y":38.674},{"x":1755871441104,"y":32.562},{"x":1755871380964,"y":39.725},{"x":1755871320841,"y":41.48},{"x":1755871260721,"y":38.596},{"x":1755871200606,"y":32.386},{"x":1755871140404,"y":25.77},{"x":1755871080267,"y":38.071},{"x":1755871022995,"y":33.539},{"x":1755870962870,"y":44.276},{"x":1755870902746,"y":38.15},{"x":1755870842624,"y":38.407},{"x":1755870782483,"y":43.056},{"x":1755870722363,"y":40.687},{"x":1755870662234,"y":49.031},{"x":1755870602110,"y":47.474},{"x":1755870541963,"y":45.708},{"x":1755870481840,"y":62.131},{"x":1755870421717,"y":55.159},{"x":1755870361556,"y":42.913},{"x":1755870301450,"y":47.579},{"x":1755870241310,"y":39.764},{"x":1755870181181,"y":24.826},{"x":1755870121063,"y":27.418},{"x":1755870060927,"y":33.3},{"x":1755870000875,"y":28.962},{"x":1755869940677,"y":32.527},{"x":1755869880553,"y":33.629},{"x":1755869820420,"y":31.987},{"x":1755869760307,"y":35.303},{"x":1755869702984,"y":29.068},{"x":1755869642858,"y":33.336},{"x":1755869582727,"y":32.284},{"x":1755869522601,"y":37.075},{"x":1755869462475,"y":39.556},{"x":1755869402339,"y":37.918},{"x":1755869342198,"y":49.255},{"x":1755869282069,"y":43.403},{"x":1755869221930,"y":18.868},{"x":1755869161805,"y":23.231},{"x":1755869101688,"y":26.066},{"x":1755869041576,"y":26.394},{"x":1755868981444,"y":34.67},{"x":1755868921309,"y":26.444},{"x":1755868861162,"y":36.151},{"x":1755868801035,"y":35.162},{"x":1755868740841,"y":45.09},{"x":1755868680731,"y":44.27},{"x":1755868620643,"y":44.85},{"x":1755868560579,"y":44.201},{"x":1755868500104,"y":55.165},{"x":1755868442909,"y":54.17},{"x":1755868382736,"y":43.385},{"x":1755868322565,"y":48.959},{"x":1755868262415,"y":44.015},{"x":1755868202228,"y":48.484},{"x":1755868142111,"y":43.104},{"x":1755868081957,"y":60.346},{"x":1755868021823,"y":57.941},{"x":1755867961675,"y":58.908},{"x":1755867901561,"y":56.035},{"x":1755867841453,"y":70.363},{"x":1755867781289,"y":52.002},{"x":1755867721162,"y":46.878},{"x":1755867660975,"y":49.104},{"x":1755867601074,"y":43.062},{"x":1755867540663,"y":51.133},{"x":1755867480593,"y":39.263},{"x":1755867420476,"y":33.614},{"x":1755867360235,"y":38.344},{"x":1755867302944,"y":28.596},{"x":1755867242817,"y":28.978},{"x":1755867182694,"y":27.793},{"x":1755867122565,"y":38.452},{"x":1755867062430,"y":30.055},{"x":1755867002311,"y":36.546},{"x":1755866942189,"y":43.14},{"x":1755866882063,"y":44.208},{"x":1755866821937,"y":28.736},{"x":1755866761803,"y":30.812},{"x":1755866701678,"y":36.085},{"x":1755866641535,"y":34.339},{"x":1755866581406,"y":38.021},{"x":1755866521288,"y":35.591},{"x":1755866461160,"y":34.151},{"x":1755866401061,"y":49.033},{"x":1755866340880,"y":41.896},{"x":1755866280754,"y":45.132},{"x":1755866220682,"y":34.556},{"x":1755866160640,"y":33.227},{"x":1755866100436,"y":30.758},{"x":1755866040357,"y":43.43},{"x":1755865982922,"y":32.248},{"x":1755865922798,"y":60.745},{"x":1755865862675,"y":41.106},{"x":1755865802539,"y":55.111},{"x":1755865742406,"y":59.047},{"x":1755865682291,"y":44.196},{"x":1755865622162,"y":50.14},{"x":1755865562031,"y":55.603},{"x":1755865501887,"y":46.88},{"x":1755865441762,"y":48.821},{"x":1755865381636,"y":48.21},{"x":1755865321520,"y":46.744},{"x":1755865261386,"y":53.26},{"x":1755865201261,"y":62.348},{"x":1755865141118,"y":60.03},{"x":1755865080983,"y":73.828},{"x":1755865020860,"y":58.639},{"x":1755864960765,"y":50.03},{"x":1755864900616,"y":40.049},{"x":1755864840345,"y":33.023},{"x":1755864780325,"y":38.665},{"x":1755864722912,"y":34.556},{"x":1755864662764,"y":35.608},{"x":1755864602595,"y":37.123},{"x":1755864542464,"y":37.168},{"x":1755864482330,"y":34.879},{"x":1755864422197,"y":39.156},{"x":1755864362071,"y":33.356},{"x":1755864301928,"y":27.69},{"x":1755864241806,"y":30.678},{"x":1755864181664,"y":38.582},{"x":1755864121539,"y":48.467},{"x":1755864061415,"y":44.267},{"x":1755864001527,"y":54.859},{"x":1755863940955,"y":70.344},{"x":1755863880843,"y":69.971},{"x":1755863820729,"y":37.704},{"x":1755863760686,"y":43.926},{"x":1755863700495,"y":39.104},{"x":1755863640317,"y":37.614},{"x":1755863582903,"y":35.803},{"x":1755863522810,"y":36.838},{"x":1755863462680,"y":37.562},{"x":1755863402522,"y":35.16},{"x":1755863342388,"y":40.051},{"x":1755863282269,"y":36.824},{"x":1755863222150,"y":37.123},{"x":1755863162017,"y":30.359},{"x":1755863101882,"y":35.483},{"x":1755863041756,"y":37.4},{"x":1755862981629,"y":33.229},{"x":1755862921507,"y":50.854},{"x":1755862861381,"y":55.975},{"x":1755862801249,"y":42.114},{"x":1755862741113,"y":44.808},{"x":1755862680949,"y":52.45},{"x":1755862620861,"y":51.739},{"x":1755862560715,"y":51.472},{"x":1755862500608,"y":52.853},{"x":1755862440469,"y":40.606},{"x":1755862380286,"y":42.278},{"x":1755862323020,"y":52.277},{"x":1755862262894,"y":52.8},{"x":1755862202764,"y":61.169},{"x":1755862142632,"y":56.735},{"x":1755862082510,"y":62.827},{"x":1755862022379,"y":81.82},{"x":1755861962251,"y":62.305},{"x":1755861902111,"y":54.967},{"x":1755861841965,"y":54.332},{"x":1755861781835,"y":51.343},{"x":1755861721707,"y":61.531},{"x":1755861661580,"y":57.266},{"x":1755861601465,"y":53.405},{"x":1755861541335,"y":51.763},{"x":1755861481207,"y":46.51},{"x":1755861421070,"y":41.606},{"x":1755861360928,"y":55.519},{"x":1755861300847,"y":51.658},{"x":1755861240674,"y":58.021},{"x":1755861180550,"y":51.428},{"x":1755861120509,"y":51.676},{"x":1755861060304,"y":53.08},{"x":1755861002985,"y":52.688},{"x":1755860942862,"y":69.185},{"x":1755860882739,"y":59.611},{"x":1755860822607,"y":79.454},{"x":1755860762476,"y":67.228},{"x":1755860702347,"y":61.649},{"x":1755860642213,"y":53.548},{"x":1755860582090,"y":41.731},{"x":1755860521850,"y":41.21},{"x":1755860461725,"y":42.292},{"x":1755860401652,"y":47.108},{"x":1755860341474,"y":47.911},{"x":1755860281329,"y":50.711},{"x":1755860221193,"y":59.88},{"x":1755860161058,"y":69.11},{"x":1755860100923,"y":65.179},{"x":1755860040796,"y":58.962},{"x":1755859980720,"y":62.716},{"x":1755859920599,"y":52.082},{"x":1755859860402,"y":58.11},{"x":1755859800320,"y":39.911},{"x":1755859742920,"y":46.325},{"x":1755859682779,"y":37.345},{"x":1755859622655,"y":37.264},{"x":1755859562538,"y":49.351},{"x":1755859502398,"y":49.356},{"x":1755859442277,"y":47.447},{"x":1755859382144,"y":43.001},{"x":1755859322020,"y":38.099},{"x":1755859261875,"y":36.017},{"x":1755859201759,"y":42.628},{"x":1755859141609,"y":37.692},{"x":1755859081485,"y":56.227},{"x":1755859021359,"y":49.159},{"x":1755858961234,"y":50.195},{"x":1755858901114,"y":53.455},{"x":1755858840957,"y":52.41},{"x":1755858780838,"y":45.426},{"x":1755858720733,"y":45.992},{"x":1755858660597,"y":37.574},{"x":1755858600474,"y":45.905},{"x":1755858540353,"y":40.114},{"x":1755858483016,"y":34.064},{"x":1755858422864,"y":38.29},{"x":1755858362758,"y":44.964},{"x":1755858302595,"y":59.288},{"x":1755858242460,"y":71.599},{"x":1755858182332,"y":74.569},{"x":1755858122215,"y":71.538},{"x":1755858062083,"y":55.246},{"x":1755858001938,"y":51.463},{"x":1755857941812,"y":39.602},{"x":1755857881692,"y":45.57},{"x":1755857821555,"y":48.161},{"x":1755857761427,"y":66.712},{"x":1755857701323,"y":57.55},{"x":1755857641180,"y":55.402},{"x":1755857580980,"y":46.176},{"x":1755857520828,"y":44.971},{"x":1755857460745,"y":53.96},{"x":1755857400577,"y":56.839},{"x":1755857340394,"y":61.279},{"x":1755857280287,"y":55.289},{"x":1755857222942,"y":57.829},{"x":1755857162821,"y":64.861},{"x":1755857102682,"y":65.55},{"x":1755857042561,"y":59.426},{"x":1755856982420,"y":54.373},{"x":1755856922298,"y":56.341},{"x":1755856862169,"y":52.771},{"x":1755856802088,"y":44.918},{"x":1755856741863,"y":54.386},{"x":1755856681740,"y":42.182},{"x":1755856621601,"y":42.857},{"x":1755856561475,"y":50.953},{"x":1755856501236,"y":52.573},{"x":1755856441101,"y":50.894},{"x":1755856380954,"y":53.191},{"x":1755856320852,"y":43.116},{"x":1755856260696,"y":50.3},{"x":1755856200600,"y":47.086},{"x":1755856140432,"y":44.852},{"x":1755856080444,"y":55.099},{"x":1755856020315,"y":56.927},{"x":1755855962902,"y":44.707},{"x":1755855902775,"y":43.715},{"x":1755855842656,"y":47.98},{"x":1755855782529,"y":43.708},{"x":1755855722391,"y":44.73},{"x":1755855662206,"y":48.248},{"x":1755855602077,"y":55.2},{"x":1755855541935,"y":49.751},{"x":1755855481805,"y":59.855},{"x":1755855421665,"y":54.986},{"x":1755855361525,"y":68.363},{"x":1755855301405,"y":51.479},{"x":1755855241278,"y":51.895},{"x":1755855181145,"y":45.689},{"x":1755855121023,"y":52.876},{"x":1755855060890,"y":47.599},{"x":1755855000847,"y":57.304},{"x":1755854940616,"y":50.09},{"x":1755854880558,"y":53.28},{"x":1755854820417,"y":66.145},{"x":1755854760224,"y":70.123},{"x":1755854702938,"y":68.108},{"x":1755854642806,"y":69.034},{"x":1755854582683,"y":56.021},{"x":1755854522563,"y":53.813},{"x":1755854462434,"y":57.012},{"x":1755854402308,"y":54.581},{"x":1755854342165,"y":53.352},{"x":1755854282041,"y":52.096},{"x":1755854221907,"y":51.286},{"x":1755854161769,"y":56.963},{"x":1755854101646,"y":48.738},{"x":1755854041519,"y":53.126},{"x":1755853981413,"y":63.968},{"x":1755853921260,"y":69.689},{"x":1755853861048,"y":73.76},{"x":1755853800933,"y":71.479},{"x":1755853740727,"y":70.906},{"x":1755853680643,"y":64.339},{"x":1755853620465,"y":57.402},{"x":1755853560337,"y":46.24},{"x":1755853503019,"y":45.536},{"x":1755853442919,"y":42.328},{"x":1755853382760,"y":49.685},{"x":1755853322635,"y":45.392},{"x":1755853262506,"y":62.839},{"x":1755853202405,"y":71.909},{"x":1755853142227,"y":76.903},{"x":1755853082096,"y":67.25},{"x":1755853021931,"y":71.609},{"x":1755852961806,"y":65.909},{"x":1755852901687,"y":51.93},{"x":1755852841551,"y":44.749},{"x":1755852781405,"y":45.584},{"x":1755852721258,"y":47.48},{"x":1755852661127,"y":48.281},{"x":1755852600996,"y":47.182},{"x":1755852540856,"y":57.931},{"x":1755852480762,"y":49.835},{"x":1755852420660,"y":54.476},{"x":1755852360506,"y":45.917},{"x":1755852300428,"y":44.5},{"x":1755852240257,"y":49.78},{"x":1755852182939,"y":42.868},{"x":1755852122816,"y":45.436},{"x":1755852062673,"y":46.385},{"x":1755852002547,"y":45.852},{"x":1755851942424,"y":64.645},{"x":1755851882292,"y":52.608},{"x":1755851822170,"y":47.384},{"x":1755851762041,"y":52.676},{"x":1755851701902,"y":56.598},{"x":1755851641780,"y":44.038},{"x":1755851581657,"y":38.825},{"x":1755851521533,"y":47.968},{"x":1755851461412,"y":48.472},{"x":1755851401306,"y":57.812},{"x":1755851341104,"y":49.921},{"x":1755851280966,"y":48.46},{"x":1755851220854,"y":52.645},{"x":1755851160712,"y":53.555},{"x":1755851100668,"y":46.579},{"x":1755851040523,"y":43.874},{"x":1755850980399,"y":40.398},{"x":1755850920275,"y":43.358},{"x":1755850862942,"y":37.542},{"x":1755850802814,"y":40.902},{"x":1755850742687,"y":57.962},{"x":1755850682562,"y":42.378},{"x":1755850622445,"y":57.828},{"x":1755850562317,"y":54.834},{"x":1755850502207,"y":53.74},{"x":1755850442070,"y":59.072},{"x":1755850381924,"y":62.093},{"x":1755850321787,"y":55.606},{"x":1755850261615,"y":61.36},{"x":1755850201464,"y":53.508},{"x":1755850141340,"y":48.265},{"x":1755850081203,"y":50.369},{"x":1755850021080,"y":52.487},{"x":1755849960947,"y":47.591},{"x":1755849900839,"y":66.148},{"x":1755849840807,"y":41.692},{"x":1755849780635,"y":46.085},{"x":1755849720538,"y":46.842},{"x":1755849660293,"y":47.345},{"x":1755849602961,"y":57.68},{"x":1755849542808,"y":50.765},{"x":1755849482693,"y":47.892},{"x":1755849422571,"y":58.093},{"x":1755849362445,"y":45.302},{"x":1755849302326,"y":50.536},{"x":1755849242204,"y":50.368},{"x":1755849182077,"y":47.714},{"x":1755849121949,"y":42.791},{"x":1755849061814,"y":47.521},{"x":1755849001691,"y":45.197},{"x":1755848941564,"y":51.341},{"x":1755848881439,"y":59.653},{"x":1755848821322,"y":53.966},{"x":1755848761188,"y":49.016},{"x":1755848701125,"y":37.896},{"x":1755848640927,"y":42.235},{"x":1755848580810,"y":53.039},{"x":1755848520731,"y":39.474},{"x":1755848460614,"y":46.519},{"x":1755848400615,"y":43.666},{"x":1755848340267,"y":44.484},{"x":1755848282949,"y":39.577},{"x":1755848222826,"y":52.493},{"x":1755848162683,"y":43.782},{"x":1755848102555,"y":43.961},{"x":1755848042431,"y":48.78},{"x":1755847982306,"y":49.294},{"x":1755847922178,"y":57.438},{"x":1755847862051,"y":64.25},{"x":1755847801953,"y":73.153},{"x":1755847741802,"y":75.148},{"x":1755847681673,"y":76.105},{"x":1755847621554,"y":51.912},{"x":1755847561427,"y":53.137},{"x":1755847501299,"y":38.167},{"x":1755847441165,"y":49.5},{"x":1755847381032,"y":44.173},{"x":1755847320870,"y":43.33},{"x":1755847260765,"y":46.279},{"x":1755847200668,"y":49.0},{"x":1755847140576,"y":48.08},{"x":1755847080301,"y":46.992},{"x":1755847022995,"y":47.797},{"x":1755846962859,"y":50.243},{"x":1755846902725,"y":47.491},{"x":1755846842605,"y":45.514},{"x":1755846782485,"y":38.677},{"x":1755846722326,"y":45.774},{"x":1755846662169,"y":43.817},{"x":1755846601999,"y":42.484},{"x":1755846541872,"y":37.95},{"x":1755846481747,"y":44.833},{"x":1755846421632,"y":39.158},{"x":1755846361512,"y":30.244},{"x":1755846301389,"y":31.963},{"x":1755846241239,"y":37.082},{"x":1755846181092,"y":38.5},{"x":1755846120954,"y":45.055},{"x":1755846060823,"y":39.895},{"x":1755846000857,"y":41.612},{"x":1755845940634,"y":47.564},{"x":1755845880495,"y":58.78},{"x":1755845820590,"y":44.228},{"x":1755845763019,"y":40.226},{"x":1755845702894,"y":43.168},{"x":1755845642755,"y":39.821},{"x":1755845582627,"y":53.179},{"x":1755845522501,"y":66.617},{"x":1755845462378,"y":62.585},{"x":1755845402246,"y":63.194},{"x":1755845342117,"y":59.947},{"x":1755845281975,"y":58.189},{"x":1755845221832,"y":42.049},{"x":1755845161714,"y":33.984},{"x":1755845101599,"y":37.378},{"x":1755845041463,"y":38.472},{"x":1755844981347,"y":33.665},{"x":1755844921225,"y":33.834},{"x":1755844861101,"y":57.282},{"x":1755844801064,"y":73.434},{"x":1755844740749,"y":68.983},{"x":1755844680655,"y":69.212},{"x":1755844620476,"y":69.676},{"x":1755844560357,"y":55.57},{"x":1755844502972,"y":56.807},{"x":1755844442840,"y":50.831},{"x":1755844382715,"y":54.378},{"x":1755844322593,"y":48.919},{"x":1755844262459,"y":48.86},{"x":1755844202334,"y":49.465},{"x":1755844142189,"y":49.618},{"x":1755844082072,"y":45.925},{"x":1755844021923,"y":46.36},{"x":1755843961793,"y":45.757},{"x":1755843901672,"y":48.046},{"x":1755843841537,"y":43.594},{"x":1755843781410,"y":48.493},{"x":1755843721279,"y":54.81},{"x":1755843661152,"y":72.457},{"x":1755843601052,"y":54.868},{"x":1755843540876,"y":68.039},{"x":1755843480743,"y":49.918},{"x":1755843420721,"y":60.674},{"x":1755843360559,"y":47.962},{"x":1755843300372,"y":49.117},{"x":1755843243010,"y":50.693},{"x":1755843182835,"y":45.594},{"x":1755843122633,"y":59.22},{"x":1755843062487,"y":43.357},{"x":1755843002328,"y":61.452},{"x":1755842942200,"y":60.724},{"x":1755842882074,"y":63.931},{"x":1755842821939,"y":63.47},{"x":1755842761810,"y":61.338},{"x":1755842701687,"y":65.819},{"x":1755842641563,"y":44.257},{"x":1755842581431,"y":49.858},{"x":1755842521241,"y":55.798},{"x":1755842461112,"y":54.223},{"x":1755842401069,"y":59.686},{"x":1755842340823,"y":52.908},{"x":1755842280621,"y":51.085},{"x":1755842220542,"y":44.867},{"x":1755842160421,"y":44.651},{"x":1755842100315,"y":47.705},{"x":1755842042994,"y":46.621},{"x":1755841982873,"y":46.188},{"x":1755841922737,"y":46.192},{"x":1755841862589,"y":41.737},{"x":1755841802458,"y":40.998},{"x":1755841742335,"y":40.19},{"x":1755841682196,"y":41.544},{"x":1755841622073,"y":42.39},{"x":1755841561960,"y":44.527},{"x":1755841501803,"y":58.352},{"x":1755841441665,"y":66.762},{"x":1755841381530,"y":68.048},{"x":1755841321405,"y":62.899},{"x":1755841261279,"y":67.867},{"x":1755841201150,"y":64.948},{"x":1755841140992,"y":57.09},{"x":1755841080867,"y":52.47},{"x":1755841020741,"y":49.753},{"x":1755840960645,"y":49.144},{"x":1755840900567,"y":44.314},{"x":1755840840384,"y":52.145},{"x":1755840780211,"y":45.191},{"x":1755840722944,"y":44.448},{"x":1755840662809,"y":44.071},{"x":1755840602681,"y":41.984},{"x":1755840542537,"y":44.394},{"x":1755840482412,"y":43.07},{"x":1755840422276,"y":43.331},{"x":1755840362145,"y":44.057},{"x":1755840301993,"y":46.109},{"x":1755840241866,"y":42.466},{"x":1755840181743,"y":41.651},{"x":1755840121629,"y":43.918},{"x":1755840061495,"y":44.413},{"x":1755840001377,"y":45.181},{"x":1755839941235,"y":44.881},{"x":1755839881109,"y":54.668},{"x":1755839820978,"y":49.733},{"x":1755839760874,"y":43.405},{"x":1755839700733,"y":42.128},{"x":1755839640629,"y":42.618},{"x":1755839580434,"y":46.165},{"x":1755839520195,"y":41.586},{"x":1755839462885,"y":47.454},{"x":1755839402726,"y":55.019},{"x":1755839342601,"y":67.91},{"x":1755839282478,"y":70.808},{"x":1755839222352,"y":73.778},{"x":1755839162226,"y":68.756},{"x":1755839102121,"y":59.701},{"x":1755839041963,"y":46.043},{"x":1755838981838,"y":43.278},{"x":1755838921706,"y":44.734},{"x":1755838861596,"y":40.871},{"x":1755838801610,"y":45.882},{"x":1755838741273,"y":45.205},{"x":1755838681155,"y":47.178},{"x":1755838621020,"y":46.285},{"x":1755838560886,"y":51.091},{"x":1755838500763,"y":44.522},{"x":1755838440597,"y":45.145},{"x":1755838380538,"y":47.195},{"x":1755838320340,"y":43.889},{"x":1755838263020,"y":49.451},{"x":1755838202881,"y":42.984},{"x":1755838142754,"y":43.43},{"x":1755838082635,"y":42.689},{"x":1755838022511,"y":47.464},{"x":1755837962386,"y":51.163},{"x":1755837902263,"y":49.092},{"x":1755837842138,"y":49.622},{"x":1755837781999,"y":48.617},{"x":1755837721875,"y":45.384},{"x":1755837661745,"y":49.35},{"x":1755837601619,"y":43.89},{"x":1755837541497,"y":43.064},{"x":1755837481366,"y":42.32},{"x":1755837421236,"y":43.631},{"x":1755837361096,"y":44.165},{"x":1755837300959,"y":43.984},{"x":1755837240825,"y":45.232},{"x":1755837180702,"y":43.846},{"x":1755837120694,"y":46.286},{"x":1755837060430,"y":44.479},{"x":1755837000346,"y":50.718},{"x":1755836942949,"y":49.882},{"x":1755836882232,"y":47.75},{"x":1755836822111,"y":47.927},{"x":1755836761964,"y":45.797},{"x":1755836701793,"y":48.48},{"x":1755836641670,"y":42.052},{"x":1755836581528,"y":44.69},{"x":1755836521401,"y":45.06},{"x":1755836461268,"y":51.6},{"x":1755836401168,"y":51.845},{"x":1755836341005,"y":48.524},{"x":1755836280872,"y":42.737},{"x":1755836220813,"y":53.138},{"x":1755836160702,"y":52.888},{"x":1755836100475,"y":55.877},{"x":1755836040439,"y":54.148},{"x":1755835980166,"y":63.781},{"x":1755835922907,"y":59.927},{"x":1755835862756,"y":64.091},{"x":1755835802632,"y":82.456},{"x":1755835742506,"y":68.44},{"x":1755835682383,"y":55.08},{"x":1755835622278,"y":43.52},{"x":1755835562163,"y":41.329},{"x":1755835502018,"y":40.258},{"x":1755835441881,"y":45.816},{"x":1755835381761,"y":42.4},{"x":1755835321626,"y":44.155},{"x":1755835261511,"y":46.585},{"x":1755835201420,"y":47.329},{"x":1755835141195,"y":49.426},{"x":1755835081068,"y":47.602},{"x":1755835020924,"y":46.663},{"x":1755834960814,"y":46.885},{"x":1755834900716,"y":46.39},{"x":1755834840554,"y":46.385},{"x":1755834780451,"y":44.603},{"x":1755834720365,"y":41.249},{"x":1755834662964,"y":32.44},{"x":1755834602833,"y":32.167},{"x":1755834542710,"y":32.137},{"x":1755834482585,"y":32.312},{"x":1755834422451,"y":32.442},{"x":1755834362318,"y":32.554},{"x":1755834302190,"y":32.016},{"x":1755834242064,"y":32.179},{"x":1755834181935,"y":48.494},{"x":1755834121812,"y":44.706},{"x":1755834061685,"y":42.727},{"x":1755834001587,"y":57.107},{"x":1755833941444,"y":53.508},{"x":1755833881341,"y":44.884},{"x":1755833821212,"y":40.181},{"x":1755833761068,"y":38.94},{"x":1755833700919,"y":29.444},{"x":1755833640758,"y":32.611},{"x":1755833580646,"y":31.182},{"x":1755833520567,"y":31.884},{"x":1755833460409,"y":30.58},{"x":1755833400258,"y":32.758},{"x":1755833343012,"y":33.142},{"x":1755833282880,"y":32.638},{"x":1755833222747,"y":32.863},{"x":1755833162619,"y":31.423},{"x":1755833102497,"y":29.776},{"x":1755833042363,"y":32.806},{"x":1755832982242,"y":34.548},{"x":1755832920284,"y":38.64},{"x":1755832863021,"y":34.043},{"x":1755832802872,"y":44.416},{"x":1755832742751,"y":42.022},{"x":1755832682629,"y":43.001},{"x":1755832622587,"y":47.678},{"x":1755832562378,"y":44.496},{"x":1755832502258,"y":33.703},{"x":1755832442105,"y":28.355},{"x":1755832381930,"y":27.706},{"x":1755832321840,"y":31.702},{"x":1755832261666,"y":28.012},{"x":1755832201513,"y":30.415},{"x":1755832141388,"y":31.53},{"x":1755832081262,"y":30.64},{"x":1755832021123,"y":33.341},{"x":1755831960988,"y":32.004},{"x":1755831900869,"y":31.849},{"x":1755831840734,"y":32.136},{"x":1755831780551,"y":30.968},{"x":1755831720311,"y":30.824},{"x":1755831662946,"y":34.888},{"x":1755831602390,"y":29.756},{"x":1755831542182,"y":27.662},{"x":1755831482040,"y":30.706},{"x":1755831421902,"y":33.39},{"x":1755831361768,"y":38.008},{"x":1755831301648,"y":33.427},{"x":1755831241533,"y":31.241},{"x":1755831181407,"y":30.445},{"x":1755831121286,"y":30.161},{"x":1755831061160,"y":32.002},{"x":1755831001024,"y":41.695},{"x":1755830940890,"y":41.327},{"x":1755830880759,"y":40.729},{"x":1755830820604,"y":41.928},{"x":1755830760500,"y":46.814},{"x":1755830700363,"y":32.401},{"x":1755830640195,"y":30.649},{"x":1755830582937,"y":31.636},{"x":1755830522818,"y":34.208},{"x":1755830462694,"y":31.493},{"x":1755830402568,"y":30.7},{"x":1755830342447,"y":30.245},{"x":1755830282328,"y":31.385},{"x":1755830222211,"y":30.415},{"x":1755830162081,"y":34.006},{"x":1755830101941,"y":38.778},{"x":1755830041819,"y":33.228},{"x":1755829981695,"y":35.96},{"x":1755829921567,"y":34.736},{"x":1755829861401,"y":34.732},{"x":1755829801272,"y":39.806},{"x":1755829741093,"y":32.268},{"x":1755829680955,"y":29.572},{"x":1755829620836,"y":29.315},{"x":1755829560718,"y":40.081},{"x":1755829500660,"y":32.92},{"x":1755829440461,"y":29.777},{"x":1755829380336,"y":30.559},{"x":1755829323031,"y":33.53},{"x":1755829262889,"y":32.21},{"x":1755829202765,"y":31.271},{"x":1755829142653,"y":32.46},{"x":1755829082520,"y":29.605},{"x":1755829022393,"y":43.928},{"x":1755828962260,"y":42.32},{"x":1755828902133,"y":54.949},{"x":1755828842012,"y":57.704},{"x":1755828781857,"y":53.341},{"x":1755828721718,"y":51.761},{"x":1755828661555,"y":53.4},{"x":1755828601386,"y":40.249},{"x":1755828541259,"y":42.559},{"x":1755828481117,"y":34.85},{"x":1755828420982,"y":33.991},{"x":1755828360862,"y":29.24},{"x":1755828300750,"y":29.227},{"x":1755828240676,"y":35.929},{"x":1755828180477,"y":29.045},{"x":1755828120361,"y":29.197},{"x":1755828060288,"y":27.446},{"x":1755828002938,"y":27.698},{"x":1755827942781,"y":32.118},{"x":1755827882663,"y":33.973},{"x":1755827822555,"y":34.351},{"x":1755827762408,"y":33.436},{"x":1755827702292,"y":30.89},{"x":1755827642149,"y":34.121},{"x":1755827582032,"y":28.16},{"x":1755827521892,"y":28.52},{"x":1755827461758,"y":28.709},{"x":1755827401636,"y":30.731},{"x":1755827341510,"y":37.525},{"x":1755827281391,"y":32.724},{"x":1755827221261,"y":31.975},{"x":1755827161133,"y":34.524},{"x":1755827101126,"y":33.854},{"x":1755827040839,"y":45.75},{"x":1755826980701,"y":41.623},{"x":1755826920490,"y":49.912},{"x":1755826860342,"y":47.862},{"x":1755826800355,"y":47.351},{"x":1755826742933,"y":45.77},{"x":1755826682791,"y":39.778},{"x":1755826622676,"y":33.809},{"x":1755826562541,"y":31.512},{"x":1755826502416,"y":31.478},{"x":1755826442290,"y":34.62},{"x":1755826382168,"y":43.547},{"x":1755826322029,"y":43.597},{"x":1755826261898,"y":46.435},{"x":1755826201782,"y":45.266},{"x":1755826141647,"y":49.811},{"x":1755826081500,"y":31.59},{"x":1755826021379,"y":31.927},{"x":1755825961247,"y":31.235},{"x":1755825901130,"y":30.81},{"x":1755825840974,"y":34.518},{"x":1755825780843,"y":33.49},{"x":1755825720726,"y":32.177},{"x":1755825660610,"y":30.586},{"x":1755825600510,"y":31.343},{"x":1755825540345,"y":38.156},{"x":1755825482977,"y":32.557},{"x":1755825422839,"y":32.03},{"x":1755825362713,"y":32.021},{"x":1755825302576,"y":29.048},{"x":1755825242450,"y":32.832},{"x":1755825182328,"y":27.923},{"x":1755825122163,"y":27.964},{"x":1755825062047,"y":31.855},{"x":1755825001834,"y":31.427},{"x":1755824941708,"y":46.871},{"x":1755824881573,"y":55.111},{"x":1755824821439,"y":57.311},{"x":1755824761305,"y":56.887},{"x":1755824701174,"y":53.123},{"x":1755824641048,"y":36.547},{"x":1755824580900,"y":33.426},{"x":1755824520780,"y":28.224},{"x":1755824460701,"y":28.223},{"x":1755824400599,"y":29.167},{"x":1755824340345,"y":31.877},{"x":1755824282950,"y":35.789},{"x":1755824222822,"y":35.062},{"x":1755824162699,"y":35.089},{"x":1755824102576,"y":35.147},{"x":1755824042445,"y":30.386},{"x":1755823982317,"y":30.235},{"x":1755823922196,"y":40.988},{"x":1755823862070,"y":49.685},{"x":1755823801942,"y":47.329},{"x":1755823741814,"y":45.34},{"x":1755823681681,"y":45.091},{"x":1755823621551,"y":43.322},{"x":1755823561426,"y":34.235},{"x":1755823501293,"y":31.459},{"x":1755823441154,"y":30.509},{"x":1755823381034,"y":31.808},{"x":1755823320893,"y":29.836},{"x":1755823260774,"y":30.128},{"x":1755823200713,"y":28.256},{"x":1755823140535,"y":29.26},{"x":1755823080402,"y":34.063},{"x":1755823020357,"y":33.692},{"x":1755822962958,"y":32.59},{"x":1755822902814,"y":30.19},{"x":1755822842689,"y":32.725},{"x":1755822782561,"y":35.46},{"x":1755822722462,"y":45.556},{"x":1755822662300,"y":32.242},{"x":1755822602169,"y":30.936},{"x":1755822542037,"y":31.746},{"x":1755822481894,"y":43.716},{"x":1755822421782,"y":43.655},{"x":1755822361645,"y":44.636},{"x":1755822301516,"y":44.761},{"x":1755822241382,"y":39.607},{"x":1755822181253,"y":28.146},{"x":1755822121128,"y":28.522},{"x":1755822060998,"y":30.348},{"x":1755822000870,"y":31.309},{"x":1755821940682,"y":33.653},{"x":1755821880593,"y":33.637},{"x":1755821820466,"y":30.377},{"x":1755821760333,"y":30.672},{"x":1755821702985,"y":29.413},{"x":1755821642871,"y":29.19},{"x":1755821582701,"y":29.521},{"x":1755821522578,"y":29.778},{"x":1755821462406,"y":28.756},{"x":1755821402257,"y":30.731},{"x":1755821342113,"y":33.93},{"x":1755821281982,"y":33.232},{"x":1755821221841,"y":34.436},{"x":1755821161716,"y":33.617},{"x":1755821101593,"y":30.019},{"x":1755821041476,"y":28.642},{"x":1755820981339,"y":28.469},{"x":1755820921211,"y":28.61},{"x":1755820861099,"y":29.939},{"x":1755820801614,"y":30.624},{"x":1755820740761,"y":32.742},{"x":1755820680704,"y":34.538},{"x":1755820620630,"y":33.982},{"x":1755820560476,"y":39.097},{"x":1755820500310,"y":37.354},{"x":1755820440166,"y":37.673},{"x":1755820382918,"y":34.546},{"x":1755820322794,"y":33.498},{"x":1755820262672,"y":34.228},{"x":1755820202533,"y":34.067},{"x":1755820142413,"y":32.748},{"x":1755820082282,"y":29.779},{"x":1755820022156,"y":35.496},{"x":1755819962024,"y":31.41},{"x":1755819901896,"y":34.348},{"x":1755819841776,"y":30.458},{"x":1755819781654,"y":45.426},{"x":1755819721538,"y":44.19},{"x":1755819661412,"y":43.793},{"x":1755819601284,"y":43.477},{"x":1755819541156,"y":41.178},{"x":1755819481005,"y":28.862},{"x":1755819420878,"y":28.41},{"x":1755819360766,"y":28.432},{"x":1755819300691,"y":32.382},{"x":1755819240511,"y":31.716},{"x":1755819180412,"y":32.9},{"x":1755819120288,"y":52.309},{"x":1755819062935,"y":54.35},{"x":1755819002807,"y":51.197},{"x":1755818942688,"y":54.222},{"x":1755818882597,"y":47.087},{"x":1755818822440,"y":30.358},{"x":1755818762315,"y":29.672},{"x":1755818702192,"y":29.603},{"x":1755818642066,"y":29.688},{"x":1755818581921,"y":36.14},{"x":1755818521794,"y":39.031},{"x":1755818461649,"y":52.565},{"x":1755818401512,"y":50.773},{"x":1755818341383,"y":48.071},{"x":1755818281257,"y":47.864},{"x":1755818221134,"y":41.963},{"x":1755818160979,"y":29.732},{"x":1755818100879,"y":30.512},{"x":1755818040716,"y":29.779},{"x":1755817980660,"y":28.867},{"x":1755817920490,"y":28.646},{"x":1755817860270,"y":43.932},{"x":1755817802944,"y":46.314},{"x":1755817742812,"y":43.818},{"x":1755817682683,"y":43.589},{"x":1755817622562,"y":41.668},{"x":1755817562435,"y":29.509},{"x":1755817502308,"y":29.501},{"x":1755817442184,"y":29.48},{"x":1755817382052,"y":31.153},{"x":1755817321922,"y":31.866},{"x":1755817261794,"y":32.39},{"x":1755817201676,"y":34.085},{"x":1755817141480,"y":35.474},{"x":1755817081358,"y":35.776},{"x":1755817021241,"y":34.094},{"x":1755816961113,"y":33.274},{"x":1755816900969,"y":33.409},{"x":1755816840823,"y":30.385},{"x":1755816780702,"y":30.022},{"x":1755816720637,"y":28.637},{"x":1755816660428,"y":28.708},{"x":1755816600416,"y":29.543},{"x":1755816540202,"y":32.466},{"x":1755816482928,"y":37.468},{"x":1755816422796,"y":33.55},{"x":1755816362691,"y":33.661},{"x":1755816302554,"y":32.744},{"x":1755816242410,"y":30.671},{"x":1755816182291,"y":31.381},{"x":1755816122165,"y":30.919},{"x":1755816062019,"y":29.923},{"x":1755816001897,"y":30.283},{"x":1755815941767,"y":29.029},{"x":1755815881636,"y":34.477},{"x":1755815821511,"y":35.513},{"x":1755815761392,"y":32.795},{"x":1755815701264,"y":33.065},{"x":1755815641135,"y":33.107},{"x":1755815580989,"y":38.63},{"x":1755815520861,"y":33.452},{"x":1755815460733,"y":31.784},{"x":1755815400681,"y":32.611},{"x":1755815340457,"y":29.899},{"x":1755815280322,"y":33.313},{"x":1755815220274,"y":29.616},{"x":1755815162899,"y":31.913},{"x":1755815102775,"y":28.834},{"x":1755815042646,"y":35.851},{"x":1755814982525,"y":52.55},{"x":1755814922388,"y":63.889},{"x":1755814862243,"y":61.988},{"x":1755814802101,"y":58.206},{"x":1755814741964,"y":57.025},{"x":1755814681836,"y":46.733},{"x":1755814621706,"y":31.608},{"x":1755814561557,"y":30.481},{"x":1755814501437,"y":30.768},{"x":1755814441312,"y":28.976},{"x":1755814381180,"y":32.555},{"x":1755814320952,"y":28.318},{"x":1755814260784,"y":29.894},{"x":1755814200666,"y":32.856},{"x":1755814140500,"y":33.568},{"x":1755814080454,"y":36.792},{"x":1755814020252,"y":31.787},{"x":1755813963021,"y":31.159},{"x":1755813902883,"y":29.554},{"x":1755813842759,"y":31.432},{"x":1755813782628,"y":35.143},{"x":1755813722510,"y":34.597},{"x":1755813662376,"y":31.523},{"x":1755813602267,"y":33.736},{"x":1755813542113,"y":50.743},{"x":1755813481980,"y":55.595},{"x":1755813421842,"y":59.6},{"x":1755813361712,"y":69.955},{"x":1755813301588,"y":67.626},{"x":1755813241466,"y":63.632},{"x":1755813181327,"y":64.934},{"x":1755813121200,"y":49.3},{"x":1755813061070,"y":39.592},{"x":1755813000934,"y":38.887},{"x":1755812940786,"y":35.231},{"x":1755812880737,"y":36.602},{"x":1755812820507,"y":34.339},{"x":1755812760360,"y":37.248},{"x":1755812700163,"y":39.746},{"x":1755812642915,"y":38.389},{"x":1755812582791,"y":42.37},{"x":1755812522669,"y":40.577},{"x":1755812462541,"y":41.834},{"x":1755812402415,"y":38.068},{"x":1755812342294,"y":36.671},{"x":1755812282164,"y":45.532},{"x":1755812222031,"y":45.98},{"x":1755812161897,"y":44.783},{"x":1755812101761,"y":43.399},{"x":1755812041643,"y":39.378},{"x":1755811981504,"y":33.007},{"x":1755811921380,"y":35.822},{"x":1755811861243,"y":35.624},{"x":1755811801190,"y":34.399},{"x":1755811740927,"y":31.952},{"x":1755811680802,"y":31.108},{"x":1755811620713,"y":32.879},{"x":1755811560592,"y":30.92},{"x":1755811500643,"y":31.573},{"x":1755811443017,"y":31.906},{"x":1755811382888,"y":31.675},{"x":1755811322763,"y":35.834},{"x":1755811262640,"y":36.575},{"x":1755811202513,"y":35.629},{"x":1755811142387,"y":37.45},{"x":1755811082265,"y":35.327},{"x":1755811022126,"y":33.281},{"x":1755810961981,"y":31.82},{"x":1755810901859,"y":31.579},{"x":1755810841737,"y":35.222},{"x":1755810781568,"y":31.249},{"x":1755810721431,"y":34.751},{"x":1755810661285,"y":34.496},{"x":1755810601126,"y":35.965},{"x":1755810540964,"y":39.942},{"x":1755810480849,"y":36.593},{"x":1755810420716,"y":32.332},{"x":1755810360598,"y":35.639},{"x":1755810300545,"y":33.493},{"x":1755810240370,"y":38.089},{"x":1755810180054,"y":36.054},{"x":1755810122901,"y":33.523},{"x":1755810062771,"y":35.284},{"x":1755810002666,"y":37.276},{"x":1755809942513,"y":40.337},{"x":1755809882394,"y":37.955},{"x":1755809822270,"y":38.753},{"x":1755809762147,"y":33.964},{"x":1755809702023,"y":34.674},{"x":1755809641872,"y":38.785},{"x":1755809581748,"y":35.358},{"x":1755809521625,"y":35.98},{"x":1755809461495,"y":36.697},{"x":1755809401366,"y":33.476},{"x":1755809341234,"y":37.544},{"x":1755809281107,"y":40.0},{"x":1755809220976,"y":40.006},{"x":1755809160850,"y":42.224},{"x":1755809100776,"y":39.434},{"x":1755809040580,"y":41.663},{"x":1755808980502,"y":37.808},{"x":1755808920298,"y":35.494},{"x":1755808860221,"y":35.633},{"x":1755808802967,"y":35.156},{"x":1755808742812,"y":39.502},{"x":1755808682673,"y":33.25},{"x":1755808622554,"y":32.424},{"x":1755808562425,"y":32.071},{"x":1755808502302,"y":51.43},{"x":1755808442176,"y":65.47},{"x":1755808382054,"y":63.779},{"x":1755808321920,"y":63.794},{"x":1755808261783,"y":65.492},{"x":1755808201668,"y":49.372},{"x":1755808141537,"y":35.406},{"x":1755808081400,"y":33.9},{"x":1755808021287,"y":31.69},{"x":1755807961146,"y":32.215},{"x":1755807900998,"y":41.24},{"x":1755807840867,"y":46.736},{"x":1755807780755,"y":62.585},{"x":1755807720641,"y":61.78},{"x":1755807660602,"y":63.581},{"x":1755807600456,"y":54.436},{"x":1755807542967,"y":47.128},{"x":1755807482824,"y":32.459},{"x":1755807422704,"y":34.804},{"x":1755807362567,"y":32.888},{"x":1755807302436,"y":42.892},{"x":1755807242312,"y":65.38},{"x":1755807182186,"y":60.006},{"x":1755807122039,"y":58.771},{"x":1755807061852,"y":57.965},{"x":1755807001706,"y":65.192},{"x":1755806941561,"y":60.881},{"x":1755806881439,"y":39.407},{"x":1755806821313,"y":38.216},{"x":1755806761194,"y":40.132},{"x":1755806701066,"y":43.181},{"x":1755806640928,"y":42.197},{"x":1755806580811,"y":39.114},{"x":1755806520704,"y":39.467},{"x":1755806460709,"y":36.503},{"x":1755806400409,"y":36.623},{"x":1755806340270,"y":35.008},{"x":1755806283017,"y":34.969},{"x":1755806222877,"y":35.748},{"x":1755806162747,"y":35.171},{"x":1755806102629,"y":49.596},{"x":1755806042506,"y":40.094},{"x":1755805982375,"y":36.67},{"x":1755805922250,"y":43.687},{"x":1755805862126,"y":38.327},{"x":1755805801994,"y":37.687},{"x":1755805741863,"y":45.692},{"x":1755805681734,"y":42.696},{"x":1755805621611,"y":62.269},{"x":1755805561491,"y":44.407},{"x":1755805501388,"y":45.892},{"x":1755805441248,"y":46.127},{"x":1755805381121,"y":58.612},{"x":1755805320991,"y":54.392},{"x":1755805260858,"y":52.774},{"x":1755805200791,"y":51.36},{"x":1755805140606,"y":44.434},{"x":1755805080469,"y":46.73},{"x":1755805020343,"y":42.012},{"x":1755804960136,"y":52.534},{"x":1755804902912,"y":52.64},{"x":1755804842791,"y":55.348},{"x":1755804782668,"y":53.59},{"x":1755804722545,"y":59.261},{"x":1755804662441,"y":46.22},{"x":1755804602298,"y":45.725},{"x":1755804542171,"y":49.326},{"x":1755804482046,"y":44.689},{"x":1755804421916,"y":35.798},{"x":1755804361788,"y":35.446},{"x":1755804301665,"y":33.023},{"x":1755804241530,"y":34.735},{"x":1755804181389,"y":36.586},{"x":1755804121261,"y":39.113},{"x":1755804061125,"y":40.409},{"x":1755804000990,"y":37.208},{"x":1755803940838,"y":40.763},{"x":1755803880726,"y":35.816},{"x":1755803820634,"y":56.378},{"x":1755803760562,"y":37.207},{"x":1755803700356,"y":35.478},{"x":1755803643031,"y":35.42},{"x":1755803582880,"y":43.198},{"x":1755803522718,"y":53.852},{"x":1755803462537,"y":50.177},{"x":1755803402400,"y":48.943},{"x":1755803342263,"y":48.924},{"x":1755803282137,"y":44.102},{"x":1755803221994,"y":49.141},{"x":1755803161870,"y":43.416},{"x":1755803101733,"y":38.25},{"x":1755803041611,"y":43.187},{"x":1755802981479,"y":38.777},{"x":1755802921355,"y":41.449},{"x":1755802861229,"y":37.474},{"x":1755802801127,"y":43.03},{"x":1755802740862,"y":44.978},{"x":1755802680742,"y":40.459},{"x":1755802620631,"y":44.582},{"x":1755802560604,"y":57.197},{"x":1755802500298,"y":38.998},{"x":1755802442974,"y":54.119},{"x":1755802382838,"y":51.4},{"x":1755802322711,"y":50.68},{"x":1755802262591,"y":45.481},{"x":1755802202460,"y":45.732},{"x":1755802142341,"y":41.731},{"x":1755802082218,"y":44.006},{"x":1755802022083,"y":46.457},{"x":1755801961938,"y":39.251},{"x":1755801901822,"y":54.742},{"x":1755801841691,"y":37.909},{"x":1755801781561,"y":40.043},{"x":1755801721445,"y":35.46},{"x":1755801661297,"y":39.907},{"x":1755801601210,"y":34.463},{"x":1755801541039,"y":38.782},{"x":1755801480911,"y":43.321},{"x":1755801420781,"y":43.44},{"x":1755801360711,"y":50.948},{"x":1755801300566,"y":48.983},{"x":1755801240458,"y":51.42},{"x":1755801180273,"y":43.525},{"x":1755801120069,"y":53.676},{"x":1755801062910,"y":56.894},{"x":1755801002767,"y":54.443},{"x":1755800942641,"y":59.972},{"x":1755800882510,"y":56.621},{"x":1755800822375,"y":46.892},{"x":1755800762246,"y":46.237},{"x":1755800702110,"y":50.268},{"x":1755800641986,"y":56.702},{"x":1755800581852,"y":48.5},{"x":1755800521726,"y":49.714},{"x":1755800461606,"y":51.42},{"x":1755800401472,"y":46.86},{"x":1755800341350,"y":45.828},{"x":1755800281220,"y":62.825},{"x":1755800221095,"y":50.312},{"x":1755800160953,"y":49.032},{"x":1755800100877,"y":48.443},{"x":1755800040738,"y":44.34},{"x":1755799980554,"y":43.324},{"x":1755799920395,"y":50.722},{"x":1755799860294,"y":50.6},{"x":1755799802946,"y":52.67},{"x":1755799742805,"y":48.016},{"x":1755799682679,"y":59.216},{"x":1755799622557,"y":43.991},{"x":1755799562425,"y":53.177},{"x":1755799502302,"y":65.225},{"x":1755799442179,"y":49.006},{"x":1755799382057,"y":49.015},{"x":1755799321916,"y":50.557},{"x":1755799261770,"y":49.196},{"x":1755799201686,"y":57.517},{"x":1755799141411,"y":60.366},{"x":1755799081288,"y":64.369},{"x":1755799021188,"y":61.84},{"x":1755798961023,"y":57.785},{"x":1755798900918,"y":67.153},{"x":1755798840747,"y":50.93},{"x":1755798780635,"y":47.89},{"x":1755798720608,"y":53.713},{"x":1755798660435,"y":67.133},{"x":1755798600340,"y":54.992},{"x":1755798542936,"y":61.604},{"x":1755798482820,"y":65.665},{"x":1755798422679,"y":50.177},{"x":1755798362550,"y":51.042},{"x":1755798302431,"y":56.063},{"x":1755798242294,"y":54.426},{"x":1755798182166,"y":54.546},{"x":1755798122041,"y":52.525},{"x":1755798061907,"y":60.646},{"x":1755798001792,"y":65.17},{"x":1755797941672,"y":57.653},{"x":1755797881542,"y":54.84},{"x":1755797821409,"y":57.223},{"x":1755797761273,"y":44.972},{"x":1755797701149,"y":46.618},{"x":1755797641022,"y":43.302},{"x":1755797580893,"y":47.299},{"x":1755797520815,"y":50.066},{"x":1755797460634,"y":64.102},{"x":1755797400523,"y":52.829},{"x":1755797340407,"y":65.94},{"x":1755797280248,"y":45.553},{"x":1755797222969,"y":49.778},{"x":1755797162843,"y":50.814},{"x":1755797102716,"y":47.1},{"x":1755797042592,"y":48.222},{"x":1755796982453,"y":53.485},{"x":1755796922324,"y":57.101},{"x":1755796862202,"y":56.875},{"x":1755796802080,"y":68.294},{"x":1755796741937,"y":58.554},{"x":1755796681816,"y":53.143},{"x":1755796621702,"y":49.789},{"x":1755796561573,"y":62.484},{"x":1755796501450,"y":59.809},{"x":1755796441299,"y":56.329},{"x":1755796381157,"y":58.993},{"x":1755796320998,"y":61.636},{"x":1755796260854,"y":54.08},{"x":1755796200793,"y":54.11},{"x":1755796140593,"y":52.722},{"x":1755796080442,"y":46.226},{"x":1755796020304,"y":48.229},{"x":1755795963045,"y":49.613},{"x":1755795902892,"y":45.398},{"x":1755795842750,"y":44.46},{"x":1755795782627,"y":41.248},{"x":1755795722511,"y":44.399},{"x":1755795662303,"y":45.799},{"x":1755795602186,"y":51.202},{"x":1755795542021,"y":47.386},{"x":1755795481890,"y":50.792},{"x":1755795421759,"y":49.578},{"x":1755795361634,"y":57.995},{"x":1755795301508,"y":50.519},{"x":1755795241390,"y":45.432},{"x":1755795181241,"y":55.928},{"x":1755795121109,"y":64.448},{"x":1755795060970,"y":47.656},{"x":1755795000873,"y":50.686},{"x":1755794940727,"y":51.906},{"x":1755794880646,"y":36.665},{"x":1755794820497,"y":33.23},{"x":1755794760439,"y":35.273},{"x":1755794700142,"y":29.91},{"x":1755794642892,"y":28.037},{"x":1755794582772,"y":24.122},{"x":1755794522648,"y":32.34},{"x":1755794462525,"y":36.49},{"x":1755794402398,"y":38.299},{"x":1755794342271,"y":38.336},{"x":1755794282150,"y":42.364},{"x":1755794222022,"y":47.166},{"x":1755794161890,"y":63.701},{"x":1755794101761,"y":49.622},{"x":1755794041612,"y":48.04},{"x":1755793981500,"y":50.38},{"x":1755793921362,"y":41.924},{"x":1755793861224,"y":43.242},{"x":1755793801141,"y":32.765},{"x":1755793740912,"y":31.94},{"x":1755793680788,"y":32.646},{"x":1755793620689,"y":33.515},{"x":1755793560570,"y":35.562},{"x":1755793500402,"y":30.653},{"x":1755793440273,"y":30.958},{"x":1755793382993,"y":31.343},{"x":1755793322872,"y":32.052},{"x":1755793262741,"y":32.39},{"x":1755793202617,"y":35.449},{"x":1755793142487,"y":42.367},{"x":1755793082345,"y":30.131},{"x":1755793022213,"y":29.629},{"x":1755792962093,"y":41.276},{"x":1755792901953,"y":35.308},{"x":1755792841826,"y":31.453},{"x":1755792781731,"y":34.226},{"x":1755792721529,"y":36.361},{"x":1755792661380,"y":34.912},{"x":1755792601230,"y":44.653},{"x":1755792541091,"y":28.964},{"x":1755792480955,"y":37.534},{"x":1755792420833,"y":26.004},{"x":1755792360708,"y":30.719},{"x":1755792300606,"y":24.845},{"x":1755792240500,"y":24.203},{"x":1755792180406,"y":36.629},{"x":1755792123003,"y":22.086},{"x":1755792062884,"y":34.453},{"x":1755792002760,"y":28.944},{"x":1755791942627,"y":26.093},{"x":1755791882492,"y":29.73},{"x":1755791822372,"y":26.784},{"x":1755791762249,"y":29.822},{"x":1755791702115,"y":23.713},{"x":1755791641984,"y":25.504},{"x":1755791581873,"y":33.613},{"x":1755791521743,"y":36.103},{"x":1755791461621,"y":35.924},{"x":1755791401472,"y":36.402},{"x":1755791341343,"y":29.814},{"x":1755791281217,"y":29.93},{"x":1755791221088,"y":35.126},{"x":1755791160927,"y":40.129},{"x":1755791100827,"y":32.674},{"x":1755791040637,"y":31.262},{"x":1755790980469,"y":28.086},{"x":1755790920369,"y":36.265},{"x":1755790860108,"y":28.884},{"x":1755790802899,"y":32.13},{"x":1755790742766,"y":29.363},{"x":1755790682636,"y":27.15},{"x":1755790622498,"y":29.801},{"x":1755790562371,"y":31.463},{"x":1755790502238,"y":32.922},{"x":1755790442111,"y":36.491},{"x":1755790381964,"y":28.808},{"x":1755790321831,"y":31.579},{"x":1755790261713,"y":31.706},{"x":1755790201594,"y":29.828},{"x":1755790141447,"y":36.554},{"x":1755790081318,"y":48.757},{"x":1755790021192,"y":51.234},{"x":1755789961038,"y":52.97},{"x":1755789900910,"y":46.471},{"x":1755789840782,"y":32.686},{"x":1755789780646,"y":26.484},{"x":1755789720538,"y":34.297},{"x":1755789660398,"y":35.002},{"x":1755789600211,"y":30.62},{"x":1755789542951,"y":22.129},{"x":1755789482822,"y":28.462},{"x":1755789422706,"y":32.833},{"x":1755789362570,"y":33.826},{"x":1755789302449,"y":27.384},{"x":1755789242315,"y":43.247},{"x":1755789182182,"y":32.954},{"x":1755789122047,"y":40.98},{"x":1755789061873,"y":36.979},{"x":1755789001732,"y":27.546},{"x":1755788941600,"y":13.342},{"x":1755788881479,"y":31.548},{"x":1755788821344,"y":29.44},{"x":1755788761230,"y":32.287},{"x":1755788701111,"y":41.614},{"x":1755788640945,"y":29.476},{"x":1755788580823,"y":46.621},{"x":1755788520703,"y":42.128},{"x":1755788460720,"y":27.314},{"x":1755788400527,"y":22.129},{"x":1755788340361,"y":19.225},{"x":1755788280016,"y":29.441},{"x":1755788222896,"y":27.422},{"x":1755788162766,"y":38.339},{"x":1755788102656,"y":57.031},{"x":1755788042526,"y":33.028},{"x":1755787982381,"y":34.673},{"x":1755787922249,"y":24.062},{"x":1755787862125,"y":19.644},{"x":1755787801989,"y":22.901},{"x":1755787741861,"y":42.557},{"x":1755787681736,"y":18.326},{"x":1755787621606,"y":25.87},{"x":1755787561481,"y":31.43},{"x":1755787501420,"y":18.216},{"x":1755787441230,"y":19.73},{"x":1755787381103,"y":20.216},{"x":1755787320943,"y":24.7},{"x":1755787260823,"y":19.084},{"x":1755787200728,"y":19.796},{"x":1755787140568,"y":22.324},{"x":1755787080415,"y":19.906},{"x":1755787020286,"y":15.906},{"x":1755786960171,"y":16.067},{"x":1755786902895,"y":42.397},{"x":1755786842779,"y":52.889},{"x":1755786782657,"y":43.536},{"x":1755786722538,"y":48.518},{"x":1755786662410,"y":41.884},{"x":1755786602289,"y":20.08},{"x":1755786542167,"y":41.012},{"x":1755786482043,"y":35.388},{"x":1755786421911,"y":21.071},{"x":1755786361785,"y":15.816},{"x":1755786301657,"y":35.666},{"x":1755786241537,"y":40.766},{"x":1755786181418,"y":27.071},{"x":1755786121293,"y":49.511},{"x":1755786061161,"y":37.706},{"x":1755786001075,"y":33.059},{"x":1755785940872,"y":25.157},{"x":1755785880750,"y":36.001},{"x":1755785820640,"y":36.286},{"x":1755785760508,"y":51.815},{"x":1755785700364,"y":26.102},{"x":1755785640161,"y":22.825},{"x":1755785582915,"y":35.291},{"x":1755785522753,"y":45.245},{"x":1755785462603,"y":25.632},{"x":1755785402443,"y":40.745},{"x":1755785342324,"y":57.076},{"x":1755785282190,"y":30.527},{"x":1755785222063,"y":24.464},{"x":1755785161924,"y":21.895},{"x":1755785101797,"y":23.212},{"x":1755785041672,"y":38.558},{"x":1755784981552,"y":39.382},{"x":1755784921433,"y":36.839},{"x":1755784861311,"y":42.716},{"x":1755784801312,"y":40.483},{"x":1755784741006,"y":13.654},{"x":1755784680874,"y":14.194},{"x":1755784620759,"y":15.179},{"x":1755784560690,"y":15.067},{"x":1755784500509,"y":16.028},{"x":1755784440405,"y":28.786},{"x":1755784380054,"y":21.791},{"x":1755784322896,"y":21.299},{"x":1755784262773,"y":19.163},{"x":1755784202648,"y":20.74},{"x":1755784142516,"y":15.839},{"x":1755784082388,"y":13.417},{"x":1755784022258,"y":20.702},{"x":1755783962135,"y":12.283},{"x":1755783901993,"y":14.924},{"x":1755783841863,"y":17.094},{"x":1755783781734,"y":19.976},{"x":1755783721612,"y":25.592},{"x":1755783661486,"y":23.25},{"x":1755783601365,"y":28.427},{"x":1755783541233,"y":35.9},{"x":1755783481109,"y":34.394},{"x":1755783420968,"y":39.894},{"x":1755783360884,"y":42.979},{"x":1755783300742,"y":30.269},{"x":1755783240590,"y":21.932},{"x":1755783180393,"y":28.738},{"x":1755783122998,"y":14.599},{"x":1755783062879,"y":15.656},{"x":1755783002755,"y":35.711},{"x":1755782942631,"y":37.759},{"x":1755782882508,"y":33.751},{"x":1755782822372,"y":29.798},{"x":1755782762248,"y":32.929},{"x":1755782702124,"y":20.498},{"x":1755782641981,"y":8.948},{"x":1755782581853,"y":14.592},{"x":1755782521774,"y":18.61},{"x":1755782461582,"y":23.434},{"x":1755782401460,"y":21.544},{"x":1755782341336,"y":12.336},{"x":1755782281203,"y":12.481},{"x":1755782221067,"y":38.888},{"x":1755782160907,"y":23.326},{"x":1755782100822,"y":31.208},{"x":1755782040710,"y":43.469},{"x":1755781980522,"y":14.65},{"x":1755781920343,"y":32.947},{"x":1755781860187,"y":39.832},{"x":1755781802880,"y":21.317},{"x":1755781742754,"y":25.108},{"x":1755781682619,"y":20.303},{"x":1755781622484,"y":25.249},{"x":1755781562362,"y":19.332},{"x":1755781502241,"y":24.718},{"x":1755781442111,"y":24.518},{"x":1755781381963,"y":20.483},{"x":1755781321833,"y":21.581},{"x":1755781261709,"y":17.802},{"x":1755781201632,"y":19.754},{"x":1755781141435,"y":34.213},{"x":1755781081308,"y":11.508},{"x":1755781021181,"y":18.564},{"x":1755780961014,"y":14.064},{"x":1755780900905,"y":15.366},{"x":1755780840737,"y":11.585},{"x":1755780780613,"y":16.318},{"x":1755780720431,"y":15.39},{"x":1755780660314,"y":12.994},{"x":1755780603029,"y":19.638},{"x":1755780542886,"y":17.221},{"x":1755780482752,"y":13.02},{"x":1755780422625,"y":28.051},{"x":1755780362495,"y":20.419},{"x":1755780302369,"y":31.934},{"x":1755780242249,"y":33.488},{"x":1755780182125,"y":31.295},{"x":1755780121991,"y":20.362},{"x":1755780061866,"y":19.985},{"x":1755780001735,"y":17.636},{"x":1755779941612,"y":11.794},{"x":1755779881473,"y":18.488},{"x":1755779821354,"y":19.049},{"x":1755779761223,"y":21.166},{"x":1755779701107,"y":15.136},{"x":1755779640959,"y":17.765},{"x":1755779580837,"y":38.129},{"x":1755779520754,"y":24.088},{"x":1755779460626,"y":29.209},{"x":1755779400518,"y":29.338},{"x":1755779340421,"y":35.692},{"x":1755779280259,"y":21.196},{"x":1755779222959,"y":17.285},{"x":1755779162828,"y":16.692},{"x":1755779102694,"y":18.54},{"x":1755779042572,"y":14.215},{"x":1755778982446,"y":57.775},{"x":1755778922311,"y":26.352},{"x":1755778862174,"y":28.066},{"x":1755778802042,"y":19.447},{"x":1755778741899,"y":26.43},{"x":1755778681770,"y":21.793},{"x":1755778621631,"y":13.362},{"x":1755778561510,"y":15.414},{"x":1755778501371,"y":14.251},{"x":1755778441230,"y":10.126},{"x":1755778381092,"y":9.632},{"x":1755778320939,"y":23.27},{"x":1755778260758,"y":32.536},{"x":1755778200665,"y":30.19},{"x":1755778140463,"y":23.915},{"x":1755778080297,"y":23.5},{"x":1755778023013,"y":13.668},{"x":1755777962881,"y":16.868},{"x":1755777902763,"y":13.715},{"x":1755777842633,"y":17.068},{"x":1755777782514,"y":15.583},{"x":1755777722388,"y":27.397},{"x":1755777662257,"y":23.632},{"x":1755777602122,"y":29.849},{"x":1755777541904,"y":30.863},{"x":1755777481771,"y":32.849},{"x":1755777421640,"y":18.757},{"x":1755777361513,"y":16.687},{"x":1755777301399,"y":14.532},{"x":1755777241268,"y":17.339},{"x":1755777181140,"y":22.668},{"x":1755777121006,"y":17.27},{"x":1755777060875,"y":26.945},{"x":1755777000766,"y":28.326},{"x":1755776940627,"y":23.802},{"x":1755776880605,"y":24.444},{"x":1755776820350,"y":37.514},{"x":1755776760204,"y":20.056},{"x":1755776702933,"y":23.062},{"x":1755776642825,"y":17.881},{"x":1755776582692,"y":17.813},{"x":1755776522595,"y":12.954},{"x":1755776462427,"y":14.695},{"x":1755776402306,"y":17.419},{"x":1755776342182,"y":11.132},{"x":1755776282051,"y":9.994},{"x":1755776221918,"y":14.791},{"x":1755776161768,"y":20.898},{"x":1755776101637,"y":14.302},{"x":1755776041506,"y":15.152},{"x":1755775981379,"y":14.605},{"x":1755775921260,"y":17.017},{"x":1755775861142,"y":12.959},{"x":1755775800983,"y":19.715},{"x":1755775740814,"y":32.248},{"x":1755775680720,"y":39.15},{"x":1755775620574,"y":35.015},{"x":1755775560427,"y":33.55},{"x":1755775500262,"y":25.685},{"x":1755775443007,"y":11.948},{"x":1755775382867,"y":16.061},{"x":1755775322740,"y":16.955},{"x":1755775262617,"y":26.689},{"x":1755775202505,"y":27.98},{"x":1755775142384,"y":27.296},{"x":1755775082237,"y":27.205},{"x":1755775022130,"y":22.553},{"x":1755774961968,"y":12.826},{"x":1755774901839,"y":16.75},{"x":1755774841713,"y":16.268},{"x":1755774781578,"y":16.348},{"x":1755774721429,"y":21.917},{"x":1755774661283,"y":22.408},{"x":1755774601154,"y":20.627},{"x":1755774540979,"y":24.211},{"x":1755774480837,"y":31.931},{"x":1755774420711,"y":15.668},{"x":1755774360586,"y":15.911},{"x":1755774300550,"y":12.688},{"x":1755774240306,"y":13.885},{"x":1755774182964,"y":18.001},{"x":1755774122842,"y":16.003},{"x":1755774062733,"y":9.9},{"x":1755774002574,"y":28.669},{"x":1755773942428,"y":8.723},{"x":1755773882304,"y":9.185},{"x":1755773822180,"y":11.508},{"x":1755773762044,"y":10.816},{"x":1755773701892,"y":17.498},{"x":1755773641768,"y":11.654},{"x":1755773581641,"y":18.827},{"x":1755773521516,"y":22.904},{"x":1755773461401,"y":28.54},{"x":1755773401249,"y":30.998},{"x":1755773341127,"y":41.677},{"x":1755773280987,"y":23.359},{"x":1755773220858,"y":26.207},{"x":1755773160729,"y":24.149},{"x":1755773100678,"y":35.899},{"x":1755773040499,"y":12.748},{"x":1755772980364,"y":27.707},{"x":1755772922968,"y":11.005},{"x":1755772862852,"y":8.918},{"x":1755772802700,"y":11.63},{"x":1755772742583,"y":18.21},{"x":1755772682459,"y":26.899},{"x":1755772622329,"y":21.11},{"x":1755772562188,"y":21.355},{"x":1755772502070,"y":41.114},{"x":1755772441940,"y":7.886},{"x":1755772381815,"y":12.721},{"x":1755772321695,"y":25.874},{"x":1755772261582,"y":23.114},{"x":1755772201456,"y":10.278},{"x":1755772141312,"y":10.496},{"x":1755772081189,"y":17.052},{"x":1755772021068,"y":17.461},{"x":1755771960941,"y":13.513},{"x":1755771900830,"y":23.872},{"x":1755771840727,"y":24.623},{"x":1755771780600,"y":26.576},{"x":1755771720466,"y":23.91},{"x":1755771660423,"y":30.995},{"x":1755771602987,"y":15.79},{"x":1755771542877,"y":29.839},{"x":1755771482740,"y":16.934},{"x":1755771422644,"y":19.172},{"x":1755771362494,"y":19.288},{"x":1755771302374,"y":29.58},{"x":1755771242262,"y":26.482},{"x":1755771182106,"y":26.809},{"x":1755771121948,"y":24.815},{"x":1755771061810,"y":22.896},{"x":1755771001585,"y":11.13},{"x":1755770941452,"y":21.037},{"x":1755770881317,"y":18.922},{"x":1755770821202,"y":13.177},{"x":1755770761073,"y":18.422},{"x":1755770700967,"y":17.023},{"x":1755770640823,"y":35.248},{"x":1755770580664,"y":27.348},{"x":1755770520590,"y":25.93},{"x":1755770460401,"y":24.588},{"x":1755770400785,"y":26.245},{"x":1755770342923,"y":15.763},{"x":1755770282799,"y":22.174},{"x":1755770222687,"y":23.084},{"x":1755770162538,"y":38.491},{"x":1755770102414,"y":22.537},{"x":1755770042290,"y":35.412},{"x":1755769982157,"y":34.076},{"x":1755769922020,"y":31.198},{"x":1755769861881,"y":28.769},{"x":1755769801750,"y":32.992},{"x":1755769741624,"y":17.501},{"x":1755769681489,"y":20.908},{"x":1755769621372,"y":18.556},{"x":1755769561237,"y":26.26},{"x":1755769501149,"y":29.542},{"x":1755769440923,"y":24.454},{"x":1755769380801,"y":25.283},{"x":1755769320680,"y":20.719},{"x":1755769260579,"y":27.502},{"x":1755769200429,"y":30.072},{"x":1755769140268,"y":32.978},{"x":1755769082974,"y":23.977},{"x":1755769022855,"y":27.851},{"x":1755768962720,"y":16.19},{"x":1755768902584,"y":14.087},{"x":1755768842473,"y":19.661},{"x":1755768782334,"y":21.365},{"x":1755768722206,"y":20.531},{"x":1755768662081,"y":29.436},{"x":1755768601944,"y":33.985},{"x":1755768541824,"y":34.144},{"x":1755768481692,"y":33.103},{"x":1755768421558,"y":27.638},{"x":1755768361429,"y":17.162},{"x":1755768301304,"y":17.023},{"x":1755768241182,"y":16.253},{"x":1755768181051,"y":15.973},{"x":1755768120909,"y":19.487},{"x":1755768060783,"y":25.057},{"x":1755768000764,"y":23.777},{"x":1755767940595,"y":23.19},{"x":1755767880488,"y":24.698},{"x":1755767820275,"y":18.161},{"x":1755767763015,"y":19.307},{"x":1755767702848,"y":14.177},{"x":1755767642728,"y":18.42},{"x":1755767582594,"y":17.13},{"x":1755767522421,"y":22.309},{"x":1755767462205,"y":18.378},{"x":1755767402047,"y":18.965},{"x":1755767341915,"y":35.456},{"x":1755767281791,"y":35.839},{"x":1755767221688,"y":47.089},{"x":1755767161550,"y":53.333},{"x":1755767101426,"y":60.978},{"x":1755767041301,"y":46.658},{"x":1755766981168,"y":46.742},{"x":1755766921040,"y":33.008},{"x":1755766860954,"y":41.875},{"x":1755766801563,"y":27.692},{"x":1755766740769,"y":30.415},{"x":1755766680523,"y":25.675},{"x":1755766620492,"y":25.854},{"x":1755766560329,"y":37.934},{"x":1755766502949,"y":30.889},{"x":1755766442800,"y":30.127},{"x":1755766382676,"y":28.973},{"x":1755766322548,"y":28.944},{"x":1755766262417,"y":17.191},{"x":1755766202294,"y":20.585},{"x":1755766142165,"y":19.75},{"x":1755766082024,"y":21.172},{"x":1755766021939,"y":22.948},{"x":1755765961752,"y":22.114},{"x":1755765901629,"y":22.051},{"x":1755765841503,"y":44.38},{"x":1755765781383,"y":48.052},{"x":1755765721266,"y":44.676},{"x":1755765661113,"y":53.821},{"x":1755765600976,"y":45.228},{"x":1755765540855,"y":20.132},{"x":1755765480719,"y":28.208},{"x":1755765420603,"y":25.436},{"x":1755765360510,"y":22.646},{"x":1755765300465,"y":22.43},{"x":1755765240234,"y":22.426},{"x":1755765182939,"y":25.393},{"x":1755765122838,"y":27.13},{"x":1755765062703,"y":41.342},{"x":1755765002580,"y":25.046},{"x":1755764942449,"y":26.029},{"x":1755764882332,"y":24.401},{"x":1755764822205,"y":23.968},{"x":1755764762069,"y":24.095},{"x":1755764701935,"y":25.373},{"x":1755764641825,"y":23.758},{"x":1755764581678,"y":56.838},{"x":1755764521555,"y":44.302},{"x":1755764461415,"y":52.585},{"x":1755764401292,"y":44.095},{"x":1755764341158,"y":49.847},{"x":1755764281017,"y":26.099},{"x":1755764220907,"y":29.976},{"x":1755764160769,"y":26.582},{"x":1755764100686,"y":25.96},{"x":1755764040475,"y":27.876},{"x":1755763980262,"y":22.962},{"x":1755763920183,"y":26.93},{"x":1755763862911,"y":23.896},{"x":1755763802739,"y":25.066},{"x":1755763742620,"y":25.916},{"x":1755763682490,"y":26.49},{"x":1755763622380,"y":23.394},{"x":1755763562243,"y":29.533},{"x":1755763502118,"y":25.248},{"x":1755763441982,"y":27.641},{"x":1755763381861,"y":29.934},{"x":1755763321733,"y":34.789},{"x":1755763261617,"y":29.92},{"x":1755763201465,"y":29.832},{"x":1755763141288,"y":27.526},{"x":1755763081161,"y":33.65},{"x":1755763021054,"y":26.513},{"x":1755762960894,"y":25.906},{"x":1755762900808,"y":22.585},{"x":1755762840644,"y":24.726},{"x":1755762780534,"y":35.446},{"x":1755762720394,"y":28.009},{"x":1755762662977,"y":23.812},{"x":1755762602859,"y":24.598},{"x":1755762542705,"y":26.287},{"x":1755762482579,"y":33.343},{"x":1755762422458,"y":31.61},{"x":1755762362331,"y":36.407},{"x":1755762302214,"y":38.182},{"x":1755762242092,"y":37.837},{"x":1755762181935,"y":39.726},{"x":1755762121799,"y":37.406},{"x":1755762061685,"y":27.871},{"x":1755762001560,"y":29.638},{"x":1755761941439,"y":35.45},{"x":1755761881301,"y":31.195},{"x":1755761821182,"y":24.817},{"x":1755761761031,"y":24.226},{"x":1755761700937,"y":36.116},{"x":1755761640791,"y":30.35},{"x":1755761580666,"y":31.27},{"x":1755761520537,"y":27.796},{"x":1755761460462,"y":26.526},{"x":1755761400346,"y":27.727},{"x":1755761342904,"y":31.814},{"x":1755761282785,"y":34.165},{"x":1755761222661,"y":37.631},{"x":1755761162539,"y":32.473},{"x":1755761102417,"y":29.837},{"x":1755761042275,"y":28.169},{"x":1755760982146,"y":33.137},{"x":1755760921992,"y":34.657},{"x":1755760861895,"y":30.337},{"x":1755760801724,"y":31.022},{"x":1755760741601,"y":30.559},{"x":1755760681478,"y":27.227},{"x":1755760621360,"y":40.468},{"x":1755760561219,"y":28.854},{"x":1755760501097,"y":28.301},{"x":1755760440952,"y":27.797},{"x":1755760380834,"y":27.415},{"x":1755760320767,"y":24.235},{"x":1755760260720,"y":46.195},{"x":1755760200359,"y":36.413},{"x":1755760140305,"y":44.598},{"x":1755760082926,"y":39.066},{"x":1755760022808,"y":53.245},{"x":1755759962679,"y":31.081},{"x":1755759902543,"y":25.513},{"x":1755759842422,"y":24.756},{"x":1755759782303,"y":29.78},{"x":1755759722162,"y":26.268},{"x":1755759662048,"y":22.734},{"x":1755759601868,"y":23.364},{"x":1755759541729,"y":23.717},{"x":1755759481613,"y":23.052},{"x":1755759421485,"y":25.848},{"x":1755759361396,"y":38.137},{"x":1755759301143,"y":30.396},{"x":1755759241020,"y":31.58},{"x":1755759180879,"y":32.831},{"x":1755759120781,"y":29.57},{"x":1755759060668,"y":39.223},{"x":1755759000564,"y":40.987},{"x":1755758940398,"y":41.484},{"x":1755758880333,"y":34.506},{"x":1755758823009,"y":40.158},{"x":1755758762879,"y":39.492},{"x":1755758702740,"y":30.677},{"x":1755758642625,"y":40.814},{"x":1755758582495,"y":36.463},{"x":1755758522371,"y":28.697},{"x":1755758462250,"y":39.556},{"x":1755758402116,"y":33.364},{"x":1755758341978,"y":38.311},{"x":1755758281843,"y":23.611},{"x":1755758221715,"y":23.538},{"x":1755758161590,"y":37.988},{"x":1755758101454,"y":25.97},{"x":1755758041324,"y":48.682},{"x":1755757981195,"y":26.933},{"x":1755757921053,"y":46.507},{"x":1755757860917,"y":30.942},{"x":1755757800858,"y":44.782},{"x":1755757740687,"y":28.952},{"x":1755757680598,"y":46.679},{"x":1755757620459,"y":28.054},{"x":1755757560389,"y":42.259},{"x":1755757503013,"y":33.209},{"x":1755757442900,"y":43.345},{"x":1755757382765,"y":43.219},{"x":1755757322625,"y":27.894},{"x":1755757262501,"y":27.724},{"x":1755757202371,"y":31.014},{"x":1755757142247,"y":29.416},{"x":1755757082112,"y":26.047},{"x":1755757021974,"y":26.018},{"x":1755756961839,"y":26.0},{"x":1755756901718,"y":26.868},{"x":1755756841592,"y":26.366},{"x":1755756781458,"y":27.455},{"x":1755756721291,"y":25.096},{"x":1755756661142,"y":26.387},{"x":1755756600982,"y":37.121},{"x":1755756540849,"y":40.542},{"x":1755756480753,"y":36.066},{"x":1755756420645,"y":33.938},{"x":1755756360544,"y":35.645},{"x":1755756300343,"y":28.934},{"x":1755756243002,"y":29.19},{"x":1755756182885,"y":25.771},{"x":1755756122758,"y":21.433},{"x":1755756062637,"y":21.661},{"x":1755756002533,"y":24.125},{"x":1755755942359,"y":22.579},{"x":1755755882232,"y":24.439},{"x":1755755822096,"y":26.251},{"x":1755755761965,"y":24.434},{"x":1755755701836,"y":26.447},{"x":1755755641694,"y":25.435},{"x":1755755581570,"y":26.664},{"x":1755755521434,"y":26.718},{"x":1755755461313,"y":26.615},{"x":1755755401182,"y":26.68},{"x":1755755341033,"y":24.826},{"x":1755755280905,"y":29.896},{"x":1755755220784,"y":34.668},{"x":1755755160661,"y":35.424},{"x":1755755100594,"y":33.215},{"x":1755755040476,"y":34.35},{"x":1755754980307,"y":33.074},{"x":1755754922985,"y":21.734},{"x":1755754862857,"y":25.961},{"x":1755754802732,"y":26.885},{"x":1755754742612,"y":27.151},{"x":1755754682481,"y":25.586},{"x":1755754622352,"y":24.968},{"x":1755754562233,"y":22.922},{"x":1755754502116,"y":22.662},{"x":1755754441972,"y":35.483},{"x":1755754381851,"y":36.688},{"x":1755754321724,"y":34.787},{"x":1755754261597,"y":39.053},{"x":1755754201477,"y":38.347},{"x":1755754141353,"y":39.053},{"x":1755754081230,"y":36.91},{"x":1755754021100,"y":34.118},{"x":1755753960968,"y":37.698},{"x":1755753900851,"y":29.02},{"x":1755753840698,"y":28.229},{"x":1755753780612,"y":26.394},{"x":1755753720501,"y":23.354},{"x":1755753660197,"y":24.8},{"x":1755753602967,"y":30.048},{"x":1755753542844,"y":28.996},{"x":1755753482715,"y":26.843},{"x":1755753422582,"y":30.419},{"x":1755753362454,"y":41.798},{"x":1755753302326,"y":48.144},{"x":1755753242202,"y":48.024},{"x":1755753182039,"y":43.22},{"x":1755753121863,"y":40.439},{"x":1755753061754,"y":30.404},{"x":1755753001602,"y":30.758},{"x":1755752941468,"y":26.123},{"x":1755752881338,"y":26.767},{"x":1755752821207,"y":26.152},{"x":1755752761068,"y":29.414},{"x":1755752700937,"y":30.404},{"x":1755752640815,"y":33.227},{"x":1755752580692,"y":31.254},{"x":1755752520594,"y":26.758},{"x":1755752460472,"y":28.315},{"x":1755752400554,"y":25.726},{"x":1755752342989,"y":25.099},{"x":1755752282852,"y":25.064},{"x":1755752222732,"y":25.871},{"x":1755752162590,"y":28.238},{"x":1755752102453,"y":29.273},{"x":1755752042329,"y":32.802},{"x":1755751982195,"y":31.55},{"x":1755751922057,"y":28.937},{"x":1755751861883,"y":26.946},{"x":1755751801760,"y":27.036},{"x":1755751741624,"y":31.432},{"x":1755751681502,"y":26.131},{"x":1755751621375,"y":26.34},{"x":1755751561246,"y":28.442},{"x":1755751501145,"y":28.145},{"x":1755751440969,"y":27.918},{"x":1755751380850,"y":27.618},{"x":1755751320721,"y":28.318},{"x":1755751260638,"y":29.587},{"x":1755751200487,"y":33.382},{"x":1755751140294,"y":40.645},{"x":1755751082975,"y":39.863},{"x":1755751022849,"y":37.878},{"x":1755750962743,"y":39.426},{"x":1755750902608,"y":29.532},{"x":1755750842480,"y":28.828},{"x":1755750782354,"y":31.303},{"x":1755750722198,"y":27.107},{"x":1755750662065,"y":26.52},{"x":1755750601922,"y":28.006},{"x":1755750541784,"y":28.476},{"x":1755750481655,"y":32.429},{"x":1755750421511,"y":28.5},{"x":1755750361385,"y":27.485},{"x":1755750301244,"y":24.818},{"x":1755750241110,"y":28.015},{"x":1755750180968,"y":27.57},{"x":1755750120844,"y":29.428},{"x":1755750060721,"y":30.122},{"x":1755750000642,"y":28.936},{"x":1755749940420,"y":31.69},{"x":1755749880303,"y":34.273},{"x":1755749822957,"y":31.978},{"x":1755749762831,"y":28.924},{"x":1755749702706,"y":28.888},{"x":1755749642558,"y":29.705},{"x":1755749582390,"y":26.539},{"x":1755749522273,"y":33.266},{"x":1755749462104,"y":29.156},{"x":1755749401956,"y":27.275},{"x":1755749341830,"y":34.487},{"x":1755749281703,"y":37.159},{"x":1755749221577,"y":38.62},{"x":1755749161454,"y":34.36},{"x":1755749101340,"y":42.314},{"x":1755749041199,"y":32.123},{"x":1755748981067,"y":30.403},{"x":1755748920922,"y":27.935},{"x":1755748860870,"y":27.287},{"x":1755748800971,"y":36.968},{"x":1755748740424,"y":49.049},{"x":1755748680291,"y":48.707},{"x":1755748622998,"y":49.723},{"x":1755748562876,"y":49.513},{"x":1755748502758,"y":39.581},{"x":1755748442631,"y":31.421},{"x":1755748382519,"y":30.686},{"x":1755748322381,"y":28.94},{"x":1755748262262,"y":32.67},{"x":1755748202130,"y":28.504},{"x":1755748141985,"y":29.803},{"x":1755748081846,"y":26.699},{"x":1755748021730,"y":28.427},{"x":1755747961607,"y":47.899},{"x":1755747901486,"y":43.47},{"x":1755747841353,"y":44.314},{"x":1755747781234,"y":47.476},{"x":1755747721105,"y":45.385},{"x":1755747660958,"y":31.405},{"x":1755747600833,"y":30.313},{"x":1755747540652,"y":30.424},{"x":1755747480555,"y":31.022},{"x":1755747420419,"y":32.582},{"x":1755747360336,"y":34.739},{"x":1755747302994,"y":37.094},{"x":1755747242870,"y":32.995},{"x":1755747182740,"y":34.606},{"x":1755747122611,"y":33.151},{"x":1755747062493,"y":43.774},{"x":1755747002358,"y":48.161},{"x":1755746942225,"y":41.352},{"x":1755746882098,"y":40.123},{"x":1755746821972,"y":40.966},{"x":1755746761838,"y":35.398},{"x":1755746701710,"y":39.062},{"x":1755746641577,"y":35.342},{"x":1755746581444,"y":35.59},{"x":1755746521321,"y":32.196},{"x":1755746461196,"y":30.905},{"x":1755746401054,"y":27.806},{"x":1755746340907,"y":28.828},{"x":1755746280790,"y":29.678},{"x":1755746220778,"y":29.792},{"x":1755746160553,"y":29.976},{"x":1755746100360,"y":31.211},{"x":1755746040068,"y":29.224},{"x":1755745982867,"y":28.298},{"x":1755745922734,"y":28.212},{"x":1755745862577,"y":27.61},{"x":1755745802439,"y":27.805},{"x":1755745742320,"y":31.588},{"x":1755745682184,"y":27.446},{"x":1755745621114,"y":27.391},{"x":1755745560974,"y":30.114},{"x":1755745500847,"y":31.118},{"x":1755745440769,"y":50.113},{"x":1755745382725,"y":45.737},{"x":1755745322572,"y":41.17},{"x":1755745262387,"y":41.396},{"x":1755745200852,"y":36.88},{"x":1755745140491,"y":31.583},{"x":1755745080289,"y":28.343},{"x":1755745020205,"y":28.014},{"x":1755744962936,"y":29.884},{"x":1755744902794,"y":29.728},{"x":1755744842683,"y":28.61},{"x":1755744782545,"y":38.693},{"x":1755744722409,"y":28.913},{"x":1755744662289,"y":29.382},{"x":1755744602140,"y":29.435},{"x":1755744542001,"y":28.895},{"x":1755744481874,"y":33.74},{"x":1755744421747,"y":27.872},{"x":1755744361627,"y":27.122},{"x":1755744301502,"y":28.507},{"x":1755744241356,"y":28.231},{"x":1755744181212,"y":34.457},{"x":1755744121064,"y":29.4},{"x":1755744060923,"y":29.336},{"x":1755744000899,"y":28.123},{"x":1755743940635,"y":39.875},{"x":1755743880532,"y":39.674},{"x":1755743820502,"y":38.976},{"x":1755743760306,"y":37.945},{"x":1755743703010,"y":36.857},{"x":1755743642878,"y":25.603},{"x":1755743582761,"y":28.32},{"x":1755743522632,"y":31.95},{"x":1755743462511,"y":31.184},{"x":1755743402390,"y":29.066},{"x":1755743342284,"y":28.546},{"x":1755743282149,"y":33.193},{"x":1755743222033,"y":41.972},{"x":1755743161886,"y":37.847},{"x":1755743101762,"y":38.93},{"x":1755743041632,"y":38.91},{"x":1755742981492,"y":38.387},{"x":1755742921370,"y":43.458},{"x":1755742861215,"y":35.069},{"x":1755742801075,"y":36.84},{"x":1755742740928,"y":35.785},{"x":1755742680812,"y":32.201},{"x":1755742620739,"y":30.668},{"x":1755742560668,"y":25.682},{"x":1755742500451,"y":25.244},{"x":1755742440259,"y":25.36},{"x":1755742380194,"y":25.871},{"x":1755742322876,"y":26.298},{"x":1755742262724,"y":26.141},{"x":1755742202553,"y":28.622},{"x":1755742142435,"y":27.71},{"x":1755742082312,"y":29.866},{"x":1755742022173,"y":29.521},{"x":1755741962029,"y":27.67},{"x":1755741901910,"y":31.782},{"x":1755741841774,"y":25.96},{"x":1755741781668,"y":25.967},{"x":1755741721516,"y":25.753},{"x":1755741661395,"y":26.326},{"x":1755741601382,"y":34.669},{"x":1755741541100,"y":30.414},{"x":1755741480953,"y":31.882},{"x":1755741420830,"y":30.476},{"x":1755741360740,"y":28.295},{"x":1755741300569,"y":29.216},{"x":1755741240430,"y":31.038},{"x":1755741180374,"y":25.855},{"x":1755741122995,"y":25.877},{"x":1755741062870,"y":24.433},{"x":1755741002749,"y":27.605},{"x":1755740942606,"y":28.068},{"x":1755740882482,"y":27.794},{"x":1755740822363,"y":32.03},{"x":1755740762230,"y":29.964},{"x":1755740702097,"y":29.993},{"x":1755740641967,"y":33.035},{"x":1755740581866,"y":31.121},{"x":1755740521707,"y":47.557},{"x":1755740461574,"y":50.064},{"x":1755740401441,"y":48.942},{"x":1755740341314,"y":51.654},{"x":1755740281169,"y":43.889},{"x":1755740221065,"y":25.457},{"x":1755740160914,"y":36.991},{"x":1755740100817,"y":38.774},{"x":1755740040680,"y":42.574},{"x":1755739980566,"y":36.414},{"x":1755739920422,"y":33.98},{"x":1755739860299,"y":28.042},{"x":1755739802990,"y":27.28},{"x":1755739742863,"y":27.916},{"x":1755739682749,"y":26.866},{"x":1755739622621,"y":26.46},{"x":1755739562497,"y":28.97},{"x":1755739502366,"y":43.021},{"x":1755739442241,"y":54.086},{"x":1755739382112,"y":54.09},{"x":1755739321971,"y":56.17},{"x":1755739261842,"y":56.435},{"x":1755739201715,"y":41.524},{"x":1755739141590,"y":29.042},{"x":1755739081471,"y":30.815},{"x":1755739021334,"y":25.854},{"x":1755738961209,"y":26.5},{"x":1755738901082,"y":28.25},{"x":1755738840928,"y":36.66},{"x":1755738780810,"y":43.596},{"x":1755738720711,"y":42.424},{"x":1755738660554,"y":40.272},{"x":1755738600372,"y":35.28},{"x":1755738540358,"y":29.719},{"x":1755738483009,"y":27.391},{"x":1755738422895,"y":27.506},{"x":1755738362759,"y":27.192},{"x":1755738302652,"y":29.623},{"x":1755738242511,"y":30.259},{"x":1755738182390,"y":30.79},{"x":1755738122271,"y":36.797},{"x":1755738062144,"y":32.233},{"x":1755738002094,"y":35.275},{"x":1755737941862,"y":34.752},{"x":1755737881723,"y":31.555},{"x":1755737821603,"y":36.842},{"x":1755737761479,"y":30.277},{"x":1755737701356,"y":28.027},{"x":1755737641231,"y":29.12},{"x":1755737581103,"y":29.186},{"x":1755737520990,"y":31.829},{"x":1755737460818,"y":28.016},{"x":1755737400758,"y":28.1},{"x":1755737340632,"y":32.694},{"x":1755737280468,"y":36.154},{"x":1755737220310,"y":36.09},{"x":1755737160067,"y":34.328},{"x":1755737102900,"y":32.219},{"x":1755737042780,"y":29.938},{"x":1755736982644,"y":29.206},{"x":1755736922523,"y":28.273},{"x":1755736862392,"y":31.669},{"x":1755736802264,"y":27.392},{"x":1755736742132,"y":27.119},{"x":1755736681998,"y":29.32},{"x":1755736621868,"y":30.881},{"x":1755736561742,"y":35.214},{"x":1755736501607,"y":29.999},{"x":1755736441479,"y":30.15},{"x":1755736381359,"y":28.852},{"x":1755736321237,"y":27.45},{"x":1755736261111,"y":27.256},{"x":1755736201029,"y":24.682},{"x":1755736140815,"y":26.208},{"x":1755736080738,"y":26.006},{"x":1755736020542,"y":26.93},{"x":1755735960419,"y":28.927},{"x":1755735900396,"y":31.903},{"x":1755735842952,"y":31.237},{"x":1755735782835,"y":30.413},{"x":1755735722711,"y":29.953},{"x":1755735662576,"y":27.055},{"x":1755735602445,"y":31.343},{"x":1755735542309,"y":30.049},{"x":1755735482185,"y":28.468},{"x":1755735422047,"y":28.116},{"x":1755735361906,"y":29.252},{"x":1755735301779,"y":32.611},{"x":1755735241656,"y":30.984},{"x":1755735181498,"y":35.8},{"x":1755735121333,"y":34.84},{"x":1755735061205,"y":32.323},{"x":1755735000969,"y":35.888},{"x":1755734940827,"y":29.515},{"x":1755734880756,"y":28.883},{"x":1755734820544,"y":29.749},{"x":1755734760477,"y":29.088},{"x":1755734700272,"y":26.495},{"x":1755734642976,"y":28.658},{"x":1755734582842,"y":28.254},{"x":1755734522715,"y":28.957},{"x":1755734462579,"y":29.462},{"x":1755734402464,"y":32.778},{"x":1755734342288,"y":35.772},{"x":1755734282165,"y":28.966},{"x":1755734222024,"y":28.117},{"x":1755734161895,"y":26.304},{"x":1755734101768,"y":26.591},{"x":1755734041641,"y":31.178},{"x":1755733981520,"y":27.512},{"x":1755733921374,"y":25.849},{"x":1755733861243,"y":27.733},{"x":1755733801116,"y":33.234},{"x":1755733740969,"y":34.454},{"x":1755733680844,"y":33.534},{"x":1755733620720,"y":35.471},{"x":1755733560644,"y":28.708},{"x":1755733500543,"y":38.574},{"x":1755733440266,"y":53.626},{"x":1755733382950,"y":52.829},{"x":1755733322829,"y":51.04},{"x":1755733262701,"y":51.589},{"x":1755733202575,"y":42.005},{"x":1755733142444,"y":31.801},{"x":1755733082320,"y":35.407},{"x":1755733022191,"y":30.715},{"x":1755732962063,"y":28.77},{"x":1755732901929,"y":27.794},{"x":1755732841795,"y":26.593},{"x":1755732781684,"y":31.45},{"x":1755732721540,"y":26.654},{"x":1755732661415,"y":35.674},{"x":1755732601289,"y":44.929},{"x":1755732541159,"y":48.407},{"x":1755732481022,"y":48.764},{"x":1755732420870,"y":51.906},{"x":1755732360739,"y":41.11},{"x":1755732300622,"y":29.695},{"x":1755732240473,"y":28.585},{"x":1755732180294,"y":28.588},{"x":1755732120170,"y":27.102},{"x":1755732062902,"y":27.665},{"x":1755732002770,"y":27.996},{"x":1755731942638,"y":26.244},{"x":1755731882491,"y":26.713},{"x":1755731822367,"y":32.615},{"x":1755731762239,"y":26.134},{"x":1755731702112,"y":30.154},{"x":1755731641966,"y":42.241},{"x":1755731581824,"y":39.313},{"x":1755731521669,"y":42.877},{"x":1755731461527,"y":33.479},{"x":1755731401353,"y":35.249},{"x":1755731341225,"y":32.822},{"x":1755731281096,"y":33.184},{"x":1755731220959,"y":30.726},{"x":1755731160846,"y":30.043},{"x":1755731100729,"y":26.252},{"x":1755731040632,"y":25.918},{"x":1755730980527,"y":28.25},{"x":1755730920287,"y":28.384},{"x":1755730860186,"y":34.751},{"x":1755730802909,"y":37.46},{"x":1755730742776,"y":28.598},{"x":1755730682652,"y":28.706},{"x":1755730622548,"y":26.869},{"x":1755730562395,"y":25.95},{"x":1755730502268,"y":34.548},{"x":1755730442139,"y":26.592},{"x":1755730382010,"y":27.973},{"x":1755730321828,"y":28.362},{"x":1755730261698,"y":32.045},{"x":1755730201515,"y":34.894},{"x":1755730141403,"y":33.457},{"x":1755730081265,"y":33.014},{"x":1755730021128,"y":32.041},{"x":1755729960995,"y":27.689},{"x":1755729900930,"y":40.206},{"x":1755729840757,"y":54.133},{"x":1755729780573,"y":52.742},{"x":1755729720432,"y":53.808},{"x":1755729660348,"y":51.923},{"x":1755729600250,"y":53.474},{"x":1755729542956,"y":43.198},{"x":1755729482831,"y":41.538},{"x":1755729422706,"y":40.951},{"x":1755729362582,"y":39.857},{"x":1755729302460,"y":32.728},{"x":1755729242321,"y":34.699},{"x":1755729182197,"y":27.715},{"x":1755729122070,"y":27.118},{"x":1755729061915,"y":27.931},{"x":1755729001795,"y":29.587},{"x":1755728941651,"y":28.616},{"x":1755728881527,"y":28.996},{"x":1755728821394,"y":31.942},{"x":1755728761300,"y":33.582},{"x":1755728701144,"y":39.341},{"x":1755728640997,"y":37.055},{"x":1755728580872,"y":39.281},{"x":1755728520752,"y":34.314},{"x":1755728460586,"y":32.572},{"x":1755728400563,"y":31.847},{"x":1755728340221,"y":30.956},{"x":1755728282946,"y":33.714},{"x":1755728222821,"y":29.144},{"x":1755728162694,"y":30.007},{"x":1755728102577,"y":29.921},{"x":1755728042453,"y":32.6},{"x":1755727982331,"y":41.782},{"x":1755727922192,"y":41.012},{"x":1755727862024,"y":37.812},{"x":1755727801852,"y":40.772},{"x":1755727741721,"y":40.448},{"x":1755727681597,"y":30.532},{"x":1755727621479,"y":35.092},{"x":1755727561345,"y":32.167},{"x":1755727501210,"y":26.75},{"x":1755727441063,"y":27.02},{"x":1755727380930,"y":30.749},{"x":1755727320808,"y":38.644},{"x":1755727260747,"y":33.896},{"x":1755727200676,"y":31.796},{"x":1756936740442,"y":122.007},{"x":1756936680225,"y":121.275},{"x":1756936622918,"y":118.571},{"x":1756936562731,"y":108.925},{"x":1756936502564,"y":116.647},{"x":1756936442387,"y":111.808},{"x":1756936382222,"y":117.52},{"x":1756936322058,"y":119.466},{"x":1756936261677,"y":120.149},{"x":1756936201293,"y":113.503},{"x":1756936141117,"y":121.508},{"x":1756936080942,"y":111.648},{"x":1756936020776,"y":112.222},{"x":1756935960629,"y":96.964},{"x":1756935900572,"y":111.879},{"x":1756935840347,"y":128.826},{"x":1756935780060,"y":123.673},{"x":1756935722852,"y":122.569},{"x":1756935662687,"y":122.722},{"x":1756935602513,"y":114.792},{"x":1756935542347,"y":118.729},{"x":1756935482172,"y":114.703},{"x":1756935421991,"y":112.808},{"x":1756935361860,"y":110.529},{"x":1756935301640,"y":116.557},{"x":1756935241458,"y":113.418},{"x":1756935181293,"y":127.388},{"x":1756935121125,"y":119.08},{"x":1756935060932,"y":129.581},{"x":1756935000838,"y":120.629},{"x":1756934940583,"y":117.37},{"x":1756934880479,"y":119.102},{"x":1756934820261,"y":123.109},{"x":1756934762960,"y":118.207},{"x":1756934702777,"y":130.303},{"x":1756934642605,"y":117.859},{"x":1756934582433,"y":118.78},{"x":1756934522251,"y":119.735},{"x":1756934462081,"y":126.54},{"x":1756934401886,"y":124.876},{"x":1756934341720,"y":114.829},{"x":1756934281516,"y":114.978},{"x":1756934221248,"y":118.696},{"x":1756934161082,"y":123.034},{"x":1756934100936,"y":127.612},{"x":1756934040745,"y":122.169},{"x":1756933980596,"y":114.796},{"x":1756933920421,"y":124.091},{"x":1756933860287,"y":126.723},{"x":1756933802873,"y":129.684},{"x":1756933742704,"y":127.195},{"x":1756933682539,"y":120.774},{"x":1756933622364,"y":120.559},{"x":1756933562200,"y":117.551},{"x":1756933502040,"y":119.653},{"x":1756933441869,"y":110.008},{"x":1756933381713,"y":113.148},{"x":1756933321587,"y":117.66},{"x":1756933261408,"y":121.079},{"x":1756933201044,"y":128.771},{"x":1756933140484,"y":130.609},{"x":1756933080307,"y":119.411},{"x":1756933022883,"y":110.427},{"x":1756932962702,"y":111.619},{"x":1756932902517,"y":119.406},{"x":1756932842345,"y":116.675},{"x":1756932782181,"y":136.92},{"x":1756932722011,"y":120.894},{"x":1756932661650,"y":119.387},{"x":1756932601486,"y":127.863},{"x":1756932541307,"y":139.455},{"x":1756932481137,"y":134.697},{"x":1756932420868,"y":117.976},{"x":1756932360705,"y":111.529},{"x":1756932300641,"y":108.419},{"x":1756932240471,"y":114.358},{"x":1756932180270,"y":131.931},{"x":1756932122951,"y":128.169},{"x":1756932062775,"y":107.888},{"x":1756932002606,"y":112.086},{"x":1756931942424,"y":127.411},{"x":1756931882247,"y":133.453},{"x":1756931822074,"y":138.345},{"x":1756931761684,"y":150.753},{"x":1756931701506,"y":130.648},{"x":1756931641331,"y":121.116},{"x":1756931581163,"y":125.741},{"x":1756931520980,"y":121.342},{"x":1756931460830,"y":122.047},{"x":1756931400668,"y":116.092},{"x":1756931340475,"y":113.896},{"x":1756931280301,"y":116.424},{"x":1756931222939,"y":128.789},{"x":1756931162774,"y":127.079},{"x":1756931102609,"y":120.695},{"x":1756931042437,"y":118.716},{"x":1756930982257,"y":115.756},{"x":1756930922088,"y":135.348},{"x":1756930861909,"y":123.532},{"x":1756930801733,"y":120.282},{"x":1756930741553,"y":116.915},{"x":1756930681381,"y":117.966},{"x":1756930621225,"y":125.69},{"x":1756930561044,"y":118.738},{"x":1756930500907,"y":128.838},{"x":1756930440682,"y":130.678},{"x":1756930380528,"y":130.92},{"x":1756930320311,"y":125.589},{"x":1756930260175,"y":129.788},{"x":1756930202852,"y":128.237},{"x":1756930142668,"y":136.371},{"x":1756930082499,"y":131.077},{"x":1756930022337,"y":121.268},{"x":1756929962167,"y":126.029},{"x":1756929901985,"y":132.754},{"x":1756929841800,"y":131.906},{"x":1756929781660,"y":142.377},{"x":1756929721457,"y":140.764},{"x":1756929661298,"y":142.92},{"x":1756929602303,"y":137.636},{"x":1756929542071,"y":149.22},{"x":1756929481872,"y":122.787},{"x":1756929421687,"y":127.159},{"x":1756929361531,"y":127.386},{"x":1756929301043,"y":119.934},{"x":1756929240869,"y":116.092},{"x":1756929180695,"y":124.826},{"x":1756929120590,"y":119.501},{"x":1756929060460,"y":139.862},{"x":1756929000259,"y":131.257},{"x":1756928942923,"y":137.563},{"x":1756928882758,"y":134.743},{"x":1756928822589,"y":134.529},{"x":1756928762416,"y":128.795},{"x":1756928702240,"y":122.763},{"x":1756928642050,"y":124.788},{"x":1756928581862,"y":121.125},{"x":1756928521701,"y":130.667},{"x":1756928461528,"y":120.169},{"x":1756928401239,"y":116.659},{"x":1756928341032,"y":117.289},{"x":1756928280840,"y":134.275},{"x":1756928220698,"y":141.355},{"x":1756928160536,"y":144.867},{"x":1756928100300,"y":123.797},{"x":1756928042956,"y":92.634},{"x":1756927982792,"y":128.46},{"x":1756927922624,"y":138.824},{"x":1756927862453,"y":128.119},{"x":1756927802283,"y":124.412},{"x":1756927742121,"y":117.881},{"x":1756927681938,"y":125.549},{"x":1756927621758,"y":121.096},{"x":1756927561571,"y":128.438},{"x":1756927501405,"y":128.384},{"x":1756927441214,"y":136.16},{"x":1756927381023,"y":136.832},{"x":1756927320840,"y":132.786},{"x":1756927260670,"y":119.553},{"x":1756927200725,"y":116.038},{"x":1756927140323,"y":123.114},{"x":1756927082954,"y":120.434},{"x":1756927022788,"y":123.725},{"x":1756926962603,"y":108.563},{"x":1756926902430,"y":112.033},{"x":1756926842251,"y":102.363},{"x":1756926782084,"y":112.613},{"x":1756926721877,"y":124.686},{"x":1756926661516,"y":122.816},{"x":1756926600951,"y":118.274},{"x":1756926540644,"y":111.128},{"x":1756926480531,"y":110.563},{"x":1756926420298,"y":121.114},{"x":1756926362860,"y":125.036},{"x":1756926302696,"y":114.685},{"x":1756926242521,"y":111.034},{"x":1756926182356,"y":108.041},{"x":1756926122183,"y":116.419},{"x":1756926062015,"y":124.799},{"x":1756926001000,"y":143.46},{"x":1756925940752,"y":140.172},{"x":1756925880547,"y":147.358},{"x":1756925820355,"y":145.283},{"x":1756925760281,"y":128.571},{"x":1756925702883,"y":124.127},{"x":1756925642697,"y":115.92},{"x":1756925582516,"y":116.958},{"x":1756925522348,"y":114.796},{"x":1756925462144,"y":117.699},{"x":1756925401982,"y":115.445},{"x":1756925341784,"y":119.752},{"x":1756925281618,"y":113.008},{"x":1756925221436,"y":120.468},{"x":1756925161261,"y":125.774},{"x":1756925101111,"y":125.985},{"x":1756925040655,"y":136.36},{"x":1756924980506,"y":117.548},{"x":1756924920348,"y":112.034},{"x":1756924862954,"y":111.462},{"x":1756924802768,"y":106.062},{"x":1756924742584,"y":116.88},{"x":1756924682422,"y":121.224},{"x":1756924622253,"y":121.745},{"x":1756924562080,"y":112.207},{"x":1756924501889,"y":138.694},{"x":1756924441727,"y":135.746},{"x":1756924381531,"y":115.556},{"x":1756924321368,"y":112.969},{"x":1756924261206,"y":116.169},{"x":1756924201051,"y":117.473},{"x":1756924140862,"y":112.403},{"x":1756924080719,"y":113.616},{"x":1756924020537,"y":126.776},{"x":1756923960373,"y":117.097},{"x":1756923900351,"y":122.209},{"x":1756923842870,"y":118.045},{"x":1756923782691,"y":118.843},{"x":1756923722503,"y":108.801},{"x":1756923662334,"y":118.121},{"x":1756923602157,"y":117.527},{"x":1756923541970,"y":117.478},{"x":1756923481806,"y":116.252},{"x":1756923421536,"y":110.299},{"x":1756923361356,"y":111.561},{"x":1756923301194,"y":114.72},{"x":1756923240980,"y":115.18},{"x":1756923180812,"y":121.48},{"x":1756923120725,"y":117.325},{"x":1756923060610,"y":106.88},{"x":1756923002982,"y":120.921},{"x":1756922942809,"y":134.525},{"x":1756922882656,"y":132.62},{"x":1756922822458,"y":139.255},{"x":1756922762264,"y":131.175},{"x":1756922702096,"y":124.473},{"x":1756922641913,"y":128.484},{"x":1756922581748,"y":129.412},{"x":1756922521582,"y":121.633},{"x":1756922461417,"y":129.443},{"x":1756922402388,"y":125.94},{"x":1756922342146,"y":143.547},{"x":1756922281920,"y":129.266},{"x":1756922221755,"y":126.017},{"x":1756922161578,"y":131.101},{"x":1756922101194,"y":138.828},{"x":1756922040987,"y":141.996},{"x":1756921980799,"y":128.486},{"x":1756921920677,"y":133.343},{"x":1756921860483,"y":126.517},{"x":1756921800369,"y":121.565},{"x":1756921742905,"y":139.262},{"x":1756921682676,"y":129.251},{"x":1756921622492,"y":130.151},{"x":1756921562322,"y":140.454},{"x":1756921502149,"y":142.446},{"x":1756921441962,"y":124.059},{"x":1756921381793,"y":128.332},{"x":1756921321619,"y":136.339},{"x":1756921261458,"y":124.532},{"x":1756921201186,"y":130.048},{"x":1756921140985,"y":135.328},{"x":1756921080841,"y":125.305},{"x":1756921020661,"y":115.961},{"x":1756920960534,"y":117.354},{"x":1756920900332,"y":121.231},{"x":1756920842905,"y":138.249},{"x":1756920782728,"y":145.4},{"x":1756920722564,"y":132.076},{"x":1756920662392,"y":115.655},{"x":1756920602177,"y":121.629},{"x":1756920541995,"y":123.633},{"x":1756920481829,"y":133.321},{"x":1756920421659,"y":133.107},{"x":1756920361492,"y":134.458},{"x":1756920301321,"y":133.0},{"x":1756920241163,"y":125.158},{"x":1756920180983,"y":125.906},{"x":1756920120818,"y":146.688},{"x":1756920060657,"y":149.035},{"x":1756920000584,"y":151.639},{"x":1756919940340,"y":146.91},{"x":1756919880181,"y":123.49},{"x":1756919822873,"y":129.186},{"x":1756919762630,"y":118.576},{"x":1756919702433,"y":123.62},{"x":1756919642247,"y":121.205},{"x":1756919582064,"y":124.587},{"x":1756919521881,"y":122.827},{"x":1756919461590,"y":123.969},{"x":1756919400857,"y":129.527},{"x":1756919340651,"y":130.122},{"x":1756919282976,"y":123.975},{"x":1756919222811,"y":137.892},{"x":1756919162642,"y":135.708},{"x":1756919102447,"y":122.794},{"x":1756919042281,"y":119.228},{"x":1756918982112,"y":118.721},{"x":1756918921926,"y":130.373},{"x":1756918861738,"y":135.822},{"x":1756918801019,"y":132.772},{"x":1756918740557,"y":141.272},{"x":1756918680369,"y":128.592},{"x":1756918622994,"y":142.933},{"x":1756918562818,"y":133.532},{"x":1756918502618,"y":120.592},{"x":1756918442445,"y":113.67},{"x":1756918382272,"y":127.604},{"x":1756918322110,"y":141.433},{"x":1756918261655,"y":136.951},{"x":1756918201405,"y":146.309},{"x":1756918141241,"y":146.122},{"x":1756918081074,"y":131.096},{"x":1756918020862,"y":139.989},{"x":1756917960706,"y":133.439},{"x":1756917900594,"y":117.97},{"x":1756917840335,"y":124.051},{"x":1756917780096,"y":141.708},{"x":1756917722864,"y":133.437},{"x":1756917662696,"y":121.151},{"x":1756917602534,"y":126.641},{"x":1756917542356,"y":112.081},{"x":1756917482177,"y":121.414},{"x":1756917422004,"y":126.592},{"x":1756917361695,"y":126.381},{"x":1756917301505,"y":120.404},{"x":1756917241327,"y":117.288},{"x":1756917181153,"y":125.992},{"x":1756917120940,"y":135.163},{"x":1756917060789,"y":136.505},{"x":1756917000692,"y":151.331},{"x":1756916940481,"y":145.136},{"x":1756916880334,"y":156.142},{"x":1756916822905,"y":149.285},{"x":1756916762717,"y":160.216},{"x":1756916702544,"y":119.477},{"x":1756916642386,"y":127.072},{"x":1756916582207,"y":129.221},{"x":1756916522049,"y":141.494},{"x":1756916461783,"y":150.704},{"x":1756916401582,"y":127.133},{"x":1756916341419,"y":118.027},{"x":1756916281244,"y":118.284},{"x":1756916221074,"y":157.08},{"x":1756916160890,"y":148.718},{"x":1756916100751,"y":125.95},{"x":1756916040611,"y":102.777},{"x":1756915980429,"y":124.313},{"x":1756915920244,"y":170.231},{"x":1756915862932,"y":149.539},{"x":1756915802731,"y":150.203},{"x":1756915742592,"y":150.7},{"x":1756915682395,"y":136.27},{"x":1756915622225,"y":132.001},{"x":1756915561982,"y":128.983},{"x":1756915501824,"y":134.42},{"x":1756915441660,"y":160.761},{"x":1756915381467,"y":130.379},{"x":1756915321287,"y":154.251},{"x":1756915261111,"y":134.92},{"x":1756915202365,"y":121.823},{"x":1756915142068,"y":128.906},{"x":1756915081822,"y":135.488},{"x":1756915021637,"y":139.916},{"x":1756914961472,"y":146.807},{"x":1756914901139,"y":139.169},{"x":1756914840948,"y":135.765},{"x":1756914780774,"y":137.995},{"x":1756914720640,"y":126.192},{"x":1756914660347,"y":129.769},{"x":1756914600262,"y":135.362},{"x":1756914542888,"y":148.188},{"x":1756914482714,"y":122.935},{"x":1756914422547,"y":132.019},{"x":1756914362375,"y":142.561},{"x":1756914302180,"y":130.579},{"x":1756914242015,"y":131.145},{"x":1756914181823,"y":111.788},{"x":1756914121652,"y":130.963},{"x":1756914061481,"y":135.965},{"x":1756914001316,"y":121.187},{"x":1756913941108,"y":125.798},{"x":1756913880904,"y":159.732},{"x":1756913820726,"y":147.077},{"x":1756913760598,"y":152.347},{"x":1756913700460,"y":125.865},{"x":1756913640230,"y":121.564},{"x":1756913582895,"y":118.332},{"x":1756913522724,"y":129.865},{"x":1756913462541,"y":112.597},{"x":1756913402381,"y":123.077},{"x":1756913342221,"y":119.731},{"x":1756913282058,"y":146.89},{"x":1756913221878,"y":149.274},{"x":1756913161660,"y":143.254},{"x":1756913101197,"y":137.012},{"x":1756913041005,"y":148.559},{"x":1756912980837,"y":128.543},{"x":1756912920683,"y":128.567},{"x":1756912860539,"y":136.402},{"x":1756912800422,"y":158.123},{"x":1756912740326,"y":120.62},{"x":1756912682922,"y":153.976},{"x":1756912622795,"y":145.435},{"x":1756912562519,"y":141.207},{"x":1756912502354,"y":124.447},{"x":1756912442168,"y":122.878},{"x":1756912381985,"y":129.478},{"x":1756912321809,"y":122.565},{"x":1756912261491,"y":144.72},{"x":1756912200895,"y":138.391},{"x":1756912140586,"y":132.966},{"x":1756912082972,"y":139.342},{"x":1756912022806,"y":168.899},{"x":1756911962645,"y":146.411},{"x":1756911902472,"y":135.809},{"x":1756911842292,"y":134.903},{"x":1756911782118,"y":141.718},{"x":1756911721927,"y":160.344},{"x":1756911661771,"y":139.927},{"x":1756911602266,"y":151.229},{"x":1756911542070,"y":142.292},{"x":1756911481862,"y":160.008},{"x":1756911421738,"y":133.152},{"x":1756911361541,"y":153.051},{"x":1756911301311,"y":161.664},{"x":1756911241127,"y":179.554},{"x":1756911180942,"y":149.04},{"x":1756911120806,"y":163.669},{"x":1756911060655,"y":160.32},{"x":1756911000455,"y":155.228},{"x":1756910940215,"y":160.887},{"x":1756910882858,"y":174.415},{"x":1756910822690,"y":160.112},{"x":1756910762516,"y":172.368},{"x":1756910702342,"y":160.741},{"x":1756910642157,"y":179.349},{"x":1756910581970,"y":151.15},{"x":1756910521756,"y":171.123},{"x":1756910461567,"y":131.956},{"x":1756910401256,"y":144.112},{"x":1756910341070,"y":144.977},{"x":1756910280858,"y":124.427},{"x":1756910220687,"y":134.178},{"x":1756910160593,"y":153.929},{"x":1756910100365,"y":133.894},{"x":1756910040128,"y":124.62},{"x":1756909982864,"y":121.02},{"x":1756909922771,"y":129.466},{"x":1756909862550,"y":137.535},{"x":1756909802361,"y":144.144},{"x":1756909742194,"y":169.303},{"x":1756909682024,"y":177.456},{"x":1756909621735,"y":162.011},{"x":1756909561554,"y":166.534},{"x":1756909501400,"y":167.103},{"x":1756909441234,"y":168.845},{"x":1756909381041,"y":171.641},{"x":1756909320865,"y":174.457},{"x":1756909260699,"y":174.549},{"x":1756909200602,"y":152.436},{"x":1756909140309,"y":160.429},{"x":1756909082947,"y":179.773},{"x":1756909022793,"y":205.913},{"x":1756908962587,"y":188.558},{"x":1756908902414,"y":177.699},{"x":1756908842245,"y":196.638},{"x":1756908782071,"y":182.541},{"x":1756908721846,"y":164.794},{"x":1756908661604,"y":185.365},{"x":1756908600863,"y":171.044},{"x":1756908540702,"y":167.575},{"x":1756908480565,"y":169.733},{"x":1756908420329,"y":171.152},{"x":1756908361089,"y":174.26},{"x":1756908300907,"y":169.06},{"x":1756908240715,"y":169.501},{"x":1756908180550,"y":173.526},{"x":1756908120385,"y":168.089},{"x":1756908063014,"y":179.813},{"x":1756908000926,"y":179.568},{"x":1756907940455,"y":168.042},{"x":1756907880157,"y":164.23},{"x":1756907822900,"y":150.511},{"x":1756907762721,"y":164.781},{"x":1756907702552,"y":161.122},{"x":1756907642382,"y":172.4},{"x":1756907582228,"y":188.656},{"x":1756907522030,"y":175.077},{"x":1756907461779,"y":178.19},{"x":1756907400804,"y":182.33},{"x":1756907340559,"y":200.687},{"x":1756907280478,"y":176.13},{"x":1756907222933,"y":168.449},{"x":1756907162766,"y":144.871},{"x":1756907102595,"y":152.59},{"x":1756907042433,"y":149.841},{"x":1756906982271,"y":142.729},{"x":1756906922087,"y":155.329},{"x":1756906861900,"y":176.091},{"x":1756906801655,"y":146.557},{"x":1756906741470,"y":151.739},{"x":1756906681305,"y":177.925},{"x":1756906621122,"y":159.991},{"x":1756906560924,"y":160.791},{"x":1756906500792,"y":168.901},{"x":1756906440539,"y":159.782},{"x":1756906380536,"y":152.224},{"x":1756906323004,"y":158.425},{"x":1756906262813,"y":146.396},{"x":1756906202657,"y":168.082},{"x":1756906142489,"y":145.83},{"x":1756906082332,"y":154.456},{"x":1756906022123,"y":167.803},{"x":1756905961940,"y":161.276},{"x":1756905901761,"y":179.678},{"x":1756905841597,"y":169.318},{"x":1756905781434,"y":180.317},{"x":1756905721259,"y":152.309},{"x":1756905660574,"y":152.325},{"x":1756905600477,"y":159.049},{"x":1756905540320,"y":164.78},{"x":1756905482906,"y":151.376},{"x":1756905422741,"y":185.118},{"x":1756905362539,"y":186.655},{"x":1756905302371,"y":179.956},{"x":1756905242198,"y":174.641},{"x":1756905182026,"y":159.627},{"x":1756905121796,"y":150.585},{"x":1756905061570,"y":144.55},{"x":1756905000890,"y":151.174},{"x":1756904940675,"y":136.464},{"x":1756904880531,"y":160.396},{"x":1756904820408,"y":150.371},{"x":1756904760246,"y":147.564},{"x":1756904702840,"y":156.464},{"x":1756904642668,"y":148.998},{"x":1756904582480,"y":136.608},{"x":1756904522308,"y":161.603},{"x":1756904462127,"y":154.17},{"x":1756904402332,"y":170.52},{"x":1756904342121,"y":170.208},{"x":1756904281908,"y":161.574},{"x":1756904221727,"y":161.346},{"x":1756904161523,"y":190.515},{"x":1756904101289,"y":159.919},{"x":1756904041109,"y":150.509},{"x":1756903980930,"y":141.592},{"x":1756903920754,"y":176.732},{"x":1756903860599,"y":159.528},{"x":1756903800527,"y":120.315},{"x":1756903740328,"y":151.964},{"x":1756903682893,"y":157.021},{"x":1756903622720,"y":170.347},{"x":1756903562521,"y":144.439},{"x":1756903502346,"y":184.395},{"x":1756903442136,"y":176.628},{"x":1756903381963,"y":129.795},{"x":1756903321792,"y":170.461},{"x":1756903261623,"y":143.154},{"x":1756903201473,"y":172.616},{"x":1756903141315,"y":161.999},{"x":1756903081127,"y":182.558},{"x":1756903020981,"y":169.952},{"x":1756902960783,"y":169.891},{"x":1756902900643,"y":154.93},{"x":1756902840420,"y":189.923},{"x":1756902782996,"y":179.068},{"x":1756902722791,"y":152.864},{"x":1756902662620,"y":154.253},{"x":1756902602432,"y":154.381},{"x":1756902542260,"y":152.563},{"x":1756902482095,"y":176.644},{"x":1756902421921,"y":128.953},{"x":1756902361777,"y":183.704},{"x":1756902301589,"y":166.309},{"x":1756902241419,"y":169.612},{"x":1756902181238,"y":159.89},{"x":1756902121072,"y":159.275},{"x":1756902060896,"y":131.399},{"x":1756902000855,"y":139.068},{"x":1756901940517,"y":149.777},{"x":1756901880332,"y":142.954},{"x":1756901822975,"y":112.141},{"x":1756901762751,"y":122.849},{"x":1756901702578,"y":135.738},{"x":1756901642374,"y":138.048},{"x":1756901582180,"y":143.819},{"x":1756901521950,"y":159.857},{"x":1756901461543,"y":158.343},{"x":1756901400885,"y":138.283},{"x":1756901340678,"y":156.751},{"x":1756901283028,"y":110.213},{"x":1756901222849,"y":143.968},{"x":1756901162679,"y":160.597},{"x":1756901102506,"y":135.811},{"x":1756901042346,"y":172.611},{"x":1756900982177,"y":166.934},{"x":1756900921972,"y":171.953},{"x":1756900861800,"y":144.788},{"x":1756900800641,"y":169.094},{"x":1756900740536,"y":155.782},{"x":1756900680082,"y":149.828},{"x":1756900622857,"y":159.846},{"x":1756900562689,"y":153.504},{"x":1756900502505,"y":168.372},{"x":1756900442335,"y":168.172},{"x":1756900382164,"y":163.19},{"x":1756900321983,"y":165.88},{"x":1756900261653,"y":172.286},{"x":1756900201469,"y":170.086},{"x":1756900141310,"y":160.837},{"x":1756900081134,"y":146.949},{"x":1756900020935,"y":152.051},{"x":1756899960752,"y":156.886},{"x":1756899900684,"y":123.976},{"x":1756899840467,"y":140.949},{"x":1756899780237,"y":118.388},{"x":1756899722880,"y":125.994},{"x":1756899662713,"y":154.736},{"x":1756899602525,"y":138.558},{"x":1756899542342,"y":164.433},{"x":1756899482171,"y":156.494},{"x":1756899422003,"y":117.797},{"x":1756899361787,"y":124.209},{"x":1756899301602,"y":141.011},{"x":1756899241424,"y":126.671},{"x":1756899181225,"y":153.222},{"x":1756899121059,"y":140.556},{"x":1756899060877,"y":121.171},{"x":1756899000826,"y":154.217},{"x":1756898940537,"y":166.678},{"x":1756898880402,"y":160.246},{"x":1756898820159,"y":147.319},{"x":1756898762818,"y":132.107},{"x":1756898702629,"y":139.388},{"x":1756898642452,"y":124.164},{"x":1756898582287,"y":149.459},{"x":1756898522116,"y":146.352},{"x":1756898461788,"y":161.982},{"x":1756898401614,"y":154.107},{"x":1756898341443,"y":173.115},{"x":1756898281253,"y":179.782},{"x":1756898221082,"y":139.196},{"x":1756898160889,"y":167.653},{"x":1756898100822,"y":169.37},{"x":1756898040547,"y":132.279},{"x":1756897980357,"y":126.685},{"x":1756897922960,"y":115.08},{"x":1756897862718,"y":102.989},{"x":1756897802532,"y":112.24},{"x":1756897742363,"y":111.246},{"x":1756897682190,"y":119.007},{"x":1756897621984,"y":118.562},{"x":1756897561482,"y":127.706},{"x":1756897501305,"y":121.198},{"x":1756897441121,"y":125.7},{"x":1756897380928,"y":141.653},{"x":1756897320729,"y":106.872},{"x":1756897263567,"y":115.327},{"x":1756897202488,"y":116.751},{"x":1756897142268,"y":118.076},{"x":1756897082041,"y":122.99},{"x":1756897021730,"y":109.217},{"x":1756896961553,"y":85.056},{"x":1756896901383,"y":126.975},{"x":1756896841223,"y":154.093},{"x":1756896781046,"y":119.685},{"x":1756896720896,"y":115.572},{"x":1756896660716,"y":143.354},{"x":1756896600634,"y":140.279},{"x":1756896540361,"y":133.735},{"x":1756896482935,"y":127.233},{"x":1756896422770,"y":106.102},{"x":1756896362603,"y":113.42},{"x":1756896302434,"y":108.538},{"x":1756896242264,"y":120.101},{"x":1756896182098,"y":145.764},{"x":1756896121907,"y":141.877},{"x":1756896061731,"y":159.576},{"x":1756896001559,"y":136.97},{"x":1756895941408,"y":137.628},{"x":1756895881218,"y":118.025},{"x":1756895821023,"y":122.619},{"x":1756895760842,"y":118.901},{"x":1756895700721,"y":126.274},{"x":1756895640535,"y":139.312},{"x":1756895580421,"y":123.193},{"x":1756895522979,"y":110.947},{"x":1756895462808,"y":94.289},{"x":1756895402681,"y":137.895},{"x":1756895342465,"y":127.407},{"x":1756895282284,"y":148.075},{"x":1756895222123,"y":123.541},{"x":1756895161934,"y":132.346},{"x":1756895101742,"y":119.016},{"x":1756895041575,"y":104.449},{"x":1756894981408,"y":132.19},{"x":1756894921241,"y":110.929},{"x":1756894861072,"y":150.335},{"x":1756894800941,"y":136.85},{"x":1756894758746,"y":154.561},{"x":1756894682909,"y":158.572},{"x":1756894622747,"y":148.115},{"x":1756894562503,"y":154.687},{"x":1756894502326,"y":144.381},{"x":1756894442151,"y":112.035},{"x":1756894381975,"y":123.014},{"x":1756894321807,"y":106.964},{"x":1756894261491,"y":121.351},{"x":1756894201107,"y":152.564},{"x":1756894140863,"y":120.561},{"x":1756894080701,"y":127.538},{"x":1756894020573,"y":117.076},{"x":1756893960362,"y":133.24},{"x":1756893902998,"y":117.487},{"x":1756893842826,"y":108.898},{"x":1756893782625,"y":147.174},{"x":1756893722454,"y":154.688},{"x":1756893662290,"y":166.513},{"x":1756893602304,"y":162.087},{"x":1756893542087,"y":144.785},{"x":1756893481846,"y":148.362},{"x":1756893421683,"y":139.297},{"x":1756893361481,"y":171.491},{"x":1756893301254,"y":147.726},{"x":1756893241069,"y":163.113},{"x":1756893180870,"y":162.978},{"x":1756893120723,"y":169.283},{"x":1756893060590,"y":157.25},{"x":1756893000339,"y":157.466},{"x":1756892943028,"y":154.943},{"x":1756892882845,"y":161.827},{"x":1756892822690,"y":130.626},{"x":1756892762512,"y":147.192},{"x":1756892702336,"y":142.797},{"x":1756892642168,"y":134.66},{"x":1756892581988,"y":129.062},{"x":1756892521731,"y":148.342},{"x":1756892461562,"y":144.355},{"x":1756892400793,"y":134.659},{"x":1756892340488,"y":156.985},{"x":1756892280407,"y":145.914},{"x":1756892225607,"y":148.126},{"x":1756892162333,"y":135.783},{"x":1756892102138,"y":141.195},{"x":1756892041919,"y":157.0},{"x":1756891981727,"y":141.373},{"x":1756891921530,"y":138.246},{"x":1756891861322,"y":141.08},{"x":1756891801155,"y":130.705},{"x":1756891740815,"y":120.879},{"x":1756891680687,"y":132.045},{"x":1756891620463,"y":130.721},{"x":1756891561982,"y":118.882},{"x":1756891501782,"y":132.704},{"x":1756891441575,"y":102.045},{"x":1756891381377,"y":131.576},{"x":1756891321183,"y":119.833},{"x":1756891260961,"y":114.365},{"x":1756891200869,"y":125.178},{"x":1756891140535,"y":121.788},{"x":1756891080480,"y":118.249},{"x":1756891022974,"y":130.321},{"x":1756890962761,"y":109.78},{"x":1756890902527,"y":146.713},{"x":1756890842324,"y":144.335},{"x":1756890782116,"y":131.307},{"x":1756890721887,"y":156.99},{"x":1756890661646,"y":134.647},{"x":1756890601428,"y":139.779},{"x":1756890541231,"y":108.577},{"x":1756890480973,"y":110.831},{"x":1756890420781,"y":127.08},{"x":1756890360586,"y":116.767},{"x":1756890300447,"y":120.583},{"x":1756890243000,"y":112.946},{"x":1756890182804,"y":117.553},{"x":1756890122613,"y":128.279},{"x":1756890062426,"y":117.156},{"x":1756890001233,"y":120.891},{"x":1756889940879,"y":108.913},{"x":1756889880607,"y":130.976},{"x":1756889820420,"y":112.216},{"x":1756889762992,"y":117.752},{"x":1756889702782,"y":117.822},{"x":1756889642550,"y":112.371},{"x":1756889582338,"y":111.837},{"x":1756889522156,"y":117.045},{"x":1756889461953,"y":120.893},{"x":1756889401813,"y":140.486},{"x":1756889341562,"y":124.306},{"x":1756889281365,"y":125.12},{"x":1756889221147,"y":116.847},{"x":1756889160946,"y":109.757},{"x":1756889100959,"y":119.745},{"x":1756889040514,"y":130.622},{"x":1756888980339,"y":126.56},{"x":1756888922920,"y":137.808},{"x":1756888862709,"y":116.418},{"x":1756888802522,"y":137.056},{"x":1756888742321,"y":125.56},{"x":1756888682118,"y":139.814},{"x":1756888621910,"y":135.293},{"x":1756888561602,"y":127.835},{"x":1756888501404,"y":141.308},{"x":1756888441205,"y":140.401},{"x":1756888380979,"y":127.518},{"x":1756888320802,"y":117.008},{"x":1756888260576,"y":125.872},{"x":1756888200287,"y":119.84},{"x":1756888142939,"y":121.566},{"x":1756888082753,"y":120.93},{"x":1756888022564,"y":118.621},{"x":1756887962342,"y":107.268},{"x":1756887901991,"y":114.425},{"x":1756887841787,"y":115.931},{"x":1756887781589,"y":116.698},{"x":1756887721396,"y":109.839},{"x":1756887660980,"y":111.365},{"x":1756887600901,"y":108.98},{"x":1756887540586,"y":107.14},{"x":1756887480543,"y":120.582},{"x":1756887420326,"y":112.44},{"x":1756887362860,"y":116.034},{"x":1756887302655,"y":111.767},{"x":1756887242435,"y":104.676},{"x":1756887182242,"y":98.294},{"x":1756887121993,"y":107.969},{"x":1756887061584,"y":121.988},{"x":1756887001016,"y":115.959},{"x":1756886940842,"y":115.856},{"x":1756886880646,"y":147.883},{"x":1756886820476,"y":123.448},{"x":1756886760241,"y":116.354},{"x":1756886702872,"y":113.8},{"x":1756886642633,"y":126.305},{"x":1756886582423,"y":118.123},{"x":1756886522232,"y":132.506},{"x":1756886465047,"y":124.893},{"x":1756886401024,"y":133.461},{"x":1756886340674,"y":125.796},{"x":1756886280380,"y":130.468},{"x":1756886220091,"y":121.194},{"x":1756886162828,"y":129.079},{"x":1756886102621,"y":134.31},{"x":1756886042419,"y":138.821},{"x":1756885982244,"y":151.229},{"x":1756885922038,"y":140.876},{"x":1756885861722,"y":138.256},{"x":1756885800938,"y":116.606},{"x":1756885740727,"y":129.351},{"x":1756885680541,"y":120.388},{"x":1756885620410,"y":117.46},{"x":1756885560336,"y":111.456},{"x":1756885502841,"y":107.207},{"x":1756885442628,"y":125.183},{"x":1756885382430,"y":128.957},{"x":1756885322239,"y":126.076},{"x":1756885262044,"y":117.256},{"x":1756885201834,"y":121.679},{"x":1756885141621,"y":126.782},{"x":1756885081396,"y":100.319},{"x":1756885021187,"y":104.189},{"x":1756884960979,"y":107.224},{"x":1756884900797,"y":142.338},{"x":1756884840594,"y":146.326},{"x":1756884780449,"y":139.169},{"x":1756884720108,"y":133.852},{"x":1756884662833,"y":128.03},{"x":1756884602637,"y":125.911},{"x":1756884542429,"y":135.706},{"x":1756884482226,"y":128.383},{"x":1756884421973,"y":141.362},{"x":1756884361754,"y":132.535},{"x":1756884301559,"y":136.311},{"x":1756884241363,"y":143.187},{"x":1756884181155,"y":134.033},{"x":1756884120949,"y":135.307},{"x":1756884060756,"y":128.293},{"x":1756884000643,"y":141.895},{"x":1756883940342,"y":115.308},{"x":1756883883023,"y":136.521},{"x":1756883822806,"y":139.752},{"x":1756883762612,"y":117.654},{"x":1756883702425,"y":132.867},{"x":1756883642229,"y":137.42},{"x":1756883582024,"y":124.223},{"x":1756883521797,"y":127.49},{"x":1756883461559,"y":149.353},{"x":1756883401347,"y":102.17},{"x":1756883341147,"y":138.974},{"x":1756883280909,"y":115.92},{"x":1756883220849,"y":111.273},{"x":1756883160555,"y":122.394},{"x":1756883100544,"y":135.178},{"x":1756883042911,"y":130.797},{"x":1756882982728,"y":140.377},{"x":1756882922536,"y":158.951},{"x":1756882862365,"y":150.098},{"x":1756882802102,"y":132.35},{"x":1756882741142,"y":126.01},{"x":1756882680852,"y":124.475},{"x":1756882620672,"y":115.519},{"x":1756882560433,"y":105.105},{"x":1756882500303,"y":120.133},{"x":1756882442852,"y":114.498},{"x":1756882382645,"y":111.702},{"x":1756882322449,"y":97.479},{"x":1756882262251,"y":134.423},{"x":1756882202052,"y":119.007},{"x":1756882141845,"y":119.469},{"x":1756882081637,"y":110.216},{"x":1756882021318,"y":116.116},{"x":1756881961103,"y":106.814},{"x":1756881900920,"y":103.045},{"x":1756881840674,"y":106.791},{"x":1756881780473,"y":100.901},{"x":1756881720296,"y":123.536},{"x":1756881662910,"y":105.333},{"x":1756881602721,"y":109.2},{"x":1756881542528,"y":113.614},{"x":1756881482331,"y":106.53},{"x":1756881422144,"y":93.149},{"x":1756881361364,"y":90.413},{"x":1756881301187,"y":101.133},{"x":1756881240972,"y":112.441},{"x":1756881180770,"y":114.172},{"x":1756881120650,"y":123.17},{"x":1756881060550,"y":104.682},{"x":1756881002984,"y":110.442},{"x":1756880942738,"y":102.755},{"x":1756880882531,"y":113.61},{"x":1756880822315,"y":107.615},{"x":1756880762118,"y":112.9},{"x":1756880701918,"y":102.754},{"x":1756880641716,"y":108.611},{"x":1756880581519,"y":115.085},{"x":1756880521307,"y":117.825},{"x":1756880461108,"y":110.783},{"x":1756880400943,"y":107.815},{"x":1756880340701,"y":101.468},{"x":1756880280523,"y":89.734},{"x":1756880220365,"y":98.127},{"x":1756880162918,"y":104.809},{"x":1756880102722,"y":117.308},{"x":1756880042531,"y":108.373},{"x":1756879982338,"y":115.263},{"x":1756879922086,"y":105.436},{"x":1756879861797,"y":112.633},{"x":1756879801545,"y":95.864},{"x":1756879741342,"y":102.702},{"x":1756879681139,"y":116.276},{"x":1756879620854,"y":110.752},{"x":1756879560678,"y":112.884},{"x":1756879500571,"y":109.981},{"x":1756879440315,"y":100.4},{"x":1756879382897,"y":110.887},{"x":1756879322693,"y":117.954},{"x":1756879262463,"y":120.818},{"x":1756879201321,"y":105.975},{"x":1756879140864,"y":105.442},{"x":1756879080611,"y":101.225},{"x":1756879020494,"y":101.024},{"x":1756878960189,"y":99.662},{"x":1756878902874,"y":115.602},{"x":1756878842666,"y":120.079},{"x":1756878782446,"y":103.456},{"x":1756878722255,"y":114.072},{"x":1756878662040,"y":112.198},{"x":1756878601840,"y":115.687},{"x":1756878541649,"y":117.035},{"x":1756878481449,"y":96.102},{"x":1756878421261,"y":97.787},{"x":1756878361017,"y":100.092},{"x":1756878300893,"y":109.63},{"x":1756878240658,"y":106.426},{"x":1756878180401,"y":108.735},{"x":1756878123028,"y":115.739},{"x":1756878062826,"y":98.501},{"x":1756878002633,"y":95.643},{"x":1756877942428,"y":109.213},{"x":1756877882233,"y":112.978},{"x":1756877822037,"y":119.659},{"x":1756877761188,"y":116.764},{"x":1756877700967,"y":121.478},{"x":1756877640757,"y":107.504},{"x":1756877580558,"y":107.569},{"x":1756877520395,"y":105.255},{"x":1756877462988,"y":116.506},{"x":1756877402786,"y":107.348},{"x":1756877342582,"y":110.573},{"x":1756877282394,"y":105.966},{"x":1756877222205,"y":106.576},{"x":1756877161984,"y":109.119},{"x":1756877101770,"y":116.582},{"x":1756877041579,"y":103.057},{"x":1756876981385,"y":102.466},{"x":1756876921188,"y":103.384},{"x":1756876860973,"y":119.216},{"x":1756876800812,"y":118.155},{"x":1756876740542,"y":114.842},{"x":1756876680406,"y":124.617},{"x":1756876622945,"y":129.607},{"x":1756876562739,"y":121.478},{"x":1756876502532,"y":113.824},{"x":1756876442348,"y":106.987},{"x":1756876382155,"y":110.256},{"x":1756876321906,"y":91.174},{"x":1756876261525,"y":93.814},{"x":1756876201166,"y":115.233},{"x":1756876140923,"y":106.569},{"x":1756876080759,"y":106.399},{"x":1756876020548,"y":104.637},{"x":1756875960349,"y":113.755},{"x":1756875902933,"y":124.499},{"x":1756875842746,"y":116.098},{"x":1756875782572,"y":115.581},{"x":1756875722387,"y":100.306},{"x":1756875662181,"y":99.499},{"x":1756875601720,"y":102.505},{"x":1756875540863,"y":119.474},{"x":1756875480600,"y":115.748},{"x":1756875420435,"y":115.067},{"x":1756875360242,"y":105.548},{"x":1756875302856,"y":100.293},{"x":1756875242667,"y":108.4},{"x":1756875182466,"y":111.435},{"x":1756875122275,"y":139.668},{"x":1756875062083,"y":135.179},{"x":1756875001859,"y":120.742},{"x":1756874941669,"y":117.564},{"x":1756874881470,"y":116.77},{"x":1756874821280,"y":116.462},{"x":1756874761053,"y":105.945},{"x":1756874700878,"y":118.828},{"x":1756874640672,"y":114.679},{"x":1756874580483,"y":123.615},{"x":1756874520334,"y":120.377},{"x":1756874462967,"y":119.224},{"x":1756874402782,"y":128.61},{"x":1756874342588,"y":133.779},{"x":1756874282399,"y":129.012},{"x":1756874222215,"y":123.033},{"x":1756874161917,"y":114.375},{"x":1756874101704,"y":104.93},{"x":1756874041508,"y":113.899},{"x":1756873981329,"y":125.408},{"x":1756873921137,"y":134.047},{"x":1756873860932,"y":134.209},{"x":1756873800836,"y":121.568},{"x":1756873740503,"y":116.038},{"x":1756873680314,"y":119.651},{"x":1756873622987,"y":119.349},{"x":1756873562796,"y":112.628},{"x":1756873502596,"y":120.154},{"x":1756873442441,"y":109.357},{"x":1756873382227,"y":108.85},{"x":1756873322041,"y":111.013},{"x":1756873261244,"y":114.262},{"x":1756873201047,"y":105.266},{"x":1756873140802,"y":109.492},{"x":1756873080597,"y":116.199},{"x":1756873020388,"y":124.866},{"x":1756872960283,"y":138.666},{"x":1756872902887,"y":132.207},{"x":1756872842703,"y":126.005},{"x":1756872782461,"y":122.797},{"x":1756872722204,"y":141.961},{"x":1756872661960,"y":124.005},{"x":1756872602642,"y":143.569},{"x":1756872542460,"y":130.872},{"x":1756872482487,"y":129.42},{"x":1756872422279,"y":134.92},{"x":1756872362890,"y":133.849},{"x":1756872302694,"y":114.546},{"x":1756872242502,"y":117.76},{"x":1756872182207,"y":113.47},{"x":1756872122016,"y":113.36},{"x":1756872064632,"y":113.045},{"x":1756872002679,"y":122.556},{"x":1756871942434,"y":127.109},{"x":1756871882215,"y":117.057},{"x":1756871821825,"y":117.545},{"x":1756871761550,"y":126.822},{"x":1756871701363,"y":118.146},{"x":1756871641171,"y":111.062},{"x":1756871580959,"y":116.052},{"x":1756871520775,"y":112.814},{"x":1756871460586,"y":111.898},{"x":1756871400445,"y":112.869},{"x":1756871343043,"y":117.491},{"x":1756871282839,"y":115.561},{"x":1756871222648,"y":115.434},{"x":1756871162454,"y":112.198},{"x":1756871102270,"y":102.439},{"x":1756871042075,"y":108.764},{"x":1756870981846,"y":112.105},{"x":1756870921658,"y":115.748},{"x":1756870861471,"y":111.879},{"x":1756870800870,"y":112.154},{"x":1756870740582,"y":102.162},{"x":1756870680469,"y":110.566},{"x":1756870622676,"y":111.744},{"x":1756870562494,"y":110.191},{"x":1756870502313,"y":120.256},{"x":1756870442118,"y":113.367},{"x":1756870381910,"y":112.593},{"x":1756870321722,"y":102.474},{"x":1756870261534,"y":118.493},{"x":1756870201365,"y":121.517},{"x":1756870141135,"y":119.486},{"x":1756870080895,"y":120.692},{"x":1756870020704,"y":131.66},{"x":1756869960500,"y":105.289},{"x":1756869900403,"y":104.667},{"x":1756869842933,"y":106.952},{"x":1756869782752,"y":109.985},{"x":1756869722547,"y":113.772},{"x":1756869661755,"y":113.224},{"x":1756869601561,"y":120.864},{"x":1756869541344,"y":117.426},{"x":1756869481157,"y":114.685},{"x":1756869420955,"y":102.29},{"x":1756869360744,"y":101.971},{"x":1756869300608,"y":116.271},{"x":1756869240338,"y":123.074},{"x":1756869182958,"y":128.137},{"x":1756869122706,"y":120.626},{"x":1756869062517,"y":104.47},{"x":1756869000621,"y":107.324},{"x":1756868940924,"y":93.878},{"x":1756868882564,"y":105.786},{"x":1756868822364,"y":94.15},{"x":1756868760767,"y":95.913},{"x":1756868700600,"y":91.816},{"x":1756868667394,"y":88.908},{"x":1756868664367,"y":88.377},{"x":1756868661186,"y":115.358},{"x":1756868643325,"y":123.808},{"x":1756868340944,"y":125.651},{"x":1756868280687,"y":114.24},{"x":1756868220558,"y":118.052},{"x":1756868160516,"y":111.18},{"x":1756868102886,"y":118.631},{"x":1756868042687,"y":120.084},{"x":1756867982470,"y":117.383},{"x":1756867922265,"y":113.503},{"x":1756867862061,"y":106.501},{"x":1756867801862,"y":109.007},{"x":1756867741667,"y":109.136},{"x":1756867681465,"y":118.506},{"x":1756867621244,"y":118.569},{"x":1756867561040,"y":113.408},{"x":1756867500910,"y":112.877},{"x":1756867440628,"y":115.969},{"x":1756867380463,"y":125.872},{"x":1756867320332,"y":119.961},{"x":1756867262864,"y":111.509},{"x":1756867202661,"y":113.305},{"x":1756867142461,"y":111.633},{"x":1756867082274,"y":124.642},{"x":1756867022084,"y":125.754},{"x":1756866961233,"y":132.653},{"x":1756866901026,"y":127.893},{"x":1756866840816,"y":116.606},{"x":1756866780615,"y":95.499},{"x":1756866720462,"y":117.924},{"x":1756866660271,"y":128.613},{"x":1756866602902,"y":114.06},{"x":1756866542694,"y":128.191},{"x":1756866482500,"y":114.788},{"x":1756866422309,"y":115.859},{"x":1756866362112,"y":117.599},{"x":1756866301918,"y":125.495},{"x":1756866241726,"y":135.097},{"x":1756866181541,"y":130.788},{"x":1756866121315,"y":124.287},{"x":1756866061113,"y":117.755},{"x":1756866000961,"y":113.818},{"x":1756865940651,"y":113.598},{"x":1756865880495,"y":123.535},{"x":1756865820369,"y":134.956},{"x":1756865762853,"y":119.246},{"x":1756865702667,"y":112.969},{"x":1756865642470,"y":105.019},{"x":1756865582283,"y":101.826},{"x":1756865522073,"y":113.748},{"x":1756865461730,"y":109.07},{"x":1756865401494,"y":108.942},{"x":1756865341289,"y":116.646},{"x":1756865281094,"y":106.536},{"x":1756865220892,"y":110.774},{"x":1756865160707,"y":103.19},{"x":1756865100558,"y":105.509},{"x":1756865040352,"y":109.084},{"x":1756864982992,"y":109.874},{"x":1756864922789,"y":114.949},{"x":1756864862609,"y":121.109},{"x":1756864801417,"y":106.461},{"x":1756864740957,"y":104.402},{"x":1756864680701,"y":104.641},{"x":1756864620525,"y":105.997},{"x":1756864560377,"y":115.737},{"x":1756864502918,"y":126.666},{"x":1756864442733,"y":113.506},{"x":1756864382549,"y":105.773},{"x":1756864322366,"y":116.202},{"x":1756864262155,"y":111.378},{"x":1756864201960,"y":121.929},{"x":1756864141763,"y":124.761},{"x":1756864081508,"y":111.495},{"x":1756864021321,"y":97.534},{"x":1756863961143,"y":98.043},{"x":1756863901014,"y":120.387},{"x":1756863840719,"y":131.636},{"x":1756863780530,"y":135.987},{"x":1756863720329,"y":130.033},{"x":1756863662943,"y":127.363},{"x":1756863602726,"y":100.799},{"x":1756863542545,"y":104.443},{"x":1756863482325,"y":111.58},{"x":1756863422127,"y":119.075},{"x":1756863361921,"y":111.999},{"x":1756863301723,"y":105.349},{"x":1756863241529,"y":111.674},{"x":1756863181310,"y":99.612},{"x":1756863121114,"y":109.566},{"x":1756863060898,"y":120.448},{"x":1756863000734,"y":117.823},{"x":1756862940535,"y":111.988},{"x":1756862880383,"y":105.921},{"x":1756862823015,"y":109.069},{"x":1756862762812,"y":104.212},{"x":1756862702629,"y":114.08},{"x":1756862642398,"y":113.576},{"x":1756862582208,"y":107.904},{"x":1756862522011,"y":111.084},{"x":1756862461227,"y":112.036},{"x":1756862401029,"y":102.071},{"x":1756862340800,"y":114.178},{"x":1756862280638,"y":125.998},{"x":1756862220531,"y":116.943},{"x":1756862160335,"y":104.349},{"x":1756862102893,"y":114.937},{"x":1756862042678,"y":113.61},{"x":1756861982493,"y":129.799},{"x":1756861922313,"y":114.927},{"x":1756861862010,"y":110.733},{"x":1756861801787,"y":122.057},{"x":1756861741592,"y":109.481},{"x":1756861681431,"y":105.082},{"x":1756861621224,"y":113.027},{"x":1756861561025,"y":112.4},{"x":1756861500847,"y":116.238},{"x":1756861440709,"y":119.952},{"x":1756861380418,"y":122.755},{"x":1756861320269,"y":120.608},{"x":1756861262903,"y":113.182},{"x":1756861201737,"y":105.575},{"x":1756861141344,"y":105.803},{"x":1756861081086,"y":110.125},{"x":1756861020884,"y":112.465},{"x":1756860960715,"y":111.099},{"x":1756860900506,"y":89.124},{"x":1756860840321,"y":110.541},{"x":1756860782872,"y":103.106},{"x":1756860722689,"y":103.207},{"x":1756860662499,"y":111.497},{"x":1756860602312,"y":113.838},{"x":1756860542137,"y":104.852},{"x":1756860481907,"y":106.79},{"x":1756860421704,"y":107.762},{"x":1756860361496,"y":108.375},{"x":1756860301307,"y":111.428},{"x":1756860241094,"y":106.772},{"x":1756860180905,"y":125.53},{"x":1756860120704,"y":111.286},{"x":1756860060528,"y":110.237},{"x":1756860000385,"y":110.321},{"x":1756859942969,"y":115.445},{"x":1756859882786,"y":115.027},{"x":1756859822573,"y":113.088},{"x":1756859762375,"y":106.533},{"x":1756859702191,"y":107.202},{"x":1756859641991,"y":108.575},{"x":1756859581756,"y":104.987},{"x":1756859521548,"y":107.312},{"x":1756859461346,"y":113.627},{"x":1756859401165,"y":104.003},{"x":1756859340935,"y":111.607},{"x":1756859280771,"y":101.201},{"x":1756859220562,"y":104.167},{"x":1756859160324,"y":132.089},{"x":1756859102926,"y":128.315},{"x":1756859042721,"y":137.929},{"x":1756858982514,"y":122.557},{"x":1756858922329,"y":114.528},{"x":1756858861973,"y":109.192},{"x":1756858801779,"y":113.196},{"x":1756858741586,"y":127.991},{"x":1756858681394,"y":116.139},{"x":1756858621200,"y":120.279},{"x":1756858560979,"y":106.076},{"x":1756858500817,"y":105.448},{"x":1756858440589,"y":105.413},{"x":1756858380409,"y":112.296},{"x":1756858320208,"y":119.121},{"x":1756858262844,"y":112.791},{"x":1756858202612,"y":113.971},{"x":1756858142430,"y":114.381},{"x":1756858082240,"y":111.546},{"x":1756858022044,"y":122.808},{"x":1756857961129,"y":108.214},{"x":1756857900954,"y":111.23},{"x":1756857840745,"y":111.979},{"x":1756857780584,"y":119.577},{"x":1756857720454,"y":124.263},{"x":1756857663039,"y":104.084},{"x":1756857601225,"y":103.236},{"x":1756857540758,"y":110.321},{"x":1756857480554,"y":119.105},{"x":1756857420353,"y":104.791},{"x":1756857362955,"y":111.314},{"x":1756857302767,"y":112.658},{"x":1756857242569,"y":114.311},{"x":1756857182383,"y":113.732},{"x":1756857122193,"y":107.524},{"x":1756857061959,"y":110.653},{"x":1756857001777,"y":114.917},{"x":1756856941571,"y":114.233},{"x":1756856881378,"y":114.717},{"x":1756856821199,"y":114.586},{"x":1756856760979,"y":104.907},{"x":1756856700929,"y":114.864},{"x":1756856640581,"y":111.651},{"x":1756856580416,"y":103.579},{"x":1756856522990,"y":123.329},{"x":1756856462779,"y":135.173},{"x":1756856402580,"y":136.835},{"x":1756856342387,"y":129.417},{"x":1756856282189,"y":130.501},{"x":1756856221979,"y":119.539},{"x":1756856161190,"y":112.502},{"x":1756856100995,"y":117.759},{"x":1756856040791,"y":113.916},{"x":1756855980607,"y":116.294},{"x":1756855920478,"y":112.67},{"x":1756855860195,"y":106.573},{"x":1756855802883,"y":110.133},{"x":1756855742674,"y":113.813},{"x":1756855682487,"y":122.046},{"x":1756855622296,"y":119.825},{"x":1756855562019,"y":114.297},{"x":1756855501803,"y":104.442},{"x":1756855441595,"y":118.016},{"x":1756855381395,"y":111.819},{"x":1756855321181,"y":105.159},{"x":1756855260976,"y":104.218},{"x":1756855200820,"y":113.279},{"x":1756855140544,"y":109.183},{"x":1756855080348,"y":122.601},{"x":1756855022921,"y":118.527},{"x":1756854962725,"y":128.356},{"x":1756854902515,"y":125.073},{"x":1756854842319,"y":117.45},{"x":1756854782121,"y":119.053},{"x":1756854721884,"y":102.938},{"x":1756854661616,"y":99.014},{"x":1756854601392,"y":106.552},{"x":1756854541185,"y":106.594},{"x":1756854480979,"y":114.224},{"x":1756854420778,"y":121.961},{"x":1756854360597,"y":111.643},{"x":1756854300452,"y":111.267},{"x":1756854240197,"y":107.532},{"x":1756854182860,"y":109.554},{"x":1756854122651,"y":109.935},{"x":1756854062444,"y":115.579},{"x":1756854000912,"y":118.623},{"x":1756853940616,"y":114.14},{"x":1756853880396,"y":109.968},{"x":1756853820187,"y":117.531},{"x":1756853762860,"y":130.146},{"x":1756853702623,"y":108.27},{"x":1756853642418,"y":110.826},{"x":1756853582224,"y":130.17},{"x":1756853522015,"y":128.498},{"x":1756853461663,"y":121.364},{"x":1756853401066,"y":137.682},{"x":1756853340860,"y":115.638},{"x":1756853280661,"y":108.456},{"x":1756853220478,"y":117.898},{"x":1756853160315,"y":123.408},{"x":1756853102856,"y":120.684},{"x":1756853042641,"y":121.882},{"x":1756852982424,"y":111.511},{"x":1756852922230,"y":114.381},{"x":1756852862023,"y":107.73},{"x":1756852801829,"y":100.92},{"x":1756852741636,"y":110.274},{"x":1756852681433,"y":119.931},{"x":1756852621236,"y":103.741},{"x":1756852561004,"y":121.362},{"x":1756852500815,"y":106.287},{"x":1756852440579,"y":113.947},{"x":1756852380404,"y":119.553},{"x":1756852322953,"y":124.698},{"x":1756852262749,"y":121.306},{"x":1756852202554,"y":116.321},{"x":1756852142362,"y":114.297},{"x":1756852082154,"y":114.013},{"x":1756852021949,"y":125.156},{"x":1756851961741,"y":134.019},{"x":1756851901511,"y":131.687},{"x":1756851841310,"y":129.995},{"x":1756851781109,"y":125.494},{"x":1756851720892,"y":117.458},{"x":1756851660707,"y":124.009},{"x":1756851600593,"y":123.539},{"x":1756851540331,"y":125.239},{"x":1756851483032,"y":116.341},{"x":1756851422811,"y":119.615},{"x":1756851362503,"y":140.15},{"x":1756851302301,"y":144.137},{"x":1756851242092,"y":138.207},{"x":1756851181875,"y":145.038},{"x":1756851121704,"y":110.604},{"x":1756851061402,"y":111.426},{"x":1756851001162,"y":110.224},{"x":1756850940930,"y":119.489},{"x":1756850880733,"y":115.397},{"x":1756850820556,"y":118.107},{"x":1756850760387,"y":117.248},{"x":1756850700230,"y":116.053},{"x":1756850642864,"y":127.941},{"x":1756850582651,"y":132.378},{"x":1756850522434,"y":137.793},{"x":1756850462244,"y":120.831},{"x":1756850401361,"y":112.372},{"x":1756850340938,"y":113.319},{"x":1756850280688,"y":117.356},{"x":1756850220517,"y":126.787},{"x":1756850160477,"y":128.218},{"x":1756850100078,"y":132.842},{"x":1756850042848,"y":110.638},{"x":1756849982661,"y":135.37},{"x":1756849922473,"y":130.875},{"x":1756849862256,"y":124.79},{"x":1756849802060,"y":125.602},{"x":1756849741831,"y":119.517},{"x":1756849681631,"y":125.525},{"x":1756849621420,"y":112.593},{"x":1756849561191,"y":124.362},{"x":1756849501027,"y":127.39},{"x":1756849440747,"y":127.452},{"x":1756849380562,"y":135.295},{"x":1756849320312,"y":129.117},{"x":1756849262891,"y":119.797},{"x":1756849202703,"y":125.136},{"x":1756849142499,"y":126.253},{"x":1756849082301,"y":129.722},{"x":1756849022106,"y":124.681},{"x":1756848961170,"y":121.461},{"x":1756848900965,"y":112.899},{"x":1756848840763,"y":108.45},{"x":1756848780546,"y":127.698},{"x":1756848720402,"y":124.19},{"x":1756848662901,"y":126.204},{"x":1756848602699,"y":120.211},{"x":1756848542494,"y":122.917},{"x":1756848482298,"y":123.28},{"x":1756848422099,"y":119.279},{"x":1756848361894,"y":115.745},{"x":1756848301688,"y":120.422},{"x":1756848241487,"y":134.206},{"x":1756848181282,"y":128.204},{"x":1756848121078,"y":120.937},{"x":1756848060899,"y":121.096},{"x":1756848000711,"y":128.153},{"x":1756847940554,"y":136.709},{"x":1756847880386,"y":114.275},{"x":1756847822912,"y":114.611},{"x":1756847762715,"y":125.174},{"x":1756847702508,"y":125.732},{"x":1756847642311,"y":128.081},{"x":1756847582120,"y":151.194},{"x":1756847521890,"y":117.176},{"x":1756847461558,"y":134.08},{"x":1756847400852,"y":137.214},{"x":1756847340602,"y":132.791},{"x":1756847282906,"y":161.753},{"x":1756847222705,"y":158.1},{"x":1756847162507,"y":156.791},{"x":1756847102326,"y":151.961},{"x":1756847042097,"y":151.343},{"x":1756846981893,"y":126.642},{"x":1756846921745,"y":142.135},{"x":1756846861635,"y":141.751},{"x":1756846801034,"y":135.6},{"x":1756846740632,"y":156.493},{"x":1756846680328,"y":146.929},{"x":1756846623016,"y":130.11},{"x":1756846562814,"y":130.919},{"x":1756846502618,"y":118.658},{"x":1756846442425,"y":137.638},{"x":1756846382224,"y":133.773},{"x":1756846322046,"y":143.632},{"x":1756846261760,"y":131.225},{"x":1756846200725,"y":139.768},{"x":1756846140499,"y":157.884},{"x":1756846080344,"y":129.552},{"x":1756846022842,"y":117.325},{"x":1756845962653,"y":122.694},{"x":1756845902449,"y":123.927},{"x":1756845842259,"y":127.605},{"x":1756845782065,"y":126.041},{"x":1756845721853,"y":127.131},{"x":1756845661658,"y":121.978},{"x":1756845601473,"y":126.284},{"x":1756845541279,"y":131.343},{"x":1756845481067,"y":129.617},{"x":1756845420865,"y":125.913},{"x":1756845360635,"y":143.845},{"x":1756845300446,"y":140.228},{"x":1756845240220,"y":134.983},{"x":1756845182889,"y":148.65},{"x":1756845122688,"y":169.16},{"x":1756845062490,"y":139.981},{"x":1756845002305,"y":131.127},{"x":1756844942097,"y":137.904},{"x":1756844881916,"y":125.076},{"x":1756844821711,"y":149.827},{"x":1756844761480,"y":140.706},{"x":1756844700762,"y":122.984},{"x":1756844640500,"y":145.977},{"x":1756844580298,"y":161.129},{"x":1756844522951,"y":140.033},{"x":1756844462739,"y":140.403},{"x":1756844402549,"y":142.687},{"x":1756844342358,"y":133.831},{"x":1756844282149,"y":120.87},{"x":1756844221930,"y":118.682},{"x":1756844161559,"y":129.079},{"x":1756844101360,"y":123.241},{"x":1756844041150,"y":138.742},{"x":1756843980922,"y":134.124},{"x":1756843920697,"y":140.65},{"x":1756843860513,"y":134.622},{"x":1756843802942,"y":148.528},{"x":1756843742744,"y":106.05},{"x":1756843682545,"y":136.948},{"x":1756843622380,"y":156.783},{"x":1756843562153,"y":167.909},{"x":1756843501958,"y":143.464},{"x":1756843441746,"y":173.568},{"x":1756843381543,"y":169.983},{"x":1756843321341,"y":125.286},{"x":1756843261120,"y":122.501},{"x":1756843201007,"y":122.688},{"x":1756843140664,"y":142.93},{"x":1756843080469,"y":147.917},{"x":1756843020077,"y":143.41},{"x":1756842962845,"y":153.166},{"x":1756842902641,"y":156.525},{"x":1756842842429,"y":130.315},{"x":1756842782236,"y":150.842},{"x":1756842722023,"y":167.981},{"x":1756842661559,"y":163.186},{"x":1756842600935,"y":149.935},{"x":1756842540713,"y":168.017},{"x":1756842480572,"y":154.293},{"x":1756842420386,"y":152.072},{"x":1756842363025,"y":155.413},{"x":1756842302809,"y":187.087},{"x":1756842242613,"y":182.489},{"x":1756842182406,"y":192.381},{"x":1756842122206,"y":155.698},{"x":1756842061988,"y":163.461},{"x":1756842001780,"y":170.539},{"x":1756841941574,"y":179.991},{"x":1756841881409,"y":180.539},{"x":1756841821173,"y":186.154},{"x":1756841760943,"y":161.366},{"x":1756841700785,"y":160.405},{"x":1756841640541,"y":172.447},{"x":1756841580394,"y":147.924},{"x":1756841523003,"y":148.758},{"x":1756841462781,"y":143.533},{"x":1756841402584,"y":162.095},{"x":1756841342367,"y":158.728},{"x":1756841282159,"y":141.119},{"x":1756841221949,"y":130.599},{"x":1756841161752,"y":144.544},{"x":1756841101537,"y":160.484},{"x":1756841041342,"y":168.088},{"x":1756840981131,"y":169.379},{"x":1756840920915,"y":164.542},{"x":1756840860721,"y":169.409},{"x":1756840800702,"y":161.069},{"x":1756840740348,"y":141.0},{"x":1756840682982,"y":170.039},{"x":1756840622774,"y":168.864},{"x":1756840562511,"y":169.609},{"x":1756840502305,"y":164.386},{"x":1756840442096,"y":149.395},{"x":1756840381876,"y":148.087},{"x":1756840321653,"y":167.914},{"x":1756840261400,"y":159.26},{"x":1756840200780,"y":156.636},{"x":1756840140526,"y":172.003},{"x":1756840082940,"y":161.794},{"x":1756840022741,"y":148.666},{"x":1756839962539,"y":143.42},{"x":1756839902343,"y":140.99},{"x":1756839842147,"y":145.241},{"x":1756839781941,"y":158.74},{"x":1756839721747,"y":151.556},{"x":1756839661558,"y":154.264},{"x":1756839601691,"y":132.156},{"x":1756839541061,"y":166.825},{"x":1756839480777,"y":149.484},{"x":1756839420597,"y":144.929},{"x":1756839360401,"y":144.076},{"x":1756839303011,"y":141.707},{"x":1756839242793,"y":147.724},{"x":1756839182600,"y":142.916},{"x":1756839122388,"y":141.341},{"x":1756839062180,"y":131.557},{"x":1756839001963,"y":128.591},{"x":1756838941766,"y":140.535},{"x":1756838881564,"y":129.188},{"x":1756838821338,"y":167.376},{"x":1756838761135,"y":163.534},{"x":1756838700990,"y":124.485},{"x":1756838640678,"y":148.582},{"x":1756838580476,"y":142.793},{"x":1756838520377,"y":116.166},{"x":1756838462846,"y":133.554},{"x":1756838402630,"y":130.325},{"x":1756838342425,"y":117.963},{"x":1756838282218,"y":101.861},{"x":1756838221998,"y":145.132},{"x":1756838161352,"y":139.982},{"x":1756838101149,"y":133.902},{"x":1756838040931,"y":143.023},{"x":1756837980718,"y":143.371},{"x":1756837920520,"y":142.842},{"x":1756837860300,"y":150.78},{"x":1756837802894,"y":148.825},{"x":1756837742667,"y":123.976},{"x":1756837682471,"y":132.81},{"x":1756837622257,"y":141.764},{"x":1756837562065,"y":104.981},{"x":1756837501829,"y":106.566},{"x":1756837441635,"y":121.546},{"x":1756837381431,"y":140.501},{"x":1756837321180,"y":145.19},{"x":1756837260967,"y":152.555},{"x":1756837200887,"y":171.393},{"x":1756837140581,"y":157.824},{"x":1756837080388,"y":154.326},{"x":1756837022925,"y":163.035},{"x":1756836962723,"y":145.918},{"x":1756836902520,"y":156.274},{"x":1756836842296,"y":165.533},{"x":1756836782097,"y":190.542},{"x":1756836721835,"y":133.566},{"x":1756836661541,"y":158.958},{"x":1756836601124,"y":156.071},{"x":1756836540893,"y":155.965},{"x":1756836480734,"y":180.056},{"x":1756836420517,"y":196.383},{"x":1756836360254,"y":186.108},{"x":1756836302888,"y":183.406},{"x":1756836242673,"y":112.747},{"x":1756836182477,"y":148.889},{"x":1756836122272,"y":149.055},{"x":1756836062074,"y":134.492},{"x":1756836001241,"y":162.824},{"x":1756835940854,"y":143.109},{"x":1756835880585,"y":147.717},{"x":1756835820388,"y":148.978},{"x":1756835760283,"y":160.291},{"x":1756835702879,"y":171.055},{"x":1756835642658,"y":166.842},{"x":1756835582462,"y":158.538},{"x":1756835522267,"y":170.178},{"x":1756835462048,"y":141.621},{"x":1756835401834,"y":148.249},{"x":1756835341622,"y":150.899},{"x":1756835281420,"y":145.087},{"x":1756835221217,"y":177.181},{"x":1756835160994,"y":178.09},{"x":1756835100837,"y":139.694},{"x":1756835040580,"y":160.744},{"x":1756834980445,"y":164.318},{"x":1756834923015,"y":159.795},{"x":1756834862805,"y":158.296},{"x":1756834802608,"y":169.134},{"x":1756834742414,"y":178.789},{"x":1756834682209,"y":165.71},{"x":1756834621979,"y":153.126},{"x":1756834561435,"y":140.242},{"x":1756834501217,"y":148.653},{"x":1756834440990,"y":154.882},{"x":1756834380785,"y":158.307},{"x":1756834320560,"y":178.979},{"x":1756834260424,"y":182.261},{"x":1756834203027,"y":161.324},{"x":1756834142792,"y":145.528},{"x":1756834082591,"y":128.705},{"x":1756834022278,"y":132.612},{"x":1756833962070,"y":131.842},{"x":1756833901857,"y":141.565},{"x":1756833841654,"y":152.685},{"x":1756833781426,"y":175.753},{"x":1756833721223,"y":142.548},{"x":1756833660985,"y":128.089},{"x":1756833600830,"y":167.642},{"x":1756833540546,"y":189.731},{"x":1756833480352,"y":152.396},{"x":1756833422939,"y":177.907},{"x":1756833362741,"y":152.732},{"x":1756833302518,"y":152.188},{"x":1756833242329,"y":174.527},{"x":1756833182118,"y":177.76},{"x":1756833121824,"y":122.026},{"x":1756833061501,"y":132.486},{"x":1756833000961,"y":134.724},{"x":1756832940699,"y":132.178},{"x":1756832882794,"y":142.034},{"x":1756832822593,"y":153.461},{"x":1756832762380,"y":145.988},{"x":1756832702180,"y":140.239},{"x":1756832641967,"y":151.353},{"x":1756832581755,"y":142.693},{"x":1756832521542,"y":133.859},{"x":1756832461341,"y":156.87},{"x":1756832401627,"y":150.911},{"x":1756832341175,"y":138.314},{"x":1756832280884,"y":160.105},{"x":1756832220686,"y":159.895},{"x":1756832160516,"y":187.735},{"x":1756832100301,"y":147.912},{"x":1756832042961,"y":149.752},{"x":1756831982727,"y":178.085},{"x":1756831922520,"y":162.847},{"x":1756831862310,"y":173.103},{"x":1756831802106,"y":169.78},{"x":1756831741888,"y":148.968},{"x":1756831681685,"y":150.247},{"x":1756831621458,"y":165.911},{"x":1756831561242,"y":147.332},{"x":1756831501078,"y":142.577},{"x":1756831440669,"y":171.944},{"x":1756831380449,"y":154.006},{"x":1756831320222,"y":134.979},{"x":1756831262825,"y":137.042},{"x":1756831202621,"y":152.982},{"x":1756831142404,"y":138.765},{"x":1756831082208,"y":133.05},{"x":1756831022005,"y":147.605},{"x":1756830961369,"y":135.582},{"x":1756830901154,"y":142.409},{"x":1756830840933,"y":141.928},{"x":1756830780719,"y":133.624},{"x":1756830720626,"y":140.4},{"x":1756830660350,"y":158.065},{"x":1756830602934,"y":159.866},{"x":1756830542725,"y":143.068},{"x":1756830482520,"y":141.051},{"x":1756830422326,"y":136.757},{"x":1756830362126,"y":129.216},{"x":1756830301905,"y":146.368},{"x":1756830241705,"y":170.687},{"x":1756830181505,"y":164.815},{"x":1756830121297,"y":184.906},{"x":1756830061087,"y":171.916},{"x":1756830000955,"y":138.047},{"x":1756829940662,"y":143.793},{"x":1756829880466,"y":154.246},{"x":1756829822911,"y":156.164},{"x":1756829762705,"y":153.705},{"x":1756829702475,"y":157.511},{"x":1756829642297,"y":141.099},{"x":1756829582071,"y":158.901},{"x":1756829521827,"y":161.798},{"x":1756829461577,"y":147.26},{"x":1756829401184,"y":165.972},{"x":1756829340939,"y":168.79},{"x":1756829280760,"y":134.699},{"x":1756829220528,"y":146.491},{"x":1756829160349,"y":154.534},{"x":1756829100064,"y":160.897},{"x":1756829042810,"y":151.714},{"x":1756828982599,"y":151.604},{"x":1756828922419,"y":168.801},{"x":1756828862193,"y":167.938},{"x":1756828802826,"y":177.685},{"x":1756828742542,"y":171.149},{"x":1756828682221,"y":186.432},{"x":1756828622013,"y":135.56},{"x":1756828561782,"y":136.479},{"x":1756828501522,"y":130.521},{"x":1756828441316,"y":125.045},{"x":1756828381096,"y":131.054},{"x":1756828320878,"y":132.651},{"x":1756828260671,"y":135.58},{"x":1756828200554,"y":151.026},{"x":1756828140418,"y":156.635},{"x":1756828082929,"y":147.538},{"x":1756828022725,"y":153.019},{"x":1756827962503,"y":163.987},{"x":1756827902306,"y":144.755},{"x":1756827842100,"y":140.729},{"x":1756827781886,"y":148.58},{"x":1756827721685,"y":149.911},{"x":1756827661481,"y":134.145},{"x":1756827600692,"y":132.348},{"x":1756827540465,"y":143.865},{"x":1756827480355,"y":150.999},{"x":1756827422698,"y":155.288},{"x":1756827362460,"y":126.588},{"x":1756827302270,"y":125.697},{"x":1756827242024,"y":161.026},{"x":1756827181798,"y":141.784},{"x":1756827121600,"y":128.008},{"x":1756827061387,"y":127.249},{"x":1756827001248,"y":164.546},{"x":1756826940912,"y":175.081},{"x":1756826880692,"y":155.528},{"x":1756826820484,"y":125.341},{"x":1756826760299,"y":134.207},{"x":1756826702976,"y":138.45},{"x":1756826642744,"y":153.212},{"x":1756826582524,"y":152.693},{"x":1756826522315,"y":152.299},{"x":1756826461172,"y":138.672},{"x":1756826400966,"y":175.763},{"x":1756826340725,"y":149.103},{"x":1756826280618,"y":129.357},{"x":1756826220321,"y":135.302},{"x":1756826162903,"y":154.892},{"x":1756826102696,"y":120.133},{"x":1756826042489,"y":136.007},{"x":1756825982278,"y":138.987},{"x":1756825922016,"y":159.675},{"x":1756825861736,"y":179.946},{"x":1756825801496,"y":147.359},{"x":1756825741271,"y":203.256},{"x":1756825681035,"y":194.351},{"x":1756825620836,"y":192.984},{"x":1756825560508,"y":171.578},{"x":1756825500403,"y":220.934},{"x":1756825442933,"y":185.288},{"x":1756825382717,"y":164.718},{"x":1756825322525,"y":174.249},{"x":1756825262296,"y":158.036},{"x":1756825200976,"y":163.281},{"x":1756825140647,"y":181.438},{"x":1756825080482,"y":169.089},{"x":1756825020174,"y":172.248},{"x":1756824962873,"y":161.217},{"x":1756824902652,"y":191.285},{"x":1756824842453,"y":185.136},{"x":1756824782247,"y":160.114},{"x":1756824722039,"y":163.144},{"x":1756824661706,"y":160.281},{"x":1756824600802,"y":161.554},{"x":1756824540547,"y":153.876},{"x":1756824480279,"y":148.876},{"x":1756824422941,"y":153.438},{"x":1756824362766,"y":149.483},{"x":1756824302522,"y":182.343},{"x":1756824242320,"y":180.6},{"x":1756824182094,"y":159.319},{"x":1756824121860,"y":194.179},{"x":1756824061638,"y":179.402},{"x":1756824001265,"y":144.081},{"x":1756823941034,"y":155.843},{"x":1756823880823,"y":135.21},{"x":1756823820636,"y":127.991},{"x":1756823760372,"y":153.297},{"x":1756823702993,"y":167.122},{"x":1756823642823,"y":140.715},{"x":1756823582701,"y":147.728},{"x":1756823522533,"y":155.041},{"x":1756823462394,"y":189.566},{"x":1756823402247,"y":168.843},{"x":1756823342061,"y":183.947},{"x":1756823281874,"y":172.757},{"x":1756823221715,"y":149.016},{"x":1756823161506,"y":170.039},{"x":1756823101157,"y":143.062},{"x":1756823040995,"y":156.923},{"x":1756822980834,"y":167.788},{"x":1756822920668,"y":156.748},{"x":1756822860544,"y":195.333},{"x":1756822800384,"y":194.086},{"x":1756822740164,"y":175.61},{"x":1756822682609,"y":197.567},{"x":1756822622447,"y":207.884},{"x":1756822562275,"y":168.081},{"x":1756822502127,"y":167.221},{"x":1756822441961,"y":166.445},{"x":1756822381787,"y":164.504},{"x":1756822321588,"y":166.835},{"x":1756822261363,"y":190.229},{"x":1756822200862,"y":186.193},{"x":1756822140651,"y":199.011},{"x":1756822082709,"y":186.168},{"x":1756822022511,"y":164.9},{"x":1756821962362,"y":150.186},{"x":1756821902184,"y":182.544},{"x":1756821841997,"y":146.384},{"x":1756821781823,"y":171.386},{"x":1756821721612,"y":161.941},{"x":1756821661470,"y":187.456},{"x":1756821600786,"y":167.684},{"x":1756821540470,"y":158.973},{"x":1756821480248,"y":145.158},{"x":1756821422908,"y":151.696},{"x":1756821362701,"y":137.083},{"x":1756821302534,"y":148.218},{"x":1756821242329,"y":155.031},{"x":1756821182146,"y":131.848},{"x":1756821121960,"y":156.938},{"x":1756821061713,"y":148.561},{"x":1756821001539,"y":140.374},{"x":1756820941345,"y":154.933},{"x":1756820881167,"y":164.114},{"x":1756820820982,"y":151.687},{"x":1756820760807,"y":157.626},{"x":1756820700736,"y":144.547},{"x":1756820640502,"y":160.529},{"x":1756820580316,"y":165.789},{"x":1756820522940,"y":149.068},{"x":1756820462786,"y":146.442},{"x":1756820402591,"y":127.36},{"x":1756820342402,"y":165.213},{"x":1756820282209,"y":143.13},{"x":1756820222018,"y":117.698},{"x":1756820161805,"y":152.864},{"x":1756820101621,"y":123.432},{"x":1756820041440,"y":141.126},{"x":1756819981230,"y":141.665},{"x":1756819921050,"y":146.574},{"x":1756819860871,"y":159.942},{"x":1756819800788,"y":156.01},{"x":1756819740517,"y":176.38},{"x":1756819680375,"y":172.882},{"x":1756819622963,"y":149.9},{"x":1756819562803,"y":163.952},{"x":1756819502579,"y":183.774},{"x":1756819442384,"y":141.822},{"x":1756819382200,"y":171.606},{"x":1756819321992,"y":167.63},{"x":1756819261138,"y":127.909},{"x":1756819200982,"y":105.577},{"x":1756819140751,"y":151.064},{"x":1756819080593,"y":141.395},{"x":1756819020402,"y":140.457},{"x":1756818960259,"y":112.077},{"x":1756818902934,"y":132.756},{"x":1756818841559,"y":131.343},{"x":1756818781356,"y":152.6},{"x":1756818721147,"y":166.841},{"x":1756818662984,"y":170.059},{"x":1756818602786,"y":182.337},{"x":1756818542615,"y":159.997},{"x":1756818482434,"y":180.628},{"x":1756818420937,"y":140.574},{"x":1756818360771,"y":151.872},{"x":1756818305782,"y":117.666},{"x":1756818242611,"y":103.841},{"x":1756818182431,"y":125.255},{"x":1756818122263,"y":125.94},{"x":1756818062091,"y":140.733},{"x":1756818001649,"y":113.356},{"x":1756817941201,"y":123.124},{"x":1756817880456,"y":150.987},{"x":1756817820238,"y":132.526},{"x":1756817762981,"y":150.486},{"x":1756817702831,"y":174.678},{"x":1756817642687,"y":128.813},{"x":1756817582523,"y":147.233},{"x":1756817522373,"y":128.653},{"x":1756817462195,"y":120.926},{"x":1756817402054,"y":144.188},{"x":1756817341890,"y":120.629},{"x":1756817281742,"y":100.844},{"x":1756817221534,"y":93.75},{"x":1756817161364,"y":89.424},{"x":1756817101849,"y":94.009},{"x":1756817041687,"y":108.659},{"x":1756816981535,"y":143.154},{"x":1756816921390,"y":149.419},{"x":1756816861235,"y":128.75},{"x":1756816800906,"y":126.511},{"x":1756816740684,"y":116.042},{"x":1756816680563,"y":121.448},{"x":1756816620342,"y":111.196},{"x":1756816560148,"y":85.057},{"x":1756816502874,"y":91.374},{"x":1756816442729,"y":101.539},{"x":1756816382578,"y":101.327},{"x":1756816322431,"y":110.75},{"x":1756816262279,"y":118.237},{"x":1756816202132,"y":108.952},{"x":1756816141968,"y":111.403},{"x":1756816081829,"y":124.09},{"x":1756816021689,"y":124.611},{"x":1756815961523,"y":129.166},{"x":1756815901287,"y":103.453},{"x":1756815841134,"y":83.051},{"x":1756815780962,"y":91.674},{"x":1756815720820,"y":98.17},{"x":1756815660675,"y":125.094},{"x":1756815600670,"y":150.207},{"x":1756815540403,"y":131.856},{"x":1756815482991,"y":159.599},{"x":1756815422839,"y":140.315},{"x":1756815362674,"y":148.11},{"x":1756815302488,"y":119.381},{"x":1756815242342,"y":84.83},{"x":1756815182196,"y":84.869},{"x":1756815122041,"y":78.634},{"x":1756815061851,"y":76.609},{"x":1756815001662,"y":92.118},{"x":1756814941512,"y":109.785},{"x":1756814881364,"y":128.546},{"x":1756814821218,"y":101.573},{"x":1756814761066,"y":106.911},{"x":1756814700935,"y":111.958},{"x":1756814640770,"y":109.679},{"x":1756814580686,"y":110.013},{"x":1756814520533,"y":117.014},{"x":1756814463189,"y":119.438},{"x":1756814400641,"y":137.377},{"x":1756814340305,"y":135.603},{"x":1756814283034,"y":137.582},{"x":1756814222872,"y":136.048},{"x":1756814162766,"y":116.713},{"x":1756814102580,"y":123.385},{"x":1756814041625,"y":116.933},{"x":1756813980868,"y":100.976},{"x":1756813920730,"y":96.121},{"x":1756813862913,"y":135.648},{"x":1756813802753,"y":143.501},{"x":1756813742612,"y":140.882},{"x":1756813682479,"y":125.84},{"x":1756813622334,"y":119.587},{"x":1756813562188,"y":129.059},{"x":1756813502053,"y":120.466},{"x":1756813441898,"y":99.614},{"x":1756813381748,"y":111.113},{"x":1756813321590,"y":110.212},{"x":1756813261440,"y":131.341},{"x":1756813201031,"y":115.687},{"x":1756813140723,"y":140.213},{"x":1756813080589,"y":141.724},{"x":1756813020499,"y":124.522},{"x":1756812960445,"y":135.713},{"x":1756812902972,"y":125.051},{"x":1756812842828,"y":113.44},{"x":1756812782684,"y":115.662},{"x":1756812722551,"y":102.696},{"x":1756812662433,"y":113.91},{"x":1756812602277,"y":109.228},{"x":1756812542123,"y":129.963},{"x":1756812481973,"y":128.207},{"x":1756812421836,"y":115.88},{"x":1756812361683,"y":121.762},{"x":1756812300646,"y":121.728},{"x":1756812240419,"y":122.803},{"x":1756812180283,"y":119.776},{"x":1756812122931,"y":122.062},{"x":1756812062553,"y":109.637},{"x":1756812002387,"y":89.252},{"x":1756811942248,"y":89.533},{"x":1756811882104,"y":92.424},{"x":1756811821960,"y":84.626},{"x":1756811761596,"y":89.055},{"x":1756811701391,"y":84.329},{"x":1756811641237,"y":83.714},{"x":1756811581080,"y":91.239},{"x":1756811520916,"y":95.516},{"x":1756811460732,"y":82.356},{"x":1756811400670,"y":100.399},{"x":1756811340468,"y":83.586},{"x":1756811282723,"y":75.355},{"x":1756811222577,"y":94.498},{"x":1756811162444,"y":82.846},{"x":1756811102310,"y":76.021},{"x":1756811042170,"y":103.964},{"x":1756810982028,"y":75.408},{"x":1756810921887,"y":118.285},{"x":1756810861755,"y":137.864},{"x":1756810800629,"y":121.971},{"x":1756810740313,"y":87.411},{"x":1756810682999,"y":88.886},{"x":1756810622857,"y":109.634},{"x":1756810562716,"y":132.603},{"x":1756810502582,"y":121.534},{"x":1756810442415,"y":94.542},{"x":1756810382270,"y":84.508},{"x":1756810322105,"y":76.388},{"x":1756810261666,"y":93.781},{"x":1756810201120,"y":73.295},{"x":1756810140935,"y":101.033},{"x":1756810080834,"y":108.53},{"x":1756810020650,"y":116.618},{"x":1756809960526,"y":123.25},{"x":1756809900787,"y":126.208},{"x":1756809842997,"y":122.094},{"x":1756809782855,"y":109.253},{"x":1756809722697,"y":108.935},{"x":1756809662564,"y":78.969},{"x":1756809602430,"y":106.813},{"x":1756809542265,"y":121.485},{"x":1756809482115,"y":128.147},{"x":1756809421966,"y":93.839},{"x":1756809361276,"y":110.423},{"x":1756809301080,"y":118.872},{"x":1756809240902,"y":89.207},{"x":1756809180853,"y":106.401},{"x":1756809120772,"y":95.416},{"x":1756809060686,"y":87.303},{"x":1756809000472,"y":104.16},{"x":1756808940329,"y":114.768},{"x":1756808882932,"y":107.052},{"x":1756808822803,"y":122.375},{"x":1756808762660,"y":87.696},{"x":1756808702525,"y":100.01},{"x":1756808642385,"y":86.207},{"x":1756808582246,"y":99.528},{"x":1756808522079,"y":107.348},{"x":1756808461280,"y":93.184},{"x":1756808401142,"y":87.26},{"x":1756808343990,"y":124.804},{"x":1756808280459,"y":83.132},{"x":1756808220341,"y":90.437},{"x":1756808162966,"y":86.261},{"x":1756808102806,"y":94.454},{"x":1756808042653,"y":110.297},{"x":1756807982755,"y":112.78},{"x":1756807922555,"y":120.036},{"x":1756807862382,"y":109.939},{"x":1756807802232,"y":104.415},{"x":1756807742729,"y":87.937},{"x":1756807682599,"y":98.726},{"x":1756807622457,"y":105.367},{"x":1756807562312,"y":103.304},{"x":1756807502162,"y":133.004},{"x":1756807441989,"y":178.316},{"x":1756807381842,"y":139.819},{"x":1756807321699,"y":135.272},{"x":1756807261557,"y":118.851},{"x":1756807202277,"y":118.188},{"x":1756807141992,"y":91.112},{"x":1756807081830,"y":122.503},{"x":1756807021682,"y":83.811},{"x":1756806961557,"y":99.686},{"x":1756806901424,"y":97.776},{"x":1756806841281,"y":120.82},{"x":1756806781145,"y":101.829},{"x":1756806720984,"y":103.661},{"x":1756806660845,"y":92.953},{"x":1756806600731,"y":115.431},{"x":1756806540568,"y":105.848},{"x":1756806482544,"y":106.049},{"x":1756806422405,"y":121.171},{"x":1756806362258,"y":105.736},{"x":1756806302093,"y":103.338},{"x":1756806241954,"y":92.155},{"x":1756806181806,"y":89.048},{"x":1756806121684,"y":87.325},{"x":1756806061490,"y":112.329},{"x":1756806001184,"y":93.923},{"x":1756805941016,"y":91.29},{"x":1756805880856,"y":113.586},{"x":1756805822014,"y":121.394},{"x":1756805761319,"y":127.175},{"x":1756805701178,"y":86.295},{"x":1756805641022,"y":90.402},{"x":1756805580864,"y":88.501},{"x":1756805520747,"y":113.666},{"x":1756805460575,"y":105.855},{"x":1756805400675,"y":115.874},{"x":1756805342997,"y":121.561},{"x":1756805282856,"y":124.751},{"x":1756805222714,"y":127.051},{"x":1756805162565,"y":120.884},{"x":1756805102417,"y":117.498},{"x":1756805042266,"y":126.078},{"x":1756804982123,"y":109.035},{"x":1756804921965,"y":105.147},{"x":1756804861593,"y":100.775},{"x":1756804801459,"y":83.567},{"x":1756804741300,"y":109.885},{"x":1756804681156,"y":92.768},{"x":1756804620999,"y":93.248},{"x":1756804560877,"y":98.19},{"x":1756804500777,"y":79.691},{"x":1756804440607,"y":76.523},{"x":1756804380501,"y":69.791},{"x":1756804320581,"y":73.426},{"x":1756804260260,"y":64.514},{"x":1756804202862,"y":64.54},{"x":1756804142708,"y":61.0},{"x":1756804082563,"y":64.534},{"x":1756804022406,"y":67.636},{"x":1756803962268,"y":78.912},{"x":1756803902114,"y":79.152},{"x":1756803841972,"y":84.766},{"x":1756803781820,"y":89.134},{"x":1756803721688,"y":98.338},{"x":1756803661555,"y":69.044},{"x":1756803602133,"y":78.98},{"x":1756803541915,"y":73.232},{"x":1756803481764,"y":66.872},{"x":1756803421607,"y":95.333},{"x":1756803361463,"y":89.801},{"x":1756803300799,"y":77.344},{"x":1756803240570,"y":92.54},{"x":1756803180396,"y":93.18},{"x":1756803120482,"y":61.277},{"x":1756803062970,"y":98.639},{"x":1756803002829,"y":63.598},{"x":1756802942680,"y":52.128},{"x":1756802882536,"y":85.108},{"x":1756802822386,"y":69.378},{"x":1756802762253,"y":73.838},{"x":1756802702117,"y":48.886},{"x":1756802641964,"y":95.035},{"x":1756802581817,"y":62.764},{"x":1756802521673,"y":60.269},{"x":1756802461529,"y":96.104},{"x":1756802401275,"y":88.898},{"x":1756802341131,"y":53.771},{"x":1756802280988,"y":59.321},{"x":1756802220849,"y":55.417},{"x":1756802160744,"y":54.006},{"x":1756802100630,"y":61.702},{"x":1756802040456,"y":74.089},{"x":1756801980378,"y":66.448},{"x":1756801923016,"y":91.481},{"x":1756801862870,"y":60.901},{"x":1756801802718,"y":66.55},{"x":1756801742571,"y":69.396},{"x":1756801682427,"y":89.761},{"x":1756801622270,"y":100.072},{"x":1756801562132,"y":101.164},{"x":1756801500672,"y":64.764},{"x":1756801440550,"y":87.344},{"x":1756801380278,"y":87.313},{"x":1756801323009,"y":63.034},{"x":1756801262854,"y":85.979},{"x":1756801202718,"y":89.514},{"x":1756801142579,"y":86.922},{"x":1756801082444,"y":98.098},{"x":1756801022304,"y":73.181},{"x":1756800962148,"y":61.244},{"x":1756800902007,"y":74.24},{"x":1756800841860,"y":71.455},{"x":1756800781722,"y":75.386},{"x":1756800721577,"y":79.92},{"x":1756800661435,"y":73.658},{"x":1756800600799,"y":64.103},{"x":1756800540541,"y":99.294},{"x":1756800482758,"y":94.674},{"x":1756800422619,"y":92.224},{"x":1756800362481,"y":73.362},{"x":1756800302334,"y":71.515},{"x":1756800242193,"y":81.067},{"x":1756800182048,"y":64.207},{"x":1756800121910,"y":75.52},{"x":1756800061790,"y":66.598},{"x":1756800002137,"y":65.458},{"x":1756799941991,"y":64.001},{"x":1756799881791,"y":70.96},{"x":1756799821655,"y":81.503},{"x":1756799761515,"y":75.479},{"x":1756799700940,"y":74.417},{"x":1756799640792,"y":90.138},{"x":1756799580664,"y":72.941},{"x":1756799520592,"y":58.025},{"x":1756799460439,"y":55.691},{"x":1756799400342,"y":50.226},{"x":1756799343047,"y":54.23},{"x":1756799282873,"y":54.74},{"x":1756799222737,"y":66.906},{"x":1756799162598,"y":62.73},{"x":1756799102368,"y":64.271},{"x":1756799042238,"y":75.161},{"x":1756798982088,"y":62.411},{"x":1756798921945,"y":50.947},{"x":1756798861812,"y":52.702},{"x":1756798801664,"y":55.034},{"x":1756798741517,"y":54.982},{"x":1756798681380,"y":74.298},{"x":1756798621247,"y":66.97},{"x":1756798561105,"y":77.185},{"x":1756798500948,"y":70.606},{"x":1756798440803,"y":72.11},{"x":1756798380675,"y":70.912},{"x":1756798320598,"y":65.378},{"x":1756798260464,"y":64.915},{"x":1756798200418,"y":60.834},{"x":1756798142951,"y":57.47},{"x":1756798082817,"y":47.501},{"x":1756798022682,"y":52.877},{"x":1756797962538,"y":57.241},{"x":1756797902399,"y":53.648},{"x":1756797842257,"y":52.772},{"x":1756797782129,"y":56.126},{"x":1756797721985,"y":47.857},{"x":1756797661575,"y":61.92},{"x":1756797601425,"y":58.448},{"x":1756797541279,"y":55.87},{"x":1756797481129,"y":61.06},{"x":1756797420987,"y":60.636},{"x":1756797360836,"y":68.977},{"x":1756797300854,"y":73.549},{"x":1756797240621,"y":70.49},{"x":1756797180629,"y":74.974},{"x":1756797120422,"y":76.442},{"x":1756797062985,"y":58.937},{"x":1756797002837,"y":60.142},{"x":1756796942693,"y":59.959},{"x":1756796882572,"y":60.419},{"x":1756796822409,"y":75.0},{"x":1756796762272,"y":60.53},{"x":1756796702088,"y":56.021},{"x":1756796641924,"y":61.354},{"x":1756796581794,"y":58.637},{"x":1756796521654,"y":76.942},{"x":1756796461544,"y":65.882},{"x":1756796402174,"y":67.858},{"x":1756796341939,"y":58.303},{"x":1756796281779,"y":62.498},{"x":1756796221638,"y":59.922},{"x":1756796161502,"y":56.485},{"x":1756796100688,"y":57.719},{"x":1756796040463,"y":57.976},{"x":1756795980371,"y":55.862},{"x":1756795922991,"y":56.16},{"x":1756795862849,"y":57.952},{"x":1756795802698,"y":56.774},{"x":1756795742559,"y":54.188},{"x":1756795682406,"y":55.852},{"x":1756795622259,"y":51.598},{"x":1756795562120,"y":53.602},{"x":1756795501979,"y":49.092},{"x":1756795441822,"y":58.825},{"x":1756795381678,"y":53.72},{"x":1756795321541,"y":55.386},{"x":1756795261402,"y":61.34},{"x":1756795200911,"y":59.87},{"x":1756795140631,"y":53.281},{"x":1756795080486,"y":54.182},{"x":1756795020370,"y":57.512},{"x":1756794962896,"y":55.198},{"x":1756794902760,"y":55.603},{"x":1756794842607,"y":58.278},{"x":1756794782456,"y":60.15},{"x":1756794722324,"y":55.162},{"x":1756794662178,"y":53.869},{"x":1756794602035,"y":57.203},{"x":1756794541872,"y":54.925},{"x":1756794481732,"y":51.505},{"x":1756794421592,"y":58.118},{"x":1756794361458,"y":73.583},{"x":1756794300657,"y":56.045},{"x":1756794240443,"y":87.952},{"x":1756794180395,"y":71.245},{"x":1756794123021,"y":94.134},{"x":1756794062871,"y":81.493},{"x":1756794002735,"y":87.032},{"x":1756793942592,"y":81.298},{"x":1756793882459,"y":71.531},{"x":1756793822319,"y":82.199},{"x":1756793762159,"y":72.635},{"x":1756793702009,"y":81.607},{"x":1756793641861,"y":64.516},{"x":1756793581730,"y":79.75},{"x":1756793521572,"y":82.139},{"x":1756793461396,"y":76.361},{"x":1756793400925,"y":62.417},{"x":1756793340731,"y":65.344},{"x":1756793280658,"y":68.2},{"x":1756793220510,"y":66.553},{"x":1756793160496,"y":68.386},{"x":1756793103000,"y":72.312},{"x":1756793042839,"y":66.605},{"x":1756792982703,"y":87.328},{"x":1756792922568,"y":90.278},{"x":1756792862450,"y":89.219},{"x":1756792800453,"y":82.205},{"x":1756792740352,"y":72.594},{"x":1756792682995,"y":60.596},{"x":1756792622860,"y":70.334},{"x":1756792562730,"y":76.07},{"x":1756792502585,"y":69.511},{"x":1756792442457,"y":79.727},{"x":1756792382317,"y":78.763},{"x":1756792322192,"y":74.221},{"x":1756792262049,"y":78.402},{"x":1756792200966,"y":74.88},{"x":1756792140824,"y":61.29},{"x":1756792080712,"y":63.516},{"x":1756792020556,"y":64.183},{"x":1756791960460,"y":65.074},{"x":1756791900374,"y":63.214},{"x":1756791842961,"y":63.934},{"x":1756791782817,"y":63.12},{"x":1756791722677,"y":68.761},{"x":1756791662550,"y":71.252},{"x":1756791602422,"y":66.119},{"x":1756791542274,"y":63.998},{"x":1756791482135,"y":69.666},{"x":1756791421977,"y":65.575},{"x":1756791361228,"y":62.888},{"x":1756791301081,"y":66.953},{"x":1756791240923,"y":61.448},{"x":1756791180786,"y":58.627},{"x":1756791120655,"y":67.592},{"x":1756791060513,"y":63.796},{"x":1756791000423,"y":70.948},{"x":1756790942998,"y":66.122},{"x":1756790882853,"y":64.741},{"x":1756790822718,"y":65.077},{"x":1756790762585,"y":62.904},{"x":1756790702458,"y":67.116},{"x":1756790642321,"y":65.935},{"x":1756790582182,"y":65.777},{"x":1756790522051,"y":61.658},{"x":1756790461620,"y":67.932},{"x":1756790401492,"y":67.37},{"x":1756790341350,"y":74.504},{"x":1756790281207,"y":70.518},{"x":1756790221049,"y":67.866},{"x":1756790160898,"y":63.733},{"x":1756790100776,"y":60.374},{"x":1756790040530,"y":62.276},{"x":1756789980482,"y":67.806},{"x":1756789920254,"y":63.523},{"x":1756789862973,"y":78.994},{"x":1756789802825,"y":76.632},{"x":1756789742683,"y":79.033},{"x":1756789682562,"y":84.09},{"x":1756789622414,"y":79.487},{"x":1756789562269,"y":65.656},{"x":1756789502127,"y":65.687},{"x":1756789441977,"y":61.457},{"x":1756789381841,"y":65.952},{"x":1756789321701,"y":61.374},{"x":1756789261551,"y":57.757},{"x":1756789201718,"y":65.23},{"x":1756789141297,"y":66.618},{"x":1756789081135,"y":66.734},{"x":1756789020868,"y":63.265},{"x":1756788960737,"y":67.362},{"x":1756788900632,"y":68.339},{"x":1756788840414,"y":65.524},{"x":1756788780301,"y":68.788},{"x":1756788723015,"y":65.376},{"x":1756788662855,"y":60.685},{"x":1756788602713,"y":76.026},{"x":1756788542585,"y":75.758},{"x":1756788482446,"y":78.648},{"x":1756788422294,"y":83.784},{"x":1756788362150,"y":89.772},{"x":1756788302002,"y":65.699},{"x":1756788241859,"y":66.887},{"x":1756788181722,"y":78.554},{"x":1756788121562,"y":79.039},{"x":1756788061433,"y":80.258},{"x":1756788000742,"y":76.21},{"x":1756787940507,"y":74.753},{"x":1756787880325,"y":63.49},{"x":1756787822956,"y":66.544},{"x":1756787762815,"y":66.79},{"x":1756787702681,"y":66.648},{"x":1756787642545,"y":67.988},{"x":1756787582415,"y":65.647},{"x":1756787522268,"y":70.008},{"x":1756787462139,"y":76.021},{"x":1756787401999,"y":65.536},{"x":1756787341859,"y":69.295},{"x":1756787281716,"y":71.022},{"x":1756787221581,"y":64.831},{"x":1756787161442,"y":68.616},{"x":1756787101206,"y":66.161},{"x":1756787041067,"y":65.222},{"x":1756786980907,"y":66.025},{"x":1756786920762,"y":65.881},{"x":1756786860643,"y":68.004},{"x":1756786800571,"y":74.233},{"x":1756786740318,"y":68.401},{"x":1756786680254,"y":68.016},{"x":1756786622899,"y":66.908},{"x":1756786562547,"y":72.308},{"x":1756786502409,"y":69.755},{"x":1756786442272,"y":67.198},{"x":1756786382182,"y":63.587},{"x":1756786321975,"y":75.163},{"x":1756786261826,"y":64.783},{"x":1756786202200,"y":64.432},{"x":1756786142040,"y":70.536},{"x":1756786082423,"y":65.792},{"x":1756786022293,"y":72.967},{"x":1756785962968,"y":79.205},{"x":1756785902830,"y":75.786},{"x":1756785842706,"y":67.519},{"x":1756785781686,"y":67.008},{"x":1756785721550,"y":59.256},{"x":1756785664427,"y":51.899},{"x":1756785601940,"y":66.276},{"x":1756785541156,"y":61.489},{"x":1756785480979,"y":71.028},{"x":1756785420837,"y":63.359},{"x":1756785360714,"y":79.898},{"x":1756785300563,"y":74.514},{"x":1756785240380,"y":74.987},{"x":1756785180287,"y":79.946},{"x":1756785122981,"y":77.814},{"x":1756785062850,"y":56.558},{"x":1756785002720,"y":54.464},{"x":1756784942579,"y":53.711},{"x":1756784882445,"y":54.158},{"x":1756784822307,"y":55.921},{"x":1756784762150,"y":53.506},{"x":1756784702002,"y":52.926},{"x":1756784641863,"y":54.912},{"x":1756784581736,"y":52.129},{"x":1756784521602,"y":56.804},{"x":1756784461469,"y":62.935},{"x":1756784400915,"y":57.283},{"x":1756784340700,"y":55.634},{"x":1756784280595,"y":57.623},{"x":1756784220459,"y":53.071},{"x":1756784162918,"y":52.208},{"x":1756784102784,"y":54.996},{"x":1756784042649,"y":49.873},{"x":1756783982504,"y":52.638},{"x":1756783922354,"y":69.558},{"x":1756783862239,"y":67.853},{"x":1756783802081,"y":72.011},{"x":1756783741914,"y":72.103},{"x":1756783681782,"y":67.392},{"x":1756783621646,"y":56.612},{"x":1756783561508,"y":49.717},{"x":1756783501362,"y":56.8},{"x":1756783441210,"y":51.918},{"x":1756783381083,"y":58.976},{"x":1756783320916,"y":54.635},{"x":1756783260794,"y":53.663},{"x":1756783200706,"y":53.888},{"x":1756783140542,"y":71.849},{"x":1756783080395,"y":60.959},{"x":1756783022998,"y":71.512},{"x":1756782962819,"y":63.235},{"x":1756782902680,"y":60.457},{"x":1756782842551,"y":55.255},{"x":1756782782407,"y":52.807},{"x":1756782722261,"y":57.552},{"x":1756782662101,"y":62.438},{"x":1756782600627,"y":62.342},{"x":1756782540467,"y":61.373},{"x":1756782481582,"y":59.86},{"x":1756782421442,"y":54.66},{"x":1756782361494,"y":54.049},{"x":1756782301357,"y":63.175},{"x":1756782247317,"y":65.195},{"x":1756782244946,"y":63.761},{"x":1756782235565,"y":58.978},{"x":1756781941939,"y":53.604},{"x":1756781881770,"y":56.995},{"x":1756781821631,"y":51.276},{"x":1756781761496,"y":52.807},{"x":1756781700765,"y":52.513},{"x":1756781640560,"y":50.513},{"x":1756781580467,"y":54.788},{"x":1756781520324,"y":52.704},{"x":1756781462993,"y":55.014},{"x":1756781402848,"y":53.698},{"x":1756781342701,"y":48.605},{"x":1756781282559,"y":51.4},{"x":1756781222418,"y":56.819},{"x":1756781162276,"y":51.959},{"x":1756781102131,"y":53.292},{"x":1756781041966,"y":53.368},{"x":1756780981831,"y":51.083},{"x":1756780921686,"y":52.435},{"x":1756780861551,"y":52.037},{"x":1756780800805,"y":53.941},{"x":1756780740603,"y":51.072},{"x":1756780680465,"y":53.465},{"x":1756780620383,"y":60.106},{"x":1756780560325,"y":59.545},{"x":1756780502963,"y":66.539},{"x":1756780442840,"y":64.396},{"x":1756780382686,"y":65.196},{"x":1756780322512,"y":68.344},{"x":1756780262374,"y":68.257},{"x":1756780202230,"y":51.786},{"x":1756780142083,"y":52.595},{"x":1756780081939,"y":57.124},{"x":1756780021672,"y":58.926},{"x":1756779961546,"y":59.123},{"x":1756779900949,"y":60.028},{"x":1756779840783,"y":53.422},{"x":1756779780652,"y":55.684},{"x":1756779720532,"y":51.497},{"x":1756779660394,"y":53.363},{"x":1756779600334,"y":51.898},{"x":1756779542996,"y":51.335},{"x":1756779482601,"y":49.988},{"x":1756779422463,"y":54.313},{"x":1756779362312,"y":55.99},{"x":1756779302169,"y":65.563},{"x":1756779242033,"y":61.667},{"x":1756779181873,"y":59.753},{"x":1756779121752,"y":59.797},{"x":1756779061566,"y":55.645},{"x":1756779000887,"y":69.976},{"x":1756778940720,"y":64.292},{"x":1756778882923,"y":64.462},{"x":1756778822789,"y":68.044},{"x":1756778762652,"y":64.873},{"x":1756778702455,"y":49.483},{"x":1756778642310,"y":62.092},{"x":1756778582167,"y":54.793},{"x":1756778521997,"y":61.27},{"x":1756778461852,"y":59.279},{"x":1756778402146,"y":60.006},{"x":1756778341888,"y":58.746},{"x":1756778281754,"y":63.4},{"x":1756778221609,"y":62.867},{"x":1756778161454,"y":63.085},{"x":1756778100689,"y":58.696},{"x":1756778040530,"y":56.503},{"x":1756777980390,"y":49.117},{"x":1756777920228,"y":55.289},{"x":1756777862893,"y":52.866},{"x":1756777802758,"y":50.762},{"x":1756777742628,"y":57.041},{"x":1756777682474,"y":53.768},{"x":1756777622337,"y":51.581},{"x":1756777562208,"y":53.681},{"x":1756777502056,"y":52.861},{"x":1756777441910,"y":53.492},{"x":1756777381763,"y":58.486},{"x":1756777321633,"y":51.77},{"x":1756777261492,"y":50.058},{"x":1756777200802,"y":55.007},{"x":1756777140594,"y":55.781},{"x":1756777080480,"y":57.547},{"x":1756777020328,"y":54.739},{"x":1756776963022,"y":55.708},{"x":1756776902865,"y":53.839},{"x":1756776842722,"y":55.934},{"x":1756776782588,"y":53.341},{"x":1756776722444,"y":53.494},{"x":1756776662290,"y":54.298},{"x":1756776602152,"y":53.404},{"x":1756776541999,"y":54.301},{"x":1756776481860,"y":56.953},{"x":1756776421714,"y":56.766},{"x":1756776361556,"y":56.172},{"x":1756776300748,"y":52.321},{"x":1756776240602,"y":52.256},{"x":1756776180423,"y":53.868},{"x":1756776120262,"y":55.582},{"x":1756776062944,"y":60.299},{"x":1756776002800,"y":60.002},{"x":1756775942661,"y":57.61},{"x":1756775882516,"y":60.34},{"x":1756775822372,"y":54.978},{"x":1756775762226,"y":67.76},{"x":1756775702082,"y":70.271},{"x":1756775641925,"y":64.894},{"x":1756775581768,"y":66.958},{"x":1756775521631,"y":64.276},{"x":1756775461467,"y":55.816},{"x":1756775400745,"y":53.317},{"x":1756775340570,"y":53.029},{"x":1756775280309,"y":58.758},{"x":1756775220240,"y":57.125},{"x":1756775162937,"y":60.688},{"x":1756775102796,"y":55.073},{"x":1756775042649,"y":55.788},{"x":1756774982502,"y":52.476},{"x":1756774922370,"y":53.866},{"x":1756774862269,"y":55.327},{"x":1756774800191,"y":56.008},{"x":1756774742910,"y":51.148},{"x":1756774682766,"y":53.833},{"x":1756774622628,"y":57.596},{"x":1756774562501,"y":54.708},{"x":1756774502366,"y":57.421},{"x":1756774442225,"y":55.897},{"x":1756774382091,"y":54.964},{"x":1756774321942,"y":48.617},{"x":1756774261682,"y":52.465},{"x":1756774201380,"y":54.85},{"x":1756774141223,"y":49.134},{"x":1756774081068,"y":50.522},{"x":1756774020893,"y":61.361},{"x":1756773960763,"y":59.095},{"x":1756773900711,"y":62.663},{"x":1756773840445,"y":75.091},{"x":1756773780274,"y":81.266},{"x":1756773723020,"y":73.784},{"x":1756773662851,"y":77.674},{"x":1756773602712,"y":67.72},{"x":1756773542570,"y":59.417},{"x":1756773482432,"y":59.609},{"x":1756773422289,"y":54.683},{"x":1756773362159,"y":56.245},{"x":1756773301990,"y":50.389},{"x":1756773241843,"y":51.914},{"x":1756773181703,"y":59.651},{"x":1756773121561,"y":50.812},{"x":1756773061423,"y":48.613},{"x":1756773001313,"y":50.304},{"x":1756772941115,"y":55.735},{"x":1756772880958,"y":58.045},{"x":1756772820813,"y":57.896},{"x":1756772760687,"y":51.482},{"x":1756772700611,"y":51.008},{"x":1756772640505,"y":53.945},{"x":1756772580288,"y":51.906},{"x":1756772522963,"y":59.178},{"x":1756772462822,"y":56.884},{"x":1756772402680,"y":59.634},{"x":1756772342548,"y":66.019},{"x":1756772282403,"y":55.235},{"x":1756772222274,"y":54.73},{"x":1756772162132,"y":52.939},{"x":1756772101973,"y":54.648},{"x":1756772041826,"y":53.414},{"x":1756771981675,"y":55.339},{"x":1756771921530,"y":56.654},{"x":1756771861344,"y":55.226},{"x":1756771800825,"y":58.285},{"x":1756771740665,"y":58.841},{"x":1756771680430,"y":57.674},{"x":1756771622999,"y":56.08},{"x":1756771562857,"y":54.245},{"x":1756771502710,"y":56.011},{"x":1756771442573,"y":56.904},{"x":1756771382429,"y":57.402},{"x":1756771322294,"y":56.423},{"x":1756771262170,"y":63.056},{"x":1756771202199,"y":72.894},{"x":1756771141959,"y":66.636},{"x":1756771081823,"y":64.216},{"x":1756771021679,"y":64.931},{"x":1756770961540,"y":72.712},{"x":1756770900815,"y":51.379},{"x":1756770840621,"y":59.302},{"x":1756770780484,"y":52.656},{"x":1756770720331,"y":50.724},{"x":1756770662965,"y":54.372},{"x":1756770602786,"y":59.431},{"x":1756770542652,"y":54.434},{"x":1756770482492,"y":55.765},{"x":1756770422360,"y":55.028},{"x":1756770362199,"y":52.53},{"x":1756770302045,"y":60.731},{"x":1756770241886,"y":51.79},{"x":1756770181749,"y":49.234},{"x":1756770121611,"y":50.844},{"x":1756770061460,"y":51.599},{"x":1756770000929,"y":56.689},{"x":1756769940701,"y":62.561},{"x":1756769880587,"y":64.345},{"x":1756769820461,"y":67.334},{"x":1756769762885,"y":61.393},{"x":1756769702751,"y":60.614},{"x":1756769642599,"y":50.2},{"x":1756769582444,"y":53.21},{"x":1756769522313,"y":49.674},{"x":1756769462184,"y":51.076},{"x":1756769402053,"y":48.412},{"x":1756769341899,"y":52.717},{"x":1756769281766,"y":52.175},{"x":1756769221625,"y":74.214},{"x":1756769161485,"y":67.884},{"x":1756769100996,"y":71.447},{"x":1756769040860,"y":75.636},{"x":1756768980702,"y":65.969},{"x":1756768920571,"y":50.116},{"x":1756768860505,"y":49.82},{"x":1756768800409,"y":53.816},{"x":1756768743017,"y":54.054},{"x":1756768682877,"y":55.247},{"x":1756768622741,"y":50.819},{"x":1756768562344,"y":52.567},{"x":1756768502208,"y":55.178},{"x":1756768442067,"y":59.119},{"x":1756768381915,"y":54.87},{"x":1756768321782,"y":53.918},{"x":1756768261515,"y":53.665},{"x":1756768201213,"y":52.375},{"x":1756768141067,"y":53.174},{"x":1756768080924,"y":60.179},{"x":1756768020772,"y":73.055},{"x":1756767960631,"y":70.723},{"x":1756767900517,"y":72.09},{"x":1756767840329,"y":73.256},{"x":1756767783024,"y":75.474},{"x":1756767722879,"y":76.169},{"x":1756767662750,"y":76.525},{"x":1756767600521,"y":72.676},{"x":1756767540352,"y":93.22},{"x":1756767483023,"y":80.353},{"x":1756767422885,"y":65.303},{"x":1756767362749,"y":61.658},{"x":1756767302601,"y":64.554},{"x":1756767242465,"y":51.0},{"x":1756767182346,"y":54.97},{"x":1756767122196,"y":55.252},{"x":1756767062064,"y":63.352},{"x":1756767001910,"y":65.898},{"x":1756766941791,"y":65.896},{"x":1756766881611,"y":66.054},{"x":1756766821469,"y":67.037},{"x":1756766761320,"y":53.4},{"x":1756766701198,"y":53.294},{"x":1756766641034,"y":59.569},{"x":1756766580881,"y":55.606},{"x":1756766520742,"y":53.911},{"x":1756766460611,"y":57.054},{"x":1756766400566,"y":60.325},{"x":1756766340460,"y":59.262},{"x":1756766283007,"y":55.736},{"x":1756766222864,"y":54.097},{"x":1756766162721,"y":50.062},{"x":1756766102579,"y":54.379},{"x":1756766042442,"y":57.749},{"x":1756765982296,"y":63.271},{"x":1756765922162,"y":65.312},{"x":1756765862020,"y":66.126},{"x":1756765801771,"y":63.436},{"x":1756765741138,"y":70.556},{"x":1756765680972,"y":61.126},{"x":1756765620836,"y":58.788},{"x":1756765560701,"y":56.603},{"x":1756765500634,"y":51.484},{"x":1756765440543,"y":53.768},{"x":1756765380330,"y":58.016},{"x":1756765322989,"y":54.03},{"x":1756765262842,"y":56.023},{"x":1756765202705,"y":55.904},{"x":1756765142566,"y":58.511},{"x":1756765082424,"y":59.707},{"x":1756765022292,"y":61.009},{"x":1756764962142,"y":59.588},{"x":1756764901983,"y":59.008},{"x":1756764841830,"y":63.95},{"x":1756764781685,"y":59.629},{"x":1756764721525,"y":55.544},{"x":1756764661404,"y":55.487},{"x":1756764600963,"y":52.666},{"x":1756764540810,"y":53.898},{"x":1756764480718,"y":57.946},{"x":1756764420548,"y":57.998},{"x":1756764360442,"y":52.886},{"x":1756764300341,"y":66.622},{"x":1756764242951,"y":56.669},{"x":1756764182801,"y":62.84},{"x":1756764122663,"y":60.886},{"x":1756764062518,"y":52.715},{"x":1756764000471,"y":57.036},{"x":1756763940165,"y":69.144},{"x":1756763882888,"y":67.524},{"x":1756763822751,"y":71.239},{"x":1756763762606,"y":67.079},{"x":1756763702468,"y":71.353},{"x":1756763642327,"y":58.231},{"x":1756763582232,"y":61.628},{"x":1756763522028,"y":64.176},{"x":1756763461816,"y":63.005},{"x":1756763400970,"y":60.894},{"x":1756763340876,"y":63.05},{"x":1756763280768,"y":58.78},{"x":1756763220601,"y":58.058},{"x":1756763160636,"y":59.99},{"x":1756763100307,"y":60.104},{"x":1756763042961,"y":55.116},{"x":1756762982829,"y":65.042},{"x":1756762922692,"y":67.116},{"x":1756762862555,"y":64.133},{"x":1756762802417,"y":62.155},{"x":1756762742270,"y":60.188},{"x":1756762682132,"y":51.196},{"x":1756762621987,"y":53.561},{"x":1756762561342,"y":55.474},{"x":1756762501209,"y":54.482},{"x":1756762441044,"y":55.862},{"x":1756762380902,"y":57.185},{"x":1756762320768,"y":72.738},{"x":1756762260623,"y":69.06},{"x":1756762200567,"y":74.094},{"x":1756762140365,"y":73.355},{"x":1756762080334,"y":68.813},{"x":1756762022910,"y":56.118},{"x":1756761962771,"y":54.505},{"x":1756761902531,"y":56.785},{"x":1756761842381,"y":59.58},{"x":1756761782248,"y":59.43},{"x":1756761722113,"y":58.988},{"x":1756761661389,"y":56.52},{"x":1756761601252,"y":53.812},{"x":1756761541100,"y":54.91},{"x":1756761480952,"y":56.077},{"x":1756761420824,"y":56.882},{"x":1756761360688,"y":59.998},{"x":1756761300589,"y":56.108},{"x":1756761240390,"y":80.262},{"x":1756761182966,"y":78.268},{"x":1756761122826,"y":72.282},{"x":1756761062672,"y":72.488},{"x":1756761002520,"y":67.336},{"x":1756760942363,"y":66.57},{"x":1756760882222,"y":62.008},{"x":1756760822084,"y":61.615},{"x":1756760761792,"y":68.624},{"x":1756760701654,"y":67.75},{"x":1756760641507,"y":60.959},{"x":1756760581371,"y":60.551},{"x":1756760521236,"y":58.361},{"x":1756760461101,"y":52.345},{"x":1756760402074,"y":50.671},{"x":1756760341843,"y":53.245},{"x":1756760281692,"y":63.228},{"x":1756760221548,"y":59.365},{"x":1756760161406,"y":55.654},{"x":1756760101157,"y":70.295},{"x":1756760041007,"y":66.76},{"x":1756759980865,"y":69.017},{"x":1756759920742,"y":66.577},{"x":1756759860602,"y":83.677},{"x":1756759800505,"y":75.682},{"x":1756759740363,"y":72.8},{"x":1756759682981,"y":79.048},{"x":1756759622851,"y":82.926},{"x":1756759562485,"y":68.995},{"x":1756759502359,"y":66.685},{"x":1756759442195,"y":69.442},{"x":1756759382055,"y":71.178},{"x":1756759321898,"y":67.048},{"x":1756759261753,"y":62.126},{"x":1756759201615,"y":77.102},{"x":1756759141482,"y":74.43},{"x":1756759081337,"y":83.904},{"x":1756759021196,"y":79.676},{"x":1756758961038,"y":79.973},{"x":1756758900922,"y":82.933},{"x":1756758840745,"y":79.165},{"x":1756758780629,"y":81.847},{"x":1756758720500,"y":78.912},{"x":1756758660508,"y":78.938},{"x":1756758600244,"y":82.162},{"x":1756758542950,"y":64.56},{"x":1756758482812,"y":71.084},{"x":1756758422673,"y":74.885},{"x":1756758362532,"y":80.189},{"x":1756758302384,"y":76.916},{"x":1756758242244,"y":81.418},{"x":1756758182093,"y":77.573},{"x":1756758121934,"y":61.03},{"x":1756758061428,"y":69.227},{"x":1756758001283,"y":69.835},{"x":1756757941143,"y":74.074},{"x":1756757880976,"y":79.913},{"x":1756757820846,"y":72.907},{"x":1756757760715,"y":85.474},{"x":1756757700598,"y":67.637},{"x":1756757640406,"y":77.093},{"x":1756757580261,"y":74.85},{"x":1756757522991,"y":71.981},{"x":1756757462837,"y":74.383},{"x":1756757402702,"y":73.207},{"x":1756757342517,"y":72.32},{"x":1756757282379,"y":79.2},{"x":1756757222211,"y":95.236},{"x":1756757162057,"y":83.382},{"x":1756757101881,"y":87.912},{"x":1756757041744,"y":83.485},{"x":1756756981569,"y":81.133},{"x":1756756921426,"y":80.893},{"x":1756756861286,"y":81.244},{"x":1756756802249,"y":69.184},{"x":1756756741975,"y":84.601},{"x":1756756681821,"y":87.416},{"x":1756756621667,"y":86.659},{"x":1756756561514,"y":82.009},{"x":1756756501027,"y":93.33},{"x":1756756440854,"y":70.298},{"x":1756756380715,"y":80.641},{"x":1756756320630,"y":70.034},{"x":1756756260405,"y":62.047},{"x":1756756200303,"y":67.807},{"x":1756756142945,"y":77.312},{"x":1756756082804,"y":76.504},{"x":1756756022668,"y":89.699},{"x":1756755962530,"y":66.967},{"x":1756755902396,"y":73.283},{"x":1756755842267,"y":81.424},{"x":1756755782124,"y":86.12},{"x":1756755721979,"y":80.738},{"x":1756755661837,"y":95.807},{"x":1756755601699,"y":80.243},{"x":1756755541559,"y":82.805},{"x":1756755481412,"y":83.512},{"x":1756755421269,"y":82.061},{"x":1756755361128,"y":68.533},{"x":1756755300978,"y":73.376},{"x":1756755240829,"y":75.026},{"x":1756755180692,"y":69.637},{"x":1756755120559,"y":68.184},{"x":1756755060477,"y":92.692},{"x":1756755000369,"y":76.193},{"x":1756754942927,"y":85.897},{"x":1756754882778,"y":77.338},{"x":1756754822637,"y":78.041},{"x":1756754762498,"y":87.004},{"x":1756754702350,"y":67.039},{"x":1756754642211,"y":69.486},{"x":1756754582071,"y":72.456},{"x":1756754521920,"y":85.405},{"x":1756754461153,"y":78.498},{"x":1756754401015,"y":91.214},{"x":1756754340858,"y":103.853},{"x":1756754280732,"y":88.595},{"x":1756754220650,"y":84.551},{"x":1756754160511,"y":91.315},{"x":1756754100437,"y":76.978},{"x":1756754042995,"y":72.044},{"x":1756753982853,"y":67.375},{"x":1756753922699,"y":68.552},{"x":1756753862560,"y":62.988},{"x":1756753802401,"y":64.506},{"x":1756753742257,"y":55.423},{"x":1756753682098,"y":69.034},{"x":1756753621985,"y":89.588},{"x":1756753561638,"y":73.894},{"x":1756753501481,"y":87.943},{"x":1756753441330,"y":64.651},{"x":1756753381182,"y":61.262},{"x":1756753321015,"y":59.711},{"x":1756753260882,"y":67.049},{"x":1756753202139,"y":60.751},{"x":1756753141909,"y":74.632},{"x":1756753081745,"y":64.272},{"x":1756753021598,"y":63.194},{"x":1756752961447,"y":67.187},{"x":1756752900769,"y":72.934},{"x":1756752840531,"y":89.851},{"x":1756752780378,"y":72.91},{"x":1756752723012,"y":79.079},{"x":1756752662878,"y":69.587},{"x":1756752602731,"y":58.518},{"x":1756752542605,"y":61.324},{"x":1756752482432,"y":58.975},{"x":1756752422294,"y":78.182},{"x":1756752362154,"y":89.91},{"x":1756752302008,"y":82.844},{"x":1756752241879,"y":83.752},{"x":1756752181730,"y":78.084},{"x":1756752121571,"y":76.879},{"x":1756752061427,"y":69.592},{"x":1756752001025,"y":72.72},{"x":1756751940655,"y":65.144},{"x":1756751880499,"y":60.988},{"x":1756751820386,"y":58.956},{"x":1756751762886,"y":60.574},{"x":1756751702749,"y":63.858},{"x":1756751642606,"y":57.145},{"x":1756751582467,"y":54.568},{"x":1756751522319,"y":55.763},{"x":1756751462185,"y":64.116},{"x":1756751402032,"y":64.157},{"x":1756751341878,"y":60.762},{"x":1756751281738,"y":83.899},{"x":1756751221600,"y":81.823},{"x":1756751161444,"y":82.988},{"x":1756751101092,"y":80.196},{"x":1756751040938,"y":76.54},{"x":1756750980764,"y":73.927},{"x":1756750920647,"y":75.254},{"x":1756750860530,"y":76.132},{"x":1756750800459,"y":81.614},{"x":1756750743041,"y":75.499},{"x":1756750682878,"y":98.077},{"x":1756750622741,"y":97.889},{"x":1756750562352,"y":84.199},{"x":1756750502228,"y":74.083},{"x":1756750442058,"y":58.969},{"x":1756750381904,"y":59.285},{"x":1756750321759,"y":64.036},{"x":1756750261500,"y":62.128},{"x":1756750200735,"y":72.012},{"x":1756750140545,"y":90.541},{"x":1756750082788,"y":103.986},{"x":1756750022639,"y":93.036},{"x":1756749962497,"y":85.292},{"x":1756749902360,"y":90.708},{"x":1756749842203,"y":75.442},{"x":1756749782037,"y":79.304},{"x":1756749721888,"y":76.576},{"x":1756749661745,"y":68.808},{"x":1756749600431,"y":67.892},{"x":1756749542967,"y":75.931},{"x":1756749482823,"y":85.823},{"x":1756749422680,"y":93.317},{"x":1756749362518,"y":73.944},{"x":1756749302370,"y":70.805},{"x":1756749242215,"y":64.692},{"x":1756749182079,"y":65.834},{"x":1756749121922,"y":69.738},{"x":1756749061666,"y":71.874},{"x":1756749001064,"y":71.201},{"x":1756748940894,"y":71.999},{"x":1756748880764,"y":68.578},{"x":1756748820610,"y":71.645},{"x":1756748760504,"y":69.954},{"x":1756748700327,"y":66.061},{"x":1756748642987,"y":70.775},{"x":1756748582803,"y":78.385},{"x":1756748522660,"y":70.936},{"x":1756748462513,"y":73.415},{"x":1756748402368,"y":73.762},{"x":1756748342214,"y":86.302},{"x":1756748282078,"y":90.062},{"x":1756748221921,"y":73.535},{"x":1756748161189,"y":74.285},{"x":1756748101046,"y":69.638},{"x":1756748040899,"y":70.397},{"x":1756747980763,"y":73.404},{"x":1756747920665,"y":73.36},{"x":1756747860492,"y":85.159},{"x":1756747800396,"y":86.778},{"x":1756747743014,"y":90.778},{"x":1756747682871,"y":91.188},{"x":1756747622725,"y":97.52},{"x":1756747562592,"y":85.662},{"x":1756747502450,"y":74.794},{"x":1756747442315,"y":71.449},{"x":1756747382156,"y":72.671},{"x":1756747322011,"y":65.124},{"x":1756747261278,"y":64.354},{"x":1756747201144,"y":68.812},{"x":1756747140985,"y":83.017},{"x":1756747080834,"y":80.471},{"x":1756747020720,"y":80.344},{"x":1756746960617,"y":92.664},{"x":1756746900578,"y":76.752},{"x":1756746840226,"y":69.641},{"x":1756746782947,"y":65.705},{"x":1756746722757,"y":61.008},{"x":1756746662601,"y":65.268},{"x":1756746602459,"y":93.539},{"x":1756746542332,"y":86.543},{"x":1756746482183,"y":90.737},{"x":1756746422042,"y":99.325},{"x":1756746361800,"y":99.676},{"x":1756746301652,"y":101.725},{"x":1756746241508,"y":108.287},{"x":1756746181372,"y":111.838},{"x":1756746121232,"y":92.158},{"x":1756746061036,"y":97.861},{"x":1756746002276,"y":96.838},{"x":1756745941985,"y":97.288},{"x":1756745881824,"y":96.134},{"x":1756745821676,"y":93.425},{"x":1756745761529,"y":101.677},{"x":1756745700729,"y":99.096},{"x":1756745640578,"y":97.704},{"x":1756745580470,"y":103.27},{"x":1756745520248,"y":99.479},{"x":1756745463006,"y":87.536},{"x":1756745402862,"y":97.684},{"x":1756745342725,"y":86.957},{"x":1756745282562,"y":96.839},{"x":1756745222423,"y":99.01},{"x":1756745162278,"y":104.539},{"x":1756745102147,"y":95.489},{"x":1756745041989,"y":101.79},{"x":1756744981845,"y":100.024},{"x":1756744921689,"y":87.066},{"x":1756744861546,"y":84.817},{"x":1756744800873,"y":86.884},{"x":1756744740626,"y":107.73},{"x":1756744680510,"y":83.47},{"x":1756744620437,"y":95.664},{"x":1756744560240,"y":89.897},{"x":1756744502860,"y":90.42},{"x":1756744442765,"y":90.181},{"x":1756744382572,"y":107.935},{"x":1756744322443,"y":102.731},{"x":1756744262293,"y":110.278},{"x":1756744202158,"y":108.956},{"x":1756744142013,"y":116.14},{"x":1756744081852,"y":85.51},{"x":1756744021705,"y":105.948},{"x":1756743961530,"y":82.999},{"x":1756743901107,"y":81.278},{"x":1756743840934,"y":89.754},{"x":1756743780781,"y":87.876},{"x":1756743720653,"y":87.773},{"x":1756743660508,"y":96.026},{"x":1756743600665,"y":98.298},{"x":1756743540225,"y":89.599},{"x":1756743482896,"y":92.306},{"x":1756743422734,"y":91.946},{"x":1756743362377,"y":81.142},{"x":1756743302239,"y":83.791},{"x":1756743242103,"y":88.757},{"x":1756743181947,"y":91.168},{"x":1756743121797,"y":114.353},{"x":1756743061533,"y":105.175},{"x":1756743000736,"y":104.968},{"x":1756742940505,"y":108.319},{"x":1756742882692,"y":102.102},{"x":1756742822544,"y":97.451},{"x":1756742762413,"y":97.357},{"x":1756742702281,"y":101.484},{"x":1756742642144,"y":101.549},{"x":1756742581992,"y":104.455},{"x":1756742521851,"y":101.437},{"x":1756742461724,"y":113.507},{"x":1756742400370,"y":109.682},{"x":1756742342998,"y":97.081},{"x":1756742282847,"y":105.061},{"x":1756742222717,"y":110.798},{"x":1756742162555,"y":99.98},{"x":1756742102398,"y":105.088},{"x":1756742042255,"y":111.208},{"x":1756741982118,"y":91.068},{"x":1756741921968,"y":114.054},{"x":1756741861683,"y":115.846},{"x":1756741800921,"y":111.532},{"x":1756741740768,"y":113.827},{"x":1756741680671,"y":129.337},{"x":1756741620544,"y":92.443},{"x":1756741560383,"y":99.478},{"x":1756741500246,"y":102.412},{"x":1756741442936,"y":110.486},{"x":1756741382803,"y":114.689},{"x":1756741322662,"y":111.452},{"x":1756741262556,"y":109.172},{"x":1756741202406,"y":99.69},{"x":1756741142269,"y":114.41},{"x":1756741082136,"y":123.467},{"x":1756741021975,"y":105.677},{"x":1756740961130,"y":100.372},{"x":1756740900985,"y":111.024},{"x":1756740840835,"y":124.031},{"x":1756740780705,"y":116.216},{"x":1756740720815,"y":111.704},{"x":1756740660620,"y":116.34},{"x":1756740600634,"y":118.77},{"x":1756740542984,"y":143.146},{"x":1756740482850,"y":106.994},{"x":1756740422719,"y":104.387},{"x":1756740362587,"y":96.026},{"x":1756740302366,"y":102.588},{"x":1756740242234,"y":107.05},{"x":1756740182106,"y":108.138},{"x":1756740121971,"y":143.141},{"x":1756740061190,"y":74.154},{"x":1756740001134,"y":82.759},{"x":1756739940789,"y":107.191},{"x":1756739880664,"y":82.319},{"x":1756739820557,"y":95.504},{"x":1756739760429,"y":65.129},{"x":1756739700263,"y":97.165},{"x":1756739642994,"y":98.712},{"x":1756739582884,"y":99.356},{"x":1756739522737,"y":98.609},{"x":1756739462577,"y":102.587},{"x":1756739402433,"y":101.216},{"x":1756739342306,"y":116.093},{"x":1756739282176,"y":115.048},{"x":1756739222043,"y":171.088},{"x":1756739161658,"y":147.481},{"x":1756739101524,"y":152.699},{"x":1756739041404,"y":130.937},{"x":1756738981268,"y":130.17},{"x":1756738921135,"y":94.223},{"x":1756738861006,"y":103.627},{"x":1756738802120,"y":104.504},{"x":1756738741890,"y":76.225},{"x":1756738681746,"y":100.634},{"x":1756738621595,"y":131.113},{"x":1756738561470,"y":104.873},{"x":1756738500789,"y":109.926},{"x":1756738440654,"y":144.292},{"x":1756738380574,"y":83.342},{"x":1756738320465,"y":134.198},{"x":1756738260302,"y":146.418},{"x":1756738202976,"y":110.08},{"x":1756738142847,"y":156.55},{"x":1756738082713,"y":125.423},{"x":1756738022589,"y":127.847},{"x":1756737962447,"y":142.405},{"x":1756737902320,"y":153.078},{"x":1756737842202,"y":126.35},{"x":1756737782074,"y":126.283},{"x":1756737721915,"y":144.508},{"x":1756737661772,"y":93.665},{"x":1756737601629,"y":87.802},{"x":1756737541497,"y":89.808},{"x":1756737481347,"y":123.344},{"x":1756737421216,"y":105.43},{"x":1756737361083,"y":105.93},{"x":1756737300959,"y":99.952},{"x":1756737240809,"y":107.983},{"x":1756737180686,"y":100.568},{"x":1756737120710,"y":110.474},{"x":1756737060495,"y":123.965},{"x":1756737000435,"y":164.862},{"x":1756736942939,"y":131.196},{"x":1756736882812,"y":151.808},{"x":1756736822667,"y":141.466},{"x":1756736762549,"y":104.104},{"x":1756736702411,"y":80.225},{"x":1756736642262,"y":97.966},{"x":1756736582113,"y":102.161},{"x":1756736521972,"y":70.085},{"x":1756736461240,"y":90.274},{"x":1756736401124,"y":117.581},{"x":1756736340967,"y":103.433},{"x":1756736280845,"y":118.741},{"x":1756736220746,"y":93.186},{"x":1756736160576,"y":94.157},{"x":1756736100468,"y":76.848},{"x":1756736040299,"y":73.798},{"x":1756735982984,"y":69.942},{"x":1756735922851,"y":91.912},{"x":1756735862697,"y":88.61},{"x":1756735802514,"y":77.086},{"x":1756735742393,"y":81.704},{"x":1756735682254,"y":74.54},{"x":1756735622127,"y":68.958},{"x":1756735561979,"y":64.865},{"x":1756735501854,"y":73.176},{"x":1756735441725,"y":72.415},{"x":1756735381583,"y":76.073},{"x":1756735321463,"y":76.172},{"x":1756735261343,"y":78.233},{"x":1756735200455,"y":75.376},{"x":1756735140349,"y":70.979},{"x":1756735082883,"y":70.105},{"x":1756735022749,"y":79.228},{"x":1756734962615,"y":74.106},{"x":1756734902487,"y":64.079},{"x":1756734842355,"y":63.829},{"x":1756734782235,"y":67.487},{"x":1756734722105,"y":85.841},{"x":1756734661973,"y":93.701},{"x":1756734601838,"y":101.59},{"x":1756734541717,"y":86.213},{"x":1756734481592,"y":80.582},{"x":1756734421471,"y":81.431},{"x":1756734361337,"y":83.387},{"x":1756734301225,"y":68.207},{"x":1756734241064,"y":89.845},{"x":1756734180928,"y":84.379},{"x":1756734120795,"y":78.929},{"x":1756734060672,"y":67.675},{"x":1756734000597,"y":74.182},{"x":1756733940406,"y":87.4},{"x":1756733883011,"y":62.668},{"x":1756733822885,"y":75.198},{"x":1756733762761,"y":65.74},{"x":1756733702628,"y":67.712},{"x":1756733642501,"y":77.527},{"x":1756733582374,"y":83.09},{"x":1756733522248,"y":80.084},{"x":1756733462121,"y":86.059},{"x":1756733401985,"y":74.297},{"x":1756733341835,"y":60.542},{"x":1756733281716,"y":67.662},{"x":1756733221600,"y":61.991},{"x":1756733161465,"y":60.858},{"x":1756733100967,"y":69.472},{"x":1756733040812,"y":52.885},{"x":1756732980678,"y":86.872},{"x":1756732920588,"y":69.809},{"x":1756732860425,"y":83.1},{"x":1756732800416,"y":55.268},{"x":1756732742963,"y":53.026},{"x":1756732682837,"y":45.755},{"x":1756732622709,"y":54.306},{"x":1756732562328,"y":53.821},{"x":1756732502187,"y":59.734},{"x":1756732442060,"y":91.224},{"x":1756732381921,"y":72.379},{"x":1756732321796,"y":77.087},{"x":1756732261539,"y":91.531},{"x":1756732200750,"y":75.302},{"x":1756732140572,"y":47.321},{"x":1756732080349,"y":58.762},{"x":1756732020413,"y":63.425},{"x":1756731962932,"y":60.158},{"x":1756731902805,"y":59.393},{"x":1756731842645,"y":60.275},{"x":1756731782527,"y":57.528},{"x":1756731722403,"y":63.907},{"x":1756731662281,"y":65.188},{"x":1756731602257,"y":76.982},{"x":1756731541975,"y":44.158},{"x":1756731481824,"y":63.584},{"x":1756731421658,"y":55.261},{"x":1756731361529,"y":52.535},{"x":1756731301403,"y":53.132},{"x":1756731241277,"y":66.854},{"x":1756731181135,"y":61.226},{"x":1756731120992,"y":62.285},{"x":1756731060863,"y":92.998},{"x":1756731000761,"y":73.492},{"x":1756730940592,"y":65.236},{"x":1756730880526,"y":63.22},{"x":1756730820329,"y":60.746},{"x":1756730760297,"y":46.434},{"x":1756730702950,"y":68.689},{"x":1756730642817,"y":81.443},{"x":1756730582670,"y":75.472},{"x":1756730522546,"y":59.293},{"x":1756730462420,"y":60.824},{"x":1756730402294,"y":59.7},{"x":1756730342156,"y":46.957},{"x":1756730282025,"y":52.73},{"x":1756730221906,"y":70.292},{"x":1756730161575,"y":55.547},{"x":1756730101443,"y":73.418},{"x":1756730041320,"y":68.003},{"x":1756729981181,"y":53.759},{"x":1756729921039,"y":70.421},{"x":1756729860914,"y":58.408},{"x":1756729800836,"y":49.802},{"x":1756729740642,"y":48.575},{"x":1756729680540,"y":54.424},{"x":1756729620414,"y":68.104},{"x":1756729560170,"y":97.698},{"x":1756729502908,"y":88.282},{"x":1756729442776,"y":77.629},{"x":1756729382649,"y":76.678},{"x":1756729322529,"y":81.872},{"x":1756729262790,"y":50.597},{"x":1756729202676,"y":44.443},{"x":1756729142554,"y":43.01},{"x":1756729082432,"y":45.653},{"x":1756729022305,"y":60.947},{"x":1756728962168,"y":48.796},{"x":1756728902023,"y":68.539},{"x":1756728841876,"y":71.867},{"x":1756728781746,"y":74.258},{"x":1756728721625,"y":45.263},{"x":1756728661464,"y":42.413},{"x":1756728600774,"y":42.138},{"x":1756728540596,"y":61.428},{"x":1756728482721,"y":61.464},{"x":1756728422574,"y":59.996},{"x":1756728362448,"y":59.867},{"x":1756728302321,"y":43.87},{"x":1756728242193,"y":62.083},{"x":1756728182046,"y":41.928},{"x":1756728121904,"y":54.204},{"x":1756728061763,"y":51.605},{"x":1756728002225,"y":30.582},{"x":1756727942046,"y":47.627},{"x":1756727881832,"y":81.516},{"x":1756727821701,"y":43.448},{"x":1756727761580,"y":64.25},{"x":1756727700743,"y":70.895},{"x":1756727640577,"y":80.509},{"x":1756727580444,"y":87.317},{"x":1756727520285,"y":78.684},{"x":1756727462976,"y":76.163},{"x":1756727402846,"y":63.822},{"x":1756727342720,"y":42.463},{"x":1756727282590,"y":47.993},{"x":1756727222457,"y":76.811},{"x":1756727162331,"y":88.992},{"x":1756727102205,"y":44.768},{"x":1756727042067,"y":53.449},{"x":1756726981921,"y":61.542},{"x":1756726921778,"y":69.769},{"x":1756726861632,"y":52.835},{"x":1756726801518,"y":47.342},{"x":1756726741370,"y":75.722},{"x":1756726681244,"y":56.62},{"x":1756726621129,"y":63.938},{"x":1756726560988,"y":69.332},{"x":1756726500853,"y":61.692},{"x":1756726440705,"y":77.122},{"x":1756726380605,"y":80.824},{"x":1756726320466,"y":66.662},{"x":1756726260370,"y":79.842},{"x":1756726200202,"y":83.653},{"x":1756726142904,"y":68.788},{"x":1756726082785,"y":69.302},{"x":1756726022662,"y":80.112},{"x":1756725962518,"y":42.725},{"x":1756725902386,"y":49.544},{"x":1756725842253,"y":81.632},{"x":1756725782124,"y":65.605},{"x":1756725721970,"y":60.049},{"x":1756725661502,"y":71.041},{"x":1756725601371,"y":40.228},{"x":1756725541243,"y":38.603},{"x":1756725481106,"y":55.5},{"x":1756725420972,"y":40.733},{"x":1756725360845,"y":44.512},{"x":1756725300751,"y":29.767},{"x":1756725240593,"y":53.522},{"x":1756725180439,"y":40.735},{"x":1756725120445,"y":37.504},{"x":1756725062912,"y":50.438},{"x":1756725002746,"y":57.048},{"x":1756724942617,"y":49.337},{"x":1756724882498,"y":45.235},{"x":1756724822365,"y":47.195},{"x":1756724762243,"y":62.731},{"x":1756724702117,"y":47.748},{"x":1756724641963,"y":41.801},{"x":1756724581844,"y":49.697},{"x":1756724521707,"y":82.2},{"x":1756724461596,"y":99.906},{"x":1756724402079,"y":75.496},{"x":1756724341879,"y":54.163},{"x":1756724281721,"y":37.709},{"x":1756724221597,"y":72.431},{"x":1756724161464,"y":51.295},{"x":1756724100696,"y":46.7},{"x":1756724040530,"y":52.039},{"x":1756723980395,"y":44.086},{"x":1756723920279,"y":69.044},{"x":1756723862979,"y":49.348},{"x":1756723802851,"y":68.827},{"x":1756723742721,"y":68.466},{"x":1756723682598,"y":103.07},{"x":1756723622470,"y":96.492},{"x":1756723562341,"y":48.584},{"x":1756723502198,"y":40.847},{"x":1756723442051,"y":51.061},{"x":1756723381921,"y":42.862},{"x":1756723321785,"y":33.708},{"x":1756723261639,"y":39.098},{"x":1756723201498,"y":71.304},{"x":1756723141365,"y":42.97},{"x":1756723081240,"y":53.646},{"x":1756723021102,"y":58.873},{"x":1756722960958,"y":48.23},{"x":1756722900861,"y":53.813},{"x":1756722840704,"y":34.241},{"x":1756722780610,"y":42.288},{"x":1756722720526,"y":39.66},{"x":1756722660337,"y":41.992},{"x":1756722600298,"y":37.31},{"x":1756722542921,"y":44.348},{"x":1756722482794,"y":50.76},{"x":1756722422654,"y":39.206},{"x":1756722362542,"y":49.085},{"x":1756722302387,"y":46.325},{"x":1756722242274,"y":37.301},{"x":1756722182129,"y":47.21},{"x":1756722122000,"y":61.666},{"x":1756722061863,"y":43.708},{"x":1756722001742,"y":60.257},{"x":1756721953649,"y":56.347},{"x":1756721880810,"y":32.683},{"x":1756721820742,"y":26.76},{"x":1756721760625,"y":34.021},{"x":1756721700326,"y":47.521},{"x":1756721642988,"y":53.954},{"x":1756721582859,"y":39.545},{"x":1756721522746,"y":33.658},{"x":1756721462597,"y":52.237},{"x":1756721402440,"y":66.872},{"x":1756721342300,"y":45.24},{"x":1756721282164,"y":78.55},{"x":1756721222014,"y":62.864},{"x":1756721161208,"y":54.094},{"x":1756721101033,"y":32.929},{"x":1756721040893,"y":30.474},{"x":1756720980763,"y":36.084},{"x":1756720920645,"y":32.384},{"x":1756720863520,"y":56.378},{"x":1756720800436,"y":60.8},{"x":1756720740270,"y":60.988},{"x":1756720682953,"y":61.877},{"x":1756720622822,"y":58.638},{"x":1756720562692,"y":56.736},{"x":1756720502557,"y":53.909},{"x":1756720442406,"y":33.816},{"x":1756720382271,"y":51.47},{"x":1756720322137,"y":40.853},{"x":1756720261984,"y":31.53},{"x":1756720201859,"y":30.016},{"x":1756720141733,"y":37.262},{"x":1756720081586,"y":39.734},{"x":1756720021466,"y":34.26},{"x":1756719961332,"y":50.009},{"x":1756719901244,"y":36.624},{"x":1756719841085,"y":42.397},{"x":1756719780918,"y":60.156},{"x":1756719720793,"y":44.9},{"x":1756719660671,"y":38.878},{"x":1756719600558,"y":58.68},{"x":1756719540362,"y":38.758},{"x":1756719482991,"y":67.397},{"x":1756719422836,"y":73.099},{"x":1756719362709,"y":77.322},{"x":1756719302580,"y":83.85},{"x":1756719242453,"y":87.11},{"x":1756719182335,"y":92.436},{"x":1756719122204,"y":70.584},{"x":1756719062077,"y":67.478},{"x":1756719001946,"y":74.376},{"x":1756718941788,"y":49.556},{"x":1756718881666,"y":50.628},{"x":1756718821533,"y":51.173},{"x":1756718761404,"y":37.996},{"x":1756718701062,"y":44.869},{"x":1756718640916,"y":34.292},{"x":1756718580776,"y":41.32},{"x":1756718520658,"y":48.604},{"x":1756718460555,"y":47.143},{"x":1756718400409,"y":60.398},{"x":1756718342969,"y":39.409},{"x":1756718282897,"y":42.594},{"x":1756718222716,"y":41.663},{"x":1756718162330,"y":48.302},{"x":1756718102199,"y":29.779},{"x":1756718042052,"y":45.496},{"x":1756717981935,"y":46.784},{"x":1756717921781,"y":48.731},{"x":1756717861545,"y":42.643},{"x":1756717801023,"y":52.165},{"x":1756717740779,"y":50.428},{"x":1756717682703,"y":61.47},{"x":1756717622584,"y":57.347},{"x":1756717562458,"y":49.162},{"x":1756717502332,"y":54.136},{"x":1756717442191,"y":63.292},{"x":1756717382056,"y":52.919},{"x":1756717321907,"y":44.423},{"x":1756717261787,"y":49.531},{"x":1756717202058,"y":57.876},{"x":1756717141819,"y":51.356},{"x":1756717081686,"y":48.688},{"x":1756717021562,"y":50.333},{"x":1756716961437,"y":53.287},{"x":1756716901335,"y":42.637},{"x":1756716841181,"y":43.457},{"x":1756716781065,"y":47.683},{"x":1756716720914,"y":49.168},{"x":1756716660782,"y":42.191},{"x":1756716600695,"y":39.197},{"x":1756716540503,"y":44.702},{"x":1756716480499,"y":41.297},{"x":1756716420384,"y":45.377},{"x":1756716362997,"y":49.111},{"x":1756716302869,"y":49.916},{"x":1756716242752,"y":48.466},{"x":1756716182600,"y":52.68},{"x":1756716122481,"y":49.732},{"x":1756716062356,"y":58.415},{"x":1756716002229,"y":65.76},{"x":1756715942075,"y":60.071},{"x":1756715881937,"y":58.859},{"x":1756715821815,"y":62.15},{"x":1756715761185,"y":66.032},{"x":1756715701050,"y":71.303},{"x":1756715640903,"y":72.112},{"x":1756715580771,"y":62.191},{"x":1756715520680,"y":60.19},{"x":1756715460523,"y":59.075},{"x":1756715400576,"y":58.063},{"x":1756715340186,"y":55.723},{"x":1756715282891,"y":54.638},{"x":1756715222770,"y":65.297},{"x":1756715162622,"y":63.347},{"x":1756715102492,"y":72.332},{"x":1756715042381,"y":58.624},{"x":1756714982236,"y":54.072},{"x":1756714922105,"y":61.008},{"x":1756714861749,"y":65.639},{"x":1756714801611,"y":61.013},{"x":1756714741477,"y":60.814},{"x":1756714681352,"y":56.33},{"x":1756714621203,"y":59.383},{"x":1756714560937,"y":57.514},{"x":1756714500856,"y":56.333},{"x":1756714440656,"y":58.06},{"x":1756714380594,"y":58.226},{"x":1756714320434,"y":61.246},{"x":1756714260272,"y":53.552},{"x":1756714202911,"y":54.935},{"x":1756714142789,"y":50.048},{"x":1756714082655,"y":49.213},{"x":1756714022535,"y":52.19},{"x":1756713962407,"y":47.795},{"x":1756713902283,"y":53.806},{"x":1756713842158,"y":54.45},{"x":1756713782014,"y":52.399},{"x":1756713721878,"y":54.126},{"x":1756713664767,"y":52.693},{"x":1756713602209,"y":56.411},{"x":1756713541877,"y":52.756},{"x":1756713481753,"y":51.078},{"x":1756713421624,"y":54.19},{"x":1756713361498,"y":56.581},{"x":1756713300698,"y":54.461},{"x":1756713240476,"y":53.534},{"x":1756713180350,"y":48.25},{"x":1756713120218,"y":52.988},{"x":1756713062912,"y":56.968},{"x":1756713002786,"y":52.393},{"x":1756712942676,"y":57.222},{"x":1756712882543,"y":62.416},{"x":1756712822414,"y":60.538},{"x":1756712762283,"y":60.516},{"x":1756712702148,"y":61.488},{"x":1756712642017,"y":57.482},{"x":1756712581890,"y":55.74},{"x":1756712521763,"y":54.337},{"x":1756712461643,"y":56.059},{"x":1756712401498,"y":52.025},{"x":1756712341358,"y":52.542},{"x":1756712281242,"y":53.075},{"x":1756712221107,"y":55.093},{"x":1756712160977,"y":59.917},{"x":1756712100861,"y":57.461},{"x":1756712040756,"y":55.732},{"x":1756711980617,"y":54.187},{"x":1756711920673,"y":67.778},{"x":1756711860339,"y":67.018},{"x":1756711800314,"y":63.582},{"x":1756711742908,"y":61.274},{"x":1756711682782,"y":62.016},{"x":1756711622658,"y":58.309},{"x":1756711562530,"y":54.282},{"x":1756711502398,"y":56.326},{"x":1756711442256,"y":56.852},{"x":1756711382108,"y":53.861},{"x":1756711321981,"y":57.335},{"x":1756711261647,"y":58.663},{"x":1756711201521,"y":56.201},{"x":1756711141385,"y":59.744},{"x":1756711081262,"y":62.522},{"x":1756711021122,"y":63.758},{"x":1756710960979,"y":56.734},{"x":1756710900831,"y":60.793},{"x":1756710840660,"y":70.385},{"x":1756710780547,"y":73.421},{"x":1756710720389,"y":61.238},{"x":1756710660179,"y":57.304},{"x":1756710602911,"y":53.155},{"x":1756710542780,"y":59.707},{"x":1756710482644,"y":59.086},{"x":1756710422524,"y":57.634},{"x":1756710362382,"y":62.783},{"x":1756710302257,"y":56.776},{"x":1756710242128,"y":57.745},{"x":1756710181995,"y":52.957},{"x":1756710121878,"y":52.213},{"x":1756710061754,"y":51.151},{"x":1756710001571,"y":52.6},{"x":1756709940938,"y":56.09},{"x":1756709880812,"y":54.42},{"x":1756709820685,"y":56.581},{"x":1756709760584,"y":56.414},{"x":1756709700598,"y":65.494},{"x":1756709640316,"y":58.94},{"x":1756709580201,"y":55.692},{"x":1756709522906,"y":61.906},{"x":1756709462781,"y":59.67},{"x":1756709402652,"y":58.975},{"x":1756709342514,"y":57.113},{"x":1756709282393,"y":53.906},{"x":1756709222265,"y":68.816},{"x":1756709162142,"y":63.33},{"x":1756709102000,"y":59.753},{"x":1756709041869,"y":62.016},{"x":1756708981733,"y":63.077},{"x":1756708921604,"y":60.181},{"x":1756708861483,"y":48.778},{"x":1756708800808,"y":54.714},{"x":1756708740572,"y":50.122},{"x":1756708680447,"y":55.843},{"x":1756708620333,"y":54.0},{"x":1756708562924,"y":51.964},{"x":1756708502793,"y":54.762},{"x":1756708442665,"y":55.277},{"x":1756708382546,"y":54.062},{"x":1756708322415,"y":50.821},{"x":1756708262293,"y":54.949},{"x":1756708202163,"y":57.932},{"x":1756708142036,"y":52.493},{"x":1756708081902,"y":57.292},{"x":1756708021779,"y":55.877},{"x":1756707961656,"y":54.265},{"x":1756707901534,"y":49.532},{"x":1756707841412,"y":43.894},{"x":1756707781254,"y":42.319},{"x":1756707721128,"y":40.133},{"x":1756707660550,"y":42.612},{"x":1756707600467,"y":34.124},{"x":1756707540297,"y":42.222},{"x":1756707483016,"y":60.344},{"x":1756707422885,"y":43.846},{"x":1756707362376,"y":60.004},{"x":1756707302250,"y":42.343},{"x":1756707242120,"y":59.873},{"x":1756707181979,"y":39.678},{"x":1756707121797,"y":51.848},{"x":1756707061471,"y":51.966},{"x":1756707001203,"y":39.775},{"x":1756706941059,"y":60.36},{"x":1756706880926,"y":57.851},{"x":1756706820799,"y":55.135},{"x":1756706760673,"y":45.93},{"x":1756706700626,"y":40.688},{"x":1756706640426,"y":39.659},{"x":1756706580421,"y":34.292},{"x":1756706522991,"y":30.552},{"x":1756706462874,"y":31.705},{"x":1756706401300,"y":35.053},{"x":1756706340854,"y":34.027},{"x":1756706280726,"y":38.173},{"x":1756706220621,"y":39.306},{"x":1756706160562,"y":39.989},{"x":1756706100438,"y":39.354},{"x":1756706040300,"y":38.743},{"x":1756705982992,"y":40.074},{"x":1756705922861,"y":40.052},{"x":1756705862731,"y":42.826},{"x":1756705802612,"y":37.884},{"x":1756705742456,"y":37.714},{"x":1756705682349,"y":38.276},{"x":1756705622221,"y":40.193},{"x":1756705562096,"y":41.341},{"x":1756705501953,"y":41.291},{"x":1756705441835,"y":39.581},{"x":1756705381677,"y":40.262},{"x":1756705321543,"y":36.056},{"x":1756705261415,"y":39.884},{"x":1756705200818,"y":34.733},{"x":1756705140576,"y":38.495},{"x":1756705080479,"y":39.793},{"x":1756705020378,"y":36.61},{"x":1756704962901,"y":39.271},{"x":1756704902708,"y":40.118},{"x":1756704842564,"y":40.147},{"x":1756704782430,"y":41.262},{"x":1756704722324,"y":37.902},{"x":1756704662174,"y":35.392},{"x":1756704602055,"y":39.084},{"x":1756704541916,"y":36.295},{"x":1756704481794,"y":39.934},{"x":1756704421679,"y":39.056},{"x":1756704361546,"y":38.833},{"x":1756704300787,"y":41.929},{"x":1756704240591,"y":41.478},{"x":1756704180423,"y":35.39},{"x":1756704120266,"y":37.036},{"x":1756704062922,"y":43.552},{"x":1756704002779,"y":45.185},{"x":1756703942654,"y":43.925},{"x":1756703882526,"y":42.696},{"x":1756703822410,"y":41.755},{"x":1756703762278,"y":37.943},{"x":1756703702157,"y":43.303},{"x":1756703642039,"y":44.92},{"x":1756703581882,"y":39.254},{"x":1756703521735,"y":42.334},{"x":1756703461537,"y":32.281},{"x":1756703401091,"y":36.158},{"x":1756703340930,"y":40.811},{"x":1756703280580,"y":37.52},{"x":1756703220469,"y":40.166},{"x":1756703160362,"y":39.452},{"x":1756703100181,"y":39.56},{"x":1756703042912,"y":37.784},{"x":1756702982785,"y":36.883},{"x":1756702922671,"y":36.486},{"x":1756702862554,"y":41.316},{"x":1756702801363,"y":39.964},{"x":1756702740878,"y":39.755},{"x":1756702680765,"y":43.591},{"x":1756702620638,"y":38.716},{"x":1756702560548,"y":41.836},{"x":1756702500465,"y":39.901},{"x":1756702440339,"y":35.51},{"x":1756702382950,"y":37.246},{"x":1756702322834,"y":35.974},{"x":1756702262699,"y":36.42},{"x":1756702202566,"y":44.213},{"x":1756702142439,"y":39.162},{"x":1756702082328,"y":41.413},{"x":1756702022182,"y":46.318},{"x":1756701962038,"y":39.234},{"x":1756701901884,"y":40.565},{"x":1756701841758,"y":38.668},{"x":1756701781629,"y":37.434},{"x":1756701721501,"y":44.026},{"x":1756701661380,"y":37.777},{"x":1756701600870,"y":37.442},{"x":1756701540690,"y":36.869},{"x":1756701480611,"y":37.626},{"x":1756701420630,"y":44.108},{"x":1756701363010,"y":40.494},{"x":1756701302880,"y":42.895},{"x":1756701242759,"y":42.998},{"x":1756701182636,"y":38.29},{"x":1756701122515,"y":36.413},{"x":1756701062395,"y":42.125},{"x":1756701002274,"y":39.072},{"x":1756700942142,"y":36.964},{"x":1756700881994,"y":42.115},{"x":1756700821868,"y":42.31},{"x":1756700761740,"y":45.93},{"x":1756700701400,"y":41.252},{"x":1756700641217,"y":40.846},{"x":1756700581088,"y":37.597},{"x":1756700520954,"y":37.892},{"x":1756700462643,"y":37.954},{"x":1756700402512,"y":42.918},{"x":1756700342385,"y":36.942},{"x":1756700282265,"y":36.947},{"x":1756700222149,"y":40.676},{"x":1756700161788,"y":37.928},{"x":1756700101658,"y":45.8},{"x":1756700041565,"y":38.866},{"x":1756699981388,"y":37.925},{"x":1756699921256,"y":40.441},{"x":1756699861102,"y":40.745},{"x":1756699800494,"y":46.196},{"x":1756699740382,"y":39.384},{"x":1756699682229,"y":37.242},{"x":1756699622095,"y":42.182},{"x":1756699561005,"y":40.729},{"x":1756699500887,"y":42.186},{"x":1756699440767,"y":44.717},{"x":1756699380658,"y":39.575},{"x":1756699320557,"y":38.75},{"x":1756699263390,"y":41.477},{"x":1756699201710,"y":37.966},{"x":1756699141102,"y":46.789},{"x":1756699080948,"y":41.328},{"x":1756699020828,"y":43.271},{"x":1756698960728,"y":44.189},{"x":1756698900656,"y":43.499},{"x":1756698840394,"y":48.976},{"x":1756698780292,"y":45.101},{"x":1756698722968,"y":39.751},{"x":1756698662850,"y":41.617},{"x":1756698602727,"y":38.276},{"x":1756698542599,"y":38.549},{"x":1756698482477,"y":45.181},{"x":1756698422349,"y":41.238},{"x":1756698362226,"y":44.484},{"x":1756698302095,"y":43.703},{"x":1756698241944,"y":42.428},{"x":1756698181814,"y":43.115},{"x":1756698121676,"y":40.682},{"x":1756698061536,"y":40.079},{"x":1756698000942,"y":36.944},{"x":1756697940771,"y":37.892},{"x":1756697880655,"y":37.325},{"x":1756697820534,"y":38.892},{"x":1756697762858,"y":36.846},{"x":1756697702737,"y":46.529},{"x":1756697642613,"y":52.264},{"x":1756697582480,"y":50.579},{"x":1756697522353,"y":56.69},{"x":1756697462234,"y":49.126},{"x":1756697402095,"y":49.145},{"x":1756697341959,"y":46.117},{"x":1756697281823,"y":46.487},{"x":1756697221668,"y":44.791},{"x":1756697161533,"y":43.753},{"x":1756697101092,"y":45.373},{"x":1756697040955,"y":42.82},{"x":1756696980826,"y":44.054},{"x":1756696920698,"y":45.088},{"x":1756696860590,"y":50.525},{"x":1756696800583,"y":49.818},{"x":1756696740317,"y":47.719},{"x":1756696680260,"y":44.168},{"x":1756696622952,"y":45.301},{"x":1756696562561,"y":51.11},{"x":1756696502446,"y":45.007},{"x":1756696442284,"y":46.019},{"x":1756696382110,"y":45.322},{"x":1756696321964,"y":44.77},{"x":1756696261781,"y":44.093},{"x":1756696200409,"y":50.838},{"x":1756696140358,"y":47.06},{"x":1756696081286,"y":48.576},{"x":1756696021154,"y":48.731},{"x":1756695962996,"y":45.706},{"x":1756695902870,"y":50.966},{"x":1756695836714,"y":46.655},{"x":1756695828251,"y":44.876},{"x":1756695540988,"y":46.236},{"x":1756695480844,"y":47.111},{"x":1756695420709,"y":47.407},{"x":1756695360587,"y":45.739},{"x":1756695300502,"y":49.195},{"x":1756695240302,"y":51.745},{"x":1756695180347,"y":53.024},{"x":1756695122928,"y":46.374},{"x":1756695062802,"y":49.042},{"x":1756695002673,"y":41.561},{"x":1756694942550,"y":46.218},{"x":1756694882423,"y":42.394},{"x":1756694822295,"y":40.207},{"x":1756694762166,"y":41.388},{"x":1756694702045,"y":39.648},{"x":1756694641927,"y":41.5},{"x":1756694581764,"y":35.896},{"x":1756694521639,"y":34.721},{"x":1756694461501,"y":36.65},{"x":1756694400786,"y":41.363},{"x":1756694340569,"y":39.286},{"x":1756694280451,"y":45.733},{"x":1756694220360,"y":42.804},{"x":1756694162841,"y":41.069},{"x":1756694102722,"y":36.973},{"x":1756694042589,"y":36.959},{"x":1756693982458,"y":37.291},{"x":1756693922331,"y":37.078},{"x":1756693862206,"y":38.125},{"x":1756693802056,"y":37.765},{"x":1756693741903,"y":40.734},{"x":1756693681777,"y":40.908},{"x":1756693621662,"y":43.534},{"x":1756693561538,"y":48.506},{"x":1756693501399,"y":42.38},{"x":1756693441262,"y":42.856},{"x":1756693381134,"y":42.68},{"x":1756693320998,"y":39.881},{"x":1756693260879,"y":43.882},{"x":1756693200820,"y":39.761},{"x":1756693140602,"y":44.254},{"x":1756693080541,"y":43.279},{"x":1756693020364,"y":44.094},{"x":1756692960230,"y":43.132},{"x":1756692902893,"y":40.747},{"x":1756692842772,"y":41.002},{"x":1756692782651,"y":43.511},{"x":1756692722509,"y":40.871},{"x":1756692662388,"y":39.684},{"x":1756692602234,"y":42.848},{"x":1756692542110,"y":37.765},{"x":1756692481971,"y":38.006},{"x":1756692421855,"y":37.194},{"x":1756692361178,"y":40.518},{"x":1756692301050,"y":39.52},{"x":1756692240891,"y":34.573},{"x":1756692180768,"y":36.288},{"x":1756692120667,"y":39.994},{"x":1756692063509,"y":38.605},{"x":1756692000215,"y":36.848},{"x":1756691942893,"y":40.969},{"x":1756691882767,"y":42.707},{"x":1756691822627,"y":41.024},{"x":1756691762511,"y":41.422},{"x":1756691702370,"y":39.094},{"x":1756691642260,"y":41.243},{"x":1756691582090,"y":39.086},{"x":1756691521943,"y":38.809},{"x":1756691461696,"y":40.331},{"x":1756691400911,"y":36.196},{"x":1756691340759,"y":36.824},{"x":1756691280675,"y":41.494},{"x":1756691220522,"y":41.038},{"x":1756691160451,"y":40.722},{"x":1756691100292,"y":42.33},{"x":1756691043033,"y":39.71},{"x":1756690982896,"y":41.198},{"x":1756690922776,"y":36.3},{"x":1756690862658,"y":37.094},{"x":1756690802505,"y":38.418},{"x":1756690742366,"y":40.522},{"x":1756690682240,"y":44.538},{"x":1756690622110,"y":40.518},{"x":1756690561978,"y":38.78},{"x":1756690501853,"y":41.33},{"x":1756690441724,"y":42.719},{"x":1756690381614,"y":40.914},{"x":1756690321479,"y":43.358},{"x":1756690261338,"y":38.782},{"x":1756690201233,"y":37.133},{"x":1756690141055,"y":38.165},{"x":1756690080938,"y":39.156},{"x":1756690020783,"y":42.467},{"x":1756689960665,"y":38.166},{"x":1756689900577,"y":39.505},{"x":1756689840393,"y":39.594},{"x":1756689780260,"y":39.838},{"x":1756689722900,"y":42.706},{"x":1756689662772,"y":39.04},{"x":1756689602640,"y":38.848},{"x":1756689542525,"y":41.059},{"x":1756689482396,"y":41.599},{"x":1756689422275,"y":39.63},{"x":1756689362113,"y":38.587},{"x":1756689301975,"y":38.27},{"x":1756689241843,"y":39.244},{"x":1756689181667,"y":40.88},{"x":1756689121522,"y":38.352},{"x":1756689061365,"y":41.33},{"x":1756689000715,"y":42.044},{"x":1756688940467,"y":39.448},{"x":1756688882925,"y":37.836},{"x":1756688822789,"y":40.838},{"x":1756688762670,"y":45.252},{"x":1756688702508,"y":41.208},{"x":1756688642374,"y":38.339},{"x":1756688582254,"y":41.243},{"x":1756688522127,"y":43.783},{"x":1756688462013,"y":42.317},{"x":1756688401592,"y":43.612},{"x":1756688341136,"y":37.598},{"x":1756688280986,"y":35.903},{"x":1756688220854,"y":42.989},{"x":1756688160732,"y":41.845},{"x":1756688100658,"y":49.18},{"x":1756688040456,"y":40.818},{"x":1756687980249,"y":39.84},{"x":1756687920201,"y":37.733},{"x":1756687862903,"y":36.396},{"x":1756687802774,"y":38.26},{"x":1756687742650,"y":36.259},{"x":1756687682507,"y":34.79},{"x":1756687622383,"y":40.553},{"x":1756687562251,"y":38.72},{"x":1756687502127,"y":40.482},{"x":1756687441978,"y":45.079},{"x":1756687381852,"y":43.343},{"x":1756687321725,"y":41.339},{"x":1756687261595,"y":39.25},{"x":1756687200837,"y":35.462},{"x":1756687140610,"y":38.581},{"x":1756687080495,"y":38.075},{"x":1756687020313,"y":34.93},{"x":1756686962835,"y":38.957},{"x":1756686902711,"y":37.808},{"x":1756686842598,"y":40.583},{"x":1756686782446,"y":39.311},{"x":1756686722310,"y":36.1},{"x":1756686662178,"y":40.71},{"x":1756686602050,"y":37.403},{"x":1756686541901,"y":37.141},{"x":1756686481775,"y":41.674},{"x":1756686421661,"y":37.512},{"x":1756686361533,"y":37.236},{"x":1756686300940,"y":40.493},{"x":1756686240801,"y":40.943},{"x":1756686180661,"y":43.961},{"x":1756686120573,"y":40.236},{"x":1756686060444,"y":38.485},{"x":1756686000355,"y":40.748},{"x":1756685942963,"y":39.365},{"x":1756685882835,"y":38.972},{"x":1756685822723,"y":39.761},{"x":1756685762314,"y":35.304},{"x":1756685702190,"y":41.897},{"x":1756685642057,"y":40.643},{"x":1756685581922,"y":41.687},{"x":1756685521767,"y":45.046},{"x":1756685461594,"y":40.516},{"x":1756685400687,"y":39.318},{"x":1756685340565,"y":38.449},{"x":1756685280454,"y":38.97},{"x":1756685220301,"y":44.483},{"x":1756685162979,"y":38.224},{"x":1756685102787,"y":37.536},{"x":1756685042668,"y":38.005},{"x":1756684982539,"y":40.621},{"x":1756684922418,"y":39.826},{"x":1756684862288,"y":39.589},{"x":1756684802966,"y":40.174},{"x":1756684742836,"y":37.124},{"x":1756684682700,"y":37.746},{"x":1756684622571,"y":39.809},{"x":1756684562435,"y":45.994},{"x":1756684502295,"y":40.505},{"x":1756684442166,"y":39.99},{"x":1756684382040,"y":37.976},{"x":1756684321901,"y":38.012},{"x":1756684261677,"y":39.48},{"x":1756684200942,"y":35.879},{"x":1756684140812,"y":35.522},{"x":1756684080708,"y":36.924},{"x":1756684020606,"y":47.04},{"x":1756683960294,"y":46.392},{"x":1756683902983,"y":45.631},{"x":1756683842835,"y":49.582},{"x":1756683782710,"y":45.056},{"x":1756683722583,"y":45.984},{"x":1756683662438,"y":43.981},{"x":1756683602311,"y":44.345},{"x":1756683542183,"y":37.519},{"x":1756683482064,"y":38.346},{"x":1756683421921,"y":38.936},{"x":1756683361312,"y":37.565},{"x":1756683301178,"y":42.353},{"x":1756683241032,"y":37.163},{"x":1756683180903,"y":38.652},{"x":1756683120783,"y":37.228},{"x":1756683060652,"y":37.86},{"x":1756683000625,"y":34.918},{"x":1756682940406,"y":36.682},{"x":1756682880235,"y":39.178},{"x":1756682823002,"y":37.897},{"x":1756682762819,"y":40.775},{"x":1756682702681,"y":40.248},{"x":1756682642550,"y":39.472},{"x":1756682582421,"y":47.159},{"x":1756682522287,"y":41.027},{"x":1756682462156,"y":43.358},{"x":1756682402033,"y":39.599},{"x":1756682341896,"y":39.844},{"x":1756682281774,"y":41.767},{"x":1756682221574,"y":38.903},{"x":1756682161455,"y":37.844},{"x":1756682101310,"y":37.888},{"x":1756682041157,"y":36.86},{"x":1756681981022,"y":41.102},{"x":1756681920874,"y":39.608},{"x":1756681860721,"y":40.38},{"x":1756681800691,"y":37.891},{"x":1756681740458,"y":38.586},{"x":1756681682860,"y":39.512},{"x":1756681622755,"y":44.898},{"x":1756681562560,"y":41.305},{"x":1756681502422,"y":40.6},{"x":1756681442305,"y":44.464},{"x":1756681382179,"y":40.591},{"x":1756681322058,"y":46.691},{"x":1756681261913,"y":42.97},{"x":1756681200747,"y":41.687},{"x":1756681140213,"y":40.259},{"x":1756681082915,"y":35.852},{"x":1756681022779,"y":38.752},{"x":1756680962649,"y":38.713},{"x":1756680902526,"y":36.776},{"x":1756680842382,"y":36.402},{"x":1756680782241,"y":39.15},{"x":1756680722099,"y":38.629},{"x":1756680661685,"y":43.794},{"x":1756680600891,"y":41.006},{"x":1756680540723,"y":38.548},{"x":1756680480624,"y":39.631},{"x":1756680420478,"y":39.444},{"x":1756680360343,"y":43.09},{"x":1756680300297,"y":43.232},{"x":1756680242905,"y":41.156},{"x":1756680182777,"y":44.825},{"x":1756680122643,"y":41.236},{"x":1756680062511,"y":45.112},{"x":1756680002377,"y":39.337},{"x":1756679942244,"y":38.136},{"x":1756679882117,"y":40.012},{"x":1756679821974,"y":40.939},{"x":1756679761825,"y":39.008},{"x":1756679701673,"y":40.109},{"x":1756679641547,"y":41.215},{"x":1756679581421,"y":45.619},{"x":1756679521296,"y":42.24},{"x":1756679461160,"y":43.826},{"x":1756679401043,"y":43.657},{"x":1756679340883,"y":43.675},{"x":1756679280776,"y":42.754},{"x":1756679220640,"y":40.982},{"x":1756679160544,"y":41.699},{"x":1756679100430,"y":41.834},{"x":1756679040226,"y":38.076},{"x":1756678980057,"y":36.161},{"x":1756678922909,"y":36.334},{"x":1756678862780,"y":36.466},{"x":1756678802644,"y":40.625},{"x":1756678742508,"y":36.905},{"x":1756678682386,"y":41.042},{"x":1756678622258,"y":43.153},{"x":1756678562123,"y":40.59},{"x":1756678501974,"y":40.909},{"x":1756678441853,"y":40.794},{"x":1756678381722,"y":39.738},{"x":1756678321557,"y":40.176},{"x":1756678261346,"y":49.032},{"x":1756678200807,"y":48.662},{"x":1756678140591,"y":46.714},{"x":1756678080557,"y":43.796},{"x":1756678020371,"y":40.993},{"x":1756677960247,"y":44.4},{"x":1756677902913,"y":41.171},{"x":1756677842787,"y":45.23},{"x":1756677782663,"y":36.031},{"x":1756677722537,"y":38.496},{"x":1756677662414,"y":44.104},{"x":1756677601451,"y":40.626},{"x":1756677540948,"y":39.901},{"x":1756677480813,"y":42.64},{"x":1756677420693,"y":42.5},{"x":1756677360615,"y":44.185},{"x":1756677300459,"y":45.829},{"x":1756677240235,"y":45.408},{"x":1756677180064,"y":43.489},{"x":1756677122893,"y":39.253},{"x":1756677062759,"y":39.156},{"x":1756677002632,"y":36.918},{"x":1756676942506,"y":37.504},{"x":1756676882384,"y":38.468},{"x":1756676822250,"y":55.334},{"x":1756676762135,"y":53.731},{"x":1756676701992,"y":56.257},{"x":1756676641867,"y":54.949},{"x":1756676581738,"y":51.176},{"x":1756676521601,"y":41.233},{"x":1756676461466,"y":38.947},{"x":1756676400829,"y":41.07},{"x":1756676340670,"y":40.446},{"x":1756676280553,"y":43.924},{"x":1756676220410,"y":42.007},{"x":1756676160290,"y":40.097},{"x":1756676102965,"y":42.202},{"x":1756676042841,"y":41.086},{"x":1756675982709,"y":38.116},{"x":1756675922584,"y":41.618},{"x":1756675862460,"y":38.698},{"x":1756675802325,"y":41.551},{"x":1756675742198,"y":42.077},{"x":1756675682070,"y":41.053},{"x":1756675621917,"y":42.684},{"x":1756675561776,"y":43.571},{"x":1756675501646,"y":47.02},{"x":1756675441503,"y":39.458},{"x":1756675381369,"y":40.873},{"x":1756675321236,"y":39.947},{"x":1756675261137,"y":39.348},{"x":1756675200974,"y":44.071},{"x":1756675140833,"y":43.823},{"x":1756675080710,"y":43.546},{"x":1756675020644,"y":48.006},{"x":1756674960449,"y":44.212},{"x":1756674900246,"y":45.0},{"x":1756674842984,"y":44.132},{"x":1756674782853,"y":41.73},{"x":1756674722700,"y":45.367},{"x":1756674662556,"y":40.992},{"x":1756674602404,"y":41.31},{"x":1756674542279,"y":41.059},{"x":1756674482142,"y":40.829},{"x":1756674421996,"y":56.906},{"x":1756674361513,"y":68.826},{"x":1756674301373,"y":62.152},{"x":1756674241233,"y":65.206},{"x":1756674181114,"y":59.492},{"x":1756674120952,"y":52.624},{"x":1756674060819,"y":47.534},{"x":1756674001459,"y":48.601},{"x":1756673940856,"y":53.663},{"x":1756673880741,"y":51.864},{"x":1756673820577,"y":50.221},{"x":1756673760446,"y":50.742},{"x":1756673700404,"y":50.046},{"x":1756673640283,"y":50.614},{"x":1756673582954,"y":54.572},{"x":1756673522830,"y":44.866},{"x":1756673462708,"y":44.609},{"x":1756673402584,"y":42.284},{"x":1756673342463,"y":39.307},{"x":1756673282339,"y":42.378},{"x":1756673222214,"y":43.82},{"x":1756673162081,"y":43.307},{"x":1756673101951,"y":49.97},{"x":1756673041810,"y":40.705},{"x":1756672981683,"y":43.903},{"x":1756672921543,"y":41.226},{"x":1756672861411,"y":42.712},{"x":1756672800822,"y":40.717},{"x":1756672740635,"y":37.301},{"x":1756672680551,"y":40.958},{"x":1756672620425,"y":41.83},{"x":1756672560314,"y":47.153},{"x":1756672502966,"y":46.097},{"x":1756672442841,"y":45.582},{"x":1756672382710,"y":47.72},{"x":1756672322572,"y":36.18},{"x":1756672262428,"y":42.539},{"x":1756672202296,"y":36.352},{"x":1756672142157,"y":40.501},{"x":1756672082023,"y":39.184},{"x":1756672021899,"y":37.2},{"x":1756671961768,"y":40.459},{"x":1756671901631,"y":40.692},{"x":1756671841507,"y":48.802},{"x":1756671781398,"y":45.392},{"x":1756671721252,"y":47.1},{"x":1756671661133,"y":43.292},{"x":1756671600987,"y":38.43},{"x":1756671540818,"y":36.704},{"x":1756671480690,"y":39.881},{"x":1756671420576,"y":41.796},{"x":1756671360474,"y":52.369},{"x":1756671300391,"y":42.47},{"x":1756671240033,"y":40.02},{"x":1756671182895,"y":45.899},{"x":1756671122737,"y":45.976},{"x":1756671062593,"y":50.089},{"x":1756671002435,"y":50.93},{"x":1756670942313,"y":49.183},{"x":1756670882204,"y":58.05},{"x":1756670822048,"y":47.496},{"x":1756670761293,"y":43.333},{"x":1756670701157,"y":41.562},{"x":1756670641027,"y":44.662},{"x":1756670580889,"y":45.62},{"x":1756670520750,"y":48.809},{"x":1756670460633,"y":46.163},{"x":1756670401661,"y":54.485},{"x":1756670341056,"y":50.762},{"x":1756670280918,"y":46.534},{"x":1756670220788,"y":48.499},{"x":1756670160692,"y":46.009},{"x":1756670100495,"y":51.607},{"x":1756670040381,"y":51.622},{"x":1756669980170,"y":52.29},{"x":1756669922912,"y":48.95},{"x":1756669862774,"y":52.23},{"x":1756669802656,"y":58.148},{"x":1756669742515,"y":58.901},{"x":1756669682389,"y":54.014},{"x":1756669622247,"y":54.202},{"x":1756669562134,"y":54.941},{"x":1756669501977,"y":65.968},{"x":1756669441846,"y":55.565},{"x":1756669381719,"y":54.746},{"x":1756669321573,"y":54.096},{"x":1756669261457,"y":52.651},{"x":1756669200903,"y":57.934},{"x":1756669140606,"y":54.926},{"x":1756669080488,"y":56.075},{"x":1756669020378,"y":61.859},{"x":1756668962997,"y":62.076},{"x":1756668902861,"y":61.201},{"x":1756668842712,"y":56.201},{"x":1756668782590,"y":55.844},{"x":1756668722452,"y":54.834},{"x":1756668662343,"y":50.386},{"x":1756668602210,"y":56.436},{"x":1756668542077,"y":52.206},{"x":1756668481939,"y":54.07},{"x":1756668421816,"y":57.554},{"x":1756668361690,"y":56.935},{"x":1756668301557,"y":59.099},{"x":1756668241427,"y":54.448},{"x":1756668181302,"y":59.272},{"x":1756668121158,"y":56.081},{"x":1756668061052,"y":53.099},{"x":1756668000932,"y":54.932},{"x":1756667940742,"y":52.468},{"x":1756667880597,"y":54.991},{"x":1756667820492,"y":57.253},{"x":1756667760379,"y":51.148},{"x":1756667700103,"y":53.341},{"x":1756667642897,"y":52.93},{"x":1756667582754,"y":48.412},{"x":1756667522622,"y":50.866},{"x":1756667462457,"y":52.054},{"x":1756667402333,"y":49.332},{"x":1756667342196,"y":48.851},{"x":1756667282070,"y":52.667},{"x":1756667221927,"y":52.339},{"x":1756667161557,"y":64.081},{"x":1756667101431,"y":60.175},{"x":1756667041298,"y":55.885},{"x":1756666981165,"y":55.363},{"x":1756666921036,"y":56.658},{"x":1756666860915,"y":57.93},{"x":1756666801418,"y":54.15},{"x":1756666741015,"y":52.948},{"x":1756666680896,"y":55.295},{"x":1756666620798,"y":54.476},{"x":1756666560712,"y":60.4},{"x":1756666500523,"y":53.856},{"x":1756666440354,"y":57.667},{"x":1756666383016,"y":56.86},{"x":1756666322882,"y":58.076},{"x":1756666262762,"y":57.707},{"x":1756666202638,"y":54.605},{"x":1756666142519,"y":55.327},{"x":1756666082388,"y":56.054},{"x":1756666022273,"y":62.344},{"x":1756665962134,"y":58.64},{"x":1756665901999,"y":49.688},{"x":1756665841875,"y":48.047},{"x":1756665781760,"y":53.095},{"x":1756665721628,"y":50.456},{"x":1756665661501,"y":51.011},{"x":1756665600786,"y":55.338},{"x":1756665540569,"y":49.015},{"x":1756665480482,"y":50.696},{"x":1756665420422,"y":48.635},{"x":1756665362937,"y":43.37},{"x":1756665302767,"y":45.787},{"x":1756665242643,"y":43.811},{"x":1756665182521,"y":48.536},{"x":1756665122393,"y":52.556},{"x":1756665062263,"y":50.269},{"x":1756665002137,"y":58.169},{"x":1756664941999,"y":60.892},{"x":1756664881877,"y":60.719},{"x":1756664821744,"y":52.434},{"x":1756664761614,"y":47.642},{"x":1756664701493,"y":45.703},{"x":1756664641363,"y":47.102},{"x":1756664581232,"y":50.492},{"x":1756664521104,"y":54.206},{"x":1756664460965,"y":50.773},{"x":1756664400865,"y":51.614},{"x":1756664340683,"y":50.774},{"x":1756664280566,"y":53.088},{"x":1756664220559,"y":61.248},{"x":1756664160311,"y":51.205},{"x":1756664100076,"y":49.492},{"x":1756664042896,"y":62.245},{"x":1756663982765,"y":61.043},{"x":1756663922642,"y":57.455},{"x":1756663862433,"y":52.868},{"x":1756663802291,"y":68.789},{"x":1756663742158,"y":47.896},{"x":1756663682019,"y":46.352},{"x":1756663621878,"y":47.131},{"x":1756663561571,"y":51.617},{"x":1756663501451,"y":51.894},{"x":1756663441307,"y":50.951},{"x":1756663381197,"y":54.181},{"x":1756663321036,"y":69.841},{"x":1756663260908,"y":55.882},{"x":1756663202206,"y":50.114},{"x":1756663141965,"y":51.662},{"x":1756663081844,"y":49.06},{"x":1756663021716,"y":49.54},{"x":1756662961587,"y":47.606},{"x":1756662900660,"y":49.104},{"x":1756662840461,"y":57.955},{"x":1756662780368,"y":55.774},{"x":1756662723015,"y":52.282},{"x":1756662662881,"y":56.567},{"x":1756662602713,"y":54.182},{"x":1756662542587,"y":47.011},{"x":1756662482457,"y":49.783},{"x":1756662422322,"y":51.851},{"x":1756662362196,"y":52.184},{"x":1756662302072,"y":49.942},{"x":1756662241936,"y":45.28},{"x":1756662181814,"y":51.079},{"x":1756662121676,"y":51.017},{"x":1756662061552,"y":50.623},{"x":1756662000850,"y":59.654},{"x":1756661940693,"y":56.972},{"x":1756661880590,"y":56.717},{"x":1756661820416,"y":59.806},{"x":1756661760285,"y":72.359},{"x":1756661702975,"y":49.038},{"x":1756661642845,"y":46.902},{"x":1756661582728,"y":45.99},{"x":1756661522599,"y":43.319},{"x":1756661462466,"y":51.292},{"x":1756661402329,"y":54.017},{"x":1756661342187,"y":51.893},{"x":1756661282052,"y":51.739},{"x":1756661221913,"y":44.684},{"x":1756661161780,"y":59.048},{"x":1756661101630,"y":52.188},{"x":1756661041495,"y":51.611},{"x":1756660981373,"y":52.722},{"x":1756660921232,"y":51.488},{"x":1756660861102,"y":44.201},{"x":1756660800980,"y":52.722},{"x":1756660740838,"y":49.801},{"x":1756660680710,"y":48.518},{"x":1756660620615,"y":53.388},{"x":1756660560506,"y":58.748},{"x":1756660500536,"y":56.135},{"x":1756660443001,"y":61.126},{"x":1756660382863,"y":59.274},{"x":1756660322717,"y":56.909},{"x":1756660262576,"y":50.298},{"x":1756660202418,"y":44.302},{"x":1756660142301,"y":59.74},{"x":1756660082166,"y":44.123},{"x":1756660022017,"y":50.94},{"x":1756659961738,"y":43.595},{"x":1756659901610,"y":60.32},{"x":1756659841485,"y":53.009},{"x":1756659781359,"y":49.396},{"x":1756659721219,"y":53.816},{"x":1756659661053,"y":44.189},{"x":1756659602120,"y":42.69},{"x":1756659541935,"y":47.755},{"x":1756659481811,"y":47.971},{"x":1756659421691,"y":45.476},{"x":1756659361551,"y":44.598},{"x":1756659300681,"y":49.908},{"x":1756659240406,"y":44.334},{"x":1756659180299,"y":50.045},{"x":1756659122994,"y":58.058},{"x":1756659062868,"y":44.801},{"x":1756659002741,"y":41.287},{"x":1756658942613,"y":44.958},{"x":1756658882493,"y":43.055},{"x":1756658822367,"y":42.359},{"x":1756658762247,"y":42.588},{"x":1756658702118,"y":48.012},{"x":1756658641971,"y":47.536},{"x":1756658581849,"y":54.366},{"x":1756658521709,"y":78.782},{"x":1756658461579,"y":56.563},{"x":1756658401460,"y":47.926},{"x":1756658341327,"y":47.714},{"x":1756658281201,"y":43.213},{"x":1756658221055,"y":48.16},{"x":1756658160922,"y":37.771},{"x":1756658100807,"y":39.854},{"x":1756658040651,"y":47.047},{"x":1756657980523,"y":45.421},{"x":1756657920493,"y":42.648},{"x":1756657860259,"y":44.953},{"x":1756657803031,"y":46.664},{"x":1756657742895,"y":41.346},{"x":1756657682758,"y":52.046},{"x":1756657622627,"y":65.778},{"x":1756657562490,"y":65.645},{"x":1756657502364,"y":64.292},{"x":1756657442225,"y":63.545},{"x":1756657382108,"y":54.766},{"x":1756657321974,"y":41.528},{"x":1756657261198,"y":46.97},{"x":1756657201093,"y":41.935},{"x":1756657140953,"y":44.98},{"x":1756657080817,"y":45.282},{"x":1756657020706,"y":44.879},{"x":1756656960592,"y":50.186},{"x":1756656900454,"y":42.96},{"x":1756656840342,"y":41.364},{"x":1756656780249,"y":49.852},{"x":1756656722882,"y":57.595},{"x":1756656662709,"y":63.45},{"x":1756656602563,"y":60.173},{"x":1756656542419,"y":64.193},{"x":1756656482290,"y":53.308},{"x":1756656422160,"y":40.379},{"x":1756656362020,"y":42.62},{"x":1756656301878,"y":41.284},{"x":1756656241754,"y":42.121},{"x":1756656181612,"y":47.297},{"x":1756656121469,"y":45.478},{"x":1756656061331,"y":46.466},{"x":1756656001532,"y":42.8},{"x":1756655941103,"y":61.068},{"x":1756655880960,"y":51.911},{"x":1756655820825,"y":53.216},{"x":1756655760709,"y":50.06},{"x":1756655700626,"y":71.443},{"x":1756655640602,"y":56.872},{"x":1756655580333,"y":61.703},{"x":1756655520296,"y":57.511},{"x":1756655462948,"y":59.171},{"x":1756655402799,"y":52.076},{"x":1756655342665,"y":64.711},{"x":1756655282532,"y":54.248},{"x":1756655222395,"y":46.513},{"x":1756655162271,"y":46.234},{"x":1756655102149,"y":47.738},{"x":1756655042005,"y":69.134},{"x":1756654981872,"y":61.782},{"x":1756654921748,"y":58.368},{"x":1756654861625,"y":56.099},{"x":1756654801492,"y":50.911},{"x":1756654741358,"y":42.455},{"x":1756654681232,"y":44.932},{"x":1756654621092,"y":43.888},{"x":1756654560940,"y":44.912},{"x":1756654500833,"y":46.028},{"x":1756654440664,"y":44.015},{"x":1756654380551,"y":40.585},{"x":1756654320477,"y":39.259},{"x":1756654260282,"y":49.597},{"x":1756654200148,"y":50.113},{"x":1756654142886,"y":56.159},{"x":1756654082754,"y":45.46},{"x":1756654022628,"y":50.107},{"x":1756653962502,"y":50.411},{"x":1756653902364,"y":59.374},{"x":1756653842244,"y":56.982},{"x":1756653782118,"y":55.483},{"x":1756653721980,"y":69.185},{"x":1756653661680,"y":52.57},{"x":1756653601543,"y":66.251},{"x":1756653541407,"y":53.635},{"x":1756653481278,"y":52.679},{"x":1756653421147,"y":75.092},{"x":1756653360990,"y":66.924},{"x":1756653300776,"y":60.876},{"x":1756653240625,"y":62.344},{"x":1756653180540,"y":50.267},{"x":1756653120354,"y":50.696},{"x":1756653060281,"y":55.606},{"x":1756653002901,"y":52.087},{"x":1756652942772,"y":56.989},{"x":1756652882640,"y":59.148},{"x":1756652822533,"y":61.505},{"x":1756652762374,"y":58.238},{"x":1756652702232,"y":52.278},{"x":1756652642103,"y":43.676},{"x":1756652581955,"y":48.037},{"x":1756652521830,"y":54.203},{"x":1756652461713,"y":77.196},{"x":1756652402123,"y":71.1},{"x":1756652341766,"y":74.344},{"x":1756652281637,"y":70.722},{"x":1756652221503,"y":67.984},{"x":1756652161388,"y":50.532},{"x":1756652100667,"y":43.411},{"x":1756652040526,"y":45.383},{"x":1756651980356,"y":43.39},{"x":1756651920240,"y":50.593},{"x":1756651862921,"y":55.667},{"x":1756651802803,"y":64.613},{"x":1756651742665,"y":65.052},{"x":1756651682540,"y":60.862},{"x":1756651622407,"y":60.322},{"x":1756651562278,"y":59.957},{"x":1756651502149,"y":60.809},{"x":1756651442018,"y":75.988},{"x":1756651381887,"y":65.287},{"x":1756651321752,"y":56.092},{"x":1756651261625,"y":44.011},{"x":1756651201501,"y":53.71},{"x":1756651141357,"y":46.968},{"x":1756651081232,"y":47.65},{"x":1756651021100,"y":51.125},{"x":1756650960953,"y":43.282},{"x":1756650900830,"y":37.859},{"x":1756650840696,"y":38.225},{"x":1756650780561,"y":44.069},{"x":1756650720472,"y":43.307},{"x":1756650660292,"y":47.934},{"x":1756650603029,"y":44.837},{"x":1756650542882,"y":57.04},{"x":1756650482759,"y":52.393},{"x":1756650422630,"y":67.416},{"x":1756650362501,"y":55.898},{"x":1756650302354,"y":65.362},{"x":1756650242231,"y":39.665},{"x":1756650182096,"y":38.213},{"x":1756650121963,"y":31.012},{"x":1756650061238,"y":43.435},{"x":1756650001112,"y":32.933},{"x":1756649940957,"y":52.698},{"x":1756649880959,"y":57.408},{"x":1756649820850,"y":72.863},{"x":1756649760791,"y":53.614},{"x":1756649700480,"y":54.4},{"x":1756649640317,"y":68.53},{"x":1756649583026,"y":37.822},{"x":1756649522814,"y":48.106},{"x":1756649462663,"y":60.016},{"x":1756649402494,"y":57.124},{"x":1756649342358,"y":55.637},{"x":1756649282219,"y":56.905},{"x":1756649222086,"y":71.923},{"x":1756649161948,"y":66.266},{"x":1756649101825,"y":73.331},{"x":1756649041694,"y":78.445},{"x":1756648981559,"y":57.067},{"x":1756648921428,"y":65.64},{"x":1756648861294,"y":53.071},{"x":1756648802103,"y":52.38},{"x":1756648741874,"y":57.146},{"x":1756648681727,"y":64.907},{"x":1756648621607,"y":52.95},{"x":1756648561472,"y":53.795},{"x":1756648500693,"y":51.023},{"x":1756648440511,"y":52.248},{"x":1756648380351,"y":53.893},{"x":1756648320313,"y":49.763},{"x":1756648262975,"y":42.848},{"x":1756648202841,"y":53.213},{"x":1756648142722,"y":44.382},{"x":1756648082600,"y":51.689},{"x":1756648022457,"y":54.695},{"x":1756647962323,"y":65.837},{"x":1756647902201,"y":75.908},{"x":1756647842065,"y":83.61},{"x":1756647781897,"y":73.507},{"x":1756647721769,"y":77.707},{"x":1756647661645,"y":75.956},{"x":1756647601523,"y":61.702},{"x":1756647541386,"y":82.158},{"x":1756647481265,"y":57.174},{"x":1756647421137,"y":58.777},{"x":1756647360998,"y":59.396},{"x":1756647300875,"y":66.731},{"x":1756647240758,"y":68.431},{"x":1756647180640,"y":63.097},{"x":1756647120515,"y":56.323},{"x":1756647060376,"y":56.96},{"x":1756647000266,"y":40.481},{"x":1756646942950,"y":47.447},{"x":1756646882827,"y":39.596},{"x":1756646822699,"y":40.404},{"x":1756646762559,"y":39.203},{"x":1756646702428,"y":40.411},{"x":1756646642296,"y":31.013},{"x":1756646582169,"y":40.817},{"x":1756646522041,"y":35.513},{"x":1756646461249,"y":45.703},{"x":1756646401143,"y":61.024},{"x":1756646340961,"y":54.383},{"x":1756646280828,"y":51.528},{"x":1756646220701,"y":37.162},{"x":1756646160506,"y":40.434},{"x":1756646100347,"y":40.705},{"x":1756646040126,"y":48.847},{"x":1756645982904,"y":53.22},{"x":1756645922745,"y":53.864},{"x":1756645862596,"y":54.358},{"x":1756645802449,"y":60.412},{"x":1756645742329,"y":52.849},{"x":1756645682162,"y":58.162},{"x":1756645622044,"y":45.072},{"x":1756645561715,"y":44.093},{"x":1756645501585,"y":40.795},{"x":1756645441483,"y":42.862},{"x":1756645381337,"y":45.858},{"x":1756645321210,"y":46.565},{"x":1756645261084,"y":45.859},{"x":1756645202122,"y":44.03},{"x":1756645141877,"y":58.433},{"x":1756645081745,"y":47.126},{"x":1756645021614,"y":44.711},{"x":1756644961491,"y":48.269},{"x":1756644900724,"y":57.245},{"x":1756644840595,"y":50.347},{"x":1756644780440,"y":46.852},{"x":1756644720314,"y":42.985},{"x":1756644662984,"y":46.477},{"x":1756644602848,"y":46.228},{"x":1756644542741,"y":46.588},{"x":1756644482601,"y":44.977},{"x":1756644422480,"y":49.054},{"x":1756644362365,"y":54.776},{"x":1756644302245,"y":54.124},{"x":1756644242121,"y":64.248},{"x":1756644181974,"y":74.315},{"x":1756644121863,"y":77.29},{"x":1756644061713,"y":69.356},{"x":1756644001565,"y":84.109},{"x":1756643941436,"y":72.163},{"x":1756643881290,"y":47.324},{"x":1756643821145,"y":70.195},{"x":1756643760994,"y":54.929},{"x":1756643700879,"y":51.04},{"x":1756643640733,"y":64.177},{"x":1756643580620,"y":63.373},{"x":1756643520558,"y":81.566},{"x":1756643460379,"y":93.721},{"x":1756643400391,"y":75.431},{"x":1756643342924,"y":62.198},{"x":1756643282795,"y":58.901},{"x":1756643222665,"y":62.509},{"x":1756643162539,"y":52.898},{"x":1756643102345,"y":52.727},{"x":1756643042202,"y":44.438},{"x":1756642982078,"y":54.949},{"x":1756642921933,"y":45.626},{"x":1756642861490,"y":43.718},{"x":1756642801357,"y":45.744},{"x":1756642741237,"y":50.041},{"x":1756642681102,"y":55.552},{"x":1756642620963,"y":63.316},{"x":1756642560832,"y":58.45},{"x":1756642500710,"y":54.068},{"x":1756642440571,"y":45.611},{"x":1756642380451,"y":47.855},{"x":1756642320269,"y":42.912},{"x":1756642263000,"y":47.014},{"x":1756642202864,"y":47.358},{"x":1756642142742,"y":49.596},{"x":1756642082610,"y":45.998},{"x":1756642022489,"y":44.45},{"x":1756641962351,"y":40.055},{"x":1756641902194,"y":40.27},{"x":1756641842074,"y":44.496},{"x":1756641781936,"y":38.773},{"x":1756641721814,"y":39.061},{"x":1756641661676,"y":32.052},{"x":1756641603032,"y":38.708},{"x":1756641542838,"y":36.563},{"x":1756641482705,"y":38.13},{"x":1756641422590,"y":36.952},{"x":1756641362447,"y":52.171},{"x":1756641302324,"y":40.778},{"x":1756641242205,"y":43.856},{"x":1756641182075,"y":50.467},{"x":1756641121946,"y":38.755},{"x":1756641061585,"y":44.017},{"x":1756641001163,"y":58.217},{"x":1756640941020,"y":44.33},{"x":1756640880885,"y":55.424},{"x":1756640820751,"y":63.325},{"x":1756640760630,"y":62.497},{"x":1756640700829,"y":68.18},{"x":1756640640329,"y":65.761},{"x":1756640580324,"y":56.94},{"x":1756640522922,"y":56.125},{"x":1756640462803,"y":46.388},{"x":1756640402690,"y":46.602},{"x":1756640342546,"y":47.957},{"x":1756640282409,"y":63.9},{"x":1756640222289,"y":51.247},{"x":1756640162102,"y":63.134},{"x":1756640101947,"y":72.076},{"x":1756640041826,"y":53.971},{"x":1756639981682,"y":56.827},{"x":1756639921560,"y":67.241},{"x":1756639861422,"y":45.512},{"x":1756639801352,"y":45.78},{"x":1756639741152,"y":53.274},{"x":1756639681014,"y":51.91},{"x":1756639620877,"y":57.112},{"x":1756639560742,"y":64.63},{"x":1756639500523,"y":54.142},{"x":1756639440299,"y":45.67},{"x":1756639383000,"y":64.822},{"x":1756639322881,"y":46.87},{"x":1756639261793,"y":44.975},{"x":1756639201028,"y":41.795},{"x":1756639140872,"y":52.868},{"x":1756639080745,"y":54.55},{"x":1756639020669,"y":37.663},{"x":1756638960508,"y":49.909},{"x":1756638900368,"y":43.434},{"x":1756638840231,"y":47.346},{"x":1756638782893,"y":46.794},{"x":1756638722748,"y":35.413},{"x":1756638662557,"y":35.99},{"x":1756638602402,"y":43.892},{"x":1756638542277,"y":43.318},{"x":1756638482141,"y":42.406},{"x":1756638422016,"y":47.965},{"x":1756638361834,"y":46.074},{"x":1756638301657,"y":41.43},{"x":1756638241522,"y":30.784},{"x":1756638181412,"y":53.689},{"x":1756638121282,"y":57.479},{"x":1756638061150,"y":85.546},{"x":1756638001588,"y":89.435},{"x":1756637941063,"y":76.756},{"x":1756637880920,"y":55.033},{"x":1756637820805,"y":52.372},{"x":1756637760674,"y":49.961},{"x":1756637700581,"y":53.873},{"x":1756637640443,"y":46.753},{"x":1756637580283,"y":40.914},{"x":1756637523023,"y":51.786},{"x":1756637462886,"y":43.147},{"x":1756637402746,"y":38.029},{"x":1756637342636,"y":42.502},{"x":1756637282492,"y":53.25},{"x":1756637222373,"y":37.424},{"x":1756637162248,"y":34.436},{"x":1756637102117,"y":29.506},{"x":1756637041969,"y":26.202},{"x":1756636981845,"y":31.033},{"x":1756636921714,"y":49.396},{"x":1756636861589,"y":39.911},{"x":1756636801453,"y":38.934},{"x":1756636741322,"y":52.518},{"x":1756636681186,"y":41.67},{"x":1756636621054,"y":46.418},{"x":1756636560905,"y":42.254},{"x":1756636500791,"y":46.652},{"x":1756636440631,"y":43.77},{"x":1756636380541,"y":39.257},{"x":1756636320414,"y":54.788},{"x":1756636260283,"y":55.224},{"x":1756636200068,"y":58.835},{"x":1756636142900,"y":46.981},{"x":1756636082763,"y":66.096},{"x":1756636022638,"y":47.136},{"x":1756635962516,"y":51.347},{"x":1756635902373,"y":52.339},{"x":1756635842252,"y":57.163},{"x":1756635782123,"y":61.992},{"x":1756635721974,"y":70.116},{"x":1756635661852,"y":66.37},{"x":1756635601722,"y":54.947},{"x":1756635553631,"y":35.612},{"x":1756635482858,"y":39.072},{"x":1756635422750,"y":37.388},{"x":1756635362420,"y":30.778},{"x":1756635302290,"y":29.844},{"x":1756635242139,"y":33.997},{"x":1756635181994,"y":38.552},{"x":1756635121820,"y":33.499},{"x":1756635061640,"y":42.958},{"x":1756635001487,"y":43.163},{"x":1756634941355,"y":45.472},{"x":1756634881222,"y":52.394},{"x":1756634821087,"y":39.865},{"x":1756634760688,"y":35.363},{"x":1756634700665,"y":35.966},{"x":1756634640451,"y":34.052},{"x":1756634580231,"y":35.106},{"x":1756634522965,"y":47.407},{"x":1756634462847,"y":47.178},{"x":1756634400349,"y":69.437},{"x":1756634343029,"y":65.681},{"x":1756634282879,"y":74.705},{"x":1756634222741,"y":65.384},{"x":1756634162619,"y":68.616},{"x":1756634102505,"y":50.321},{"x":1756634042353,"y":47.146},{"x":1756633982229,"y":46.116},{"x":1756633922103,"y":49.492},{"x":1756633861961,"y":41.495},{"x":1756633801845,"y":34.456},{"x":1756633741710,"y":38.329},{"x":1756633681518,"y":56.992},{"x":1756633621398,"y":41.094},{"x":1756633561263,"y":31.223},{"x":1756633501205,"y":44.389},{"x":1756633440959,"y":45.984},{"x":1756633380836,"y":51.851},{"x":1756633320697,"y":53.766},{"x":1756633260563,"y":52.58},{"x":1756633200612,"y":36.434},{"x":1756633140319,"y":37.47},{"x":1756633080197,"y":42.181},{"x":1756633022913,"y":41.395},{"x":1756632962783,"y":50.898},{"x":1756632902677,"y":47.346},{"x":1756632842511,"y":47.49},{"x":1756632782390,"y":54.566},{"x":1756632722260,"y":50.597},{"x":1756632662142,"y":37.264},{"x":1756632602014,"y":44.221},{"x":1756632541882,"y":37.756},{"x":1756632481746,"y":33.557},{"x":1756632421612,"y":40.085},{"x":1756632361489,"y":36.95},{"x":1756632300900,"y":36.305},{"x":1756632240765,"y":32.426},{"x":1756632180643,"y":45.474},{"x":1756632120543,"y":32.959},{"x":1756632060472,"y":28.973},{"x":1756632000288,"y":27.917},{"x":1756631940073,"y":27.95},{"x":1756631882892,"y":35.269},{"x":1756631822772,"y":24.983},{"x":1756631762375,"y":23.446},{"x":1756631702243,"y":27.323},{"x":1756631642120,"y":35.036},{"x":1756631581964,"y":26.404},{"x":1756631521814,"y":38.357},{"x":1756631461540,"y":37.721},{"x":1756631400818,"y":39.388},{"x":1756631340618,"y":45.968},{"x":1756631280517,"y":43.517},{"x":1756631220374,"y":26.014},{"x":1756631162909,"y":30.805},{"x":1756631102786,"y":25.678},{"x":1756631042646,"y":19.169},{"x":1756630982507,"y":22.021},{"x":1756630922385,"y":25.908},{"x":1756630862268,"y":29.789},{"x":1756630800167,"y":27.44},{"x":1756630742916,"y":30.58},{"x":1756630682787,"y":32.213},{"x":1756630622659,"y":33.288},{"x":1756630562534,"y":36.451},{"x":1756630502412,"y":43.307},{"x":1756630442292,"y":50.065},{"x":1756630382168,"y":47.617},{"x":1756630322050,"y":40.686},{"x":1756630261664,"y":33.874},{"x":1756630200904,"y":40.876},{"x":1756630140738,"y":35.182},{"x":1756630080645,"y":39.461},{"x":1756630020505,"y":40.79},{"x":1756629960369,"y":41.09},{"x":1756629903031,"y":38.711},{"x":1756629842897,"y":41.77},{"x":1756629782743,"y":43.096},{"x":1756629722609,"y":40.217},{"x":1756629662489,"y":38.402},{"x":1756629602357,"y":34.99},{"x":1756629542233,"y":40.638},{"x":1756629482114,"y":52.529},{"x":1756629421963,"y":55.152},{"x":1756629361200,"y":55.336},{"x":1756629301070,"y":50.404},{"x":1756629240932,"y":53.01},{"x":1756629180793,"y":39.787},{"x":1756629120666,"y":31.67},{"x":1756629060505,"y":29.106},{"x":1756629000439,"y":35.778},{"x":1756628940255,"y":39.353},{"x":1756628882981,"y":38.39},{"x":1756628822853,"y":35.941},{"x":1756628762731,"y":47.033},{"x":1756628702610,"y":47.798},{"x":1756628642482,"y":44.633},{"x":1756628582357,"y":46.075},{"x":1756628522238,"y":45.329},{"x":1756628462109,"y":37.285},{"x":1756628401959,"y":36.067},{"x":1756628341831,"y":36.076},{"x":1756628281706,"y":39.35},{"x":1756628221507,"y":43.266},{"x":1756628161389,"y":42.04},{"x":1756628101258,"y":56.12},{"x":1756628041133,"y":39.324},{"x":1756627980986,"y":37.253},{"x":1756627920839,"y":55.823},{"x":1756627860693,"y":40.613},{"x":1756627800632,"y":39.06},{"x":1756627740401,"y":38.752},{"x":1756627682824,"y":40.435},{"x":1756627622691,"y":35.615},{"x":1756627562567,"y":38.459},{"x":1756627502439,"y":34.008},{"x":1756627442294,"y":32.98},{"x":1756627382165,"y":35.906},{"x":1756627322050,"y":37.874},{"x":1756627261903,"y":34.94},{"x":1756627203092,"y":40.157},{"x":1756627142848,"y":49.302},{"x":1756627082733,"y":36.091},{"x":1756627022614,"y":43.216},{"x":1756626962492,"y":41.916},{"x":1756626902375,"y":39.506},{"x":1756626842248,"y":43.591},{"x":1756626782118,"y":39.51},{"x":1756626721981,"y":50.072},{"x":1756626661689,"y":42.973},{"x":1756626600929,"y":36.508},{"x":1756626540790,"y":37.162},{"x":1756626480682,"y":37.597},{"x":1756626420529,"y":36.386},{"x":1756626360455,"y":33.294},{"x":1756626300333,"y":42.372},{"x":1756626240067,"y":50.706},{"x":1756626182900,"y":57.59},{"x":1756626122757,"y":65.269},{"x":1756626062629,"y":60.966},{"x":1756626002490,"y":64.285},{"x":1756625942364,"y":50.692},{"x":1756625882211,"y":52.073},{"x":1756625822086,"y":45.785},{"x":1756625761854,"y":47.212},{"x":1756625701718,"y":45.535},{"x":1756625641587,"y":46.19},{"x":1756625581450,"y":49.015},{"x":1756625521317,"y":54.769},{"x":1756625461209,"y":50.225},{"x":1756625401093,"y":45.798},{"x":1756625340887,"y":44.014},{"x":1756625280759,"y":51.559},{"x":1756625220624,"y":55.572},{"x":1756625160528,"y":62.21},{"x":1756625100397,"y":64.0},{"x":1756625040265,"y":62.292},{"x":1756624983000,"y":60.818},{"x":1756624922878,"y":72.557},{"x":1756624862746,"y":75.386},{"x":1756624802622,"y":82.859},{"x":1756624742493,"y":123.64},{"x":1756624682379,"y":40.608},{"x":1756624622234,"y":32.9},{"x":1756624562108,"y":24.044},{"x":1756624501964,"y":30.86},{"x":1756624441840,"y":43.037},{"x":1756624381721,"y":49.331},{"x":1756624321591,"y":46.842},{"x":1756624261436,"y":40.453},{"x":1756624200796,"y":33.55},{"x":1756624140568,"y":32.656},{"x":1756624082858,"y":26.872},{"x":1756624022745,"y":25.352},{"x":1756623962605,"y":44.456},{"x":1756623902431,"y":29.659},{"x":1756623842302,"y":31.801},{"x":1756623782181,"y":35.818},{"x":1756623722051,"y":45.631},{"x":1756623661917,"y":45.845},{"x":1756623601403,"y":45.23},{"x":1756623540915,"y":42.384},{"x":1756623480801,"y":46.032},{"x":1756623420675,"y":32.357},{"x":1756623360559,"y":34.712},{"x":1756623300554,"y":28.59},{"x":1756623240351,"y":29.38},{"x":1756623182978,"y":23.855},{"x":1756623122846,"y":26.251},{"x":1756623062716,"y":30.367},{"x":1756623002593,"y":29.674},{"x":1756622942472,"y":28.787},{"x":1756622882323,"y":29.664},{"x":1756622822196,"y":31.025},{"x":1756622762071,"y":35.12},{"x":1756622701947,"y":30.167},{"x":1756622641817,"y":29.298},{"x":1756622581674,"y":30.313},{"x":1756622521555,"y":27.511},{"x":1756622461422,"y":35.53},{"x":1756622400725,"y":33.631},{"x":1756622340544,"y":29.026},{"x":1756622280421,"y":26.777},{"x":1756622220381,"y":26.172},{"x":1756622162861,"y":30.367},{"x":1756622102737,"y":26.026},{"x":1756622042608,"y":28.129},{"x":1756621982479,"y":27.961},{"x":1756621922350,"y":30.462},{"x":1756621862228,"y":29.251},{"x":1756621802110,"y":28.574},{"x":1756621741955,"y":34.358},{"x":1756621681817,"y":31.567},{"x":1756621621699,"y":30.479},{"x":1756621561554,"y":29.935},{"x":1756621500689,"y":25.471},{"x":1756621440485,"y":26.143},{"x":1756621380391,"y":26.086},{"x":1756621323011,"y":46.274},{"x":1756621262870,"y":57.382},{"x":1756621202742,"y":55.894},{"x":1756621142600,"y":55.088},{"x":1756621082463,"y":67.848},{"x":1756621022329,"y":55.278},{"x":1756620962211,"y":32.788},{"x":1756620902026,"y":52.24},{"x":1756620841906,"y":32.965},{"x":1756620781753,"y":46.568},{"x":1756620721565,"y":44.73},{"x":1756620661417,"y":55.332},{"x":1756620601264,"y":44.188},{"x":1756620541131,"y":38.126},{"x":1756620480993,"y":39.574},{"x":1756620420862,"y":41.982},{"x":1756620360661,"y":49.62},{"x":1756620300590,"y":49.488},{"x":1756620240437,"y":43.914},{"x":1756620180344,"y":42.907},{"x":1756620122930,"y":40.307},{"x":1756620062806,"y":53.23},{"x":1756620002996,"y":54.581},{"x":1756619942855,"y":48.994},{"x":1756619882733,"y":52.556},{"x":1756619822613,"y":31.738},{"x":1756619762475,"y":37.532},{"x":1756619702344,"y":47.874},{"x":1756619642220,"y":43.538},{"x":1756619582089,"y":43.088},{"x":1756619521955,"y":41.62},{"x":1756619461651,"y":40.34},{"x":1756619400981,"y":39.174},{"x":1756619340845,"y":37.483},{"x":1756619280744,"y":38.627},{"x":1756619220604,"y":37.574},{"x":1756619160336,"y":38.149},{"x":1756619100258,"y":37.822},{"x":1756619042935,"y":38.214},{"x":1756618982807,"y":47.281},{"x":1756618922686,"y":44.286},{"x":1756618862556,"y":43.954},{"x":1756618802427,"y":53.804},{"x":1756618742296,"y":50.086},{"x":1756618682168,"y":51.246},{"x":1756618622040,"y":50.716},{"x":1756618561907,"y":45.661},{"x":1756618501780,"y":46.31},{"x":1756618441632,"y":45.133},{"x":1756618381501,"y":42.506},{"x":1756618321372,"y":46.074},{"x":1756618261261,"y":42.792},{"x":1756618201136,"y":40.754},{"x":1756618140985,"y":46.166},{"x":1756618080865,"y":39.046},{"x":1756618020742,"y":41.612},{"x":1756617960606,"y":42.778},{"x":1756617900553,"y":51.604},{"x":1756617840370,"y":55.733},{"x":1756617780242,"y":50.816},{"x":1756617722951,"y":49.489},{"x":1756617662770,"y":49.729},{"x":1756617602642,"y":46.368},{"x":1756617542509,"y":46.159},{"x":1756617482377,"y":41.474},{"x":1756617422249,"y":43.645},{"x":1756617362118,"y":37.766},{"x":1756617301989,"y":42.058},{"x":1756617241859,"y":44.843},{"x":1756617181728,"y":41.322},{"x":1756617121559,"y":43.543},{"x":1756617061441,"y":47.896},{"x":1756617001242,"y":47.096},{"x":1756616941098,"y":51.966},{"x":1756616880591,"y":63.869},{"x":1756616820460,"y":69.394},{"x":1756616760336,"y":105.458},{"x":1756616700246,"y":107.246},{"x":1756616642891,"y":105.875},{"x":1756616582767,"y":28.112},{"x":1756616522638,"y":38.405},{"x":1756616462516,"y":52.316},{"x":1756616401484,"y":49.736},{"x":1756616340903,"y":51.737},{"x":1756616280782,"y":71.269},{"x":1756616220659,"y":68.353},{"x":1756616160544,"y":54.038},{"x":1756616100417,"y":52.555},{"x":1756616040337,"y":47.123},{"x":1756615982974,"y":34.152},{"x":1756615922848,"y":27.982},{"x":1756615862706,"y":27.667},{"x":1756615802587,"y":28.002},{"x":1756615742454,"y":30.21},{"x":1756615682326,"y":36.394},{"x":1756615622194,"y":32.474},{"x":1756615562071,"y":30.95},{"x":1756615501926,"y":31.922},{"x":1756615441796,"y":30.119},{"x":1756615381667,"y":36.007},{"x":1756615321545,"y":30.167},{"x":1756615261408,"y":27.656},{"x":1756615200905,"y":27.461},{"x":1756615140714,"y":27.709},{"x":1756615080581,"y":34.162},{"x":1756615020469,"y":33.354},{"x":1756614962971,"y":32.234},{"x":1756614902840,"y":30.262},{"x":1756614842716,"y":30.792},{"x":1756614782586,"y":29.011},{"x":1756614722453,"y":31.69},{"x":1756614662329,"y":30.769},{"x":1756614602207,"y":31.444},{"x":1756614542069,"y":31.032},{"x":1756614481934,"y":31.3},{"x":1756614421797,"y":31.931},{"x":1756614361672,"y":30.728},{"x":1756614301471,"y":30.101},{"x":1756614241334,"y":29.687},{"x":1756614181206,"y":31.974},{"x":1756614121074,"y":29.461},{"x":1756614060637,"y":36.125},{"x":1756614000561,"y":34.064},{"x":1756613940416,"y":32.59},{"x":1756613880298,"y":32.584},{"x":1756613822946,"y":29.741},{"x":1756613762452,"y":36.64},{"x":1756613702357,"y":31.448},{"x":1756613642198,"y":33.011},{"x":1756613582029,"y":36.089},{"x":1756613521883,"y":30.089},{"x":1756613461702,"y":32.418},{"x":1756613402323,"y":31.067},{"x":1756613342201,"y":30.726},{"x":1756613282614,"y":29.333},{"x":1756613222495,"y":31.848},{"x":1756613161709,"y":47.002},{"x":1756613101566,"y":34.074},{"x":1756613041440,"y":34.062},{"x":1756612981315,"y":36.083},{"x":1756612921181,"y":32.693},{"x":1756612864062,"y":31.95},{"x":1756612802228,"y":28.771},{"x":1756612741841,"y":28.777},{"x":1756612681715,"y":27.552},{"x":1756612621564,"y":28.738},{"x":1756612561437,"y":28.75},{"x":1756612500817,"y":35.218},{"x":1756612440664,"y":34.655},{"x":1756612380523,"y":36.721},{"x":1756612320450,"y":35.327},{"x":1756612260270,"y":30.494},{"x":1756612200328,"y":34.568},{"x":1756612142902,"y":27.991},{"x":1756612082769,"y":29.474},{"x":1756612022637,"y":30.167},{"x":1756611962511,"y":28.811},{"x":1756611902389,"y":47.316},{"x":1756611842251,"y":46.129},{"x":1756611782135,"y":43.88},{"x":1756611721989,"y":46.502},{"x":1756611661893,"y":45.296},{"x":1756611601748,"y":48.329},{"x":1756611541596,"y":41.942},{"x":1756611481470,"y":40.687},{"x":1756611421364,"y":39.208},{"x":1756611362915,"y":41.456},{"x":1756611302792,"y":44.291},{"x":1756611242660,"y":44.119},{"x":1756611182528,"y":48.797},{"x":1756611122399,"y":53.351},{"x":1756611062279,"y":43.322},{"x":1756611002169,"y":38.666},{"x":1756610942017,"y":42.103},{"x":1756610881872,"y":39.702},{"x":1756610821729,"y":43.482},{"x":1756610761514,"y":39.751},{"x":1756610701256,"y":37.603},{"x":1756610641121,"y":43.374},{"x":1756610580996,"y":40.776},{"x":1756610520858,"y":41.887},{"x":1756610460727,"y":43.217},{"x":1756610400682,"y":40.864},{"x":1756610340482,"y":39.896},{"x":1756610280495,"y":40.392},{"x":1756610222982,"y":44.359},{"x":1756610162431,"y":42.768},{"x":1756610102303,"y":44.116},{"x":1756610042152,"y":47.563},{"x":1756609982010,"y":46.28},{"x":1756609921873,"y":41.237},{"x":1756609861568,"y":45.077},{"x":1756609800615,"y":46.13},{"x":1756609740444,"y":42.491},{"x":1756609681285,"y":39.226},{"x":1756609621166,"y":39.744},{"x":1756609562818,"y":39.572},{"x":1756609502693,"y":39.941},{"x":1756609451620,"y":39.934},{"x":1756609445619,"y":42.434},{"x":1756609437283,"y":40.403},{"x":1756609142873,"y":42.97},{"x":1756609082745,"y":42.875},{"x":1756609022611,"y":39.772},{"x":1756608962481,"y":41.956},{"x":1756608902351,"y":42.481},{"x":1756608842226,"y":40.77},{"x":1756608782108,"y":39.322},{"x":1756608721960,"y":38.671},{"x":1756608661683,"y":46.745},{"x":1756608601003,"y":44.402},{"x":1756608540862,"y":46.554},{"x":1756608480763,"y":46.302},{"x":1756608420618,"y":46.57},{"x":1756608360506,"y":46.051},{"x":1756608300466,"y":50.94},{"x":1756608240349,"y":60.169},{"x":1756608182928,"y":82.715},{"x":1756608122804,"y":142.181},{"x":1756608062680,"y":146.736},{"x":1756608002543,"y":32.63},{"x":1756607942425,"y":36.026},{"x":1756607882297,"y":33.78},{"x":1756607822184,"y":34.142},{"x":1756607762050,"y":32.24},{"x":1756607701911,"y":29.993},{"x":1756607641802,"y":29.659},{"x":1756607581682,"y":29.003},{"x":1756607521529,"y":28.79},{"x":1756607461413,"y":29.681},{"x":1756607401274,"y":29.728},{"x":1756607341120,"y":31.933},{"x":1756607280958,"y":30.406},{"x":1756607220828,"y":31.919},{"x":1756607160696,"y":33.89},{"x":1756607100663,"y":35.326},{"x":1756607040513,"y":32.512},{"x":1756606980269,"y":34.428},{"x":1756606922988,"y":30.023},{"x":1756606862847,"y":29.45},{"x":1756606802722,"y":29.34},{"x":1756606742586,"y":27.647},{"x":1756606682468,"y":29.76},{"x":1756606622342,"y":30.284},{"x":1756606562210,"y":32.232},{"x":1756606502071,"y":30.607},{"x":1756606441937,"y":33.582},{"x":1756606381791,"y":31.62},{"x":1756606321623,"y":32.37},{"x":1756606261463,"y":42.322},{"x":1756606201133,"y":37.637},{"x":1756606140976,"y":35.894},{"x":1756606080860,"y":35.068},{"x":1756606020726,"y":35.983},{"x":1756605960605,"y":33.695},{"x":1756605900465,"y":35.701},{"x":1756605840349,"y":32.548},{"x":1756605780285,"y":31.999},{"x":1756605722907,"y":29.79},{"x":1756605662791,"y":34.242},{"x":1756605601115,"y":33.907},{"x":1756605540244,"y":32.501},{"x":1756605482941,"y":31.448},{"x":1756605422801,"y":33.094},{"x":1756605362663,"y":32.884},{"x":1756605302545,"y":29.699},{"x":1756605242417,"y":30.938},{"x":1756605182281,"y":31.271},{"x":1756605122124,"y":29.423},{"x":1756605061977,"y":30.677},{"x":1756605001845,"y":30.776},{"x":1756604941711,"y":32.182},{"x":1756604881578,"y":34.616},{"x":1756604821485,"y":36.264},{"x":1756604761311,"y":52.207},{"x":1756604701325,"y":36.913},{"x":1756604640967,"y":34.487},{"x":1756604580836,"y":33.024},{"x":1756604520724,"y":30.245},{"x":1756604460593,"y":29.359},{"x":1756604400582,"y":29.128},{"x":1756604340452,"y":30.68},{"x":1756604280298,"y":36.577},{"x":1756604222923,"y":37.571},{"x":1756604162791,"y":35.406},{"x":1756604102654,"y":35.344},{"x":1756604042535,"y":36.656},{"x":1756603982397,"y":33.179},{"x":1756603922264,"y":30.599},{"x":1756603862136,"y":29.95},{"x":1756603801992,"y":30.137},{"x":1756603741851,"y":32.238},{"x":1756603681727,"y":32.216},{"x":1756603621593,"y":34.076},{"x":1756603561476,"y":35.677},{"x":1756603500912,"y":32.456},{"x":1756603440783,"y":36.043},{"x":1756603380667,"y":33.53},{"x":1756603320558,"y":45.617},{"x":1756603260460,"y":46.601},{"x":1756603200296,"y":43.886},{"x":1756603142987,"y":43.238},{"x":1756603082856,"y":44.701},{"x":1756603022726,"y":41.203},{"x":1756602962366,"y":46.817},{"x":1756602902254,"y":44.408},{"x":1756602842086,"y":43.705},{"x":1756602781956,"y":47.014},{"x":1756602721807,"y":46.709},{"x":1756602661561,"y":48.056},{"x":1756602600724,"y":45.02},{"x":1756602540513,"y":43.499},{"x":1756602482980,"y":48.194},{"x":1756602422838,"y":46.921},{"x":1756602362722,"y":48.458},{"x":1756602302572,"y":47.058},{"x":1756602242440,"y":46.158},{"x":1756602182317,"y":45.63},{"x":1756602122190,"y":43.991},{"x":1756602002188,"y":43.013},{"x":1756601941834,"y":46.877},{"x":1756601881686,"y":46.442},{"x":1756601821554,"y":46.898},{"x":1756601761421,"y":45.912},{"x":1756601700743,"y":49.193},{"x":1756601640630,"y":50.591},{"x":1756601580478,"y":44.611},{"x":1756601520324,"y":46.643},{"x":1756601460271,"y":45.139},{"x":1756601402904,"y":47.431},{"x":1756601342797,"y":42.805},{"x":1756601282648,"y":45.853},{"x":1756601222507,"y":45.928},{"x":1756601162398,"y":46.865},{"x":1756601102258,"y":44.732},{"x":1756601042112,"y":42.353},{"x":1756600981968,"y":46.801},{"x":1756600921843,"y":51.404},{"x":1756600861715,"y":43.148},{"x":1756600801579,"y":66.697},{"x":1756600741442,"y":65.952},{"x":1756600681307,"y":63.619},{"x":1756600621185,"y":62.611},{"x":1756600561043,"y":56.735},{"x":1756600500912,"y":49.568},{"x":1756600440768,"y":46.644},{"x":1756600380646,"y":46.476},{"x":1756600320562,"y":50.518},{"x":1756600260454,"y":48.546},{"x":1756600200260,"y":42.562},{"x":1756600142988,"y":41.233},{"x":1756600082862,"y":47.192},{"x":1756600022711,"y":49.628},{"x":1756599962582,"y":51.091},{"x":1756599902437,"y":47.204},{"x":1756599842308,"y":44.816},{"x":1756599782183,"y":64.241},{"x":1756599722062,"y":49.356},{"x":1756599661297,"y":54.696},{"x":1756599601196,"y":61.805},{"x":1756599541022,"y":80.794},{"x":1756599480890,"y":115.788},{"x":1756599420756,"y":143.458},{"x":1756599360636,"y":37.057},{"x":1756599300601,"y":36.703},{"x":1756599240370,"y":51.539},{"x":1756599182964,"y":35.818},{"x":1756599122818,"y":35.569},{"x":1756599062639,"y":38.928},{"x":1756599002487,"y":35.711},{"x":1756598942323,"y":36.404},{"x":1756598882191,"y":52.906},{"x":1756598822069,"y":48.211},{"x":1756598761443,"y":49.421},{"x":1756598701250,"y":48.984},{"x":1756598641109,"y":48.38},{"x":1756598580955,"y":44.92},{"x":1756598520818,"y":32.028},{"x":1756598463704,"y":30.666},{"x":1756598400477,"y":34.996},{"x":1756598342940,"y":34.916},{"x":1756598282829,"y":35.429},{"x":1756598222680,"y":32.84},{"x":1756598162469,"y":41.232},{"x":1756598102330,"y":40.039},{"x":1756598042200,"y":38.909},{"x":1756597982067,"y":35.922},{"x":1756597921932,"y":38.614},{"x":1756597861560,"y":35.052},{"x":1756597801318,"y":39.43},{"x":1756597741186,"y":41.43},{"x":1756597681053,"y":35.476},{"x":1756597620923,"y":35.365},{"x":1756597560805,"y":35.962},{"x":1756597500707,"y":33.902},{"x":1756597440536,"y":35.59},{"x":1756597380410,"y":47.305},{"x":1756597320246,"y":34.9},{"x":1756597262982,"y":35.568},{"x":1756597202821,"y":33.211},{"x":1756597142663,"y":56.941},{"x":1756597082543,"y":39.182},{"x":1756597022409,"y":58.51},{"x":1756596961965,"y":45.27},{"x":1756596901818,"y":40.498},{"x":1756596841707,"y":35.64},{"x":1756596781529,"y":50.395},{"x":1756596721404,"y":40.619},{"x":1756596661261,"y":33.872},{"x":1756596601168,"y":37.376},{"x":1756596540977,"y":35.227},{"x":1756596480872,"y":54.467},{"x":1756596420724,"y":36.046},{"x":1756596360594,"y":36.856},{"x":1756596300524,"y":34.375},{"x":1756596240342,"y":35.755},{"x":1756596180119,"y":36.001},{"x":1756596122929,"y":42.257},{"x":1756596062767,"y":35.873},{"x":1756596002643,"y":43.984},{"x":1756595942504,"y":48.937},{"x":1756595882372,"y":49.669},{"x":1756595822253,"y":43.73},{"x":1756595762136,"y":46.094},{"x":1756595701993,"y":53.653},{"x":1756595641868,"y":36.444},{"x":1756595581713,"y":35.57},{"x":1756595521550,"y":44.669},{"x":1756595461403,"y":37.433},{"x":1756595401122,"y":45.682},{"x":1756595340966,"y":36.5},{"x":1756595280842,"y":37.207},{"x":1756595220717,"y":53.999},{"x":1756595160589,"y":37.831},{"x":1756595100476,"y":55.477},{"x":1756595040358,"y":62.005},{"x":1756594983018,"y":78.506},{"x":1756594922920,"y":62.047},{"x":1756594862757,"y":47.357},{"x":1756594800520,"y":50.538},{"x":1756594742932,"y":61.948},{"x":1756594682817,"y":61.441},{"x":1756594622689,"y":60.496},{"x":1756594562542,"y":61.858},{"x":1756594502413,"y":68.821},{"x":1756594442285,"y":55.739},{"x":1756594382167,"y":51.296},{"x":1756594322040,"y":57.364},{"x":1756594261677,"y":49.319},{"x":1756594201033,"y":48.814},{"x":1756594140870,"y":48.402},{"x":1756594080754,"y":54.416},{"x":1756594020618,"y":55.91},{"x":1756593960570,"y":53.876},{"x":1756593900458,"y":59.695},{"x":1756593840295,"y":54.14},{"x":1756593782903,"y":78.318},{"x":1756593722769,"y":61.772},{"x":1756593662649,"y":60.764},{"x":1756593602526,"y":53.572},{"x":1756593542383,"y":53.462},{"x":1756593482254,"y":56.382},{"x":1756593422134,"y":55.572},{"x":1756593361999,"y":55.05},{"x":1756593301901,"y":54.08},{"x":1756593241739,"y":49.063},{"x":1756593181607,"y":56.129},{"x":1756593121478,"y":51.406},{"x":1756593061351,"y":43.319},{"x":1756593001236,"y":45.58},{"x":1756592941104,"y":47.672},{"x":1756592880959,"y":49.224},{"x":1756592820819,"y":44.605},{"x":1756592760695,"y":40.75},{"x":1756592700603,"y":41.647},{"x":1756592640467,"y":40.5},{"x":1756592580246,"y":46.03},{"x":1756592522959,"y":48.626},{"x":1756592462832,"y":50.233},{"x":1756592402708,"y":60.131},{"x":1756592342551,"y":63.142},{"x":1756592282418,"y":69.17},{"x":1756592222288,"y":54.943},{"x":1756592162157,"y":61.975},{"x":1756592102034,"y":39.174},{"x":1756592041915,"y":40.561},{"x":1756591981761,"y":46.964},{"x":1756591921610,"y":42.046},{"x":1756591861466,"y":49.504},{"x":1756591800843,"y":43.297},{"x":1756591740694,"y":51.324},{"x":1756591680600,"y":42.738},{"x":1756591620464,"y":41.958},{"x":1756591560308,"y":39.44},{"x":1756591502969,"y":41.984},{"x":1756591442838,"y":41.153},{"x":1756591382706,"y":46.37},{"x":1756591322582,"y":44.286},{"x":1756591262457,"y":42.234},{"x":1756591200315,"y":44.722},{"x":1756591140047,"y":47.935},{"x":1756591082878,"y":46.217},{"x":1756591022758,"y":44.144},{"x":1756590962643,"y":43.67},{"x":1756590902491,"y":43.697},{"x":1756590842358,"y":67.177},{"x":1756590782236,"y":57.215},{"x":1756590722091,"y":46.636},{"x":1756590661951,"y":46.878},{"x":1756590601823,"y":44.752},{"x":1756590541698,"y":44.93},{"x":1756590481565,"y":49.42},{"x":1756590421428,"y":49.997},{"x":1756590361296,"y":46.878},{"x":1756590301156,"y":44.878},{"x":1756590240999,"y":42.779},{"x":1756590180844,"y":52.061},{"x":1756590120738,"y":42.474},{"x":1756590060581,"y":45.323},{"x":1756590000616,"y":47.395},{"x":1756589940437,"y":47.086},{"x":1756589880143,"y":51.642},{"x":1756589822914,"y":49.067},{"x":1756589762675,"y":60.662},{"x":1756589702545,"y":42.727},{"x":1756589642417,"y":41.542},{"x":1756589582283,"y":48.299},{"x":1756589522145,"y":56.579},{"x":1756589461985,"y":44.168},{"x":1756589401901,"y":43.916},{"x":1756589341716,"y":42.42},{"x":1756589281581,"y":44.119},{"x":1756589221446,"y":39.721},{"x":1756589161318,"y":40.063},{"x":1756589100901,"y":44.274},{"x":1756589040743,"y":48.418},{"x":1756588980611,"y":46.26},{"x":1756588920526,"y":43.7},{"x":1756588860398,"y":49.378},{"x":1756588800216,"y":47.18},{"x":1756588742974,"y":44.994},{"x":1756588682848,"y":45.773},{"x":1756588622721,"y":53.65},{"x":1756588562407,"y":52.853},{"x":1756588502266,"y":54.924},{"x":1756588442160,"y":57.655},{"x":1756588381994,"y":59.358},{"x":1756588321836,"y":60.88},{"x":1756588261658,"y":48.481},{"x":1756588201494,"y":49.079},{"x":1756588141370,"y":47.91},{"x":1756588081239,"y":43.224},{"x":1756588021116,"y":56.684},{"x":1756587960973,"y":55.207},{"x":1756587900854,"y":55.274},{"x":1756587840735,"y":49.516},{"x":1756587780677,"y":47.747},{"x":1756587720392,"y":53.015},{"x":1756587662990,"y":52.205},{"x":1756587601682,"y":62.388},{"x":1756587541080,"y":64.192},{"x":1756587480948,"y":62.468},{"x":1756587420802,"y":56.549},{"x":1756587360709,"y":45.263},{"x":1756587300594,"y":55.849},{"x":1756587240524,"y":45.438},{"x":1756587180275,"y":56.42},{"x":1756587122939,"y":45.163},{"x":1756587062813,"y":42.053},{"x":1756587002696,"y":47.87},{"x":1756586942570,"y":44.519},{"x":1756586882461,"y":39.27},{"x":1756586822319,"y":43.634},{"x":1756586762195,"y":41.572},{"x":1756586702080,"y":50.436},{"x":1756586641943,"y":47.875},{"x":1756586581819,"y":49.046},{"x":1756586521672,"y":46.289},{"x":1756586461531,"y":51.51},{"x":1756586401408,"y":48.954},{"x":1756586341286,"y":50.842},{"x":1756586281158,"y":46.837},{"x":1756586221008,"y":48.864},{"x":1756586160894,"y":44.77},{"x":1756586100799,"y":48.454},{"x":1756586040653,"y":49.132},{"x":1756585980501,"y":49.399},{"x":1756585920457,"y":46.446},{"x":1756585860242,"y":46.241},{"x":1756585802900,"y":61.849},{"x":1756585742776,"y":62.95},{"x":1756585682670,"y":69.74},{"x":1756585622528,"y":83.864},{"x":1756585562402,"y":104.022},{"x":1756585502187,"y":142.237},{"x":1756585442052,"y":145.219},{"x":1756585381913,"y":36.119},{"x":1756585321779,"y":36.136},{"x":1756585261210,"y":35.622},{"x":1756585201093,"y":35.212},{"x":1756585140948,"y":47.714},{"x":1756585080803,"y":42.316},{"x":1756585020678,"y":40.404},{"x":1756584960554,"y":40.206},{"x":1756584900460,"y":43.194},{"x":1756584840265,"y":45.548},{"x":1756584782988,"y":38.099},{"x":1756584722840,"y":50.003},{"x":1756584662658,"y":47.462},{"x":1756584602508,"y":32.687},{"x":1756584542379,"y":34.811},{"x":1756584482241,"y":39.445},{"x":1756584422121,"y":39.486},{"x":1756584361975,"y":40.582},{"x":1756584301843,"y":34.772},{"x":1756584241711,"y":39.996},{"x":1756584181574,"y":39.527},{"x":1756584121436,"y":33.778},{"x":1756584061377,"y":44.91},{"x":1756584001290,"y":37.943},{"x":1756583941008,"y":43.344},{"x":1756583880884,"y":36.734},{"x":1756583820732,"y":31.996},{"x":1756583760625,"y":35.202},{"x":1756583700541,"y":57.07},{"x":1756583640346,"y":32.111},{"x":1756583580278,"y":35.136},{"x":1756583522955,"y":32.587},{"x":1756583462841,"y":33.215},{"x":1756583402684,"y":38.741},{"x":1756583342561,"y":34.566},{"x":1756583282409,"y":37.196},{"x":1756583222278,"y":36.025},{"x":1756583162128,"y":33.094},{"x":1756583101966,"y":30.492},{"x":1756583041834,"y":30.414},{"x":1756582981711,"y":57.598},{"x":1756582921587,"y":56.894},{"x":1756582861463,"y":58.732},{"x":1756582801330,"y":57.908},{"x":1756582741183,"y":48.257},{"x":1756582681057,"y":31.47},{"x":1756582620901,"y":33.343},{"x":1756582560807,"y":32.778},{"x":1756582500642,"y":34.83},{"x":1756582440490,"y":34.663},{"x":1756582380461,"y":34.453},{"x":1756582320327,"y":36.127},{"x":1756582262998,"y":33.437},{"x":1756582202873,"y":33.096},{"x":1756582142731,"y":43.481},{"x":1756582082601,"y":41.921},{"x":1756582022475,"y":61.986},{"x":1756581962352,"y":45.496},{"x":1756581902228,"y":43.265},{"x":1756581842091,"y":36.095},{"x":1756581781933,"y":39.464},{"x":1756581721790,"y":40.729},{"x":1756581661139,"y":40.902},{"x":1756581600989,"y":37.253},{"x":1756581540862,"y":35.897},{"x":1756581480737,"y":34.902},{"x":1756581420655,"y":33.918},{"x":1756581360471,"y":30.298},{"x":1756581300391,"y":45.233},{"x":1756581240362,"y":41.816},{"x":1756581182916,"y":44.784},{"x":1756581122751,"y":49.408},{"x":1756581062575,"y":61.427},{"x":1756581002413,"y":48.229},{"x":1756580942278,"y":48.508},{"x":1756580882158,"y":50.6},{"x":1756580821999,"y":48.17},{"x":1756580761653,"y":44.958},{"x":1756580701465,"y":40.301},{"x":1756580641341,"y":54.352},{"x":1756580581210,"y":55.507},{"x":1756580521086,"y":57.602},{"x":1756580460946,"y":61.184},{"x":1756580401463,"y":58.558},{"x":1756580341097,"y":50.513},{"x":1756580280972,"y":49.468},{"x":1756580220824,"y":45.653},{"x":1756580160702,"y":45.626},{"x":1756580100649,"y":46.57},{"x":1756580040438,"y":46.916},{"x":1756579980378,"y":46.981},{"x":1756579920220,"y":46.456},{"x":1756579862935,"y":49.762},{"x":1756579802782,"y":59.87},{"x":1756579742661,"y":52.841},{"x":1756579682538,"y":60.413},{"x":1756579622396,"y":52.4},{"x":1756579562260,"y":53.659},{"x":1756579502131,"y":45.014},{"x":1756579441981,"y":64.314},{"x":1756579381845,"y":52.273},{"x":1756579321680,"y":47.195},{"x":1756579261559,"y":54.864},{"x":1756579201421,"y":57.059},{"x":1756579141292,"y":55.834},{"x":1756579081161,"y":55.673},{"x":1756579021023,"y":64.177},{"x":1756578960895,"y":51.766},{"x":1756578900776,"y":59.704},{"x":1756578840641,"y":58.867},{"x":1756578780530,"y":55.925},{"x":1756578720464,"y":60.487},{"x":1756578660332,"y":56.519},{"x":1756578602984,"y":58.015},{"x":1756578542836,"y":57.7},{"x":1756578482718,"y":70.984},{"x":1756578422603,"y":77.669},{"x":1756578362463,"y":81.518},{"x":1756578302334,"y":69.352},{"x":1756578242204,"y":70.165},{"x":1756578182081,"y":59.286},{"x":1756578121957,"y":51.796},{"x":1756578061260,"y":65.158},{"x":1756578001114,"y":49.196},{"x":1756577940969,"y":48.238},{"x":1756577880823,"y":47.334},{"x":1756577820717,"y":52.094},{"x":1756577760569,"y":55.867},{"x":1756577700447,"y":49.988},{"x":1756577640301,"y":62.128},{"x":1756577582915,"y":58.884},{"x":1756577522659,"y":60.074},{"x":1756577462480,"y":61.322},{"x":1756577402340,"y":59.431},{"x":1756577342187,"y":48.33},{"x":1756577282068,"y":47.773},{"x":1756577221936,"y":47.497},{"x":1756577161557,"y":42.139},{"x":1756577101486,"y":44.958},{"x":1756577041296,"y":55.052},{"x":1756576981171,"y":51.548},{"x":1756576921046,"y":55.576},{"x":1756576860899,"y":55.058},{"x":1756576800643,"y":55.686},{"x":1756576740383,"y":53.443},{"x":1756576680296,"y":43.399},{"x":1756576622946,"y":52.469},{"x":1756576562709,"y":49.151},{"x":1756576502574,"y":49.752},{"x":1756576442414,"y":52.284},{"x":1756576382273,"y":49.619},{"x":1756576322143,"y":45.593},{"x":1756576262028,"y":50.281},{"x":1756576201854,"y":49.19},{"x":1756576141733,"y":46.026},{"x":1756576081607,"y":58.304},{"x":1756576021448,"y":55.447},{"x":1756575961324,"y":59.605},{"x":1756575901222,"y":50.231},{"x":1756575841073,"y":47.95},{"x":1756575780922,"y":47.92},{"x":1756575720789,"y":46.723},{"x":1756575660668,"y":44.731},{"x":1756575600589,"y":55.639},{"x":1756575540448,"y":43.951},{"x":1756575480275,"y":42.677},{"x":1756575422951,"y":42.767},{"x":1756575362823,"y":45.452},{"x":1756575302688,"y":45.54},{"x":1756575242565,"y":52.862},{"x":1756575182446,"y":51.23},{"x":1756575122321,"y":50.562},{"x":1756575062193,"y":49.877},{"x":1756575002073,"y":45.572},{"x":1756574941913,"y":59.472},{"x":1756574881793,"y":73.493},{"x":1756574821669,"y":75.641},{"x":1756574761556,"y":74.95},{"x":1756574701432,"y":77.57},{"x":1756574641297,"y":57.388},{"x":1756574581168,"y":56.306},{"x":1756574521033,"y":55.31},{"x":1756574460908,"y":57.162},{"x":1756574400820,"y":51.588},{"x":1756574340638,"y":59.914},{"x":1756574280515,"y":68.218},{"x":1756574220402,"y":65.212},{"x":1756574160058,"y":67.693},{"x":1756574102914,"y":72.482},{"x":1756574042778,"y":65.657},{"x":1756573982630,"y":66.257},{"x":1756573922467,"y":73.86},{"x":1756573862306,"y":68.044},{"x":1756573802162,"y":59.563},{"x":1756573742036,"y":64.212},{"x":1756573681907,"y":61.172},{"x":1756573621791,"y":79.522},{"x":1756573561642,"y":73.626},{"x":1756573501519,"y":68.852},{"x":1756573441383,"y":70.636},{"x":1756573381238,"y":81.068},{"x":1756573321110,"y":80.88},{"x":1756573260973,"y":74.087},{"x":1756573201559,"y":61.036},{"x":1756573140910,"y":63.085},{"x":1756573080777,"y":67.267},{"x":1756573020660,"y":68.562},{"x":1756572960574,"y":63.782},{"x":1756572900348,"y":58.907},{"x":1756572840218,"y":57.029},{"x":1756572782949,"y":56.704},{"x":1756572722822,"y":56.018},{"x":1756572662702,"y":52.151},{"x":1756572602579,"y":55.775},{"x":1756572542462,"y":55.343},{"x":1756572482336,"y":52.93},{"x":1756572422218,"y":57.436},{"x":1756572362094,"y":55.256},{"x":1756572301942,"y":56.089},{"x":1756572241816,"y":63.472},{"x":1756572181673,"y":65.657},{"x":1756572121555,"y":61.714},{"x":1756572061417,"y":62.132},{"x":1756572000855,"y":54.727},{"x":1756571940618,"y":55.298},{"x":1756571880522,"y":51.764},{"x":1756571820345,"y":54.883},{"x":1756571760254,"y":56.676},{"x":1756571702931,"y":62.393},{"x":1756571642816,"y":56.659},{"x":1756571582688,"y":57.468},{"x":1756571522571,"y":62.341},{"x":1756571462424,"y":62.326},{"x":1756571402291,"y":59.461},{"x":1756571342162,"y":65.202},{"x":1756571282040,"y":60.023},{"x":1756571221899,"y":52.308},{"x":1756571161775,"y":62.399},{"x":1756571101657,"y":62.339},{"x":1756571041512,"y":59.424},{"x":1756570981423,"y":70.394},{"x":1756570921269,"y":82.93},{"x":1756570861122,"y":77.585},{"x":1756570801011,"y":86.828},{"x":1756570740869,"y":67.886},{"x":1756570680740,"y":69.082},{"x":1756570620638,"y":61.853},{"x":1756570560506,"y":65.894},{"x":1756570500321,"y":67.811},{"x":1756570440288,"y":61.346},{"x":1756570382924,"y":64.396},{"x":1756570322780,"y":59.449},{"x":1756570262635,"y":75.443},{"x":1756570202470,"y":59.959},{"x":1756570142327,"y":62.902},{"x":1756570082215,"y":66.898},{"x":1756570022079,"y":64.733},{"x":1756569961594,"y":62.372},{"x":1756569901464,"y":59.844},{"x":1756569841324,"y":55.891},{"x":1756569781198,"y":55.616},{"x":1756569721071,"y":51.821},{"x":1756569660932,"y":53.557},{"x":1756569602334,"y":47.731},{"x":1756569541927,"y":61.447},{"x":1756569481792,"y":62.033},{"x":1756569421662,"y":55.108},{"x":1756569361533,"y":50.807},{"x":1756569300787,"y":45.85},{"x":1756569240623,"y":58.958},{"x":1756569180536,"y":59.388},{"x":1756569120408,"y":57.961},{"x":1756569060252,"y":54.826},{"x":1756569002934,"y":55.46},{"x":1756568942798,"y":42.434},{"x":1756568882671,"y":40.739},{"x":1756568822555,"y":38.815},{"x":1756568762433,"y":48.466},{"x":1756568702309,"y":47.405},{"x":1756568642203,"y":61.686},{"x":1756568582042,"y":60.35},{"x":1756568521871,"y":56.892},{"x":1756568461750,"y":56.344},{"x":1756568401638,"y":51.012},{"x":1756568341494,"y":56.069},{"x":1756568281370,"y":43.057},{"x":1756568221239,"y":39.971},{"x":1756568161105,"y":48.224},{"x":1756568100958,"y":44.028},{"x":1756568040823,"y":48.69},{"x":1756567980683,"y":45.638},{"x":1756567920577,"y":56.587},{"x":1756567860393,"y":54.763},{"x":1756567800247,"y":59.899},{"x":1756567742934,"y":54.563},{"x":1756567682805,"y":51.697},{"x":1756567622684,"y":73.166},{"x":1756567562555,"y":58.628},{"x":1756567502423,"y":45.37},{"x":1756567442309,"y":77.326},{"x":1756567382151,"y":143.375},{"x":1756567321991,"y":147.115},{"x":1756567261161,"y":161.117},{"x":1756567201027,"y":29.998},{"x":1756567140874,"y":30.803},{"x":1756567080755,"y":22.607},{"x":1756567020653,"y":27.271},{"x":1756566960538,"y":21.91},{"x":1756566900430,"y":34.702},{"x":1756566842997,"y":36.152},{"x":1756566782846,"y":33.032},{"x":1756566722694,"y":29.921},{"x":1756566662552,"y":28.912},{"x":1756566602375,"y":29.494},{"x":1756566542254,"y":36.538},{"x":1756566482135,"y":32.971},{"x":1756566422018,"y":52.669},{"x":1756566361607,"y":58.804},{"x":1756566301483,"y":67.312},{"x":1756566241356,"y":60.304},{"x":1756566181234,"y":48.852},{"x":1756566121100,"y":36.15},{"x":1756566060961,"y":26.898},{"x":1756566000427,"y":26.93},{"x":1756565942989,"y":28.838},{"x":1756565882867,"y":47.966},{"x":1756565822737,"y":33.398},{"x":1756565762606,"y":30.847},{"x":1756565702480,"y":41.209},{"x":1756565642358,"y":43.732},{"x":1756565582234,"y":42.461},{"x":1756565522104,"y":44.04},{"x":1756565461966,"y":39.755},{"x":1756565401827,"y":30.361},{"x":1756565341696,"y":16.561},{"x":1756565281547,"y":24.223},{"x":1756565221407,"y":23.521},{"x":1756565161285,"y":28.835},{"x":1756565101196,"y":38.478},{"x":1756565041016,"y":37.601},{"x":1756564980888,"y":38.162},{"x":1756564920757,"y":35.868},{"x":1756564860633,"y":35.246},{"x":1756564800535,"y":28.354},{"x":1756564740602,"y":47.786},{"x":1756564680275,"y":40.337},{"x":1756564622885,"y":52.229},{"x":1756564562754,"y":25.589},{"x":1756564502619,"y":34.577},{"x":1756564442483,"y":25.19},{"x":1756564382365,"y":26.838},{"x":1756564322231,"y":30.078},{"x":1756564262091,"y":37.848},{"x":1756564201942,"y":33.29},{"x":1756564141815,"y":32.617},{"x":1756564081688,"y":27.883},{"x":1756564021590,"y":25.345},{"x":1756563961447,"y":25.856},{"x":1756563901021,"y":28.098},{"x":1756563840876,"y":34.85},{"x":1756563780750,"y":29.994},{"x":1756563720627,"y":35.072},{"x":1756563660474,"y":41.04},{"x":1756563600427,"y":30.958},{"x":1756563540173,"y":33.15},{"x":1756563482853,"y":35.515},{"x":1756563422730,"y":41.89},{"x":1756563362556,"y":34.752},{"x":1756563302397,"y":42.905},{"x":1756563242255,"y":23.215},{"x":1756563182133,"y":29.927},{"x":1756563121928,"y":37.91},{"x":1756563061775,"y":34.237},{"x":1756563001644,"y":41.486},{"x":1756562941508,"y":40.309},{"x":1756562881360,"y":60.58},{"x":1756562821185,"y":62.698},{"x":1756562761060,"y":47.41},{"x":1756562700903,"y":54.673},{"x":1756562640767,"y":52.38},{"x":1756562580618,"y":42.517},{"x":1756562520555,"y":38.188},{"x":1756562466356,"y":34.009},{"x":1756562402063,"y":33.763},{"x":1756562341808,"y":37.862},{"x":1756562281687,"y":31.534},{"x":1756562221561,"y":35.959},{"x":1756562161442,"y":26.658},{"x":1756562100663,"y":48.091},{"x":1756562040465,"y":73.229},{"x":1756561980392,"y":64.62},{"x":1756561920290,"y":63.617},{"x":1756561862948,"y":50.906},{"x":1756561802806,"y":52.3},{"x":1756561742682,"y":38.452},{"x":1756561682556,"y":30.793},{"x":1756561622425,"y":22.632},{"x":1756561562289,"y":33.932},{"x":1756561502150,"y":28.267},{"x":1756561441995,"y":34.201},{"x":1756561381898,"y":35.299},{"x":1756561321735,"y":23.8},{"x":1756561261601,"y":41.038},{"x":1756561201482,"y":16.072},{"x":1756561141359,"y":19.22},{"x":1756561081230,"y":32.264},{"x":1756561021117,"y":40.612},{"x":1756560960959,"y":55.114},{"x":1756560900835,"y":34.787},{"x":1756560840707,"y":32.249},{"x":1756560780641,"y":38.845},{"x":1756560720433,"y":21.59},{"x":1756560660279,"y":18.812},{"x":1756560600212,"y":21.038},{"x":1756560542933,"y":31.495},{"x":1756560482816,"y":20.62},{"x":1756560422684,"y":27.901},{"x":1756560362568,"y":39.673},{"x":1756560302431,"y":29.677},{"x":1756560242288,"y":31.536},{"x":1756560182162,"y":30.666},{"x":1756560122035,"y":27.113},{"x":1756560061664,"y":22.831},{"x":1756560001111,"y":33.318},{"x":1756559940952,"y":27.866},{"x":1756559880832,"y":31.985},{"x":1756559820720,"y":39.8},{"x":1756559760656,"y":21.512},{"x":1756559700553,"y":26.596},{"x":1756559640341,"y":20.917},{"x":1756559580055,"y":34.466},{"x":1756559522876,"y":41.939},{"x":1756559462734,"y":40.235},{"x":1756559402581,"y":44.792},{"x":1756559342461,"y":41.908},{"x":1756559282325,"y":21.726},{"x":1756559222203,"y":19.163},{"x":1756559161760,"y":35.682},{"x":1756559101635,"y":27.011},{"x":1756559041506,"y":23.792},{"x":1756558981366,"y":22.055},{"x":1756558921220,"y":21.846},{"x":1756558861090,"y":18.374},{"x":1756558802091,"y":23.044},{"x":1756558741855,"y":18.654},{"x":1756558681719,"y":19.388},{"x":1756558621592,"y":35.209},{"x":1756558561458,"y":32.088},{"x":1756558500652,"y":35.604},{"x":1756558440494,"y":51.215},{"x":1756558380302,"y":40.688},{"x":1756558323019,"y":43.346},{"x":1756558262872,"y":35.528},{"x":1756558202808,"y":29.176},{"x":1756558142617,"y":18.652},{"x":1756558082484,"y":22.946},{"x":1756558022361,"y":40.883},{"x":1756557962229,"y":41.225},{"x":1756557902074,"y":24.047},{"x":1756557841940,"y":24.26},{"x":1756557781816,"y":29.287},{"x":1756557721694,"y":42.918},{"x":1756557661558,"y":35.863},{"x":1756557601431,"y":34.048},{"x":1756557541302,"y":33.994},{"x":1756557481153,"y":28.924},{"x":1756557421006,"y":32.118},{"x":1756557360897,"y":47.434},{"x":1756557300773,"y":35.533},{"x":1756557240656,"y":50.5},{"x":1756557180523,"y":22.76},{"x":1756557120474,"y":25.436},{"x":1756557060345,"y":49.588},{"x":1756557002999,"y":37.351},{"x":1756556942879,"y":57.704},{"x":1756556882772,"y":36.571},{"x":1756556822634,"y":57.329},{"x":1756556762518,"y":75.407},{"x":1756556702396,"y":58.626},{"x":1756556642271,"y":60.514},{"x":1756556582153,"y":22.669},{"x":1756556521990,"y":24.532},{"x":1756556461196,"y":18.364},{"x":1756556401073,"y":34.055},{"x":1756556340891,"y":29.982},{"x":1756556280767,"y":29.033},{"x":1756556220683,"y":29.874},{"x":1756556160523,"y":51.719},{"x":1756556100377,"y":54.311},{"x":1756556040180,"y":45.436},{"x":1756555982929,"y":50.524},{"x":1756555922791,"y":39.457},{"x":1756555862668,"y":49.888},{"x":1756555802492,"y":31.224},{"x":1756555742367,"y":36.032},{"x":1756555682236,"y":28.434},{"x":1756555622115,"y":27.107},{"x":1756555561967,"y":35.699},{"x":1756555501835,"y":55.051},{"x":1756555441699,"y":41.995},{"x":1756555381523,"y":36.971},{"x":1756555321384,"y":60.862},{"x":1756555261268,"y":43.68},{"x":1756555202935,"y":29.296},{"x":1756555142783,"y":40.964},{"x":1756555082650,"y":51.504},{"x":1756555022523,"y":68.678},{"x":1756554962393,"y":18.173},{"x":1756554902272,"y":27.935},{"x":1756554842148,"y":28.988},{"x":1756554782035,"y":57.524},{"x":1756554721890,"y":34.337},{"x":1756554661709,"y":39.808},{"x":1756554600965,"y":39.12},{"x":1756554540821,"y":43.32},{"x":1756554480711,"y":64.4},{"x":1756554420568,"y":61.88},{"x":1756554360430,"y":39.623},{"x":1756554300487,"y":22.972},{"x":1756554242977,"y":20.089},{"x":1756554182847,"y":41.422},{"x":1756554122714,"y":49.632},{"x":1756554062598,"y":28.567},{"x":1756554002484,"y":73.121},{"x":1756553942361,"y":55.76},{"x":1756553882229,"y":67.248},{"x":1756553822102,"y":37.856},{"x":1756553761968,"y":75.088},{"x":1756553701828,"y":49.742},{"x":1756553641703,"y":68.69},{"x":1756553581552,"y":37.67},{"x":1756553521415,"y":42.194},{"x":1756553461282,"y":50.917},{"x":1756553401219,"y":41.221},{"x":1756553341007,"y":42.084},{"x":1756553280879,"y":51.568},{"x":1756553220745,"y":79.241},{"x":1756553160633,"y":56.773},{"x":1756553100458,"y":63.299},{"x":1756553040338,"y":61.86},{"x":1756552982985,"y":58.91},{"x":1756552922855,"y":39.872},{"x":1756552861144,"y":31.392},{"x":1756552801048,"y":21.599},{"x":1756552740844,"y":17.11},{"x":1756552680735,"y":26.579},{"x":1756552620595,"y":22.706},{"x":1756552560475,"y":27.581},{"x":1756552500345,"y":32.173},{"x":1756552440133,"y":26.148},{"x":1756552382895,"y":20.114},{"x":1756552322740,"y":30.067},{"x":1756552262582,"y":36.158},{"x":1756552202395,"y":49.886},{"x":1756552142267,"y":25.747},{"x":1756552082141,"y":30.325},{"x":1756552022009,"y":32.52},{"x":1756551961779,"y":29.082},{"x":1756551901654,"y":25.577},{"x":1756551841525,"y":24.413},{"x":1756551781397,"y":44.642},{"x":1756551721255,"y":25.441},{"x":1756551661127,"y":25.624},{"x":1756551603017,"y":25.003},{"x":1756551542837,"y":22.057},{"x":1756551482720,"y":40.11},{"x":1756551422586,"y":34.888},{"x":1756551362461,"y":29.964},{"x":1756551302339,"y":26.336},{"x":1756551242214,"y":34.278},{"x":1756551182083,"y":30.911},{"x":1756551121956,"y":32.827},{"x":1756551061496,"y":29.996},{"x":1756551000854,"y":41.934},{"x":1756550940718,"y":38.165},{"x":1756550880643,"y":35.866},{"x":1756550820446,"y":19.418},{"x":1756550760337,"y":14.225},{"x":1756550700345,"y":27.997},{"x":1756550642913,"y":23.87},{"x":1756550582774,"y":33.292},{"x":1756550522654,"y":24.941},{"x":1756550462530,"y":21.419},{"x":1756550402424,"y":45.865},{"x":1756550342266,"y":22.705},{"x":1756550282140,"y":21.048},{"x":1756550221987,"y":35.432},{"x":1756550161850,"y":40.322},{"x":1756550101732,"y":38.63},{"x":1756550041605,"y":33.126},{"x":1756549981483,"y":27.612},{"x":1756549921356,"y":21.38},{"x":1756549861229,"y":26.512},{"x":1756549801119,"y":30.914},{"x":1756549740961,"y":51.689},{"x":1756549680833,"y":28.595},{"x":1756549620708,"y":30.512},{"x":1756549560574,"y":28.24},{"x":1756549500532,"y":38.117},{"x":1756549440324,"y":49.559},{"x":1756549383003,"y":39.856},{"x":1756549322875,"y":62.491},{"x":1756549262654,"y":54.978},{"x":1756549202535,"y":55.874},{"x":1756549151415,"y":52.361},{"x":1756549080764,"y":52.459},{"x":1756549020690,"y":41.64},{"x":1756548960494,"y":40.696},{"x":1756548900381,"y":43.186},{"x":1756548840308,"y":42.4},{"x":1756548782949,"y":50.341},{"x":1756548722775,"y":42.044},{"x":1756548662628,"y":52.262},{"x":1756548602486,"y":45.974},{"x":1756548542357,"y":46.568},{"x":1756548482230,"y":44.821},{"x":1756548422102,"y":39.022},{"x":1756548361874,"y":52.505},{"x":1756548301753,"y":53.578},{"x":1756548241622,"y":52.811},{"x":1756548181479,"y":66.893},{"x":1756548121346,"y":51.653},{"x":1756548061219,"y":42.449},{"x":1756548001597,"y":49.48},{"x":1756547941075,"y":37.669},{"x":1756547880940,"y":20.034},{"x":1756547820799,"y":35.216},{"x":1756547760689,"y":26.466},{"x":1756547700613,"y":39.008},{"x":1756547640407,"y":31.782},{"x":1756547580290,"y":32.784},{"x":1756547520111,"y":30.378},{"x":1756547462901,"y":43.36},{"x":1756547402791,"y":41.815},{"x":1756547342656,"y":47.231},{"x":1756547282521,"y":40.53},{"x":1756547222392,"y":38.626},{"x":1756547162272,"y":30.286},{"x":1756547102141,"y":62.136},{"x":1756547041998,"y":44.953},{"x":1756546981867,"y":40.488},{"x":1756546921733,"y":33.93},{"x":1756546861625,"y":46.542},{"x":1756546801480,"y":42.181},{"x":1756546741364,"y":41.692},{"x":1756546681230,"y":48.174},{"x":1756546621106,"y":31.783},{"x":1756546560950,"y":39.851},{"x":1756546500834,"y":31.453},{"x":1756546440682,"y":30.665},{"x":1756546380561,"y":43.864},{"x":1756546320439,"y":51.277},{"x":1756546260263,"y":42.568},{"x":1756546200125,"y":40.376},{"x":1756546142914,"y":52.548},{"x":1756546082775,"y":23.597},{"x":1756546022646,"y":33.604},{"x":1756545962510,"y":38.84},{"x":1756545902376,"y":31.638},{"x":1756545842252,"y":24.488},{"x":1756545782142,"y":44.058},{"x":1756545721978,"y":34.166},{"x":1756545661417,"y":51.227},{"x":1756545601276,"y":47.18},{"x":1756545541097,"y":37.633},{"x":1756545480946,"y":23.538},{"x":1756545420835,"y":44.095},{"x":1756545360770,"y":31.342},{"x":1756545300606,"y":32.659},{"x":1756545240380,"y":27.521},{"x":1756545180413,"y":37.826},{"x":1756545122891,"y":33.064},{"x":1756545062751,"y":43.963},{"x":1756545002604,"y":45.29},{"x":1756544942473,"y":46.772},{"x":1756544882347,"y":44.513},{"x":1756544822213,"y":39.478},{"x":1756544762085,"y":31.259},{"x":1756544701943,"y":36.636},{"x":1756544641815,"y":30.569},{"x":1756544581656,"y":53.398},{"x":1756544521524,"y":56.03},{"x":1756544461399,"y":72.954},{"x":1756544402266,"y":76.292},{"x":1756544341941,"y":63.308},{"x":1756544281819,"y":64.828},{"x":1756544221680,"y":65.434},{"x":1756544161475,"y":82.794},{"x":1756544100734,"y":73.942},{"x":1756544040558,"y":59.227},{"x":1756543980413,"y":88.386},{"x":1756543920262,"y":85.446},{"x":1756543862964,"y":76.518},{"x":1756543802838,"y":71.008},{"x":1756543742706,"y":67.626},{"x":1756543682574,"y":40.337},{"x":1756543622441,"y":37.331},{"x":1756543562328,"y":55.595},{"x":1756543502171,"y":46.098},{"x":1756543442043,"y":60.696},{"x":1756543381909,"y":44.047},{"x":1756543321800,"y":55.716},{"x":1756543261652,"y":51.163},{"x":1756543201527,"y":48.451},{"x":1756543141395,"y":42.88},{"x":1756543081264,"y":43.154},{"x":1756543021131,"y":44.483},{"x":1756542960987,"y":35.074},{"x":1756542900857,"y":32.38},{"x":1756542840723,"y":44.831},{"x":1756542780592,"y":46.536},{"x":1756542720491,"y":41.621},{"x":1756542660328,"y":41.525},{"x":1756542603003,"y":36.584},{"x":1756542542876,"y":59.215},{"x":1756542482764,"y":51.252},{"x":1756542422630,"y":52.163},{"x":1756542362497,"y":56.976},{"x":1756542302363,"y":58.021},{"x":1756542242242,"y":42.764},{"x":1756542182116,"y":48.25},{"x":1756542121975,"y":29.784},{"x":1756542061321,"y":25.738},{"x":1756542001206,"y":24.283},{"x":1756541941057,"y":39.448},{"x":1756541880910,"y":46.526},{"x":1756541820785,"y":41.891},{"x":1756541760658,"y":42.899},{"x":1756541700589,"y":29.932},{"x":1756541640459,"y":45.595},{"x":1756541580229,"y":31.972},{"x":1756541522986,"y":36.866},{"x":1756541462844,"y":36.294},{"x":1756541402690,"y":39.364},{"x":1756541342562,"y":37.259},{"x":1756541282435,"y":35.442},{"x":1756541222311,"y":35.106},{"x":1756541162184,"y":40.885},{"x":1756541102079,"y":40.589},{"x":1756541041890,"y":43.781},{"x":1756540981760,"y":40.075},{"x":1756540921630,"y":34.686},{"x":1756540861499,"y":34.283},{"x":1756540802154,"y":41.072},{"x":1756540741927,"y":41.215},{"x":1756540681782,"y":41.162},{"x":1756540621638,"y":44.233},{"x":1756540561494,"y":39.133},{"x":1756540500709,"y":42.517},{"x":1756540440600,"y":40.796},{"x":1756540380420,"y":41.894},{"x":1756540320355,"y":36.632},{"x":1756540260212,"y":46.844},{"x":1756540202929,"y":37.876},{"x":1756540142791,"y":28.006},{"x":1756540082670,"y":33.545},{"x":1756540022533,"y":35.153},{"x":1756539962401,"y":52.578},{"x":1756539902197,"y":41.592},{"x":1756539842073,"y":41.969},{"x":1756539781930,"y":40.402},{"x":1756539721776,"y":39.988},{"x":1756539661653,"y":28.139},{"x":1756539601537,"y":34.657},{"x":1756539541381,"y":38.786},{"x":1756539481254,"y":40.04},{"x":1756539421120,"y":40.579},{"x":1756539360966,"y":37.748},{"x":1756539300831,"y":57.44},{"x":1756539240709,"y":52.355},{"x":1756539180606,"y":47.538},{"x":1756539120524,"y":47.917},{"x":1756539060402,"y":48.169},{"x":1756539000230,"y":45.253},{"x":1756538942931,"y":47.582},{"x":1756538882810,"y":37.468},{"x":1756538822688,"y":37.574},{"x":1756538762564,"y":36.02},{"x":1756538702438,"y":38.297},{"x":1756538642288,"y":38.606},{"x":1756538582171,"y":36.44},{"x":1756538522031,"y":31.354},{"x":1756538461758,"y":33.344},{"x":1756538401247,"y":33.289},{"x":1756538341113,"y":22.766},{"x":1756538280978,"y":25.703},{"x":1756538220837,"y":28.746},{"x":1756538160720,"y":23.945},{"x":1756538100686,"y":18.581},{"x":1756538040379,"y":24.575},{"x":1756537980262,"y":33.288},{"x":1756537922975,"y":45.096},{"x":1756537862820,"y":43.174},{"x":1756537802643,"y":34.247},{"x":1756537742522,"y":44.28},{"x":1756537682400,"y":49.195},{"x":1756537622275,"y":35.147},{"x":1756537562152,"y":35.693},{"x":1756537502016,"y":39.829},{"x":1756537441879,"y":54.136},{"x":1756537381748,"y":37.882},{"x":1756537321626,"y":31.44},{"x":1756537261488,"y":30.064},{"x":1756537203017,"y":26.963},{"x":1756537142897,"y":27.275},{"x":1756537082735,"y":28.368},{"x":1756537022605,"y":27.648},{"x":1756536962487,"y":36.407},{"x":1756536902347,"y":36.191},{"x":1756536842221,"y":32.611},{"x":1756536782096,"y":34.861},{"x":1756536721950,"y":35.382},{"x":1756536661560,"y":31.837},{"x":1756536600968,"y":39.535},{"x":1756536540816,"y":32.132},{"x":1756536480693,"y":31.45},{"x":1756536420538,"y":26.46},{"x":1756536360432,"y":30.092},{"x":1756536300406,"y":26.081},{"x":1756536242960,"y":29.435},{"x":1756536182837,"y":34.921},{"x":1756536122705,"y":36.457},{"x":1756536062566,"y":33.312},{"x":1756536002444,"y":31.427},{"x":1756535942341,"y":35.665},{"x":1756535882189,"y":28.288},{"x":1756535822056,"y":27.26},{"x":1756535761850,"y":32.416},{"x":1756535701716,"y":28.133},{"x":1756535641597,"y":34.276},{"x":1756535581470,"y":34.554},{"x":1756535521337,"y":47.999},{"x":1756535461216,"y":36.724},{"x":1756535401086,"y":32.448},{"x":1756535340902,"y":33.794},{"x":1756535280775,"y":41.927},{"x":1756535220647,"y":36.863},{"x":1756535160525,"y":35.376},{"x":1756535100409,"y":33.845},{"x":1756535040321,"y":34.277},{"x":1756534982991,"y":50.674},{"x":1756534922869,"y":41.575},{"x":1756534862722,"y":50.759},{"x":1756534802594,"y":39.324},{"x":1756534742481,"y":48.035},{"x":1756534682349,"y":37.972},{"x":1756534622228,"y":56.006},{"x":1756534562098,"y":38.086},{"x":1756534501965,"y":53.321},{"x":1756534441830,"y":30.298},{"x":1756534381704,"y":46.571},{"x":1756534321553,"y":31.451},{"x":1756534261385,"y":29.629},{"x":1756534200792,"y":48.824},{"x":1756534140574,"y":47.574},{"x":1756534080334,"y":50.917},{"x":1756534020241,"y":32.677},{"x":1756533962923,"y":32.306},{"x":1756533902802,"y":31.81},{"x":1756533842676,"y":42.919},{"x":1756533782552,"y":40.482},{"x":1756533722450,"y":32.087},{"x":1756533662312,"y":30.7},{"x":1756533602176,"y":36.304},{"x":1756533541953,"y":31.582},{"x":1756533481829,"y":35.956},{"x":1756533421696,"y":34.435},{"x":1756533361564,"y":34.236},{"x":1756533301542,"y":30.223},{"x":1756533241298,"y":31.904},{"x":1756533181169,"y":29.906},{"x":1756533121011,"y":31.322},{"x":1756533060890,"y":33.931},{"x":1756533000772,"y":37.583},{"x":1756532940643,"y":32.107},{"x":1756532880570,"y":29.957},{"x":1756532820446,"y":36.251},{"x":1756532760303,"y":32.138},{"x":1756532702993,"y":32.225},{"x":1756532642866,"y":38.459},{"x":1756532582750,"y":33.188},{"x":1756532522612,"y":35.66},{"x":1756532462489,"y":29.905},{"x":1756532402355,"y":29.802},{"x":1756532342227,"y":29.615},{"x":1756532282091,"y":33.564},{"x":1756532221945,"y":38.814},{"x":1756532161243,"y":33.324},{"x":1756532101070,"y":34.892},{"x":1756532040915,"y":35.772},{"x":1756531980782,"y":38.218},{"x":1756531920687,"y":42.41},{"x":1756531860576,"y":43.759},{"x":1756531800550,"y":30.872},{"x":1756531740347,"y":31.758},{"x":1756531682947,"y":34.822},{"x":1756531622813,"y":36.209},{"x":1756531562684,"y":28.27},{"x":1756531502551,"y":29.081},{"x":1756531442427,"y":42.726},{"x":1756531382316,"y":33.869},{"x":1756531322157,"y":34.369},{"x":1756531261372,"y":38.567},{"x":1756531201237,"y":29.737},{"x":1756531141108,"y":31.537},{"x":1756531080956,"y":29.33},{"x":1756531020833,"y":31.234},{"x":1756530960738,"y":31.386},{"x":1756530900582,"y":34.247},{"x":1756530840547,"y":29.93},{"x":1756530780282,"y":37.15},{"x":1756530720102,"y":38.37},{"x":1756530662896,"y":38.618},{"x":1756530602770,"y":45.098},{"x":1756530542644,"y":35.684},{"x":1756530482528,"y":33.436},{"x":1756530422394,"y":31.064},{"x":1756530362268,"y":28.392},{"x":1756530302143,"y":33.272},{"x":1756530242023,"y":30.404},{"x":1756530181885,"y":35.665},{"x":1756530121764,"y":39.091},{"x":1756530061667,"y":42.21},{"x":1756530000582,"y":30.396},{"x":1756529940357,"y":29.882},{"x":1756529880279,"y":32.669},{"x":1756529822909,"y":36.784},{"x":1756529762789,"y":33.271},{"x":1756529702646,"y":31.711},{"x":1756529642526,"y":30.75},{"x":1756529582404,"y":29.23},{"x":1756529522275,"y":28.194},{"x":1756529462149,"y":33.175},{"x":1756529400980,"y":40.53},{"x":1756529340851,"y":35.273},{"x":1756529280752,"y":31.82},{"x":1756529220551,"y":29.375},{"x":1756529160486,"y":34.848},{"x":1756529100350,"y":43.912},{"x":1756529043039,"y":49.49},{"x":1756528982888,"y":44.635},{"x":1756528922756,"y":44.25},{"x":1756528862633,"y":30.908},{"x":1756528802515,"y":33.354},{"x":1756528742384,"y":43.535},{"x":1756528682254,"y":33.25},{"x":1756528622127,"y":32.543},{"x":1756528561262,"y":37.308},{"x":1756528501125,"y":36.461},{"x":1756528440972,"y":39.067},{"x":1756528380841,"y":36.946},{"x":1756528320713,"y":32.926},{"x":1756528260599,"y":32.162},{"x":1756528200544,"y":30.58},{"x":1756528140371,"y":37.38},{"x":1756528082979,"y":35.663},{"x":1756528022847,"y":36.204},{"x":1756527962725,"y":31.699},{"x":1756527901362,"y":34.206},{"x":1756527841237,"y":30.437},{"x":1756527781109,"y":30.787},{"x":1756527720937,"y":38.744},{"x":1756527660807,"y":31.904},{"x":1756527600744,"y":31.758},{"x":1756527540554,"y":36.941},{"x":1756527480415,"y":40.813},{"x":1756527420323,"y":41.047},{"x":1756527362372,"y":38.456},{"x":1756527302240,"y":38.927},{"x":1756527242131,"y":35.471},{"x":1756527181954,"y":40.235},{"x":1756527121814,"y":34.082},{"x":1756527061536,"y":38.503},{"x":1756527002655,"y":37.087},{"x":1756526942513,"y":35.044},{"x":1756526882451,"y":37.685},{"x":1756526822343,"y":32.544},{"x":1756526763002,"y":42.959},{"x":1756526702871,"y":42.899},{"x":1756526642754,"y":42.584},{"x":1756526582070,"y":57.233},{"x":1756526521934,"y":45.571},{"x":1756526464828,"y":33.572},{"x":1756526400609,"y":35.474},{"x":1756526340330,"y":34.698},{"x":1756526280177,"y":46.426},{"x":1756526222912,"y":45.746},{"x":1756526162783,"y":44.227},{"x":1756526102637,"y":43.982},{"x":1756526042489,"y":46.621},{"x":1756525982366,"y":38.684},{"x":1756525922240,"y":36.491},{"x":1756525862131,"y":32.462},{"x":1756525801273,"y":34.508},{"x":1756525741114,"y":42.106},{"x":1756525680974,"y":44.098},{"x":1756525620844,"y":47.752},{"x":1756525560729,"y":42.475},{"x":1756525500642,"y":40.868},{"x":1756525440494,"y":41.554},{"x":1756525380294,"y":38.864},{"x":1756525322992,"y":48.037},{"x":1756525262835,"y":48.449},{"x":1756525202511,"y":46.02},{"x":1756525142384,"y":44.677},{"x":1756525082266,"y":42.763},{"x":1756525022116,"y":54.48},{"x":1756524961989,"y":45.262},{"x":1756524901856,"y":44.844},{"x":1756524841729,"y":45.679},{"x":1756524781584,"y":43.244},{"x":1756524721490,"y":39.017},{"x":1756524661332,"y":42.745},{"x":1756524601224,"y":40.301},{"x":1756524541066,"y":43.602},{"x":1756524480925,"y":45.41},{"x":1756524420783,"y":43.974},{"x":1756524360651,"y":47.428},{"x":1756524300555,"y":38.902},{"x":1756524240458,"y":39.188},{"x":1756524180328,"y":38.738},{"x":1756524123029,"y":42.968},{"x":1756524062760,"y":50.375},{"x":1756524002554,"y":46.537},{"x":1756523942415,"y":45.714},{"x":1756523882298,"y":55.974},{"x":1756523822185,"y":49.032},{"x":1756523762029,"y":49.507},{"x":1756523701894,"y":43.056},{"x":1756523641753,"y":43.74},{"x":1756523581590,"y":46.174},{"x":1756523521464,"y":54.001},{"x":1756523461299,"y":58.511},{"x":1756523401570,"y":53.106},{"x":1756523341440,"y":57.065},{"x":1756523282585,"y":58.214},{"x":1756523222462,"y":49.066},{"x":1756523162563,"y":49.535},{"x":1756523102309,"y":45.286},{"x":1756523072262,"y":55.063},{"x":1756523063701,"y":41.66},{"x":1756522742803,"y":32.348},{"x":1756522682679,"y":36.127},{"x":1756522622570,"y":40.807},{"x":1756522562427,"y":36.274},{"x":1756522502283,"y":46.301},{"x":1756522442166,"y":45.828},{"x":1756522382048,"y":57.862},{"x":1756522321922,"y":47.14},{"x":1756522261720,"y":46.994},{"x":1756522200944,"y":46.104},{"x":1756522140800,"y":36.172},{"x":1756522080711,"y":35.573},{"x":1756522020547,"y":35.332},{"x":1756521960446,"y":38.428},{"x":1756521900402,"y":43.243},{"x":1756521842971,"y":36.671},{"x":1756521782845,"y":34.525},{"x":1756521722708,"y":42.365},{"x":1756521662574,"y":40.433},{"x":1756521602452,"y":48.752},{"x":1756521542330,"y":43.573},{"x":1756521482236,"y":40.26},{"x":1756521422102,"y":39.092},{"x":1756521361935,"y":38.261},{"x":1756521301809,"y":41.267},{"x":1756521241719,"y":34.931},{"x":1756521181523,"y":38.376},{"x":1756521121390,"y":36.683},{"x":1756521061256,"y":32.341},{"x":1756521001143,"y":32.32},{"x":1756520940961,"y":31.823},{"x":1756520880879,"y":38.125},{"x":1756520820713,"y":42.133},{"x":1756520760599,"y":51.325},{"x":1756520700506,"y":54.272},{"x":1756520640423,"y":49.199},{"x":1756520580346,"y":45.922},{"x":1756520522943,"y":46.49},{"x":1756520462821,"y":33.701},{"x":1756520402696,"y":34.048},{"x":1756520342569,"y":37.702},{"x":1756520282431,"y":39.578},{"x":1756520222301,"y":35.777},{"x":1756520162160,"y":34.525},{"x":1756520102047,"y":37.442},{"x":1756520041897,"y":35.527},{"x":1756519981776,"y":39.956},{"x":1756519921600,"y":35.497},{"x":1756519861454,"y":33.457},{"x":1756519800653,"y":31.973},{"x":1756519740478,"y":33.498},{"x":1756519680339,"y":49.531},{"x":1756519620241,"y":39.482},{"x":1756519562915,"y":43.829},{"x":1756519502799,"y":45.434},{"x":1756519442673,"y":39.017},{"x":1756519382536,"y":37.13},{"x":1756519322392,"y":39.397},{"x":1756519262271,"y":39.74},{"x":1756519203059,"y":36.385},{"x":1756519142873,"y":32.947},{"x":1756519082748,"y":35.222},{"x":1756519022605,"y":35.683},{"x":1756518962485,"y":34.679},{"x":1756518902373,"y":35.294},{"x":1756518842239,"y":36.977},{"x":1756518782113,"y":31.751},{"x":1756518721987,"y":32.765},{"x":1756518661686,"y":41.251},{"x":1756518600851,"y":34.063},{"x":1756518540717,"y":33.35},{"x":1756518480607,"y":33.077},{"x":1756518420528,"y":35.125},{"x":1756518360349,"y":32.597},{"x":1756518302983,"y":32.12},{"x":1756518242853,"y":36.161},{"x":1756518182731,"y":35.584},{"x":1756518122602,"y":40.223},{"x":1756518062465,"y":34.906},{"x":1756518002337,"y":49.446},{"x":1756517942215,"y":55.826},{"x":1756517882099,"y":56.948},{"x":1756517821963,"y":60.264},{"x":1756517761836,"y":51.096},{"x":1756517701710,"y":31.418},{"x":1756517641582,"y":33.118},{"x":1756517581459,"y":36.599},{"x":1756517521328,"y":41.048},{"x":1756517461200,"y":33.176},{"x":1756517401075,"y":35.647},{"x":1756517340930,"y":34.964},{"x":1756517280804,"y":43.399},{"x":1756517220679,"y":42.096},{"x":1756517160560,"y":43.579},{"x":1756517100484,"y":35.014},{"x":1756517040319,"y":43.744},{"x":1756516982977,"y":43.334},{"x":1756516922843,"y":48.338},{"x":1756516862676,"y":41.437},{"x":1756516802515,"y":40.968},{"x":1756516742390,"y":41.648},{"x":1756516682271,"y":35.561},{"x":1756516622144,"y":33.901},{"x":1756516562020,"y":39.802},{"x":1756516501874,"y":35.994},{"x":1756516441750,"y":33.26},{"x":1756516381602,"y":37.93},{"x":1756516321454,"y":32.052},{"x":1756516261311,"y":37.528},{"x":1756516200790,"y":29.722},{"x":1756516140623,"y":32.153},{"x":1756516082865,"y":38.1},{"x":1756516022732,"y":32.353},{"x":1756515962608,"y":40.211},{"x":1756515902478,"y":35.186},{"x":1756515842360,"y":32.648},{"x":1756515782214,"y":32.176},{"x":1756515722123,"y":34.778},{"x":1756515661957,"y":37.171},{"x":1756515600051,"y":51.7},{"x":1756515542889,"y":55.974},{"x":1756515482766,"y":48.433},{"x":1756515422643,"y":51.394},{"x":1756515362502,"y":54.035},{"x":1756515302375,"y":30.446},{"x":1756515242244,"y":34.976},{"x":1756515182120,"y":34.943},{"x":1756515121943,"y":31.224},{"x":1756515061569,"y":34.828},{"x":1756515000854,"y":42.449},{"x":1756514940715,"y":31.757},{"x":1756514880650,"y":34.441},{"x":1756514820465,"y":36.49},{"x":1756514760373,"y":32.914},{"x":1756514700339,"y":36.25},{"x":1756514642906,"y":30.967},{"x":1756514582779,"y":44.384},{"x":1756514522642,"y":38.297},{"x":1756514462513,"y":42.983},{"x":1756514402388,"y":44.863},{"x":1756514342252,"y":43.784},{"x":1756514282112,"y":37.918},{"x":1756514221970,"y":37.378},{"x":1756514161233,"y":39.71},{"x":1756514101080,"y":33.836},{"x":1756514040935,"y":36.161},{"x":1756513980812,"y":35.515},{"x":1756513920694,"y":32.231},{"x":1756513860576,"y":30.673},{"x":1756513800450,"y":29.467},{"x":1756513740305,"y":32.286},{"x":1756513680214,"y":32.377},{"x":1756513622897,"y":36.685},{"x":1756513562766,"y":37.525},{"x":1756513502649,"y":48.116},{"x":1756513442518,"y":48.197},{"x":1756513382413,"y":53.312},{"x":1756513322275,"y":50.197},{"x":1756513262141,"y":43.492},{"x":1756513201975,"y":31.514},{"x":1756513141848,"y":41.312},{"x":1756513081732,"y":34.714},{"x":1756513021581,"y":35.327},{"x":1756512961458,"y":35.269},{"x":1756512901312,"y":39.858},{"x":1756512841167,"y":43.147},{"x":1756512781028,"y":34.072},{"x":1756512720890,"y":34.176},{"x":1756512660730,"y":35.893},{"x":1756512600644,"y":38.609},{"x":1756512540480,"y":45.482},{"x":1756512480295,"y":35.791},{"x":1756512423017,"y":36.608},{"x":1756512362886,"y":36.223},{"x":1756512302759,"y":37.494},{"x":1756512242630,"y":50.077},{"x":1756512182503,"y":36.434},{"x":1756512122378,"y":36.797},{"x":1756512062256,"y":36.829},{"x":1756512000700,"y":35.825},{"x":1756511940314,"y":32.894},{"x":1756511882969,"y":35.296},{"x":1756511822838,"y":34.576},{"x":1756511762681,"y":38.298},{"x":1756511702542,"y":35.532},{"x":1756511642416,"y":33.618},{"x":1756511582290,"y":33.478},{"x":1756511522148,"y":36.584},{"x":1756511462017,"y":36.33},{"x":1756511401912,"y":33.185},{"x":1756511341716,"y":32.49},{"x":1756511281581,"y":36.054},{"x":1756511221445,"y":32.549},{"x":1756511161333,"y":32.312},{"x":1756511101205,"y":34.801},{"x":1756511041030,"y":37.363},{"x":1756510980878,"y":37.991},{"x":1756510920793,"y":34.399},{"x":1756510860638,"y":36.646},{"x":1756510800581,"y":38.671},{"x":1756510740329,"y":33.984},{"x":1756510680186,"y":46.334},{"x":1756510622912,"y":36.098},{"x":1756510562787,"y":33.048},{"x":1756510502665,"y":31.896},{"x":1756510442544,"y":47.342},{"x":1756510382418,"y":47.273},{"x":1756510322300,"y":47.945},{"x":1756510262159,"y":52.499},{"x":1756510202040,"y":47.492},{"x":1756510141896,"y":33.389},{"x":1756510081780,"y":44.774},{"x":1756510021639,"y":36.466},{"x":1756509961536,"y":36.998},{"x":1756509900938,"y":37.967},{"x":1756509840800,"y":37.736},{"x":1756509780676,"y":43.018},{"x":1756509720580,"y":37.759},{"x":1756509660402,"y":34.463},{"x":1756509600310,"y":34.004},{"x":1756509542977,"y":39.305},{"x":1756509482838,"y":34.058},{"x":1756509422713,"y":37.369},{"x":1756509362484,"y":33.745},{"x":1756509302251,"y":34.282},{"x":1756509242121,"y":34.18},{"x":1756509181973,"y":33.251},{"x":1756509121803,"y":38.723},{"x":1756509061522,"y":49.698},{"x":1756509000734,"y":48.244},{"x":1756508940559,"y":47.447},{"x":1756508880435,"y":46.69},{"x":1756508820279,"y":50.236},{"x":1756508762933,"y":34.568},{"x":1756508702804,"y":34.396},{"x":1756508642688,"y":34.992},{"x":1756508582535,"y":34.012},{"x":1756508522404,"y":36.437},{"x":1756508462275,"y":39.0},{"x":1756508400248,"y":40.052},{"x":1756508342894,"y":36.958},{"x":1756508282788,"y":36.196},{"x":1756508222641,"y":36.848},{"x":1756508162511,"y":35.014},{"x":1756508102381,"y":33.978},{"x":1756508042254,"y":35.243},{"x":1756507982114,"y":34.42},{"x":1756507921981,"y":39.107},{"x":1756507861641,"y":41.327},{"x":1756507800954,"y":41.178},{"x":1756507740833,"y":46.366},{"x":1756507680701,"y":43.613},{"x":1756507620586,"y":37.487},{"x":1756507560436,"y":38.035},{"x":1756507500390,"y":35.651},{"x":1756507440269,"y":42.16},{"x":1756507382941,"y":49.248},{"x":1756507322806,"y":46.177},{"x":1756507262676,"y":36.272},{"x":1756507202547,"y":41.003},{"x":1756507142420,"y":35.536},{"x":1756507082301,"y":41.491},{"x":1756507022177,"y":38.706},{"x":1756506962046,"y":39.7},{"x":1756506901859,"y":44.186},{"x":1756506841735,"y":32.203},{"x":1756506781614,"y":33.893},{"x":1756506721487,"y":32.663},{"x":1756506661355,"y":32.49},{"x":1756506601288,"y":34.939},{"x":1756506541095,"y":35.269},{"x":1756506480949,"y":39.241},{"x":1756506420844,"y":35.956},{"x":1756506360707,"y":37.822},{"x":1756506300624,"y":37.267},{"x":1756506240493,"y":35.779},{"x":1756506180353,"y":34.888},{"x":1756506122964,"y":40.242},{"x":1756506062848,"y":33.454},{"x":1756506002730,"y":35.293},{"x":1756505942604,"y":44.192},{"x":1756505882448,"y":35.602},{"x":1756505822326,"y":34.324},{"x":1756505762185,"y":35.2},{"x":1756505702051,"y":34.35},{"x":1756505641906,"y":39.863},{"x":1756505581779,"y":61.618},{"x":1756505521615,"y":64.901},{"x":1756505461430,"y":65.62},{"x":1756505400767,"y":64.195},{"x":1756505340611,"y":54.791},{"x":1756505280444,"y":38.111},{"x":1756505220370,"y":39.618},{"x":1756505162973,"y":39.488},{"x":1756505102839,"y":43.276},{"x":1756505042712,"y":46.757},{"x":1756504982576,"y":44.294},{"x":1756504922446,"y":46.831},{"x":1756504862319,"y":48.223},{"x":1756504801628,"y":37.734},{"x":1756504741051,"y":45.802},{"x":1756504680915,"y":36.838},{"x":1756504620774,"y":34.78},{"x":1756504560646,"y":36.188},{"x":1756504500572,"y":32.339},{"x":1756504440335,"y":43.592},{"x":1756504382971,"y":30.769},{"x":1756504322845,"y":31.535},{"x":1756504262694,"y":38.862},{"x":1756504202544,"y":41.892},{"x":1756504142422,"y":40.789},{"x":1756504082280,"y":45.766},{"x":1756504022150,"y":41.393},{"x":1756503962019,"y":32.785},{"x":1756503901879,"y":32.321},{"x":1756503841744,"y":31.283},{"x":1756503781618,"y":31.417},{"x":1756503721468,"y":39.16},{"x":1756503661348,"y":31.543},{"x":1756503600843,"y":32.76},{"x":1756503540624,"y":35.744},{"x":1756503480548,"y":35.699},{"x":1756503420318,"y":33.859},{"x":1756503363017,"y":35.116},{"x":1756503302829,"y":34.459},{"x":1756503242687,"y":40.272},{"x":1756503182606,"y":33.313},{"x":1756503122417,"y":36.444},{"x":1756503062293,"y":37.939},{"x":1756503002145,"y":36.589},{"x":1756502941998,"y":33.226},{"x":1756502881868,"y":51.606},{"x":1756502821747,"y":42.271},{"x":1756502761622,"y":39.229},{"x":1756502701489,"y":37.523},{"x":1756502641366,"y":40.356},{"x":1756502581240,"y":46.979},{"x":1756502521119,"y":35.203},{"x":1756502460958,"y":43.74},{"x":1756502400913,"y":45.727},{"x":1756502340695,"y":43.65},{"x":1756502280579,"y":43.778},{"x":1756502220454,"y":44.215},{"x":1756502160492,"y":41.801},{"x":1756502102987,"y":39.349},{"x":1756502042830,"y":62.375},{"x":1756501982678,"y":49.72},{"x":1756501922537,"y":46.217},{"x":1756501862396,"y":43.957},{"x":1756501802242,"y":41.64},{"x":1756501742139,"y":41.506},{"x":1756501681970,"y":59.008},{"x":1756501621820,"y":53.478},{"x":1756501561203,"y":52.49},{"x":1756501501073,"y":60.929},{"x":1756501440933,"y":58.981},{"x":1756501380795,"y":67.362},{"x":1756501320673,"y":52.613},{"x":1756501260570,"y":60.988},{"x":1756501200628,"y":56.214},{"x":1756501140337,"y":51.016},{"x":1756501082984,"y":44.776},{"x":1756501022843,"y":47.062},{"x":1756500962698,"y":42.716},{"x":1756500902515,"y":43.964},{"x":1756500842397,"y":44.849},{"x":1756500782265,"y":49.634},{"x":1756500722114,"y":50.837},{"x":1756500661980,"y":42.188},{"x":1756500601846,"y":43.766},{"x":1756500541714,"y":50.074},{"x":1756500481586,"y":46.896},{"x":1756500421448,"y":55.153},{"x":1756500361316,"y":48.061},{"x":1756500301196,"y":46.882},{"x":1756500241037,"y":47.729},{"x":1756500180895,"y":65.73},{"x":1756500120769,"y":51.235},{"x":1756500060638,"y":46.801},{"x":1756500000552,"y":54.44},{"x":1756499940349,"y":44.305},{"x":1756499880236,"y":54.864},{"x":1756499822920,"y":66.124},{"x":1756499762777,"y":59.376},{"x":1756499702657,"y":59.069},{"x":1756499642515,"y":54.973},{"x":1756499582384,"y":41.705},{"x":1756499522262,"y":44.579},{"x":1756499462146,"y":43.466},{"x":1756499401996,"y":62.009},{"x":1756499341846,"y":45.239},{"x":1756499281715,"y":43.144},{"x":1756499221593,"y":51.106},{"x":1756499161453,"y":44.551},{"x":1756499100963,"y":48.97},{"x":1756499040818,"y":45.613},{"x":1756498980683,"y":45.42},{"x":1756498920527,"y":51.364},{"x":1756498860432,"y":46.525},{"x":1756498800293,"y":44.978},{"x":1756498742974,"y":48.823},{"x":1756498682853,"y":69.256},{"x":1756498622747,"y":54.402},{"x":1756498562368,"y":71.425},{"x":1756498502244,"y":75.548},{"x":1756498442129,"y":77.116},{"x":1756498381974,"y":62.816},{"x":1756498321847,"y":59.244},{"x":1756498261456,"y":52.153},{"x":1756498200787,"y":45.802},{"x":1756498140655,"y":53.376},{"x":1756498082973,"y":52.073},{"x":1756498022843,"y":60.142},{"x":1756497962707,"y":56.054},{"x":1756497902572,"y":44.364},{"x":1756497842431,"y":44.419},{"x":1756497782296,"y":46.526},{"x":1756497722159,"y":54.887},{"x":1756497662019,"y":52.972},{"x":1756497601607,"y":50.204},{"x":1756497541084,"y":59.654},{"x":1756497480927,"y":48.462},{"x":1756497420776,"y":46.661},{"x":1756497360672,"y":50.293},{"x":1756497300527,"y":60.452},{"x":1756497240383,"y":59.358},{"x":1756497180269,"y":43.706},{"x":1756497122991,"y":48.967},{"x":1756497062871,"y":45.305},{"x":1756497002749,"y":52.642},{"x":1756496942622,"y":71.125},{"x":1756496882503,"y":51.52},{"x":1756496822374,"y":60.076},{"x":1756496762251,"y":48.641},{"x":1756496702113,"y":43.626},{"x":1756496641975,"y":61.951},{"x":1756496581851,"y":56.302},{"x":1756496521719,"y":56.473},{"x":1756496461595,"y":60.955},{"x":1756496401475,"y":60.396},{"x":1756496341335,"y":60.75},{"x":1756496281203,"y":52.55},{"x":1756496221076,"y":39.487},{"x":1756496160944,"y":37.246},{"x":1756496100838,"y":38.761},{"x":1756496040694,"y":45.668},{"x":1756495980578,"y":35.05},{"x":1756495920563,"y":35.556},{"x":1756495860393,"y":59.344},{"x":1756495800359,"y":75.29},{"x":1756495742946,"y":68.784},{"x":1756495682814,"y":64.603},{"x":1756495622687,"y":60.119},{"x":1756495562548,"y":40.637},{"x":1756495502406,"y":41.152},{"x":1756495442272,"y":38.744},{"x":1756495382146,"y":35.004},{"x":1756495321986,"y":30.943},{"x":1756495261139,"y":45.997},{"x":1756495201026,"y":35.818},{"x":1756495140869,"y":44.902},{"x":1756495080751,"y":43.717},{"x":1756495020649,"y":42.299},{"x":1756494960509,"y":40.715},{"x":1756494900432,"y":34.048},{"x":1756494842990,"y":38.88},{"x":1756494782851,"y":42.592},{"x":1756494722708,"y":38.867},{"x":1756494662553,"y":34.43},{"x":1756494602387,"y":34.831},{"x":1756494542266,"y":37.817},{"x":1756494482136,"y":35.536},{"x":1756494422014,"y":37.283},{"x":1756494361661,"y":40.254},{"x":1756494301538,"y":43.022},{"x":1756494241409,"y":33.288},{"x":1756494181285,"y":32.207},{"x":1756494121168,"y":41.752},{"x":1756494061049,"y":39.493},{"x":1756494001594,"y":35.791},{"x":1756493941108,"y":37.733},{"x":1756493880952,"y":36.15},{"x":1756493820838,"y":40.554},{"x":1756493760688,"y":44.519},{"x":1756493700629,"y":38.173},{"x":1756493640455,"y":43.573},{"x":1756493580297,"y":40.56},{"x":1756493522994,"y":39.46},{"x":1756493462873,"y":40.829},{"x":1756493402743,"y":47.041},{"x":1756493342617,"y":44.452},{"x":1756493282467,"y":39.734},{"x":1756493222342,"y":42.476},{"x":1756493162217,"y":41.899},{"x":1756493102096,"y":42.848},{"x":1756493041955,"y":35.428},{"x":1756492981838,"y":53.208},{"x":1756492921668,"y":37.71},{"x":1756492861528,"y":39.557},{"x":1756492800826,"y":46.352},{"x":1756492740626,"y":42.499},{"x":1756492680508,"y":45.037},{"x":1756492620387,"y":37.649},{"x":1756492560161,"y":59.088},{"x":1756492502905,"y":56.645},{"x":1756492442777,"y":55.258},{"x":1756492382654,"y":61.886},{"x":1756492322521,"y":47.845},{"x":1756492262407,"y":44.089},{"x":1756492202279,"y":40.513},{"x":1756492142153,"y":42.077},{"x":1756492082039,"y":43.085},{"x":1756492021895,"y":35.032},{"x":1756491961761,"y":36.503},{"x":1756491901632,"y":36.121},{"x":1756491841507,"y":38.348},{"x":1756491781384,"y":36.847},{"x":1756491721252,"y":39.011},{"x":1756491661118,"y":39.035},{"x":1756491600976,"y":46.193},{"x":1756491540821,"y":39.89},{"x":1756491480696,"y":57.421},{"x":1756491420646,"y":50.711},{"x":1756491360492,"y":44.417},{"x":1756491300329,"y":45.403},{"x":1756491243014,"y":59.833},{"x":1756491182844,"y":49.05},{"x":1756491122699,"y":38.592},{"x":1756491062558,"y":43.614},{"x":1756491002395,"y":40.18},{"x":1756490942267,"y":44.2},{"x":1756490882138,"y":40.189},{"x":1756490821994,"y":43.6},{"x":1756490761720,"y":40.048},{"x":1756490701583,"y":54.782},{"x":1756490641459,"y":40.556},{"x":1756490581327,"y":38.146},{"x":1756490521201,"y":37.285},{"x":1756490461073,"y":39.659},{"x":1756490400420,"y":51.139},{"x":1756490340101,"y":43.3},{"x":1756490282898,"y":42.875},{"x":1756490222756,"y":45.235},{"x":1756490162622,"y":43.762},{"x":1756490102496,"y":43.871},{"x":1756490042361,"y":37.864},{"x":1756489982243,"y":38.53},{"x":1756489922113,"y":48.215},{"x":1756489861980,"y":44.902},{"x":1756489801843,"y":50.982},{"x":1756489741712,"y":50.202},{"x":1756489681588,"y":55.057},{"x":1756489621451,"y":47.596},{"x":1756489561322,"y":44.628},{"x":1756489501215,"y":43.476},{"x":1756489441037,"y":37.963},{"x":1756489380903,"y":38.826},{"x":1756489320764,"y":35.092},{"x":1756489260639,"y":40.466},{"x":1756489200604,"y":47.804},{"x":1756489140462,"y":51.865},{"x":1756489080227,"y":38.866},{"x":1756489022926,"y":36.14},{"x":1756488962791,"y":36.137},{"x":1756488902669,"y":36.539},{"x":1756488842547,"y":42.881},{"x":1756488782415,"y":45.206},{"x":1756488722288,"y":44.783},{"x":1756488662159,"y":44.852},{"x":1756488602021,"y":45.109},{"x":1756488541870,"y":35.178},{"x":1756488481738,"y":33.242},{"x":1756488421631,"y":39.736},{"x":1756488361464,"y":34.627},{"x":1756488300633,"y":44.012},{"x":1756488240565,"y":41.486},{"x":1756488180387,"y":44.0},{"x":1756488120232,"y":39.466},{"x":1756488062933,"y":33.797},{"x":1756488001096,"y":48.241},{"x":1756487940954,"y":49.804},{"x":1756487880828,"y":39.426},{"x":1756487820745,"y":33.212},{"x":1756487760607,"y":45.46},{"x":1756487700365,"y":61.049},{"x":1756487640083,"y":55.618},{"x":1756487582897,"y":55.578},{"x":1756487522739,"y":60.359},{"x":1756487462592,"y":48.788},{"x":1756487402417,"y":37.746},{"x":1756487342291,"y":36.505},{"x":1756487282157,"y":34.434},{"x":1756487222030,"y":34.519},{"x":1756487161670,"y":33.1},{"x":1756487101519,"y":33.074},{"x":1756487041394,"y":41.478},{"x":1756486981259,"y":34.994},{"x":1756486921117,"y":33.437},{"x":1756486860970,"y":53.833},{"x":1756486802121,"y":39.93},{"x":1756486741924,"y":38.414},{"x":1756486681783,"y":59.449},{"x":1756486621658,"y":39.829},{"x":1756486561530,"y":38.062},{"x":1756486500699,"y":43.61},{"x":1756486440555,"y":34.43},{"x":1756486380397,"y":42.796},{"x":1756486320263,"y":46.667},{"x":1756486262923,"y":53.568},{"x":1756486202800,"y":52.819},{"x":1756486142667,"y":52.37},{"x":1756486082542,"y":41.46},{"x":1756486022415,"y":49.105},{"x":1756485962297,"y":46.518},{"x":1756485902166,"y":39.62},{"x":1756485842026,"y":39.257},{"x":1756485781896,"y":36.289},{"x":1756485721770,"y":45.994},{"x":1756485661633,"y":37.722},{"x":1756485601495,"y":33.152},{"x":1756485541366,"y":36.088},{"x":1756485481247,"y":57.343},{"x":1756485421115,"y":42.534},{"x":1756485360981,"y":55.627},{"x":1756485300864,"y":34.462},{"x":1756485240731,"y":33.775},{"x":1756485180640,"y":31.988},{"x":1756485120480,"y":32.692},{"x":1756485060349,"y":38.404},{"x":1756485000297,"y":32.43},{"x":1756484942915,"y":40.832},{"x":1756484882794,"y":40.832},{"x":1756484822675,"y":35.995},{"x":1756484762555,"y":35.38},{"x":1756484702422,"y":41.059},{"x":1756484642302,"y":48.944},{"x":1756484582163,"y":47.524},{"x":1756484522047,"y":36.778},{"x":1756484461897,"y":38.578},{"x":1756484401330,"y":42.437},{"x":1756484341174,"y":36.776},{"x":1756484281095,"y":46.954},{"x":1756484220909,"y":49.064},{"x":1756484160780,"y":47.203},{"x":1756484100661,"y":47.66},{"x":1756484040593,"y":39.946},{"x":1756483980361,"y":39.385},{"x":1756483920312,"y":50.303},{"x":1756483862933,"y":40.71},{"x":1756483802735,"y":34.704},{"x":1756483742613,"y":39.769},{"x":1756483682489,"y":35.852},{"x":1756483622374,"y":47.396},{"x":1756483562249,"y":37.004},{"x":1756483502090,"y":36.379},{"x":1756483441948,"y":36.913},{"x":1756483381828,"y":37.894},{"x":1756483321667,"y":37.726},{"x":1756483261519,"y":55.312},{"x":1756483201807,"y":49.615},{"x":1756483141604,"y":45.232},{"x":1756483081477,"y":34.262},{"x":1756483021353,"y":33.437},{"x":1756482961228,"y":58.5},{"x":1756482900654,"y":46.958},{"x":1756482840491,"y":54.278},{"x":1756482780310,"y":54.503},{"x":1756482720338,"y":46.165},{"x":1756482662964,"y":39.659},{"x":1756482602839,"y":35.807},{"x":1756482542713,"y":39.048},{"x":1756482482575,"y":47.089},{"x":1756482422449,"y":37.974},{"x":1756482362334,"y":38.599},{"x":1756482302055,"y":38.224},{"x":1756482241914,"y":31.49},{"x":1756482181791,"y":36.889},{"x":1756482121664,"y":37.673},{"x":1756482061539,"y":42.14},{"x":1756482000938,"y":33.798},{"x":1756481940703,"y":40.903},{"x":1756481880599,"y":36.353},{"x":1756481820583,"y":36.779},{"x":1756481760285,"y":42.505},{"x":1756481702944,"y":42.906},{"x":1756481642806,"y":64.228},{"x":1756481582682,"y":38.52},{"x":1756481522527,"y":52.314},{"x":1756481462416,"y":59.246},{"x":1756481402297,"y":54.109},{"x":1756481342159,"y":49.763},{"x":1756481282016,"y":51.725},{"x":1756481221879,"y":90.048},{"x":1756481161746,"y":64.633},{"x":1756481101634,"y":34.188},{"x":1756481041497,"y":32.622},{"x":1756480981379,"y":37.126},{"x":1756480921226,"y":41.875},{"x":1756480861097,"y":42.426},{"x":1756480800973,"y":39.067},{"x":1756480740818,"y":47.176},{"x":1756480680702,"y":36.114},{"x":1756480620593,"y":30.428},{"x":1756480560458,"y":31.496},{"x":1756480500351,"y":29.531},{"x":1756480440263,"y":32.122},{"x":1756480382957,"y":25.847},{"x":1756480322813,"y":35.956},{"x":1756480262618,"y":33.197},{"x":1756480202470,"y":57.396},{"x":1756480142353,"y":58.422},{"x":1756480082219,"y":44.746},{"x":1756480022096,"y":49.582},{"x":1756479961865,"y":50.245},{"x":1756479901743,"y":49.732},{"x":1756479841623,"y":75.936},{"x":1756479781484,"y":54.647},{"x":1756479721347,"y":41.342},{"x":1756479661235,"y":36.481},{"x":1756479602192,"y":33.1},{"x":1756479542011,"y":45.518},{"x":1756479481876,"y":50.282},{"x":1756479421738,"y":41.765},{"x":1756479361614,"y":46.639},{"x":1756479300713,"y":40.472},{"x":1756479240538,"y":40.54},{"x":1756479180323,"y":46.759},{"x":1756479120225,"y":46.153},{"x":1756479062998,"y":47.525},{"x":1756479002866,"y":40.206},{"x":1756478942718,"y":52.334},{"x":1756478882593,"y":52.35},{"x":1756478822460,"y":59.486},{"x":1756478762341,"y":61.332},{"x":1756478702174,"y":54.796},{"x":1756478642044,"y":62.194},{"x":1756478581903,"y":48.224},{"x":1756478521774,"y":52.848},{"x":1756478461638,"y":43.172},{"x":1756478401513,"y":66.918},{"x":1756478341382,"y":50.35},{"x":1756478281266,"y":38.782},{"x":1756478221131,"y":46.297},{"x":1756478160984,"y":44.893},{"x":1756478100936,"y":47.863},{"x":1756478040712,"y":39.396},{"x":1756477980623,"y":50.624},{"x":1756477920476,"y":56.236},{"x":1756477860455,"y":68.509},{"x":1756477803017,"y":57.708},{"x":1756477742892,"y":59.202},{"x":1756477682756,"y":42.131},{"x":1756477622626,"y":44.851},{"x":1756477562520,"y":63.455},{"x":1756477502394,"y":52.838},{"x":1756477442253,"y":51.758},{"x":1756477382128,"y":73.664},{"x":1756477321993,"y":73.286},{"x":1756477261336,"y":75.631},{"x":1756477201219,"y":31.511},{"x":1756477141065,"y":40.244},{"x":1756477080934,"y":35.231},{"x":1756477020803,"y":43.529},{"x":1756476960681,"y":42.935},{"x":1756476900642,"y":38.221},{"x":1756476840382,"y":38.95},{"x":1756476780258,"y":40.049},{"x":1756476722908,"y":59.333},{"x":1756476662750,"y":57.966},{"x":1756476602593,"y":46.4},{"x":1756476542436,"y":51.719},{"x":1756476482291,"y":40.489},{"x":1756476422162,"y":33.42},{"x":1756476362024,"y":35.311},{"x":1756476301829,"y":27.791},{"x":1756476241709,"y":21.05},{"x":1756476181575,"y":28.83},{"x":1756476121440,"y":26.935},{"x":1756476061321,"y":33.3},{"x":1756476003053,"y":40.307},{"x":1756475942856,"y":58.11},{"x":1756475882728,"y":57.949},{"x":1756475822595,"y":51.79},{"x":1756475762464,"y":51.913},{"x":1756475702336,"y":35.038},{"x":1756475642208,"y":52.831},{"x":1756475582078,"y":38.117},{"x":1756475521943,"y":46.088},{"x":1756475461706,"y":66.776},{"x":1756475401242,"y":70.176},{"x":1756475341109,"y":60.52},{"x":1756475280965,"y":53.388},{"x":1756475220842,"y":56.257},{"x":1756475160703,"y":44.995},{"x":1756475101969,"y":47.329},{"x":1756475041844,"y":63.792},{"x":1756474981701,"y":48.018},{"x":1756474921576,"y":47.2},{"x":1756474861440,"y":52.961},{"x":1756474800845,"y":57.56},{"x":1756474740609,"y":47.207},{"x":1756474680514,"y":53.352},{"x":1756474620408,"y":67.277},{"x":1756474562872,"y":62.425},{"x":1756474502737,"y":61.24},{"x":1756474442616,"y":58.998},{"x":1756474382494,"y":60.414},{"x":1756474322373,"y":65.353},{"x":1756474262242,"y":53.7},{"x":1756474202126,"y":49.002},{"x":1756474141977,"y":52.229},{"x":1756474081854,"y":57.984},{"x":1756474021725,"y":70.015},{"x":1756473961603,"y":66.247},{"x":1756473900927,"y":56.359},{"x":1756473840765,"y":68.67},{"x":1756473780663,"y":63.619},{"x":1756473720515,"y":47.027},{"x":1756473660377,"y":41.742},{"x":1756473602743,"y":36.442},{"x":1756473542597,"y":50.658},{"x":1756473482459,"y":33.642},{"x":1756473422340,"y":34.933},{"x":1756473362193,"y":37.397},{"x":1756473302064,"y":27.842},{"x":1756473241924,"y":27.805},{"x":1756473181789,"y":31.193},{"x":1756473121625,"y":27.244},{"x":1756473061463,"y":34.17},{"x":1756473001293,"y":57.876},{"x":1756472941165,"y":66.122},{"x":1756472880993,"y":60.649},{"x":1756472820854,"y":49.316},{"x":1756472760722,"y":31.783},{"x":1756472700651,"y":54.36},{"x":1756472640516,"y":61.004},{"x":1756472580352,"y":48.054},{"x":1756472520157,"y":46.063},{"x":1756472465924,"y":41.575},{"x":1756472402959,"y":19.974},{"x":1756472342815,"y":26.312},{"x":1756472282689,"y":21.528},{"x":1756472222550,"y":15.516},{"x":1756472162421,"y":10.567},{"x":1756472102287,"y":46.921},{"x":1756472042167,"y":61.222},{"x":1756471982039,"y":53.852},{"x":1756471921901,"y":59.488},{"x":1756471861547,"y":58.865},{"x":1756471800934,"y":38.4},{"x":1756471740716,"y":29.809},{"x":1756471680640,"y":26.608},{"x":1756471620429,"y":25.042},{"x":1756471560298,"y":42.976},{"x":1756471500181,"y":43.463},{"x":1756471442898,"y":31.522},{"x":1756471382763,"y":52.577},{"x":1756471322633,"y":44.341},{"x":1756471262498,"y":39.472},{"x":1756471202366,"y":39.655},{"x":1756471142246,"y":31.319},{"x":1756471082111,"y":44.17},{"x":1756471021973,"y":26.413},{"x":1756470961211,"y":33.052},{"x":1756470901031,"y":22.943},{"x":1756470840884,"y":45.688},{"x":1756470780758,"y":41.801},{"x":1756470720687,"y":49.442},{"x":1756470660496,"y":35.854},{"x":1756470600457,"y":50.591},{"x":1756470540258,"y":54.407},{"x":1756470482976,"y":52.565},{"x":1756470422823,"y":34.496},{"x":1756470362684,"y":32.447},{"x":1756470302565,"y":30.523},{"x":1756470242422,"y":39.265},{"x":1756470182292,"y":34.254},{"x":1756470122163,"y":39.785},{"x":1756470062030,"y":49.508},{"x":1756470002652,"y":44.155},{"x":1756469942519,"y":62.498},{"x":1756469882400,"y":51.863},{"x":1756469822278,"y":61.843},{"x":1756469762128,"y":80.58},{"x":1756469701994,"y":55.759},{"x":1756469641873,"y":50.94},{"x":1756469581756,"y":54.204},{"x":1756469521626,"y":58.494},{"x":1756469461420,"y":53.308},{"x":1756469400768,"y":66.24},{"x":1756469340553,"y":59.858},{"x":1756469282874,"y":37.034},{"x":1756469222753,"y":48.029},{"x":1756469162626,"y":71.771},{"x":1756469102447,"y":48.548},{"x":1756469042325,"y":24.074},{"x":1756468982206,"y":12.716},{"x":1756468922094,"y":10.73},{"x":1756468861938,"y":33.784},{"x":1756468803056,"y":25.274},{"x":1756468742887,"y":19.582},{"x":1756468682738,"y":26.108},{"x":1756468622617,"y":36.702},{"x":1756468562465,"y":44.222},{"x":1756468502364,"y":25.303},{"x":1756468442202,"y":44.06},{"x":1756468382078,"y":42.71},{"x":1756468321931,"y":28.678},{"x":1756468261740,"y":40.582},{"x":1756468201028,"y":38.49},{"x":1756468140866,"y":39.614},{"x":1756468080743,"y":33.667},{"x":1756468020605,"y":19.046},{"x":1756467960559,"y":28.153},{"x":1756467900450,"y":32.834},{"x":1756467840283,"y":20.515},{"x":1756467782919,"y":29.027},{"x":1756467722794,"y":16.536},{"x":1756467662676,"y":27.365},{"x":1756467602526,"y":22.429},{"x":1756467542444,"y":29.69},{"x":1756467482271,"y":51.908},{"x":1756467422131,"y":40.589},{"x":1756467361995,"y":56.983},{"x":1756467301860,"y":59.848},{"x":1756467241728,"y":41.378},{"x":1756467181572,"y":40.903},{"x":1756467121450,"y":27.307},{"x":1756467061331,"y":32.316},{"x":1756467001289,"y":48.802},{"x":1756466941047,"y":52.916},{"x":1756466880933,"y":50.537},{"x":1756466820763,"y":51.089},{"x":1756466760645,"y":47.446},{"x":1756466700480,"y":48.82},{"x":1756466640258,"y":53.578},{"x":1756466583002,"y":49.133},{"x":1756466522867,"y":47.018},{"x":1756466461693,"y":40.474},{"x":1756466402627,"y":35.45},{"x":1756466342481,"y":46.751},{"x":1756466282347,"y":35.945},{"x":1756466222226,"y":50.107},{"x":1756466162069,"y":61.906},{"x":1756466101935,"y":60.998},{"x":1756466041808,"y":52.069},{"x":1756465981679,"y":50.629},{"x":1756465921477,"y":39.509},{"x":1756465861316,"y":39.907},{"x":1756465800873,"y":39.419},{"x":1756465740626,"y":41.641},{"x":1756465682937,"y":31.65},{"x":1756465622814,"y":33.576},{"x":1756465562692,"y":32.198},{"x":1756465502553,"y":35.886},{"x":1756465442429,"y":24.43},{"x":1756465382304,"y":16.474},{"x":1756465322174,"y":14.951},{"x":1756465262050,"y":22.133},{"x":1756465202077,"y":34.958},{"x":1756465141827,"y":12.872},{"x":1756465081712,"y":26.528},{"x":1756465021563,"y":42.776},{"x":1756464961425,"y":62.608},{"x":1756464900746,"y":46.01},{"x":1756464840541,"y":50.02},{"x":1756464780427,"y":54.01},{"x":1756464720449,"y":37.463},{"x":1756464662946,"y":31.177},{"x":1756464602816,"y":36.648},{"x":1756464542669,"y":37.88},{"x":1756464482530,"y":27.815},{"x":1756464422399,"y":43.615},{"x":1756464362277,"y":49.325},{"x":1756464302152,"y":39.283},{"x":1756464242022,"y":44.645},{"x":1756464181893,"y":49.505},{"x":1756464121761,"y":36.761},{"x":1756464061626,"y":31.613},{"x":1756464001503,"y":28.104},{"x":1756463941361,"y":35.843},{"x":1756463881232,"y":40.451},{"x":1756463821085,"y":26.824},{"x":1756463760953,"y":39.704},{"x":1756463700773,"y":47.37},{"x":1756463640608,"y":44.047},{"x":1756463580503,"y":58.412},{"x":1756463520510,"y":44.206},{"x":1756463460279,"y":34.424},{"x":1756463402953,"y":33.767},{"x":1756463342816,"y":40.612},{"x":1756463282689,"y":36.004},{"x":1756463222546,"y":35.15},{"x":1756463162425,"y":35.314},{"x":1756463102299,"y":38.101},{"x":1756463042175,"y":40.668},{"x":1756462982049,"y":39.36},{"x":1756462921914,"y":33.155},{"x":1756462861232,"y":25.404},{"x":1756462801425,"y":27.509},{"x":1756462747320,"y":15.304},{"x":1756462682421,"y":19.229},{"x":1756462622293,"y":30.856},{"x":1756462562152,"y":31.342},{"x":1756462502026,"y":43.652},{"x":1756462441873,"y":24.886},{"x":1756462381755,"y":22.424},{"x":1756462321576,"y":25.924},{"x":1756462261423,"y":18.44},{"x":1756462201156,"y":24.817},{"x":1756462141001,"y":24.102},{"x":1756462080869,"y":47.549},{"x":1756462020734,"y":46.357},{"x":1756461960613,"y":44.66},{"x":1756461900555,"y":55.854},{"x":1756461840471,"y":44.831},{"x":1756461780319,"y":49.103},{"x":1756461722961,"y":39.62},{"x":1756461665851,"y":34.303},{"x":1756461601648,"y":45.583},{"x":1756461541027,"y":39.806},{"x":1756461480897,"y":40.758},{"x":1756461420771,"y":39.491},{"x":1756461360692,"y":27.811},{"x":1756461300545,"y":52.22},{"x":1756461240390,"y":61.34},{"x":1756461180182,"y":65.204},{"x":1756461122971,"y":54.802},{"x":1756461062853,"y":47.004},{"x":1756461002716,"y":47.779},{"x":1756460942572,"y":52.228},{"x":1756460882418,"y":48.66},{"x":1756460822287,"y":49.601},{"x":1756460762154,"y":54.906},{"x":1756460702024,"y":34.816},{"x":1756460641907,"y":39.298},{"x":1756460581749,"y":30.863},{"x":1756460521629,"y":26.74},{"x":1756460461504,"y":24.7},{"x":1756460400873,"y":42.668},{"x":1756460340609,"y":22.734},{"x":1756460280515,"y":23.13},{"x":1756460220379,"y":26.5},{"x":1756460162971,"y":31.732},{"x":1756460102833,"y":23.225},{"x":1756460042707,"y":26.664},{"x":1756459982580,"y":33.208},{"x":1756459922450,"y":29.477},{"x":1756459862345,"y":28.128},{"x":1756459802195,"y":35.918},{"x":1756459742058,"y":34.841},{"x":1756459681914,"y":26.744},{"x":1756459621790,"y":25.97},{"x":1756459561669,"y":26.182},{"x":1756459501536,"y":31.541},{"x":1756459441407,"y":29.18},{"x":1756459381289,"y":59.198},{"x":1756459321160,"y":45.653},{"x":1756459261015,"y":27.168},{"x":1756459201063,"y":36.635},{"x":1756459140899,"y":37.541},{"x":1756459080769,"y":25.2},{"x":1756459020688,"y":30.857},{"x":1756458960579,"y":30.318},{"x":1756458900400,"y":31.391},{"x":1756458840247,"y":32.82},{"x":1756458782956,"y":29.538},{"x":1756458722809,"y":43.189},{"x":1756458662645,"y":39.697},{"x":1756458602488,"y":41.92},{"x":1756458542366,"y":36.966},{"x":1756458482243,"y":36.143},{"x":1756458422107,"y":40.11},{"x":1756458361977,"y":31.254},{"x":1756458301776,"y":21.682},{"x":1756458241637,"y":25.115},{"x":1756458181520,"y":41.827},{"x":1756458121387,"y":37.884},{"x":1756458061263,"y":44.56},{"x":1756458000276,"y":47.171},{"x":1756457942962,"y":38.635},{"x":1756457882818,"y":28.87},{"x":1756457822726,"y":26.033},{"x":1756457762574,"y":32.489},{"x":1756457702383,"y":28.649},{"x":1756457642245,"y":20.933},{"x":1756457582112,"y":36.176},{"x":1756457521960,"y":23.306},{"x":1756457461657,"y":35.182},{"x":1756457400956,"y":28.792},{"x":1756457340788,"y":26.351},{"x":1756457280684,"y":21.47},{"x":1756457220564,"y":30.977},{"x":1756457160410,"y":35.142},{"x":1756457100330,"y":35.628},{"x":1756457043010,"y":48.464},{"x":1756456982885,"y":48.002},{"x":1756456922733,"y":50.053},{"x":1756456862619,"y":48.064},{"x":1756456802491,"y":46.783},{"x":1756456742374,"y":35.281},{"x":1756456682251,"y":31.699},{"x":1756456622096,"y":32.458},{"x":1756456561391,"y":30.99},{"x":1756456501251,"y":35.8},{"x":1756456441105,"y":32.519},{"x":1756456380972,"y":34.885},{"x":1756456320839,"y":48.518},{"x":1756456260716,"y":38.348},{"x":1756456200672,"y":33.317},{"x":1756456140371,"y":32.827},{"x":1756456080347,"y":25.765},{"x":1756456022916,"y":32.79},{"x":1756455962807,"y":32.022},{"x":1756455900992,"y":32.452},{"x":1756455840865,"y":30.852},{"x":1756455780735,"y":38.11},{"x":1756455720603,"y":43.432},{"x":1756455660547,"y":32.66},{"x":1756455606296,"y":32.219},{"x":1756455542508,"y":32.797},{"x":1756455482372,"y":38.074},{"x":1756455422260,"y":40.699},{"x":1756455362115,"y":51.314},{"x":1756455301975,"y":38.352},{"x":1756455241852,"y":42.714},{"x":1756455181729,"y":37.541},{"x":1756455121581,"y":30.808},{"x":1756455061419,"y":30.928},{"x":1756455000921,"y":38.788},{"x":1756454940728,"y":39.428},{"x":1756454880628,"y":36.096},{"x":1756454820531,"y":31.913},{"x":1756454760376,"y":31.429},{"x":1756454702973,"y":30.8},{"x":1756454642870,"y":27.872},{"x":1756454582714,"y":31.454},{"x":1756454522593,"y":31.692},{"x":1756454462496,"y":36.168},{"x":1756454400627,"y":39.793},{"x":1756454340312,"y":55.963},{"x":1756454280238,"y":41.682},{"x":1756454222893,"y":26.879},{"x":1756454162769,"y":27.798},{"x":1756454102644,"y":29.431},{"x":1756454042492,"y":32.045},{"x":1756453982365,"y":35.272},{"x":1756453922233,"y":31.655},{"x":1756453862102,"y":31.876},{"x":1756453801970,"y":43.327},{"x":1756453741831,"y":32.76},{"x":1756453681655,"y":37.816},{"x":1756453621511,"y":33.644},{"x":1756453561373,"y":27.613},{"x":1756453501266,"y":39.203},{"x":1756453441089,"y":35.789},{"x":1756453380940,"y":28.894},{"x":1756453320830,"y":31.158},{"x":1756453260693,"y":34.493},{"x":1756453200582,"y":34.801},{"x":1756453140395,"y":28.963},{"x":1756453080297,"y":28.181},{"x":1756453022916,"y":26.89},{"x":1756452962789,"y":27.967},{"x":1756452902658,"y":33.199},{"x":1756452842528,"y":28.72},{"x":1756452782401,"y":28.842},{"x":1756452722275,"y":31.259},{"x":1756452662148,"y":40.488},{"x":1756452602029,"y":40.513},{"x":1756452541855,"y":39.539},{"x":1756452481710,"y":43.476},{"x":1756452421585,"y":42.892},{"x":1756452361460,"y":38.881},{"x":1756452301153,"y":35.97},{"x":1756452240989,"y":34.358},{"x":1756452180863,"y":29.652},{"x":1756452120742,"y":34.792},{"x":1756452060597,"y":36.636},{"x":1756452000491,"y":33.211},{"x":1756451940326,"y":32.975},{"x":1756451882922,"y":36.714},{"x":1756451822792,"y":40.602},{"x":1756451762335,"y":45.268},{"x":1756451702207,"y":36.894},{"x":1756451642079,"y":37.836},{"x":1756451581943,"y":39.179},{"x":1756451521779,"y":39.688},{"x":1756451461531,"y":42.5},{"x":1756451400751,"y":45.758},{"x":1756451340575,"y":42.644},{"x":1756451282869,"y":45.794},{"x":1756451222722,"y":46.195},{"x":1756451162593,"y":46.775},{"x":1756451102452,"y":50.526},{"x":1756451042333,"y":54.258},{"x":1756450982201,"y":56.39},{"x":1756450922077,"y":57.295},{"x":1756450861937,"y":52.091},{"x":1756450803070,"y":44.964},{"x":1756450742839,"y":44.387},{"x":1756450682704,"y":47.19},{"x":1756450622568,"y":47.717},{"x":1756450562444,"y":41.244},{"x":1756450502322,"y":45.967},{"x":1756450442196,"y":41.129},{"x":1756450382078,"y":42.706},{"x":1756450321949,"y":49.86},{"x":1756450261807,"y":48.722},{"x":1756450200826,"y":41.47},{"x":1756450140695,"y":43.154},{"x":1756450080653,"y":44.838},{"x":1756450020428,"y":51.187},{"x":1756449960289,"y":49.859},{"x":1756449903020,"y":43.079},{"x":1756449842886,"y":44.357},{"x":1756449782752,"y":39.991},{"x":1756449722635,"y":48.686},{"x":1756449662529,"y":43.772},{"x":1756449602371,"y":40.676},{"x":1756449542240,"y":40.784},{"x":1756449482112,"y":55.536},{"x":1756449421973,"y":59.653},{"x":1756449361136,"y":50.077},{"x":1756449300990,"y":49.138},{"x":1756449240821,"y":53.473},{"x":1756449180685,"y":61.62},{"x":1756449120558,"y":51.928},{"x":1756449060521,"y":51.356},{"x":1756449000307,"y":50.124},{"x":1756448942996,"y":44.578},{"x":1756448882857,"y":49.684},{"x":1756448822728,"y":46.222},{"x":1756448762574,"y":48.571},{"x":1756448702443,"y":42.176},{"x":1756448642316,"y":44.258},{"x":1756448582179,"y":46.094},{"x":1756448522057,"y":54.898},{"x":1756448461501,"y":66.936},{"x":1756448401372,"y":51.234},{"x":1756448341243,"y":79.135},{"x":1756448281120,"y":60.251},{"x":1756448220979,"y":43.289},{"x":1756448160846,"y":44.867},{"x":1756448100719,"y":62.114},{"x":1756448040441,"y":49.18},{"x":1756447980289,"y":67.4},{"x":1756447923024,"y":47.786},{"x":1756447862845,"y":46.34},{"x":1756447802693,"y":64.032},{"x":1756447742567,"y":43.334},{"x":1756447682437,"y":49.368},{"x":1756447622305,"y":48.961},{"x":1756447562185,"y":44.183},{"x":1756447502059,"y":31.064},{"x":1756447441907,"y":26.916},{"x":1756447381789,"y":24.617},{"x":1756447321660,"y":24.686},{"x":1756447261550,"y":23.887},{"x":1756447201621,"y":22.74},{"x":1756447141032,"y":23.914},{"x":1756447080869,"y":28.14},{"x":1756447020779,"y":26.939},{"x":1756446960640,"y":29.461},{"x":1756446900445,"y":36.846},{"x":1756446840347,"y":29.358},{"x":1756446780222,"y":34.717},{"x":1756446722936,"y":27.379},{"x":1756446662815,"y":29.873},{"x":1756446602691,"y":28.063},{"x":1756446542559,"y":25.902},{"x":1756446482439,"y":26.422},{"x":1756446422313,"y":27.86},{"x":1756446362173,"y":24.271},{"x":1756446302056,"y":28.666},{"x":1756446241903,"y":32.292},{"x":1756446181754,"y":36.828},{"x":1756446121633,"y":33.646},{"x":1756446061507,"y":28.604},{"x":1756446000785,"y":31.668},{"x":1756445940523,"y":26.281},{"x":1756445880419,"y":24.752},{"x":1756445822944,"y":29.222},{"x":1756445762811,"y":31.098},{"x":1756445702692,"y":28.71},{"x":1756445642572,"y":29.203},{"x":1756445582444,"y":26.635},{"x":1756445522308,"y":41.371},{"x":1756445462187,"y":55.87},{"x":1756445402057,"y":55.603},{"x":1756445341905,"y":52.662},{"x":1756445281779,"y":53.004},{"x":1756445221633,"y":35.809},{"x":1756445161511,"y":32.512},{"x":1756445101094,"y":33.268},{"x":1756445040943,"y":32.605},{"x":1756444980781,"y":28.924},{"x":1756444920651,"y":29.822},{"x":1756444860577,"y":29.465},{"x":1756444800500,"y":29.28},{"x":1756444742621,"y":30.838},{"x":1756444682471,"y":28.847},{"x":1756444622348,"y":32.972},{"x":1756444562218,"y":28.675},{"x":1756444502093,"y":44.798},{"x":1756444441887,"y":43.408},{"x":1756444381717,"y":37.722},{"x":1756444321559,"y":41.269},{"x":1756444261414,"y":43.974},{"x":1756444201074,"y":25.075},{"x":1756444140937,"y":28.991},{"x":1756444080721,"y":27.676},{"x":1756444020519,"y":31.092},{"x":1756443960480,"y":30.792},{"x":1756443900330,"y":30.802},{"x":1756443840171,"y":30.784},{"x":1756443782896,"y":34.075},{"x":1756443722763,"y":30.686},{"x":1756443662646,"y":33.085},{"x":1756443600664,"y":27.487},{"x":1756443540483,"y":26.696},{"x":1756443480248,"y":31.181},{"x":1756443422948,"y":31.241},{"x":1756443362819,"y":33.168},{"x":1756443302667,"y":32.477},{"x":1756443242548,"y":36.442},{"x":1756443182384,"y":34.331},{"x":1756443122262,"y":34.382},{"x":1756443062128,"y":33.444},{"x":1756443000890,"y":30.774},{"x":1756442940711,"y":35.461},{"x":1756442880623,"y":35.975},{"x":1756442820506,"y":38.524},{"x":1756442760252,"y":37.944},{"x":1756442700207,"y":38.436},{"x":1756442642903,"y":42.194},{"x":1756442582767,"y":50.911},{"x":1756442522640,"y":49.644},{"x":1756442462526,"y":43.849},{"x":1756442402385,"y":45.642},{"x":1756442342261,"y":39.932},{"x":1756442282113,"y":39.47},{"x":1756442221970,"y":49.487},{"x":1756442161245,"y":40.794},{"x":1756442101085,"y":35.74},{"x":1756442040945,"y":35.772},{"x":1756441980810,"y":38.743},{"x":1756441920689,"y":43.622},{"x":1756441860564,"y":39.75},{"x":1756441800544,"y":40.958},{"x":1756441740352,"y":41.534},{"x":1756441682968,"y":39.978},{"x":1756441622854,"y":40.026},{"x":1756441562714,"y":44.698},{"x":1756441501010,"y":40.916},{"x":1756441440856,"y":38.708},{"x":1756441380720,"y":37.922},{"x":1756441320245,"y":37.348},{"x":1756441262829,"y":43.177},{"x":1756441202722,"y":41.918},{"x":1756441142578,"y":42.403},{"x":1756441082448,"y":42.152},{"x":1756441022311,"y":42.15},{"x":1756440961591,"y":40.339},{"x":1756440901485,"y":36.786},{"x":1756440841321,"y":36.518},{"x":1756440781165,"y":37.802},{"x":1756440721001,"y":43.392},{"x":1756440660838,"y":38.239},{"x":1756440601259,"y":48.588},{"x":1756440541137,"y":48.101},{"x":1756440481599,"y":47.568},{"x":1756440421449,"y":41.372},{"x":1756440361665,"y":38.814},{"x":1756440301530,"y":42.389},{"x":1756440241399,"y":39.007},{"x":1756440181274,"y":38.27},{"x":1756440121154,"y":36.786},{"x":1756440064026,"y":41.136},{"x":1756440002243,"y":39.634},{"x":1756439941920,"y":43.187},{"x":1756439881792,"y":40.171},{"x":1756439821642,"y":45.67},{"x":1756439761499,"y":43.78},{"x":1756439701377,"y":48.21},{"x":1756439641253,"y":50.694},{"x":1756439581101,"y":39.113},{"x":1756439520974,"y":55.867},{"x":1756439460809,"y":39.794},{"x":1756439402629,"y":30.588},{"x":1756439342497,"y":29.262},{"x":1756439282364,"y":30.761},{"x":1756439222255,"y":36.965},{"x":1756439162116,"y":40.507},{"x":1756439101978,"y":40.853},{"x":1756439041844,"y":38.758},{"x":1756438981720,"y":46.234},{"x":1756438921596,"y":40.039},{"x":1756438861466,"y":31.772},{"x":1756438801101,"y":40.808},{"x":1756438740949,"y":56.377},{"x":1756438680822,"y":61.001},{"x":1756438620692,"y":56.648},{"x":1756438560595,"y":57.929},{"x":1756438500498,"y":27.875},{"x":1756438440336,"y":27.986},{"x":1756438383012,"y":39.616},{"x":1756438322871,"y":34.536},{"x":1756438262746,"y":33.829},{"x":1756438202600,"y":32.587},{"x":1756438142472,"y":36.416},{"x":1756438082353,"y":35.778},{"x":1756438022227,"y":33.25},{"x":1756437962074,"y":35.734},{"x":1756437900792,"y":29.248},{"x":1756437840689,"y":29.694},{"x":1756437780498,"y":35.288},{"x":1756437720398,"y":37.019},{"x":1756437661511,"y":31.435},{"x":1756437601389,"y":32.627},{"x":1756437540461,"y":36.572},{"x":1756437480327,"y":35.164},{"x":1756437422992,"y":29.111},{"x":1756437362831,"y":28.193},{"x":1756437302715,"y":27.941},{"x":1756437242559,"y":33.758},{"x":1756437182377,"y":35.076},{"x":1756437122255,"y":34.075},{"x":1756437062101,"y":40.907},{"x":1756437001042,"y":36.833},{"x":1756436942486,"y":33.359},{"x":1756436881588,"y":32.678},{"x":1756436821460,"y":33.208},{"x":1756436762075,"y":31.085},{"x":1756436674875,"y":31.0},{"x":1756436666582,"y":25.158},{"x":1756436341121,"y":34.462},{"x":1756436280983,"y":38.02},{"x":1756436220854,"y":32.4},{"x":1756436160737,"y":31.126},{"x":1756436100607,"y":36.323},{"x":1756436040426,"y":29.796},{"x":1756435980343,"y":30.084},{"x":1756435922931,"y":33.242},{"x":1756435862793,"y":32.833},{"x":1756435802665,"y":38.819},{"x":1756435742515,"y":34.157},{"x":1756435682382,"y":30.664},{"x":1756435622260,"y":30.491},{"x":1756435562101,"y":32.977},{"x":1756435501959,"y":36.509},{"x":1756435441831,"y":33.707},{"x":1756435381678,"y":32.378},{"x":1756435321552,"y":33.264},{"x":1756435261415,"y":33.852},{"x":1756435200791,"y":34.824},{"x":1756435140616,"y":32.998},{"x":1756435080475,"y":33.34},{"x":1756435020464,"y":30.324},{"x":1756434962938,"y":29.28},{"x":1756434902815,"y":29.473},{"x":1756434842652,"y":33.166},{"x":1756434782507,"y":33.386},{"x":1756434722379,"y":38.491},{"x":1756434662257,"y":33.313},{"x":1756434602120,"y":36.416},{"x":1756434541961,"y":34.03},{"x":1756434481823,"y":47.215},{"x":1756434421684,"y":46.984},{"x":1756434361544,"y":39.689},{"x":1756434300961,"y":40.764},{"x":1756434240818,"y":41.886},{"x":1756434180694,"y":37.502},{"x":1756434120567,"y":38.887},{"x":1756434060465,"y":34.72},{"x":1756434000348,"y":31.933},{"x":1756433940323,"y":36.347},{"x":1756433882902,"y":39.698},{"x":1756433822779,"y":40.536},{"x":1756433762389,"y":33.744},{"x":1756433702253,"y":33.733},{"x":1756433642114,"y":37.093},{"x":1756433581974,"y":31.759},{"x":1756433521825,"y":31.999},{"x":1756433461469,"y":31.626},{"x":1756433400780,"y":30.464},{"x":1756433340614,"y":29.196},{"x":1756433280316,"y":37.703},{"x":1756433222968,"y":39.011},{"x":1756433162843,"y":35.426},{"x":1756433102718,"y":35.759},{"x":1756433042595,"y":32.91},{"x":1756432982457,"y":32.363},{"x":1756432922337,"y":34.856},{"x":1756432862207,"y":40.417},{"x":1756432803076,"y":39.168},{"x":1756432742884,"y":43.284},{"x":1756432682771,"y":41.263},{"x":1756432622626,"y":41.135},{"x":1756432562493,"y":32.717},{"x":1756432502368,"y":38.446},{"x":1756432442177,"y":38.296},{"x":1756432382038,"y":38.536},{"x":1756432321913,"y":33.593},{"x":1756432261655,"y":35.896},{"x":1756432201053,"y":32.246},{"x":1756432140893,"y":36.941},{"x":1756432080772,"y":37.616},{"x":1756432020643,"y":31.657},{"x":1756431960529,"y":35.045},{"x":1756431900461,"y":31.801},{"x":1756431840252,"y":29.959},{"x":1756431782954,"y":33.796},{"x":1756431722819,"y":34.013},{"x":1756431662683,"y":31.225},{"x":1756431602562,"y":30.905},{"x":1756431542422,"y":29.585},{"x":1756431482308,"y":32.957},{"x":1756431422181,"y":35.294},{"x":1756431362046,"y":31.192},{"x":1756431301899,"y":54.588},{"x":1756431241769,"y":46.207},{"x":1756431181633,"y":43.17},{"x":1756431121494,"y":46.478},{"x":1756431061375,"y":45.67},{"x":1756431001239,"y":37.885},{"x":1756430941107,"y":31.512},{"x":1756430880952,"y":41.68},{"x":1756430820818,"y":42.548},{"x":1756430760701,"y":42.709},{"x":1756430700590,"y":48.53},{"x":1756430640493,"y":46.646},{"x":1756430580300,"y":36.209},{"x":1756430522929,"y":29.658},{"x":1756430462805,"y":28.448},{"x":1756430402677,"y":28.314},{"x":1756430342529,"y":37.441},{"x":1756430282393,"y":34.872},{"x":1756430222259,"y":34.95},{"x":1756430162132,"y":32.765},{"x":1756430101990,"y":31.865},{"x":1756430041798,"y":30.115},{"x":1756429981652,"y":28.859},{"x":1756429921451,"y":36.245},{"x":1756429861297,"y":29.678},{"x":1756429800706,"y":29.161},{"x":1756429740549,"y":34.486},{"x":1756429682948,"y":36.899},{"x":1756429622823,"y":32.394},{"x":1756429562692,"y":37.046},{"x":1756429502567,"y":37.996},{"x":1756429442420,"y":41.836},{"x":1756429382297,"y":39.434},{"x":1756429322160,"y":39.473},{"x":1756429262007,"y":32.142},{"x":1756429201638,"y":30.911},{"x":1756429141067,"y":34.922},{"x":1756429080926,"y":33.269},{"x":1756429020790,"y":30.499},{"x":1756428960693,"y":29.57},{"x":1756428900616,"y":31.372},{"x":1756428840409,"y":30.924},{"x":1756428780269,"y":30.09},{"x":1756428722961,"y":30.091},{"x":1756428662814,"y":38.298},{"x":1756428602689,"y":32.458},{"x":1756428542509,"y":38.626},{"x":1756428482360,"y":40.134},{"x":1756428422230,"y":31.997},{"x":1756428362098,"y":37.454},{"x":1756428301955,"y":35.49},{"x":1756428241828,"y":37.802},{"x":1756428181705,"y":32.443},{"x":1756428121587,"y":34.774},{"x":1756428061439,"y":34.516},{"x":1756428000864,"y":46.026},{"x":1756427940541,"y":46.465},{"x":1756427880428,"y":48.726},{"x":1756427820342,"y":47.4},{"x":1756427762885,"y":43.144},{"x":1756427702748,"y":33.568},{"x":1756427642623,"y":30.838},{"x":1756427582488,"y":31.662},{"x":1756427522365,"y":30.673},{"x":1756427462242,"y":39.388},{"x":1756427402109,"y":44.744},{"x":1756427341971,"y":35.746},{"x":1756427281852,"y":38.309},{"x":1756427221713,"y":37.526},{"x":1756427161585,"y":33.457},{"x":1756427100977,"y":29.513},{"x":1756427040817,"y":34.747},{"x":1756426980689,"y":35.021},{"x":1756426920566,"y":28.992},{"x":1756426860503,"y":28.463},{"x":1756426800414,"y":37.998},{"x":1756426740071,"y":45.295},{"x":1756426682858,"y":38.893},{"x":1756426622729,"y":35.311},{"x":1756426562473,"y":37.328},{"x":1756426502350,"y":33.932},{"x":1756426442227,"y":37.451},{"x":1756426382085,"y":31.811},{"x":1756426321931,"y":34.536},{"x":1756426261770,"y":35.848},{"x":1756426200765,"y":35.605},{"x":1756426140587,"y":36.252},{"x":1756426080477,"y":30.012},{"x":1756426020386,"y":30.374},{"x":1756425960202,"y":33.023},{"x":1756425902921,"y":39.667},{"x":1756425842794,"y":44.957},{"x":1756425782651,"y":40.771},{"x":1756425722522,"y":36.62},{"x":1756425662390,"y":30.974},{"x":1756425600571,"y":31.957},{"x":1756425540229,"y":43.351},{"x":1756425482988,"y":46.727},{"x":1756425422869,"y":42.302},{"x":1756425362736,"y":42.299},{"x":1756425302612,"y":42.901},{"x":1756425242494,"y":37.412},{"x":1756425182368,"y":42.636},{"x":1756425122242,"y":44.275},{"x":1756425062103,"y":44.633},{"x":1756425001941,"y":46.208},{"x":1756424941811,"y":41.236},{"x":1756424881685,"y":30.919},{"x":1756424821537,"y":34.746},{"x":1756424761390,"y":32.671},{"x":1756424701271,"y":30.336},{"x":1756424641025,"y":28.979},{"x":1756424580881,"y":30.612},{"x":1756424520770,"y":40.532},{"x":1756424460653,"y":34.901},{"x":1756424400585,"y":37.548},{"x":1756424340391,"y":40.698},{"x":1756424280251,"y":31.426},{"x":1756424222926,"y":29.567},{"x":1756424162799,"y":30.348},{"x":1756424102680,"y":34.664},{"x":1756424042540,"y":29.828},{"x":1756423982406,"y":30.716},{"x":1756423922278,"y":34.165},{"x":1756423862138,"y":41.192},{"x":1756423801988,"y":36.481},{"x":1756423741847,"y":36.791},{"x":1756423681721,"y":35.491},{"x":1756423621582,"y":32.078},{"x":1756423561457,"y":33.686},{"x":1756423501109,"y":42.499},{"x":1756423440937,"y":43.222},{"x":1756423380810,"y":43.95},{"x":1756423320681,"y":43.717},{"x":1756423260568,"y":41.488},{"x":1756423200487,"y":32.389},{"x":1756423140208,"y":35.1},{"x":1756423082916,"y":40.405},{"x":1756423022781,"y":41.501},{"x":1756422962376,"y":32.724},{"x":1756422902241,"y":34.781},{"x":1756422842111,"y":31.45},{"x":1756422781964,"y":31.972},{"x":1756422721798,"y":37.04},{"x":1756422661510,"y":33.68},{"x":1756422600792,"y":35.988},{"x":1756422540608,"y":33.686},{"x":1756422480486,"y":32.027},{"x":1756422420266,"y":35.638},{"x":1756422362959,"y":32.906},{"x":1756422302810,"y":36.97},{"x":1756422242664,"y":47.441},{"x":1756422182493,"y":47.39},{"x":1756422122340,"y":38.32},{"x":1756422062198,"y":37.912},{"x":1756422002052,"y":38.551},{"x":1756421941845,"y":35.898},{"x":1756421881729,"y":36.137},{"x":1756421821593,"y":31.381},{"x":1756421761460,"y":34.944},{"x":1756421700767,"y":42.121},{"x":1756421640594,"y":41.402},{"x":1756421580473,"y":33.244},{"x":1756421520268,"y":33.29},{"x":1756421462950,"y":35.311},{"x":1756421402815,"y":35.778},{"x":1756421342696,"y":40.289},{"x":1756421282560,"y":36.106},{"x":1756421222439,"y":31.936},{"x":1756421162300,"y":31.116},{"x":1756421102176,"y":30.826},{"x":1756421042039,"y":37.27},{"x":1756420981897,"y":33.896},{"x":1756420921770,"y":33.563},{"x":1756420861653,"y":36.078},{"x":1756420801492,"y":34.97},{"x":1756420741361,"y":33.986},{"x":1756420681238,"y":31.651},{"x":1756420621111,"y":32.137},{"x":1756420560965,"y":48.956},{"x":1756420500851,"y":51.434},{"x":1756420440688,"y":43.806},{"x":1756420380604,"y":48.566},{"x":1756420320454,"y":43.04},{"x":1756420260360,"y":34.945},{"x":1756420203023,"y":34.674},{"x":1756420142891,"y":39.469},{"x":1756420082754,"y":40.34},{"x":1756420022637,"y":32.513},{"x":1756419962490,"y":34.87},{"x":1756419902362,"y":35.87},{"x":1756419842230,"y":36.167},{"x":1756419782098,"y":36.02},{"x":1756419721937,"y":32.681},{"x":1756419661150,"y":32.818},{"x":1756419601050,"y":36.134},{"x":1756419540881,"y":35.798},{"x":1756419480753,"y":41.18},{"x":1756419420661,"y":54.437},{"x":1756419360539,"y":51.754},{"x":1756419300388,"y":58.594},{"x":1756419242974,"y":59.39},{"x":1756419182814,"y":55.444},{"x":1756419122669,"y":39.486},{"x":1756419062518,"y":48.271},{"x":1756419002368,"y":47.67},{"x":1756418942231,"y":48.702},{"x":1756418882091,"y":48.853},{"x":1756418821954,"y":52.715},{"x":1756418761739,"y":35.885},{"x":1756418701601,"y":38.971},{"x":1756418641482,"y":39.787},{"x":1756418581373,"y":35.555},{"x":1756418521215,"y":37.772},{"x":1756418464097,"y":37.373},{"x":1756418401396,"y":34.817},{"x":1756418340883,"y":34.756},{"x":1756418280762,"y":31.074},{"x":1756418220632,"y":32.198},{"x":1756418160551,"y":34.799},{"x":1756418100451,"y":34.229},{"x":1756418040267,"y":44.653},{"x":1756417980037,"y":36.786},{"x":1756417922886,"y":36.83},{"x":1756417862760,"y":34.878},{"x":1756417802621,"y":32.496},{"x":1756417742485,"y":31.915},{"x":1756417682366,"y":30.905},{"x":1756417622240,"y":33.275},{"x":1756417562122,"y":35.978},{"x":1756417501979,"y":37.108},{"x":1756417441861,"y":38.515},{"x":1756417381712,"y":39.653},{"x":1756417321568,"y":33.222},{"x":1756417261429,"y":38.929},{"x":1756417201031,"y":31.842},{"x":1756417140723,"y":30.803},{"x":1756417080603,"y":30.869},{"x":1756417020475,"y":30.694},{"x":1756416960392,"y":33.172},{"x":1756416900212,"y":38.724},{"x":1756416842837,"y":38.935},{"x":1756416782708,"y":40.126},{"x":1756416722575,"y":44.508},{"x":1756416662447,"y":40.012},{"x":1756416602330,"y":34.938},{"x":1756416542200,"y":36.121},{"x":1756416482066,"y":36.29},{"x":1756416421918,"y":33.09},{"x":1756416361789,"y":32.806},{"x":1756416301650,"y":37.698},{"x":1756416241521,"y":31.099},{"x":1756416181401,"y":35.19},{"x":1756416121266,"y":36.406},{"x":1756416061106,"y":38.405},{"x":1756416000976,"y":41.456},{"x":1756415940815,"y":36.63},{"x":1756415880690,"y":36.648},{"x":1756415820586,"y":33.365},{"x":1756415760540,"y":33.208},{"x":1756415700340,"y":38.923},{"x":1756415642999,"y":39.722},{"x":1756415582891,"y":39.356},{"x":1756415522692,"y":51.095},{"x":1756415462541,"y":50.384},{"x":1756415402388,"y":48.881},{"x":1756415342243,"y":52.056},{"x":1756415282108,"y":50.544},{"x":1756415221969,"y":40.627},{"x":1756415161529,"y":41.063},{"x":1756415101353,"y":40.45},{"x":1756415041209,"y":54.095},{"x":1756414981081,"y":48.29},{"x":1756414920933,"y":45.863},{"x":1756414860816,"y":44.098},{"x":1756414802007,"y":42.792},{"x":1756414741835,"y":38.816},{"x":1756414681717,"y":40.348},{"x":1756414621577,"y":42.317},{"x":1756414561441,"y":46.578},{"x":1756414500809,"y":45.874},{"x":1756414440646,"y":40.675},{"x":1756414380553,"y":33.976},{"x":1756414320408,"y":33.498},{"x":1756414260317,"y":33.281},{"x":1756414202932,"y":32.418},{"x":1756414142809,"y":36.302},{"x":1756414082673,"y":34.84},{"x":1756414022539,"y":41.196},{"x":1756413962422,"y":48.232},{"x":1756413902280,"y":41.074},{"x":1756413842145,"y":43.338},{"x":1756413782021,"y":36.076},{"x":1756413721891,"y":31.858},{"x":1756413661757,"y":36.682},{"x":1756413601624,"y":38.444},{"x":1756413541488,"y":33.548},{"x":1756413481351,"y":33.097},{"x":1756413421202,"y":41.848},{"x":1756413361079,"y":40.714},{"x":1756413300860,"y":40.193},{"x":1756413240702,"y":50.201},{"x":1756413180601,"y":49.643},{"x":1756413120475,"y":50.07},{"x":1756413060353,"y":47.844},{"x":1756413003018,"y":47.532},{"x":1756412942883,"y":42.564},{"x":1756412882758,"y":42.403},{"x":1756412822638,"y":42.456},{"x":1756412762500,"y":46.556},{"x":1756412702382,"y":45.083},{"x":1756412642252,"y":34.325},{"x":1756412582123,"y":44.137},{"x":1756412521994,"y":36.857},{"x":1756412461229,"y":33.743},{"x":1756412401096,"y":33.898},{"x":1756412340704,"y":35.653},{"x":1756412280595,"y":38.185},{"x":1756412220506,"y":35.462},{"x":1756412160416,"y":39.643},{"x":1756412100480,"y":46.144},{"x":1756412040363,"y":38.632},{"x":1756411982982,"y":45.834},{"x":1756411922858,"y":66.466},{"x":1756411862684,"y":66.86},{"x":1756411802541,"y":67.316},{"x":1756411742414,"y":67.226},{"x":1756411682283,"y":74.74},{"x":1756411622148,"y":66.271},{"x":1756411562006,"y":74.314},{"x":1756411501879,"y":74.01},{"x":1756411441752,"y":59.778},{"x":1756411381617,"y":66.526},{"x":1756411321479,"y":58.964},{"x":1756411261362,"y":60.836},{"x":1756411202196,"y":38.062},{"x":1756411141970,"y":41.124},{"x":1756411081847,"y":43.394},{"x":1756411021696,"y":38.994},{"x":1756410961561,"y":38.303},{"x":1756410900825,"y":35.309},{"x":1756410840697,"y":34.988},{"x":1756410780615,"y":41.143},{"x":1756410720531,"y":39.602},{"x":1756410660423,"y":43.412},{"x":1756410603011,"y":37.393},{"x":1756410542873,"y":33.236},{"x":1756410482754,"y":50.225},{"x":1756410422625,"y":46.98},{"x":1756410362488,"y":48.036},{"x":1756410302361,"y":47.658},{"x":1756410242222,"y":38.431},{"x":1756410182098,"y":36.284},{"x":1756410121963,"y":34.015},{"x":1756410061792,"y":39.452},{"x":1756410000862,"y":44.489},{"x":1756409940689,"y":35.491},{"x":1756409880550,"y":43.254},{"x":1756409820475,"y":32.172},{"x":1756409760257,"y":44.874},{"x":1756409703014,"y":52.168},{"x":1756409642886,"y":66.307},{"x":1756409582753,"y":64.988},{"x":1756409522630,"y":65.201},{"x":1756409462506,"y":59.995},{"x":1756409402371,"y":57.892},{"x":1756409342234,"y":64.135},{"x":1756409282087,"y":62.089},{"x":1756409221945,"y":53.245},{"x":1756409161807,"y":53.324},{"x":1756409101682,"y":53.564},{"x":1756409041485,"y":50.11},{"x":1756408981363,"y":55.721},{"x":1756408921220,"y":44.833},{"x":1756408861081,"y":69.823},{"x":1756408801015,"y":57.643},{"x":1756408740791,"y":67.367},{"x":1756408680667,"y":60.12},{"x":1756408620537,"y":52.968},{"x":1756408560522,"y":40.61},{"x":1756408500240,"y":45.642},{"x":1756408440211,"y":46.95},{"x":1756408382908,"y":51.889},{"x":1756408322738,"y":46.499},{"x":1756408262569,"y":44.736},{"x":1756408202402,"y":45.691},{"x":1756408142277,"y":42.475},{"x":1756408082148,"y":45.97},{"x":1756408022016,"y":42.377},{"x":1756407961659,"y":46.613},{"x":1756407901503,"y":45.131},{"x":1756407841306,"y":44.382},{"x":1756407781170,"y":49.482},{"x":1756407721030,"y":45.619},{"x":1756407660893,"y":59.716},{"x":1756407602113,"y":63.383},{"x":1756407541912,"y":61.446},{"x":1756407481785,"y":60.553},{"x":1756407421658,"y":57.17},{"x":1756407361515,"y":49.842},{"x":1756407300773,"y":66.322},{"x":1756407240620,"y":44.411},{"x":1756407180534,"y":46.402},{"x":1756407120424,"y":41.74},{"x":1756407060271,"y":35.888},{"x":1756407002927,"y":32.874},{"x":1756406942766,"y":33.348},{"x":1756406882641,"y":46.528},{"x":1756406822497,"y":47.081},{"x":1756406762374,"y":53.646},{"x":1756406702236,"y":61.225},{"x":1756406642107,"y":67.142},{"x":1756406581977,"y":46.57},{"x":1756406521839,"y":61.422},{"x":1756406461715,"y":43.993},{"x":1756406401586,"y":41.863},{"x":1756406341467,"y":66.872},{"x":1756406281343,"y":61.669},{"x":1756406221215,"y":59.542},{"x":1756406161093,"y":53.952},{"x":1756406100957,"y":53.824},{"x":1756406040806,"y":59.173},{"x":1756405980687,"y":52.35},{"x":1756405920605,"y":56.866},{"x":1756405860466,"y":53.41},{"x":1756405800402,"y":50.671},{"x":1756405742945,"y":44.953},{"x":1756405682804,"y":48.251},{"x":1756405622676,"y":62.598},{"x":1756405562548,"y":42.386},{"x":1756405502417,"y":53.581},{"x":1756405442306,"y":51.827},{"x":1756405382158,"y":59.063},{"x":1756405322036,"y":52.037},{"x":1756405261178,"y":55.026},{"x":1756405201057,"y":58.218},{"x":1756405140899,"y":48.977},{"x":1756405080778,"y":54.546},{"x":1756405020699,"y":54.473},{"x":1756404960550,"y":65.416},{"x":1756404900456,"y":71.807},{"x":1756404840267,"y":64.598},{"x":1756404782997,"y":67.412},{"x":1756404722825,"y":66.696},{"x":1756404662687,"y":66.913},{"x":1756404602512,"y":50.221},{"x":1756404542378,"y":48.029},{"x":1756404482270,"y":46.642},{"x":1756404422119,"y":46.999},{"x":1756404361777,"y":48.061},{"x":1756404301651,"y":54.394},{"x":1756404241498,"y":56.284},{"x":1756404181364,"y":60.541},{"x":1756404121230,"y":60.784},{"x":1756404061114,"y":54.797},{"x":1756404000318,"y":43.207},{"x":1756403943007,"y":40.448},{"x":1756403882884,"y":42.318},{"x":1756403822755,"y":45.044},{"x":1756403762651,"y":50.707},{"x":1756403702504,"y":56.67},{"x":1756403642382,"y":61.039},{"x":1756403582242,"y":64.109},{"x":1756403522109,"y":58.376},{"x":1756403461953,"y":62.575},{"x":1756403401824,"y":57.383},{"x":1756403341698,"y":50.664},{"x":1756403281514,"y":50.698},{"x":1756403221383,"y":37.762},{"x":1756403161256,"y":42.85},{"x":1756403101136,"y":38.804},{"x":1756403040959,"y":38.147},{"x":1756402980819,"y":38.539},{"x":1756402920698,"y":49.392},{"x":1756402860583,"y":56.647},{"x":1756402800565,"y":52.82},{"x":1756402740318,"y":48.665},{"x":1756402683017,"y":50.184},{"x":1756402622881,"y":39.354},{"x":1756402562759,"y":41.263},{"x":1756402500835,"y":45.884},{"x":1756402440690,"y":57.236},{"x":1756402380571,"y":71.954},{"x":1756402320493,"y":59.4},{"x":1756402260345,"y":65.534},{"x":1756402200272,"y":48.444},{"x":1756402142893,"y":40.789},{"x":1756402082762,"y":41.424},{"x":1756402022610,"y":37.642},{"x":1756401962488,"y":37.517},{"x":1756401902363,"y":48.521},{"x":1756401842239,"y":49.301},{"x":1756401782107,"y":50.623},{"x":1756401721979,"y":49.812},{"x":1756401661447,"y":58.096},{"x":1756401601305,"y":37.001},{"x":1756401542435,"y":33.695},{"x":1756401482309,"y":33.731},{"x":1756401422175,"y":39.161},{"x":1756401362029,"y":57.929},{"x":1756401301890,"y":38.816},{"x":1756401241759,"y":33.338},{"x":1756401181609,"y":46.465},{"x":1756401121474,"y":27.954},{"x":1756401061316,"y":30.082},{"x":1756401000821,"y":31.514},{"x":1756400940530,"y":30.8},{"x":1756400882886,"y":30.037},{"x":1756400822761,"y":30.914},{"x":1756400762624,"y":25.172},{"x":1756400702484,"y":46.883},{"x":1756400642337,"y":51.404},{"x":1756400582212,"y":61.093},{"x":1756400522060,"y":63.2},{"x":1756400461923,"y":60.967},{"x":1756400400371,"y":52.955},{"x":1756400342929,"y":52.466},{"x":1756400282804,"y":49.133},{"x":1756400222664,"y":37.702},{"x":1756400162469,"y":38.988},{"x":1756400102350,"y":56.291},{"x":1756400042222,"y":54.049},{"x":1756399982100,"y":48.01},{"x":1756399921973,"y":44.897},{"x":1756399861575,"y":43.474},{"x":1756399800817,"y":46.622},{"x":1756399740671,"y":48.1},{"x":1756399680579,"y":41.982},{"x":1756399620413,"y":40.36},{"x":1756399560267,"y":33.206},{"x":1756399503025,"y":46.986},{"x":1756399442876,"y":44.062},{"x":1756399382769,"y":46.877},{"x":1756399322619,"y":42.988},{"x":1756399262483,"y":44.514},{"x":1756399202360,"y":39.096},{"x":1756399142232,"y":35.99},{"x":1756399082104,"y":39.965},{"x":1756399021953,"y":35.077},{"x":1756398961160,"y":34.841},{"x":1756398901035,"y":36.665},{"x":1756398840890,"y":34.577},{"x":1756398780770,"y":35.314},{"x":1756398720651,"y":39.004},{"x":1756398660513,"y":34.607},{"x":1756398600251,"y":44.064},{"x":1756398542912,"y":53.881},{"x":1756398482785,"y":54.115},{"x":1756398422665,"y":39.175},{"x":1756398362527,"y":37.622},{"x":1756398302404,"y":34.736},{"x":1756398242260,"y":36.922},{"x":1756398182125,"y":32.512},{"x":1756398121984,"y":31.799},{"x":1756398061632,"y":50.633},{"x":1756398001489,"y":54.158},{"x":1756397940859,"y":50.422},{"x":1756397880730,"y":53.321},{"x":1756397820627,"y":38.923},{"x":1756397760498,"y":21.934},{"x":1756397700380,"y":22.55},{"x":1756397640404,"y":21.468},{"x":1756397582880,"y":21.293},{"x":1756397522729,"y":29.627},{"x":1756397462566,"y":36.418},{"x":1756397402436,"y":32.33},{"x":1756397342313,"y":32.564},{"x":1756397282167,"y":35.165},{"x":1756397222036,"y":25.24},{"x":1756397161647,"y":33.001},{"x":1756397101520,"y":24.126},{"x":1756397041390,"y":22.589},{"x":1756396981241,"y":22.122},{"x":1756396921108,"y":30.467},{"x":1756396863981,"y":35.497},{"x":1756396801762,"y":29.399},{"x":1756396741122,"y":29.362},{"x":1756396680966,"y":29.27},{"x":1756396620840,"y":23.065},{"x":1756396560721,"y":23.869},{"x":1756396500641,"y":23.851},{"x":1756396440503,"y":25.451},{"x":1756396380345,"y":34.69},{"x":1756396323020,"y":26.809},{"x":1756396262869,"y":46.118},{"x":1756396202742,"y":43.079},{"x":1756396142610,"y":28.042},{"x":1756396082472,"y":16.381},{"x":1756396022335,"y":21.924},{"x":1756395962204,"y":29.953},{"x":1756395901972,"y":22.062},{"x":1756395841843,"y":26.712},{"x":1756395781725,"y":20.406},{"x":1756395721594,"y":13.104},{"x":1756395661467,"y":21.875},{"x":1756395601029,"y":23.143},{"x":1756395540870,"y":11.706},{"x":1756395480729,"y":12.044},{"x":1756395420593,"y":17.5},{"x":1756395360496,"y":27.172},{"x":1756395300536,"y":26.84},{"x":1756395242970,"y":38.965},{"x":1756395182839,"y":49.387},{"x":1756395122716,"y":45.125},{"x":1756395062598,"y":39.745},{"x":1756395002464,"y":41.543},{"x":1756394942314,"y":18.764},{"x":1756394882172,"y":30.679},{"x":1756394822028,"y":16.201},{"x":1756394761886,"y":37.858},{"x":1756394701700,"y":55.885},{"x":1756394641553,"y":37.367},{"x":1756394581419,"y":30.863},{"x":1756394521261,"y":24.755},{"x":1756394461155,"y":23.296},{"x":1756394401165,"y":20.628},{"x":1756394340840,"y":18.013},{"x":1756394280717,"y":12.995},{"x":1756394220616,"y":8.777},{"x":1756394160634,"y":18.389},{"x":1756394100712,"y":23.873},{"x":1756394043021,"y":27.37},{"x":1756393982871,"y":38.916},{"x":1756393922698,"y":37.961},{"x":1756393862531,"y":41.516},{"x":1756393802358,"y":25.067},{"x":1756393742230,"y":25.307},{"x":1756393682103,"y":32.068},{"x":1756393621965,"y":31.669},{"x":1756393561822,"y":33.518},{"x":1756393501677,"y":20.309},{"x":1756393441553,"y":18.322},{"x":1756393381424,"y":28.885},{"x":1756393321282,"y":15.134},{"x":1756393261131,"y":21.438},{"x":1756393202989,"y":14.948},{"x":1756393142838,"y":12.32},{"x":1756393082728,"y":15.054},{"x":1756393022579,"y":22.088},{"x":1756392962460,"y":51.8},{"x":1756392902315,"y":33.342},{"x":1756392842189,"y":38.554},{"x":1756392782047,"y":37.207},{"x":1756392721909,"y":25.565},{"x":1756392661704,"y":28.64},{"x":1756392600941,"y":18.562},{"x":1756392540789,"y":12.035},{"x":1756392480710,"y":24.274},{"x":1756392420499,"y":25.316},{"x":1756392360380,"y":26.808},{"x":1756392300253,"y":21.684},{"x":1756392242906,"y":20.548},{"x":1756392182792,"y":23.567},{"x":1756392122657,"y":25.997},{"x":1756392062524,"y":21.959},{"x":1756392002396,"y":17.988},{"x":1756391942274,"y":14.521},{"x":1756391882143,"y":27.816},{"x":1756391822000,"y":25.463},{"x":1756391761194,"y":27.486},{"x":1756391701033,"y":23.089},{"x":1756391640887,"y":22.826},{"x":1756391580771,"y":16.634},{"x":1756391520662,"y":17.358},{"x":1756391460479,"y":21.665},{"x":1756391400327,"y":15.751},{"x":1756391343024,"y":16.98},{"x":1756391282893,"y":12.834},{"x":1756391222768,"y":16.547},{"x":1756391162627,"y":22.523},{"x":1756391102498,"y":15.48},{"x":1756391042367,"y":14.58},{"x":1756390982237,"y":14.923},{"x":1756390922078,"y":12.931},{"x":1756390861166,"y":42.514},{"x":1756390801030,"y":36.714},{"x":1756390740857,"y":38.364},{"x":1756390680740,"y":43.123},{"x":1756390620662,"y":38.99},{"x":1756390560503,"y":9.364},{"x":1756390500337,"y":13.033},{"x":1756390440272,"y":11.46},{"x":1756390382915,"y":15.286},{"x":1756390322767,"y":10.757},{"x":1756390262626,"y":11.186},{"x":1756390202444,"y":7.45},{"x":1756390142313,"y":8.249},{"x":1756390082186,"y":40.698},{"x":1756390022034,"y":25.958},{"x":1756389961206,"y":24.778},{"x":1756389901064,"y":28.457},{"x":1756389840920,"y":25.212},{"x":1756389780776,"y":25.362},{"x":1756389720667,"y":23.126},{"x":1756389663479,"y":3.704},{"x":1756389601581,"y":3.934},{"x":1756389541078,"y":3.578},{"x":1756389480936,"y":13.885},{"x":1756389420805,"y":8.13},{"x":1756389360699,"y":11.296},{"x":1756389300589,"y":9.53},{"x":1756389240302,"y":29.138},{"x":1756389180185,"y":15.344},{"x":1756389122928,"y":10.741},{"x":1756389062797,"y":7.728},{"x":1756389002676,"y":7.182},{"x":1756388942526,"y":19.36},{"x":1756388882390,"y":26.534},{"x":1756388822253,"y":26.144},{"x":1756388762132,"y":11.975},{"x":1756388702004,"y":6.359},{"x":1756388641873,"y":5.915},{"x":1756388581750,"y":5.677},{"x":1756388521613,"y":16.097},{"x":1756388461482,"y":19.271},{"x":1756388401088,"y":4.966},{"x":1756388340847,"y":5.544},{"x":1756388280737,"y":24.242},{"x":1756388220652,"y":8.698},{"x":1756388160517,"y":11.159},{"x":1756388100403,"y":20.335},{"x":1756388040204,"y":22.078},{"x":1756387982936,"y":14.954},{"x":1756387922799,"y":10.619},{"x":1756387862663,"y":20.623},{"x":1756387802508,"y":4.625},{"x":1756387742387,"y":7.121},{"x":1756387682253,"y":13.254},{"x":1756387622128,"y":13.967},{"x":1756387561975,"y":4.214},{"x":1756387500667,"y":3.306},{"x":1756387440551,"y":8.324},{"x":1756387380355,"y":13.265},{"x":1756387320199,"y":23.134},{"x":1756387261191,"y":22.24},{"x":1756387201060,"y":17.251},{"x":1756387140903,"y":11.89},{"x":1756387080776,"y":9.754},{"x":1756387020672,"y":14.489},{"x":1756386960559,"y":16.726},{"x":1756386900441,"y":24.775},{"x":1756386840188,"y":23.904},{"x":1756386782915,"y":12.75},{"x":1756386722762,"y":8.717},{"x":1756386662583,"y":12.588},{"x":1756386602435,"y":7.619},{"x":1756386542300,"y":5.968},{"x":1756386482166,"y":1.518},{"x":1756386422046,"y":7.716},{"x":1756386361787,"y":4.097},{"x":1756386301655,"y":6.65},{"x":1756386241539,"y":4.585},{"x":1756386181395,"y":9.39},{"x":1756386121284,"y":8.663},{"x":1756386061123,"y":10.236},{"x":1756386001058,"y":37.944},{"x":1756385940783,"y":1.051},{"x":1756385880654,"y":1.838},{"x":1756385820813,"y":33.786},{"x":1756385760704,"y":17.411},{"x":1756385700615,"y":17.255},{"x":1756385640473,"y":4.957},{"x":1756385580352,"y":13.56},{"x":1756385520273,"y":16.567},{"x":1756385462912,"y":16.469},{"x":1756385402790,"y":11.519},{"x":1756385342663,"y":19.07},{"x":1756385282509,"y":19.409},{"x":1756385222379,"y":21.484},{"x":1756385162244,"y":18.888},{"x":1756385102115,"y":19.476},{"x":1756385041954,"y":18.019},{"x":1756384981813,"y":8.651},{"x":1756384921679,"y":15.4},{"x":1756384861537,"y":14.118},{"x":1756384800843,"y":22.444},{"x":1756384740590,"y":17.662},{"x":1756384680534,"y":9.017},{"x":1756384620362,"y":12.74},{"x":1756384562901,"y":6.931},{"x":1756384502747,"y":34.385},{"x":1756384442609,"y":18.874},{"x":1756384382466,"y":9.851},{"x":1756384322343,"y":29.188},{"x":1756384262187,"y":23.874},{"x":1756384202058,"y":28.914},{"x":1756384141926,"y":30.778},{"x":1756384081802,"y":37.302},{"x":1756384021678,"y":33.299},{"x":1756383961547,"y":31.918},{"x":1756383901423,"y":34.56},{"x":1756383841287,"y":37.607},{"x":1756383781162,"y":35.822},{"x":1756383720989,"y":31.747},{"x":1756383660885,"y":31.338},{"x":1756383600824,"y":38.526},{"x":1756383540610,"y":40.758},{"x":1756383480521,"y":35.749},{"x":1756383420453,"y":35.19},{"x":1756383360334,"y":34.262},{"x":1756383302919,"y":35.405},{"x":1756383242792,"y":33.463},{"x":1756383182669,"y":33.348},{"x":1756383122496,"y":34.648},{"x":1756383062304,"y":42.452},{"x":1756383002156,"y":46.22},{"x":1756382941985,"y":40.538},{"x":1756382881858,"y":37.626},{"x":1756382822405,"y":36.298},{"x":1756382762282,"y":50.899},{"x":1756382702149,"y":35.051},{"x":1756382642011,"y":35.267},{"x":1756382581886,"y":44.735},{"x":1756382521728,"y":44.065},{"x":1756382461622,"y":50.677},{"x":1756382401982,"y":46.367},{"x":1756382341801,"y":50.352},{"x":1756382281650,"y":42.113},{"x":1756382221517,"y":39.739},{"x":1756382161393,"y":46.946},{"x":1756382100690,"y":37.963},{"x":1756382040497,"y":41.609},{"x":1756381980391,"y":40.225},{"x":1756381923035,"y":40.82},{"x":1756381862885,"y":45.56},{"x":1756381802752,"y":42.696},{"x":1756381742623,"y":31.891},{"x":1756381682497,"y":33.606},{"x":1756381622362,"y":43.28},{"x":1756381562240,"y":47.042},{"x":1756381502093,"y":48.3},{"x":1756381441945,"y":46.342},{"x":1756381381837,"y":66.631},{"x":1756381321686,"y":35.513},{"x":1756381261554,"y":45.098},{"x":1756381200876,"y":26.785},{"x":1756381140664,"y":20.3},{"x":1756381080599,"y":29.914},{"x":1756381020410,"y":22.234},{"x":1756380962868,"y":22.212},{"x":1756380902760,"y":32.951},{"x":1756380842601,"y":26.892},{"x":1756380782467,"y":28.189},{"x":1756380722340,"y":29.792},{"x":1756380662213,"y":29.398},{"x":1756380602118,"y":35.916},{"x":1756380541941,"y":35.244},{"x":1756380481806,"y":34.704},{"x":1756380421671,"y":40.087},{"x":1756380361536,"y":38.941},{"x":1756380300842,"y":30.432},{"x":1756380240689,"y":30.263},{"x":1756380180567,"y":29.705},{"x":1756380120439,"y":35.474},{"x":1756380062470,"y":30.775},{"x":1756380002359,"y":28.4},{"x":1756379942216,"y":35.311},{"x":1756379882083,"y":35.516},{"x":1756379820949,"y":32.628},{"x":1756379762286,"y":33.047},{"x":1756379702160,"y":33.638},{"x":1756379642057,"y":35.01},{"x":1756379580252,"y":32.096},{"x":1756379522979,"y":30.301},{"x":1756379462857,"y":31.907},{"x":1756379402680,"y":48.011},{"x":1756379342555,"y":28.405},{"x":1756379282423,"y":25.826},{"x":1756379222306,"y":27.528},{"x":1756379162170,"y":28.798},{"x":1756379102037,"y":36.168},{"x":1756379041888,"y":31.296},{"x":1756378981754,"y":31.462},{"x":1756378921614,"y":28.892},{"x":1756378861494,"y":27.856},{"x":1756378800395,"y":34.745},{"x":1756378742996,"y":29.39},{"x":1756378682867,"y":28.949},{"x":1756378622765,"y":30.637},{"x":1756378562608,"y":26.549},{"x":1756378502475,"y":28.978},{"x":1756378442349,"y":29.788},{"x":1756378382222,"y":29.466},{"x":1756378322087,"y":30.638},{"x":1756378261715,"y":31.69},{"x":1756378200888,"y":38.173},{"x":1756378140740,"y":38.747},{"x":1756378080643,"y":34.297},{"x":1756378020486,"y":46.576},{"x":1756377960397,"y":34.11},{"x":1756377900538,"y":32.962},{"x":1756377842946,"y":39.626},{"x":1756377782816,"y":39.253},{"x":1756377722699,"y":42.367},{"x":1756377662542,"y":37.258},{"x":1756377602411,"y":38.153},{"x":1756377542270,"y":54.282},{"x":1756377482141,"y":60.001},{"x":1756377422016,"y":58.0},{"x":1756377361529,"y":55.093},{"x":1756377301380,"y":56.986},{"x":1756377241250,"y":45.634},{"x":1756377181115,"y":31.542},{"x":1756377120963,"y":31.936},{"x":1756377060833,"y":33.511},{"x":1756377000828,"y":53.188},{"x":1756376940456,"y":37.075},{"x":1756376880321,"y":33.984},{"x":1756376822972,"y":35.898},{"x":1756376762848,"y":33.842},{"x":1756376702712,"y":36.095},{"x":1756376642506,"y":35.441},{"x":1756376582375,"y":32.96},{"x":1756376522237,"y":41.012},{"x":1756376461252,"y":40.523},{"x":1756376401132,"y":37.634},{"x":1756376350014,"y":33.85},{"x":1756376282407,"y":26.443},{"x":1756376222278,"y":21.662},{"x":1756376162148,"y":21.29},{"x":1756376102014,"y":21.618},{"x":1756376041888,"y":25.044},{"x":1756375981724,"y":18.454},{"x":1756375921585,"y":29.581},{"x":1756375861419,"y":37.459},{"x":1756375800883,"y":34.348},{"x":1756375740594,"y":35.425},{"x":1756375680642,"y":28.93},{"x":1756375620309,"y":18.752},{"x":1756375560128,"y":30.298},{"x":1756375502909,"y":17.335},{"x":1756375442757,"y":21.174},{"x":1756375382614,"y":19.099},{"x":1756375322483,"y":12.96},{"x":1756375265378,"y":22.962},{"x":1756375202161,"y":23.774},{"x":1756375141906,"y":25.296},{"x":1756375081757,"y":25.547},{"x":1756375021629,"y":28.04},{"x":1756374961499,"y":27.618},{"x":1756374901105,"y":22.366},{"x":1756374840958,"y":15.614},{"x":1756374780803,"y":20.956},{"x":1756374720690,"y":16.424},{"x":1756374660581,"y":16.984},{"x":1756374600579,"y":15.738},{"x":1756374540334,"y":16.583},{"x":1756374508502,"y":20.002},{"x":1756374482987,"y":16.449},{"x":1756374420880,"y":20.002},{"x":1756374360749,"y":24.552},{"x":1756374300727,"y":18.63},{"x":1756374240513,"y":39.365},{"x":1756374180463,"y":38.723},{"x":1756374122965,"y":42.946},{"x":1756374062838,"y":46.504},{"x":1756374002718,"y":41.004},{"x":1756373942585,"y":28.067},{"x":1756373882465,"y":30.586},{"x":1756373822165,"y":27.965},{"x":1756373762038,"y":35.045},{"x":1756373701903,"y":27.42},{"x":1756373641783,"y":31.252},{"x":1756373581646,"y":26.309},{"x":1756373521507,"y":30.839},{"x":1756373461413,"y":20.424},{"x":1756373401263,"y":18.703},{"x":1756373341128,"y":23.315},{"x":1756373280959,"y":13.973},{"x":1756373220862,"y":16.331},{"x":1756373160700,"y":19.59},{"x":1756373100646,"y":22.472},{"x":1756373040415,"y":23.574},{"x":1756372980322,"y":24.714},{"x":1756372922957,"y":26.902},{"x":1756372862812,"y":27.746},{"x":1756372802684,"y":39.199},{"x":1756372742559,"y":39.036},{"x":1756372682433,"y":51.692},{"x":1756372622300,"y":39.658},{"x":1756372562157,"y":40.236},{"x":1756372502037,"y":35.525},{"x":1756372441880,"y":31.074},{"x":1756372381753,"y":27.983},{"x":1756372321589,"y":33.74},{"x":1756372261425,"y":42.74},{"x":1756372200822,"y":48.695},{"x":1756372140572,"y":44.578},{"x":1756372082721,"y":49.25},{"x":1756372022589,"y":60.899},{"x":1756371962464,"y":33.202},{"x":1756371902323,"y":35.408},{"x":1756371842200,"y":33.823},{"x":1756371782068,"y":39.161},{"x":1756371721930,"y":32.806},{"x":1756371661811,"y":34.141},{"x":1756371600441,"y":34.283},{"x":1756371542921,"y":38.303},{"x":1756371482786,"y":42.086},{"x":1756371422670,"y":38.496},{"x":1756371362529,"y":41.689},{"x":1756371302334,"y":41.938},{"x":1756371242197,"y":39.192},{"x":1756371182075,"y":41.536},{"x":1756371121934,"y":36.2},{"x":1756371061656,"y":35.856},{"x":1756371000921,"y":36.931},{"x":1756370940772,"y":49.139},{"x":1756370880683,"y":55.547},{"x":1756370820543,"y":44.165},{"x":1756370760394,"y":48.558},{"x":1756370700310,"y":48.491},{"x":1756370642920,"y":46.441},{"x":1756370582789,"y":49.63},{"x":1756370522668,"y":47.714},{"x":1756370462553,"y":54.598},{"x":1756370402416,"y":68.135},{"x":1756370342305,"y":66.422},{"x":1756370282156,"y":69.074},{"x":1756370222012,"y":64.966},{"x":1756370161355,"y":53.779},{"x":1756370101233,"y":49.855},{"x":1756370041016,"y":55.706},{"x":1756369980886,"y":58.134},{"x":1756369920775,"y":59.147},{"x":1756369860639,"y":70.938},{"x":1756369800545,"y":72.796},{"x":1756369740402,"y":56.842},{"x":1756369680309,"y":78.341},{"x":1756369622981,"y":66.868},{"x":1756369562861,"y":58.444},{"x":1756369502744,"y":57.086},{"x":1756369442607,"y":56.93},{"x":1756369382477,"y":57.833},{"x":1756369322348,"y":61.112},{"x":1756369261604,"y":60.312},{"x":1756369201478,"y":59.227},{"x":1756369141337,"y":57.75},{"x":1756369081204,"y":55.703},{"x":1756369021072,"y":59.021},{"x":1756368960918,"y":52.706},{"x":1756368900872,"y":55.61},{"x":1756368840639,"y":57.76},{"x":1756368780562,"y":60.358},{"x":1756368720393,"y":56.551},{"x":1756368663018,"y":57.755},{"x":1756368602856,"y":64.95},{"x":1756368542732,"y":67.375},{"x":1756368482612,"y":63.385},{"x":1756368422468,"y":63.528},{"x":1756368362333,"y":56.956},{"x":1756368302199,"y":54.841},{"x":1756368242068,"y":54.871},{"x":1756368181933,"y":55.787},{"x":1756368121792,"y":66.336},{"x":1756368061686,"y":66.892},{"x":1756368002108,"y":63.331},{"x":1756367941896,"y":59.917},{"x":1756367881764,"y":57.662},{"x":1756367821641,"y":62.074},{"x":1756367761520,"y":64.106},{"x":1756367700755,"y":75.59},{"x":1756367640550,"y":64.606},{"x":1756367580493,"y":61.202},{"x":1756367520281,"y":60.991},{"x":1756367463020,"y":54.937},{"x":1756367402883,"y":50.952},{"x":1756367342766,"y":51.088},{"x":1756367282634,"y":48.31},{"x":1756367222500,"y":49.867},{"x":1756367162357,"y":51.492},{"x":1756367102232,"y":51.484},{"x":1756367042106,"y":56.368},{"x":1756366981947,"y":54.041},{"x":1756366921821,"y":54.712},{"x":1756366861698,"y":52.984},{"x":1756366801568,"y":59.784},{"x":1756366741442,"y":55.632},{"x":1756366681319,"y":58.85},{"x":1756366621184,"y":57.82},{"x":1756366561023,"y":58.51},{"x":1756366500911,"y":71.837},{"x":1756366440756,"y":72.138},{"x":1756366380642,"y":58.374},{"x":1756366320498,"y":53.267},{"x":1756366260459,"y":52.547},{"x":1756366202989,"y":51.45},{"x":1756366142858,"y":51.835},{"x":1756366082731,"y":52.42},{"x":1756366022588,"y":53.866},{"x":1756365962461,"y":53.809},{"x":1756365902331,"y":54.928},{"x":1756365842223,"y":54.227},{"x":1756365782078,"y":54.113},{"x":1756365721935,"y":56.021},{"x":1756365661707,"y":51.761},{"x":1756365601579,"y":56.15},{"x":1756365541445,"y":57.685},{"x":1756365481320,"y":59.521},{"x":1756365421177,"y":57.971},{"x":1756365361024,"y":59.828},{"x":1756365300776,"y":50.956},{"x":1756365240603,"y":55.399},{"x":1756365180465,"y":55.61},{"x":1756365120261,"y":56.533},{"x":1756365062997,"y":56.665},{"x":1756365002834,"y":56.989},{"x":1756364942700,"y":58.388},{"x":1756364882565,"y":55.508},{"x":1756364822423,"y":58.513},{"x":1756364762290,"y":61.145},{"x":1756364702160,"y":63.592},{"x":1756364642027,"y":65.26},{"x":1756364581878,"y":55.822},{"x":1756364521745,"y":60.202},{"x":1756364461621,"y":55.002},{"x":1756364403144,"y":56.734},{"x":1756364342893,"y":57.102},{"x":1756364282758,"y":71.832},{"x":1756364222603,"y":57.068},{"x":1756364162484,"y":58.193},{"x":1756364102325,"y":61.134},{"x":1756364042195,"y":62.756},{"x":1756363982070,"y":65.543},{"x":1756363921939,"y":60.19},{"x":1756363861601,"y":56.538},{"x":1756363800968,"y":58.224},{"x":1756363740821,"y":54.649},{"x":1756363680722,"y":55.192},{"x":1756363620634,"y":54.677},{"x":1756363560442,"y":57.734},{"x":1756363500348,"y":59.07},{"x":1756363440102,"y":58.888},{"x":1756363382892,"y":59.354},{"x":1756363322775,"y":58.711},{"x":1756363262660,"y":48.908},{"x":1756363202514,"y":45.24},{"x":1756363142395,"y":45.524},{"x":1756363082272,"y":47.695},{"x":1756363022143,"y":45.44},{"x":1756362962019,"y":49.164},{"x":1756362901883,"y":48.785},{"x":1756362841757,"y":59.641},{"x":1756362781623,"y":40.226},{"x":1756362721478,"y":39.977},{"x":1756362661341,"y":39.03},{"x":1756362601229,"y":44.01},{"x":1756362541057,"y":33.419},{"x":1756362480921,"y":46.525},{"x":1756362420806,"y":35.316},{"x":1756362360673,"y":46.384},{"x":1756362300628,"y":30.258},{"x":1756362240434,"y":36.824},{"x":1756362180323,"y":50.932},{"x":1756362123019,"y":39.562},{"x":1756362062881,"y":28.43},{"x":1756362002758,"y":33.326},{"x":1756361942619,"y":56.63},{"x":1756361882493,"y":33.542},{"x":1756361822367,"y":52.428},{"x":1756361762230,"y":31.83},{"x":1756361702108,"y":43.915},{"x":1756361641919,"y":44.179},{"x":1756361581763,"y":29.411},{"x":1756361521628,"y":41.023},{"x":1756361461494,"y":44.711},{"x":1756361400878,"y":41.843},{"x":1756361340633,"y":25.492},{"x":1756361280522,"y":26.642},{"x":1756361220390,"y":23.278},{"x":1756361160158,"y":27.014},{"x":1756361102490,"y":25.686},{"x":1756361042361,"y":29.72},{"x":1756360982235,"y":32.879},{"x":1756360922113,"y":35.296},{"x":1756360861954,"y":31.788},{"x":1756360802110,"y":28.776},{"x":1756360741795,"y":27.905},{"x":1756360681662,"y":28.231},{"x":1756360621537,"y":30.596},{"x":1756360561397,"y":32.375},{"x":1756360500824,"y":32.064},{"x":1756360440679,"y":26.962},{"x":1756360380541,"y":27.52},{"x":1756360320434,"y":31.83},{"x":1756360260300,"y":33.124},{"x":1756360202988,"y":36.086},{"x":1756360142856,"y":37.736},{"x":1756360082731,"y":28.441},{"x":1756360022603,"y":26.707},{"x":1756359962450,"y":26.462},{"x":1756359902245,"y":29.07},{"x":1756359842094,"y":29.954},{"x":1756359781945,"y":27.684},{"x":1756359721823,"y":30.546},{"x":1756359661690,"y":29.762},{"x":1756359601562,"y":30.887},{"x":1756359541428,"y":38.64},{"x":1756359481312,"y":31.403},{"x":1756359421171,"y":30.347},{"x":1756359361046,"y":30.016},{"x":1756359300908,"y":28.392},{"x":1756359240777,"y":21.026},{"x":1756359180638,"y":25.164},{"x":1756359120533,"y":28.314},{"x":1756359060457,"y":28.681},{"x":1756359003016,"y":27.926},{"x":1756358942879,"y":30.912},{"x":1756358882738,"y":29.339},{"x":1756358822612,"y":24.576},{"x":1756358762481,"y":26.602},{"x":1756358702358,"y":25.663},{"x":1756358642226,"y":27.025},{"x":1756358582075,"y":30.96},{"x":1756358521955,"y":25.49},{"x":1756358461161,"y":26.021},{"x":1756358401042,"y":26.495},{"x":1756358340876,"y":26.117},{"x":1756358280741,"y":27.065},{"x":1756358220644,"y":27.402},{"x":1756358160556,"y":25.733},{"x":1756358100384,"y":24.715},{"x":1756358043011,"y":25.397},{"x":1756357982889,"y":28.152},{"x":1756357922714,"y":32.563},{"x":1756357862519,"y":27.26},{"x":1756357802385,"y":28.984},{"x":1756357742235,"y":31.826},{"x":1756357680528,"y":27.236},{"x":1756357620372,"y":29.51},{"x":1756357563013,"y":29.27},{"x":1756357502874,"y":27.167},{"x":1756357442780,"y":26.744},{"x":1756357382591,"y":26.173},{"x":1756357322463,"y":26.624},{"x":1756357262352,"y":31.852},{"x":1756357202115,"y":27.532},{"x":1756357141842,"y":27.8},{"x":1756357081699,"y":30.184},{"x":1756357021567,"y":30.586},{"x":1756356961442,"y":35.396},{"x":1756356900838,"y":29.303},{"x":1756356840708,"y":27.682},{"x":1756356780615,"y":26.975},{"x":1756356720477,"y":25.777},{"x":1756356660270,"y":28.781},{"x":1756356600038,"y":29.368},{"x":1756356542892,"y":29.634},{"x":1756356482766,"y":31.715},{"x":1756356422636,"y":30.257},{"x":1756356362499,"y":30.583},{"x":1756356302380,"y":34.289},{"x":1756356242243,"y":30.025},{"x":1756356182113,"y":26.95},{"x":1756356121966,"y":28.495},{"x":1756356061753,"y":30.536},{"x":1756356001616,"y":27.181},{"x":1756355941469,"y":27.754},{"x":1756355881328,"y":31.422},{"x":1756355821203,"y":27.871},{"x":1756355761073,"y":28.715},{"x":1756355700940,"y":32.008},{"x":1756355640794,"y":36.25},{"x":1756355580684,"y":28.46},{"x":1756355520590,"y":28.222},{"x":1756355460451,"y":28.322},{"x":1756355400426,"y":26.522},{"x":1756355342982,"y":30.8},{"x":1756355282856,"y":27.296},{"x":1756355222726,"y":30.005},{"x":1756355162600,"y":28.415},{"x":1756355102137,"y":27.479},{"x":1756355041997,"y":26.755},{"x":1756354981891,"y":23.453},{"x":1756354921736,"y":28.781},{"x":1756354861273,"y":28.643},{"x":1756354801157,"y":28.109},{"x":1756354740995,"y":27.311},{"x":1756354682628,"y":29.899},{"x":1756354621349,"y":27.164},{"x":1756354560928,"y":30.586},{"x":1756354500871,"y":29.335},{"x":1756354440663,"y":31.13},{"x":1756354380514,"y":29.089},{"x":1756354320433,"y":26.388},{"x":1756354262955,"y":25.386},{"x":1756354200786,"y":28.29},{"x":1756354140625,"y":30.623},{"x":1756354081969,"y":43.348},{"x":1756354021844,"y":32.513},{"x":1756353960828,"y":28.625},{"x":1756353900726,"y":27.101},{"x":1756353840581,"y":27.988},{"x":1756353780509,"y":27.81},{"x":1756353720344,"y":36.732},{"x":1756353663049,"y":29.269},{"x":1756353601334,"y":30.485},{"x":1756353541003,"y":27.658},{"x":1756353480860,"y":28.978},{"x":1756353420735,"y":28.766},{"x":1756353360609,"y":31.409},{"x":1756353300459,"y":31.506},{"x":1756353240330,"y":32.274},{"x":1756353180189,"y":29.526},{"x":1756353122919,"y":27.677},{"x":1756353062792,"y":29.804},{"x":1756353002674,"y":25.956},{"x":1756352942515,"y":25.944},{"x":1756352882380,"y":26.894},{"x":1756352822251,"y":26.276},{"x":1756352762125,"y":30.07},{"x":1756352701976,"y":30.155},{"x":1756352641841,"y":29.658},{"x":1756352581714,"y":29.293},{"x":1756352521585,"y":28.816},{"x":1756352461463,"y":29.797},{"x":1756352400972,"y":26.501},{"x":1756352340753,"y":26.543},{"x":1756352280613,"y":26.2},{"x":1756352220509,"y":26.606},{"x":1756352162957,"y":26.366},{"x":1756352102838,"y":29.928},{"x":1756352042708,"y":27.628},{"x":1756351982575,"y":26.726},{"x":1756351922447,"y":28.519},{"x":1756351862319,"y":34.44},{"x":1756351802199,"y":37.507},{"x":1756351742073,"y":33.443},{"x":1756351681938,"y":30.685},{"x":1756351621808,"y":29.612},{"x":1756351561671,"y":28.852},{"x":1756351501539,"y":29.495},{"x":1756351441414,"y":25.223},{"x":1756351381244,"y":26.086},{"x":1756351321108,"y":25.783},{"x":1756351260979,"y":27.772},{"x":1756351200874,"y":30.438},{"x":1756351140713,"y":34.222},{"x":1756351080591,"y":28.524},{"x":1756351020530,"y":29.981},{"x":1756350960213,"y":30.407},{"x":1756350902952,"y":27.676},{"x":1756350842826,"y":27.484},{"x":1756350782675,"y":27.356},{"x":1756350722525,"y":26.998},{"x":1756350662346,"y":25.248},{"x":1756350602468,"y":25.542},{"x":1756350542342,"y":25.681},{"x":1756350480357,"y":28.14},{"x":1756350422993,"y":36.304},{"x":1756350360805,"y":31.033},{"x":1756350300666,"y":30.376},{"x":1756350240592,"y":27.121},{"x":1756350234492,"y":26.742},{"x":1756350228317,"y":26.686},{"x":1756349941888,"y":29.495},{"x":1756349881758,"y":31.74},{"x":1756349821635,"y":32.267},{"x":1756349761507,"y":31.824},{"x":1756349700700,"y":28.258},{"x":1756349640313,"y":30.151},{"x":1756349580084,"y":29.285},{"x":1756349522903,"y":29.173},{"x":1756349462800,"y":32.58},{"x":1756349402648,"y":26.14},{"x":1756349342511,"y":26.447},{"x":1756349282389,"y":28.049},{"x":1756349222269,"y":29.01},{"x":1756349162136,"y":32.563},{"x":1756349101986,"y":26.864},{"x":1756349041839,"y":25.499},{"x":1756348981724,"y":26.119},{"x":1756348921585,"y":28.985},{"x":1756348861461,"y":30.232},{"x":1756348800795,"y":29.978},{"x":1756348740581,"y":29.536},{"x":1756348680446,"y":31.35},{"x":1756348620349,"y":28.703},{"x":1756348562870,"y":27.599},{"x":1756348502685,"y":31.452},{"x":1756348442556,"y":28.62},{"x":1756348382432,"y":26.26},{"x":1756348322276,"y":26.191},{"x":1756348262156,"y":25.277},{"x":1756348202024,"y":32.593},{"x":1756348141871,"y":28.98},{"x":1756348081754,"y":28.127},{"x":1756348021622,"y":32.074},{"x":1756347961497,"y":31.895},{"x":1756347900932,"y":28.834},{"x":1756347840806,"y":28.86},{"x":1756347780679,"y":28.955},{"x":1756347720548,"y":26.773},{"x":1756347660521,"y":30.198},{"x":1756347600303,"y":30.635},{"x":1756347542997,"y":29.33},{"x":1756347482861,"y":30.971},{"x":1756347422736,"y":30.821},{"x":1756347362342,"y":31.67},{"x":1756347302218,"y":29.398},{"x":1756347242094,"y":34.87},{"x":1756347181966,"y":28.124},{"x":1756347121802,"y":24.532},{"x":1756347061514,"y":24.995},{"x":1756347000987,"y":24.15},{"x":1756346940796,"y":27.548},{"x":1756346880374,"y":25.752},{"x":1756346822928,"y":26.093},{"x":1756346762801,"y":32.311},{"x":1756346702675,"y":31.523},{"x":1756346642566,"y":30.586},{"x":1756346582402,"y":30.162},{"x":1756346522285,"y":28.686},{"x":1756346462140,"y":29.219},{"x":1756346400277,"y":29.5},{"x":1756346340150,"y":29.308},{"x":1756346282905,"y":33.122},{"x":1756346222774,"y":26.413},{"x":1756346162639,"y":28.298},{"x":1756346102507,"y":30.234},{"x":1756346042376,"y":29.489},{"x":1756345982243,"y":36.043},{"x":1756345922118,"y":30.192},{"x":1756345861967,"y":28.615},{"x":1756345801854,"y":26.824},{"x":1756345741723,"y":26.729},{"x":1756345681589,"y":25.922},{"x":1756345621459,"y":26.231},{"x":1756345561340,"y":25.266},{"x":1756345501221,"y":25.091},{"x":1756345441063,"y":25.334},{"x":1756345380928,"y":24.998},{"x":1756345320802,"y":34.796},{"x":1756345260680,"y":29.483},{"x":1756345200609,"y":32.58},{"x":1756345140448,"y":30.316},{"x":1756345080280,"y":29.916},{"x":1756345022931,"y":33.245},{"x":1756344962804,"y":27.197},{"x":1756344902668,"y":27.94},{"x":1756344842513,"y":25.756},{"x":1756344782394,"y":25.346},{"x":1756344722270,"y":27.451},{"x":1756344662137,"y":25.381},{"x":1756344601990,"y":27.592},{"x":1756344541851,"y":27.839},{"x":1756344481718,"y":31.793},{"x":1756344421577,"y":32.346},{"x":1756344361453,"y":33.184},{"x":1756344300955,"y":28.776},{"x":1756344240810,"y":26.922},{"x":1756344180674,"y":25.418},{"x":1756344120550,"y":27.385},{"x":1756344060480,"y":31.356},{"x":1756344000310,"y":27.882},{"x":1756343942970,"y":25.187},{"x":1756343882844,"y":30.466},{"x":1756343822724,"y":27.991},{"x":1756343762364,"y":29.402},{"x":1756343702233,"y":31.688},{"x":1756343642104,"y":29.633},{"x":1756343581967,"y":29.67},{"x":1756343521813,"y":27.962},{"x":1756343461544,"y":26.238},{"x":1756343401143,"y":26.537},{"x":1756343340971,"y":27.696},{"x":1756343280840,"y":29.79},{"x":1756343220716,"y":28.999},{"x":1756343160593,"y":28.295},{"x":1756343100554,"y":31.136},{"x":1756343040353,"y":24.979},{"x":1756342980252,"y":24.712},{"x":1756342922905,"y":28.901},{"x":1756342862796,"y":28.116},{"x":1756342800508,"y":32.062},{"x":1756342740270,"y":27.626},{"x":1756342682938,"y":31.255},{"x":1756342622804,"y":28.382},{"x":1756342562669,"y":31.962},{"x":1756342502550,"y":30.557},{"x":1756342442403,"y":30.229},{"x":1756342382279,"y":27.192},{"x":1756342322137,"y":29.68},{"x":1756342262003,"y":30.066},{"x":1756342201867,"y":35.063},{"x":1756342141731,"y":39.835},{"x":1756342081607,"y":31.711},{"x":1756342021474,"y":30.294},{"x":1756341961352,"y":29.44},{"x":1756341901110,"y":28.092},{"x":1756341840965,"y":32.374},{"x":1756341780817,"y":29.48},{"x":1756341720691,"y":26.807},{"x":1756341660582,"y":26.296},{"x":1756341600521,"y":26.591},{"x":1756341540375,"y":24.532},{"x":1756341480286,"y":25.495},{"x":1756341422941,"y":31.664},{"x":1756341362797,"y":34.045},{"x":1756341302678,"y":34.532},{"x":1756341242547,"y":31.546},{"x":1756341182419,"y":32.851},{"x":1756341122269,"y":26.292},{"x":1756341062132,"y":26.555},{"x":1756341002000,"y":25.532},{"x":1756340941846,"y":26.761},{"x":1756340881716,"y":31.003},{"x":1756340821582,"y":26.101},{"x":1756340761440,"y":25.222},{"x":1756340701063,"y":30.745},{"x":1756340640930,"y":33.185},{"x":1756340580786,"y":30.761},{"x":1756340520657,"y":30.742},{"x":1756340460556,"y":28.448},{"x":1756340400457,"y":25.454},{"x":1756340340192,"y":26.807},{"x":1756340282883,"y":29.286},{"x":1756340222740,"y":27.073},{"x":1756340162372,"y":28.4},{"x":1756340102235,"y":28.829},{"x":1756340042100,"y":30.098},{"x":1756339981950,"y":29.765},{"x":1756339921788,"y":35.213},{"x":1756339861483,"y":30.574},{"x":1756339801215,"y":29.159},{"x":1756339741077,"y":28.529},{"x":1756339680910,"y":26.382},{"x":1756339620820,"y":29.378},{"x":1756339560642,"y":25.216},{"x":1756339500618,"y":24.319},{"x":1756339440328,"y":28.65},{"x":1756339383009,"y":28.166},{"x":1756339322877,"y":28.421},{"x":1756339262773,"y":27.488},{"x":1756339200400,"y":26.702},{"x":1756339142929,"y":28.597},{"x":1756339082785,"y":28.321},{"x":1756339022685,"y":29.244},{"x":1756338962544,"y":33.193},{"x":1756338902403,"y":27.227},{"x":1756338842265,"y":24.731},{"x":1756338782137,"y":25.746},{"x":1756338721999,"y":25.664},{"x":1756338661550,"y":31.501},{"x":1756338601044,"y":26.694},{"x":1756338540910,"y":35.449},{"x":1756338480786,"y":34.337},{"x":1756338420675,"y":33.823},{"x":1756338360526,"y":36.12},{"x":1756338300406,"y":30.578},{"x":1756338240220,"y":30.104},{"x":1756338182922,"y":29.492},{"x":1756338122799,"y":27.265},{"x":1756338062666,"y":25.792},{"x":1756338002542,"y":25.763},{"x":1756337942400,"y":26.802},{"x":1756337882275,"y":25.558},{"x":1756337822148,"y":26.237},{"x":1756337762012,"y":26.827},{"x":1756337701876,"y":32.88},{"x":1756337641743,"y":30.863},{"x":1756337581623,"y":30.372},{"x":1756337521491,"y":32.681},{"x":1756337461359,"y":28.95},{"x":1756337401274,"y":28.373},{"x":1756337341107,"y":31.888},{"x":1756337280960,"y":26.869},{"x":1756337220833,"y":26.779},{"x":1756337160717,"y":29.537},{"x":1756337100651,"y":29.46},{"x":1756337040439,"y":35.25},{"x":1756336980311,"y":30.433},{"x":1756336922958,"y":33.29},{"x":1756336862832,"y":28.853},{"x":1756336802694,"y":29.946},{"x":1756336742552,"y":31.87},{"x":1756336682411,"y":26.063},{"x":1756336622295,"y":26.672},{"x":1756336562148,"y":29.28},{"x":1756336502018,"y":28.349},{"x":1756336441883,"y":28.385},{"x":1756336381758,"y":27.239},{"x":1756336321609,"y":29.431},{"x":1756336261437,"y":31.354},{"x":1756336201293,"y":34.464},{"x":1756336141163,"y":31.145},{"x":1756336081028,"y":31.706},{"x":1756336020891,"y":27.47},{"x":1756335960772,"y":27.667},{"x":1756335900667,"y":29.836},{"x":1756335840587,"y":32.483},{"x":1756335780362,"y":36.484},{"x":1756335720263,"y":30.847},{"x":1756335662981,"y":27.102},{"x":1756335600516,"y":26.419},{"x":1756335540399,"y":25.754},{"x":1756335482938,"y":30.764},{"x":1756335422817,"y":30.461},{"x":1756335362670,"y":28.552},{"x":1756335302551,"y":30.601},{"x":1756335242310,"y":31.945},{"x":1756335182166,"y":34.768},{"x":1756335122044,"y":27.654},{"x":1756335061909,"y":27.875},{"x":1756335001787,"y":26.869},{"x":1756334941659,"y":25.579},{"x":1756334881526,"y":26.855},{"x":1756334821387,"y":26.092},{"x":1756334761268,"y":27.038},{"x":1756334701169,"y":27.658},{"x":1756334640948,"y":28.36},{"x":1756334580843,"y":27.922},{"x":1756334520697,"y":29.186},{"x":1756334460601,"y":36.745},{"x":1756334400533,"y":34.033},{"x":1756334340340,"y":37.157},{"x":1756334280161,"y":32.935},{"x":1756334222937,"y":31.765},{"x":1756334162790,"y":30.966},{"x":1756334102659,"y":28.169},{"x":1756334042534,"y":25.608},{"x":1756333982425,"y":26.076},{"x":1756333922281,"y":30.803},{"x":1756333862167,"y":27.047},{"x":1756333802020,"y":27.736},{"x":1756333741867,"y":26.789},{"x":1756333681731,"y":28.655},{"x":1756333621606,"y":35.956},{"x":1756333561478,"y":32.418},{"x":1756333500979,"y":31.566},{"x":1756333440799,"y":29.039},{"x":1756333380651,"y":28.481},{"x":1756333320575,"y":30.868},{"x":1756333260420,"y":28.361},{"x":1756333200202,"y":25.832},{"x":1756333142962,"y":30.326},{"x":1756333082544,"y":34.915},{"x":1756333022427,"y":38.114},{"x":1756332962292,"y":30.8},{"x":1756332902172,"y":30.384},{"x":1756332842047,"y":26.705},{"x":1756332781920,"y":25.964},{"x":1756332721778,"y":31.613},{"x":1756332661632,"y":28.109},{"x":1756332601474,"y":28.088},{"x":1756332541350,"y":26.952},{"x":1756332481228,"y":29.936},{"x":1756332421099,"y":36.862},{"x":1756332360950,"y":32.22},{"x":1756332300830,"y":31.967},{"x":1756332240678,"y":30.761},{"x":1756332180596,"y":29.262},{"x":1756332120548,"y":31.786},{"x":1756332063047,"y":26.887},{"x":1756332001255,"y":27.187},{"x":1757541542189,"y":51.573},{"x":1757541481990,"y":40.012},{"x":1757541421825,"y":40.362},{"x":1757541361683,"y":43.603},{"x":1757541301514,"y":35.417},{"x":1757541241351,"y":51.503},{"x":1757541181196,"y":46.039},{"x":1757541121043,"y":40.853},{"x":1757541060882,"y":54.919},{"x":1757541000794,"y":39.907},{"x":1757540940537,"y":55.79},{"x":1757540880423,"y":57.475},{"x":1757540820252,"y":56.214},{"x":1757540762935,"y":61.317},{"x":1757540702772,"y":69.354},{"x":1757540642626,"y":54.948},{"x":1757540582478,"y":54.948},{"x":1757540522326,"y":52.622},{"x":1757540462187,"y":60.2},{"x":1757540402045,"y":64.849},{"x":1757540341882,"y":47.19},{"x":1757540281741,"y":46.664},{"x":1757540221589,"y":45.795},{"x":1757540161436,"y":52.842},{"x":1757540101280,"y":52.267},{"x":1757540041130,"y":52.141},{"x":1757539980948,"y":48.599},{"x":1757539920775,"y":45.974},{"x":1757539860635,"y":52.3},{"x":1757539800632,"y":47.806},{"x":1757539740309,"y":47.006},{"x":1757539682992,"y":55.288},{"x":1757539622832,"y":53.975},{"x":1757539562674,"y":53.887},{"x":1757539502526,"y":51.674},{"x":1757539442373,"y":50.87},{"x":1757539382223,"y":54.08},{"x":1757539322072,"y":53.82},{"x":1757539261903,"y":57.719},{"x":1757539201776,"y":48.855},{"x":1757539141622,"y":50.984},{"x":1757539081452,"y":56.191},{"x":1757539021309,"y":66.678},{"x":1757538961152,"y":72.926},{"x":1757538900993,"y":67.168},{"x":1757538840831,"y":69.136},{"x":1757538780696,"y":58.947},{"x":1757538720599,"y":50.702},{"x":1757538660404,"y":51.608},{"x":1757538602997,"y":53.273},{"x":1757538542747,"y":52.98},{"x":1757538482593,"y":48.814},{"x":1757538422447,"y":49.871},{"x":1757538362293,"y":50.251},{"x":1757538302137,"y":57.759},{"x":1757538241963,"y":59.53},{"x":1757538181794,"y":59.504},{"x":1757538121643,"y":67.809},{"x":1757538061500,"y":57.986},{"x":1757538001406,"y":54.12},{"x":1757537941176,"y":55.853},{"x":1757537880941,"y":55.429},{"x":1757537820793,"y":59.91},{"x":1757537760662,"y":50.554},{"x":1757537700508,"y":52.073},{"x":1757537640313,"y":64.419},{"x":1757537582980,"y":57.193},{"x":1757537522825,"y":52.401},{"x":1757537462660,"y":62.713},{"x":1757537402510,"y":63.156},{"x":1757537342366,"y":55.5},{"x":1757537282217,"y":55.827},{"x":1757537222072,"y":70.795},{"x":1757537161891,"y":51.417},{"x":1757537101740,"y":71.613},{"x":1757537041592,"y":78.983},{"x":1757536981424,"y":72.541},{"x":1757536921277,"y":71.052},{"x":1757536861140,"y":67.51},{"x":1757536800959,"y":72.681},{"x":1757536740772,"y":78.076},{"x":1757536680588,"y":72.307},{"x":1757536620467,"y":81.541},{"x":1757536560239,"y":73.908},{"x":1757536502962,"y":66.615},{"x":1757536442795,"y":59.216},{"x":1757536382677,"y":72.788},{"x":1757536322488,"y":78.559},{"x":1757536262318,"y":71.225},{"x":1757536202171,"y":72.605},{"x":1757536142013,"y":67.956},{"x":1757536081861,"y":70.817},{"x":1757536021693,"y":58.062},{"x":1757535961547,"y":65.352},{"x":1757535901398,"y":66.994},{"x":1757535841244,"y":66.57},{"x":1757535781097,"y":72.174},{"x":1757535720929,"y":68.254},{"x":1757535660769,"y":78.067},{"x":1757535600615,"y":72.903},{"x":1757535540437,"y":66.173},{"x":1757535480288,"y":90.901},{"x":1757535422940,"y":85.462},{"x":1757535362787,"y":81.215},{"x":1757535302631,"y":83.605},{"x":1757535242476,"y":72.137},{"x":1757535182319,"y":78.364},{"x":1757535122127,"y":80.379},{"x":1757535061913,"y":73.775},{"x":1757535001735,"y":69.895},{"x":1757534941582,"y":82.283},{"x":1757534881435,"y":69.637},{"x":1757534821280,"y":73.174},{"x":1757534761132,"y":66.45},{"x":1757534700979,"y":59.627},{"x":1757534640834,"y":74.266},{"x":1757534580682,"y":63.516},{"x":1757534520523,"y":77.394},{"x":1757534460363,"y":84.127},{"x":1757534403005,"y":92.032},{"x":1757534342792,"y":75.08},{"x":1757534282561,"y":85.508},{"x":1757534222416,"y":69.898},{"x":1757534162266,"y":65.741},{"x":1757534102107,"y":62.327},{"x":1757534041941,"y":71.356},{"x":1757533981791,"y":83.634},{"x":1757533921622,"y":68.86},{"x":1757533861472,"y":77.134},{"x":1757533801297,"y":99.285},{"x":1757533741158,"y":87.277},{"x":1757533680958,"y":88.786},{"x":1757533620808,"y":80.365},{"x":1757533560667,"y":69.466},{"x":1757533500727,"y":86.335},{"x":1757533440302,"y":74.846},{"x":1757533382925,"y":84.98},{"x":1757533322769,"y":79.485},{"x":1757533262613,"y":56.917},{"x":1757533202447,"y":99.124},{"x":1757533142296,"y":85.422},{"x":1757533082144,"y":74.012},{"x":1757533021977,"y":74.485},{"x":1757532961832,"y":105.998},{"x":1757532901682,"y":94.02},{"x":1757532841533,"y":72.042},{"x":1757532781383,"y":68.093},{"x":1757532721229,"y":77.186},{"x":1757532661075,"y":63.82},{"x":1757532600964,"y":70.54},{"x":1757532540739,"y":71.973},{"x":1757532480663,"y":76.571},{"x":1757532420467,"y":91.975},{"x":1757532360295,"y":57.811},{"x":1757532302977,"y":77.342},{"x":1757532242832,"y":64.216},{"x":1757532182690,"y":54.08},{"x":1757532122514,"y":82.401},{"x":1757532062369,"y":65.539},{"x":1757532002220,"y":86.742},{"x":1757531942044,"y":81.793},{"x":1757531881876,"y":75.442},{"x":1757531821729,"y":79.843},{"x":1757531761565,"y":70.75},{"x":1757531701408,"y":75.78},{"x":1757531641243,"y":67.756},{"x":1757531581085,"y":85.878},{"x":1757531520921,"y":76.81},{"x":1757531460712,"y":72.769},{"x":1757531400570,"y":93.521},{"x":1757531340326,"y":86.845},{"x":1757531282980,"y":72.476},{"x":1757531222775,"y":81.207},{"x":1757531162634,"y":65.018},{"x":1757531102479,"y":71.686},{"x":1757531042320,"y":76.911},{"x":1757530982172,"y":72.948},{"x":1757530922016,"y":71.767},{"x":1757530861855,"y":56.923},{"x":1757530801810,"y":66.075},{"x":1757530741512,"y":69.156},{"x":1757530681319,"y":74.204},{"x":1757530621158,"y":62.967},{"x":1757530561002,"y":70.577},{"x":1757530500854,"y":62.412},{"x":1757530440688,"y":70.152},{"x":1757530380535,"y":84.555},{"x":1757530320418,"y":65.84},{"x":1757530260039,"y":95.868},{"x":1757530202858,"y":58.42},{"x":1757530142695,"y":67.095},{"x":1757530082538,"y":65.473},{"x":1757530022353,"y":62.84},{"x":1757529962209,"y":68.087},{"x":1757529901935,"y":84.255},{"x":1757529841766,"y":84.957},{"x":1757529781623,"y":87.441},{"x":1757529721471,"y":85.466},{"x":1757529661312,"y":90.823},{"x":1757529601155,"y":75.249},{"x":1757529540980,"y":74.339},{"x":1757529480812,"y":83.019},{"x":1757529420664,"y":86.498},{"x":1757529360551,"y":71.688},{"x":1757529300469,"y":79.092},{"x":1757529240221,"y":79.674},{"x":1757529182885,"y":75.677},{"x":1757529122745,"y":94.434},{"x":1757529062569,"y":60.079},{"x":1757529002401,"y":63.178},{"x":1757528942232,"y":74.219},{"x":1757528882083,"y":64.156},{"x":1757528821888,"y":91.509},{"x":1757528761734,"y":85.032},{"x":1757528701571,"y":99.846},{"x":1757528641421,"y":108.781},{"x":1757528581230,"y":79.494},{"x":1757528521079,"y":83.587},{"x":1757528460932,"y":67.166},{"x":1757528400841,"y":75.459},{"x":1757528340620,"y":70.151},{"x":1757528280397,"y":92.897},{"x":1757528220398,"y":85.255},{"x":1757528162898,"y":88.449},{"x":1757528102737,"y":71.722},{"x":1757528042591,"y":94.482},{"x":1757527982351,"y":68.848},{"x":1757527922164,"y":64.894},{"x":1757527861941,"y":69.393},{"x":1757527801781,"y":87.212},{"x":1757527741570,"y":92.03},{"x":1757527681424,"y":73.884},{"x":1757527621272,"y":82.032},{"x":1757527561118,"y":75.143},{"x":1757527500940,"y":89.344},{"x":1757527440778,"y":76.476},{"x":1757527380622,"y":101.236},{"x":1757527320506,"y":78.052},{"x":1757527260296,"y":66.28},{"x":1757527203014,"y":67.993},{"x":1757527142795,"y":69.185},{"x":1757527082582,"y":69.356},{"x":1757527022434,"y":61.237},{"x":1757526962231,"y":61.857},{"x":1757526902077,"y":69.612},{"x":1757526841902,"y":81.613},{"x":1757526781744,"y":78.207},{"x":1757526721598,"y":80.699},{"x":1757526661441,"y":70.947},{"x":1757526601176,"y":80.816},{"x":1757526540985,"y":81.751},{"x":1757526480834,"y":72.992},{"x":1757526420677,"y":81.199},{"x":1757526360514,"y":71.232},{"x":1757526300400,"y":88.684},{"x":1757526242976,"y":75.866},{"x":1757526182827,"y":89.875},{"x":1757526122669,"y":68.312},{"x":1757526062514,"y":82.705},{"x":1757526002354,"y":82.725},{"x":1757525942196,"y":71.24},{"x":1757525882042,"y":79.207},{"x":1757525821866,"y":85.817},{"x":1757525761707,"y":70.294},{"x":1757525701553,"y":67.494},{"x":1757525641392,"y":67.653},{"x":1757525581233,"y":68.446},{"x":1757525521076,"y":87.048},{"x":1757525460915,"y":91.618},{"x":1757525400822,"y":71.806},{"x":1757525340598,"y":66.828},{"x":1757525280469,"y":86.148},{"x":1757525220300,"y":66.174},{"x":1757525162933,"y":64.231},{"x":1757525102767,"y":63.065},{"x":1757525042605,"y":72.628},{"x":1757524982432,"y":78.371},{"x":1757524922283,"y":61.476},{"x":1757524862125,"y":63.237},{"x":1757524801943,"y":78.331},{"x":1757524741789,"y":76.133},{"x":1757524681638,"y":75.646},{"x":1757524621477,"y":71.94},{"x":1757524561324,"y":80.176},{"x":1757524501153,"y":71.884},{"x":1757524440972,"y":73.702},{"x":1757524380822,"y":69.943},{"x":1757524320792,"y":71.383},{"x":1757524260801,"y":88.438},{"x":1757524200511,"y":78.098},{"x":1757524142983,"y":95.479},{"x":1757524082816,"y":69.782},{"x":1757524022671,"y":91.435},{"x":1757523962520,"y":78.063},{"x":1757523902371,"y":88.86},{"x":1757523842225,"y":58.901},{"x":1757523782041,"y":68.374},{"x":1757523721889,"y":66.651},{"x":1757523661718,"y":62.91},{"x":1757523601645,"y":63.689},{"x":1757523541306,"y":67.115},{"x":1757523481071,"y":69.202},{"x":1757523420906,"y":76.953},{"x":1757523360760,"y":84.511},{"x":1757523300639,"y":80.177},{"x":1757523240393,"y":70.466},{"x":1757523180260,"y":75.603},{"x":1757523123035,"y":83.94},{"x":1757523062862,"y":68.84},{"x":1757523002704,"y":62.082},{"x":1757522942544,"y":84.354},{"x":1757522882383,"y":68.732},{"x":1757522822248,"y":71.814},{"x":1757522762092,"y":64.234},{"x":1757522701922,"y":60.329},{"x":1757522641745,"y":68.145},{"x":1757522581604,"y":54.567},{"x":1757522521447,"y":71.492},{"x":1757522461291,"y":69.311},{"x":1757522401148,"y":55.865},{"x":1757522340947,"y":70.885},{"x":1757522280787,"y":61.866},{"x":1757522220651,"y":73.85},{"x":1757522160573,"y":89.688},{"x":1757522100483,"y":66.292},{"x":1757522042963,"y":70.448},{"x":1757521982808,"y":84.329},{"x":1757521922660,"y":77.265},{"x":1757521862496,"y":73.718},{"x":1757521802343,"y":77.198},{"x":1757521742188,"y":83.809},{"x":1757521682009,"y":70.927},{"x":1757521621852,"y":69.23},{"x":1757521561702,"y":59.848},{"x":1757521501549,"y":82.566},{"x":1757521441400,"y":56.355},{"x":1757521381237,"y":66.359},{"x":1757521321068,"y":63.583},{"x":1757521260919,"y":51.414},{"x":1757521200800,"y":55.071},{"x":1757521140617,"y":53.8},{"x":1757521080434,"y":57.893},{"x":1757521020268,"y":61.4},{"x":1757520962937,"y":64.154},{"x":1757520902784,"y":66.596},{"x":1757520842637,"y":80.932},{"x":1757520782475,"y":92.535},{"x":1757520722310,"y":57.662},{"x":1757520662112,"y":73.166},{"x":1757520601896,"y":83.68},{"x":1757520541742,"y":65.313},{"x":1757520481590,"y":59.479},{"x":1757520421409,"y":55.629},{"x":1757520361257,"y":53.779},{"x":1757520301094,"y":52.814},{"x":1757520240927,"y":57.402},{"x":1757520180774,"y":51.715},{"x":1757520120625,"y":52.283},{"x":1757520060430,"y":40.296},{"x":1757520000359,"y":51.188},{"x":1757519942918,"y":65.276},{"x":1757519882689,"y":47.662},{"x":1757519822527,"y":55.01},{"x":1757519762385,"y":54.364},{"x":1757519702225,"y":51.266},{"x":1757519642074,"y":50.603},{"x":1757519581907,"y":42.481},{"x":1757519521750,"y":46.588},{"x":1757519461596,"y":60.624},{"x":1757519401437,"y":48.515},{"x":1757519341275,"y":40.144},{"x":1757519281128,"y":39.691},{"x":1757519220951,"y":60.356},{"x":1757519160800,"y":47.653},{"x":1757519100730,"y":66.999},{"x":1757519040505,"y":61.951},{"x":1757518980298,"y":44.952},{"x":1757518923002,"y":43.184},{"x":1757518862855,"y":46.211},{"x":1757518802696,"y":58.483},{"x":1757518742424,"y":61.258},{"x":1757518682264,"y":60.093},{"x":1757518622105,"y":53.589},{"x":1757518561941,"y":76.046},{"x":1757518501800,"y":82.189},{"x":1757518441632,"y":67.252},{"x":1757518381466,"y":65.462},{"x":1757518321313,"y":63.357},{"x":1757518261167,"y":74.989},{"x":1757518201000,"y":60.845},{"x":1757518140811,"y":69.829},{"x":1757518080665,"y":63.045},{"x":1757518020508,"y":87.968},{"x":1757517960384,"y":82.785},{"x":1757517900191,"y":100.869},{"x":1757517842913,"y":90.357},{"x":1757517782757,"y":71.724},{"x":1757517722610,"y":64.705},{"x":1757517662468,"y":63.453},{"x":1757517602279,"y":73.661},{"x":1757517542113,"y":65.994},{"x":1757517481945,"y":49.014},{"x":1757517421799,"y":48.58},{"x":1757517361631,"y":48.118},{"x":1757517301459,"y":50.281},{"x":1757517241304,"y":61.489},{"x":1757517181145,"y":60.515},{"x":1757517120942,"y":54.295},{"x":1757517060755,"y":62.901},{"x":1757517000582,"y":47.726},{"x":1757516940443,"y":57.052},{"x":1757516880325,"y":57.127},{"x":1757516822921,"y":58.025},{"x":1757516762771,"y":57.408},{"x":1757516702627,"y":64.177},{"x":1757516642468,"y":71.246},{"x":1757516582319,"y":62.313},{"x":1757516522165,"y":70.831},{"x":1757516462020,"y":59.354},{"x":1757516401968,"y":52.536},{"x":1757516341626,"y":65.924},{"x":1757516281451,"y":60.317},{"x":1757516221265,"y":60.747},{"x":1757516161123,"y":65.438},{"x":1757516100948,"y":61.83},{"x":1757516040779,"y":52.496},{"x":1757515980635,"y":66.702},{"x":1757515920570,"y":55.216},{"x":1757515860304,"y":85.289},{"x":1757515800277,"y":68.562},{"x":1757515742904,"y":65.06},{"x":1757515682734,"y":52.65},{"x":1757515622551,"y":90.233},{"x":1757515562401,"y":75.639},{"x":1757515502244,"y":77.274},{"x":1757515442093,"y":71.484},{"x":1757515381929,"y":79.559},{"x":1757515321762,"y":66.837},{"x":1757515261597,"y":80.836},{"x":1757515201444,"y":68.074},{"x":1757515141287,"y":61.858},{"x":1757515081111,"y":87.955},{"x":1757515020937,"y":46.769},{"x":1757514960794,"y":68.445},{"x":1757514900671,"y":67.764},{"x":1757514840552,"y":62.767},{"x":1757514780406,"y":57.401},{"x":1757514723008,"y":61.783},{"x":1757514662858,"y":53.776},{"x":1757514602707,"y":63.581},{"x":1757514542554,"y":60.941},{"x":1757514482405,"y":80.525},{"x":1757514422252,"y":74.194},{"x":1757514362086,"y":82.036},{"x":1757514301909,"y":94.402},{"x":1757514241752,"y":87.948},{"x":1757514181589,"y":66.85},{"x":1757514121426,"y":83.844},{"x":1757514061274,"y":70.519},{"x":1757514001135,"y":66.79},{"x":1757513940948,"y":74.363},{"x":1757513880800,"y":69.065},{"x":1757513820714,"y":85.922},{"x":1757513760594,"y":81.428},{"x":1757513700332,"y":79.084},{"x":1757513643004,"y":80.747},{"x":1757513582857,"y":72.241},{"x":1757513522656,"y":92.036},{"x":1757513462461,"y":91.006},{"x":1757513402268,"y":94.206},{"x":1757513342106,"y":56.901},{"x":1757513281928,"y":63.108},{"x":1757513221784,"y":72.927},{"x":1757513161624,"y":64.444},{"x":1757513101478,"y":77.314},{"x":1757513041319,"y":58.105},{"x":1757512981150,"y":52.311},{"x":1757512920978,"y":52.013},{"x":1757512860833,"y":53.118},{"x":1757512800857,"y":60.164},{"x":1757512740322,"y":78.962},{"x":1757512680050,"y":61.454},{"x":1757512622887,"y":50.79},{"x":1757512562745,"y":77.448},{"x":1757512502585,"y":77.223},{"x":1757512442451,"y":62.222},{"x":1757512382299,"y":66.258},{"x":1757512322140,"y":71.458},{"x":1757512261967,"y":60.894},{"x":1757512201800,"y":74.311},{"x":1757512141659,"y":75.041},{"x":1757512081487,"y":78.395},{"x":1757512021339,"y":78.765},{"x":1757511961192,"y":75.199},{"x":1757511901081,"y":96.911},{"x":1757511840851,"y":80.474},{"x":1757511780695,"y":65.461},{"x":1757511720596,"y":63.897},{"x":1757511660415,"y":77.823},{"x":1757511600348,"y":80.474},{"x":1757511542923,"y":73.12},{"x":1757511482769,"y":67.969},{"x":1757511422589,"y":71.948},{"x":1757511362427,"y":69.816},{"x":1757511302290,"y":74.342},{"x":1757511242140,"y":67.079},{"x":1757511181980,"y":64.357},{"x":1757511121795,"y":53.253},{"x":1757511061637,"y":56.493},{"x":1757511001451,"y":60.105},{"x":1757510941293,"y":77.64},{"x":1757510881122,"y":71.057},{"x":1757510820947,"y":49.017},{"x":1757510760804,"y":69.423},{"x":1757510700686,"y":43.73},{"x":1757510640553,"y":60.295},{"x":1757510580371,"y":54.654},{"x":1757510522955,"y":38.98},{"x":1757510462775,"y":66.419},{"x":1757510402794,"y":41.961},{"x":1757510342630,"y":38.196},{"x":1757510282474,"y":47.542},{"x":1757510221078,"y":42.87},{"x":1757510160900,"y":44.359},{"x":1757510100777,"y":82.827},{"x":1757510040646,"y":69.312},{"x":1757509980475,"y":75.331},{"x":1757509920327,"y":74.012},{"x":1757509863030,"y":48.832},{"x":1757509802802,"y":47.838},{"x":1757509742661,"y":63.943},{"x":1757509682467,"y":51.207},{"x":1757509622327,"y":23.732},{"x":1757509562159,"y":51.563},{"x":1757509501976,"y":62.669},{"x":1757509441823,"y":54.269},{"x":1757509381667,"y":45.314},{"x":1757509321484,"y":41.992},{"x":1757509261341,"y":50.083},{"x":1757509201230,"y":52.0},{"x":1757509140825,"y":70.062},{"x":1757509080641,"y":47.26},{"x":1757509020496,"y":66.134},{"x":1757508960320,"y":72.614},{"x":1757508900476,"y":60.429},{"x":1757508840336,"y":67.597},{"x":1757508780041,"y":63.646},{"x":1757508722849,"y":71.696},{"x":1757508662688,"y":67.904},{"x":1757508602532,"y":56.502},{"x":1757508542355,"y":58.486},{"x":1757508482197,"y":58.07},{"x":1757508422032,"y":56.882},{"x":1757508361871,"y":61.069},{"x":1757508301708,"y":62.911},{"x":1757508241552,"y":79.051},{"x":1757508182324,"y":64.506},{"x":1757508122168,"y":64.405},{"x":1757508061988,"y":63.862},{"x":1757508001852,"y":77.152},{"x":1757507941686,"y":64.329},{"x":1757507881515,"y":50.755},{"x":1757507821372,"y":64.971},{"x":1757507761223,"y":47.747},{"x":1757507701066,"y":50.005},{"x":1757507640901,"y":61.2},{"x":1757507580755,"y":62.096},{"x":1757507520650,"y":64.488},{"x":1757507460474,"y":76.658},{"x":1757507400331,"y":52.259},{"x":1757507342922,"y":46.516},{"x":1757507282763,"y":80.092},{"x":1757507222606,"y":67.612},{"x":1757507162444,"y":88.727},{"x":1757507102295,"y":85.655},{"x":1757507042138,"y":65.054},{"x":1757506981974,"y":58.832},{"x":1757506921818,"y":46.449},{"x":1757506861669,"y":41.434},{"x":1757506801531,"y":51.862},{"x":1757506741384,"y":47.631},{"x":1757506681209,"y":57.023},{"x":1757506621050,"y":57.292},{"x":1757506560895,"y":53.348},{"x":1757506500827,"y":53.216},{"x":1757506440575,"y":57.536},{"x":1757506380367,"y":35.383},{"x":1757506320309,"y":46.071},{"x":1757506262935,"y":39.056},{"x":1757506202705,"y":25.238},{"x":1757506142530,"y":22.339},{"x":1757506082366,"y":26.33},{"x":1757506022194,"y":30.878},{"x":1757505962047,"y":27.031},{"x":1757505901881,"y":40.358},{"x":1757505841734,"y":14.079},{"x":1757505781559,"y":29.455},{"x":1757505721408,"y":45.749},{"x":1757505661261,"y":61.775},{"x":1757505601061,"y":32.588},{"x":1757505540725,"y":40.555},{"x":1757505482591,"y":51.657},{"x":1757505422433,"y":34.965},{"x":1757505362471,"y":41.626},{"x":1757505302301,"y":50.533},{"x":1757505242435,"y":64.487},{"x":1757505182276,"y":81.789},{"x":1757505122127,"y":75.232},{"x":1757505061966,"y":51.574},{"x":1757505001807,"y":41.333},{"x":1757504941666,"y":32.42},{"x":1757504881516,"y":31.945},{"x":1757504821349,"y":23.834},{"x":1757504761211,"y":26.739},{"x":1757504701048,"y":42.169},{"x":1757504640854,"y":13.474},{"x":1757504580693,"y":8.885},{"x":1757504520549,"y":14.184},{"x":1757504460414,"y":17.52},{"x":1757504400267,"y":26.726},{"x":1757504342910,"y":9.573},{"x":1757504282754,"y":18.895},{"x":1757504222599,"y":27.433},{"x":1757504162453,"y":17.074},{"x":1757504102309,"y":25.258},{"x":1757504042169,"y":30.853},{"x":1757503981986,"y":43.978},{"x":1757503921839,"y":47.456},{"x":1757503861683,"y":45.727},{"x":1757503801583,"y":41.876},{"x":1757503741383,"y":57.097},{"x":1757503681236,"y":48.126},{"x":1757503621066,"y":43.498},{"x":1757503560913,"y":54.314},{"x":1757503500755,"y":39.827},{"x":1757503440631,"y":24.908},{"x":1757503380445,"y":26.886},{"x":1757503320270,"y":36.582},{"x":1757503262985,"y":49.321},{"x":1757503202835,"y":54.686},{"x":1757503142679,"y":84.934},{"x":1757503082514,"y":91.773},{"x":1757503022374,"y":77.888},{"x":1757502962213,"y":86.263},{"x":1757502902055,"y":51.068},{"x":1757502841887,"y":49.238},{"x":1757502781722,"y":51.237},{"x":1757502721565,"y":50.679},{"x":1757502661349,"y":54.8},{"x":1757502601168,"y":37.186},{"x":1757502540969,"y":34.029},{"x":1757502480821,"y":35.959},{"x":1757502420668,"y":34.467},{"x":1757502360520,"y":54.267},{"x":1757502300402,"y":40.384},{"x":1757502240181,"y":41.853},{"x":1757502182881,"y":30.721},{"x":1757502122717,"y":33.315},{"x":1757502062562,"y":33.876},{"x":1757502002437,"y":35.872},{"x":1757501942186,"y":33.657},{"x":1757501881961,"y":20.596},{"x":1757501821806,"y":23.264},{"x":1757501761656,"y":18.804},{"x":1757501701499,"y":38.273},{"x":1757501641344,"y":40.273},{"x":1757501581188,"y":36.775},{"x":1757501520999,"y":46.348},{"x":1757501460850,"y":47.545},{"x":1757501400728,"y":42.385},{"x":1757501340522,"y":43.251},{"x":1757501280326,"y":58.551},{"x":1757501220148,"y":60.642},{"x":1757501162876,"y":38.795},{"x":1757501102720,"y":46.495},{"x":1757501042562,"y":55.775},{"x":1757500982398,"y":57.633},{"x":1757500922254,"y":28.557},{"x":1757500862097,"y":35.785},{"x":1757500801908,"y":25.492},{"x":1757500741739,"y":53.346},{"x":1757500681582,"y":34.323},{"x":1757500621427,"y":43.747},{"x":1757500561278,"y":21.513},{"x":1757500501119,"y":38.787},{"x":1757500440960,"y":48.324},{"x":1757500380793,"y":20.849},{"x":1757500320638,"y":28.174},{"x":1757500260485,"y":35.352},{"x":1757500200422,"y":50.41},{"x":1757500142957,"y":19.554},{"x":1757500082797,"y":25.972},{"x":1757500022641,"y":26.595},{"x":1757499962483,"y":27.673},{"x":1757499902358,"y":28.163},{"x":1757499842177,"y":43.761},{"x":1757499782040,"y":23.814},{"x":1757499721877,"y":46.131},{"x":1757499661715,"y":55.929},{"x":1757499601569,"y":53.081},{"x":1757499541398,"y":32.336},{"x":1757499481261,"y":27.072},{"x":1757499421096,"y":33.708},{"x":1757499360910,"y":58.506},{"x":1757499300784,"y":48.47},{"x":1757499240617,"y":45.21},{"x":1757499180369,"y":59.132},{"x":1757499120277,"y":68.076},{"x":1757499062864,"y":45.231},{"x":1757499002675,"y":60.013},{"x":1757498942515,"y":85.283},{"x":1757498882359,"y":71.982},{"x":1757498822196,"y":50.53},{"x":1757498762059,"y":62.06},{"x":1757498701873,"y":53.078},{"x":1757498641728,"y":55.066},{"x":1757498581552,"y":59.364},{"x":1757498521393,"y":77.385},{"x":1757498461263,"y":81.029},{"x":1757498401507,"y":76.333},{"x":1757498340725,"y":68.584},{"x":1757498280547,"y":65.742},{"x":1757498220340,"y":53.846},{"x":1757498160276,"y":76.345},{"x":1757498102911,"y":42.477},{"x":1757498042740,"y":41.982},{"x":1757497982597,"y":36.516},{"x":1757497922432,"y":51.083},{"x":1757497862279,"y":39.245},{"x":1757497802128,"y":31.6},{"x":1757497741960,"y":28.081},{"x":1757497681808,"y":42.72},{"x":1757497621646,"y":52.905},{"x":1757497561507,"y":50.585},{"x":1757497501358,"y":48.963},{"x":1757497441200,"y":49.638},{"x":1757497381043,"y":35.779},{"x":1757497320903,"y":36.922},{"x":1757497260743,"y":34.733},{"x":1757497200577,"y":46.105},{"x":1757497140339,"y":27.681},{"x":1757497083004,"y":49.47},{"x":1757497022838,"y":52.227},{"x":1757496962674,"y":57.477},{"x":1757496902527,"y":73.574},{"x":1757496842371,"y":38.787},{"x":1757496782210,"y":40.081},{"x":1757496722053,"y":56.517},{"x":1757496661871,"y":59.798},{"x":1757496601721,"y":46.108},{"x":1757496541555,"y":60.652},{"x":1757496481412,"y":61.811},{"x":1757496421245,"y":41.595},{"x":1757496361081,"y":59.216},{"x":1757496300931,"y":60.316},{"x":1757496240797,"y":80.809},{"x":1757496180604,"y":73.444},{"x":1757496120509,"y":80.044},{"x":1757496060351,"y":41.655},{"x":1757496002940,"y":41.059},{"x":1757495942770,"y":52.658},{"x":1757495882620,"y":49.13},{"x":1757495822435,"y":55.043},{"x":1757495762267,"y":44.552},{"x":1757495702119,"y":44.38},{"x":1757495641950,"y":44.503},{"x":1757495581803,"y":56.428},{"x":1757495521656,"y":36.925},{"x":1757495461430,"y":47.95},{"x":1757495401248,"y":49.542},{"x":1757495341087,"y":39.822},{"x":1757495280927,"y":45.191},{"x":1757495220782,"y":53.999},{"x":1757495160626,"y":45.563},{"x":1757495100500,"y":53.172},{"x":1757495040265,"y":57.374},{"x":1757494982924,"y":53.207},{"x":1757494922773,"y":59.268},{"x":1757494862615,"y":50.026},{"x":1757494802491,"y":53.763},{"x":1757494742293,"y":67.202},{"x":1757494682108,"y":60.635},{"x":1757494621933,"y":52.31},{"x":1757494561773,"y":57.17},{"x":1757494501610,"y":67.445},{"x":1757494441456,"y":62.308},{"x":1757494381308,"y":60.945},{"x":1757494321162,"y":54.466},{"x":1757494260997,"y":61.938},{"x":1757494200832,"y":67.22},{"x":1757494140670,"y":50.219},{"x":1757494080539,"y":37.962},{"x":1757494020359,"y":57.325},{"x":1757493960207,"y":57.916},{"x":1757493902885,"y":44.572},{"x":1757493842710,"y":52.664},{"x":1757493782552,"y":60.847},{"x":1757493722403,"y":49.389},{"x":1757493662244,"y":51.621},{"x":1757493602066,"y":58.604},{"x":1757493541890,"y":70.055},{"x":1757493481704,"y":62.344},{"x":1757493421541,"y":74.508},{"x":1757493361373,"y":66.156},{"x":1757493301222,"y":65.131},{"x":1757493241062,"y":70.244},{"x":1757493180898,"y":64.728},{"x":1757493120756,"y":61.31},{"x":1757493060598,"y":74.292},{"x":1757493000507,"y":91.627},{"x":1757492940274,"y":71.522},{"x":1757492882977,"y":60.942},{"x":1757492822810,"y":73.617},{"x":1757492762647,"y":61.819},{"x":1757492702497,"y":58.38},{"x":1757492642346,"y":56.082},{"x":1757492582192,"y":62.842},{"x":1757492522035,"y":77.074},{"x":1757492461875,"y":60.637},{"x":1757492401718,"y":67.153},{"x":1757492341591,"y":75.252},{"x":1757492281436,"y":69.448},{"x":1757492221296,"y":81.877},{"x":1757492161105,"y":76.79},{"x":1757492100927,"y":85.835},{"x":1757492040770,"y":78.452},{"x":1757491980618,"y":65.856},{"x":1757491920505,"y":65.332},{"x":1757491860375,"y":76.303},{"x":1757491802963,"y":81.665},{"x":1757491742797,"y":84.918},{"x":1757491682652,"y":100.124},{"x":1757491622502,"y":75.945},{"x":1757491562349,"y":71.081},{"x":1757491502202,"y":64.466},{"x":1757491442041,"y":64.756},{"x":1757491381880,"y":62.832},{"x":1757491321734,"y":78.417},{"x":1757491261572,"y":88.402},{"x":1757491201486,"y":68.339},{"x":1757491141176,"y":65.903},{"x":1757491080976,"y":110.766},{"x":1757491020814,"y":88.562},{"x":1757490960676,"y":92.415},{"x":1757490900545,"y":113.636},{"x":1757490840318,"y":112.235},{"x":1757490780050,"y":107.023},{"x":1757490722869,"y":118.364},{"x":1757490662723,"y":105.889},{"x":1757490602562,"y":93.385},{"x":1757490542411,"y":58.274},{"x":1757490482275,"y":78.952},{"x":1757490422118,"y":69.827},{"x":1757490361943,"y":58.849},{"x":1757490301793,"y":65.908},{"x":1757490241638,"y":62.884},{"x":1757490181483,"y":78.402},{"x":1757490121333,"y":71.497},{"x":1757490061169,"y":75.245},{"x":1757490001028,"y":59.559},{"x":1757489940833,"y":66.152},{"x":1757489880681,"y":65.315},{"x":1757489820587,"y":68.522},{"x":1757489760510,"y":66.872},{"x":1757489700235,"y":79.404},{"x":1757489642935,"y":76.96},{"x":1757489582779,"y":95.742},{"x":1757489522628,"y":85.482},{"x":1757489462481,"y":101.443},{"x":1757489402327,"y":69.523},{"x":1757489342101,"y":80.952},{"x":1757489281928,"y":69.714},{"x":1757489221775,"y":62.652},{"x":1757489161616,"y":71.915},{"x":1757489101459,"y":80.231},{"x":1757489041306,"y":77.838},{"x":1757488981165,"y":79.181},{"x":1757488920992,"y":80.57},{"x":1757488860834,"y":80.174},{"x":1757488800740,"y":75.917},{"x":1757488740501,"y":96.298},{"x":1757488680367,"y":76.41},{"x":1757488620128,"y":82.987},{"x":1757488562909,"y":84.383},{"x":1757488502762,"y":67.657},{"x":1757488442597,"y":77.375},{"x":1757488382443,"y":104.56},{"x":1757488322270,"y":91.774},{"x":1757488262060,"y":93.123},{"x":1757488201889,"y":91.077},{"x":1757488141727,"y":72.732},{"x":1757488081579,"y":66.718},{"x":1757488021422,"y":68.104},{"x":1757487961280,"y":62.156},{"x":1757487901123,"y":60.51},{"x":1757487840961,"y":64.243},{"x":1757487780813,"y":89.068},{"x":1757487720668,"y":69.707},{"x":1757487660585,"y":73.138},{"x":1757487600372,"y":75.531},{"x":1757487540026,"y":79.557},{"x":1757487482805,"y":72.856},{"x":1757487422650,"y":62.097},{"x":1757487362493,"y":72.975},{"x":1757487302338,"y":63.004},{"x":1757487242180,"y":61.688},{"x":1757487182030,"y":64.549},{"x":1757487121868,"y":74.426},{"x":1757487061714,"y":75.665},{"x":1757487001560,"y":88.533},{"x":1757486941416,"y":78.521},{"x":1757486881259,"y":76.381},{"x":1757486821112,"y":77.642},{"x":1757486760937,"y":79.955},{"x":1757486700839,"y":73.187},{"x":1757486640678,"y":60.224},{"x":1757486580508,"y":60.685},{"x":1757486520334,"y":69.176},{"x":1757486462950,"y":61.457},{"x":1757486402800,"y":55.042},{"x":1757486342621,"y":58.612},{"x":1757486282463,"y":56.188},{"x":1757486222286,"y":61.789},{"x":1757486162127,"y":59.357},{"x":1757486101965,"y":56.8},{"x":1757486041800,"y":58.348},{"x":1757485981632,"y":59.061},{"x":1757485921499,"y":82.649},{"x":1757485861329,"y":103.813},{"x":1757485801194,"y":85.588},{"x":1757485740985,"y":89.791},{"x":1757485680832,"y":98.907},{"x":1757485620671,"y":79.88},{"x":1757485560560,"y":91.24},{"x":1757485500476,"y":65.573},{"x":1757485442981,"y":78.392},{"x":1757485382825,"y":64.846},{"x":1757485322695,"y":65.158},{"x":1757485262537,"y":75.632},{"x":1757485202369,"y":76.138},{"x":1757485142212,"y":74.843},{"x":1757485082050,"y":90.588},{"x":1757485021884,"y":75.403},{"x":1757484961729,"y":90.467},{"x":1757484901568,"y":94.412},{"x":1757484841421,"y":75.694},{"x":1757484781266,"y":108.858},{"x":1757484721083,"y":107.727},{"x":1757484660846,"y":103.533},{"x":1757484600779,"y":87.258},{"x":1757484540461,"y":98.644},{"x":1757484480346,"y":83.754},{"x":1757484422938,"y":78.224},{"x":1757484362790,"y":74.453},{"x":1757484302628,"y":57.69},{"x":1757484242464,"y":65.243},{"x":1757484182330,"y":66.357},{"x":1757484122179,"y":76.363},{"x":1757484062010,"y":62.355},{"x":1757484001900,"y":75.688},{"x":1757483941629,"y":80.662},{"x":1757483881428,"y":75.395},{"x":1757483821269,"y":45.232},{"x":1757483761113,"y":63.1},{"x":1757483700950,"y":58.869},{"x":1757483640790,"y":60.943},{"x":1757483580651,"y":60.114},{"x":1757483520519,"y":58.256},{"x":1757483460325,"y":48.843},{"x":1757483403008,"y":48.371},{"x":1757483342856,"y":57.266},{"x":1757483282704,"y":50.965},{"x":1757483222542,"y":43.337},{"x":1757483162399,"y":42.748},{"x":1757483102248,"y":41.528},{"x":1757483042093,"y":40.382},{"x":1757482981918,"y":44.766},{"x":1757482921756,"y":35.892},{"x":1757482861603,"y":35.725},{"x":1757482801457,"y":33.078},{"x":1757482741282,"y":35.726},{"x":1757482681131,"y":35.888},{"x":1757482620967,"y":35.585},{"x":1757482560810,"y":37.001},{"x":1757482500738,"y":34.743},{"x":1757482440507,"y":44.783},{"x":1757482380386,"y":43.426},{"x":1757482323007,"y":44.318},{"x":1757482262876,"y":49.018},{"x":1757482202701,"y":45.779},{"x":1757482142544,"y":39.43},{"x":1757482082400,"y":40.764},{"x":1757482022243,"y":37.63},{"x":1757481962082,"y":41.358},{"x":1757481901923,"y":34.912},{"x":1757481841749,"y":36.324},{"x":1757481781590,"y":35.247},{"x":1757481721448,"y":40.359},{"x":1757481661276,"y":32.059},{"x":1757481601129,"y":32.584},{"x":1757481540966,"y":34.0},{"x":1757481480789,"y":43.949},{"x":1757481420664,"y":33.541},{"x":1757481360451,"y":35.703},{"x":1757481300374,"y":36.155},{"x":1757481243021,"y":45.586},{"x":1757481182866,"y":47.254},{"x":1757481122667,"y":47.171},{"x":1757481062343,"y":49.708},{"x":1757481002149,"y":43.538},{"x":1757480941977,"y":38.462},{"x":1757480881822,"y":38.02},{"x":1757480821678,"y":31.468},{"x":1757480761529,"y":36.118},{"x":1757480701380,"y":35.598},{"x":1757480641247,"y":39.68},{"x":1757480581068,"y":37.753},{"x":1757480520918,"y":48.43},{"x":1757480460776,"y":44.531},{"x":1757480400993,"y":42.776},{"x":1757480340321,"y":46.378},{"x":1757480283018,"y":40.293},{"x":1757480222852,"y":35.047},{"x":1757480162731,"y":35.387},{"x":1757480102557,"y":34.588},{"x":1757480042401,"y":36.728},{"x":1757479982244,"y":38.05},{"x":1757479922086,"y":45.397},{"x":1757479861907,"y":35.875},{"x":1757479801756,"y":34.52},{"x":1757479741590,"y":33.43},{"x":1757479681431,"y":32.918},{"x":1757479621287,"y":38.548},{"x":1757479561134,"y":30.845},{"x":1757479501020,"y":34.845},{"x":1757479440804,"y":33.308},{"x":1757479380686,"y":35.159},{"x":1757479320494,"y":34.548},{"x":1757479260365,"y":35.419},{"x":1757479200335,"y":38.821},{"x":1757479142947,"y":33.864},{"x":1757479082799,"y":35.942},{"x":1757479022637,"y":34.932},{"x":1757478962480,"y":48.81},{"x":1757478902328,"y":48.46},{"x":1757478842180,"y":44.201},{"x":1757478782024,"y":44.896},{"x":1757478721869,"y":49.666},{"x":1757478661716,"y":39.147},{"x":1757478601552,"y":35.084},{"x":1757478541374,"y":35.638},{"x":1757478481227,"y":33.029},{"x":1757478421072,"y":32.959},{"x":1757478360924,"y":36.564},{"x":1757478300759,"y":36.699},{"x":1757478240608,"y":35.628},{"x":1757478180520,"y":44.195},{"x":1757478120323,"y":44.072},{"x":1757478063018,"y":43.183},{"x":1757478002863,"y":41.837},{"x":1757477942719,"y":40.284},{"x":1757477882549,"y":39.485},{"x":1757477822402,"y":35.174},{"x":1757477762249,"y":32.969},{"x":1757477702086,"y":34.437},{"x":1757477641916,"y":36.617},{"x":1757477581719,"y":44.704},{"x":1757477521514,"y":34.559},{"x":1757477461352,"y":36.645},{"x":1757477401187,"y":40.328},{"x":1757477341008,"y":40.473},{"x":1757477280855,"y":32.516},{"x":1757477220708,"y":33.754},{"x":1757477160596,"y":32.25},{"x":1757477100435,"y":47.708},{"x":1757477040251,"y":41.162},{"x":1757476982911,"y":42.039},{"x":1757476922753,"y":40.475},{"x":1757476862577,"y":40.033},{"x":1757476802453,"y":41.916},{"x":1757476742139,"y":38.98},{"x":1757476681928,"y":37.706},{"x":1757476621762,"y":36.141},{"x":1757476561616,"y":36.389},{"x":1757476501454,"y":39.158},{"x":1757476441303,"y":46.322},{"x":1757476381146,"y":35.327},{"x":1757476320970,"y":34.51},{"x":1757476260809,"y":38.591},{"x":1757476200699,"y":37.205},{"x":1757476140455,"y":38.022},{"x":1757476080376,"y":42.358},{"x":1757476022993,"y":38.892},{"x":1757475962852,"y":41.447},{"x":1757475902698,"y":36.783},{"x":1757475842552,"y":39.159},{"x":1757475782418,"y":37.64},{"x":1757475722245,"y":35.715},{"x":1757475662107,"y":41.292},{"x":1757475601935,"y":36.638},{"x":1757475541778,"y":50.888},{"x":1757475481622,"y":48.183},{"x":1757475421465,"y":44.327},{"x":1757475361318,"y":44.782},{"x":1757475301178,"y":45.2},{"x":1757475241004,"y":39.871},{"x":1757475180879,"y":37.667},{"x":1757475120702,"y":33.965},{"x":1757475060551,"y":34.166},{"x":1757475000512,"y":35.114},{"x":1757474943023,"y":36.19},{"x":1757474882861,"y":36.581},{"x":1757474822714,"y":35.153},{"x":1757474762562,"y":35.523},{"x":1757474702396,"y":29.995},{"x":1757474642245,"y":30.141},{"x":1757474582097,"y":33.307},{"x":1757474521920,"y":35.268},{"x":1757474461774,"y":37.769},{"x":1757474401613,"y":45.011},{"x":1757474341434,"y":47.331},{"x":1757474281286,"y":44.274},{"x":1757474221176,"y":38.586},{"x":1757474160921,"y":33.293},{"x":1757474100799,"y":32.473},{"x":1757474040579,"y":33.722},{"x":1757473980446,"y":37.102},{"x":1757473922998,"y":36.345},{"x":1757473862857,"y":30.449},{"x":1757473802686,"y":34.868},{"x":1757473742526,"y":35.512},{"x":1757473682377,"y":48.326},{"x":1757473622221,"y":48.19},{"x":1757473562067,"y":46.841},{"x":1757473501906,"y":42.743},{"x":1757473441570,"y":43.787},{"x":1757473381379,"y":31.774},{"x":1757473321207,"y":31.531},{"x":1757473261013,"y":35.126},{"x":1757473202877,"y":34.21},{"x":1757473142676,"y":33.458},{"x":1757473082461,"y":39.397},{"x":1757473022318,"y":34.775},{"x":1757472962162,"y":37.633},{"x":1757472901997,"y":37.508},{"x":1757472841842,"y":33.378},{"x":1757472781697,"y":34.481},{"x":1757472721544,"y":37.97},{"x":1757472661381,"y":32.811},{"x":1757472601233,"y":30.937},{"x":1757472541070,"y":44.492},{"x":1757472480910,"y":45.906},{"x":1757472420760,"y":48.217},{"x":1757472360582,"y":50.267},{"x":1757472300520,"y":45.048},{"x":1757472240037,"y":39.676},{"x":1757472182873,"y":35.096},{"x":1757472122717,"y":37.318},{"x":1757472062582,"y":36.26},{"x":1757472002431,"y":36.575},{"x":1757471942280,"y":38.637},{"x":1757471882131,"y":45.515},{"x":1757471821968,"y":44.653},{"x":1757471761816,"y":40.565},{"x":1757471701666,"y":42.033},{"x":1757471641508,"y":46.596},{"x":1757471581376,"y":33.223},{"x":1757471521215,"y":33.05},{"x":1757471461081,"y":33.823},{"x":1757471400929,"y":36.954},{"x":1757471340732,"y":33.586},{"x":1757471280599,"y":31.001},{"x":1757471220446,"y":32.676},{"x":1757471160245,"y":30.239},{"x":1757471102874,"y":32.852},{"x":1757471042728,"y":34.588},{"x":1757470982572,"y":34.086},{"x":1757470922418,"y":36.509},{"x":1757470862239,"y":35.276},{"x":1757470802078,"y":37.792},{"x":1757470741917,"y":36.822},{"x":1757470681755,"y":32.297},{"x":1757470621600,"y":32.356},{"x":1757470561446,"y":34.555},{"x":1757470501302,"y":37.495},{"x":1757470441138,"y":40.423},{"x":1757470380986,"y":40.045},{"x":1757470320819,"y":41.205},{"x":1757470260697,"y":40.624},{"x":1757470200549,"y":41.056},{"x":1757470140272,"y":30.431},{"x":1757470082954,"y":33.75},{"x":1757470022800,"y":29.685},{"x":1757469962646,"y":33.0},{"x":1757469902494,"y":33.018},{"x":1757469842344,"y":45.472},{"x":1757469782158,"y":57.632},{"x":1757469721989,"y":52.542},{"x":1757469661839,"y":52.534},{"x":1757469601817,"y":52.321},{"x":1757469541486,"y":37.86},{"x":1757469481287,"y":30.558},{"x":1757469421110,"y":31.323},{"x":1757469360943,"y":29.699},{"x":1757469300795,"y":38.495},{"x":1757469240623,"y":30.752},{"x":1757469180496,"y":43.957},{"x":1757469120325,"y":35.153},{"x":1757469062985,"y":36.239},{"x":1757469002835,"y":40.85},{"x":1757468942678,"y":33.219},{"x":1757468882535,"y":38.094},{"x":1757468822388,"y":30.808},{"x":1757468762234,"y":33.234},{"x":1757468702089,"y":33.315},{"x":1757468641899,"y":37.886},{"x":1757468581743,"y":34.78},{"x":1757468521593,"y":37.337},{"x":1757468461440,"y":39.723},{"x":1757468401287,"y":37.918},{"x":1757468341127,"y":34.888},{"x":1757468280898,"y":33.77},{"x":1757468220745,"y":35.185},{"x":1757468160662,"y":35.303},{"x":1757468100535,"y":33.106},{"x":1757468040307,"y":36.402},{"x":1757467982963,"y":35.875},{"x":1757467922819,"y":34.665},{"x":1757467862669,"y":33.26},{"x":1757467802509,"y":32.502},{"x":1757467742361,"y":34.625},{"x":1757467682209,"y":34.426},{"x":1757467622059,"y":31.617},{"x":1757467561887,"y":30.666},{"x":1757467501738,"y":29.53},{"x":1757467441593,"y":32.464},{"x":1757467381443,"y":30.38},{"x":1757467321302,"y":30.739},{"x":1757467261139,"y":30.731},{"x":1757467200978,"y":30.625},{"x":1757467140801,"y":31.037},{"x":1757467080650,"y":30.287},{"x":1757467020562,"y":32.46},{"x":1757466960302,"y":31.959},{"x":1757466902964,"y":31.616},{"x":1757466842811,"y":31.193},{"x":1757466782658,"y":32.065},{"x":1757466722492,"y":29.366},{"x":1757466662287,"y":31.971},{"x":1757466602087,"y":29.787},{"x":1757466541919,"y":28.391},{"x":1757466481768,"y":38.242},{"x":1757466421607,"y":31.922},{"x":1757466361451,"y":31.207},{"x":1757466301284,"y":32.092},{"x":1757466241128,"y":32.654},{"x":1757466180967,"y":37.815},{"x":1757466120804,"y":33.522},{"x":1757466060702,"y":33.728},{"x":1757466000844,"y":34.002},{"x":1757465940273,"y":31.678},{"x":1757465882879,"y":34.858},{"x":1757465822737,"y":29.451},{"x":1757465762582,"y":28.38},{"x":1757465702426,"y":31.856},{"x":1757465642279,"y":31.74},{"x":1757465582132,"y":28.366},{"x":1757465521984,"y":42.076},{"x":1757465461829,"y":53.284},{"x":1757465401680,"y":57.281},{"x":1757465341529,"y":56.665},{"x":1757465281383,"y":61.235},{"x":1757465221241,"y":40.961},{"x":1757465161081,"y":29.75},{"x":1757465100966,"y":30.718},{"x":1757465040753,"y":31.222},{"x":1757464980592,"y":31.777},{"x":1757464920439,"y":36.258},{"x":1757464860282,"y":38.488},{"x":1757464800096,"y":49.725},{"x":1757464742894,"y":51.943},{"x":1757464682750,"y":52.052},{"x":1757464622592,"y":48.289},{"x":1757464562446,"y":44.9},{"x":1757464502294,"y":30.481},{"x":1757464442149,"y":29.87},{"x":1757464381988,"y":29.038},{"x":1757464321844,"y":30.024},{"x":1757464261692,"y":39.808},{"x":1757464201546,"y":31.276},{"x":1757464141366,"y":32.161},{"x":1757464081214,"y":31.988},{"x":1757464021053,"y":31.294},{"x":1757463960883,"y":38.039},{"x":1757463900754,"y":32.847},{"x":1757463840593,"y":32.517},{"x":1757463780407,"y":32.522},{"x":1757463720318,"y":30.706},{"x":1757463662963,"y":30.38},{"x":1757463602794,"y":34.295},{"x":1757463542661,"y":34.925},{"x":1757463482496,"y":31.742},{"x":1757463422381,"y":34.192},{"x":1757463362187,"y":35.549},{"x":1757463302034,"y":36.931},{"x":1757463241855,"y":32.889},{"x":1757463181710,"y":33.377},{"x":1757463121505,"y":30.864},{"x":1757463061352,"y":29.508},{"x":1757463001125,"y":38.072},{"x":1757462940929,"y":32.367},{"x":1757462880784,"y":33.778},{"x":1757462820636,"y":28.954},{"x":1757462760518,"y":30.848},{"x":1757462700329,"y":43.279},{"x":1757462642987,"y":39.972},{"x":1757462582833,"y":48.425},{"x":1757462522682,"y":48.988},{"x":1757462462522,"y":49.971},{"x":1757462402380,"y":45.561},{"x":1757462342106,"y":45.047},{"x":1757462281895,"y":41.813},{"x":1757462221727,"y":38.613},{"x":1757462161581,"y":45.809},{"x":1757462101425,"y":37.892},{"x":1757462041270,"y":42.024},{"x":1757461981118,"y":42.136},{"x":1757461920949,"y":46.052},{"x":1757461860797,"y":47.376},{"x":1757461800651,"y":50.798},{"x":1757461740462,"y":53.183},{"x":1757461680330,"y":57.197},{"x":1757461623005,"y":47.093},{"x":1757461562868,"y":42.696},{"x":1757461502694,"y":37.915},{"x":1757461442534,"y":39.977},{"x":1757461382387,"y":41.234},{"x":1757461322235,"y":39.619},{"x":1757461262071,"y":39.331},{"x":1757461201916,"y":38.741},{"x":1757461141753,"y":50.101},{"x":1757461081598,"y":45.202},{"x":1757461021441,"y":57.714},{"x":1757460961284,"y":55.895},{"x":1757460901129,"y":53.029},{"x":1757460840943,"y":58.305},{"x":1757460780799,"y":55.077},{"x":1757460720639,"y":48.327},{"x":1757460660478,"y":40.096},{"x":1757460600456,"y":48.166},{"x":1757460542964,"y":53.732},{"x":1757460482818,"y":48.475},{"x":1757460422653,"y":50.021},{"x":1757460362501,"y":47.405},{"x":1757460302350,"y":42.531},{"x":1757460242203,"y":43.581},{"x":1757460182040,"y":41.6},{"x":1757460121883,"y":40.459},{"x":1757460061729,"y":42.819},{"x":1757460001584,"y":39.517},{"x":1757459941418,"y":42.372},{"x":1757459881274,"y":41.698},{"x":1757459821126,"y":40.907},{"x":1757459760953,"y":48.103},{"x":1757459700852,"y":45.649},{"x":1757459640659,"y":46.628},{"x":1757459580539,"y":52.583},{"x":1757459520345,"y":44.561},{"x":1757459462990,"y":45.442},{"x":1757459402815,"y":41.384},{"x":1757459342661,"y":43.054},{"x":1757459282495,"y":46.891},{"x":1757459222340,"y":43.696},{"x":1757459162198,"y":50.362},{"x":1757459102009,"y":49.358},{"x":1757459041846,"y":47.004},{"x":1757458981695,"y":48.452},{"x":1757458921544,"y":49.018},{"x":1757458861399,"y":45.8},{"x":1757458801350,"y":52.169},{"x":1757458741057,"y":47.809},{"x":1757458680862,"y":54.274},{"x":1757458620687,"y":48.261},{"x":1757458560544,"y":51.144},{"x":1757458500411,"y":41.798},{"x":1757458440273,"y":41.577},{"x":1757458382933,"y":41.053},{"x":1757458322784,"y":38.503},{"x":1757458262632,"y":40.173},{"x":1757458202483,"y":45.547},{"x":1757458142334,"y":41.031},{"x":1757458082174,"y":41.18},{"x":1757458022013,"y":40.924},{"x":1757457961852,"y":37.846},{"x":1757457901704,"y":42.994},{"x":1757457841552,"y":44.814},{"x":1757457781400,"y":54.152},{"x":1757457721233,"y":55.026},{"x":1757457661074,"y":47.052},{"x":1757457600918,"y":43.997},{"x":1757457540733,"y":41.974},{"x":1757457480580,"y":39.279},{"x":1757457420468,"y":42.09},{"x":1757457360373,"y":38.257},{"x":1757457302966,"y":41.671},{"x":1757457242796,"y":39.813},{"x":1757457182644,"y":48.262},{"x":1757457122493,"y":50.366},{"x":1757457062327,"y":50.446},{"x":1757457002158,"y":47.955},{"x":1757456941985,"y":59.631},{"x":1757456881838,"y":48.337},{"x":1757456821681,"y":50.605},{"x":1757456761524,"y":48.732},{"x":1757456701367,"y":48.3},{"x":1757456641230,"y":43.2},{"x":1757456581069,"y":39.213},{"x":1757456520904,"y":41.619},{"x":1757456460749,"y":41.259},{"x":1757456400621,"y":41.083},{"x":1757456340417,"y":42.585},{"x":1757456282977,"y":39.59},{"x":1757456222824,"y":39.64},{"x":1757456162657,"y":39.718},{"x":1757456102495,"y":42.539},{"x":1757456042347,"y":44.894},{"x":1757455982201,"y":41.479},{"x":1757455922043,"y":41.909},{"x":1757455861866,"y":40.61},{"x":1757455801683,"y":37.077},{"x":1757455741544,"y":39.08},{"x":1757455681373,"y":39.404},{"x":1757455621220,"y":50.488},{"x":1757455561053,"y":48.233},{"x":1757455500892,"y":48.709},{"x":1757455440739,"y":45.051},{"x":1757455380575,"y":46.615},{"x":1757455320386,"y":44.695},{"x":1757455260444,"y":41.859},{"x":1757455202920,"y":56.127},{"x":1757455142766,"y":51.068},{"x":1757455082563,"y":47.733},{"x":1757455022406,"y":51.317},{"x":1757454962261,"y":51.192},{"x":1757454902098,"y":40.643},{"x":1757454841919,"y":42.097},{"x":1757454781776,"y":44.4},{"x":1757454721622,"y":40.742},{"x":1757454661473,"y":41.805},{"x":1757454601269,"y":44.985},{"x":1757454541110,"y":38.86},{"x":1757454480950,"y":42.516},{"x":1757454420800,"y":41.869},{"x":1757454360659,"y":43.46},{"x":1757454300636,"y":44.778},{"x":1757454240302,"y":48.214},{"x":1757454182975,"y":44.721},{"x":1757454122840,"y":45.526},{"x":1757454062676,"y":39.378},{"x":1757454002521,"y":41.717},{"x":1757453942354,"y":40.246},{"x":1757453882187,"y":43.866},{"x":1757453822031,"y":48.737},{"x":1757453761879,"y":43.812},{"x":1757453701709,"y":44.448},{"x":1757453641542,"y":46.277},{"x":1757453581376,"y":56.223},{"x":1757453521222,"y":54.745},{"x":1757453461067,"y":55.111},{"x":1757453400912,"y":57.795},{"x":1757453340721,"y":55.519},{"x":1757453280594,"y":54.495},{"x":1757453220451,"y":44.774},{"x":1757453160339,"y":51.036},{"x":1757453102978,"y":55.181},{"x":1757453042819,"y":56.572},{"x":1757452982671,"y":55.633},{"x":1757452922519,"y":65.748},{"x":1757452862375,"y":57.903},{"x":1757452802220,"y":64.502},{"x":1757452742081,"y":62.586},{"x":1757452681902,"y":69.666},{"x":1757452621769,"y":77.831},{"x":1757452561611,"y":73.725},{"x":1757452501462,"y":62.055},{"x":1757452441314,"y":59.137},{"x":1757452381153,"y":60.152},{"x":1757452320985,"y":56.617},{"x":1757452260780,"y":59.21},{"x":1757452200727,"y":55.948},{"x":1757452140498,"y":55.905},{"x":1757452080319,"y":53.63},{"x":1757452022932,"y":52.952},{"x":1757451962777,"y":55.976},{"x":1757451902623,"y":54.108},{"x":1757451842471,"y":56.539},{"x":1757451782309,"y":55.374},{"x":1757451722157,"y":59.612},{"x":1757451661997,"y":58.355},{"x":1757451601931,"y":60.738},{"x":1757451541635,"y":57.753},{"x":1757451481327,"y":58.061},{"x":1757451421151,"y":70.387},{"x":1757451360989,"y":69.024},{"x":1757451300830,"y":64.36},{"x":1757451240666,"y":78.501},{"x":1757451180514,"y":74.51},{"x":1757451120412,"y":91.672},{"x":1757451063005,"y":84.667},{"x":1757451002854,"y":73.292},{"x":1757450942689,"y":75.433},{"x":1757450882534,"y":76.614},{"x":1757450822391,"y":81.013},{"x":1757450762242,"y":67.521},{"x":1757450702094,"y":68.202},{"x":1757450641923,"y":49.091},{"x":1757450581772,"y":54.676},{"x":1757450521629,"y":54.532},{"x":1757450461472,"y":54.751},{"x":1757450401332,"y":50.516},{"x":1757450341185,"y":53.362},{"x":1757450281022,"y":52.886},{"x":1757450220878,"y":70.014},{"x":1757450160739,"y":69.206},{"x":1757450100591,"y":64.094},{"x":1757450040492,"y":62.137},{"x":1757449980404,"y":54.448},{"x":1757449922934,"y":62.499},{"x":1757449862760,"y":55.708},{"x":1757449802607,"y":59.038},{"x":1757449742458,"y":54.358},{"x":1757449682309,"y":62.578},{"x":1757449622146,"y":62.751},{"x":1757449561990,"y":59.868},{"x":1757449501823,"y":61.817},{"x":1757449441677,"y":66.512},{"x":1757449381506,"y":66.857},{"x":1757449321359,"y":63.531},{"x":1757449261207,"y":69.49},{"x":1757449201065,"y":71.041},{"x":1757449140875,"y":61.958},{"x":1757449080719,"y":71.079},{"x":1757449020632,"y":67.108},{"x":1757448960480,"y":70.01},{"x":1757448900244,"y":83.544},{"x":1757448842981,"y":62.077},{"x":1757448782876,"y":65.098},{"x":1757448722684,"y":63.417},{"x":1757448662503,"y":72.681},{"x":1757448602291,"y":84.979},{"x":1757448542145,"y":65.058},{"x":1757448481934,"y":91.918},{"x":1757448421783,"y":87.098},{"x":1757448361633,"y":89.56},{"x":1757448301470,"y":93.217},{"x":1757448241329,"y":85.271},{"x":1757448181165,"y":64.267},{"x":1757448121008,"y":80.145},{"x":1757448060842,"y":69.555},{"x":1757448000853,"y":74.374},{"x":1757447940557,"y":76.865},{"x":1757447880323,"y":77.099},{"x":1757447822949,"y":81.786},{"x":1757447762787,"y":89.338},{"x":1757447702636,"y":100.705},{"x":1757447642458,"y":85.541},{"x":1757447582287,"y":80.201},{"x":1757447522135,"y":72.911},{"x":1757447461967,"y":69.415},{"x":1757447401813,"y":62.583},{"x":1757447341651,"y":81.893},{"x":1757447281491,"y":77.087},{"x":1757447221338,"y":93.655},{"x":1757447161187,"y":80.324},{"x":1757447101059,"y":80.77},{"x":1757447040867,"y":80.126},{"x":1757446980722,"y":98.312},{"x":1757446920569,"y":94.037},{"x":1757446860438,"y":99.729},{"x":1757446800391,"y":92.04},{"x":1757446742929,"y":90.787},{"x":1757446682766,"y":99.874},{"x":1757446622618,"y":83.832},{"x":1757446562469,"y":96.146},{"x":1757446502352,"y":83.39},{"x":1757446442159,"y":86.973},{"x":1757446381988,"y":91.235},{"x":1757446321847,"y":80.023},{"x":1757446261689,"y":98.901},{"x":1757446201574,"y":72.627},{"x":1757446141384,"y":89.82},{"x":1757446081240,"y":74.292},{"x":1757446021081,"y":80.638},{"x":1757445960919,"y":93.857},{"x":1757445900786,"y":72.81},{"x":1757445840624,"y":86.526},{"x":1757445780489,"y":79.318},{"x":1757445720263,"y":85.995},{"x":1757445662962,"y":82.307},{"x":1757445602822,"y":92.346},{"x":1757445542652,"y":84.66},{"x":1757445482498,"y":67.924},{"x":1757445422353,"y":70.721},{"x":1757445362204,"y":64.757},{"x":1757445302055,"y":71.364},{"x":1757445241886,"y":63.977},{"x":1757445181723,"y":87.729},{"x":1757445121569,"y":84.868},{"x":1757445061368,"y":88.927},{"x":1757445001148,"y":82.608},{"x":1757444940962,"y":79.267},{"x":1757444880820,"y":62.099},{"x":1757444820670,"y":79.224},{"x":1757444760574,"y":71.082},{"x":1757444700253,"y":85.717},{"x":1757444642914,"y":59.026},{"x":1757444582732,"y":85.341},{"x":1757444522605,"y":85.32},{"x":1757444462415,"y":98.505},{"x":1757444402399,"y":87.373},{"x":1757444342102,"y":81.675},{"x":1757444281893,"y":71.022},{"x":1757444221741,"y":86.712},{"x":1757444161593,"y":73.179},{"x":1757444101423,"y":90.006},{"x":1757444041264,"y":97.66},{"x":1757443981115,"y":80.942},{"x":1757443920948,"y":101.279},{"x":1757443860797,"y":80.092},{"x":1757443800680,"y":71.651},{"x":1757443740503,"y":97.469},{"x":1757443680327,"y":84.279},{"x":1757443622998,"y":94.016},{"x":1757443562845,"y":66.79},{"x":1757443502695,"y":73.933},{"x":1757443442540,"y":74.674},{"x":1757443382393,"y":91.862},{"x":1757443322247,"y":94.086},{"x":1757443262091,"y":94.292},{"x":1757443201910,"y":90.133},{"x":1757443141760,"y":82.699},{"x":1757443081594,"y":82.962},{"x":1757443021451,"y":71.596},{"x":1757442961295,"y":68.433},{"x":1757442901149,"y":70.975},{"x":1757442840983,"y":91.093},{"x":1757442780836,"y":81.208},{"x":1757442720694,"y":82.805},{"x":1757442660574,"y":98.737},{"x":1757442600445,"y":104.145},{"x":1757442540387,"y":114.327},{"x":1757442482938,"y":81.261},{"x":1757442422785,"y":88.694},{"x":1757442362629,"y":84.967},{"x":1757442302507,"y":96.738},{"x":1757442242326,"y":100.974},{"x":1757442182208,"y":92.799},{"x":1757442122004,"y":83.407},{"x":1757442061850,"y":76.066},{"x":1757442001676,"y":102.048},{"x":1757441941525,"y":91.493},{"x":1757441881368,"y":74.232},{"x":1757441821225,"y":79.546},{"x":1757441761042,"y":71.421},{"x":1757441700925,"y":80.824},{"x":1757441640706,"y":92.058},{"x":1757441580577,"y":65.049},{"x":1757441520467,"y":76.781},{"x":1757441460322,"y":81.302},{"x":1757441403012,"y":83.584},{"x":1757441342892,"y":87.692},{"x":1757441282698,"y":76.52},{"x":1757441222544,"y":112.439},{"x":1757441162387,"y":85.913},{"x":1757441102237,"y":75.497},{"x":1757441042081,"y":76.848},{"x":1757440981905,"y":84.59},{"x":1757440921723,"y":67.746},{"x":1757440861573,"y":66.664},{"x":1757440801471,"y":86.593},{"x":1757440741130,"y":85.819},{"x":1757440680943,"y":76.935},{"x":1757440620794,"y":72.205},{"x":1757440560696,"y":97.766},{"x":1757440500608,"y":93.275},{"x":1757440440329,"y":91.467},{"x":1757440380205,"y":81.189},{"x":1757440322900,"y":84.33},{"x":1757440262751,"y":77.95},{"x":1757440202605,"y":79.585},{"x":1757440142457,"y":63.082},{"x":1757440082309,"y":67.04},{"x":1757440022166,"y":70.911},{"x":1757439962023,"y":87.555},{"x":1757439901856,"y":102.161},{"x":1757439841697,"y":94.742},{"x":1757439781548,"y":68.877},{"x":1757439721398,"y":74.516},{"x":1757439661250,"y":85.537},{"x":1757439601106,"y":60.021},{"x":1757439540897,"y":72.782},{"x":1757439480751,"y":59.986},{"x":1757439420601,"y":64.51},{"x":1757439360445,"y":54.814},{"x":1757439300321,"y":81.802},{"x":1757439242974,"y":65.138},{"x":1757439182829,"y":81.504},{"x":1757439122676,"y":65.185},{"x":1757439062533,"y":76.876},{"x":1757439002389,"y":78.328},{"x":1757438942234,"y":95.201},{"x":1757438882084,"y":79.058},{"x":1757438821924,"y":67.711},{"x":1757438761774,"y":81.255},{"x":1757438701633,"y":89.665},{"x":1757438641479,"y":71.664},{"x":1757438581335,"y":70.912},{"x":1757438521181,"y":68.39},{"x":1757438461026,"y":67.411},{"x":1757438400920,"y":59.918},{"x":1757438340700,"y":58.204},{"x":1757438280564,"y":71.637},{"x":1757438220447,"y":74.092},{"x":1757438160327,"y":76.743},{"x":1757438102947,"y":78.903},{"x":1757438042793,"y":70.313},{"x":1757437982653,"y":55.6},{"x":1757437922466,"y":54.929},{"x":1757437862244,"y":76.237},{"x":1757437802071,"y":74.771},{"x":1757437741864,"y":54.431},{"x":1757437681714,"y":62.412},{"x":1757437621568,"y":96.987},{"x":1757437561412,"y":76.908},{"x":1757437501268,"y":63.439},{"x":1757437441098,"y":66.57},{"x":1757437380918,"y":49.07},{"x":1757437320772,"y":64.652},{"x":1757437260645,"y":49.369},{"x":1757437200766,"y":58.629},{"x":1757437140262,"y":66.714},{"x":1757437082965,"y":73.443},{"x":1757437022821,"y":73.246},{"x":1757436962644,"y":56.823},{"x":1757436902497,"y":83.122},{"x":1757436842341,"y":88.085},{"x":1757436782198,"y":71.855},{"x":1757436722053,"y":47.428},{"x":1757436661884,"y":62.08},{"x":1757436601741,"y":61.843},{"x":1757436541598,"y":87.447},{"x":1757436481428,"y":59.625},{"x":1757436421275,"y":55.557},{"x":1757436361130,"y":63.312},{"x":1757436300961,"y":70.343},{"x":1757436240773,"y":68.007},{"x":1757436180623,"y":70.686},{"x":1757436120448,"y":61.506},{"x":1757436060331,"y":55.281},{"x":1757436003030,"y":53.129},{"x":1757435942864,"y":74.819},{"x":1757435882714,"y":66.385},{"x":1757435822565,"y":71.272},{"x":1757435762415,"y":53.838},{"x":1757435702266,"y":43.077},{"x":1757435642112,"y":55.824},{"x":1757435581962,"y":70.221},{"x":1757435521804,"y":84.308},{"x":1757435461653,"y":47.754},{"x":1757435401503,"y":60.624},{"x":1757435341341,"y":52.61},{"x":1757435281209,"y":69.366},{"x":1757435221038,"y":60.833},{"x":1757435160883,"y":84.848},{"x":1757435100752,"y":63.279},{"x":1757435040602,"y":81.036},{"x":1757434980423,"y":72.819},{"x":1757434920271,"y":96.93},{"x":1757434862930,"y":73.677},{"x":1757434802777,"y":77.798},{"x":1757434742621,"y":65.761},{"x":1757434682465,"y":56.188},{"x":1757434622324,"y":57.54},{"x":1757434562138,"y":51.814},{"x":1757434501961,"y":76.595},{"x":1757434441800,"y":49.73},{"x":1757434381667,"y":73.003},{"x":1757434321468,"y":74.211},{"x":1757434261253,"y":92.64},{"x":1757434201054,"y":74.274},{"x":1757434140855,"y":76.81},{"x":1757434080721,"y":68.181},{"x":1757434020563,"y":90.794},{"x":1757433960414,"y":86.007},{"x":1757433900184,"y":54.92},{"x":1757433842897,"y":62.195},{"x":1757433782748,"y":74.219},{"x":1757433722595,"y":74.066},{"x":1757433662446,"y":104.444},{"x":1757433602270,"y":98.498},{"x":1757433542029,"y":65.79},{"x":1757433481798,"y":66.755},{"x":1757433421652,"y":69.602},{"x":1757433361488,"y":61.572},{"x":1757433301335,"y":77.558},{"x":1757433241187,"y":74.517},{"x":1757433181018,"y":66.563},{"x":1757433120866,"y":61.848},{"x":1757433060716,"y":54.15},{"x":1757433000704,"y":71.072},{"x":1757432940388,"y":74.923},{"x":1757432880382,"y":71.719},{"x":1757432822922,"y":78.729},{"x":1757432762756,"y":63.043},{"x":1757432702596,"y":67.434},{"x":1757432642435,"y":50.96},{"x":1757432582274,"y":46.398},{"x":1757432522128,"y":45.317},{"x":1757432461960,"y":58.098},{"x":1757432401809,"y":66.948},{"x":1757432341665,"y":50.727},{"x":1757432281439,"y":69.628},{"x":1757432221293,"y":63.479},{"x":1757432161147,"y":64.496},{"x":1757432100964,"y":50.451},{"x":1757432040801,"y":57.173},{"x":1757431980662,"y":54.045},{"x":1757431920535,"y":52.404},{"x":1757431860309,"y":59.784},{"x":1757431800178,"y":60.058},{"x":1757431742883,"y":55.675},{"x":1757431682721,"y":42.379},{"x":1757431622567,"y":59.134},{"x":1757431562409,"y":44.047},{"x":1757431502256,"y":40.608},{"x":1757431442094,"y":58.438},{"x":1757431381944,"y":55.323},{"x":1757431321783,"y":66.455},{"x":1757431261622,"y":66.915},{"x":1757431201456,"y":76.921},{"x":1757431141275,"y":98.759},{"x":1757431081126,"y":64.746},{"x":1757431020957,"y":63.194},{"x":1757430960809,"y":48.991},{"x":1757430900725,"y":55.832},{"x":1757430840518,"y":72.411},{"x":1757430780477,"y":56.436},{"x":1757430720272,"y":79.991},{"x":1757430662826,"y":98.104},{"x":1757430602641,"y":56.326},{"x":1757430542487,"y":55.551},{"x":1757430482337,"y":67.714},{"x":1757430422189,"y":56.199},{"x":1757430362025,"y":56.599},{"x":1757430301872,"y":42.796},{"x":1757430241706,"y":65.958},{"x":1757430181558,"y":73.602},{"x":1757430121414,"y":52.14},{"x":1757430061251,"y":62.016},{"x":1757430001068,"y":64.01},{"x":1757429940784,"y":65.945},{"x":1757429880445,"y":55.162},{"x":1757429820323,"y":50.36},{"x":1757429763011,"y":61.164},{"x":1757429702852,"y":65.647},{"x":1757429642689,"y":51.304},{"x":1757429582534,"y":58.882},{"x":1757429522391,"y":50.534},{"x":1757429462221,"y":32.488},{"x":1757429402059,"y":39.783},{"x":1757429341880,"y":43.951},{"x":1757429281730,"y":62.564},{"x":1757429221567,"y":66.373},{"x":1757429161421,"y":72.435},{"x":1757429101283,"y":78.834},{"x":1757429041115,"y":53.94},{"x":1757428980935,"y":44.73},{"x":1757428920789,"y":33.811},{"x":1757428860642,"y":38.747},{"x":1757428800744,"y":36.949},{"x":1757428740311,"y":33.054},{"x":1757428680301,"y":44.16},{"x":1757428622876,"y":65.569},{"x":1757428562725,"y":59.937},{"x":1757428502574,"y":61.208},{"x":1757428442426,"y":65.013},{"x":1757428382280,"y":103.517},{"x":1757428322114,"y":52.882},{"x":1757428261945,"y":68.429},{"x":1757428201793,"y":64.09},{"x":1757428141631,"y":50.408},{"x":1757428081487,"y":60.533},{"x":1757428021332,"y":56.536},{"x":1757427961188,"y":64.66},{"x":1757427901037,"y":43.844},{"x":1757427840847,"y":57.948},{"x":1757427780707,"y":55.345},{"x":1757427720569,"y":54.777},{"x":1757427660456,"y":58.548},{"x":1757427602996,"y":44.169},{"x":1757427542838,"y":40.545},{"x":1757427482682,"y":51.286},{"x":1757427422535,"y":48.292},{"x":1757427362384,"y":52.99},{"x":1757427302231,"y":57.527},{"x":1757427242080,"y":45.744},{"x":1757427181920,"y":59.134},{"x":1757427121754,"y":30.879},{"x":1757427061575,"y":33.757},{"x":1757427001368,"y":43.558},{"x":1757426941215,"y":37.895},{"x":1757426881037,"y":37.91},{"x":1757426820883,"y":59.199},{"x":1757426760741,"y":46.613},{"x":1757426700601,"y":37.668},{"x":1757426640468,"y":52.218},{"x":1757426580295,"y":53.614},{"x":1757426522969,"y":53.25},{"x":1757426462805,"y":64.582},{"x":1757426402688,"y":37.883},{"x":1757426342435,"y":36.56},{"x":1757426282212,"y":27.93},{"x":1757426222064,"y":36.156},{"x":1757426161908,"y":44.561},{"x":1757426101743,"y":41.905},{"x":1757426041595,"y":29.876},{"x":1757425981438,"y":34.646},{"x":1757425921280,"y":50.32},{"x":1757425861127,"y":58.218},{"x":1757425800954,"y":64.206},{"x":1757425740762,"y":47.805},{"x":1757425680665,"y":43.465},{"x":1757425620453,"y":41.901},{"x":1757425560369,"y":65.921},{"x":1757425502975,"y":83.485},{"x":1757425442817,"y":52.534},{"x":1757425382671,"y":45.409},{"x":1757425322519,"y":42.666},{"x":1757425262370,"y":48.897},{"x":1757425202223,"y":31.61},{"x":1757425142068,"y":57.355},{"x":1757425081893,"y":72.259},{"x":1757425021738,"y":37.909},{"x":1757424961567,"y":48.377},{"x":1757424901422,"y":68.721},{"x":1757424841269,"y":54.567},{"x":1757424781112,"y":68.231},{"x":1757424720949,"y":66.13},{"x":1757424660793,"y":58.617},{"x":1757424600699,"y":61.567},{"x":1757424540460,"y":50.63},{"x":1757424480312,"y":46.49},{"x":1757424422956,"y":57.474},{"x":1757424362802,"y":61.232},{"x":1757424302641,"y":51.04},{"x":1757424242474,"y":58.399},{"x":1757424182318,"y":64.597},{"x":1757424122159,"y":79.226},{"x":1757424061990,"y":58.422},{"x":1757424001837,"y":49.47},{"x":1757423941695,"y":40.512},{"x":1757423881549,"y":44.399},{"x":1757423821380,"y":64.77},{"x":1757423761249,"y":45.705},{"x":1757423701048,"y":52.362},{"x":1757423640856,"y":31.394},{"x":1757423580686,"y":26.826},{"x":1757423520586,"y":33.686},{"x":1757423460315,"y":37.715},{"x":1757423400129,"y":43.12},{"x":1757423342871,"y":17.048},{"x":1757423282689,"y":14.484},{"x":1757423222533,"y":40.146},{"x":1757423162358,"y":27.446},{"x":1757423102199,"y":38.331},{"x":1757423042016,"y":42.849},{"x":1757422981855,"y":38.262},{"x":1757422921704,"y":67.879},{"x":1757422861555,"y":46.57},{"x":1757422801444,"y":66.678},{"x":1757422741179,"y":65.02},{"x":1757422680965,"y":48.112},{"x":1757422620812,"y":64.437},{"x":1757422560664,"y":57.115},{"x":1757422500527,"y":62.807},{"x":1757422440276,"y":62.805},{"x":1757422383034,"y":64.76},{"x":1757422322866,"y":53.721},{"x":1757422262710,"y":68.904},{"x":1757422202577,"y":75.007},{"x":1757422142402,"y":81.643},{"x":1757422082247,"y":84.781},{"x":1757422022098,"y":66.745},{"x":1757421961922,"y":69.311},{"x":1757421901778,"y":61.599},{"x":1757421841613,"y":57.411},{"x":1757421781454,"y":68.034},{"x":1757421721291,"y":48.528},{"x":1757421661148,"y":78.797},{"x":1757421600968,"y":97.699},{"x":1757421540801,"y":76.751},{"x":1757421480676,"y":58.414},{"x":1757421420531,"y":59.537},{"x":1757421360351,"y":45.071},{"x":1757421303021,"y":45.731},{"x":1757421242861,"y":72.992},{"x":1757421182715,"y":59.369},{"x":1757421122548,"y":45.785},{"x":1757421062399,"y":69.188},{"x":1757421002244,"y":50.539},{"x":1757420942092,"y":43.075},{"x":1757420881939,"y":61.905},{"x":1757420821779,"y":52.225},{"x":1757420761622,"y":41.215},{"x":1757420701473,"y":52.618},{"x":1757420641312,"y":50.257},{"x":1757420581159,"y":49.535},{"x":1757420520976,"y":40.644},{"x":1757420460833,"y":45.744},{"x":1757420400753,"y":72.799},{"x":1757420340537,"y":71.769},{"x":1757420280330,"y":53.219},{"x":1757420222953,"y":46.392},{"x":1757420162792,"y":65.169},{"x":1757420102643,"y":58.82},{"x":1757420042488,"y":71.437},{"x":1757419982339,"y":61.973},{"x":1757419922167,"y":69.347},{"x":1757419861964,"y":54.005},{"x":1757419801759,"y":82.134},{"x":1757419741605,"y":57.863},{"x":1757419681440,"y":52.553},{"x":1757419621275,"y":57.384},{"x":1757419561121,"y":48.614},{"x":1757419500961,"y":80.69},{"x":1757419440790,"y":58.906},{"x":1757419380693,"y":81.551},{"x":1757419320473,"y":71.737},{"x":1757419260334,"y":78.561},{"x":1757419200159,"y":77.508},{"x":1757419142797,"y":80.313},{"x":1757419082506,"y":58.209},{"x":1757419022349,"y":70.726},{"x":1757418962177,"y":65.714},{"x":1757418901999,"y":60.221},{"x":1757418841820,"y":61.578},{"x":1757418781662,"y":51.486},{"x":1757418721504,"y":73.766},{"x":1757418661361,"y":75.043},{"x":1757418601209,"y":59.314},{"x":1757418541021,"y":55.727},{"x":1757418480864,"y":48.467},{"x":1757418420708,"y":51.738},{"x":1757418360591,"y":56.491},{"x":1757418300439,"y":51.278},{"x":1757418240308,"y":43.955},{"x":1757418182966,"y":51.158},{"x":1757418122819,"y":42.827},{"x":1757418062667,"y":64.231},{"x":1757418002501,"y":70.309},{"x":1757417942353,"y":78.073},{"x":1757417882201,"y":76.166},{"x":1757417822045,"y":81.19},{"x":1757417761889,"y":78.995},{"x":1757417701718,"y":63.486},{"x":1757417641552,"y":60.573},{"x":1757417581387,"y":45.883},{"x":1757417521242,"y":59.251},{"x":1757417461073,"y":60.541},{"x":1757417400916,"y":73.484},{"x":1757417340694,"y":63.394},{"x":1757417280572,"y":80.909},{"x":1757417220361,"y":85.046},{"x":1757417162919,"y":83.291},{"x":1757417102686,"y":84.68},{"x":1757417042538,"y":79.769},{"x":1757416982394,"y":60.957},{"x":1757416922240,"y":69.73},{"x":1757416862068,"y":65.838},{"x":1757416801907,"y":62.594},{"x":1757416741747,"y":54.581},{"x":1757416681594,"y":71.623},{"x":1757416621446,"y":82.859},{"x":1757416561284,"y":83.792},{"x":1757416501137,"y":82.321},{"x":1757416440966,"y":76.424},{"x":1757416380798,"y":87.48},{"x":1757416320652,"y":88.41},{"x":1757416260438,"y":90.319},{"x":1757416200061,"y":67.925},{"x":1757416142873,"y":70.53},{"x":1757416082714,"y":58.815},{"x":1757416022570,"y":73.03},{"x":1757415962416,"y":63.09},{"x":1757415902233,"y":73.14},{"x":1757415842078,"y":70.881},{"x":1757415781893,"y":69.114},{"x":1757415721738,"y":73.996},{"x":1757415661593,"y":72.497},{"x":1757415601545,"y":53.43},{"x":1757415541196,"y":75.524},{"x":1757415480990,"y":42.308},{"x":1757415420798,"y":48.869},{"x":1757415360670,"y":45.555},{"x":1757415300702,"y":56.57},{"x":1757415240325,"y":79.085},{"x":1757415182959,"y":62.78},{"x":1757415122812,"y":67.69},{"x":1757415062654,"y":93.979},{"x":1757415002489,"y":78.01},{"x":1757414942345,"y":56.505},{"x":1757414882190,"y":63.968},{"x":1757414822036,"y":85.571},{"x":1757414761872,"y":55.696},{"x":1757414701730,"y":59.383},{"x":1757414641572,"y":64.429},{"x":1757414581403,"y":76.904},{"x":1757414521232,"y":66.754},{"x":1757414461076,"y":65.1},{"x":1757414400987,"y":88.0},{"x":1757414340747,"y":53.228},{"x":1757414280611,"y":70.1},{"x":1757414220427,"y":59.564},{"x":1757414160325,"y":71.464},{"x":1757414102986,"y":64.616},{"x":1757414042838,"y":63.841},{"x":1757413982683,"y":86.728},{"x":1757413922527,"y":92.324},{"x":1757413862369,"y":85.621},{"x":1757413802222,"y":93.445},{"x":1757413742071,"y":88.378},{"x":1757413681901,"y":74.704},{"x":1757413621727,"y":64.337},{"x":1757413561582,"y":80.469},{"x":1757413501433,"y":77.724},{"x":1757413441276,"y":68.648},{"x":1757413381123,"y":81.33},{"x":1757413320956,"y":87.035},{"x":1757413260798,"y":71.567},{"x":1757413200757,"y":92.109},{"x":1757413140479,"y":77.646},{"x":1757413080355,"y":73.179},{"x":1757413020350,"y":65.599},{"x":1757412962918,"y":91.201},{"x":1757412902774,"y":67.775},{"x":1757412842623,"y":67.366},{"x":1757412782485,"y":51.726},{"x":1757412722318,"y":70.175},{"x":1757412662111,"y":64.775},{"x":1757412601911,"y":79.264},{"x":1757412541750,"y":59.778},{"x":1757412481584,"y":64.28},{"x":1757412421434,"y":71.078},{"x":1757412361290,"y":68.446},{"x":1757412301129,"y":64.158},{"x":1757412240941,"y":49.39},{"x":1757412180796,"y":65.994},{"x":1757412120661,"y":69.225},{"x":1757412060578,"y":59.665},{"x":1757412000420,"y":73.299},{"x":1757411942957,"y":67.464},{"x":1757411882746,"y":65.607},{"x":1757411822601,"y":65.518},{"x":1757411762442,"y":59.424},{"x":1757411702286,"y":83.496},{"x":1757411642128,"y":85.736},{"x":1757411581968,"y":69.448},{"x":1757411521823,"y":56.427},{"x":1757411461660,"y":70.79},{"x":1757411401505,"y":43.548},{"x":1757411341341,"y":35.104},{"x":1757411281178,"y":47.924},{"x":1757411221022,"y":52.736},{"x":1757411160874,"y":56.092},{"x":1757411100804,"y":42.019},{"x":1757411040539,"y":63.822},{"x":1757410980400,"y":53.647},{"x":1757410920250,"y":62.285},{"x":1757410862915,"y":64.334},{"x":1757410802743,"y":55.52},{"x":1757410742578,"y":77.029},{"x":1757410682382,"y":79.528},{"x":1757410622229,"y":70.035},{"x":1757410562063,"y":74.61},{"x":1757410501894,"y":78.769},{"x":1757410441734,"y":77.091},{"x":1757410381585,"y":68.173},{"x":1757410321428,"y":85.874},{"x":1757410261279,"y":67.843},{"x":1757410201157,"y":74.785},{"x":1757410140934,"y":63.74},{"x":1757410080776,"y":62.889},{"x":1757410020598,"y":61.435},{"x":1757409960424,"y":62.559},{"x":1757409900330,"y":49.04},{"x":1757409842984,"y":46.961},{"x":1757409782827,"y":94.167},{"x":1757409722650,"y":88.224},{"x":1757409662492,"y":104.492},{"x":1757409602336,"y":115.985},{"x":1757409542179,"y":117.509},{"x":1757409482006,"y":107.777},{"x":1757409421846,"y":122.502},{"x":1757409361676,"y":96.333},{"x":1757409301531,"y":67.055},{"x":1757409241361,"y":67.514},{"x":1757409181213,"y":92.583},{"x":1757409121055,"y":87.835},{"x":1757409060824,"y":62.143},{"x":1757409000687,"y":66.518},{"x":1757408940476,"y":69.147},{"x":1757408880410,"y":71.844},{"x":1757408822976,"y":57.001},{"x":1757408762819,"y":67.99},{"x":1757408702658,"y":71.358},{"x":1757408642477,"y":59.041},{"x":1757408582291,"y":60.222},{"x":1757408522145,"y":64.521},{"x":1757408461965,"y":49.645},{"x":1757408401915,"y":52.948},{"x":1757408341595,"y":52.948},{"x":1757408281380,"y":56.141},{"x":1757408221222,"y":78.985},{"x":1757408161078,"y":63.283},{"x":1757408100917,"y":49.043},{"x":1757408040757,"y":54.627},{"x":1757407980611,"y":61.564},{"x":1757407920510,"y":66.958},{"x":1757407860356,"y":49.327},{"x":1757407802938,"y":59.525},{"x":1757407742775,"y":81.26},{"x":1757407682628,"y":65.031},{"x":1757407622473,"y":56.267},{"x":1757407562325,"y":71.681},{"x":1757407502172,"y":66.487},{"x":1757407441995,"y":68.287},{"x":1757407381847,"y":78.398},{"x":1757407321698,"y":70.905},{"x":1757407261542,"y":93.173},{"x":1757407201385,"y":78.769},{"x":1757407141212,"y":79.255},{"x":1757407081068,"y":61.062},{"x":1757407020916,"y":52.502},{"x":1757406960758,"y":68.784},{"x":1757406900655,"y":62.881},{"x":1757406840453,"y":72.928},{"x":1757406780352,"y":73.301},{"x":1757406722887,"y":73.761},{"x":1757406662733,"y":86.32},{"x":1757406602579,"y":70.216},{"x":1757406542430,"y":61.334},{"x":1757406482279,"y":66.285},{"x":1757406422133,"y":63.609},{"x":1757406361942,"y":57.992},{"x":1757406301784,"y":70.615},{"x":1757406241619,"y":72.521},{"x":1757406181470,"y":74.671},{"x":1757406121321,"y":75.303},{"x":1757406061161,"y":68.348},{"x":1757406001016,"y":61.179},{"x":1757405940819,"y":61.319},{"x":1757405880651,"y":64.034},{"x":1757405820513,"y":73.305},{"x":1757405760452,"y":78.03},{"x":1757405702997,"y":57.815},{"x":1757405642840,"y":66.539},{"x":1757405582695,"y":64.568},{"x":1757405522482,"y":73.338},{"x":1757405462302,"y":67.94},{"x":1757405402147,"y":64.161},{"x":1757405341968,"y":79.68},{"x":1757405281801,"y":63.55},{"x":1757405221641,"y":69.014},{"x":1757405161487,"y":96.75},{"x":1757405101346,"y":82.189},{"x":1757405041185,"y":86.269},{"x":1757404981013,"y":73.251},{"x":1757404920849,"y":84.597},{"x":1757404860704,"y":78.673},{"x":1757404800639,"y":92.611},{"x":1757404740396,"y":76.484},{"x":1757404680369,"y":74.133},{"x":1757404622905,"y":74.511},{"x":1757404562757,"y":74.238},{"x":1757404502591,"y":68.076},{"x":1757404442449,"y":57.046},{"x":1757404382271,"y":64.711},{"x":1757404322115,"y":86.49},{"x":1757404261918,"y":87.921},{"x":1757404201773,"y":79.149},{"x":1757404141617,"y":83.007},{"x":1757404081466,"y":76.062},{"x":1757404021314,"y":66.198},{"x":1757403961153,"y":66.882},{"x":1757403901007,"y":79.354},{"x":1757403840765,"y":63.737},{"x":1757403780616,"y":82.614},{"x":1757403720522,"y":71.255},{"x":1757403660321,"y":75.774},{"x":1757403602949,"y":68.214},{"x":1757403542797,"y":94.975},{"x":1757403482623,"y":86.903},{"x":1757403422474,"y":75.225},{"x":1757403362311,"y":82.889},{"x":1757403302157,"y":79.2},{"x":1757403242009,"y":84.907},{"x":1757403181830,"y":64.86},{"x":1757403121663,"y":69.212},{"x":1757403061512,"y":83.969},{"x":1757403001382,"y":82.864},{"x":1757402941202,"y":92.576},{"x":1757402881029,"y":85.5},{"x":1757402820873,"y":70.889},{"x":1757402760723,"y":72.553},{"x":1757402700582,"y":100.35},{"x":1757402640446,"y":84.373},{"x":1757402580293,"y":71.666},{"x":1757402522942,"y":79.337},{"x":1757402462793,"y":91.294},{"x":1757402402643,"y":76.122},{"x":1757402342495,"y":88.006},{"x":1757402282336,"y":95.931},{"x":1757402222194,"y":92.133},{"x":1757402162019,"y":98.268},{"x":1757402101866,"y":94.883},{"x":1757402041715,"y":93.03},{"x":1757401981552,"y":112.047},{"x":1757401921375,"y":110.148},{"x":1757401861212,"y":100.82},{"x":1757401800985,"y":94.16},{"x":1757401740828,"y":68.519},{"x":1757401680657,"y":66.256},{"x":1757401620519,"y":68.714},{"x":1757401560288,"y":81.284},{"x":1757401502962,"y":58.447},{"x":1757401442803,"y":61.566},{"x":1757401382670,"y":67.909},{"x":1757401322507,"y":58.417},{"x":1757401262355,"y":56.028},{"x":1757401202254,"y":46.965},{"x":1757401141948,"y":46.783},{"x":1757401081748,"y":44.866},{"x":1757401021584,"y":57.679},{"x":1757400961433,"y":51.298},{"x":1757400901285,"y":57.575},{"x":1757400841137,"y":58.551},{"x":1757400780974,"y":66.46},{"x":1757400720836,"y":71.883},{"x":1757400660677,"y":69.64},{"x":1757400600594,"y":81.0},{"x":1757400540405,"y":83.136},{"x":1757400480136,"y":82.809},{"x":1757400422860,"y":69.809},{"x":1757400362692,"y":83.168},{"x":1757400302533,"y":65.041},{"x":1757400242378,"y":69.225},{"x":1757400182219,"y":75.48},{"x":1757400122064,"y":72.249},{"x":1757400061896,"y":67.709},{"x":1757400001751,"y":55.076},{"x":1757399941601,"y":50.506},{"x":1757399881451,"y":53.279},{"x":1757399821305,"y":46.381},{"x":1757399761155,"y":53.595},{"x":1757399700995,"y":45.852},{"x":1757399640832,"y":45.387},{"x":1757399580693,"y":50.839},{"x":1757399520570,"y":47.077},{"x":1757399460403,"y":46.012},{"x":1757399403000,"y":45.962},{"x":1757399342848,"y":48.343},{"x":1757399282702,"y":61.145},{"x":1757399222544,"y":45.322},{"x":1757399162394,"y":52.013},{"x":1757399102232,"y":44.376},{"x":1757399042076,"y":52.822},{"x":1757398981911,"y":50.221},{"x":1757398921762,"y":63.516},{"x":1757398861604,"y":55.801},{"x":1757398801458,"y":70.74},{"x":1757398741306,"y":57.216},{"x":1757398681170,"y":69.585},{"x":1757398620962,"y":73.816},{"x":1757398560811,"y":55.344},{"x":1757398500721,"y":78.743},{"x":1757398440448,"y":65.351},{"x":1757398380308,"y":53.999},{"x":1757398320180,"y":43.632},{"x":1757398262791,"y":44.509},{"x":1757398202612,"y":53.21},{"x":1757398142455,"y":55.216},{"x":1757398082317,"y":50.033},{"x":1757398022151,"y":53.715},{"x":1757397961991,"y":43.815},{"x":1757397901838,"y":42.036},{"x":1757397841682,"y":44.003},{"x":1757397781528,"y":46.311},{"x":1757397721400,"y":41.644},{"x":1757397661234,"y":47.357},{"x":1757397601353,"y":37.517},{"x":1757397540714,"y":34.98},{"x":1757397480486,"y":35.182},{"x":1757397420398,"y":33.967},{"x":1757397362952,"y":37.418},{"x":1757397302777,"y":37.482},{"x":1757397242617,"y":45.365},{"x":1757397182468,"y":36.84},{"x":1757397122300,"y":37.846},{"x":1757397062165,"y":49.35},{"x":1757397002004,"y":52.15},{"x":1757396941847,"y":49.533},{"x":1757396881699,"y":47.947},{"x":1757396821547,"y":53.125},{"x":1757396761383,"y":33.82},{"x":1757396701261,"y":40.967},{"x":1757396641080,"y":38.26},{"x":1757396580944,"y":36.332},{"x":1757396520769,"y":38.666},{"x":1757396460619,"y":30.345},{"x":1757396400502,"y":38.475},{"x":1757396340403,"y":49.442},{"x":1757396282978,"y":37.825},{"x":1757396222821,"y":36.546},{"x":1757396162671,"y":35.779},{"x":1757396102502,"y":35.951},{"x":1757396042352,"y":46.75},{"x":1757395982195,"y":39.938},{"x":1757395922023,"y":39.237},{"x":1757395861867,"y":49.232},{"x":1757395801724,"y":47.191},{"x":1757395741563,"y":52.421},{"x":1757395681407,"y":47.811},{"x":1757395621263,"y":45.648},{"x":1757395561127,"y":46.357},{"x":1757395500964,"y":42.326},{"x":1757395440797,"y":38.647},{"x":1757395380629,"y":43.244},{"x":1757395320414,"y":38.648},{"x":1757395260337,"y":37.794},{"x":1757395203024,"y":42.773},{"x":1757395142848,"y":45.222},{"x":1757395082687,"y":42.933},{"x":1757395022543,"y":50.812},{"x":1757394962390,"y":51.161},{"x":1757394902236,"y":41.1},{"x":1757394842088,"y":40.699},{"x":1757394781928,"y":44.039},{"x":1757394721731,"y":49.588},{"x":1757394661543,"y":40.916},{"x":1757394601394,"y":37.945},{"x":1757394541225,"y":37.504},{"x":1757394481076,"y":37.381},{"x":1757394420897,"y":42.504},{"x":1757394360751,"y":42.361},{"x":1757394300604,"y":43.191},{"x":1757394240368,"y":45.925},{"x":1757394180169,"y":45.431},{"x":1757394122947,"y":52.125},{"x":1757394062799,"y":52.324},{"x":1757394002673,"y":45.844},{"x":1757393942430,"y":58.085},{"x":1757393882253,"y":56.007},{"x":1757393822092,"y":49.033},{"x":1757393761911,"y":47.898},{"x":1757393701747,"y":45.879},{"x":1757393641601,"y":36.296},{"x":1757393581437,"y":38.31},{"x":1757393521296,"y":43.282},{"x":1757393461120,"y":41.028},{"x":1757393400937,"y":35.909},{"x":1757393340781,"y":34.056},{"x":1757393280672,"y":33.799},{"x":1757393220497,"y":36.444},{"x":1757393160341,"y":38.424},{"x":1757393102983,"y":38.849},{"x":1757393042828,"y":42.525},{"x":1757392982683,"y":42.368},{"x":1757392922515,"y":48.566},{"x":1757392862364,"y":44.683},{"x":1757392802191,"y":37.432},{"x":1757392742051,"y":35.055},{"x":1757392681896,"y":36.03},{"x":1757392621751,"y":35.57},{"x":1757392561584,"y":32.377},{"x":1757392501423,"y":31.814},{"x":1757392441269,"y":36.529},{"x":1757392381113,"y":35.09},{"x":1757392320953,"y":36.796},{"x":1757392260799,"y":36.863},{"x":1757392200703,"y":39.771},{"x":1757392140473,"y":42.006},{"x":1757392080342,"y":37.722},{"x":1757392022987,"y":51.284},{"x":1757391962835,"y":49.328},{"x":1757391902685,"y":52.065},{"x":1757391842525,"y":47.93},{"x":1757391782370,"y":49.464},{"x":1757391722224,"y":39.369},{"x":1757391662077,"y":35.789},{"x":1757391601910,"y":36.164},{"x":1757391541797,"y":41.736},{"x":1757391481629,"y":42.86},{"x":1757391421490,"y":39.043},{"x":1757391361306,"y":36.923},{"x":1757391301167,"y":34.915},{"x":1757391240983,"y":36.723},{"x":1757391180833,"y":40.689},{"x":1757391120711,"y":34.337},{"x":1757391060508,"y":34.922},{"x":1757391000306,"y":35.968},{"x":1757390942889,"y":38.546},{"x":1757390882739,"y":40.815},{"x":1757390822593,"y":38.209},{"x":1757390762438,"y":38.941},{"x":1757390702295,"y":40.755},{"x":1757390642141,"y":41.907},{"x":1757390581974,"y":35.222},{"x":1757390521811,"y":33.897},{"x":1757390461598,"y":32.817},{"x":1757390401190,"y":38.479},{"x":1757390340727,"y":39.559},{"x":1757390280551,"y":44.399},{"x":1757390220504,"y":47.604},{"x":1757390160237,"y":49.247},{"x":1757390102954,"y":59.987},{"x":1757390042807,"y":36.941},{"x":1757389982644,"y":36.424},{"x":1757389922482,"y":33.345},{"x":1757389862338,"y":33.946},{"x":1757389802193,"y":31.667},{"x":1757389742046,"y":38.164},{"x":1757389681887,"y":33.877},{"x":1757389621739,"y":31.913},{"x":1757389561595,"y":31.238},{"x":1757389501455,"y":30.314},{"x":1757389441294,"y":34.953},{"x":1757389381141,"y":34.527},{"x":1757389320987,"y":46.977},{"x":1757389260830,"y":41.731},{"x":1757389200717,"y":42.778},{"x":1757389140532,"y":41.014},{"x":1757389080422,"y":43.744},{"x":1757389020285,"y":35.264},{"x":1757388962947,"y":34.783},{"x":1757388902794,"y":33.761},{"x":1757388842647,"y":48.082},{"x":1757388782493,"y":53.072},{"x":1757388722340,"y":44.035},{"x":1757388662183,"y":50.093},{"x":1757388602027,"y":56.87},{"x":1757388541868,"y":54.797},{"x":1757388481715,"y":58.843},{"x":1757388421570,"y":50.478},{"x":1757388361423,"y":41.284},{"x":1757388301276,"y":38.248},{"x":1757388241125,"y":35.367},{"x":1757388180947,"y":37.879},{"x":1757388120796,"y":39.328},{"x":1757388060625,"y":36.213},{"x":1757388000525,"y":36.6},{"x":1757387940366,"y":36.846},{"x":1757387880215,"y":36.712},{"x":1757387822910,"y":40.324},{"x":1757387762720,"y":38.322},{"x":1757387702571,"y":38.611},{"x":1757387642433,"y":37.023},{"x":1757387582200,"y":40.818},{"x":1757387521977,"y":35.4},{"x":1757387461834,"y":34.988},{"x":1757387401658,"y":35.774},{"x":1757387341498,"y":38.78},{"x":1757387281345,"y":41.335},{"x":1757387221197,"y":44.762},{"x":1757387161016,"y":46.463},{"x":1757387100874,"y":44.107},{"x":1757387040697,"y":43.047},{"x":1757386982572,"y":59.095},{"x":1757386922439,"y":53.211},{"x":1757386862167,"y":51.154},{"x":1757386801852,"y":49.719},{"x":1757386740926,"y":48.287},{"x":1757386680719,"y":38.004},{"x":1757386620600,"y":37.832},{"x":1757386560479,"y":38.923},{"x":1757386500296,"y":43.413},{"x":1757386442967,"y":41.731},{"x":1757386382818,"y":36.152},{"x":1757386322674,"y":37.706},{"x":1757386262528,"y":38.798},{"x":1757386202364,"y":37.996},{"x":1757386142212,"y":36.61},{"x":1757386082039,"y":38.713},{"x":1757386021880,"y":38.165},{"x":1757385961733,"y":36.268},{"x":1757385901581,"y":38.741},{"x":1757385841413,"y":40.702},{"x":1757385781258,"y":35.937},{"x":1757385721095,"y":39.049},{"x":1757385660937,"y":39.49},{"x":1757385600809,"y":35.014},{"x":1757385540652,"y":38.521},{"x":1757385480499,"y":33.174},{"x":1757385420362,"y":33.621},{"x":1757385362976,"y":38.171},{"x":1757385302825,"y":40.358},{"x":1757385242686,"y":41.348},{"x":1757385182535,"y":40.55},{"x":1757385122395,"y":39.663},{"x":1757385062214,"y":38.358},{"x":1757385002093,"y":37.859},{"x":1757384941890,"y":36.665},{"x":1757384881741,"y":36.919},{"x":1757384821598,"y":35.014},{"x":1757384761456,"y":32.959},{"x":1757384701300,"y":33.821},{"x":1757384641147,"y":36.982},{"x":1757384580991,"y":37.997},{"x":1757384520839,"y":40.427},{"x":1757384460694,"y":43.887},{"x":1757384400715,"y":50.677},{"x":1757384340322,"y":55.528},{"x":1757384280094,"y":54.089},{"x":1757384222857,"y":50.907},{"x":1757384162704,"y":47.526},{"x":1757384102545,"y":34.391},{"x":1757384042394,"y":32.207},{"x":1757383982243,"y":32.067},{"x":1757383922070,"y":42.277},{"x":1757383861858,"y":44.703},{"x":1757383801658,"y":45.148},{"x":1757383741502,"y":44.585},{"x":1757383681351,"y":47.924},{"x":1757383621208,"y":36.162},{"x":1757383561027,"y":37.443},{"x":1757383500905,"y":33.337},{"x":1757383440720,"y":34.923},{"x":1757383380580,"y":39.175},{"x":1757383320482,"y":33.932},{"x":1757383260285,"y":37.708},{"x":1757383203106,"y":41.285},{"x":1757383142789,"y":35.543},{"x":1757383082554,"y":38.235},{"x":1757383022418,"y":33.824},{"x":1757382962231,"y":38.011},{"x":1757382902074,"y":37.523},{"x":1757382841910,"y":35.02},{"x":1757382781764,"y":40.185},{"x":1757382721619,"y":35.467},{"x":1757382661467,"y":35.285},{"x":1757382601321,"y":34.413},{"x":1757382541167,"y":33.826},{"x":1757382480992,"y":45.789},{"x":1757382420849,"y":43.449},{"x":1757382360675,"y":40.403},{"x":1757382300791,"y":39.435},{"x":1757382240391,"y":40.577},{"x":1757382180220,"y":42.707},{"x":1757382122916,"y":36.294},{"x":1757382062744,"y":37.474},{"x":1757382002595,"y":36.503},{"x":1757381942432,"y":38.288},{"x":1757381882288,"y":43.778},{"x":1757381822142,"y":46.691},{"x":1757381761983,"y":46.712},{"x":1757381701831,"y":47.81},{"x":1757381641682,"y":48.445},{"x":1757381581529,"y":51.079},{"x":1757381521397,"y":42.122},{"x":1757381461229,"y":36.97},{"x":1757381401081,"y":38.023},{"x":1757381340874,"y":37.573},{"x":1757381280727,"y":42.765},{"x":1757381220590,"y":36.607},{"x":1757381160469,"y":34.781},{"x":1757381100402,"y":43.602},{"x":1757381043009,"y":36.951},{"x":1757380982848,"y":37.253},{"x":1757380922692,"y":39.203},{"x":1757380862531,"y":36.37},{"x":1757380802379,"y":36.734},{"x":1757380742207,"y":37.547},{"x":1757380682053,"y":41.009},{"x":1757380621904,"y":43.042},{"x":1757380561740,"y":35.669},{"x":1757380501595,"y":38.595},{"x":1757380441426,"y":36.277},{"x":1757380381285,"y":40.285},{"x":1757380321117,"y":45.332},{"x":1757380260921,"y":41.226},{"x":1757380200777,"y":41.496},{"x":1757380140552,"y":38.141},{"x":1757380080374,"y":37.92},{"x":1757380020184,"y":39.077},{"x":1757379962897,"y":39.786},{"x":1757379902748,"y":37.0},{"x":1757379842603,"y":43.812},{"x":1757379782453,"y":36.025},{"x":1757379722287,"y":37.389},{"x":1757379662144,"y":44.741},{"x":1757379602051,"y":36.242},{"x":1757379541777,"y":39.789},{"x":1757379481560,"y":48.944},{"x":1757379421391,"y":48.245},{"x":1757379361243,"y":50.149},{"x":1757379301090,"y":49.91},{"x":1757379240919,"y":37.858},{"x":1757379180767,"y":42.849},{"x":1757379120635,"y":38.732},{"x":1757379060490,"y":37.168},{"x":1757379000503,"y":64.386},{"x":1757378942938,"y":60.444},{"x":1757378882786,"y":57.674},{"x":1757378822631,"y":59.209},{"x":1757378762481,"y":52.609},{"x":1757378702325,"y":42.786},{"x":1757378642166,"y":41.36},{"x":1757378581987,"y":43.482},{"x":1757378521836,"y":42.042},{"x":1757378461691,"y":43.12},{"x":1757378401536,"y":43.558},{"x":1757378341390,"y":44.15},{"x":1757378281229,"y":46.701},{"x":1757378221077,"y":39.544},{"x":1757378160902,"y":40.25},{"x":1757378100795,"y":38.375},{"x":1757378040600,"y":40.632},{"x":1757377980443,"y":42.066},{"x":1757377920345,"y":42.927},{"x":1757377860194,"y":37.731},{"x":1757377802871,"y":37.926},{"x":1757377742713,"y":43.995},{"x":1757377682567,"y":38.338},{"x":1757377622433,"y":36.636},{"x":1757377562274,"y":39.398},{"x":1757377502127,"y":38.086},{"x":1757377441971,"y":34.139},{"x":1757377381824,"y":38.481},{"x":1757377321677,"y":37.884},{"x":1757377261522,"y":38.322},{"x":1757377201362,"y":32.486},{"x":1757377141200,"y":40.182},{"x":1757377081026,"y":43.337},{"x":1757377020893,"y":48.637},{"x":1757376960749,"y":47.739},{"x":1757376900622,"y":46.274},{"x":1757376840462,"y":46.257},{"x":1757376780313,"y":48.993},{"x":1757376722987,"y":37.054},{"x":1757376662816,"y":41.177},{"x":1757376602614,"y":33.155},{"x":1757376542470,"y":32.823},{"x":1757376482324,"y":48.064},{"x":1757376422177,"y":47.65},{"x":1757376362032,"y":52.628},{"x":1757376301871,"y":52.459},{"x":1757376241725,"y":52.303},{"x":1757376181573,"y":42.578},{"x":1757376121410,"y":37.468},{"x":1757376061261,"y":35.512},{"x":1757376001227,"y":41.315},{"x":1757375940891,"y":37.867},{"x":1757375880714,"y":40.29},{"x":1757375820568,"y":35.678},{"x":1757375760440,"y":34.91},{"x":1757375700502,"y":40.166},{"x":1757375642952,"y":37.133},{"x":1757375582807,"y":38.462},{"x":1757375522649,"y":38.145},{"x":1757375462504,"y":39.1},{"x":1757375402338,"y":37.482},{"x":1757375342192,"y":38.27},{"x":1757375282048,"y":49.141},{"x":1757375221887,"y":50.219},{"x":1757375161745,"y":48.51},{"x":1757375101594,"y":49.28},{"x":1757375041446,"y":54.976},{"x":1757374981302,"y":39.711},{"x":1757374921157,"y":43.539},{"x":1757374860993,"y":39.34},{"x":1757374800855,"y":45.988},{"x":1757374740628,"y":48.012},{"x":1757374680498,"y":47.192},{"x":1757374620365,"y":46.412},{"x":1757374563020,"y":48.185},{"x":1757374502845,"y":37.953},{"x":1757374442705,"y":35.789},{"x":1757374382534,"y":44.369},{"x":1757374322371,"y":35.294},{"x":1757374262185,"y":43.603},{"x":1757374202050,"y":41.578},{"x":1757374141848,"y":41.54},{"x":1757374081719,"y":48.711},{"x":1757374021542,"y":35.958},{"x":1757373961409,"y":36.147},{"x":1757373901223,"y":42.004},{"x":1757373841078,"y":35.903},{"x":1757373780916,"y":37.933},{"x":1757373720762,"y":35.366},{"x":1757373660631,"y":37.888},{"x":1757373600563,"y":40.109},{"x":1757373540367,"y":39.366},{"x":1757373480129,"y":40.164},{"x":1757373422910,"y":42.481},{"x":1757373362754,"y":34.739},{"x":1757373302604,"y":36.937},{"x":1757373242450,"y":33.334},{"x":1757373182306,"y":33.004},{"x":1757373122163,"y":34.032},{"x":1757373061993,"y":33.351},{"x":1757373001770,"y":39.062},{"x":1757372941615,"y":39.193},{"x":1757372881468,"y":38.837},{"x":1757372821302,"y":38.408},{"x":1757372761150,"y":39.925},{"x":1757372700984,"y":36.049},{"x":1757372640822,"y":37.819},{"x":1757372580673,"y":38.078},{"x":1757372520569,"y":41.043},{"x":1757372460429,"y":38.262},{"x":1757372400308,"y":34.862},{"x":1757372342900,"y":41.649},{"x":1757372282707,"y":50.752},{"x":1757372222557,"y":50.248},{"x":1757372162420,"y":50.751},{"x":1757372102273,"y":47.44},{"x":1757372042119,"y":40.537},{"x":1757371981948,"y":37.242},{"x":1757371921793,"y":43.929},{"x":1757371861644,"y":38.455},{"x":1757371801489,"y":42.542},{"x":1757371741337,"y":40.351},{"x":1757371681200,"y":37.731},{"x":1757371621049,"y":44.526},{"x":1757371560888,"y":37.018},{"x":1757371500736,"y":53.982},{"x":1757371440525,"y":65.753},{"x":1757371380277,"y":62.047},{"x":1757371322935,"y":62.927},{"x":1757371262789,"y":58.574},{"x":1757371202631,"y":48.288},{"x":1757371142462,"y":38.45},{"x":1757371082318,"y":49.368},{"x":1757371022172,"y":55.648},{"x":1757370961983,"y":53.632},{"x":1757370901834,"y":48.32},{"x":1757370841678,"y":52.216},{"x":1757370781513,"y":53.574},{"x":1757370721363,"y":47.389},{"x":1757370661221,"y":56.863},{"x":1757370601076,"y":60.383},{"x":1757370540914,"y":56.213},{"x":1757370480780,"y":50.781},{"x":1757370420638,"y":49.747},{"x":1757370360496,"y":42.405},{"x":1757370300396,"y":43.781},{"x":1757370240186,"y":41.71},{"x":1757370182879,"y":41.05},{"x":1757370122723,"y":41.285},{"x":1757370062572,"y":40.369},{"x":1757370002424,"y":42.574},{"x":1757369942278,"y":40.586},{"x":1757369882116,"y":43.95},{"x":1757369821968,"y":39.823},{"x":1757369761829,"y":43.47},{"x":1757369701674,"y":38.699},{"x":1757369641521,"y":38.928},{"x":1757369581372,"y":67.933},{"x":1757369521201,"y":58.889},{"x":1757369461004,"y":55.074},{"x":1757369400811,"y":52.164},{"x":1757369340632,"y":52.395},{"x":1757369280517,"y":68.852},{"x":1757369220353,"y":63.86},{"x":1757369163032,"y":55.3},{"x":1757369102867,"y":47.781},{"x":1757369042694,"y":44.256},{"x":1757368982544,"y":56.219},{"x":1757368922391,"y":61.38},{"x":1757368862262,"y":62.936},{"x":1757368802164,"y":76.962},{"x":1757368741878,"y":78.532},{"x":1757368681613,"y":85.375},{"x":1757368621467,"y":72.372},{"x":1757368561289,"y":73.766},{"x":1757368501139,"y":72.655},{"x":1757368440972,"y":76.516},{"x":1757368380830,"y":55.407},{"x":1757368320710,"y":63.68},{"x":1757368260548,"y":72.731},{"x":1757368200409,"y":71.759},{"x":1757368140299,"y":81.498},{"x":1757368082938,"y":60.191},{"x":1757368022799,"y":82.024},{"x":1757367962651,"y":79.275},{"x":1757367902501,"y":78.052},{"x":1757367842345,"y":76.316},{"x":1757367782193,"y":77.961},{"x":1757367722045,"y":80.234},{"x":1757367661917,"y":70.723},{"x":1757367601752,"y":68.032},{"x":1757367541603,"y":58.866},{"x":1757367481385,"y":70.42},{"x":1757367421227,"y":70.457},{"x":1757367361082,"y":61.567},{"x":1757367300969,"y":71.419},{"x":1757367240770,"y":56.1},{"x":1757367180639,"y":72.496},{"x":1757367120535,"y":51.888},{"x":1757367060384,"y":69.206},{"x":1757367000145,"y":63.152},{"x":1757366942880,"y":79.534},{"x":1757366882726,"y":55.382},{"x":1757366822585,"y":74.509},{"x":1757366762436,"y":76.487},{"x":1757366702293,"y":74.974},{"x":1757366642138,"y":78.408},{"x":1757366581964,"y":89.48},{"x":1757366521812,"y":76.867},{"x":1757366461669,"y":68.792},{"x":1757366401520,"y":60.466},{"x":1757366341345,"y":68.503},{"x":1757366281077,"y":90.156},{"x":1757366220906,"y":80.565},{"x":1757366160768,"y":61.205},{"x":1757366100738,"y":65.256},{"x":1757366040455,"y":60.846},{"x":1757365980290,"y":65.359},{"x":1757365923009,"y":85.348},{"x":1757365862796,"y":79.916},{"x":1757365802566,"y":79.976},{"x":1757365742417,"y":70.111},{"x":1757365682257,"y":67.333},{"x":1757365622105,"y":55.349},{"x":1757365561937,"y":78.653},{"x":1757365501774,"y":83.577},{"x":1757365441610,"y":64.855},{"x":1757365381460,"y":82.455},{"x":1757365321303,"y":73.17},{"x":1757365261163,"y":67.78},{"x":1757365201005,"y":56.893},{"x":1757365140670,"y":72.059},{"x":1757365080447,"y":66.501},{"x":1757365020359,"y":46.904},{"x":1757364962993,"y":51.084},{"x":1757364902866,"y":49.299},{"x":1757364842698,"y":53.834},{"x":1757364782543,"y":68.598},{"x":1757364722401,"y":57.01},{"x":1757364662250,"y":59.65},{"x":1757364602103,"y":56.525},{"x":1757364541945,"y":72.224},{"x":1757364481775,"y":57.355},{"x":1757364421624,"y":63.839},{"x":1757364361463,"y":67.566},{"x":1757364301356,"y":72.14},{"x":1757364241150,"y":48.539},{"x":1757364180992,"y":56.76},{"x":1757364120850,"y":53.848},{"x":1757364060701,"y":64.271},{"x":1757364000654,"y":64.443},{"x":1757363940383,"y":65.506},{"x":1757363880229,"y":92.657},{"x":1757363822861,"y":82.133},{"x":1757363762717,"y":67.816},{"x":1757363702552,"y":90.759},{"x":1757363642398,"y":70.2},{"x":1757363582257,"y":63.294},{"x":1757363522091,"y":83.077},{"x":1757363461929,"y":50.932},{"x":1757363401787,"y":60.031},{"x":1757363341631,"y":53.435},{"x":1757363281477,"y":80.279},{"x":1757363221326,"y":90.48},{"x":1757363161170,"y":104.237},{"x":1757363101005,"y":71.349},{"x":1757363040831,"y":69.125},{"x":1757362980736,"y":85.798},{"x":1757362920580,"y":66.049},{"x":1757362860494,"y":57.831},{"x":1757362800324,"y":48.79},{"x":1757362742918,"y":54.132},{"x":1757362682689,"y":66.835},{"x":1757362622540,"y":67.936},{"x":1757362562400,"y":66.165},{"x":1757362502242,"y":76.204},{"x":1757362442082,"y":94.85},{"x":1757362381907,"y":78.754},{"x":1757362321753,"y":78.953},{"x":1757362261543,"y":90.233},{"x":1757362201368,"y":78.59},{"x":1757362141206,"y":91.144},{"x":1757362081056,"y":82.69},{"x":1757362020891,"y":88.212},{"x":1757361960752,"y":70.462},{"x":1757361900642,"y":59.899},{"x":1757361840590,"y":83.408},{"x":1757361780309,"y":92.2},{"x":1757361722965,"y":72.215},{"x":1757361662836,"y":86.602},{"x":1757361602666,"y":82.093},{"x":1757361542481,"y":84.257},{"x":1757361482233,"y":78.388},{"x":1757361422090,"y":64.74},{"x":1757361361927,"y":68.669},{"x":1757361301780,"y":69.686},{"x":1757361241618,"y":77.131},{"x":1757361181468,"y":69.403},{"x":1757361121314,"y":62.419},{"x":1757361061168,"y":70.784},{"x":1757361001021,"y":78.769},{"x":1757360940852,"y":58.431},{"x":1757360880704,"y":60.159},{"x":1757360820557,"y":51.231},{"x":1757360760418,"y":70.073},{"x":1757360700506,"y":69.07},{"x":1757360642957,"y":52.084},{"x":1757360582819,"y":59.831},{"x":1757360522656,"y":58.916},{"x":1757360462493,"y":85.948},{"x":1757360402337,"y":76.323},{"x":1757360342188,"y":70.865},{"x":1757360282045,"y":76.98},{"x":1757360221884,"y":65.445},{"x":1757360161727,"y":75.168},{"x":1757360101566,"y":60.761},{"x":1757360041416,"y":87.86},{"x":1757359981273,"y":83.699},{"x":1757359921109,"y":79.721},{"x":1757359860944,"y":60.237},{"x":1757359800826,"y":79.405},{"x":1757359740639,"y":66.991},{"x":1757359680551,"y":60.663},{"x":1757359620375,"y":82.884},{"x":1757359562966,"y":65.919},{"x":1757359502808,"y":65.906},{"x":1757359442660,"y":70.732},{"x":1757359382507,"y":57.887},{"x":1757359322350,"y":71.708},{"x":1757359262214,"y":58.783},{"x":1757359202028,"y":57.514},{"x":1757359141878,"y":70.602},{"x":1757359081737,"y":61.508},{"x":1757359021586,"y":52.557},{"x":1757358961430,"y":68.185},{"x":1757358901286,"y":72.004},{"x":1757358841097,"y":80.947},{"x":1757358780924,"y":58.097},{"x":1757358720732,"y":72.037},{"x":1757358660529,"y":83.366},{"x":1757358600369,"y":66.637},{"x":1757358540180,"y":62.365},{"x":1757358482890,"y":74.271},{"x":1757358422716,"y":75.478},{"x":1757358362575,"y":58.057},{"x":1757358302411,"y":68.719},{"x":1757358242259,"y":81.893},{"x":1757358182108,"y":75.274},{"x":1757358121941,"y":92.365},{"x":1757358061780,"y":85.613},{"x":1757358001731,"y":74.298},{"x":1757357941420,"y":75.141},{"x":1757357881242,"y":67.052},{"x":1757357821059,"y":74.877},{"x":1757357760892,"y":58.465},{"x":1757357700743,"y":60.254},{"x":1757357640598,"y":56.999},{"x":1757357580497,"y":76.98},{"x":1757357520386,"y":92.335},{"x":1757357463003,"y":85.977},{"x":1757357402837,"y":76.892},{"x":1757357342674,"y":70.29},{"x":1757357282528,"y":74.371},{"x":1757357222379,"y":75.601},{"x":1757357162227,"y":74.522},{"x":1757357102085,"y":72.489},{"x":1757357041899,"y":58.054},{"x":1757356981750,"y":65.074},{"x":1757356921599,"y":73.779},{"x":1757356861441,"y":87.158},{"x":1757356801290,"y":75.356},{"x":1757356741125,"y":86.11},{"x":1757356680947,"y":67.235},{"x":1757356620791,"y":71.571},{"x":1757356560670,"y":83.63},{"x":1757356500527,"y":70.852},{"x":1757356440344,"y":82.868},{"x":1757356380135,"y":78.34},{"x":1757356322903,"y":79.208},{"x":1757356262745,"y":75.74},{"x":1757356202594,"y":64.565},{"x":1757356142448,"y":91.539},{"x":1757356082309,"y":79.104},{"x":1757356022161,"y":85.841},{"x":1757355961987,"y":63.174},{"x":1757355901827,"y":61.013},{"x":1757355841679,"y":71.01},{"x":1757355781529,"y":69.149},{"x":1757355721378,"y":71.789},{"x":1757355661233,"y":72.178},{"x":1757355601119,"y":68.467},{"x":1757355540864,"y":74.397},{"x":1757355480721,"y":104.981},{"x":1757355420576,"y":75.496},{"x":1757355360408,"y":57.467},{"x":1757355300316,"y":65.37},{"x":1757355242904,"y":79.849},{"x":1757355182756,"y":95.32},{"x":1757355122597,"y":90.52},{"x":1757355062371,"y":86.807},{"x":1757355002192,"y":81.208},{"x":1757354942036,"y":73.772},{"x":1757354881873,"y":77.63},{"x":1757354821724,"y":86.127},{"x":1757354761581,"y":121.579},{"x":1757354701427,"y":105.597},{"x":1757354641316,"y":79.535},{"x":1757354581138,"y":75.637},{"x":1757354520979,"y":88.203},{"x":1757354460820,"y":100.199},{"x":1757354401047,"y":82.776},{"x":1757354340545,"y":100.126},{"x":1757354280310,"y":91.265},{"x":1757354220303,"y":78.145},{"x":1757354162863,"y":90.717},{"x":1757354102698,"y":69.325},{"x":1757354042541,"y":67.2},{"x":1757353982397,"y":55.211},{"x":1757353922252,"y":74.385},{"x":1757353862098,"y":63.282},{"x":1757353801949,"y":75.873},{"x":1757353741802,"y":66.376},{"x":1757353681655,"y":69.247},{"x":1757353621505,"y":75.488},{"x":1757353561358,"y":87.409},{"x":1757353501218,"y":87.116},{"x":1757353441050,"y":69.318},{"x":1757353380888,"y":64.122},{"x":1757353320750,"y":54.367},{"x":1757353260625,"y":57.746},{"x":1757353200488,"y":69.221},{"x":1757353140297,"y":80.616},{"x":1757353082968,"y":82.745},{"x":1757353022816,"y":84.88},{"x":1757352962647,"y":100.659},{"x":1757352902473,"y":74.114},{"x":1757352842317,"y":75.44},{"x":1757352782165,"y":79.893},{"x":1757352721990,"y":72.463},{"x":1757352661836,"y":71.472},{"x":1757352601680,"y":50.903},{"x":1757352541488,"y":56.655},{"x":1757352481349,"y":64.19},{"x":1757352421204,"y":59.662},{"x":1757352361041,"y":73.958},{"x":1757352300893,"y":72.304},{"x":1757352240737,"y":72.304},{"x":1757352180585,"y":69.498},{"x":1757352120486,"y":48.895},{"x":1757352060281,"y":66.458},{"x":1757352002941,"y":82.76},{"x":1757351942790,"y":87.22},{"x":1757351882650,"y":58.006},{"x":1757351822494,"y":59.729},{"x":1757351762328,"y":57.77},{"x":1757351702166,"y":66.597},{"x":1757351641984,"y":72.992},{"x":1757351581832,"y":80.933},{"x":1757351521645,"y":80.002},{"x":1757351461421,"y":80.004},{"x":1757351401194,"y":74.917},{"x":1757351341003,"y":77.911},{"x":1757351280817,"y":75.653},{"x":1757351220662,"y":68.877},{"x":1757351160508,"y":71.166},{"x":1757351100418,"y":58.188},{"x":1757351040090,"y":77.205},{"x":1757350982878,"y":74.61},{"x":1757350922715,"y":69.141},{"x":1757350862562,"y":64.702},{"x":1757350802380,"y":70.486},{"x":1757350742212,"y":64.326},{"x":1757350681982,"y":76.226},{"x":1757350621828,"y":52.771},{"x":1757350561648,"y":46.474},{"x":1757350501503,"y":50.705},{"x":1757350441337,"y":63.276},{"x":1757350381189,"y":77.121},{"x":1757350321022,"y":68.718},{"x":1757350260868,"y":78.603},{"x":1757350200740,"y":98.796},{"x":1757350140605,"y":82.012},{"x":1757350080437,"y":56.156},{"x":1757350020277,"y":64.149},{"x":1757349962942,"y":65.508},{"x":1757349902773,"y":50.521},{"x":1757349842615,"y":49.755},{"x":1757349782471,"y":50.276},{"x":1757349722317,"y":73.547},{"x":1757349662149,"y":60.008},{"x":1757349601968,"y":70.335},{"x":1757349541812,"y":54.109},{"x":1757349481654,"y":62.373},{"x":1757349421495,"y":56.537},{"x":1757349361347,"y":49.785},{"x":1757349301189,"y":56.763},{"x":1757349241014,"y":62.48},{"x":1757349180862,"y":84.281},{"x":1757349120736,"y":72.079},{"x":1757349060564,"y":73.338},{"x":1757349000411,"y":97.978},{"x":1757348943000,"y":93.871},{"x":1757348882843,"y":83.436},{"x":1757348822689,"y":66.146},{"x":1757348762542,"y":56.479},{"x":1757348702372,"y":64.854},{"x":1757348642217,"y":67.672},{"x":1757348582026,"y":74.089},{"x":1757348521869,"y":63.613},{"x":1757348461723,"y":81.015},{"x":1757348401567,"y":81.489},{"x":1757348341408,"y":93.155},{"x":1757348281255,"y":77.622},{"x":1757348221085,"y":45.347},{"x":1757348160920,"y":49.697},{"x":1757348100871,"y":55.912},{"x":1757348040604,"y":59.593},{"x":1757347980476,"y":61.207},{"x":1757347920303,"y":65.937},{"x":1757347862900,"y":57.969},{"x":1757347802711,"y":96.03},{"x":1757347742559,"y":92.366},{"x":1757347682411,"y":60.512},{"x":1757347622247,"y":57.72},{"x":1757347562090,"y":73.725},{"x":1757347501932,"y":62.068},{"x":1757347441777,"y":51.503},{"x":1757347381618,"y":45.893},{"x":1757347321468,"y":68.208},{"x":1757347261323,"y":76.021},{"x":1757347201436,"y":82.14},{"x":1757347140973,"y":64.838},{"x":1757347080741,"y":74.89},{"x":1757347020596,"y":88.41},{"x":1757346960474,"y":93.687},{"x":1757346900389,"y":74.881},{"x":1757346842991,"y":80.569},{"x":1757346782821,"y":63.636},{"x":1757346722671,"y":96.877},{"x":1757346662513,"y":67.874},{"x":1757346602360,"y":78.239},{"x":1757346542203,"y":72.218},{"x":1757346482043,"y":58.874},{"x":1757346421872,"y":72.697},{"x":1757346361709,"y":49.298},{"x":1757346301554,"y":55.884},{"x":1757346241393,"y":66.599},{"x":1757346181240,"y":48.272},{"x":1757346121058,"y":88.273},{"x":1757346060897,"y":67.007},{"x":1757346000778,"y":61.856},{"x":1757345940576,"y":70.022},{"x":1757345880465,"y":69.051},{"x":1757345820292,"y":54.105},{"x":1757345763022,"y":55.819},{"x":1757345702849,"y":59.517},{"x":1757345642691,"y":64.652},{"x":1757345582534,"y":37.545},{"x":1757345522381,"y":71.618},{"x":1757345462230,"y":75.061},{"x":1757345402082,"y":98.133},{"x":1757345341896,"y":68.978},{"x":1757345281748,"y":84.881},{"x":1757345221589,"y":67.599},{"x":1757345161433,"y":63.614},{"x":1757345101278,"y":44.626},{"x":1757345041110,"y":56.59},{"x":1757344980945,"y":46.19},{"x":1757344920793,"y":43.529},{"x":1757344860666,"y":42.98},{"x":1757344800499,"y":53.865},{"x":1757344740260,"y":46.353},{"x":1757344682956,"y":34.78},{"x":1757344622802,"y":62.461},{"x":1757344562643,"y":65.082},{"x":1757344502477,"y":89.431},{"x":1757344442314,"y":96.091},{"x":1757344382304,"y":62.442},{"x":1757344322197,"y":49.287},{"x":1757344262136,"y":55.05},{"x":1757344201580,"y":37.837},{"x":1757344141436,"y":38.724},{"x":1757344081270,"y":32.166},{"x":1757344021115,"y":32.374},{"x":1757343960939,"y":50.164},{"x":1757343900872,"y":53.303},{"x":1757343840669,"y":72.575},{"x":1757343780529,"y":62.807},{"x":1757343720322,"y":62.362},{"x":1757343662915,"y":54.195},{"x":1757343602778,"y":53.944},{"x":1757343542603,"y":48.599},{"x":1757343482410,"y":52.116},{"x":1757343422246,"y":47.991},{"x":1757343362087,"y":50.595},{"x":1757343301883,"y":46.117},{"x":1757343241727,"y":39.547},{"x":1757343181581,"y":55.326},{"x":1757343121410,"y":44.423},{"x":1757343061249,"y":30.807},{"x":1757343001064,"y":41.026},{"x":1757342940883,"y":39.632},{"x":1757342880752,"y":65.588},{"x":1757342820570,"y":56.837},{"x":1757342760552,"y":57.855},{"x":1757342700315,"y":55.268},{"x":1757342642942,"y":82.018},{"x":1757342582776,"y":61.058},{"x":1757342522622,"y":48.96},{"x":1757342462462,"y":50.057},{"x":1757342402314,"y":45.741},{"x":1757342342160,"y":63.008},{"x":1757342281999,"y":74.272},{"x":1757342221841,"y":81.571},{"x":1757342161680,"y":63.917},{"x":1757342101504,"y":59.592},{"x":1757342041330,"y":47.9},{"x":1757341981138,"y":33.823},{"x":1757341920967,"y":39.287},{"x":1757341860815,"y":41.979},{"x":1757341800682,"y":61.307},{"x":1757341740476,"y":53.757},{"x":1757341680327,"y":64.577},{"x":1757341620259,"y":75.726},{"x":1757341562893,"y":84.266},{"x":1757341502739,"y":78.693},{"x":1757341442571,"y":60.363},{"x":1757341382437,"y":31.53},{"x":1757341322262,"y":47.159},{"x":1757341262125,"y":52.214},{"x":1757341201925,"y":71.044},{"x":1757341141769,"y":65.205},{"x":1757341081586,"y":56.362},{"x":1757341021424,"y":53.004},{"x":1757340961256,"y":63.8},{"x":1757340901099,"y":76.678},{"x":1757340840904,"y":57.537},{"x":1757340780754,"y":54.31},{"x":1757340720661,"y":49.136},{"x":1757340660319,"y":75.918},{"x":1757340603002,"y":79.527},{"x":1757340542836,"y":72.406},{"x":1757340482667,"y":93.667},{"x":1757340422507,"y":76.952},{"x":1757340362337,"y":72.93},{"x":1757340302187,"y":66.013},{"x":1757340242017,"y":48.015},{"x":1757340181850,"y":48.105},{"x":1757340121683,"y":47.352},{"x":1757340061548,"y":63.701},{"x":1757340001421,"y":67.221},{"x":1757339941200,"y":70.611},{"x":1757339880924,"y":44.005},{"x":1757339820779,"y":48.336},{"x":1757339760641,"y":50.537},{"x":1757339700477,"y":41.186},{"x":1757339640324,"y":66.17},{"x":1757339582960,"y":53.81},{"x":1757339522808,"y":69.631},{"x":1757339462643,"y":78.725},{"x":1757339402474,"y":108.58},{"x":1757339342319,"y":76.541},{"x":1757339282081,"y":72.977},{"x":1757339221890,"y":66.437},{"x":1757339161744,"y":62.427},{"x":1757339101593,"y":63.387},{"x":1757339041434,"y":56.68},{"x":1757338981278,"y":51.558},{"x":1757338921115,"y":53.568},{"x":1757338860947,"y":64.618},{"x":1757338800823,"y":47.489},{"x":1757338740607,"y":41.458},{"x":1757338680487,"y":54.227},{"x":1757338620237,"y":54.793},{"x":1757338562915,"y":55.931},{"x":1757338502752,"y":38.432},{"x":1757338442595,"y":36.921},{"x":1757338382438,"y":54.89},{"x":1757338322283,"y":53.065},{"x":1757338262126,"y":39.998},{"x":1757338201947,"y":50.837},{"x":1757338141800,"y":45.683},{"x":1757338081638,"y":40.149},{"x":1757338021468,"y":72.902},{"x":1757337961330,"y":66.79},{"x":1757337901147,"y":76.754},{"x":1757337840964,"y":71.8},{"x":1757337780807,"y":56.758},{"x":1757337720641,"y":79.934},{"x":1757337660578,"y":81.19},{"x":1757337600395,"y":89.478},{"x":1757337540256,"y":88.693},{"x":1757337482861,"y":79.513},{"x":1757337422707,"y":74.25},{"x":1757337362546,"y":79.536},{"x":1757337302387,"y":50.423},{"x":1757337242226,"y":35.717},{"x":1757337182110,"y":31.873},{"x":1757337121897,"y":43.359},{"x":1757337061704,"y":48.232},{"x":1757337001493,"y":42.045},{"x":1757336941349,"y":61.824},{"x":1757336881154,"y":57.485},{"x":1757336820990,"y":52.677},{"x":1757336760815,"y":48.956},{"x":1757336700717,"y":49.177},{"x":1757336640535,"y":48.292},{"x":1757336580352,"y":31.039},{"x":1757336520089,"y":37.271},{"x":1757336462869,"y":33.145},{"x":1757336402710,"y":45.224},{"x":1757336342495,"y":67.354},{"x":1757336282299,"y":52.697},{"x":1757336222133,"y":42.408},{"x":1757336161959,"y":69.027},{"x":1757336101809,"y":52.056},{"x":1757336041687,"y":32.411},{"x":1757335981482,"y":30.11},{"x":1757335921357,"y":35.483},{"x":1757335861174,"y":25.66},{"x":1757335801036,"y":45.204},{"x":1757335740833,"y":48.893},{"x":1757335680703,"y":53.308},{"x":1757335620554,"y":45.98},{"x":1757335560534,"y":63.865},{"x":1757335503031,"y":62.479},{"x":1757335442894,"y":39.275},{"x":1757335382708,"y":37.056},{"x":1757335322536,"y":25.056},{"x":1757335262383,"y":47.829},{"x":1757335202213,"y":60.248},{"x":1757335142022,"y":58.566},{"x":1757335081857,"y":51.463},{"x":1757335021703,"y":82.497},{"x":1757334961533,"y":66.853},{"x":1757334901361,"y":76.151},{"x":1757334841207,"y":92.771},{"x":1757334781031,"y":65.03},{"x":1757334720862,"y":78.615},{"x":1757334660697,"y":60.356},{"x":1757334600719,"y":84.412},{"x":1757334540396,"y":52.875},{"x":1757334482980,"y":59.169},{"x":1757334422833,"y":73.634},{"x":1757334362687,"y":75.159},{"x":1757334302523,"y":59.037},{"x":1757334242346,"y":63.083},{"x":1757334182188,"y":53.07},{"x":1757334122029,"y":60.203},{"x":1757334061852,"y":43.052},{"x":1757334001700,"y":48.863},{"x":1757333941526,"y":45.576},{"x":1757333881323,"y":64.324},{"x":1757333821173,"y":61.857},{"x":1757333760996,"y":57.895},{"x":1757333700839,"y":78.058},{"x":1757333640649,"y":67.379},{"x":1757333580527,"y":69.534},{"x":1757333520319,"y":55.73},{"x":1757333462994,"y":66.476},{"x":1757333402781,"y":44.978},{"x":1757333342659,"y":50.546},{"x":1757333282463,"y":52.484},{"x":1757333222311,"y":82.388},{"x":1757333162145,"y":58.243},{"x":1757333101972,"y":57.27},{"x":1757333041821,"y":59.679},{"x":1757332981630,"y":64.207},{"x":1757332921470,"y":47.5},{"x":1757332861322,"y":58.665},{"x":1757332801483,"y":55.225},{"x":1757332740872,"y":73.584},{"x":1757332680654,"y":60.569},{"x":1757332620534,"y":60.293},{"x":1757332560363,"y":66.303},{"x":1757332503017,"y":79.562},{"x":1757332442852,"y":86.068},{"x":1757332382693,"y":87.713},{"x":1757332322504,"y":72.953},{"x":1757332262337,"y":95.36},{"x":1757332202171,"y":74.263},{"x":1757332142006,"y":68.349},{"x":1757332081844,"y":88.952},{"x":1757332021652,"y":49.297},{"x":1757331961494,"y":45.31},{"x":1757331901342,"y":84.654},{"x":1757331841151,"y":65.271},{"x":1757331780955,"y":58.167},{"x":1757331720796,"y":40.956},{"x":1757331660633,"y":64.463},{"x":1757331600598,"y":83.691},{"x":1757331540434,"y":57.617},{"x":1757331482932,"y":64.742},{"x":1757331422772,"y":80.73},{"x":1757331362609,"y":59.438},{"x":1757331302466,"y":47.198},{"x":1757331242300,"y":40.423},{"x":1757331182138,"y":33.109},{"x":1757331121962,"y":44.367},{"x":1757331061799,"y":49.051},{"x":1757331001657,"y":48.014},{"x":1757330941461,"y":38.263},{"x":1757330881314,"y":65.593},{"x":1757330821137,"y":57.972},{"x":1757330760953,"y":52.345},{"x":1757330700867,"y":50.862},{"x":1757330640677,"y":35.529},{"x":1757330580511,"y":46.526},{"x":1757330520321,"y":42.789},{"x":1757330462980,"y":53.607},{"x":1757330402816,"y":54.277},{"x":1757330342655,"y":48.31},{"x":1757330282495,"y":52.682},{"x":1757330222344,"y":29.413},{"x":1757330162158,"y":44.769},{"x":1757330101967,"y":43.735},{"x":1757330041796,"y":78.818},{"x":1757329981626,"y":38.821},{"x":1757329921504,"y":61.701},{"x":1757329861254,"y":55.166},{"x":1757329801082,"y":51.865},{"x":1757329740856,"y":47.284},{"x":1757329680699,"y":46.579},{"x":1757329620547,"y":43.285},{"x":1757329560440,"y":23.245},{"x":1757329502905,"y":29.045},{"x":1757329442745,"y":56.985},{"x":1757329382577,"y":41.459},{"x":1757329322415,"y":60.664},{"x":1757329262249,"y":42.364},{"x":1757329202152,"y":43.214},{"x":1757329141856,"y":59.495},{"x":1757329081633,"y":64.782},{"x":1757329021479,"y":59.319},{"x":1757328961311,"y":47.279},{"x":1757328901145,"y":31.618},{"x":1757328840957,"y":42.2},{"x":1757328780784,"y":40.352},{"x":1757328720701,"y":43.275},{"x":1757328660525,"y":65.139},{"x":1757328600434,"y":70.236},{"x":1757328543005,"y":69.3},{"x":1757328482858,"y":82.71},{"x":1757328422683,"y":70.217},{"x":1757328362515,"y":46.041},{"x":1757328302341,"y":44.355},{"x":1757328242165,"y":73.759},{"x":1757328181991,"y":54.963},{"x":1757328121836,"y":39.281},{"x":1757328061676,"y":70.777},{"x":1757328001551,"y":35.672},{"x":1757327941354,"y":49.106},{"x":1757327881200,"y":61.028},{"x":1757327821027,"y":53.605},{"x":1757327760874,"y":43.945},{"x":1757327700827,"y":45.414},{"x":1757327640579,"y":42.797},{"x":1757327580226,"y":32.192},{"x":1757327523016,"y":39.357},{"x":1757327462803,"y":33.8},{"x":1757327402630,"y":45.737},{"x":1757327342458,"y":32.485},{"x":1757327282305,"y":20.782},{"x":1757327222147,"y":49.081},{"x":1757327161967,"y":55.24},{"x":1757327101814,"y":71.603},{"x":1757327041654,"y":71.787},{"x":1757326981497,"y":52.318},{"x":1757326921336,"y":51.667},{"x":1757326861173,"y":60.425},{"x":1757326801029,"y":64.791},{"x":1757326740796,"y":50.682},{"x":1757326680638,"y":54.287},{"x":1757326620463,"y":42.096},{"x":1757326560308,"y":32.353},{"x":1757326502950,"y":41.464},{"x":1757326442795,"y":59.961},{"x":1757326382635,"y":50.835},{"x":1757326322450,"y":73.57},{"x":1757326262278,"y":64.634},{"x":1757326202053,"y":51.012},{"x":1757326141870,"y":68.554},{"x":1757326081677,"y":76.054},{"x":1757326021515,"y":60.001},{"x":1757325961354,"y":45.762},{"x":1757325901197,"y":63.227},{"x":1757325841004,"y":53.065},{"x":1757325780840,"y":49.712},{"x":1757325720691,"y":73.227},{"x":1757325660578,"y":51.13},{"x":1757325600369,"y":79.75},{"x":1757325540158,"y":61.032},{"x":1757325482782,"y":56.615},{"x":1757325422629,"y":57.828},{"x":1757325362505,"y":76.623},{"x":1757325302289,"y":47.762},{"x":1757325242127,"y":66.417},{"x":1757325181961,"y":68.542},{"x":1757325121799,"y":47.964},{"x":1757325061626,"y":44.647},{"x":1757325001456,"y":58.657},{"x":1757324941305,"y":73.944},{"x":1757324881112,"y":54.956},{"x":1757324820924,"y":52.728},{"x":1757324760773,"y":62.223},{"x":1757324700731,"y":64.54},{"x":1757324640522,"y":66.26},{"x":1757324580252,"y":57.456},{"x":1757324522912,"y":55.804},{"x":1757324462722,"y":57.62},{"x":1757324402560,"y":58.911},{"x":1757324342408,"y":93.496},{"x":1757324282254,"y":67.242},{"x":1757324222093,"y":45.525},{"x":1757324161914,"y":47.899},{"x":1757324101757,"y":46.863},{"x":1757324041587,"y":54.881},{"x":1757323981428,"y":80.076},{"x":1757323921273,"y":71.725},{"x":1757323861109,"y":62.931},{"x":1757323800913,"y":105.772},{"x":1757323740772,"y":63.664},{"x":1757323680609,"y":76.178},{"x":1757323620422,"y":71.03},{"x":1757323560185,"y":62.812},{"x":1757323502885,"y":54.272},{"x":1757323442732,"y":84.19},{"x":1757323382564,"y":100.866},{"x":1757323322419,"y":58.546},{"x":1757323262251,"y":67.697},{"x":1757323202095,"y":72.0},{"x":1757323141923,"y":54.234},{"x":1757323081764,"y":66.929},{"x":1757323021592,"y":39.344},{"x":1757322961420,"y":62.576},{"x":1757322901236,"y":73.645},{"x":1757322841018,"y":86.142},{"x":1757322780854,"y":97.378},{"x":1757322720775,"y":85.207},{"x":1757322660364,"y":77.198},{"x":1757322603025,"y":59.503},{"x":1757322542831,"y":62.578},{"x":1757322482637,"y":51.078},{"x":1757322422465,"y":65.952},{"x":1757322362282,"y":54.888},{"x":1757322302137,"y":41.531},{"x":1757322241934,"y":47.706},{"x":1757322181767,"y":62.328},{"x":1757322121591,"y":114.357},{"x":1757322061404,"y":107.552},{"x":1757322001382,"y":96.86},{"x":1757321940714,"y":101.159},{"x":1757321880523,"y":94.841},{"x":1757321820350,"y":104.754},{"x":1757321762944,"y":79.874},{"x":1757321702771,"y":101.343},{"x":1757321642562,"y":85.34},{"x":1757321582390,"y":89.191},{"x":1757321522215,"y":82.152},{"x":1757321461994,"y":70.928},{"x":1757321401782,"y":64.571},{"x":1757321320489,"y":73.57},{"x":1757321317490,"y":73.57},{"x":1757320802626,"y":67.474},{"x":1757320742351,"y":60.702},{"x":1757320682177,"y":61.881},{"x":1757320622013,"y":61.096},{"x":1757320561797,"y":49.261},{"x":1757320501599,"y":56.978},{"x":1757320441422,"y":63.196},{"x":1757320381208,"y":55.01},{"x":1757320321031,"y":75.484},{"x":1757320260874,"y":53.195},{"x":1757320200761,"y":60.494},{"x":1757320140525,"y":77.298},{"x":1757320080304,"y":101.414},{"x":1757320022921,"y":93.467},{"x":1757319962749,"y":106.553},{"x":1757319902578,"y":100.574},{"x":1757319842411,"y":73.138},{"x":1757319782239,"y":109.146},{"x":1757319722074,"y":93.419},{"x":1757319661738,"y":106.29},{"x":1757319601566,"y":94.233},{"x":1757319541373,"y":97.709},{"x":1757319481212,"y":84.843},{"x":1757319421031,"y":88.991},{"x":1757319360845,"y":75.37},{"x":1757319300740,"y":71.811},{"x":1757319240513,"y":71.498},{"x":1757319180419,"y":72.401},{"x":1757319123002,"y":67.091},{"x":1757319062779,"y":63.724},{"x":1757319002592,"y":78.802},{"x":1757318942403,"y":65.934},{"x":1757318882230,"y":65.433},{"x":1757318822038,"y":68.209},{"x":1757318761178,"y":71.183},{"x":1757318700990,"y":78.047},{"x":1757318640800,"y":64.125},{"x":1757318580627,"y":62.394},{"x":1757318520590,"y":64.628},{"x":1757318463105,"y":64.234},{"x":1757318400731,"y":69.752},{"x":1757318340571,"y":75.748},{"x":1757318280274,"y":91.304},{"x":1757318222949,"y":71.448},{"x":1757318162771,"y":76.985},{"x":1757318102579,"y":78.11},{"x":1757318042388,"y":64.895},{"x":1757317982214,"y":61.175},{"x":1757317922023,"y":63.918},{"x":1757317861739,"y":68.813},{"x":1757317801461,"y":66.604},{"x":1757317741301,"y":80.84},{"x":1757317681123,"y":72.961},{"x":1757317620919,"y":68.003},{"x":1757317560742,"y":76.514},{"x":1757317500745,"y":69.063},{"x":1757317440558,"y":76.838},{"x":1757317380224,"y":79.292},{"x":1757317322911,"y":72.838},{"x":1757317262745,"y":64.136},{"x":1757317202575,"y":72.029},{"x":1757317142403,"y":68.643},{"x":1757317082216,"y":93.422},{"x":1757317021993,"y":84.212},{"x":1757316961199,"y":73.456},{"x":1757316901009,"y":67.311},{"x":1757316840805,"y":75.308},{"x":1757316780645,"y":79.992},{"x":1757316720488,"y":84.275},{"x":1757316660383,"y":67.578},{"x":1757316603022,"y":76.637},{"x":1757316542827,"y":79.495},{"x":1757316482651,"y":92.753},{"x":1757316422397,"y":92.455},{"x":1757316362222,"y":100.239},{"x":1757316301622,"y":97.116},{"x":1757316241446,"y":90.875},{"x":1757316181277,"y":83.725},{"x":1757316121096,"y":88.143},{"x":1757316060920,"y":94.628},{"x":1757316000870,"y":79.027},{"x":1757315940551,"y":85.986},{"x":1757315880482,"y":89.26},{"x":1757315820261,"y":112.387},{"x":1757315762896,"y":113.839},{"x":1757315702720,"y":112.348},{"x":1757315642550,"y":85.936},{"x":1757315582360,"y":101.896},{"x":1757315522142,"y":91.55},{"x":1757315461656,"y":86.939},{"x":1757315401030,"y":84.125},{"x":1757315340813,"y":86.638},{"x":1757315280660,"y":89.849},{"x":1757315220480,"y":81.633},{"x":1757315160326,"y":89.729},{"x":1757315102941,"y":65.745},{"x":1757315042779,"y":81.285},{"x":1757314982613,"y":76.629},{"x":1757314922458,"y":79.313},{"x":1757314862207,"y":83.728},{"x":1757314802381,"y":98.253},{"x":1757314742110,"y":78.036},{"x":1757314681905,"y":72.027},{"x":1757314621733,"y":108.789},{"x":1757314561558,"y":71.682},{"x":1757314501397,"y":80.057},{"x":1757314441227,"y":76.148},{"x":1757314381066,"y":67.026},{"x":1757314320879,"y":69.04},{"x":1757314260706,"y":79.406},{"x":1757314200607,"y":92.676},{"x":1757314140407,"y":89.657},{"x":1757314083013,"y":97.759},{"x":1757314022838,"y":100.864},{"x":1757313962668,"y":81.195},{"x":1757313902473,"y":92.314},{"x":1757313842297,"y":94.663},{"x":1757313782116,"y":88.003},{"x":1757313721926,"y":81.796},{"x":1757313661760,"y":78.016},{"x":1757313601594,"y":82.801},{"x":1757313541416,"y":86.507},{"x":1757313481241,"y":80.042},{"x":1757313421047,"y":85.881},{"x":1757313360873,"y":81.67},{"x":1757313300734,"y":94.906},{"x":1757313240512,"y":116.616},{"x":1757313180379,"y":88.34},{"x":1757313120207,"y":96.541},{"x":1757313062877,"y":79.77},{"x":1757313002713,"y":76.623},{"x":1757312942540,"y":92.221},{"x":1757312882369,"y":115.226},{"x":1757312822198,"y":74.651},{"x":1757312762021,"y":78.295},{"x":1757312701825,"y":108.238},{"x":1757312641663,"y":97.46},{"x":1757312581482,"y":94.934},{"x":1757312521320,"y":115.673},{"x":1757312461036,"y":85.522},{"x":1757312400909,"y":103.183},{"x":1757312340548,"y":111.338},{"x":1757312280362,"y":125.925},{"x":1757312220279,"y":106.891},{"x":1757312162896,"y":98.831},{"x":1757312102713,"y":96.841},{"x":1757312042550,"y":95.746},{"x":1757311982347,"y":77.258},{"x":1757311922114,"y":65.701},{"x":1757311861642,"y":66.756},{"x":1757311801038,"y":67.634},{"x":1757311740830,"y":62.836},{"x":1757311680735,"y":66.874},{"x":1757311620533,"y":59.877},{"x":1757311560385,"y":66.676},{"x":1757311502915,"y":69.038},{"x":1757311442733,"y":72.359},{"x":1757311382565,"y":70.686},{"x":1757311322398,"y":63.623},{"x":1757311262187,"y":50.822},{"x":1757311202452,"y":58.227},{"x":1757311142102,"y":55.01},{"x":1757311081846,"y":55.857},{"x":1757311021677,"y":53.33},{"x":1757310961493,"y":57.129},{"x":1757310901201,"y":53.445},{"x":1757310841012,"y":52.954},{"x":1757310780819,"y":65.062},{"x":1757310720656,"y":71.462},{"x":1757310660532,"y":66.986},{"x":1757310600418,"y":63.286},{"x":1757310542951,"y":64.385},{"x":1757310482773,"y":57.294},{"x":1757310422595,"y":58.514},{"x":1757310362411,"y":54.84},{"x":1757310302248,"y":58.94},{"x":1757310242079,"y":56.736},{"x":1757310181895,"y":62.154},{"x":1757310121728,"y":59.16},{"x":1757310061551,"y":69.836},{"x":1757310001380,"y":65.705},{"x":1757309941207,"y":67.354},{"x":1757309881022,"y":66.713},{"x":1757309820855,"y":66.94},{"x":1757309760707,"y":70.909},{"x":1757309700606,"y":55.027},{"x":1757309640347,"y":48.967},{"x":1757309580320,"y":47.449},{"x":1757309522880,"y":48.172},{"x":1757309462696,"y":50.412},{"x":1757309402527,"y":45.068},{"x":1757309342354,"y":46.544},{"x":1757309282168,"y":49.689},{"x":1757309221994,"y":48.62},{"x":1757309161820,"y":53.337},{"x":1757309101637,"y":57.972},{"x":1757309041471,"y":57.535},{"x":1757308981301,"y":63.564},{"x":1757308921141,"y":57.994},{"x":1757308860846,"y":58.674},{"x":1757308800803,"y":51.183},{"x":1757308740475,"y":51.54},{"x":1757308680366,"y":46.785},{"x":1757308622913,"y":46.395},{"x":1757308562380,"y":45.822},{"x":1757308502212,"y":51.769},{"x":1757308442037,"y":47.646},{"x":1757308381848,"y":60.339},{"x":1757308321637,"y":69.866},{"x":1757308261445,"y":69.104},{"x":1757308201118,"y":80.525},{"x":1757308140883,"y":72.016},{"x":1757308080738,"y":63.13},{"x":1757308020456,"y":59.95},{"x":1757307960371,"y":62.433},{"x":1757307902944,"y":65.453},{"x":1757307842772,"y":55.785},{"x":1757307782614,"y":54.497},{"x":1757307722434,"y":49.511},{"x":1757307662252,"y":54.183},{"x":1757307602431,"y":64.895},{"x":1757307542036,"y":59.4},{"x":1757307481831,"y":58.635},{"x":1757307421650,"y":54.931},{"x":1757307361478,"y":48.76},{"x":1757307301051,"y":48.153},{"x":1757307240854,"y":54.308},{"x":1757307180683,"y":53.005},{"x":1757307120636,"y":49.306},{"x":1757307060367,"y":45.877},{"x":1757307000235,"y":44.673},{"x":1757306942863,"y":41.405},{"x":1757306882699,"y":45.672},{"x":1757306822530,"y":42.972},{"x":1757306762365,"y":59.352},{"x":1757306702203,"y":57.642},{"x":1757306642012,"y":56.043},{"x":1757306581838,"y":57.962},{"x":1757306521667,"y":53.302},{"x":1757306461501,"y":49.267},{"x":1757306401332,"y":51.749},{"x":1757306341160,"y":47.994},{"x":1757306280982,"y":51.313},{"x":1757306220761,"y":44.243},{"x":1757306160603,"y":46.197},{"x":1757306100435,"y":50.936},{"x":1757306040284,"y":60.646},{"x":1757305982942,"y":58.007},{"x":1757305922761,"y":60.347},{"x":1757305862587,"y":57.116},{"x":1757305802418,"y":46.528},{"x":1757305742252,"y":48.82},{"x":1757305682083,"y":51.051},{"x":1757305621906,"y":52.364},{"x":1757305561749,"y":50.321},{"x":1757305501562,"y":49.067},{"x":1757305441399,"y":58.352},{"x":1757305381223,"y":55.526},{"x":1757305321059,"y":57.858},{"x":1757305260859,"y":62.576},{"x":1757305200739,"y":60.18},{"x":1757305140572,"y":49.431},{"x":1757305080313,"y":48.695},{"x":1757305022931,"y":52.721},{"x":1757304962420,"y":54.08},{"x":1757304902245,"y":48.48},{"x":1757304842051,"y":48.178},{"x":1757304781868,"y":51.373},{"x":1757304721616,"y":49.147},{"x":1757304661421,"y":60.664},{"x":1757304600613,"y":60.621},{"x":1757304540370,"y":57.761},{"x":1757304481109,"y":57.912},{"x":1757304420922,"y":57.481},{"x":1757304361349,"y":50.589},{"x":1757304301185,"y":50.403},{"x":1757304241037,"y":47.5},{"x":1757304180869,"y":49.594},{"x":1757304120760,"y":44.306},{"x":1757304063534,"y":51.2},{"x":1757304002423,"y":44.24},{"x":1757303942094,"y":45.165},{"x":1757303881846,"y":48.812},{"x":1757303821671,"y":52.746},{"x":1757303761490,"y":54.984},{"x":1757303701062,"y":56.326},{"x":1757303640876,"y":61.491},{"x":1757303580698,"y":52.473},{"x":1757303520552,"y":45.916},{"x":1757303460468,"y":42.143},{"x":1757303403018,"y":42.891},{"x":1757303342837,"y":41.922},{"x":1757303282662,"y":44.005},{"x":1757303222493,"y":45.184},{"x":1757303162321,"y":54.854},{"x":1757303102150,"y":62.859},{"x":1757303041967,"y":59.738},{"x":1757302981794,"y":53.861},{"x":1757302921624,"y":51.985},{"x":1757302861457,"y":45.727},{"x":1757302801142,"y":46.827},{"x":1757302740947,"y":47.395},{"x":1757302680770,"y":42.279},{"x":1757302620594,"y":43.466},{"x":1757302560518,"y":42.182},{"x":1757302500384,"y":45.414},{"x":1757302442950,"y":50.076},{"x":1757302382789,"y":43.485},{"x":1757302322620,"y":45.213},{"x":1757302262426,"y":47.827},{"x":1757302202252,"y":50.209},{"x":1757302142079,"y":47.804},{"x":1757302081895,"y":44.142},{"x":1757302021721,"y":46.169},{"x":1757301961555,"y":44.691},{"x":1757301900851,"y":44.201},{"x":1757301840677,"y":63.437},{"x":1757301780493,"y":53.954},{"x":1757301720356,"y":55.132},{"x":1757301662940,"y":58.306},{"x":1757301602766,"y":57.003},{"x":1757301542597,"y":57.614},{"x":1757301482415,"y":49.635},{"x":1757301422253,"y":57.263},{"x":1757301362055,"y":54.666},{"x":1757301301856,"y":62.921},{"x":1757301241695,"y":60.607},{"x":1757301181480,"y":54.694},{"x":1757301121270,"y":52.018},{"x":1757301061006,"y":55.538},{"x":1757301000477,"y":46.929},{"x":1757300940251,"y":48.724},{"x":1757300880349,"y":50.316},{"x":1757300821886,"y":49.934},{"x":1757300761031,"y":54.934},{"x":1757300670779,"y":53.186},{"x":1757300667783,"y":52.864},{"x":1757300664802,"y":54.201},{"x":1757300644908,"y":58.899},{"x":1757300340531,"y":57.671},{"x":1757300280266,"y":59.46},{"x":1757300222888,"y":59.675},{"x":1757300162710,"y":55.067},{"x":1757300102536,"y":55.086},{"x":1757300042369,"y":49.857},{"x":1757299982197,"y":52.615},{"x":1757299922021,"y":53.915},{"x":1757299861613,"y":48.84},{"x":1757299801441,"y":45.921},{"x":1757299741251,"y":50.739},{"x":1757299681073,"y":62.565},{"x":1757299620891,"y":66.293},{"x":1757299560729,"y":64.945},{"x":1757299500679,"y":61.112},{"x":1757299440408,"y":52.043},{"x":1757299380223,"y":46.644},{"x":1757299322877,"y":53.48},{"x":1757299262711,"y":46.23},{"x":1757299202534,"y":48.036},{"x":1757299142360,"y":44.321},{"x":1757299082191,"y":51.771},{"x":1757299022025,"y":54.851},{"x":1757298961510,"y":54.224},{"x":1757298901340,"y":52.754},{"x":1757298841159,"y":56.131},{"x":1757298780989,"y":46.192},{"x":1757298720828,"y":53.119},{"x":1757298660675,"y":42.241},{"x":1757298600547,"y":48.139},{"x":1757298540365,"y":47.452},{"x":1757298482913,"y":47.88},{"x":1757298422736,"y":45.235},{"x":1757298362564,"y":43.689},{"x":1757298302417,"y":44.724},{"x":1757298242227,"y":42.559},{"x":1757298182054,"y":43.293},{"x":1757298121888,"y":46.38},{"x":1757298061691,"y":46.378},{"x":1757298001525,"y":50.219},{"x":1757297941375,"y":50.199},{"x":1757297881189,"y":48.466},{"x":1757297821029,"y":47.457},{"x":1757297760857,"y":49.894},{"x":1757297700787,"y":44.212},{"x":1757297640514,"y":44.879},{"x":1757297580490,"y":50.088},{"x":1757297520055,"y":41.222},{"x":1757297462845,"y":44.143},{"x":1757297402638,"y":52.492},{"x":1757297342468,"y":54.201},{"x":1757297282303,"y":64.044},{"x":1757297222126,"y":59.797},{"x":1757297161480,"y":63.217},{"x":1757297101318,"y":52.615},{"x":1757297041148,"y":52.04},{"x":1757296980963,"y":44.422},{"x":1757296920802,"y":40.433},{"x":1757296866664,"y":39.764},{"x":1757296802550,"y":41.203},{"x":1757296742023,"y":45.542},{"x":1757296681788,"y":46.877},{"x":1757296621621,"y":51.258},{"x":1757296561440,"y":59.595},{"x":1757296501230,"y":55.456},{"x":1757296441038,"y":54.227},{"x":1757296380867,"y":52.453},{"x":1757296320718,"y":41.969},{"x":1757296260548,"y":44.393},{"x":1757296200358,"y":48.708},{"x":1757296142936,"y":48.883},{"x":1757296082784,"y":46.997},{"x":1757296022609,"y":55.855},{"x":1757295962436,"y":57.299},{"x":1757295902227,"y":55.97},{"x":1757295842054,"y":54.063},{"x":1757295781865,"y":53.41},{"x":1757295721674,"y":39.566},{"x":1757295661498,"y":40.177},{"x":1757295600920,"y":44.898},{"x":1757295540735,"y":41.241},{"x":1757295480560,"y":43.198},{"x":1757295420388,"y":43.121},{"x":1757295362899,"y":46.614},{"x":1757295302726,"y":44.761},{"x":1757295242569,"y":49.858},{"x":1757295182423,"y":48.97},{"x":1757295122251,"y":44.637},{"x":1757295062096,"y":43.531},{"x":1757295001934,"y":45.969},{"x":1757294941753,"y":45.817},{"x":1757294881591,"y":45.694},{"x":1757294821447,"y":45.027},{"x":1757294761254,"y":42.841},{"x":1757294700900,"y":41.728},{"x":1757294640663,"y":41.26},{"x":1757294580470,"y":46.608},{"x":1757294520300,"y":48.696},{"x":1757294460084,"y":49.328},{"x":1757294402864,"y":42.244},{"x":1757294342696,"y":48.095},{"x":1757294282517,"y":41.825},{"x":1757294222353,"y":48.407},{"x":1757294162178,"y":53.68},{"x":1757294101999,"y":62.151},{"x":1757294041825,"y":59.878},{"x":1757293981650,"y":61.848},{"x":1757293921473,"y":66.973},{"x":1757293861294,"y":52.346},{"x":1757293800954,"y":44.155},{"x":1757293740773,"y":55.213},{"x":1757293680634,"y":56.287},{"x":1757293620454,"y":60.924},{"x":1757293560304,"y":58.361},{"x":1757293502913,"y":53.596},{"x":1757293442748,"y":56.283},{"x":1757293382574,"y":51.541},{"x":1757293322414,"y":62.371},{"x":1757293262250,"y":57.033},{"x":1757293202284,"y":59.241},{"x":1757293142063,"y":61.847},{"x":1757293081825,"y":55.397},{"x":1757293021654,"y":46.307},{"x":1757292961509,"y":47.526},{"x":1757292901054,"y":50.417},{"x":1757292840860,"y":50.282},{"x":1757292780696,"y":47.772},{"x":1757292720600,"y":53.565},{"x":1757292660343,"y":68.57},{"x":1757292600145,"y":58.133},{"x":1757292542912,"y":56.299},{"x":1757292482748,"y":55.936},{"x":1757292422578,"y":61.858},{"x":1757292362408,"y":53.004},{"x":1757292302238,"y":48.399},{"x":1757292242077,"y":48.681},{"x":1757292181901,"y":49.832},{"x":1757292121730,"y":51.487},{"x":1757292061564,"y":51.344},{"x":1757292001225,"y":49.14},{"x":1757291941035,"y":50.829},{"x":1757291880866,"y":61.203},{"x":1757291820707,"y":60.063},{"x":1757291760573,"y":56.784},{"x":1757291700402,"y":57.756},{"x":1757291640251,"y":55.388},{"x":1757291582852,"y":50.621},{"x":1757291522681,"y":51.297},{"x":1757291462503,"y":53.697},{"x":1757291402312,"y":49.91},{"x":1757291342139,"y":47.559},{"x":1757291281945,"y":51.015},{"x":1757291221772,"y":46.377},{"x":1757291161596,"y":49.116},{"x":1757291101413,"y":49.799},{"x":1757291041205,"y":46.07},{"x":1757290981024,"y":49.499},{"x":1757290920865,"y":52.938},{"x":1757290860709,"y":51.997},{"x":1757290800630,"y":54.209},{"x":1757290740376,"y":46.949},{"x":1757290680262,"y":46.467},{"x":1757290622895,"y":45.118},{"x":1757290562736,"y":44.549},{"x":1757290502567,"y":48.974},{"x":1757290442387,"y":47.914},{"x":1757290382221,"y":47.252},{"x":1757290322019,"y":57.444},{"x":1757290261674,"y":66.265},{"x":1757290201453,"y":67.127},{"x":1757290141194,"y":75.795},{"x":1757290081007,"y":73.493},{"x":1757290020836,"y":52.872},{"x":1757289960679,"y":51.24},{"x":1757289900593,"y":52.796},{"x":1757289840298,"y":49.791},{"x":1757289782998,"y":48.766},{"x":1757289722830,"y":47.033},{"x":1757289662673,"y":46.584},{"x":1757289600821,"y":50.946},{"x":1757289540422,"y":63.864},{"x":1757289480183,"y":61.47},{"x":1757289422870,"y":59.322},{"x":1757289362685,"y":61.38},{"x":1757289302513,"y":61.145},{"x":1757289242341,"y":55.134},{"x":1757289182173,"y":47.113},{"x":1757289121985,"y":47.473},{"x":1757289061570,"y":49.92},{"x":1757289001351,"y":50.077},{"x":1757288941192,"y":57.968},{"x":1757288880995,"y":55.036},{"x":1757288820834,"y":56.549},{"x":1757288760661,"y":56.899},{"x":1757288700614,"y":59.442},{"x":1757288640371,"y":47.719},{"x":1757288583008,"y":48.038},{"x":1757288522833,"y":49.342},{"x":1757288462669,"y":44.703},{"x":1757288402483,"y":43.549},{"x":1757288342317,"y":43.858},{"x":1757288282151,"y":49.191},{"x":1757288221972,"y":44.635},{"x":1757288161669,"y":44.821},{"x":1757288101498,"y":46.319},{"x":1757288041322,"y":51.779},{"x":1757287981145,"y":52.858},{"x":1757287920966,"y":48.124},{"x":1757287860806,"y":44.666},{"x":1757287800708,"y":46.327},{"x":1757287740489,"y":45.217},{"x":1757287680356,"y":48.341},{"x":1757287622921,"y":46.166},{"x":1757287562762,"y":47.746},{"x":1757287502581,"y":44.118},{"x":1757287442401,"y":52.382},{"x":1757287382230,"y":53.74},{"x":1757287322068,"y":53.358},{"x":1757287261878,"y":49.864},{"x":1757287201695,"y":49.381},{"x":1757287141523,"y":51.699},{"x":1757287081355,"y":44.719},{"x":1757287021193,"y":62.267},{"x":1757286960986,"y":57.429},{"x":1757286900843,"y":66.308},{"x":1757286840645,"y":67.29},{"x":1757286780484,"y":71.525},{"x":1757286720360,"y":57.24},{"x":1757286662984,"y":51.189},{"x":1757286602806,"y":48.482},{"x":1757286542616,"y":49.471},{"x":1757286482455,"y":49.955},{"x":1757286422288,"y":52.856},{"x":1757286362119,"y":50.075},{"x":1757286301941,"y":55.264},{"x":1757286241774,"y":57.389},{"x":1757286181607,"y":59.907},{"x":1757286121430,"y":62.868},{"x":1757286073317,"y":51.913},{"x":1757286000636,"y":46.467},{"x":1757285940303,"y":43.593},{"x":1757285882989,"y":47.961},{"x":1757285822828,"y":46.866},{"x":1757285762656,"y":48.045},{"x":1757285702489,"y":50.575},{"x":1757285642309,"y":49.891},{"x":1757285582129,"y":48.708},{"x":1757285521954,"y":60.901},{"x":1757285461730,"y":56.306},{"x":1757285401550,"y":53.521},{"x":1757285341371,"y":53.734},{"x":1757285281220,"y":53.955},{"x":1757285221024,"y":49.672},{"x":1757285160843,"y":49.207},{"x":1757285100760,"y":49.165},{"x":1757285040562,"y":47.121},{"x":1757284980267,"y":43.659},{"x":1757284922872,"y":44.687},{"x":1757284862703,"y":49.592},{"x":1757284802522,"y":46.541},{"x":1757284742353,"y":56.175},{"x":1757284682183,"y":61.135},{"x":1757284621988,"y":57.013},{"x":1757284561730,"y":58.482},{"x":1757284501581,"y":49.11},{"x":1757284441407,"y":48.346},{"x":1757284381234,"y":50.338},{"x":1757284321061,"y":50.266},{"x":1757284260885,"y":48.947},{"x":1757284200787,"y":52.635},{"x":1757284140484,"y":72.509},{"x":1757284080369,"y":71.16},{"x":1757284022942,"y":71.14},{"x":1757283962780,"y":69.988},{"x":1757283902616,"y":70.342},{"x":1757283842429,"y":69.345},{"x":1757283782269,"y":61.146},{"x":1757283722094,"y":57.211},{"x":1757283661855,"y":62.707},{"x":1757283601678,"y":64.07},{"x":1757283541499,"y":60.952},{"x":1757283481336,"y":63.967},{"x":1757283421177,"y":61.416},{"x":1757283360969,"y":46.768},{"x":1757283300831,"y":49.729},{"x":1757283240559,"y":54.162},{"x":1757283180397,"y":49.104},{"x":1757283120250,"y":51.636},{"x":1757283062951,"y":50.829},{"x":1757283002726,"y":53.86},{"x":1757282942410,"y":57.329},{"x":1757282882232,"y":54.533},{"x":1757282822025,"y":64.274},{"x":1757282761806,"y":69.544},{"x":1757282701628,"y":69.715},{"x":1757282641458,"y":80.628},{"x":1757282581286,"y":78.974},{"x":1757282521130,"y":73.399},{"x":1757282476001,"y":65.756},{"x":1757282402411,"y":67.096},{"x":1757282342138,"y":60.011},{"x":1757282281927,"y":68.251},{"x":1757282221752,"y":57.129},{"x":1757282161583,"y":51.861},{"x":1757282101214,"y":53.108},{"x":1757282041033,"y":67.778},{"x":1757281980848,"y":60.835},{"x":1757281920652,"y":56.747},{"x":1757281860510,"y":62.103},{"x":1757281800445,"y":61.38},{"x":1757281742892,"y":79.31},{"x":1757281682736,"y":73.059},{"x":1757281622561,"y":52.489},{"x":1757281562397,"y":66.555},{"x":1757281502237,"y":58.409},{"x":1757281442067,"y":58.091},{"x":1757281381899,"y":65.226},{"x":1757281321736,"y":73.1},{"x":1757281261546,"y":63.888},{"x":1757281201290,"y":71.771},{"x":1757281141117,"y":74.447},{"x":1757281080911,"y":64.107},{"x":1757281020759,"y":55.048},{"x":1757280960614,"y":50.565},{"x":1757280900558,"y":53.098},{"x":1757280840298,"y":62.364},{"x":1757280782936,"y":76.646},{"x":1757280722766,"y":74.435},{"x":1757280662600,"y":69.318},{"x":1757280602422,"y":69.783},{"x":1757280542251,"y":83.255},{"x":1757280482081,"y":67.855},{"x":1757280421908,"y":68.796},{"x":1757280361739,"y":56.241},{"x":1757280301569,"y":74.955},{"x":1757280241401,"y":67.001},{"x":1757280181218,"y":80.419},{"x":1757280121039,"y":71.696},{"x":1757280060864,"y":64.933},{"x":1757280000737,"y":85.635},{"x":1757279940476,"y":97.687},{"x":1757279880289,"y":87.151},{"x":1757279822932,"y":79.359},{"x":1757279762744,"y":81.26},{"x":1757279702529,"y":69.196},{"x":1757279642350,"y":55.646},{"x":1757279582172,"y":83.726},{"x":1757279522025,"y":61.605},{"x":1757279461462,"y":80.045},{"x":1757279400804,"y":63.192},{"x":1757279340562,"y":87.924},{"x":1757279280464,"y":80.265},{"x":1757279220252,"y":87.176},{"x":1757279162886,"y":86.153},{"x":1757279102718,"y":82.577},{"x":1757279042549,"y":58.967},{"x":1757278982372,"y":61.244},{"x":1757278922204,"y":58.99},{"x":1757278862027,"y":81.071},{"x":1757278800727,"y":101.942},{"x":1757278740527,"y":85.12},{"x":1757278680211,"y":96.289},{"x":1757278622905,"y":80.298},{"x":1757278562743,"y":84.201},{"x":1757278502582,"y":60.275},{"x":1757278442411,"y":53.26},{"x":1757278382227,"y":51.632},{"x":1757278322042,"y":50.05},{"x":1757278261863,"y":52.497},{"x":1757278201693,"y":59.075},{"x":1757278141528,"y":64.573},{"x":1757278081342,"y":58.783},{"x":1757278021175,"y":63.403},{"x":1757277960998,"y":64.842},{"x":1757277900917,"y":67.514},{"x":1757277840642,"y":61.174},{"x":1757277780482,"y":72.779},{"x":1757277720388,"y":62.182},{"x":1757277662960,"y":71.332},{"x":1757277602785,"y":73.273},{"x":1757277542610,"y":85.959},{"x":1757277482421,"y":73.438},{"x":1757277422258,"y":68.905},{"x":1757277362087,"y":94.759},{"x":1757277301905,"y":118.132},{"x":1757277241734,"y":107.651},{"x":1757277181568,"y":91.203},{"x":1757277121389,"y":111.37},{"x":1757277061224,"y":81.922},{"x":1757277001042,"y":76.919},{"x":1757276940770,"y":82.144},{"x":1757276880623,"y":74.743},{"x":1757276820492,"y":91.065},{"x":1757276760335,"y":78.879},{"x":1757276702966,"y":83.213},{"x":1757276642791,"y":106.296},{"x":1757276582615,"y":89.042},{"x":1757276522439,"y":100.759},{"x":1757276462268,"y":84.346},{"x":1757276402096,"y":80.595},{"x":1757276341906,"y":93.02},{"x":1757276281720,"y":71.539},{"x":1757276221410,"y":90.361},{"x":1757276161237,"y":82.2},{"x":1757276101110,"y":92.937},{"x":1757276040842,"y":93.821},{"x":1757275980695,"y":113.912},{"x":1757275920514,"y":104.231},{"x":1757275860239,"y":95.567},{"x":1757275802953,"y":91.992},{"x":1757275742782,"y":65.661},{"x":1757275682603,"y":84.393},{"x":1757275622454,"y":80.484},{"x":1757275562276,"y":104.044},{"x":1757275502082,"y":75.79},{"x":1757275441888,"y":125.746},{"x":1757275381717,"y":116.579},{"x":1757275321579,"y":105.219},{"x":1757275261377,"y":82.822},{"x":1757275200510,"y":80.77},{"x":1757275140250,"y":84.967},{"x":1757275082984,"y":74.87},{"x":1757275022801,"y":100.67},{"x":1757274962626,"y":90.733},{"x":1757274902466,"y":106.462},{"x":1757274842299,"y":80.891},{"x":1757274782117,"y":106.729},{"x":1757274721951,"y":104.138},{"x":1757274661728,"y":83.852},{"x":1757274601549,"y":99.409},{"x":1757274541382,"y":94.177},{"x":1757274481214,"y":92.27},{"x":1757274421040,"y":98.51},{"x":1757274360840,"y":109.651},{"x":1757274300786,"y":89.74},{"x":1757274240473,"y":95.277},{"x":1757274180269,"y":75.277},{"x":1757274122960,"y":90.911},{"x":1757274062790,"y":77.567},{"x":1757274002620,"y":104.315},{"x":1757273942458,"y":96.742},{"x":1757273882277,"y":91.254},{"x":1757273821982,"y":94.837},{"x":1757273761642,"y":80.197},{"x":1757273701458,"y":116.848},{"x":1757273641274,"y":101.885},{"x":1757273581099,"y":86.43},{"x":1757273520903,"y":92.129},{"x":1757273460818,"y":68.19},{"x":1757273400758,"y":110.32},{"x":1757273340491,"y":80.61},{"x":1757273280258,"y":76.816},{"x":1757273222883,"y":78.551},{"x":1757273162723,"y":89.66},{"x":1757273102548,"y":69.316},{"x":1757273042382,"y":78.143},{"x":1757272982210,"y":76.663},{"x":1757272922045,"y":79.206},{"x":1757272861862,"y":62.345},{"x":1757272801690,"y":81.074},{"x":1757272741525,"y":84.121},{"x":1757272681357,"y":76.606},{"x":1757272621185,"y":64.842},{"x":1757272560998,"y":62.121},{"x":1757272500887,"y":70.761},{"x":1757272440632,"y":60.534},{"x":1757272380513,"y":74.631},{"x":1757272320304,"y":57.404},{"x":1757272260044,"y":76.384},{"x":1757272202827,"y":85.682},{"x":1757272142657,"y":83.873},{"x":1757272082478,"y":84.796},{"x":1757272022301,"y":88.673},{"x":1757271962124,"y":69.357},{"x":1757271901936,"y":59.206},{"x":1757271841761,"y":62.619},{"x":1757271781578,"y":57.535},{"x":1757271721413,"y":73.829},{"x":1757271661255,"y":67.156},{"x":1757271602394,"y":110.14},{"x":1757271542157,"y":73.004},{"x":1757271481910,"y":74.024},{"x":1757271421703,"y":77.129},{"x":1757271361530,"y":73.209},{"x":1757271301073,"y":92.097},{"x":1757271240882,"y":70.167},{"x":1757271180716,"y":81.142},{"x":1757271120630,"y":69.027},{"x":1757271060443,"y":70.427},{"x":1757271000321,"y":91.976},{"x":1757270942894,"y":90.046},{"x":1757270882726,"y":85.832},{"x":1757270822562,"y":86.179},{"x":1757270762403,"y":74.97},{"x":1757270702249,"y":73.965},{"x":1757270642082,"y":77.8},{"x":1757270581916,"y":77.996},{"x":1757270521753,"y":76.742},{"x":1757270461591,"y":68.182},{"x":1757270401271,"y":83.784},{"x":1757270341085,"y":81.484},{"x":1757270280902,"y":89.592},{"x":1757270220733,"y":83.507},{"x":1757270160577,"y":90.08},{"x":1757270100391,"y":95.772},{"x":1757270040239,"y":83.884},{"x":1757269982890,"y":110.07},{"x":1757269922719,"y":86.779},{"x":1757269862536,"y":112.717},{"x":1757269802370,"y":101.059},{"x":1757269742196,"y":106.344},{"x":1757269682016,"y":67.712},{"x":1757269621832,"y":103.485},{"x":1757269561661,"y":135.657},{"x":1757269501490,"y":93.576},{"x":1757269441319,"y":115.129},{"x":1757269381142,"y":106.749},{"x":1757269320953,"y":94.415},{"x":1757269260785,"y":85.116},{"x":1757269200712,"y":92.599},{"x":1757269140420,"y":98.112},{"x":1757269080362,"y":77.712},{"x":1757269022923,"y":74.412},{"x":1757268962756,"y":94.68},{"x":1757268902576,"y":86.126},{"x":1757268842411,"y":82.996},{"x":1757268782244,"y":79.402},{"x":1757268722049,"y":103.082},{"x":1757268661474,"y":117.614},{"x":1757268600819,"y":88.595},{"x":1757268540591,"y":84.285},{"x":1757268482795,"y":77.464},{"x":1757268422622,"y":108.419},{"x":1757268362459,"y":82.151},{"x":1757268302305,"y":102.466},{"x":1757268242134,"y":83.387},{"x":1757268181936,"y":91.044},{"x":1757268121775,"y":103.45},{"x":1757268061610,"y":75.38},{"x":1757268001049,"y":98.277},{"x":1757267940485,"y":64.482},{"x":1757267880344,"y":88.583},{"x":1757267822920,"y":88.652},{"x":1757267762730,"y":79.573},{"x":1757267702564,"y":85.179},{"x":1757267642368,"y":98.019},{"x":1757267582198,"y":81.355},{"x":1757267522011,"y":78.913},{"x":1757267461763,"y":103.391},{"x":1757267401601,"y":77.946},{"x":1757267341427,"y":92.442},{"x":1757267281239,"y":77.276},{"x":1757267220970,"y":74.352},{"x":1757267160790,"y":90.733},{"x":1757267100768,"y":72.645},{"x":1757267040486,"y":80.392},{"x":1757266980359,"y":115.814},{"x":1757266922913,"y":116.041},{"x":1757266862744,"y":99.783},{"x":1757266802570,"y":96.709},{"x":1757266742387,"y":113.138},{"x":1757266682218,"y":102.417},{"x":1757266622039,"y":84.918},{"x":1757266561506,"y":89.593},{"x":1757266501343,"y":79.598},{"x":1757266441171,"y":94.374},{"x":1757266380990,"y":107.181},{"x":1757266320834,"y":91.144},{"x":1757266260677,"y":75.002},{"x":1757266200849,"y":77.328},{"x":1757266140331,"y":103.53},{"x":1757266080194,"y":83.131},{"x":1757266022905,"y":65.435},{"x":1757265962742,"y":82.033},{"x":1757265902560,"y":63.416},{"x":1757265842392,"y":75.523},{"x":1757265782205,"y":78.967},{"x":1757265722011,"y":112.539},{"x":1757265661836,"y":75.093},{"x":1757265601679,"y":85.502},{"x":1757265541375,"y":98.988},{"x":1757265481201,"y":102.462},{"x":1757265421026,"y":76.4},{"x":1757265360838,"y":81.793},{"x":1757265300778,"y":108.791},{"x":1757265240545,"y":98.68},{"x":1757265180464,"y":111.27},{"x":1757265122992,"y":97.109},{"x":1757265062794,"y":128.124},{"x":1757265002603,"y":111.114},{"x":1757264942431,"y":124.79},{"x":1757264882254,"y":92.545},{"x":1757264822068,"y":89.81},{"x":1757264761850,"y":80.14},{"x":1757264701687,"y":80.586},{"x":1757264641525,"y":81.514},{"x":1757264581346,"y":84.919},{"x":1757264521180,"y":84.995},{"x":1757264461012,"y":93.233},{"x":1757264402390,"y":73.011},{"x":1757264342064,"y":72.477},{"x":1757264281832,"y":54.34},{"x":1757264221649,"y":83.991},{"x":1757264161469,"y":83.254},{"x":1757264101058,"y":65.742},{"x":1757264040872,"y":87.402},{"x":1757263980691,"y":89.932},{"x":1757263920559,"y":106.159},{"x":1757263860360,"y":106.641},{"x":1757263803030,"y":107.48},{"x":1757263742853,"y":87.447},{"x":1757263682684,"y":99.647},{"x":1757263622523,"y":95.331},{"x":1757263562339,"y":84.342},{"x":1757263502177,"y":79.787},{"x":1757263441999,"y":86.087},{"x":1757263381832,"y":82.123},{"x":1757263321647,"y":88.83},{"x":1757263261463,"y":80.47},{"x":1757263201205,"y":72.154},{"x":1757263140966,"y":92.923},{"x":1757263080791,"y":51.499},{"x":1757263020630,"y":84.895},{"x":1757262960529,"y":78.951},{"x":1757262900350,"y":81.544},{"x":1757262842934,"y":113.967},{"x":1757262782765,"y":91.862},{"x":1757262722583,"y":86.912},{"x":1757262662421,"y":72.239},{"x":1757262602232,"y":68.811},{"x":1757262542065,"y":95.726},{"x":1757262481869,"y":55.276},{"x":1757262421699,"y":80.824},{"x":1757262361516,"y":67.872},{"x":1757262301348,"y":96.693},{"x":1757262241195,"y":86.787},{"x":1757262180966,"y":72.718},{"x":1757262120802,"y":81.381},{"x":1757262060647,"y":80.429},{"x":1757262000505,"y":96.898},{"x":1757261940367,"y":81.487},{"x":1757261880046,"y":74.979},{"x":1757261822856,"y":93.772},{"x":1757261762681,"y":82.904},{"x":1757261702484,"y":96.55},{"x":1757261642306,"y":71.388},{"x":1757261582134,"y":81.103},{"x":1757261521951,"y":84.296},{"x":1757261461430,"y":83.156},{"x":1757261400842,"y":73.938},{"x":1757261340613,"y":93.4},{"x":1757261283038,"y":103.205},{"x":1757261222856,"y":98.714},{"x":1757261162701,"y":107.277},{"x":1757261102523,"y":88.816},{"x":1757261042368,"y":97.41},{"x":1757260982200,"y":105.454},{"x":1757260922029,"y":70.167},{"x":1757260861853,"y":75.579},{"x":1757260802436,"y":75.006},{"x":1757260742094,"y":95.545},{"x":1757260681863,"y":116.444},{"x":1757260621693,"y":99.15},{"x":1757260561518,"y":110.199},{"x":1757260501126,"y":88.115},{"x":1757260440937,"y":71.879},{"x":1757260380766,"y":74.984},{"x":1757260320638,"y":68.356},{"x":1757260260410,"y":61.28},{"x":1757260200224,"y":66.202},{"x":1757260142908,"y":67.648},{"x":1757260082734,"y":58.618},{"x":1757260022554,"y":72.955},{"x":1757259962393,"y":75.026},{"x":1757259902194,"y":72.247},{"x":1757259841995,"y":53.594},{"x":1757259781828,"y":74.826},{"x":1757259721656,"y":84.837},{"x":1757259661483,"y":60.448},{"x":1757259601205,"y":90.314},{"x":1757259540961,"y":84.958},{"x":1757259480799,"y":72.032},{"x":1757259420628,"y":89.044},{"x":1757259360538,"y":68.656},{"x":1757259300296,"y":81.572},{"x":1757259242955,"y":70.192},{"x":1757259182790,"y":73.46},{"x":1757259122613,"y":60.23},{"x":1757259062450,"y":66.755},{"x":1757259002289,"y":76.943},{"x":1757258942102,"y":66.843},{"x":1757258881921,"y":78.172},{"x":1757258821739,"y":99.904},{"x":1757258761573,"y":49.815},{"x":1757258701386,"y":58.279},{"x":1757258641211,"y":48.874},{"x":1757258581020,"y":48.868},{"x":1757258520826,"y":87.527},{"x":1757258460663,"y":60.435},{"x":1757258400564,"y":57.977},{"x":1757258340322,"y":73.661},{"x":1757258283029,"y":111.215},{"x":1757258222843,"y":93.478},{"x":1757258162670,"y":96.82},{"x":1757258102486,"y":100.89},{"x":1757258042315,"y":80.436},{"x":1757257982141,"y":67.568},{"x":1757257921965,"y":75.29},{"x":1757257861473,"y":82.663},{"x":1757257800793,"y":88.143},{"x":1757257740602,"y":79.666},{"x":1757257680373,"y":99.09},{"x":1757257620086,"y":86.997},{"x":1757257562861,"y":105.561},{"x":1757257502698,"y":103.57},{"x":1757257442531,"y":95.99},{"x":1757257382375,"y":84.181},{"x":1757257322219,"y":92.324},{"x":1757257262039,"y":83.467},{"x":1757257202293,"y":79.057},{"x":1757257142025,"y":62.436},{"x":1757257081784,"y":78.162},{"x":1757257021601,"y":91.169},{"x":1757256961461,"y":87.851},{"x":1757256900993,"y":92.817},{"x":1757256840818,"y":77.21},{"x":1757256780653,"y":81.885},{"x":1757256720579,"y":75.671},{"x":1757256660347,"y":81.962},{"x":1757256603013,"y":83.628},{"x":1757256542838,"y":64.574},{"x":1757256482662,"y":69.522},{"x":1757256422488,"y":85.39},{"x":1757256362325,"y":67.71},{"x":1757256302137,"y":85.167},{"x":1757256241955,"y":90.959},{"x":1757256181791,"y":83.049},{"x":1757256121628,"y":58.345},{"x":1757256061466,"y":68.337},{"x":1757256001286,"y":74.547},{"x":1757255941108,"y":80.257},{"x":1757255880905,"y":62.894},{"x":1757255820731,"y":65.046},{"x":1757255760599,"y":67.077},{"x":1757255700413,"y":50.727},{"x":1757255640264,"y":65.976},{"x":1757255582896,"y":81.761},{"x":1757255522718,"y":59.063},{"x":1757255462548,"y":73.926},{"x":1757255402376,"y":85.005},{"x":1757255342172,"y":79.63},{"x":1757255281989,"y":105.937},{"x":1757255221821,"y":84.531},{"x":1757255161638,"y":99.685},{"x":1757255101463,"y":67.277},{"x":1757255041283,"y":86.845},{"x":1757254981115,"y":85.773},{"x":1757254920928,"y":65.317},{"x":1757254860766,"y":77.799},{"x":1757254800737,"y":77.971},{"x":1757254740350,"y":97.312},{"x":1757254680083,"y":87.944},{"x":1757254622868,"y":87.123},{"x":1757254562699,"y":88.153},{"x":1757254502493,"y":51.927},{"x":1757254442329,"y":75.464},{"x":1757254382159,"y":69.467},{"x":1757254321967,"y":74.173},{"x":1757254261509,"y":69.97},{"x":1757254201195,"y":111.147},{"x":1757254140991,"y":89.407},{"x":1757254080830,"y":67.566},{"x":1757254020654,"y":64.788},{"x":1757253960498,"y":55.467},{"x":1757253900477,"y":66.594},{"x":1757253840234,"y":100.2},{"x":1757253782873,"y":70.721},{"x":1757253722684,"y":97.949},{"x":1757253662521,"y":88.645},{"x":1757253602557,"y":104.928},{"x":1757253542154,"y":106.959},{"x":1757253481919,"y":80.447},{"x":1757253421749,"y":95.445},{"x":1757253361574,"y":86.884},{"x":1757253301184,"y":84.613},{"x":1757253241016,"y":66.856},{"x":1757253180836,"y":93.132},{"x":1757253120693,"y":65.096},{"x":1757253060495,"y":81.674},{"x":1757253000368,"y":80.998},{"x":1757252940166,"y":65.297},{"x":1757252882861,"y":68.521},{"x":1757252822676,"y":66.835},{"x":1757252762526,"y":72.387},{"x":1757252702350,"y":58.781},{"x":1757252642184,"y":90.096},{"x":1757252582012,"y":57.95},{"x":1757252521857,"y":90.174},{"x":1757252461692,"y":63.717},{"x":1757252401097,"y":69.356},{"x":1757252340914,"y":65.518},{"x":1757252280758,"y":77.166},{"x":1757252220600,"y":56.785},{"x":1757252160457,"y":72.544},{"x":1757252100298,"y":71.698},{"x":1757252042983,"y":77.989},{"x":1757251982814,"y":82.448},{"x":1757251922651,"y":72.097},{"x":1757251862452,"y":89.82},{"x":1757251802288,"y":63.857},{"x":1757251742123,"y":99.687},{"x":1757251681945,"y":81.595},{"x":1757251621720,"y":84.863},{"x":1757251561548,"y":72.332},{"x":1757251501293,"y":93.446},{"x":1757251441124,"y":94.642},{"x":1757251380915,"y":77.927},{"x":1757251320758,"y":71.028},{"x":1757251260602,"y":54.683},{"x":1757251200548,"y":64.738},{"x":1757251140219,"y":47.774},{"x":1757251082988,"y":86.232},{"x":1757251022831,"y":62.632},{"x":1757250962660,"y":66.152},{"x":1757250902450,"y":56.244},{"x":1757250842283,"y":61.973},{"x":1757250782110,"y":101.639},{"x":1757250721904,"y":46.234},{"x":1757250661453,"y":64.916},{"x":1757250600845,"y":84.31},{"x":1757250540605,"y":71.346},{"x":1757250480457,"y":46.23},{"x":1757250420382,"y":71.946},{"x":1757250362862,"y":73.714},{"x":1757250302683,"y":62.47},{"x":1757250242526,"y":90.482},{"x":1757250182361,"y":83.061},{"x":1757250122206,"y":87.654},{"x":1757250062054,"y":64.141},{"x":1757250000689,"y":47.588},{"x":1757249940468,"y":29.468},{"x":1757249880238,"y":51.719},{"x":1757249822888,"y":38.206},{"x":1757249762723,"y":63.793},{"x":1757249702557,"y":54.898},{"x":1757249642387,"y":49.014},{"x":1757249582216,"y":55.218},{"x":1757249522028,"y":68.439},{"x":1757249461658,"y":57.863},{"x":1757249401485,"y":73.278},{"x":1757249341298,"y":42.162},{"x":1757249281118,"y":43.997},{"x":1757249220951,"y":37.241},{"x":1757249160764,"y":43.632},{"x":1757249100750,"y":55.759},{"x":1757249040464,"y":59.467},{"x":1757248980322,"y":65.082},{"x":1757248922940,"y":72.332},{"x":1757248862776,"y":65.328},{"x":1757248802612,"y":53.564},{"x":1757248742435,"y":63.042},{"x":1757248682263,"y":60.525},{"x":1757248622095,"y":47.475},{"x":1757248561647,"y":43.678},{"x":1757248501483,"y":52.971},{"x":1757248441316,"y":74.386},{"x":1757248381157,"y":94.72},{"x":1757248320982,"y":62.274},{"x":1757248260805,"y":56.057},{"x":1757248200709,"y":55.873},{"x":1757248140446,"y":57.987},{"x":1757248080288,"y":67.438},{"x":1757248022867,"y":82.815},{"x":1757247962691,"y":74.049},{"x":1757247902519,"y":56.99},{"x":1757247842341,"y":99.76},{"x":1757247782171,"y":62.131},{"x":1757247721976,"y":71.077},{"x":1757247661794,"y":69.2},{"x":1757247601629,"y":43.497},{"x":1757247541461,"y":56.302},{"x":1757247481313,"y":35.533},{"x":1757247421023,"y":75.792},{"x":1757247360844,"y":75.056},{"x":1757247300712,"y":74.409},{"x":1757247240484,"y":73.853},{"x":1757247180344,"y":74.587},{"x":1757247122962,"y":65.535},{"x":1757247062764,"y":45.792},{"x":1757247002578,"y":68.906},{"x":1757246942417,"y":64.968},{"x":1757246882237,"y":52.21},{"x":1757246822062,"y":54.958},{"x":1757246761314,"y":46.568},{"x":1757246701143,"y":59.119},{"x":1757246640953,"y":62.746},{"x":1757246580790,"y":60.083},{"x":1757246520638,"y":74.872},{"x":1757246463378,"y":61.909},{"x":1757246400688,"y":59.985},{"x":1757246340420,"y":56.513},{"x":1757246280320,"y":44.572},{"x":1757246222940,"y":35.951},{"x":1757246162756,"y":54.823},{"x":1757246102580,"y":45.759},{"x":1757246042406,"y":83.887},{"x":1757245982241,"y":73.599},{"x":1757245922060,"y":33.353},{"x":1757245861877,"y":55.339},{"x":1757245801712,"y":76.297},{"x":1757245741576,"y":57.166},{"x":1757245681392,"y":66.899},{"x":1757245621246,"y":48.633},{"x":1757245561006,"y":37.22},{"x":1757245500931,"y":50.393},{"x":1757245440693,"y":81.117},{"x":1757245380494,"y":75.384},{"x":1757245320344,"y":73.984},{"x":1757245262936,"y":77.905},{"x":1757245202761,"y":74.052},{"x":1757245142519,"y":61.441},{"x":1757245082360,"y":57.996},{"x":1757245022188,"y":52.55},{"x":1757244961998,"y":50.066},{"x":1757244901827,"y":57.188},{"x":1757244841662,"y":37.922},{"x":1757244781492,"y":41.891},{"x":1757244721315,"y":43.261},{"x":1757244661142,"y":50.584},{"x":1757244600969,"y":46.294},{"x":1757244540750,"y":48.92},{"x":1757244480620,"y":64.909},{"x":1757244420443,"y":30.612},{"x":1757244360280,"y":66.271},{"x":1757244302919,"y":60.861},{"x":1757244242740,"y":40.302},{"x":1757244182583,"y":51.995},{"x":1757244122437,"y":58.834},{"x":1757244062270,"y":44.621},{"x":1757244002100,"y":73.575},{"x":1757243941908,"y":60.781},{"x":1757243881744,"y":57.443},{"x":1757243821385,"y":51.394},{"x":1757243761219,"y":46.894},{"x":1757243701053,"y":58.158},{"x":1757243640860,"y":50.77},{"x":1757243580691,"y":54.671},{"x":1757243520596,"y":64.685},{"x":1757243460310,"y":67.846},{"x":1757243403019,"y":53.322},{"x":1757243342822,"y":75.331},{"x":1757243282639,"y":71.449},{"x":1757243222461,"y":81.507},{"x":1757243162302,"y":34.741},{"x":1757243102138,"y":44.732},{"x":1757243041966,"y":66.843},{"x":1757242981786,"y":45.132},{"x":1757242921611,"y":58.823},{"x":1757242861455,"y":61.485},{"x":1757242800711,"y":77.59},{"x":1757242740437,"y":55.838},{"x":1757242680313,"y":62.786},{"x":1757242622909,"y":61.431},{"x":1757242562757,"y":60.664},{"x":1757242502581,"y":54.343},{"x":1757242442394,"y":43.554},{"x":1757242382218,"y":39.548},{"x":1757242322055,"y":48.493},{"x":1757242261550,"y":58.732},{"x":1757242201360,"y":50.312},{"x":1757242141201,"y":61.093},{"x":1757242081010,"y":49.437},{"x":1757242020843,"y":58.528},{"x":1757241960682,"y":63.131},{"x":1757241900728,"y":84.621},{"x":1757241840293,"y":42.41},{"x":1757241780135,"y":47.644},{"x":1757241722861,"y":55.104},{"x":1757241662691,"y":51.261},{"x":1757241602521,"y":40.274},{"x":1757241542349,"y":40.077},{"x":1757241482162,"y":44.023},{"x":1757241421974,"y":52.18},{"x":1757241361560,"y":56.526},{"x":1757241301390,"y":71.098},{"x":1757241241224,"y":80.25},{"x":1757241181033,"y":48.429},{"x":1757241120846,"y":61.245},{"x":1757241060677,"y":57.576},{"x":1757241000590,"y":74.108},{"x":1757240940372,"y":53.292},{"x":1757240880152,"y":79.971},{"x":1757240822868,"y":71.146},{"x":1757240762709,"y":74.669},{"x":1757240702544,"y":82.193},{"x":1757240642375,"y":83.679},{"x":1757240582206,"y":93.493},{"x":1757240522036,"y":71.39},{"x":1757240461205,"y":81.768},{"x":1757240401049,"y":68.971},{"x":1757240364952,"y":62.104},{"x":1757240281781,"y":44.132},{"x":1757240221403,"y":59.654},{"x":1757240161221,"y":61.421},{"x":1757240101087,"y":74.478},{"x":1757240040824,"y":49.834},{"x":1757239980661,"y":79.543},{"x":1757239920537,"y":56.924},{"x":1757239860273,"y":52.919},{"x":1757239802996,"y":95.358},{"x":1757239742810,"y":66.795},{"x":1757239682627,"y":58.095},{"x":1757239622459,"y":68.768},{"x":1757239562299,"y":49.544},{"x":1757239502127,"y":51.403},{"x":1757239441950,"y":55.433},{"x":1757239381781,"y":51.8},{"x":1757239321623,"y":78.409},{"x":1757239261477,"y":59.941},{"x":1757239201060,"y":56.608},{"x":1757239140756,"y":39.886},{"x":1757239080566,"y":78.935},{"x":1757239020455,"y":87.125},{"x":1757238960308,"y":114.936},{"x":1757238902869,"y":95.735},{"x":1757238842699,"y":77.739},{"x":1757238782521,"y":83.521},{"x":1757238722376,"y":70.643},{"x":1757238662191,"y":45.249},{"x":1757238601994,"y":40.006},{"x":1757238541826,"y":38.653},{"x":1757238481650,"y":32.86},{"x":1757238421472,"y":52.63},{"x":1757238361305,"y":37.465},{"x":1757238301136,"y":39.897},{"x":1757238240789,"y":41.778},{"x":1757238180623,"y":66.504},{"x":1757238120469,"y":69.456},{"x":1757238060370,"y":57.04},{"x":1757238002853,"y":65.511},{"x":1757237942700,"y":60.25},{"x":1757237882516,"y":38.502},{"x":1757237822297,"y":60.108},{"x":1757237762116,"y":52.714},{"x":1757237701932,"y":45.29},{"x":1757237641759,"y":42.877},{"x":1757237581591,"y":65.953},{"x":1757237521414,"y":51.235},{"x":1757237461235,"y":77.104},{"x":1757237401090,"y":76.636},{"x":1757237340876,"y":96.672},{"x":1757237280757,"y":84.666},{"x":1757237220536,"y":80.863},{"x":1757237160326,"y":58.382},{"x":1757237103018,"y":66.791},{"x":1757237042832,"y":58.119},{"x":1757236982654,"y":56.105},{"x":1757236922465,"y":62.775},{"x":1757236862279,"y":52.893},{"x":1757236802101,"y":60.159},{"x":1757236741917,"y":57.544},{"x":1757236681739,"y":76.301},{"x":1757236621399,"y":65.149},{"x":1757236561217,"y":60.244},{"x":1757236501058,"y":70.936},{"x":1757236440848,"y":74.684},{"x":1757236380660,"y":64.643},{"x":1757236320530,"y":57.443},{"x":1757236260285,"y":68.291},{"x":1757236202961,"y":62.246},{"x":1757236142789,"y":46.155},{"x":1757236082627,"y":45.354},{"x":1757236022439,"y":48.474},{"x":1757235962269,"y":44.521},{"x":1757235902089,"y":44.316},{"x":1757235841894,"y":41.183},{"x":1757235781721,"y":42.953},{"x":1757235721533,"y":70.255},{"x":1757235661384,"y":72.578},{"x":1757235602402,"y":78.476},{"x":1757235542140,"y":79.044},{"x":1757235481896,"y":88.504},{"x":1757235421729,"y":74.78},{"x":1757235361535,"y":63.357},{"x":1757235301082,"y":66.471},{"x":1757235240895,"y":76.625},{"x":1757235180719,"y":69.184},{"x":1757235120598,"y":63.18},{"x":1757235060428,"y":65.813},{"x":1757235000213,"y":61.512},{"x":1757234942901,"y":57.239},{"x":1757234882742,"y":53.364},{"x":1757234822559,"y":56.635},{"x":1757234762388,"y":49.613},{"x":1757234702219,"y":53.417},{"x":1757234642045,"y":45.346},{"x":1757234581849,"y":50.397},{"x":1757234521673,"y":44.818},{"x":1757234461511,"y":44.546},{"x":1757234401299,"y":55.075},{"x":1757234341119,"y":52.766},{"x":1757234280926,"y":52.582},{"x":1757234220762,"y":52.525},{"x":1757234160637,"y":50.253},{"x":1757234100449,"y":68.557},{"x":1757234040231,"y":48.749},{"x":1757233982880,"y":53.622},{"x":1757233922718,"y":64.952},{"x":1757233862525,"y":76.239},{"x":1757233802358,"y":72.293},{"x":1757233742184,"y":58.756},{"x":1757233682014,"y":47.411},{"x":1757233621847,"y":56.748},{"x":1757233561675,"y":76.597},{"x":1757233501502,"y":63.884},{"x":1757233441338,"y":55.776},{"x":1757233381156,"y":50.711},{"x":1757233320978,"y":49.096},{"x":1757233260801,"y":48.518},{"x":1757233200728,"y":57.187},{"x":1757233140476,"y":52.59},{"x":1757233080301,"y":60.95},{"x":1757233022949,"y":60.733},{"x":1757232962769,"y":66.571},{"x":1757232902592,"y":60.18},{"x":1757232842420,"y":59.392},{"x":1757232782255,"y":57.161},{"x":1757232722103,"y":54.734},{"x":1757232661494,"y":61.162},{"x":1757232600819,"y":64.427},{"x":1757232540593,"y":72.484},{"x":1757232480116,"y":81.731},{"x":1757232422894,"y":69.852},{"x":1757232362728,"y":73.221},{"x":1757232302562,"y":71.83},{"x":1757232242393,"y":73.347},{"x":1757232182223,"y":66.101},{"x":1757232122062,"y":69.963},{"x":1757232061884,"y":71.932},{"x":1757232002289,"y":63.587},{"x":1757231942109,"y":64.276},{"x":1757231881906,"y":63.793},{"x":1757231821702,"y":70.145},{"x":1757231761536,"y":73.134},{"x":1757231701097,"y":69.494},{"x":1757231640902,"y":72.045},{"x":1757231580740,"y":67.896},{"x":1757231520618,"y":57.137},{"x":1757231460334,"y":66.982},{"x":1757231402973,"y":60.58},{"x":1757231342791,"y":54.505},{"x":1757231282663,"y":57.896},{"x":1757231222450,"y":63.159},{"x":1757231162303,"y":59.848},{"x":1757231102117,"y":74.874},{"x":1757231041938,"y":57.476},{"x":1757230981774,"y":60.736},{"x":1757230921591,"y":62.854},{"x":1757230861445,"y":63.688},{"x":1757230801197,"y":75.862},{"x":1757230740997,"y":77.117},{"x":1757230680825,"y":69.097},{"x":1757230620674,"y":65.128},{"x":1757230560523,"y":61.519},{"x":1757230500360,"y":90.565},{"x":1757230440123,"y":59.307},{"x":1757230382882,"y":77.088},{"x":1757230322708,"y":67.363},{"x":1757230262533,"y":77.84},{"x":1757230202360,"y":77.7},{"x":1757230142183,"y":66.875},{"x":1757230081980,"y":73.696},{"x":1757230021811,"y":77.977},{"x":1757229961636,"y":69.513},{"x":1757229901465,"y":67.443},{"x":1757229841291,"y":70.356},{"x":1757229781125,"y":96.184},{"x":1757229720918,"y":71.421},{"x":1757229660716,"y":73.215},{"x":1757229600672,"y":68.087},{"x":1757229540375,"y":65.564},{"x":1757229480301,"y":78.453},{"x":1757229422902,"y":77.106},{"x":1757229362732,"y":88.713},{"x":1757229302578,"y":99.178},{"x":1757229242392,"y":79.98},{"x":1757229182226,"y":69.71},{"x":1757229122057,"y":84.678},{"x":1757229061544,"y":79.853},{"x":1757229000779,"y":65.583},{"x":1757228940615,"y":72.494},{"x":1757228882897,"y":76.634},{"x":1757228822727,"y":72.498},{"x":1757228762540,"y":80.617},{"x":1757228702373,"y":77.825},{"x":1757228642199,"y":67.638},{"x":1757228581999,"y":58.763},{"x":1757228521822,"y":76.528},{"x":1757228461661,"y":76.413},{"x":1757228402363,"y":63.512},{"x":1757228342101,"y":76.729},{"x":1757228281905,"y":78.17},{"x":1757228221717,"y":77.376},{"x":1757228161548,"y":53.977},{"x":1757228101135,"y":58.039},{"x":1757228040953,"y":59.163},{"x":1757227980786,"y":57.986},{"x":1757227920632,"y":61.166},{"x":1757227860485,"y":59.192},{"x":1757227800333,"y":53.519},{"x":1757227742968,"y":53.852},{"x":1757227682794,"y":55.946},{"x":1757227622606,"y":53.971},{"x":1757227562444,"y":57.592},{"x":1757227502277,"y":63.061},{"x":1757227442113,"y":65.426},{"x":1757227381901,"y":64.832},{"x":1757227321749,"y":67.342},{"x":1757227261565,"y":55.706},{"x":1757227201410,"y":58.695},{"x":1757227141240,"y":63.27},{"x":1757227081064,"y":61.65},{"x":1757227020895,"y":61.501},{"x":1757226960703,"y":62.478},{"x":1757226900703,"y":60.589},{"x":1757226840408,"y":60.23},{"x":1757226783027,"y":60.801},{"x":1757226722859,"y":65.721},{"x":1757226662691,"y":67.403},{"x":1757226602516,"y":59.226},{"x":1757226542332,"y":63.944},{"x":1757226482142,"y":61.859},{"x":1757226421961,"y":66.578},{"x":1757226361793,"y":80.672},{"x":1757226301623,"y":61.553},{"x":1757226241436,"y":70.437},{"x":1757226181250,"y":61.638},{"x":1757226121069,"y":70.895},{"x":1757226060888,"y":75.327},{"x":1757226000829,"y":100.685},{"x":1757225940525,"y":83.802},{"x":1757225880401,"y":91.549},{"x":1757225822920,"y":79.522},{"x":1757225762744,"y":92.259},{"x":1757225702629,"y":85.289},{"x":1757225642406,"y":96.509},{"x":1757225582240,"y":104.096},{"x":1757225522088,"y":103.799},{"x":1757225461811,"y":101.323},{"x":1757225401623,"y":85.741},{"x":1757225341461,"y":87.421},{"x":1757225281222,"y":93.487},{"x":1757225221027,"y":85.364},{"x":1757225160854,"y":79.889},{"x":1757225100714,"y":87.339},{"x":1757225040563,"y":82.158},{"x":1757224980516,"y":84.059},{"x":1757224922951,"y":90.805},{"x":1757224862775,"y":92.156},{"x":1757224800741,"y":91.574},{"x":1757224740377,"y":86.926},{"x":1757224683009,"y":90.947},{"x":1757224622826,"y":86.322},{"x":1757224562661,"y":90.317},{"x":1757224502483,"y":88.086},{"x":1757224442322,"y":87.271},{"x":1757224382156,"y":80.18},{"x":1757224321978,"y":82.363},{"x":1757224261767,"y":75.651},{"x":1757224201545,"y":79.389},{"x":1757224141372,"y":80.012},{"x":1757224081204,"y":86.085},{"x":1757224021014,"y":78.66},{"x":1757223960847,"y":79.159},{"x":1757223900775,"y":85.701},{"x":1757223840537,"y":88.707},{"x":1757223780253,"y":80.791},{"x":1757223722980,"y":80.912},{"x":1757223662804,"y":85.646},{"x":1757223602645,"y":80.587},{"x":1757223542483,"y":86.342},{"x":1757223482312,"y":79.1},{"x":1757223422139,"y":78.75},{"x":1757223361816,"y":82.156},{"x":1757223301645,"y":82.736},{"x":1757223241482,"y":84.753},{"x":1757223181313,"y":87.491},{"x":1757223121143,"y":88.07},{"x":1757223060968,"y":84.833},{"x":1757223000839,"y":84.598},{"x":1757222940609,"y":82.533},{"x":1757222880385,"y":82.197},{"x":1757222822959,"y":83.784},{"x":1757222762794,"y":92.051},{"x":1757222702603,"y":86.941},{"x":1757222642423,"y":86.691},{"x":1757222582246,"y":89.234},{"x":1757222522065,"y":88.159},{"x":1757222461220,"y":92.26},{"x":1757222401068,"y":88.316},{"x":1757222340844,"y":90.654},{"x":1757222280685,"y":87.774},{"x":1757222220557,"y":83.323},{"x":1757222160395,"y":82.021},{"x":1757222100095,"y":87.413},{"x":1757222042855,"y":81.251},{"x":1757221982640,"y":88.966},{"x":1757221922458,"y":85.77},{"x":1757221861458,"y":85.244},{"x":1757221801152,"y":92.975},{"x":1757221740948,"y":87.006},{"x":1757221680560,"y":95.885},{"x":1757221620435,"y":89.759},{"x":1757221562950,"y":89.839},{"x":1757221502783,"y":88.112},{"x":1757221442602,"y":87.476},{"x":1757221382429,"y":88.473},{"x":1757221322247,"y":84.89},{"x":1757221262078,"y":92.646},{"x":1757221202486,"y":89.01},{"x":1757221142250,"y":89.904},{"x":1757221082003,"y":90.295},{"x":1757221021822,"y":89.296},{"x":1757220961640,"y":88.178},{"x":1757220901267,"y":88.043},{"x":1757220841091,"y":90.251},{"x":1757220780910,"y":90.531},{"x":1757220720757,"y":89.806},{"x":1757220660563,"y":85.399},{"x":1757220600380,"y":85.387},{"x":1757220540405,"y":83.811},{"x":1757220482880,"y":81.678},{"x":1757220422612,"y":85.375},{"x":1757220362431,"y":90.718},{"x":1757220302264,"y":90.773},{"x":1757220242097,"y":91.641},{"x":1757220181901,"y":110.388},{"x":1757220121716,"y":108.397},{"x":1757220061545,"y":105.615},{"x":1757220001377,"y":106.701},{"x":1757219941205,"y":106.964},{"x":1757219881024,"y":87.538},{"x":1757219820854,"y":89.543},{"x":1757219760708,"y":87.338},{"x":1757219700563,"y":91.776},{"x":1757219640339,"y":89.928},{"x":1757219583035,"y":92.553},{"x":1757219522851,"y":93.225},{"x":1757219462681,"y":95.479},{"x":1757219402458,"y":89.925},{"x":1757219342290,"y":92.059},{"x":1757219282116,"y":96.096},{"x":1757219221914,"y":97.294},{"x":1757219161745,"y":95.152},{"x":1757219101573,"y":103.014},{"x":1757219041401,"y":102.515},{"x":1757218981231,"y":105.554},{"x":1757218921064,"y":113.326},{"x":1757218860878,"y":113.999},{"x":1757218800799,"y":99.798},{"x":1757218740536,"y":100.364},{"x":1757218680422,"y":109.64},{"x":1757218622977,"y":96.516},{"x":1757218562391,"y":87.101},{"x":1757218502221,"y":93.449},{"x":1757218442055,"y":89.203},{"x":1757218381855,"y":88.882},{"x":1757218321599,"y":89.741},{"x":1757218261426,"y":89.209},{"x":1757218201949,"y":86.473},{"x":1757218141779,"y":87.936},{"x":1757218082263,"y":91.235},{"x":1757218022104,"y":91.92},{"x":1757217961995,"y":102.957},{"x":1757217901820,"y":94.36},{"x":1757217841667,"y":96.993},{"x":1757217781494,"y":97.187},{"x":1757217721323,"y":103.085},{"x":1757217664159,"y":100.774},{"x":1757217602381,"y":97.403},{"x":1757217542132,"y":98.843},{"x":1757217481912,"y":96.92},{"x":1757217421728,"y":95.955},{"x":1757217361551,"y":97.836},{"x":1757217301139,"y":97.395},{"x":1757217240945,"y":98.279},{"x":1757217180774,"y":101.252},{"x":1757217120646,"y":96.914},{"x":1757217060509,"y":94.395},{"x":1757217000303,"y":92.726},{"x":1757216942920,"y":86.865},{"x":1757216882758,"y":90.242},{"x":1757216822620,"y":98.135},{"x":1757216762428,"y":104.524},{"x":1757216702261,"y":110.983},{"x":1757216642093,"y":106.825},{"x":1757216581916,"y":112.112},{"x":1757216521738,"y":104.945},{"x":1757216461561,"y":104.938},{"x":1757216401175,"y":111.711},{"x":1757216340968,"y":110.341},{"x":1757216280806,"y":99.936},{"x":1757216220637,"y":94.106},{"x":1757216160487,"y":100.494},{"x":1757216100362,"y":88.836},{"x":1757216042938,"y":83.412},{"x":1757215982771,"y":91.357},{"x":1757215922596,"y":90.438},{"x":1757215862419,"y":88.681},{"x":1757215802240,"y":85.527},{"x":1757215742064,"y":89.895},{"x":1757215681909,"y":93.973},{"x":1757215621706,"y":94.134},{"x":1757215561529,"y":90.403},{"x":1757215500674,"y":85.116},{"x":1757215440499,"y":90.735},{"x":1757215380337,"y":83.571},{"x":1757215323011,"y":83.969},{"x":1757215262826,"y":90.147},{"x":1757215202664,"y":84.462},{"x":1757215142504,"y":90.113},{"x":1757215082332,"y":88.503},{"x":1757215022173,"y":89.943},{"x":1757214961706,"y":92.506},{"x":1757214901541,"y":86.155},{"x":1757214841380,"y":84.19},{"x":1757214781209,"y":89.18},{"x":1757214721006,"y":93.254},{"x":1757214660813,"y":92.388},{"x":1757214600749,"y":89.798},{"x":1757214541654,"y":84.962},{"x":1757214482222,"y":93.793},{"x":1757214422049,"y":87.024},{"x":1757214362494,"y":94.827},{"x":1757214302306,"y":87.735},{"x":1757214260212,"y":88.365},{"x":1757214257226,"y":91.617},{"x":1757214246162,"y":106.825},{"x":1757213940411,"y":110.542},{"x":1757213880247,"y":109.826},{"x":1757213822909,"y":104.805},{"x":1757213762742,"y":99.675},{"x":1757213702577,"y":88.363},{"x":1757213642405,"y":88.574},{"x":1757213582246,"y":91.361},{"x":1757213522087,"y":87.39},{"x":1757213461844,"y":86.711},{"x":1757213401508,"y":83.439},{"x":1757213341341,"y":85.52},{"x":1757213281161,"y":95.344},{"x":1757213220974,"y":91.33},{"x":1757213160826,"y":91.787},{"x":1757213100756,"y":88.789},{"x":1757213040460,"y":89.821},{"x":1757212980260,"y":88.51},{"x":1757212922889,"y":89.443},{"x":1757212862725,"y":89.181},{"x":1757212802564,"y":90.432},{"x":1757212742393,"y":89.707},{"x":1757212682227,"y":92.332},{"x":1757212621995,"y":94.437},{"x":1757212561612,"y":95.806},{"x":1757212501441,"y":91.072},{"x":1757212441265,"y":92.605},{"x":1757212381085,"y":93.323},{"x":1757212320907,"y":91.0},{"x":1757212260771,"y":94.806},{"x":1757212200636,"y":99.385},{"x":1757212140525,"y":88.568},{"x":1757212080314,"y":93.481},{"x":1757212022898,"y":88.222},{"x":1757211962715,"y":88.897},{"x":1757211902541,"y":92.043},{"x":1757211842365,"y":86.154},{"x":1757211782187,"y":90.528},{"x":1757211722009,"y":91.015},{"x":1757211661654,"y":94.885},{"x":1757211601484,"y":96.567},{"x":1757211541317,"y":93.414},{"x":1757211481143,"y":103.819},{"x":1757211420928,"y":97.878},{"x":1757211360772,"y":97.723},{"x":1757211300630,"y":97.618},{"x":1757211240453,"y":101.422},{"x":1757211180319,"y":91.761},{"x":1757211122938,"y":89.804},{"x":1757211062794,"y":91.269},{"x":1757211002557,"y":82.457},{"x":1757210942387,"y":86.205},{"x":1757210882223,"y":85.269},{"x":1757210822054,"y":87.975},{"x":1757210761184,"y":87.644},{"x":1757210701011,"y":88.681},{"x":1757210640826,"y":94.37},{"x":1757210580668,"y":90.946},{"x":1757210520553,"y":85.369},{"x":1757210463237,"y":85.832},{"x":1757210402427,"y":98.356},{"x":1757210342133,"y":104.253},{"x":1757210281905,"y":97.787},{"x":1757210221729,"y":98.345},{"x":1757210161553,"y":93.957},{"x":1757210101187,"y":90.505},{"x":1757210041000,"y":85.91},{"x":1757209980822,"y":91.722},{"x":1757209920680,"y":87.596},{"x":1757209860510,"y":90.329},{"x":1757209800445,"y":89.926},{"x":1757209742996,"y":94.28},{"x":1757209682854,"y":86.986},{"x":1757209622661,"y":90.338},{"x":1757209562516,"y":99.493},{"x":1757209502319,"y":102.397},{"x":1757209442138,"y":105.377},{"x":1757209381970,"y":104.327},{"x":1757209321809,"y":101.492},{"x":1757209261606,"y":92.322},{"x":1757209201455,"y":110.009},{"x":1757209141263,"y":106.474},{"x":1757209081087,"y":98.866},{"x":1757209020915,"y":97.826},{"x":1757208960763,"y":94.537},{"x":1757208900663,"y":88.276},{"x":1757208840426,"y":89.413},{"x":1757208780281,"y":94.026},{"x":1757208722872,"y":92.041},{"x":1757208662707,"y":96.731},{"x":1757208602535,"y":94.427},{"x":1757208542367,"y":95.54},{"x":1757208482192,"y":90.632},{"x":1757208422008,"y":92.897},{"x":1757208361837,"y":88.0},{"x":1757208301655,"y":89.744},{"x":1757208241470,"y":101.662},{"x":1757208181280,"y":89.048},{"x":1757208121102,"y":89.217},{"x":1757208060913,"y":96.429},{"x":1757208000802,"y":96.951},{"x":1757207940550,"y":97.073},{"x":1757207880487,"y":91.37},{"x":1757207820320,"y":89.764},{"x":1757207762912,"y":92.726},{"x":1757207702737,"y":88.652},{"x":1757207642567,"y":88.463},{"x":1757207582393,"y":90.872},{"x":1757207522219,"y":89.682},{"x":1757207462012,"y":88.792},{"x":1757207401811,"y":95.089},{"x":1757207341632,"y":101.435},{"x":1757207281449,"y":91.759},{"x":1757207221261,"y":94.73},{"x":1757207161102,"y":95.367},{"x":1757207100921,"y":91.769},{"x":1757207040714,"y":106.842},{"x":1757206980589,"y":97.907},{"x":1757206920347,"y":102.084},{"x":1757206863068,"y":94.864},{"x":1757206800681,"y":93.633},{"x":1757206740346,"y":96.369},{"x":1757206680102,"y":89.893},{"x":1757206622869,"y":95.563},{"x":1757206562698,"y":93.625},{"x":1757206502530,"y":92.373},{"x":1757206442338,"y":98.39},{"x":1757206382180,"y":101.088},{"x":1757206322022,"y":86.385},{"x":1757206261701,"y":87.487},{"x":1757206201533,"y":95.84},{"x":1757206141362,"y":99.879},{"x":1757206081181,"y":99.259},{"x":1757206020998,"y":96.159},{"x":1757205960830,"y":99.369},{"x":1757205900730,"y":91.221},{"x":1757205840518,"y":91.206},{"x":1757205780311,"y":87.499},{"x":1757205722919,"y":89.79},{"x":1757205662734,"y":91.252},{"x":1757205602558,"y":86.485},{"x":1757205542382,"y":92.47},{"x":1757205482209,"y":92.569},{"x":1757205422030,"y":94.888},{"x":1757205361646,"y":96.748},{"x":1757205301481,"y":90.856},{"x":1757205241306,"y":93.618},{"x":1757205181135,"y":90.409},{"x":1757205120944,"y":87.845},{"x":1757205060764,"y":97.557},{"x":1757205000729,"y":94.711},{"x":1757204940493,"y":103.836},{"x":1757204880214,"y":96.485},{"x":1757204822885,"y":93.915},{"x":1757204762716,"y":95.644},{"x":1757204702552,"y":95.593},{"x":1757204642382,"y":96.087},{"x":1757204582226,"y":91.254},{"x":1757204522037,"y":94.186},{"x":1757204461731,"y":97.172},{"x":1757204401562,"y":93.945},{"x":1757204341387,"y":97.144},{"x":1757204281211,"y":95.737},{"x":1757204221035,"y":92.652},{"x":1757204160843,"y":103.883},{"x":1757204100766,"y":102.697},{"x":1757204040507,"y":105.449},{"x":1757203980354,"y":107.873},{"x":1757203922916,"y":114.273},{"x":1757203862697,"y":102.573},{"x":1757203802477,"y":101.865},{"x":1757203742310,"y":105.587},{"x":1757203682129,"y":120.762},{"x":1757203621942,"y":113.824},{"x":1757203561282,"y":109.938},{"x":1757203501095,"y":102.355},{"x":1757203440896,"y":97.847},{"x":1757203380739,"y":92.277},{"x":1757203320612,"y":92.137},{"x":1757203263334,"y":93.079},{"x":1757203201306,"y":97.322},{"x":1757203140767,"y":105.562},{"x":1757203080571,"y":103.285},{"x":1757203020404,"y":123.276},{"x":1757202963015,"y":98.034},{"x":1757202902828,"y":100.238},{"x":1757202842652,"y":107.287},{"x":1757202782476,"y":102.936},{"x":1757202722305,"y":95.64},{"x":1757202662135,"y":106.184},{"x":1757202601962,"y":114.346},{"x":1757202541787,"y":95.764},{"x":1757202481634,"y":98.369},{"x":1757202421451,"y":99.772},{"x":1757202361288,"y":102.324},{"x":1757202301140,"y":102.701},{"x":1757202240877,"y":118.25},{"x":1757202180710,"y":113.169},{"x":1757202120559,"y":97.967},{"x":1757202060394,"y":90.627},{"x":1757202000432,"y":99.842},{"x":1757201942874,"y":93.17},{"x":1757201882151,"y":93.505},{"x":1757201821974,"y":88.787},{"x":1757201761606,"y":94.435},{"x":1757201701430,"y":102.928},{"x":1757201641234,"y":90.034},{"x":1757201581072,"y":95.967},{"x":1757201520884,"y":97.235},{"x":1757201460724,"y":99.289},{"x":1757201400657,"y":119.997},{"x":1757201340419,"y":103.501},{"x":1757201280242,"y":109.242},{"x":1757201222874,"y":98.424},{"x":1757201162703,"y":108.331},{"x":1757201102539,"y":98.635},{"x":1757201042376,"y":94.605},{"x":1757200982216,"y":99.996},{"x":1757200922069,"y":106.486},{"x":1757200861719,"y":101.967},{"x":1757200801548,"y":93.086},{"x":1757200741375,"y":103.65},{"x":1757200681206,"y":98.11},{"x":1757200621040,"y":99.77},{"x":1757200560863,"y":101.037},{"x":1757200500770,"y":94.996},{"x":1757200440548,"y":109.274},{"x":1757200380370,"y":128.325},{"x":1757200322980,"y":127.709},{"x":1757200262772,"y":125.145},{"x":1757200202532,"y":152.537},{"x":1757200142366,"y":122.446},{"x":1757200082182,"y":114.164},{"x":1757200022020,"y":113.764},{"x":1757199961347,"y":105.345},{"x":1757199901161,"y":112.889},{"x":1757199840957,"y":110.135},{"x":1757199780784,"y":113.336},{"x":1757199720642,"y":115.762},{"x":1757199663450,"y":104.71},{"x":1757199602348,"y":113.823},{"x":1757199542140,"y":103.395},{"x":1757199481829,"y":118.915},{"x":1757199421622,"y":111.685},{"x":1757199361440,"y":115.548},{"x":1757199301172,"y":111.635},{"x":1757199240985,"y":138.623},{"x":1757199180814,"y":117.598},{"x":1757199120680,"y":104.22},{"x":1757199060527,"y":105.464},{"x":1757199000370,"y":114.714},{"x":1757198942950,"y":113.281},{"x":1757198882783,"y":104.639},{"x":1757198822612,"y":95.126},{"x":1757198762449,"y":96.419},{"x":1757198702273,"y":96.207},{"x":1757198642092,"y":101.527},{"x":1757198581903,"y":120.986},{"x":1757198521726,"y":123.406},{"x":1757198461544,"y":121.096},{"x":1757198401371,"y":116.503},{"x":1757198341180,"y":113.551},{"x":1757198281002,"y":109.499},{"x":1757198220839,"y":109.281},{"x":1757198160683,"y":113.273},{"x":1757198100589,"y":111.811},{"x":1757198040407,"y":109.565},{"x":1757197982949,"y":128.675},{"x":1757197922781,"y":112.789},{"x":1757197862611,"y":118.241},{"x":1757197802442,"y":112.293},{"x":1757197742256,"y":118.821},{"x":1757197682099,"y":114.475},{"x":1757197621909,"y":122.553},{"x":1757197561742,"y":129.761},{"x":1757197501558,"y":126.199},{"x":1757197441390,"y":116.311},{"x":1757197381225,"y":122.91},{"x":1757197321056,"y":126.73},{"x":1757197260782,"y":130.399},{"x":1757197200852,"y":127.163},{"x":1757197140410,"y":126.572},{"x":1757197080352,"y":116.756},{"x":1757197022893,"y":146.392},{"x":1757196962722,"y":139.412},{"x":1757196902556,"y":145.332},{"x":1757196842354,"y":140.141},{"x":1757196782189,"y":145.574},{"x":1757196721997,"y":138.267},{"x":1757196661541,"y":132.915},{"x":1757196600871,"y":128.057},{"x":1757196540687,"y":113.509},{"x":1757196480568,"y":123.743},{"x":1757196420362,"y":125.656},{"x":1757196360309,"y":130.696},{"x":1757196302888,"y":129.61},{"x":1757196242719,"y":142.222},{"x":1757196182547,"y":125.404},{"x":1757196122381,"y":135.549},{"x":1757196062214,"y":137.494},{"x":1757196002269,"y":127.407},{"x":1757195942000,"y":128.849},{"x":1757195881781,"y":130.967},{"x":1757195821618,"y":126.869},{"x":1757195761431,"y":124.635},{"x":1757195701075,"y":142.412},{"x":1757195640879,"y":127.662},{"x":1757195580715,"y":134.64},{"x":1757195520577,"y":132.654},{"x":1757195460374,"y":134.051},{"x":1757195400270,"y":125.162},{"x":1757195342877,"y":128.992},{"x":1757195282711,"y":124.897},{"x":1757195222520,"y":125.987},{"x":1757195162361,"y":126.807},{"x":1757195102164,"y":124.962},{"x":1757195041982,"y":124.732},{"x":1757194981833,"y":122.095},{"x":1757194921644,"y":138.65},{"x":1757194861466,"y":127.754},{"x":1757194801057,"y":138.458},{"x":1757194740818,"y":134.178},{"x":1757194680654,"y":134.332},{"x":1757194620495,"y":133.162},{"x":1757194560457,"y":129.244},{"x":1757194500227,"y":131.86},{"x":1757194442906,"y":132.702},{"x":1757194382716,"y":138.459},{"x":1757194322536,"y":135.781},{"x":1757194262366,"y":144.434},{"x":1757194202193,"y":147.293},{"x":1757194142022,"y":135.669},{"x":1757194081830,"y":134.957},{"x":1757194021646,"y":137.806},{"x":1757193961485,"y":133.378},{"x":1757193901293,"y":133.537},{"x":1757193841117,"y":139.168},{"x":1757193780936,"y":148.543},{"x":1757193720768,"y":158.552},{"x":1757193660583,"y":165.559},{"x":1757193600549,"y":158.617},{"x":1757193540257,"y":180.052},{"x":1757193482953,"y":181.144},{"x":1757193422785,"y":172.114},{"x":1757193362600,"y":166.622},{"x":1757193302437,"y":203.946},{"x":1757193242269,"y":195.129},{"x":1757193182099,"y":203.773},{"x":1757193121893,"y":202.24},{"x":1757193061454,"y":201.895},{"x":1757193000901,"y":192.165},{"x":1757192940723,"y":195.703},{"x":1757192880353,"y":194.184},{"x":1757192823018,"y":198.424},{"x":1757192762854,"y":193.698},{"x":1757192702690,"y":198.971},{"x":1757192642500,"y":200.232},{"x":1757192582355,"y":211.416},{"x":1757192522193,"y":209.491},{"x":1757192462026,"y":218.73},{"x":1757192400951,"y":213.97},{"x":1757192340344,"y":193.66},{"x":1757192283037,"y":190.416},{"x":1757192222828,"y":187.884},{"x":1757192162665,"y":213.213},{"x":1757192102496,"y":225.98},{"x":1757192042320,"y":216.593},{"x":1757191982143,"y":219.166},{"x":1757191921953,"y":222.352},{"x":1757191861692,"y":216.883},{"x":1757191801498,"y":214.355},{"x":1757191741332,"y":212.97},{"x":1757191681172,"y":187.525},{"x":1757191620975,"y":230.222},{"x":1757191560807,"y":189.152},{"x":1757191500692,"y":214.524},{"x":1757191440436,"y":212.303},{"x":1757191380282,"y":208.478},{"x":1757191322903,"y":209.81},{"x":1757191262716,"y":232.603},{"x":1757191202547,"y":231.213},{"x":1757191142370,"y":211.878},{"x":1757191082199,"y":215.696},{"x":1757191022042,"y":213.167},{"x":1757190961654,"y":229.925},{"x":1757190901466,"y":211.115},{"x":1757190841291,"y":212.737},{"x":1757190781124,"y":238.897},{"x":1757190720936,"y":228.26},{"x":1757190660748,"y":198.668},{"x":1757190600808,"y":228.76},{"x":1757190540443,"y":222.429},{"x":1757190480291,"y":229.558},{"x":1757190422912,"y":230.986},{"x":1757190362752,"y":245.93},{"x":1757190302585,"y":235.921},{"x":1757190242397,"y":241.363},{"x":1757190182250,"y":239.841},{"x":1757190122048,"y":229.863},{"x":1757190061867,"y":217.108},{"x":1757190001695,"y":217.549},{"x":1757189941514,"y":237.466},{"x":1757189881351,"y":243.518},{"x":1757189821171,"y":262.657},{"x":1757189760977,"y":258.98},{"x":1757189700839,"y":233.673},{"x":1757189640636,"y":240.24},{"x":1757189580517,"y":246.8},{"x":1757189520263,"y":251.127},{"x":1757189462966,"y":222.455},{"x":1757189402773,"y":246.773},{"x":1757189342606,"y":211.801},{"x":1757189282432,"y":243.272},{"x":1757189222277,"y":249.75},{"x":1757189162115,"y":271.113},{"x":1757189101944,"y":264.052},{"x":1757189041766,"y":263.239},{"x":1757188981577,"y":247.011},{"x":1757188921409,"y":270.336},{"x":1757188861234,"y":249.743},{"x":1757188802352,"y":246.975},{"x":1757188742061,"y":230.258},{"x":1757188681836,"y":233.861},{"x":1757188621658,"y":220.419},{"x":1757188561472,"y":194.568},{"x":1757188501061,"y":238.677},{"x":1757188440865,"y":228.661},{"x":1757188380698,"y":239.945},{"x":1757188320790,"y":240.303},{"x":1757188260491,"y":241.714},{"x":1757188200454,"y":232.202},{"x":1757188142931,"y":226.361},{"x":1757188082766,"y":210.578},{"x":1757188022595,"y":232.667},{"x":1757187962418,"y":243.283},{"x":1757187902255,"y":238.325},{"x":1757187842067,"y":246.393},{"x":1757187781882,"y":241.565},{"x":1757187721712,"y":230.008},{"x":1757187661542,"y":228.711},{"x":1757187601110,"y":237.654},{"x":1757187540896,"y":258.894},{"x":1757187480723,"y":245.28},{"x":1757187420502,"y":256.113},{"x":1757187360287,"y":252.878},{"x":1757187302979,"y":245.238},{"x":1757187242804,"y":249.144},{"x":1757187182642,"y":231.82},{"x":1757187122476,"y":241.76},{"x":1757187062287,"y":272.728},{"x":1757187002154,"y":234.63},{"x":1757186941936,"y":231.748},{"x":1757186881756,"y":239.995},{"x":1757186821582,"y":217.249},{"x":1757186761444,"y":252.19},{"x":1757186701259,"y":252.701},{"x":1757186641065,"y":267.031},{"x":1757186580889,"y":273.868},{"x":1757186520710,"y":272.042},{"x":1757186460542,"y":244.14},{"x":1757186400526,"y":254.395},{"x":1757186343016,"y":256.973},{"x":1757186282636,"y":279.488},{"x":1757186222471,"y":248.048},{"x":1757186162298,"y":254.162},{"x":1757186102115,"y":228.679},{"x":1757186041933,"y":219.012},{"x":1757185981754,"y":265.551},{"x":1757185921569,"y":229.488},{"x":1757185861332,"y":257.921},{"x":1757185800921,"y":233.101},{"x":1757185740712,"y":239.538},{"x":1757185680610,"y":231.371},{"x":1757185620402,"y":239.077},{"x":1757185560338,"y":285.304},{"x":1757185502859,"y":270.509},{"x":1757185442690,"y":262.8},{"x":1757185382509,"y":267.079},{"x":1757185322362,"y":250.7},{"x":1757185262175,"y":238.389},{"x":1757185200894,"y":254.254},{"x":1757185140654,"y":268.003},{"x":1757185080458,"y":246.003},{"x":1757185022957,"y":257.253},{"x":1757184962782,"y":254.124},{"x":1757184902607,"y":239.986},{"x":1757184842427,"y":263.519},{"x":1757184782263,"y":261.49},{"x":1757184722090,"y":280.887},{"x":1757184661902,"y":277.831},{"x":1757184601746,"y":260.291},{"x":1757184541559,"y":241.349},{"x":1757184481389,"y":244.202},{"x":1757184421219,"y":258.46},{"x":1757184361040,"y":263.171},{"x":1757184300944,"y":243.571},{"x":1757184240657,"y":269.529},{"x":1757184180472,"y":267.834},{"x":1757184120293,"y":267.07},{"x":1757184062989,"y":234.198},{"x":1757184002817,"y":254.865},{"x":1757183942652,"y":247.825},{"x":1757183882478,"y":286.043},{"x":1757183822293,"y":225.883},{"x":1757183762125,"y":234.312},{"x":1757183701938,"y":249.031},{"x":1757183641770,"y":234.573},{"x":1757183581601,"y":258.553},{"x":1757183521430,"y":247.848},{"x":1757183461252,"y":245.79},{"x":1757183401118,"y":232.864},{"x":1757183340792,"y":259.161},{"x":1757183280647,"y":241.189},{"x":1757183220439,"y":229.994},{"x":1757183160318,"y":224.865},{"x":1757183102939,"y":234.612},{"x":1757183042764,"y":246.772},{"x":1757182982596,"y":245.927},{"x":1757182922458,"y":233.505},{"x":1757182862275,"y":247.855},{"x":1757182802086,"y":253.931},{"x":1757182741908,"y":225.701},{"x":1757182681741,"y":240.257},{"x":1757182621402,"y":248.459},{"x":1757182561236,"y":253.757},{"x":1757182501091,"y":247.099},{"x":1757182440780,"y":236.742},{"x":1757182380625,"y":247.499},{"x":1757182320460,"y":247.506},{"x":1757182260326,"y":253.223},{"x":1757182202898,"y":247.715},{"x":1757182142733,"y":229.716},{"x":1757182082563,"y":219.19},{"x":1757182022418,"y":249.096},{"x":1757181962227,"y":264.324},{"x":1757181902042,"y":263.325},{"x":1757181841849,"y":260.698},{"x":1757181781673,"y":277.57},{"x":1757181721500,"y":287.039},{"x":1757181661337,"y":255.822},{"x":1757181600730,"y":252.589},{"x":1757181540404,"y":245.591},{"x":1757181480239,"y":264.063},{"x":1757181422904,"y":263.696},{"x":1757181362734,"y":241.249},{"x":1757181302576,"y":262.174},{"x":1757181242375,"y":255.308},{"x":1757181182205,"y":247.439},{"x":1757181122043,"y":236.238},{"x":1757181061651,"y":251.109},{"x":1757181001491,"y":216.322},{"x":1757180941324,"y":266.896},{"x":1757180881159,"y":245.698},{"x":1757180820982,"y":243.401},{"x":1757180760823,"y":255.574},{"x":1757180700757,"y":259.804},{"x":1757180640446,"y":261.448},{"x":1757180580302,"y":259.134},{"x":1757180522932,"y":272.598},{"x":1757180462757,"y":248.977},{"x":1757180402586,"y":223.127},{"x":1757180342418,"y":236.409},{"x":1757180282245,"y":228.646},{"x":1757180222067,"y":218.448},{"x":1757180161824,"y":229.355},{"x":1757180101650,"y":236.063},{"x":1757180041469,"y":244.782},{"x":1757179981299,"y":251.613},{"x":1757179921130,"y":258.345},{"x":1757179860960,"y":259.455},{"x":1757179800806,"y":244.45},{"x":1757179740622,"y":250.288},{"x":1757179680425,"y":247.115},{"x":1757179622906,"y":273.962},{"x":1757179562731,"y":283.266},{"x":1757179502572,"y":294.15},{"x":1757179442419,"y":276.072},{"x":1757179382235,"y":269.011},{"x":1757179322059,"y":237.135},{"x":1757179261717,"y":227.523},{"x":1757179201548,"y":260.939},{"x":1757179141369,"y":257.546},{"x":1757179081181,"y":273.531},{"x":1757179021004,"y":293.506},{"x":1757178960809,"y":281.953},{"x":1757178900654,"y":269.179},{"x":1757178840468,"y":257.392},{"x":1757178780388,"y":260.592},{"x":1757178723051,"y":265.95},{"x":1757178662777,"y":265.44},{"x":1757178602609,"y":264.737},{"x":1757178542434,"y":287.035},{"x":1757178482272,"y":298.163},{"x":1757178422081,"y":291.59},{"x":1757178361903,"y":263.528},{"x":1757178301732,"y":253.732},{"x":1757178241565,"y":270.093},{"x":1757178181394,"y":257.067},{"x":1757178121223,"y":257.599},{"x":1757178061019,"y":251.38},{"x":1757178002268,"y":229.292},{"x":1757177941974,"y":222.302},{"x":1757177881778,"y":253.562},{"x":1757177821614,"y":246.601},{"x":1757177761446,"y":256.186},{"x":1757177701208,"y":234.674},{"x":1757177641011,"y":268.405},{"x":1757177580826,"y":258.962},{"x":1757177520683,"y":229.668},{"x":1757177460498,"y":215.196},{"x":1757177400375,"y":216.535},{"x":1757177340228,"y":241.3},{"x":1757177282744,"y":232.926},{"x":1757177222583,"y":250.84},{"x":1757177162407,"y":226.416},{"x":1757177102235,"y":246.084},{"x":1757177042088,"y":245.877},{"x":1757176981881,"y":222.771},{"x":1757176921730,"y":246.762},{"x":1757176861535,"y":243.277},{"x":1757176801279,"y":244.698},{"x":1757176741081,"y":254.474},{"x":1757176680906,"y":240.923},{"x":1757176620737,"y":263.702},{"x":1757176560634,"y":269.746},{"x":1757176500461,"y":260.768},{"x":1757176442996,"y":245.6},{"x":1757176382821,"y":230.677},{"x":1757176322627,"y":216.427},{"x":1757176262445,"y":271.072},{"x":1757176202263,"y":301.942},{"x":1757176142087,"y":291.11},{"x":1757176081918,"y":258.167},{"x":1757176021721,"y":241.064},{"x":1757175961544,"y":247.778},{"x":1757175901168,"y":255.564},{"x":1757175840991,"y":250.317},{"x":1757175780820,"y":224.447},{"x":1757175720637,"y":244.332},{"x":1757175660523,"y":253.266},{"x":1757175600342,"y":217.05},{"x":1757175542993,"y":217.312},{"x":1757175482630,"y":233.151},{"x":1757175422441,"y":215.189},{"x":1757175362259,"y":214.822},{"x":1757175302086,"y":256.567},{"x":1757175241913,"y":266.884},{"x":1757175181735,"y":252.295},{"x":1757175121524,"y":280.083},{"x":1757175061303,"y":252.329},{"x":1757175000867,"y":282.221},{"x":1757174940662,"y":289.909},{"x":1757174882816,"y":263.439},{"x":1757174822618,"y":292.952},{"x":1757174762464,"y":267.402},{"x":1757174702295,"y":226.562},{"x":1757174642118,"y":257.311},{"x":1757174581928,"y":268.755},{"x":1757174521743,"y":241.682},{"x":1757174461594,"y":246.74},{"x":1757174402198,"y":226.242},{"x":1757174341995,"y":241.556},{"x":1757174281822,"y":251.382},{"x":1757174221667,"y":238.632},{"x":1757174161505,"y":265.834},{"x":1757174100934,"y":244.023},{"x":1757174040761,"y":244.074},{"x":1757173980608,"y":223.796},{"x":1757173920471,"y":241.052},{"x":1757173860312,"y":267.325},{"x":1757173802972,"y":252.452},{"x":1757173742810,"y":236.063},{"x":1757173682647,"y":232.436},{"x":1757173622462,"y":266.558},{"x":1757173562323,"y":233.126},{"x":1757173502123,"y":249.831},{"x":1757173441950,"y":267.806},{"x":1757173381779,"y":282.517},{"x":1757173321621,"y":278.18},{"x":1757173261450,"y":268.871},{"x":1757173201158,"y":266.738},{"x":1757173140966,"y":234.947},{"x":1757173080784,"y":266.011},{"x":1757173020640,"y":224.097},{"x":1757172960527,"y":238.065},{"x":1757172900387,"y":267.791},{"x":1757172843026,"y":270.786},{"x":1757172782838,"y":277.728},{"x":1757172722659,"y":264.141},{"x":1757172662498,"y":259.581},{"x":1757172602310,"y":238.85},{"x":1757172542138,"y":260.767},{"x":1757172481954,"y":219.162},{"x":1757172421786,"y":226.281},{"x":1757172361635,"y":220.056},{"x":1757172301292,"y":231.626},{"x":1757172241120,"y":261.43},{"x":1757172180941,"y":243.304},{"x":1757172120779,"y":237.776},{"x":1757172060625,"y":228.66},{"x":1757172000507,"y":212.679},{"x":1757171940393,"y":209.695},{"x":1757171882935,"y":213.047},{"x":1757171822772,"y":227.946},{"x":1757171762597,"y":235.167},{"x":1757171702421,"y":247.99},{"x":1757171642260,"y":226.578},{"x":1757171582089,"y":241.318},{"x":1757171521915,"y":259.577},{"x":1757171461530,"y":247.19},{"x":1757171400781,"y":208.845},{"x":1757171340590,"y":262.547},{"x":1757171280475,"y":243.113},{"x":1757171220344,"y":224.231},{"x":1757171162932,"y":228.025},{"x":1757171102761,"y":239.901},{"x":1757171042602,"y":230.85},{"x":1757170982445,"y":215.306},{"x":1757170922266,"y":259.344},{"x":1757170862101,"y":231.745},{"x":1757170800874,"y":239.179},{"x":1757170740472,"y":217.597},{"x":1757170680096,"y":220.003},{"x":1757170622860,"y":214.59},{"x":1757170562689,"y":212.425},{"x":1757170502523,"y":230.558},{"x":1757170442345,"y":209.417},{"x":1757170382179,"y":220.795},{"x":1757170321995,"y":230.935},{"x":1757170261802,"y":243.467},{"x":1757170201633,"y":252.622},{"x":1757170141464,"y":221.193},{"x":1757170081236,"y":225.95},{"x":1757170021062,"y":211.449},{"x":1757169960883,"y":229.56},{"x":1757169900918,"y":209.104},{"x":1757169840430,"y":213.881},{"x":1757169780348,"y":222.29},{"x":1757169722909,"y":240.727},{"x":1757169662735,"y":241.641},{"x":1757169602536,"y":238.837},{"x":1757169542376,"y":232.56},{"x":1757169482213,"y":231.927},{"x":1757169422023,"y":211.867},{"x":1757169361819,"y":225.58},{"x":1757169301635,"y":205.283},{"x":1757169241459,"y":226.224},{"x":1757169181287,"y":224.796},{"x":1757169121127,"y":229.537},{"x":1757169060930,"y":245.15},{"x":1757169000807,"y":246.11},{"x":1757168940576,"y":236.833},{"x":1757168880379,"y":243.38},{"x":1757168820264,"y":229.524},{"x":1757168762906,"y":277.492},{"x":1757168702744,"y":240.981},{"x":1757168642572,"y":220.732},{"x":1757168582405,"y":227.472},{"x":1757168522241,"y":221.365},{"x":1757168461828,"y":224.167},{"x":1757168401630,"y":223.728},{"x":1757168341468,"y":248.266},{"x":1757168281306,"y":235.063},{"x":1757168221137,"y":234.239},{"x":1757168160950,"y":222.814},{"x":1757168100803,"y":232.63},{"x":1757168040611,"y":220.191},{"x":1757167980462,"y":216.966},{"x":1757167920289,"y":236.428},{"x":1757167862957,"y":235.32},{"x":1757167802761,"y":236.471},{"x":1757167742591,"y":238.936},{"x":1757167682427,"y":231.342},{"x":1757167622256,"y":236.764},{"x":1757167562085,"y":243.402},{"x":1757167501897,"y":211.384},{"x":1757167441719,"y":207.081},{"x":1757167381556,"y":223.521},{"x":1757167321413,"y":224.493},{"x":1757167264222,"y":200.267},{"x":1757167202229,"y":221.423},{"x":1757167142006,"y":226.436},{"x":1757167081828,"y":228.533},{"x":1757167021649,"y":226.899},{"x":1757166961491,"y":233.673},{"x":1757166901092,"y":231.103},{"x":1757166840884,"y":232.146},{"x":1757166780716,"y":219.416},{"x":1757166720583,"y":226.358},{"x":1757166660404,"y":210.105},{"x":1757166600311,"y":215.651},{"x":1757166542871,"y":220.376},{"x":1757166482701,"y":201.635},{"x":1757166422534,"y":194.828},{"x":1757166362353,"y":198.865},{"x":1757166302188,"y":200.604},{"x":1757166242013,"y":225.777},{"x":1757166181832,"y":237.105},{"x":1757166121664,"y":228.913},{"x":1757166061501,"y":233.33},{"x":1757166001300,"y":224.809},{"x":1757165941116,"y":222.65},{"x":1757165880936,"y":215.861},{"x":1757165820770,"y":240.878},{"x":1757165760649,"y":227.683},{"x":1757165700466,"y":241.625},{"x":1757165640302,"y":240.776},{"x":1757165582953,"y":270.753},{"x":1757165522783,"y":233.282},{"x":1757165462618,"y":218.8},{"x":1757165402444,"y":221.936},{"x":1757165342272,"y":214.226},{"x":1757165282115,"y":210.198},{"x":1757165221905,"y":227.957},{"x":1757165161724,"y":229.478},{"x":1757165101564,"y":226.765},{"x":1757165041386,"y":230.69},{"x":1757164981211,"y":220.032},{"x":1757164921037,"y":212.076},{"x":1757164860849,"y":227.572},{"x":1757164800814,"y":214.809},{"x":1757164740447,"y":221.69},{"x":1757164682980,"y":215.154},{"x":1757164622763,"y":219.658},{"x":1757164562362,"y":203.593},{"x":1757164502188,"y":217.464},{"x":1757164442015,"y":223.079},{"x":1757164381829,"y":199.112},{"x":1757164321634,"y":210.027},{"x":1757164261459,"y":215.864},{"x":1757164200971,"y":244.817},{"x":1757164140752,"y":258.578},{"x":1757164080619,"y":249.563},{"x":1757164020370,"y":240.856},{"x":1757163962995,"y":236.032},{"x":1757163902834,"y":218.025},{"x":1757163842660,"y":209.204},{"x":1757163782497,"y":220.871},{"x":1757163722303,"y":217.939},{"x":1757163662164,"y":203.925},{"x":1757163602301,"y":218.975},{"x":1757163542094,"y":209.714},{"x":1757163481893,"y":227.192},{"x":1757163421717,"y":207.036},{"x":1757163361551,"y":209.703},{"x":1757163301140,"y":210.75},{"x":1757163240951,"y":206.447},{"x":1757163180781,"y":195.658},{"x":1757163120643,"y":197.406},{"x":1757163060487,"y":214.765},{"x":1757163000384,"y":195.556},{"x":1757162942925,"y":211.728},{"x":1757162882759,"y":208.729},{"x":1757162822475,"y":200.306},{"x":1757162762300,"y":217.92},{"x":1757162702116,"y":184.78},{"x":1757162641942,"y":205.582},{"x":1757162581773,"y":220.681},{"x":1757162521598,"y":208.956},{"x":1757162461430,"y":207.704},{"x":1757162401135,"y":198.337},{"x":1757162340921,"y":200.639},{"x":1757162280760,"y":211.343},{"x":1757162220621,"y":198.798},{"x":1757162160392,"y":226.837},{"x":1757162100182,"y":208.915},{"x":1757162042852,"y":196.091},{"x":1757161982690,"y":203.181},{"x":1757161922512,"y":208.326},{"x":1757161862355,"y":211.045},{"x":1757161802184,"y":207.697},{"x":1757161742000,"y":218.391},{"x":1757161681835,"y":212.39},{"x":1757161621668,"y":214.702},{"x":1757161561499,"y":204.135},{"x":1757161501330,"y":204.775},{"x":1757161441148,"y":189.143},{"x":1757161380955,"y":183.355},{"x":1757161320777,"y":207.773},{"x":1757161260622,"y":198.91},{"x":1757161200518,"y":180.693},{"x":1757161140271,"y":174.967},{"x":1757161083022,"y":207.041},{"x":1757161022842,"y":190.291},{"x":1757160962679,"y":171.619},{"x":1757160902479,"y":182.516},{"x":1757160842307,"y":197.539},{"x":1757160782136,"y":193.213},{"x":1757160721942,"y":195.217},{"x":1757160661719,"y":182.637},{"x":1757160601539,"y":212.046},{"x":1757160541356,"y":210.051},{"x":1757160481170,"y":185.028},{"x":1757160420994,"y":180.953},{"x":1757160360819,"y":195.189},{"x":1757160300703,"y":183.018},{"x":1757160240497,"y":186.885},{"x":1757160180268,"y":218.827},{"x":1757160122959,"y":209.491},{"x":1757160062816,"y":205.478},{"x":1757160000804,"y":192.885},{"x":1757159940521,"y":201.048},{"x":1757159883000,"y":162.796},{"x":1757159822820,"y":175.848},{"x":1757159762657,"y":167.148},{"x":1757159702480,"y":196.421},{"x":1757159642301,"y":205.304},{"x":1757159582137,"y":190.257},{"x":1757159521948,"y":165.811},{"x":1757159461777,"y":195.56},{"x":1757159401601,"y":175.791},{"x":1757159341437,"y":176.941},{"x":1757159281261,"y":194.425},{"x":1757159221078,"y":173.623},{"x":1757159160893,"y":194.309},{"x":1757159100843,"y":175.797},{"x":1757159040556,"y":189.79},{"x":1757158980432,"y":171.794},{"x":1757158922906,"y":206.322},{"x":1757158862752,"y":204.214},{"x":1757158802575,"y":179.779},{"x":1757158742413,"y":179.973},{"x":1757158682231,"y":173.354},{"x":1757158622054,"y":159.435},{"x":1757158561642,"y":168.945},{"x":1757158501484,"y":153.706},{"x":1757158441324,"y":176.146},{"x":1757158381165,"y":158.762},{"x":1757158320988,"y":163.429},{"x":1757158260820,"y":175.498},{"x":1757158200735,"y":158.474},{"x":1757158140475,"y":171.275},{"x":1757158080375,"y":159.104},{"x":1757158022948,"y":165.264},{"x":1757157962803,"y":137.629},{"x":1757157902600,"y":151.839},{"x":1757157842421,"y":177.953},{"x":1757157782251,"y":170.874},{"x":1757157722115,"y":181.23},{"x":1757157661901,"y":182.46},{"x":1757157601724,"y":189.657},{"x":1757157541547,"y":203.259},{"x":1757157481307,"y":197.917},{"x":1757157421133,"y":203.154},{"x":1757157360902,"y":198.853},{"x":1757157300833,"y":179.135},{"x":1757157240586,"y":159.161},{"x":1757157180388,"y":176.325},{"x":1757157120224,"y":169.574},{"x":1757157062834,"y":177.341},{"x":1757157002651,"y":155.024},{"x":1757156942481,"y":162.843},{"x":1757156882323,"y":171.718},{"x":1757156822152,"y":171.672},{"x":1757156761916,"y":177.775},{"x":1757156701751,"y":162.427},{"x":1757156641612,"y":176.153},{"x":1757156581415,"y":162.214},{"x":1757156521251,"y":187.071},{"x":1757156461067,"y":166.848},{"x":1757156400601,"y":171.821},{"x":1757156340315,"y":234.101},{"x":1757156282997,"y":231.66},{"x":1757156222836,"y":224.784},{"x":1757156162660,"y":210.937},{"x":1757156102492,"y":189.46},{"x":1757156042319,"y":205.97},{"x":1757155982140,"y":206.966},{"x":1757155921970,"y":240.828},{"x":1757155861655,"y":157.011},{"x":1757155801442,"y":157.102},{"x":1757155741253,"y":177.429},{"x":1757155681060,"y":194.378},{"x":1757155620871,"y":207.061},{"x":1757155560705,"y":215.702},{"x":1757155500594,"y":194.961},{"x":1757155440391,"y":188.052},{"x":1757155380288,"y":157.658},{"x":1757155322902,"y":196.971},{"x":1757155262745,"y":199.374},{"x":1757155202538,"y":146.223},{"x":1757155142368,"y":173.072},{"x":1757155082189,"y":177.034},{"x":1757155022020,"y":193.754},{"x":1757154961745,"y":181.628},{"x":1757154901580,"y":197.224},{"x":1757154841404,"y":195.482},{"x":1757154781199,"y":220.762},{"x":1757154721011,"y":201.067},{"x":1757154660844,"y":199.05},{"x":1757154600708,"y":202.85},{"x":1757154540495,"y":190.038},{"x":1757154480401,"y":179.756},{"x":1757154420174,"y":173.6},{"x":1757154362848,"y":169.446},{"x":1757154302680,"y":175.42},{"x":1757154242501,"y":153.364},{"x":1757154182313,"y":175.53},{"x":1757154122230,"y":154.411},{"x":1757154061313,"y":197.951},{"x":1757154001159,"y":180.26},{"x":1757153962079,"y":179.936},{"x":1757153883020,"y":190.646},{"x":1757153822844,"y":186.029},{"x":1757153762677,"y":199.913},{"x":1757153702504,"y":170.293},{"x":1757153642321,"y":150.069},{"x":1757153582152,"y":176.097},{"x":1757153521945,"y":171.633},{"x":1757153461589,"y":160.528},{"x":1757153401370,"y":180.737},{"x":1757153341202,"y":178.544},{"x":1757153281025,"y":153.937},{"x":1757153220853,"y":178.634},{"x":1757153160697,"y":178.365},{"x":1757153100604,"y":201.384},{"x":1757153040503,"y":190.406},{"x":1757152980227,"y":206.299},{"x":1757152922877,"y":201.456},{"x":1757152862736,"y":192.395},{"x":1757152801110,"y":190.929},{"x":1757152740517,"y":174.387},{"x":1757152680260,"y":186.594},{"x":1757152622872,"y":189.305},{"x":1757152562705,"y":193.308},{"x":1757152502513,"y":185.542},{"x":1757152442335,"y":190.45},{"x":1757152382178,"y":180.788},{"x":1757152322001,"y":189.368},{"x":1757152261661,"y":165.778},{"x":1757152201437,"y":170.181},{"x":1757152141271,"y":163.385},{"x":1757152081081,"y":172.092},{"x":1757152020832,"y":186.378},{"x":1757151960664,"y":202.368},{"x":1757151900576,"y":196.392},{"x":1757151840278,"y":205.315},{"x":1757151783006,"y":170.895},{"x":1757151722836,"y":196.822},{"x":1757151662661,"y":189.904},{"x":1757151602494,"y":176.569},{"x":1757151542332,"y":188.798},{"x":1757151482163,"y":164.264},{"x":1757151421980,"y":98.043},{"x":1757151361754,"y":125.15},{"x":1757151301588,"y":116.261},{"x":1757151241419,"y":118.874},{"x":1757151181221,"y":122.311},{"x":1757151121020,"y":113.452},{"x":1757151060852,"y":126.966},{"x":1757151000775,"y":104.54},{"x":1757150940504,"y":127.42},{"x":1757150880383,"y":101.987},{"x":1757150822913,"y":110.799},{"x":1757150762748,"y":121.788},{"x":1757150702579,"y":116.39},{"x":1757150642382,"y":135.729},{"x":1757150582222,"y":123.308},{"x":1757150522045,"y":122.145},{"x":1757150461745,"y":138.619},{"x":1757150401559,"y":136.31},{"x":1757150341384,"y":142.698},{"x":1757150281207,"y":150.842},{"x":1757150221036,"y":135.933},{"x":1757150160856,"y":134.301},{"x":1757150100748,"y":119.989},{"x":1757150040517,"y":107.866},{"x":1757149980380,"y":124.012},{"x":1757149922997,"y":125.296},{"x":1757149862788,"y":112.559},{"x":1757149802594,"y":142.324},{"x":1757149742424,"y":148.728},{"x":1757149682244,"y":133.961},{"x":1757149622025,"y":121.72},{"x":1757149561488,"y":106.035},{"x":1757149501317,"y":108.369},{"x":1757149441132,"y":104.469},{"x":1757149380920,"y":96.183},{"x":1757149320745,"y":110.12},{"x":1757149263586,"y":118.936},{"x":1757149202230,"y":110.466},{"x":1757149142005,"y":101.919},{"x":1757149081819,"y":94.689},{"x":1757149021649,"y":114.548},{"x":1757148961489,"y":105.826},{"x":1757148901228,"y":112.554},{"x":1757148841045,"y":116.319},{"x":1757148780856,"y":104.062},{"x":1757148720706,"y":104.049},{"x":1757148660550,"y":92.666},{"x":1757148600586,"y":108.465},{"x":1757148542941,"y":129.676},{"x":1757148482779,"y":110.646},{"x":1757148422630,"y":110.022},{"x":1757148362427,"y":125.549},{"x":1757148302235,"y":115.869},{"x":1757148242059,"y":94.542},{"x":1757148181864,"y":102.825},{"x":1757148121683,"y":118.427},{"x":1757148061511,"y":103.896},{"x":1757148001247,"y":100.299},{"x":1757147941069,"y":115.102},{"x":1757147880880,"y":109.824},{"x":1757147820705,"y":103.486},{"x":1757147760580,"y":100.527},{"x":1757147700521,"y":112.865},{"x":1757147640212,"y":123.884},{"x":1757147582878,"y":124.982},{"x":1757147522704,"y":137.796},{"x":1757147462547,"y":96.852},{"x":1757147402356,"y":99.022},{"x":1757147342185,"y":99.047},{"x":1757147282009,"y":105.574},{"x":1757147221822,"y":101.652},{"x":1757147161651,"y":92.306},{"x":1757147101487,"y":91.119},{"x":1757147041317,"y":93.817},{"x":1757146981162,"y":95.364},{"x":1757146920945,"y":87.231},{"x":1757146860710,"y":88.057},{"x":1757146800608,"y":89.733},{"x":1757146740432,"y":105.495},{"x":1757146682944,"y":94.812},{"x":1757146622782,"y":101.74},{"x":1757146562610,"y":102.815},{"x":1757146502443,"y":89.131},{"x":1757146442253,"y":94.681},{"x":1757146382082,"y":106.305},{"x":1757146321894,"y":95.135},{"x":1757146261457,"y":102.84},{"x":1757146200769,"y":86.002},{"x":1757146140587,"y":103.515},{"x":1757146080470,"y":96.652},{"x":1757146020368,"y":99.825},{"x":1757145962985,"y":103.251},{"x":1757145902820,"y":97.73},{"x":1757145842654,"y":96.511},{"x":1757145782477,"y":105.624},{"x":1757145722294,"y":87.774},{"x":1757145662131,"y":110.377},{"x":1757145601060,"y":110.861},{"x":1757145540647,"y":102.8},{"x":1757145480382,"y":115.312},{"x":1757145422960,"y":118.324},{"x":1757145362710,"y":104.163},{"x":1757145302537,"y":119.475},{"x":1757145242367,"y":119.676},{"x":1757145182190,"y":107.876},{"x":1757145121997,"y":102.944},{"x":1757145061560,"y":109.322},{"x":1757145001392,"y":108.338},{"x":1757144941201,"y":97.582},{"x":1757144881024,"y":112.406},{"x":1757144820851,"y":116.269},{"x":1757144760688,"y":103.507},{"x":1757144700608,"y":106.404},{"x":1757144640339,"y":112.101},{"x":1757144580116,"y":116.445},{"x":1757144522893,"y":90.912},{"x":1757144462711,"y":97.087},{"x":1757144402509,"y":89.307},{"x":1757144342343,"y":89.498},{"x":1757144282170,"y":100.206},{"x":1757144221995,"y":99.047},{"x":1757144161778,"y":92.322},{"x":1757144101593,"y":105.769},{"x":1757144041421,"y":105.298},{"x":1757143981227,"y":102.667},{"x":1757143921054,"y":91.453},{"x":1757143860871,"y":90.407},{"x":1757143800777,"y":83.418},{"x":1757143740485,"y":84.703},{"x":1757143680281,"y":81.324},{"x":1757143622909,"y":84.527},{"x":1757143562746,"y":93.651},{"x":1757143502596,"y":96.049},{"x":1757143442399,"y":91.592},{"x":1757143382227,"y":96.997},{"x":1757143322050,"y":91.49},{"x":1757143261737,"y":102.207},{"x":1757143201555,"y":88.344},{"x":1757143141386,"y":93.971},{"x":1757143081193,"y":86.516},{"x":1757143021019,"y":90.074},{"x":1757142960837,"y":88.345},{"x":1757142900697,"y":91.418},{"x":1757142840489,"y":86.372},{"x":1757142780316,"y":80.526},{"x":1757142722979,"y":83.181},{"x":1757142662739,"y":85.957},{"x":1757142602558,"y":99.378},{"x":1757142542384,"y":89.474},{"x":1757142482217,"y":85.936},{"x":1757142422055,"y":84.28},{"x":1757142361168,"y":80.099},{"x":1757142300995,"y":82.245},{"x":1757142240807,"y":80.553},{"x":1757142180642,"y":90.433},{"x":1757142120490,"y":84.443},{"x":1757142063324,"y":97.681},{"x":1757142002392,"y":91.591},{"x":1757141942176,"y":113.826},{"x":1757141881960,"y":98.69},{"x":1757141821800,"y":107.061},{"x":1757141761624,"y":100.232},{"x":1757141701437,"y":85.791},{"x":1757141641273,"y":94.398},{"x":1757141581109,"y":83.394},{"x":1757141520924,"y":85.947},{"x":1757141460753,"y":85.947},{"x":1757141400687,"y":91.818},{"x":1757141340415,"y":93.418},{"x":1757141283005,"y":91.38},{"x":1757141222814,"y":90.443},{"x":1757141162633,"y":85.554},{"x":1757141102443,"y":84.194},{"x":1757141042279,"y":89.764},{"x":1757140982090,"y":92.477},{"x":1757140921899,"y":98.739},{"x":1757140861729,"y":91.744},{"x":1757140801554,"y":88.478},{"x":1757140741373,"y":94.172},{"x":1757140681201,"y":112.699},{"x":1757140621039,"y":106.351},{"x":1757140560848,"y":110.058},{"x":1757140500727,"y":106.838},{"x":1757140440493,"y":104.203},{"x":1757140380330,"y":94.25},{"x":1757140322917,"y":91.316},{"x":1757140262762,"y":87.721},{"x":1757140202609,"y":100.696},{"x":1757140142412,"y":99.875},{"x":1757140082240,"y":99.242},{"x":1757140022073,"y":104.234},{"x":1757139961824,"y":102.432},{"x":1757139901637,"y":103.456},{"x":1757139841459,"y":103.332},{"x":1757139781314,"y":97.575},{"x":1757139721120,"y":93.814},{"x":1757139660925,"y":95.231},{"x":1757139600825,"y":91.027},{"x":1757139540559,"y":93.904},{"x":1757139480388,"y":93.108},{"x":1757139420352,"y":90.281},{"x":1757139362875,"y":90.804},{"x":1757139302706,"y":86.712},{"x":1757139242531,"y":90.372},{"x":1757139182368,"y":81.469},{"x":1757139122183,"y":91.108},{"x":1757139061649,"y":90.521},{"x":1757139000813,"y":95.675},{"x":1757138940591,"y":99.501},{"x":1757138880426,"y":105.489},{"x":1757138820087,"y":94.62},{"x":1757138762868,"y":90.557},{"x":1757138702708,"y":87.672},{"x":1757138642515,"y":102.206},{"x":1757138582348,"y":110.261},{"x":1757138522183,"y":106.012},{"x":1757138462009,"y":92.484},{"x":1757138402363,"y":97.483},{"x":1757138342127,"y":82.482},{"x":1757138281915,"y":92.65},{"x":1757138221764,"y":86.987},{"x":1757138161540,"y":93.127},{"x":1757138100939,"y":85.206},{"x":1757138040764,"y":91.386},{"x":1757137980600,"y":84.222},{"x":1757137920510,"y":87.14},{"x":1757137860265,"y":78.909},{"x":1757137803013,"y":86.082},{"x":1757137742834,"y":86.068},{"x":1757137682671,"y":85.779},{"x":1757137622507,"y":89.657},{"x":1757137562331,"y":78.549},{"x":1757137502177,"y":84.974},{"x":1757137441973,"y":81.721},{"x":1757137381795,"y":92.503},{"x":1757137321617,"y":92.977},{"x":1757137261447,"y":88.55},{"x":1757137200991,"y":97.557},{"x":1757137140800,"y":86.021},{"x":1757137080636,"y":91.538},{"x":1757137020490,"y":85.688},{"x":1757136960291,"y":104.507},{"x":1757136903024,"y":100.944},{"x":1757136842837,"y":103.689},{"x":1757136782663,"y":107.818},{"x":1757136722504,"y":101.584},{"x":1757136662347,"y":93.202},{"x":1757136602156,"y":93.356},{"x":1757136541966,"y":100.632},{"x":1757136481803,"y":99.693},{"x":1757136421628,"y":98.609},{"x":1757136361486,"y":91.374},{"x":1757136300725,"y":93.78},{"x":1757136240564,"y":86.772},{"x":1757136180332,"y":92.604},{"x":1757136123008,"y":87.599},{"x":1757136062487,"y":87.608},{"x":1757136002319,"y":89.977},{"x":1757135942145,"y":88.894},{"x":1757135881958,"y":91.18},{"x":1757135821472,"y":87.972},{"x":1757135761238,"y":89.429},{"x":1757135701076,"y":94.412},{"x":1757135640889,"y":91.352},{"x":1757135580703,"y":89.127},{"x":1757135520555,"y":92.389},{"x":1757135460325,"y":89.49},{"x":1757135402953,"y":94.281},{"x":1757135342764,"y":96.581},{"x":1757135282576,"y":90.369},{"x":1757135222409,"y":93.791},{"x":1757135162232,"y":91.524},{"x":1757135102065,"y":91.463},{"x":1757135041876,"y":87.901},{"x":1757134981714,"y":96.551},{"x":1757134921545,"y":93.012},{"x":1757134861411,"y":99.58},{"x":1757134802264,"y":104.172},{"x":1757134742049,"y":102.789},{"x":1757134681848,"y":104.901},{"x":1757134621672,"y":104.513},{"x":1757134561510,"y":107.709},{"x":1757134500978,"y":92.655},{"x":1757134440791,"y":86.554},{"x":1757134380622,"y":94.854},{"x":1757134320462,"y":107.761},{"x":1757134260366,"y":100.638},{"x":1757134202980,"y":96.185},{"x":1757134142817,"y":90.512},{"x":1757134082638,"y":98.913},{"x":1757134022474,"y":113.004},{"x":1757133962315,"y":110.302},{"x":1757133902147,"y":110.193},{"x":1757133841962,"y":103.2},{"x":1757133781783,"y":103.023},{"x":1757133721608,"y":103.701},{"x":1757133661433,"y":97.305},{"x":1757133601120,"y":95.061},{"x":1757133540917,"y":92.514},{"x":1757133480751,"y":99.581},{"x":1757133420592,"y":99.592},{"x":1757133360480,"y":100.205},{"x":1757133300314,"y":92.41},{"x":1757133242944,"y":97.069},{"x":1757133182779,"y":106.934},{"x":1757133122612,"y":100.847},{"x":1757133062431,"y":104.948},{"x":1757133002260,"y":107.218},{"x":1757132942084,"y":110.418},{"x":1757132881857,"y":100.429},{"x":1757132821691,"y":94.937},{"x":1757132761499,"y":102.146},{"x":1757132700891,"y":98.576},{"x":1757132640715,"y":106.294},{"x":1757132580579,"y":103.376},{"x":1757132520348,"y":100.977},{"x":1757132462910,"y":96.351},{"x":1757132402751,"y":94.518},{"x":1757132342572,"y":88.981},{"x":1757132282411,"y":92.157},{"x":1757132222257,"y":91.106},{"x":1757132162061,"y":103.326},{"x":1757132101748,"y":97.826},{"x":1757132041582,"y":99.422},{"x":1757131981400,"y":93.248},{"x":1757131921173,"y":84.138},{"x":1757131860985,"y":88.045},{"x":1757131801931,"y":88.389},{"x":1757131741767,"y":92.861},{"x":1757131682141,"y":96.045},{"x":1757131621960,"y":93.408},{"x":1757131561482,"y":101.047},{"x":1757131501311,"y":98.916},{"x":1757131441148,"y":96.2},{"x":1757131380969,"y":96.996},{"x":1757131320776,"y":92.99},{"x":1757131263590,"y":93.803},{"x":1757131202352,"y":82.202},{"x":1757131142108,"y":94.364},{"x":1757131081909,"y":88.555},{"x":1757131021737,"y":95.401},{"x":1757130961572,"y":96.924},{"x":1757130901120,"y":96.017},{"x":1757130840921,"y":92.052},{"x":1757130780754,"y":94.919},{"x":1757130720646,"y":93.795},{"x":1757130660494,"y":93.233},{"x":1757130600288,"y":104.232},{"x":1757130542987,"y":106.402},{"x":1757130482823,"y":100.654},{"x":1757130422689,"y":108.575},{"x":1757130362480,"y":104.646},{"x":1757130302310,"y":91.457},{"x":1757130242141,"y":92.674},{"x":1757130181955,"y":88.714},{"x":1757130121797,"y":92.542},{"x":1757130061632,"y":89.977},{"x":1757130001142,"y":94.642},{"x":1757129940929,"y":100.029},{"x":1757129880767,"y":102.568},{"x":1757129820617,"y":100.995},{"x":1757129760418,"y":94.418},{"x":1757129700258,"y":89.23},{"x":1757129642876,"y":91.797},{"x":1757129582711,"y":91.551},{"x":1757129522536,"y":94.181},{"x":1757129462372,"y":95.848},{"x":1757129402211,"y":97.023},{"x":1757129342044,"y":101.287},{"x":1757129281849,"y":94.959},{"x":1757129221693,"y":90.683},{"x":1757129161537,"y":97.47},{"x":1757129100892,"y":91.551},{"x":1757129040727,"y":96.399},{"x":1757128980554,"y":99.261},{"x":1757128920424,"y":102.486},{"x":1757128862825,"y":103.825},{"x":1757128802662,"y":104.366},{"x":1757128742491,"y":105.42},{"x":1757128682326,"y":106.017},{"x":1757128622234,"y":93.163},{"x":1757128561973,"y":99.827},{"x":1757128501775,"y":100.037},{"x":1757128441603,"y":94.561},{"x":1757128381423,"y":99.111},{"x":1757128321223,"y":113.121},{"x":1757128261017,"y":107.335},{"x":1757128200993,"y":112.276},{"x":1757128140799,"y":113.11},{"x":1757128081698,"y":108.32},{"x":1757128021531,"y":92.529},{"x":1757127962681,"y":94.13},{"x":1757127902514,"y":96.078},{"x":1757127872421,"y":95.245},{"x":1757127866431,"y":95.114},{"x":1757127856792,"y":102.453},{"x":1757127540232,"y":92.032},{"x":1757127482916,"y":91.321},{"x":1757127422757,"y":102.821},{"x":1757127362595,"y":91.895},{"x":1757127302425,"y":94.563},{"x":1757127242254,"y":98.939},{"x":1757127182101,"y":96.801},{"x":1757127121908,"y":108.347},{"x":1757127061674,"y":111.994},{"x":1757127001501,"y":101.075},{"x":1757126941316,"y":104.027},{"x":1757126881087,"y":100.135},{"x":1757126820885,"y":95.949},{"x":1757126760711,"y":94.918},{"x":1757126700650,"y":101.245},{"x":1757126640479,"y":101.36},{"x":1757126580259,"y":98.266},{"x":1757126522896,"y":106.186},{"x":1757126462716,"y":117.632},{"x":1757126402578,"y":117.882},{"x":1757126342365,"y":105.01},{"x":1757126282197,"y":110.674},{"x":1757126222024,"y":114.152},{"x":1757126161551,"y":99.964},{"x":1757126101368,"y":98.286},{"x":1757126041196,"y":97.823},{"x":1757125981019,"y":92.043},{"x":1757125920833,"y":95.047},{"x":1757125860695,"y":95.551},{"x":1757125800609,"y":103.003},{"x":1757125740420,"y":93.176},{"x":1757125680283,"y":100.364},{"x":1757125622878,"y":99.932},{"x":1757125562710,"y":98.184},{"x":1757125502538,"y":96.621},{"x":1757125442369,"y":90.727},{"x":1757125382189,"y":91.053},{"x":1757125321982,"y":90.364},{"x":1757125261648,"y":91.441},{"x":1757125201474,"y":98.435},{"x":1757125141306,"y":90.68},{"x":1757125081135,"y":97.939},{"x":1757125020950,"y":102.646},{"x":1757124960783,"y":100.105},{"x":1757124900644,"y":93.117},{"x":1757124840435,"y":98.346},{"x":1757124780320,"y":102.109},{"x":1757124722905,"y":97.569},{"x":1757124662708,"y":108.762},{"x":1757124602512,"y":113.448},{"x":1757124542319,"y":109.875},{"x":1757124482153,"y":110.617},{"x":1757124421989,"y":102.011},{"x":1757124361797,"y":102.031},{"x":1757124301635,"y":94.96},{"x":1757124241464,"y":97.361},{"x":1757124181288,"y":103.22},{"x":1757124121116,"y":103.497},{"x":1757124063922,"y":99.335},{"x":1757124002244,"y":92.943},{"x":1757123941973,"y":97.95},{"x":1757123881785,"y":102.372},{"x":1757123821637,"y":92.862},{"x":1757123761455,"y":100.426},{"x":1757123701177,"y":92.993},{"x":1757123641034,"y":87.446},{"x":1757123580825,"y":99.75},{"x":1757123520658,"y":98.347},{"x":1757123460478,"y":103.975},{"x":1757123400407,"y":94.313},{"x":1757123343027,"y":92.305},{"x":1757123282762,"y":96.851},{"x":1757123222585,"y":86.918},{"x":1757123162415,"y":97.903},{"x":1757123102243,"y":96.621},{"x":1757123042052,"y":98.527},{"x":1757122981872,"y":102.275},{"x":1757122921703,"y":102.12},{"x":1757122861530,"y":96.792},{"x":1757122801167,"y":111.037},{"x":1757122740959,"y":109.408},{"x":1757122680791,"y":113.427},{"x":1757122620630,"y":112.667},{"x":1757122560525,"y":107.263},{"x":1757122500305,"y":103.444},{"x":1757122442957,"y":99.482},{"x":1757122382784,"y":103.942},{"x":1757122322612,"y":96.291},{"x":1757122262444,"y":93.247},{"x":1757122202284,"y":104.166},{"x":1757122142096,"y":106.283},{"x":1757122081922,"y":108.663},{"x":1757122021750,"y":110.217},{"x":1757121961579,"y":111.11},{"x":1757121901412,"y":86.685},{"x":1757121841244,"y":98.107},{"x":1757121781064,"y":121.573},{"x":1757121720894,"y":111.155},{"x":1757121660733,"y":106.768},{"x":1757121600614,"y":102.382},{"x":1757121540449,"y":103.8},{"x":1757121480259,"y":101.667},{"x":1757121422938,"y":98.575},{"x":1757121362708,"y":103.886},{"x":1757121302538,"y":108.25},{"x":1757121242366,"y":103.051},{"x":1757121182184,"y":97.867},{"x":1757121121970,"y":88.429},{"x":1757121061596,"y":91.282},{"x":1757121000796,"y":80.845},{"x":1757120940585,"y":89.344},{"x":1757120880403,"y":95.882},{"x":1757120820399,"y":93.006},{"x":1757120762876,"y":88.399},{"x":1757120702706,"y":87.134},{"x":1757120642532,"y":96.204},{"x":1757120582354,"y":99.899},{"x":1757120522186,"y":102.386},{"x":1757120462009,"y":96.263},{"x":1757120402263,"y":98.843},{"x":1757120342062,"y":86.526},{"x":1757120281867,"y":93.566},{"x":1757120221698,"y":93.53},{"x":1757120161523,"y":91.444},{"x":1757120101022,"y":111.225},{"x":1757120040847,"y":98.875},{"x":1757119980686,"y":98.837},{"x":1757119920520,"y":97.235},{"x":1757119860353,"y":96.29},{"x":1757119800318,"y":82.918},{"x":1757119742887,"y":87.32},{"x":1757119682725,"y":91.698},{"x":1757119622567,"y":100.016},{"x":1757119562375,"y":89.135},{"x":1757119502207,"y":88.394},{"x":1757119442029,"y":89.347},{"x":1757119381832,"y":88.887},{"x":1757119321664,"y":95.283},{"x":1757119261489,"y":99.751},{"x":1757119201196,"y":98.449},{"x":1757119141000,"y":102.055},{"x":1757119080885,"y":91.023},{"x":1757119020756,"y":94.031},{"x":1757118960731,"y":99.813},{"x":1757118900440,"y":89.305},{"x":1757118840337,"y":100.405},{"x":1757118782886,"y":103.089},{"x":1757118722719,"y":102.558},{"x":1757118662552,"y":110.078},{"x":1757118602388,"y":100.303},{"x":1757118542215,"y":91.638},{"x":1757118482037,"y":89.425},{"x":1757118421862,"y":104.523},{"x":1757118361684,"y":95.343},{"x":1757118301517,"y":96.962},{"x":1757118241339,"y":93.492},{"x":1757118181173,"y":98.432},{"x":1757118120975,"y":92.269},{"x":1757118060803,"y":92.023},{"x":1757118000706,"y":97.223},{"x":1757117940477,"y":88.94},{"x":1757117880314,"y":103.033},{"x":1757117822988,"y":106.631},{"x":1757117762792,"y":102.264},{"x":1757117702627,"y":102.046},{"x":1757117642454,"y":104.61},{"x":1757117582263,"y":91.145},{"x":1757117522104,"y":97.439},{"x":1757117461591,"y":101.455},{"x":1757117401402,"y":102.417},{"x":1757117341216,"y":103.734},{"x":1757117281029,"y":98.976},{"x":1757117220857,"y":94.043},{"x":1757117160680,"y":97.085},{"x":1757117100569,"y":92.165},{"x":1757117040368,"y":93.25},{"x":1757116982916,"y":107.217},{"x":1757116922746,"y":105.153},{"x":1757116862580,"y":97.733},{"x":1757116802292,"y":96.877},{"x":1757116742016,"y":96.161},{"x":1757116681794,"y":91.742},{"x":1757116621612,"y":101.238},{"x":1757116561440,"y":97.47},{"x":1757116501193,"y":108.374},{"x":1757116441012,"y":99.003},{"x":1757116380847,"y":108.014},{"x":1757116320687,"y":103.754},{"x":1757116260438,"y":107.305},{"x":1757116200246,"y":100.52},{"x":1757116142946,"y":99.228},{"x":1757116082768,"y":100.927},{"x":1757116022587,"y":112.162},{"x":1757115962413,"y":103.114},{"x":1757115902253,"y":99.088},{"x":1757115842086,"y":94.163},{"x":1757115781899,"y":101.053},{"x":1757115721725,"y":103.675},{"x":1757115661534,"y":98.375},{"x":1757115601142,"y":92.347},{"x":1757115540929,"y":96.026},{"x":1757115480765,"y":114.91},{"x":1757115420614,"y":112.444},{"x":1757115360445,"y":102.335},{"x":1757115300328,"y":105.803},{"x":1757115242916,"y":102.331},{"x":1757115182744,"y":94.088},{"x":1757115122567,"y":100.753},{"x":1757115062387,"y":96.444},{"x":1757115002216,"y":96.067},{"x":1757114942044,"y":94.531},{"x":1757114881839,"y":89.433},{"x":1757114821667,"y":99.842},{"x":1757114761501,"y":92.393},{"x":1757114701322,"y":89.685},{"x":1757114641154,"y":100.065},{"x":1757114580968,"y":96.706},{"x":1757114520789,"y":103.894},{"x":1757114460632,"y":93.401},{"x":1757114400545,"y":90.238},{"x":1757114340346,"y":92.311},{"x":1757114280191,"y":102.268},{"x":1757114222874,"y":98.952},{"x":1757114162720,"y":99.742},{"x":1757114102511,"y":98.492},{"x":1757114042340,"y":112.086},{"x":1757113982167,"y":102.387},{"x":1757113921977,"y":107.946},{"x":1757113861462,"y":92.912},{"x":1757113800750,"y":99.485},{"x":1757113740577,"y":100.501},{"x":1757113680481,"y":99.626},{"x":1757113620270,"y":98.654},{"x":1757113562978,"y":102.305},{"x":1757113502799,"y":99.72},{"x":1757113442604,"y":98.444},{"x":1757113382421,"y":97.579},{"x":1757113322240,"y":98.333},{"x":1757113262077,"y":101.811},{"x":1757113202374,"y":97.936},{"x":1757113142085,"y":108.951},{"x":1757113081867,"y":86.093},{"x":1757113021687,"y":93.485},{"x":1757112961501,"y":93.812},{"x":1757112901149,"y":96.547},{"x":1757112840963,"y":103.373},{"x":1757112780796,"y":96.453},{"x":1757112720614,"y":99.608},{"x":1757112660479,"y":107.687},{"x":1757112600317,"y":101.576},{"x":1757112542972,"y":110.349},{"x":1757112482799,"y":101.982},{"x":1757112422640,"y":98.373},{"x":1757112362469,"y":101.08},{"x":1757112302280,"y":99.525},{"x":1757112242104,"y":105.359},{"x":1757112181939,"y":121.179},{"x":1757112121770,"y":110.541},{"x":1757112061613,"y":117.541},{"x":1757112001462,"y":120.745},{"x":1757111941294,"y":132.505},{"x":1757111881121,"y":114.096},{"x":1757111820923,"y":103.879},{"x":1757111760808,"y":116.851},{"x":1757111700656,"y":109.793},{"x":1757111640579,"y":103.998},{"x":1757111580146,"y":101.436},{"x":1757111522864,"y":99.854},{"x":1757111462687,"y":97.241},{"x":1757111402491,"y":102.8},{"x":1757111342306,"y":97.589},{"x":1757111282133,"y":87.761},{"x":1757111221963,"y":99.939},{"x":1757111161787,"y":101.342},{"x":1757111101491,"y":112.454},{"x":1757111041322,"y":116.914},{"x":1757110981164,"y":100.505},{"x":1757110920986,"y":121.057},{"x":1757110860811,"y":105.321},{"x":1757110800786,"y":107.902},{"x":1757110740483,"y":113.524},{"x":1757110680286,"y":110.309},{"x":1757110622979,"y":102.225},{"x":1757110562814,"y":105.247},{"x":1757110502634,"y":101.527},{"x":1757110442473,"y":102.563},{"x":1757110382310,"y":129.406},{"x":1757110322103,"y":125.367},{"x":1757110261853,"y":127.875},{"x":1757110201659,"y":130.13},{"x":1757110141493,"y":122.659},{"x":1757110081328,"y":114.356},{"x":1757110021164,"y":105.544},{"x":1757109960976,"y":102.82},{"x":1757109900803,"y":110.665},{"x":1757109840649,"y":117.112},{"x":1757109780509,"y":117.5},{"x":1757109720323,"y":111.347},{"x":1757109662985,"y":108.635},{"x":1757109602261,"y":100.335},{"x":1757109542044,"y":107.731},{"x":1757109481823,"y":109.526},{"x":1757109421671,"y":113.532},{"x":1757109361478,"y":125.364},{"x":1757109301169,"y":110.127},{"x":1757109240987,"y":116.18},{"x":1757109180820,"y":110.515},{"x":1757109120666,"y":125.912},{"x":1757109060488,"y":106.031},{"x":1757109000479,"y":116.697},{"x":1757108942922,"y":110.311},{"x":1757108882749,"y":116.933},{"x":1757108822579,"y":114.085},{"x":1757108762390,"y":112.846},{"x":1757108702214,"y":121.17},{"x":1757108642031,"y":113.451},{"x":1757108581858,"y":127.099},{"x":1757108521695,"y":115.008},{"x":1757108461502,"y":116.41},{"x":1757108401206,"y":116.984},{"x":1757108341027,"y":112.357},{"x":1757108280861,"y":117.817},{"x":1757108220705,"y":132.663},{"x":1757108160571,"y":124.32},{"x":1757108100428,"y":121.24},{"x":1757108043051,"y":135.91},{"x":1757107982860,"y":134.997},{"x":1757107922720,"y":133.609},{"x":1757107862520,"y":138.861},{"x":1757107802353,"y":129.321},{"x":1757107742181,"y":147.462},{"x":1757107682015,"y":141.217},{"x":1757107621843,"y":145.987},{"x":1757107561669,"y":142.01},{"x":1757107501495,"y":147.728},{"x":1757107441335,"y":160.584},{"x":1757107381145,"y":159.624},{"x":1757107320972,"y":151.519},{"x":1757107260772,"y":160.386},{"x":1757107200833,"y":162.035},{"x":1757107140392,"y":138.591},{"x":1757107082965,"y":141.889},{"x":1757107022797,"y":160.068},{"x":1757106962618,"y":154.231},{"x":1757106902451,"y":161.53},{"x":1757106842296,"y":131.894},{"x":1757106782115,"y":136.91},{"x":1757106721912,"y":140.932},{"x":1757106661506,"y":137.6},{"x":1757106601256,"y":173.494},{"x":1757106541077,"y":169.03},{"x":1757106480875,"y":175.982},{"x":1757106420710,"y":164.232},{"x":1757106360553,"y":170.818},{"x":1757106300403,"y":173.787},{"x":1757106240103,"y":180.563},{"x":1757106182878,"y":185.459},{"x":1757106122718,"y":198.952},{"x":1757106062547,"y":227.301},{"x":1757106002308,"y":224.422},{"x":1757105942102,"y":216.529},{"x":1757105881886,"y":234.845},{"x":1757105821722,"y":229.739},{"x":1757105761546,"y":222.429},{"x":1757105701121,"y":231.323},{"x":1757105640948,"y":230.077},{"x":1757105580772,"y":221.508},{"x":1757105520622,"y":217.182},{"x":1757105460531,"y":218.469},{"x":1757105400338,"y":212.786},{"x":1757105343019,"y":194.778},{"x":1757105282858,"y":202.415},{"x":1757105222696,"y":231.329},{"x":1757105162420,"y":209.613},{"x":1757105102259,"y":207.357},{"x":1757105042084,"y":219.158},{"x":1757104981898,"y":216.664},{"x":1757104921721,"y":220.695},{"x":1757104861527,"y":218.081},{"x":1757104801190,"y":213.97},{"x":1757104740999,"y":213.445},{"x":1757104680806,"y":221.741},{"x":1757104620628,"y":223.896},{"x":1757104560528,"y":220.874},{"x":1757104500336,"y":223.647},{"x":1757104442905,"y":207.986},{"x":1757104382717,"y":237.867},{"x":1757104322545,"y":255.065},{"x":1757104262376,"y":255.881},{"x":1757104202198,"y":260.094},{"x":1757104142018,"y":231.28},{"x":1757104081848,"y":256.782},{"x":1757104021676,"y":228.131},{"x":1757103961510,"y":227.346},{"x":1757103901218,"y":253.949},{"x":1757103841034,"y":259.128},{"x":1757103780867,"y":242.259},{"x":1757103720702,"y":253.939},{"x":1757103660584,"y":259.734},{"x":1757103600426,"y":234.596},{"x":1757103540204,"y":221.84},{"x":1757103482681,"y":200.974},{"x":1757103422506,"y":229.233},{"x":1757103362288,"y":192.164},{"x":1757103302107,"y":215.474},{"x":1757103241919,"y":175.613},{"x":1757103181747,"y":211.524},{"x":1757103121563,"y":214.185},{"x":1757103061337,"y":230.118},{"x":1757103000888,"y":231.651},{"x":1757102940570,"y":219.085},{"x":1757102880385,"y":244.415},{"x":1757102820300,"y":232.728},{"x":1757102762880,"y":256.772},{"x":1757102702699,"y":256.201},{"x":1757102642539,"y":233.95},{"x":1757102582355,"y":261.013},{"x":1757102522150,"y":238.852},{"x":1757102461979,"y":187.026},{"x":1757102402343,"y":180.28},{"x":1757102342082,"y":220.17},{"x":1757102281848,"y":222.64},{"x":1757102221681,"y":252.373},{"x":1757102161519,"y":237.954},{"x":1757102100983,"y":176.011},{"x":1757102040828,"y":210.536},{"x":1757101980649,"y":176.444},{"x":1757101920560,"y":199.307},{"x":1757101860331,"y":197.358},{"x":1757101802994,"y":226.27},{"x":1757101742807,"y":227.268},{"x":1757101682655,"y":243.243},{"x":1757101622465,"y":227.115},{"x":1757101562296,"y":242.911},{"x":1757101502135,"y":255.145},{"x":1757101441951,"y":248.924},{"x":1757101381777,"y":246.422},{"x":1757101321616,"y":265.06},{"x":1757101261449,"y":200.896},{"x":1757101201159,"y":215.171},{"x":1757101140970,"y":253.114},{"x":1757101080809,"y":259.829},{"x":1757101020657,"y":254.052},{"x":1757100960510,"y":211.715},{"x":1757100900314,"y":259.315},{"x":1757100842956,"y":239.637},{"x":1757100782790,"y":265.803},{"x":1757100722630,"y":256.09},{"x":1757100662453,"y":254.915},{"x":1757100602288,"y":243.745},{"x":1757100542125,"y":247.511},{"x":1757100481940,"y":259.794},{"x":1757100421775,"y":235.11},{"x":1757100361590,"y":217.002},{"x":1757100301426,"y":216.061},{"x":1757100241251,"y":191.105},{"x":1757100181072,"y":240.22},{"x":1757100120898,"y":253.328},{"x":1757100060753,"y":236.548},{"x":1757100000701,"y":240.38},{"x":1757099940411,"y":239.852},{"x":1757099880176,"y":258.134},{"x":1757099822846,"y":242.947},{"x":1757099762693,"y":221.58},{"x":1757099702474,"y":217.277},{"x":1757099642307,"y":226.623},{"x":1757099582137,"y":226.319},{"x":1757099521913,"y":245.9},{"x":1757099461487,"y":234.593},{"x":1757099400786,"y":240.797},{"x":1757099340606,"y":256.643},{"x":1757099282739,"y":258.841},{"x":1757099222571,"y":252.382},{"x":1757099162377,"y":229.775},{"x":1757099102204,"y":241.812},{"x":1757099042033,"y":232.55},{"x":1757098981866,"y":226.487},{"x":1757098921676,"y":213.93},{"x":1757098861504,"y":244.425},{"x":1757098802383,"y":245.366},{"x":1757098742145,"y":261.033},{"x":1757098681951,"y":252.919},{"x":1757098621784,"y":232.874},{"x":1757098561600,"y":224.733},{"x":1757098501058,"y":231.702},{"x":1757098440881,"y":241.471},{"x":1757098380705,"y":227.75},{"x":1757098320567,"y":218.776},{"x":1757098260360,"y":223.703},{"x":1757098200335,"y":215.86},{"x":1757098142868,"y":251.717},{"x":1757098082740,"y":238.911},{"x":1757098022520,"y":237.178},{"x":1757097962356,"y":225.269},{"x":1757097902192,"y":243.003},{"x":1757097842017,"y":238.075},{"x":1757097781823,"y":245.883},{"x":1757097721679,"y":261.587},{"x":1757097661476,"y":245.544},{"x":1757097600991,"y":248.518},{"x":1757097540743,"y":263.536},{"x":1757097480596,"y":249.261},{"x":1757097420455,"y":267.186},{"x":1757097360325,"y":276.809},{"x":1757097302942,"y":254.391},{"x":1757097242748,"y":259.347},{"x":1757097182570,"y":244.625},{"x":1757097122400,"y":228.456},{"x":1757097062245,"y":249.948},{"x":1757097002069,"y":260.838},{"x":1757096941863,"y":255.279},{"x":1757096881702,"y":263.831},{"x":1757096821559,"y":251.676},{"x":1757096761344,"y":233.2},{"x":1757096701167,"y":244.962},{"x":1757096640980,"y":240.654},{"x":1757096580819,"y":248.199},{"x":1757096520660,"y":254.244},{"x":1757096460575,"y":258.403},{"x":1757096400336,"y":255.963},{"x":1757096340093,"y":277.355},{"x":1757096282627,"y":228.494},{"x":1757096222540,"y":243.981},{"x":1757096162281,"y":241.177},{"x":1757096102104,"y":230.204},{"x":1757096041929,"y":294.295},{"x":1757095981755,"y":271.771},{"x":1757095921573,"y":261.239},{"x":1757095861370,"y":271.307},{"x":1757095800869,"y":242.518},{"x":1757095740673,"y":243.585},{"x":1757095680644,"y":243.569},{"x":1757095622927,"y":222.345},{"x":1757095562775,"y":275.407},{"x":1757095502601,"y":261.781},{"x":1757095442435,"y":249.153},{"x":1757095382271,"y":261.277},{"x":1757095322107,"y":252.897},{"x":1757095261910,"y":260.83},{"x":1757095200875,"y":267.855},{"x":1757095140546,"y":263.395},{"x":1757095080333,"y":286.484},{"x":1757095022990,"y":257.753},{"x":1757094962796,"y":259.565},{"x":1757094902637,"y":277.019},{"x":1757094842481,"y":277.866},{"x":1757094782316,"y":267.001},{"x":1757094722139,"y":275.4},{"x":1757094661957,"y":261.049},{"x":1757094601775,"y":243.41},{"x":1757094541577,"y":257.533},{"x":1757094481401,"y":223.516},{"x":1757094421230,"y":206.994},{"x":1757094361035,"y":193.743},{"x":1757094300923,"y":194.584},{"x":1757094240680,"y":194.99},{"x":1757094180557,"y":198.705},{"x":1757094120267,"y":206.596},{"x":1757094062980,"y":212.577},{"x":1757094002813,"y":220.186},{"x":1757093942638,"y":225.717},{"x":1757093882462,"y":224.267},{"x":1757093822290,"y":230.387},{"x":1757093762111,"y":241.431},{"x":1757093701914,"y":225.902},{"x":1757093641742,"y":229.274},{"x":1757093581543,"y":230.32},{"x":1757093521374,"y":252.913},{"x":1757093461215,"y":254.403},{"x":1757093401080,"y":235.083},{"x":1757093340834,"y":223.547},{"x":1757093280704,"y":246.212},{"x":1757093220530,"y":199.984},{"x":1757093160383,"y":198.645},{"x":1757093100185,"y":197.089},{"x":1757093042872,"y":200.798},{"x":1757092982693,"y":192.96},{"x":1757092922511,"y":205.038},{"x":1757092862365,"y":203.29},{"x":1757092802163,"y":211.117},{"x":1757092741994,"y":224.038},{"x":1757092681728,"y":210.158},{"x":1757092621392,"y":226.997},{"x":1757092561232,"y":223.758},{"x":1757092501057,"y":228.299},{"x":1757092440854,"y":242.105},{"x":1757092380676,"y":256.665},{"x":1757092320527,"y":255.221},{"x":1757092260343,"y":261.51},{"x":1757092202947,"y":250.113},{"x":1757092142772,"y":226.595},{"x":1757092082607,"y":231.987},{"x":1757092022423,"y":210.757},{"x":1757091962271,"y":257.251},{"x":1757091902085,"y":249.308},{"x":1757091841896,"y":204.692},{"x":1757091781736,"y":217.592},{"x":1757091721552,"y":245.56},{"x":1757091661400,"y":244.534},{"x":1757091602266,"y":248.603},{"x":1757091542074,"y":225.247},{"x":1757091481871,"y":252.722},{"x":1757091421694,"y":221.356},{"x":1757091361528,"y":222.868},{"x":1757091301108,"y":230.85},{"x":1757091240920,"y":247.125},{"x":1757091180758,"y":230.736},{"x":1757091120615,"y":273.138},{"x":1757091060502,"y":262.512},{"x":1757091000374,"y":201.92},{"x":1757090942895,"y":231.95},{"x":1757090882736,"y":220.36},{"x":1757090822537,"y":210.877},{"x":1757090762372,"y":234.229},{"x":1757090702203,"y":226.739},{"x":1757090642024,"y":239.644},{"x":1757090581853,"y":237.459},{"x":1757090521684,"y":238.267},{"x":1757090461516,"y":240.951},{"x":1757090401159,"y":221.583},{"x":1757090340958,"y":242.356},{"x":1757090280782,"y":256.415},{"x":1757090220643,"y":255.847},{"x":1757090160536,"y":212.994},{"x":1757090100395,"y":212.977},{"x":1757090042890,"y":216.812},{"x":1757089982725,"y":211.257},{"x":1757089922547,"y":253.953},{"x":1757089862370,"y":269.269},{"x":1757089802202,"y":237.805},{"x":1757089742021,"y":239.678},{"x":1757089681848,"y":206.465},{"x":1757089621678,"y":208.404},{"x":1757089561510,"y":232.924},{"x":1757089501360,"y":253.467},{"x":1757089441184,"y":242.67},{"x":1757089380991,"y":224.867},{"x":1757089320817,"y":225.378},{"x":1757089260652,"y":215.977},{"x":1757089200541,"y":223.389},{"x":1757089140306,"y":232.279},{"x":1757089082992,"y":198.243},{"x":1757089022813,"y":231.479},{"x":1757088962624,"y":222.782},{"x":1757088902448,"y":223.108},{"x":1757088842270,"y":228.41},{"x":1757088782089,"y":211.818},{"x":1757088721845,"y":231.288},{"x":1757088661521,"y":250.005},{"x":1757088600891,"y":238.487},{"x":1757088540630,"y":244.115},{"x":1757088480508,"y":215.457},{"x":1757088420256,"y":212.965},{"x":1757088362877,"y":238.389},{"x":1757088302700,"y":223.508},{"x":1757088242535,"y":232.908},{"x":1757088182351,"y":213.766},{"x":1757088122196,"y":225.835},{"x":1757088062013,"y":233.745},{"x":1757088002273,"y":218.658},{"x":1757087942025,"y":231.857},{"x":1757087881832,"y":203.222},{"x":1757087821646,"y":214.751},{"x":1757087761481,"y":256.896},{"x":1757087701258,"y":255.89},{"x":1757087641080,"y":259.38},{"x":1757087580903,"y":237.371},{"x":1757087520767,"y":197.885},{"x":1757087460560,"y":199.978},{"x":1757087400499,"y":221.098},{"x":1757087340334,"y":209.438},{"x":1757087282896,"y":193.713},{"x":1757087222727,"y":209.579},{"x":1757087162542,"y":189.434},{"x":1757087102371,"y":209.635},{"x":1757087042203,"y":193.403},{"x":1757086982021,"y":201.073},{"x":1757086921846,"y":209.255},{"x":1757086861675,"y":204.797},{"x":1757086801493,"y":212.15},{"x":1757086741317,"y":201.099},{"x":1757086681120,"y":201.356},{"x":1757086620928,"y":171.867},{"x":1757086560765,"y":178.665},{"x":1757086500671,"y":183.508},{"x":1757086440490,"y":191.106},{"x":1757086380289,"y":188.63},{"x":1757086322889,"y":171.702},{"x":1757086262702,"y":190.695},{"x":1757086202476,"y":182.662},{"x":1757086142290,"y":182.173},{"x":1757086082102,"y":188.163},{"x":1757086021914,"y":221.274},{"x":1757085961751,"y":212.18},{"x":1757085901562,"y":211.712},{"x":1757085841373,"y":219.902},{"x":1757085781206,"y":206.523},{"x":1757085721007,"y":195.094},{"x":1757085660816,"y":192.16},{"x":1757085600710,"y":202.537},{"x":1757085540528,"y":203.183},{"x":1757085480388,"y":205.505},{"x":1757085422898,"y":225.929},{"x":1757085362727,"y":209.205},{"x":1757085302531,"y":213.538},{"x":1757085242373,"y":213.448},{"x":1757085182193,"y":210.435},{"x":1757085122011,"y":227.499},{"x":1757085061445,"y":234.682},{"x":1757085001085,"y":242.83},{"x":1757084940888,"y":234.708},{"x":1757084880746,"y":253.899},{"x":1757084820566,"y":225.933},{"x":1757084760431,"y":191.086},{"x":1757084700249,"y":205.534},{"x":1757084642874,"y":202.37},{"x":1757084582720,"y":250.233},{"x":1757084522535,"y":208.601},{"x":1757084462363,"y":229.423},{"x":1757084402324,"y":222.42},{"x":1757084342054,"y":204.856},{"x":1757084281857,"y":198.212},{"x":1757084221686,"y":193.815},{"x":1757084161512,"y":214.566},{"x":1757084101218,"y":222.129},{"x":1757084041010,"y":205.175},{"x":1757083980836,"y":227.38},{"x":1757083920708,"y":205.302},{"x":1757083860551,"y":179.124},{"x":1757083800422,"y":187.666},{"x":1757083742934,"y":193.75},{"x":1757083682745,"y":189.611},{"x":1757083622569,"y":170.425},{"x":1757083562392,"y":187.071},{"x":1757083502200,"y":196.204},{"x":1757083441992,"y":156.724},{"x":1757083381820,"y":187.439},{"x":1757083321651,"y":196.006},{"x":1757083261467,"y":214.889},{"x":1757083201202,"y":222.018},{"x":1757083141009,"y":184.952},{"x":1757083080837,"y":223.954},{"x":1757083020673,"y":225.744},{"x":1757082960523,"y":234.553},{"x":1757082900504,"y":192.721},{"x":1757082843036,"y":240.791},{"x":1757082782853,"y":196.12},{"x":1757082722688,"y":197.925},{"x":1757082662532,"y":239.675},{"x":1757082602342,"y":255.168},{"x":1757082542139,"y":201.107},{"x":1757082481981,"y":192.545},{"x":1757082421791,"y":192.918},{"x":1757082361613,"y":202.545},{"x":1757082301181,"y":195.481},{"x":1757082241009,"y":185.524},{"x":1757082180841,"y":188.229},{"x":1757082120686,"y":173.41},{"x":1757082060548,"y":181.785},{"x":1757082000372,"y":160.395},{"x":1757081940060,"y":156.509},{"x":1757081882571,"y":172.788},{"x":1757081822398,"y":163.924},{"x":1757081762229,"y":143.662},{"x":1757081702050,"y":150.045},{"x":1757081641865,"y":160.023},{"x":1757081581695,"y":152.577},{"x":1757081521503,"y":148.162},{"x":1757081461271,"y":192.586},{"x":1757081400826,"y":172.226},{"x":1757081340636,"y":191.065},{"x":1757081280514,"y":177.348},{"x":1757081222928,"y":181.984},{"x":1757081162755,"y":193.017},{"x":1757081102577,"y":186.687},{"x":1757081042406,"y":184.372},{"x":1757080982230,"y":213.47},{"x":1757080922046,"y":175.813},{"x":1757080864886,"y":200.196},{"x":1757080802296,"y":214.496},{"x":1757080742085,"y":224.933},{"x":1757080681856,"y":228.654},{"x":1757080621684,"y":222.268},{"x":1757080561504,"y":192.663},{"x":1757080501184,"y":206.259},{"x":1757080440984,"y":199.806},{"x":1757080380837,"y":204.988},{"x":1757080320680,"y":221.158},{"x":1757080260501,"y":198.907},{"x":1757080200076,"y":198.484},{"x":1757080142850,"y":217.606},{"x":1757080082664,"y":177.115},{"x":1757080022492,"y":159.894},{"x":1757079962309,"y":188.842},{"x":1757079902136,"y":176.078},{"x":1757079841943,"y":181.533},{"x":1757079781782,"y":159.332},{"x":1757079721618,"y":159.776},{"x":1757079661449,"y":173.855},{"x":1757079601012,"y":183.018},{"x":1757079540818,"y":180.953},{"x":1757079480645,"y":153.619},{"x":1757079420517,"y":172.995},{"x":1757079360352,"y":160.716},{"x":1757079303031,"y":144.951},{"x":1757079242844,"y":185.849},{"x":1757079182694,"y":204.532},{"x":1757079122510,"y":209.182},{"x":1757079062344,"y":155.865},{"x":1757079002192,"y":147.254},{"x":1757078942002,"y":177.197},{"x":1757078881838,"y":189.46},{"x":1757078821669,"y":192.052},{"x":1757078761479,"y":192.931},{"x":1757078701227,"y":174.803},{"x":1757078641045,"y":165.461},{"x":1757078580862,"y":165.888},{"x":1757078520694,"y":179.258},{"x":1757078460572,"y":150.313},{"x":1757078400394,"y":147.679},{"x":1757078340303,"y":177.345},{"x":1757078282923,"y":160.235},{"x":1757078222753,"y":185.733},{"x":1757078162564,"y":141.918},{"x":1757078102389,"y":178.949},{"x":1757078042205,"y":169.359},{"x":1757077982032,"y":208.21},{"x":1757077921845,"y":214.68},{"x":1757077861587,"y":192.639},{"x":1757077801325,"y":171.944},{"x":1757077741157,"y":191.183},{"x":1757077680986,"y":174.376},{"x":1757077620818,"y":169.571},{"x":1757077560641,"y":172.698},{"x":1757077500600,"y":191.247},{"x":1757077440314,"y":188.305},{"x":1757077383041,"y":208.754},{"x":1757077322851,"y":186.817},{"x":1757077262694,"y":193.585},{"x":1757077202338,"y":196.819},{"x":1757077142095,"y":159.488},{"x":1757077081892,"y":141.603},{"x":1757077021722,"y":190.277},{"x":1757076961549,"y":155.096},{"x":1757076901372,"y":163.673},{"x":1757076841175,"y":127.341},{"x":1757076780989,"y":129.318},{"x":1757076720812,"y":170.243},{"x":1757076660645,"y":172.7},{"x":1757076600576,"y":184.802},{"x":1757076543030,"y":188.072},{"x":1757076482843,"y":189.689},{"x":1757076422669,"y":195.282},{"x":1757076362492,"y":175.09},{"x":1757076302322,"y":142.295},{"x":1757076242150,"y":141.513},{"x":1757076181962,"y":142.007},{"x":1757076121798,"y":148.057},{"x":1757076061630,"y":134.246},{"x":1757076001435,"y":148.439},{"x":1757075941238,"y":178.605},{"x":1757075880977,"y":145.224},{"x":1757075820795,"y":151.453},{"x":1757075760709,"y":157.464},{"x":1757075700466,"y":160.235},{"x":1757075640303,"y":142.277},{"x":1757075582926,"y":163.525},{"x":1757075522732,"y":177.049},{"x":1757075462563,"y":138.276},{"x":1757075402399,"y":155.123},{"x":1757075342183,"y":171.3},{"x":1757075282029,"y":169.01},{"x":1757075221820,"y":166.018},{"x":1757075161614,"y":146.448},{"x":1757075101370,"y":131.596},{"x":1757075041183,"y":149.544},{"x":1757074980993,"y":164.74},{"x":1757074920851,"y":143.549},{"x":1757074860665,"y":187.245},{"x":1757074800537,"y":156.527},{"x":1757074740312,"y":182.698},{"x":1757074683001,"y":191.886},{"x":1757074622821,"y":161.222},{"x":1757074562613,"y":168.692},{"x":1757074502441,"y":173.505},{"x":1757074442230,"y":166.735},{"x":1757074382066,"y":171.958},{"x":1757074321875,"y":180.889},{"x":1757074261495,"y":168.538},{"x":1757074200889,"y":160.491},{"x":1757074140670,"y":149.229},{"x":1757074080230,"y":147.841},{"x":1757074022902,"y":151.213},{"x":1757073962718,"y":126.713},{"x":1757073902535,"y":119.777},{"x":1757073842349,"y":104.224},{"x":1757073782173,"y":107.936},{"x":1757073721982,"y":132.996},{"x":1757073661832,"y":96.309},{"x":1757073602323,"y":138.057},{"x":1757073542099,"y":130.716},{"x":1757073481845,"y":124.183},{"x":1757073421684,"y":122.816},{"x":1757073361486,"y":85.397},{"x":1757073301308,"y":114.058},{"x":1757073241096,"y":89.084},{"x":1757073180915,"y":80.21},{"x":1757073120750,"y":117.283},{"x":1757073060589,"y":104.18},{"x":1757073000471,"y":99.322},{"x":1757072940308,"y":128.265},{"x":1757072882901,"y":120.828},{"x":1757072822709,"y":109.448},{"x":1757072762551,"y":128.101},{"x":1757072702362,"y":129.854},{"x":1757072642189,"y":138.493},{"x":1757072582016,"y":143.064},{"x":1757072521846,"y":131.183},{"x":1757072461673,"y":124.429},{"x":1757072401499,"y":125.05},{"x":1757072341327,"y":140.997},{"x":1757072281152,"y":113.008},{"x":1757072220967,"y":132.213},{"x":1757072160796,"y":146.751},{"x":1757072100700,"y":103.295},{"x":1757072040468,"y":131.232},{"x":1757071980320,"y":103.607},{"x":1757071923011,"y":111.531},{"x":1757071862805,"y":137.603},{"x":1757071802644,"y":91.022},{"x":1757071742466,"y":113.33},{"x":1757071682294,"y":135.156},{"x":1757071622119,"y":97.201},{"x":1757071561936,"y":99.281},{"x":1757071501763,"y":104.108},{"x":1757071441577,"y":98.526},{"x":1757071381400,"y":113.964},{"x":1757071321214,"y":99.54},{"x":1757071261033,"y":103.304},{"x":1757071200932,"y":126.959},{"x":1757071140671,"y":130.375},{"x":1757071080539,"y":111.182},{"x":1757071020502,"y":110.447},{"x":1757070962935,"y":133.204},{"x":1757070902783,"y":151.565},{"x":1757070842579,"y":141.796},{"x":1757070782415,"y":125.39},{"x":1757070722227,"y":130.954},{"x":1757070661617,"y":137.574},{"x":1757070600831,"y":134.765},{"x":1757070540603,"y":111.577},{"x":1757070482939,"y":123.5},{"x":1757070422770,"y":116.652},{"x":1757070362596,"y":139.5},{"x":1757070302425,"y":119.418},{"x":1757070242261,"y":116.815},{"x":1757070182059,"y":111.495},{"x":1757070121887,"y":107.075},{"x":1757070061689,"y":117.726},{"x":1757070000869,"y":122.764},{"x":1757069940590,"y":117.84},{"x":1757069880341,"y":116.517},{"x":1757069820066,"y":127.296},{"x":1757069762874,"y":105.768},{"x":1757069702689,"y":124.562},{"x":1757069642519,"y":111.22},{"x":1757069582340,"y":98.091},{"x":1757069522168,"y":95.961},{"x":1757069461982,"y":110.665},{"x":1757069401801,"y":106.88},{"x":1757069341624,"y":103.542},{"x":1757069281455,"y":120.175},{"x":1757069221273,"y":152.424},{"x":1757069161071,"y":103.63},{"x":1757069100965,"y":100.736},{"x":1757069040692,"y":118.432},{"x":1757068980544,"y":92.077},{"x":1757068920336,"y":77.74},{"x":1757068860142,"y":96.843},{"x":1757068802880,"y":115.364},{"x":1757068742716,"y":121.943},{"x":1757068682446,"y":114.724},{"x":1757068622281,"y":103.644},{"x":1757068562125,"y":108.352},{"x":1757068501948,"y":99.023},{"x":1757068441736,"y":118.284},{"x":1757068381569,"y":107.506},{"x":1757068321394,"y":95.958},{"x":1757068261227,"y":130.574},{"x":1757068201124,"y":97.157},{"x":1757068140850,"y":104.095},{"x":1757068080707,"y":95.186},{"x":1757068020492,"y":105.105},{"x":1757067960374,"y":91.895},{"x":1757067902972,"y":104.894},{"x":1757067842799,"y":85.812},{"x":1757067782614,"y":105.262},{"x":1757067722445,"y":121.484},{"x":1757067662276,"y":109.375},{"x":1757067602103,"y":93.893},{"x":1757067559982,"y":80.784},{"x":1757067480452,"y":101.234},{"x":1757067420247,"y":92.851},{"x":1757067362899,"y":79.079},{"x":1757067302736,"y":107.522},{"x":1757067242542,"y":77.765},{"x":1757067182350,"y":76.597},{"x":1757067122196,"y":69.089},{"x":1757067061913,"y":114.482},{"x":1757067001736,"y":126.697},{"x":1757066941560,"y":92.978},{"x":1757066881378,"y":112.466},{"x":1757066821198,"y":121.024},{"x":1757066761015,"y":90.822},{"x":1757066700836,"y":89.632},{"x":1757066640686,"y":130.322},{"x":1757066580540,"y":96.224},{"x":1757066520417,"y":83.54},{"x":1757066463076,"y":112.542},{"x":1757066402472,"y":115.158},{"x":1757066342274,"y":95.989},{"x":1757066281999,"y":101.546},{"x":1757066221823,"y":107.081},{"x":1757066161627,"y":91.984},{"x":1757066101215,"y":122.906},{"x":1757066040986,"y":98.828},{"x":1757065980807,"y":80.879},{"x":1757065920680,"y":100.349},{"x":1757065860564,"y":113.625},{"x":1757065800240,"y":100.758},{"x":1757065742987,"y":112.857},{"x":1757065682785,"y":77.523},{"x":1757065622614,"y":91.66},{"x":1757065562452,"y":84.202},{"x":1757065502284,"y":100.933},{"x":1757065442103,"y":103.152},{"x":1757065381907,"y":108.62},{"x":1757065321734,"y":90.095},{"x":1757065261563,"y":87.162},{"x":1757065201229,"y":102.359},{"x":1757065141006,"y":112.719},{"x":1757065080831,"y":101.977},{"x":1757065020657,"y":109.763},{"x":1757064960676,"y":108.776},{"x":1757064900362,"y":98.497},{"x":1757064840072,"y":83.585},{"x":1757064782853,"y":86.364},{"x":1757064722689,"y":97.662},{"x":1757064662538,"y":103.866},{"x":1757064602363,"y":97.237},{"x":1757064542198,"y":72.929},{"x":1757064482020,"y":82.537},{"x":1757064421849,"y":93.588},{"x":1757064361650,"y":99.982},{"x":1757064301494,"y":93.66},{"x":1757064241308,"y":94.612},{"x":1757064181132,"y":95.54},{"x":1757064120904,"y":100.709},{"x":1757064060729,"y":108.857},{"x":1757064000617,"y":127.485},{"x":1757063940437,"y":133.743},{"x":1757063880261,"y":111.514},{"x":1757063822903,"y":107.834},{"x":1757063762718,"y":106.65},{"x":1757063702550,"y":93.675},{"x":1757063642328,"y":102.937},{"x":1757063582155,"y":108.54},{"x":1757063521973,"y":103.349},{"x":1757063461752,"y":101.594},{"x":1757063400886,"y":83.909},{"x":1757063340670,"y":88.844},{"x":1757063280368,"y":99.198},{"x":1757063222997,"y":90.852},{"x":1757063162834,"y":87.926},{"x":1757063102635,"y":80.562},{"x":1757063042468,"y":93.642},{"x":1757062982299,"y":106.144},{"x":1757062922133,"y":100.206},{"x":1757062861975,"y":93.803},{"x":1757062802479,"y":102.647},{"x":1757062742256,"y":99.058},{"x":1757062681960,"y":97.402},{"x":1757062621785,"y":103.293},{"x":1757062561586,"y":110.55},{"x":1757062501184,"y":114.174},{"x":1757062440963,"y":119.672},{"x":1757062380814,"y":111.963},{"x":1757062320635,"y":119.264},{"x":1757062260482,"y":130.383},{"x":1757062200275,"y":114.749},{"x":1757062142890,"y":111.88},{"x":1757062082722,"y":101.954},{"x":1757062022542,"y":102.46},{"x":1757061962373,"y":114.249},{"x":1757061902211,"y":105.946},{"x":1757061842052,"y":108.726},{"x":1757061781860,"y":102.672},{"x":1757061721687,"y":102.752},{"x":1757061661512,"y":98.707},{"x":1757061601340,"y":113.769},{"x":1757061541152,"y":120.001},{"x":1757061480899,"y":115.678},{"x":1757061420728,"y":105.495},{"x":1757061360631,"y":94.845},{"x":1757061300422,"y":92.432},{"x":1757061240211,"y":96.047},{"x":1757061182937,"y":102.898},{"x":1757061122765,"y":97.652},{"x":1757061062596,"y":103.051},{"x":1757061002427,"y":92.748},{"x":1757060942262,"y":91.073},{"x":1757060882094,"y":121.371},{"x":1757060821911,"y":92.235},{"x":1757060761746,"y":113.599},{"x":1757060701300,"y":100.747},{"x":1757060641129,"y":95.422},{"x":1757060580950,"y":104.695},{"x":1757060520758,"y":120.945},{"x":1757060460627,"y":99.203},{"x":1757060400495,"y":104.118},{"x":1757060340350,"y":108.424},{"x":1757060282947,"y":102.842},{"x":1757060222780,"y":104.484},{"x":1757060162666,"y":114.874},{"x":1757060102441,"y":115.416},{"x":1757060042264,"y":114.335},{"x":1757059982101,"y":118.522},{"x":1757059921875,"y":100.58},{"x":1757059861549,"y":106.637},{"x":1757059800809,"y":100.229},{"x":1757059740643,"y":109.933},{"x":1757059680342,"y":105.894},{"x":1757059622991,"y":104.409},{"x":1757059562851,"y":85.991},{"x":1757059502647,"y":91.363},{"x":1757059442477,"y":90.606},{"x":1757059382296,"y":100.622},{"x":1757059322139,"y":94.955},{"x":1757059261982,"y":94.313},{"x":1757059202216,"y":87.137},{"x":1757059141985,"y":91.261},{"x":1757059081790,"y":99.917},{"x":1757059021618,"y":96.815},{"x":1757058961442,"y":90.224},{"x":1757058901083,"y":85.397},{"x":1757058840894,"y":90.524},{"x":1757058780732,"y":95.233},{"x":1757058720575,"y":95.798},{"x":1757058660413,"y":94.49},{"x":1757058600237,"y":92.922},{"x":1757058542905,"y":93.607},{"x":1757058482764,"y":89.005},{"x":1757058422564,"y":95.931},{"x":1757058362383,"y":89.436},{"x":1757058302211,"y":91.271},{"x":1757058241988,"y":89.155},{"x":1757058181817,"y":93.91},{"x":1757058121637,"y":91.009},{"x":1757058061472,"y":86.316},{"x":1757058001278,"y":91.693},{"x":1757057941100,"y":99.658},{"x":1757057880905,"y":102.441},{"x":1757057820729,"y":101.269},{"x":1757057760701,"y":111.968},{"x":1757057700366,"y":100.433},{"x":1757057640283,"y":99.335},{"x":1757057582891,"y":111.853},{"x":1757057522725,"y":121.465},{"x":1757057462557,"y":106.047},{"x":1757057402368,"y":103.513},{"x":1757057342187,"y":109.175},{"x":1757057282018,"y":107.587},{"x":1757057221830,"y":103.284},{"x":1757057161607,"y":108.506},{"x":1757057101437,"y":113.496},{"x":1757057041302,"y":97.549},{"x":1757056981085,"y":95.02},{"x":1757056920875,"y":84.4},{"x":1757056860703,"y":98.302},{"x":1757056800642,"y":100.717},{"x":1757056740396,"y":88.594},{"x":1757056682916,"y":94.084},{"x":1757056622748,"y":86.971},{"x":1757056562324,"y":85.477},{"x":1757056502151,"y":82.347},{"x":1757056441969,"y":89.229},{"x":1757056381796,"y":90.335},{"x":1757056321557,"y":91.629},{"x":1757056261332,"y":87.91},{"x":1757056200916,"y":84.397},{"x":1757056140663,"y":91.825},{"x":1757056080502,"y":96.92},{"x":1757056020316,"y":94.207},{"x":1757055962873,"y":113.599},{"x":1757055902699,"y":111.865},{"x":1757055842520,"y":105.461},{"x":1757055782353,"y":104.029},{"x":1757055722168,"y":93.618},{"x":1757055662012,"y":92.131},{"x":1757055602275,"y":93.606},{"x":1757055542038,"y":90.874},{"x":1757055481810,"y":90.124},{"x":1757055421634,"y":88.131},{"x":1757055361441,"y":85.189},{"x":1757055301153,"y":84.984},{"x":1757055240947,"y":91.858},{"x":1757055180761,"y":83.362},{"x":1757055120635,"y":90.007},{"x":1757055060463,"y":88.451},{"x":1757055003021,"y":84.99},{"x":1757054942818,"y":87.129},{"x":1757054882658,"y":85.121},{"x":1757054822497,"y":87.603},{"x":1757054762319,"y":87.386},{"x":1757054702151,"y":84.7},{"x":1757054641961,"y":87.063},{"x":1757054581799,"y":86.951},{"x":1757054521631,"y":105.446},{"x":1757054461456,"y":98.499},{"x":1757054401277,"y":97.004},{"x":1757054341093,"y":91.513},{"x":1757054280923,"y":92.089},{"x":1757054220735,"y":92.12},{"x":1757054160530,"y":87.785},{"x":1757054100365,"y":92.117},{"x":1757054040314,"y":85.02},{"x":1757053982879,"y":91.418},{"x":1757053922696,"y":85.368},{"x":1757053862522,"y":82.957},{"x":1757053802341,"y":95.271},{"x":1757053742167,"y":86.915},{"x":1757053682010,"y":85.665},{"x":1757053621836,"y":105.269},{"x":1757053561663,"y":85.243},{"x":1757053501379,"y":87.72},{"x":1757053441194,"y":87.549},{"x":1757053380995,"y":92.687},{"x":1757053320822,"y":92.129},{"x":1757053260654,"y":91.392},{"x":1757053200604,"y":111.264},{"x":1757053140334,"y":100.475},{"x":1757053083021,"y":105.734},{"x":1757053022843,"y":112.539},{"x":1757052962373,"y":105.096},{"x":1757052902205,"y":95.842},{"x":1757052842029,"y":88.017},{"x":1757052781838,"y":93.93},{"x":1757052721633,"y":94.663},{"x":1757052661418,"y":89.509},{"x":1757052601132,"y":92.781},{"x":1757052540915,"y":97.902},{"x":1757052480761,"y":104.565},{"x":1757052420582,"y":92.911},{"x":1757052360433,"y":97.636},{"x":1757052300498,"y":95.077},{"x":1757052242913,"y":99.985},{"x":1757052182724,"y":101.624},{"x":1757052122562,"y":107.279},{"x":1757052062398,"y":85.591},{"x":1757052002345,"y":84.49},{"x":1757051942046,"y":85.747},{"x":1757051881739,"y":81.061},{"x":1757051821577,"y":88.572},{"x":1757051761418,"y":87.064},{"x":1757051701050,"y":85.734},{"x":1757051640836,"y":79.619},{"x":1757051580715,"y":78.875},{"x":1757051520706,"y":87.621},{"x":1757051460371,"y":103.275},{"x":1757051400330,"y":98.24},{"x":1757051342911,"y":97.301},{"x":1757051282747,"y":95.54},{"x":1757051222560,"y":93.449},{"x":1757051162389,"y":83.806},{"x":1757051102218,"y":105.746},{"x":1757051042043,"y":95.421},{"x":1757050981870,"y":95.696},{"x":1757050921699,"y":94.046},{"x":1757050861528,"y":97.72},{"x":1757050801347,"y":92.224},{"x":1757050741167,"y":91.587},{"x":1757050680962,"y":99.2},{"x":1757050620795,"y":99.243},{"x":1757050560656,"y":92.038},{"x":1757050500542,"y":89.99},{"x":1757050440409,"y":95.118},{"x":1757050382919,"y":93.671},{"x":1757050322753,"y":103.947},{"x":1757050262582,"y":100.714},{"x":1757050202398,"y":92.816},{"x":1757050142219,"y":98.022},{"x":1757050082043,"y":95.958},{"x":1757050021834,"y":94.768},{"x":1757049961668,"y":100.587},{"x":1757049901501,"y":98.193},{"x":1757049841333,"y":99.878},{"x":1757049781178,"y":101.021},{"x":1757049721005,"y":94.784},{"x":1757049660830,"y":98.691},{"x":1757049600797,"y":98.467},{"x":1757049540478,"y":102.067},{"x":1757049480285,"y":96.922},{"x":1757049423020,"y":105.094},{"x":1757049362748,"y":94.576},{"x":1757049302575,"y":94.885},{"x":1757049242404,"y":94.765},{"x":1757049182232,"y":97.923},{"x":1757049122013,"y":97.142},{"x":1757049061493,"y":102.082},{"x":1757049001121,"y":97.842},{"x":1757048940917,"y":95.691},{"x":1757048880762,"y":102.42},{"x":1757048820565,"y":99.229},{"x":1757048760399,"y":97.324},{"x":1757048700295,"y":92.122},{"x":1757048642885,"y":103.929},{"x":1757048582717,"y":108.735},{"x":1757048522557,"y":114.481},{"x":1757048462388,"y":107.924},{"x":1757048402411,"y":106.552},{"x":1757048342114,"y":98.073},{"x":1757048281898,"y":96.125},{"x":1757048221727,"y":93.883},{"x":1757048161554,"y":88.149},{"x":1757048100978,"y":96.364},{"x":1757048040801,"y":86.663},{"x":1757047980653,"y":108.313},{"x":1757047920519,"y":100.774},{"x":1757047860370,"y":104.561},{"x":1757047800135,"y":97.951},{"x":1757047742867,"y":100.129},{"x":1757047682700,"y":89.015},{"x":1757047622516,"y":97.858},{"x":1757047562352,"y":94.332},{"x":1757047502183,"y":90.581},{"x":1757047441999,"y":95.767},{"x":1757047381835,"y":89.152},{"x":1757047321660,"y":93.047},{"x":1757047261492,"y":105.17},{"x":1757047201096,"y":90.777},{"x":1757047140895,"y":97.631},{"x":1757047080644,"y":92.252},{"x":1757047020487,"y":96.259},{"x":1757046960398,"y":100.083},{"x":1757046900095,"y":99.177},{"x":1757046842855,"y":91.001},{"x":1757046782669,"y":101.697},{"x":1757046722507,"y":98.325},{"x":1757046662348,"y":93.927},{"x":1757046602186,"y":93.086},{"x":1757046542014,"y":94.428},{"x":1757046481823,"y":93.864},{"x":1757046421659,"y":91.274},{"x":1757046361493,"y":96.508},{"x":1757046300821,"y":93.545},{"x":1757046240549,"y":94.121},{"x":1757046180371,"y":107.911},{"x":1757046123026,"y":109.865},{"x":1757046062781,"y":101.298},{"x":1757046002608,"y":104.68},{"x":1757045942442,"y":104.988},{"x":1757045882274,"y":90.703},{"x":1757045822121,"y":98.874},{"x":1757045761643,"y":96.341},{"x":1757045701484,"y":93.077},{"x":1757045641280,"y":87.742},{"x":1757045581092,"y":93.349},{"x":1757045520847,"y":98.587},{"x":1757045460664,"y":98.31},{"x":1757045402988,"y":92.109},{"x":1757045342826,"y":89.427},{"x":1757045281644,"y":86.018},{"x":1757045221462,"y":102.031},{"x":1757045161191,"y":96.556},{"x":1757045101039,"y":96.07},{"x":1757045040867,"y":96.786},{"x":1757044980701,"y":94.969},{"x":1757044920479,"y":86.563},{"x":1757044863256,"y":90.394},{"x":1757044802399,"y":94.994},{"x":1757044742121,"y":97.997},{"x":1757044681907,"y":87.484},{"x":1757044621742,"y":95.849},{"x":1757044561578,"y":98.24},{"x":1757044501400,"y":96.17},{"x":1757044441220,"y":94.096},{"x":1757044381043,"y":110.752},{"x":1757044320876,"y":104.435},{"x":1757044260716,"y":100.643},{"x":1757044200656,"y":106.375},{"x":1757044140366,"y":100.57},{"x":1757044083030,"y":86.071},{"x":1757044022849,"y":96.314},{"x":1757043962675,"y":97.613},{"x":1757043902492,"y":93.421},{"x":1757043842311,"y":105.291},{"x":1757043782140,"y":107.002},{"x":1757043721966,"y":93.917},{"x":1757043661797,"y":87.985},{"x":1757043601634,"y":93.75},{"x":1757043541483,"y":87.47},{"x":1757043481289,"y":88.01},{"x":1757043421112,"y":87.944},{"x":1757043360927,"y":94.976},{"x":1757043300778,"y":94.701},{"x":1757043240577,"y":97.093},{"x":1757043180473,"y":94.171},{"x":1757043120256,"y":92.701},{"x":1757043062977,"y":91.635},{"x":1757043002806,"y":102.469},{"x":1757042942635,"y":107.594},{"x":1757042882454,"y":107.559},{"x":1757042822263,"y":102.378},{"x":1757042762079,"y":100.079},{"x":1757042701716,"y":93.122},{"x":1757042641530,"y":92.36},{"x":1757042581367,"y":100.254},{"x":1757042521180,"y":95.586},{"x":1757042460846,"y":100.986},{"x":1757042400755,"y":94.657},{"x":1757042340512,"y":100.09},{"x":1757042282807,"y":94.22},{"x":1757042221415,"y":90.678},{"x":1757042161207,"y":96.515},{"x":1757042101043,"y":98.278},{"x":1757042040821,"y":92.13},{"x":1757041980617,"y":94.402},{"x":1757041920493,"y":89.92},{"x":1757041860217,"y":95.072},{"x":1757041800976,"y":114.538},{"x":1757041740783,"y":106.945},{"x":1757041680354,"y":111.365},{"x":1757041622870,"y":105.477},{"x":1757041560420,"y":99.483},{"x":1757041502908,"y":94.162},{"x":1757041481849,"y":93.297},{"x":1757041466443,"y":100.369},{"x":1757041142248,"y":109.534},{"x":1757041082023,"y":104.417},{"x":1757041021823,"y":97.173},{"x":1757040961649,"y":90.065},{"x":1757040901121,"y":87.486},{"x":1757040840919,"y":104.656},{"x":1757040780790,"y":102.605},{"x":1757040720644,"y":95.877},{"x":1757040660415,"y":95.357},{"x":1757040600358,"y":96.681},{"x":1757040542934,"y":89.108},{"x":1757040482764,"y":97.161},{"x":1757040422609,"y":92.986},{"x":1757040362444,"y":87.879},{"x":1757040302226,"y":93.02},{"x":1757040242062,"y":97.931},{"x":1757040181875,"y":96.837},{"x":1757040121711,"y":98.513},{"x":1757040061541,"y":93.722},{"x":1757040001052,"y":91.868},{"x":1757039940829,"y":98.821},{"x":1757039880649,"y":91.374},{"x":1757039820503,"y":94.247},{"x":1757039760358,"y":98.796},{"x":1757039700171,"y":95.261},{"x":1757039642846,"y":99.847},{"x":1757039582662,"y":97.64},{"x":1757039522498,"y":102.853},{"x":1757039462338,"y":101.025},{"x":1757039402162,"y":96.445},{"x":1757039341992,"y":97.856},{"x":1757039281866,"y":90.62},{"x":1757039221670,"y":104.956},{"x":1757039161489,"y":106.49},{"x":1757039101309,"y":105.77},{"x":1757039041123,"y":97.38},{"x":1757038980939,"y":101.11},{"x":1757038920769,"y":108.814},{"x":1757038860641,"y":99.142},{"x":1757038800473,"y":95.837},{"x":1757038740269,"y":96.746},{"x":1757038682927,"y":99.296},{"x":1757038622766,"y":98.374},{"x":1757038562554,"y":98.102},{"x":1757038502389,"y":88.178},{"x":1757038442219,"y":101.148},{"x":1757038382051,"y":100.946},{"x":1757038321835,"y":93.219},{"x":1757038261534,"y":95.65},{"x":1757038201302,"y":115.367},{"x":1757038141097,"y":108.747},{"x":1757038080921,"y":98.319},{"x":1757038020748,"y":94.732},{"x":1757037960597,"y":90.28},{"x":1757037900485,"y":98.006},{"x":1757037840345,"y":98.141},{"x":1757037782878,"y":106.657},{"x":1757037722714,"y":102.206},{"x":1757037662537,"y":106.789},{"x":1757037602322,"y":107.79},{"x":1757037542107,"y":101.484},{"x":1757037481910,"y":95.399},{"x":1757037421732,"y":98.408},{"x":1757037361548,"y":91.696},{"x":1757037301176,"y":93.841},{"x":1757037241012,"y":91.58},{"x":1757037180829,"y":86.988},{"x":1757037120686,"y":99.846},{"x":1757037060504,"y":99.506},{"x":1757037000307,"y":88.048},{"x":1757036942942,"y":96.075},{"x":1757036882762,"y":92.295},{"x":1757036822595,"y":92.134},{"x":1757036762425,"y":92.41},{"x":1757036702247,"y":95.463},{"x":1757036642079,"y":102.722},{"x":1757036581903,"y":97.591},{"x":1757036521742,"y":95.068},{"x":1757036461566,"y":95.924},{"x":1757036401160,"y":94.637},{"x":1757036340979,"y":98.022},{"x":1757036280814,"y":105.187},{"x":1757036220653,"y":103.686},{"x":1757036160552,"y":114.466},{"x":1757036100329,"y":104.114},{"x":1757036040097,"y":121.107},{"x":1757035982858,"y":102.081},{"x":1757035922700,"y":112.883},{"x":1757035862534,"y":107.362},{"x":1757035802369,"y":104.878},{"x":1757035742195,"y":100.464},{"x":1757035682009,"y":89.974},{"x":1757035621835,"y":94.424},{"x":1757035561671,"y":98.694},{"x":1757035501503,"y":93.072},{"x":1757035441341,"y":90.751},{"x":1757035381154,"y":91.266},{"x":1757035320976,"y":93.527},{"x":1757035260818,"y":95.57},{"x":1757035200710,"y":99.433},{"x":1757035140505,"y":97.852},{"x":1757035080336,"y":94.886},{"x":1757035022993,"y":91.162},{"x":1757034962821,"y":93.929},{"x":1757034902647,"y":93.748},{"x":1757034842484,"y":83.568},{"x":1757034782332,"y":96.789},{"x":1757034722152,"y":107.155},{"x":1757034661914,"y":96.632},{"x":1757034601692,"y":99.07},{"x":1757034541515,"y":96.657},{"x":1757034481328,"y":90.391},{"x":1757034421165,"y":96.509},{"x":1757034360968,"y":90.519},{"x":1757034300831,"y":102.783},{"x":1757034240649,"y":97.728},{"x":1757034180509,"y":87.739},{"x":1757034120308,"y":93.968},{"x":1757034062947,"y":85.508},{"x":1757034002315,"y":91.558},{"x":1757033942107,"y":99.246},{"x":1757033881897,"y":109.806},{"x":1757033821722,"y":92.214},{"x":1757033761538,"y":89.757},{"x":1757033701270,"y":92.714},{"x":1757033641087,"y":91.572},{"x":1757033580902,"y":84.843},{"x":1757033520726,"y":92.109},{"x":1757033460509,"y":96.487},{"x":1757033400438,"y":92.179},{"x":1757033343021,"y":92.365},{"x":1757033282853,"y":95.315},{"x":1757033222668,"y":87.85},{"x":1757033162513,"y":100.153},{"x":1757033102338,"y":103.751},{"x":1757033042167,"y":102.483},{"x":1757032981987,"y":98.855},{"x":1757032921826,"y":97.029},{"x":1757032861635,"y":84.969},{"x":1757032801465,"y":83.265},{"x":1757032741289,"y":91.752},{"x":1757032681119,"y":106.664},{"x":1757032620925,"y":96.287},{"x":1757032560765,"y":96.292},{"x":1757032500621,"y":111.81},{"x":1757032440398,"y":113.409},{"x":1757032380320,"y":95.975},{"x":1757032322880,"y":108.821},{"x":1757032262709,"y":94.575},{"x":1757032202540,"y":91.186},{"x":1757032142367,"y":94.27},{"x":1757032082191,"y":98.526},{"x":1757032022006,"y":98.01},{"x":1757031961814,"y":94.329},{"x":1757031901629,"y":98.957},{"x":1757031841457,"y":110.262},{"x":1757031781289,"y":107.236},{"x":1757031721118,"y":100.708},{"x":1757031660946,"y":100.179},{"x":1757031600915,"y":94.562},{"x":1757031540623,"y":94.999},{"x":1757031480510,"y":94.37},{"x":1757031420285,"y":96.991},{"x":1757031362975,"y":97.517},{"x":1757031302770,"y":99.135},{"x":1757031242596,"y":108.293},{"x":1757031182430,"y":113.227},{"x":1757031122242,"y":103.557},{"x":1757031062032,"y":95.786},{"x":1757031001827,"y":108.396},{"x":1757030941638,"y":96.512},{"x":1757030881459,"y":90.355},{"x":1757030821282,"y":94.0},{"x":1757030761088,"y":104.204},{"x":1757030700901,"y":100.162},{"x":1757030640733,"y":100.749},{"x":1757030580666,"y":95.493},{"x":1757030520406,"y":93.532},{"x":1757030463077,"y":87.157},{"x":1757030402416,"y":101.581},{"x":1757030342115,"y":97.347},{"x":1757030281870,"y":93.689},{"x":1757030221697,"y":94.492},{"x":1757030161520,"y":105.423},{"x":1757030101172,"y":100.189},{"x":1757030040987,"y":91.487},{"x":1757029980814,"y":92.697},{"x":1757029920642,"y":90.636},{"x":1757029860525,"y":94.861},{"x":1757029800372,"y":85.492},{"x":1757029742977,"y":91.718},{"x":1757029682804,"y":101.912},{"x":1757029622639,"y":93.278},{"x":1757029562467,"y":92.961},{"x":1757029502303,"y":96.303},{"x":1757029442131,"y":99.265},{"x":1757029381959,"y":102.253},{"x":1757029321781,"y":93.256},{"x":1757029261608,"y":98.12},{"x":1757029201202,"y":93.616},{"x":1757029141004,"y":98.281},{"x":1757029080827,"y":105.919},{"x":1757029020672,"y":118.673},{"x":1757028960564,"y":113.492},{"x":1757028900308,"y":112.193},{"x":1757028843017,"y":97.245},{"x":1757028782837,"y":104.417},{"x":1757028722670,"y":94.892},{"x":1757028662478,"y":104.197},{"x":1757028602304,"y":103.728},{"x":1757028542120,"y":111.706},{"x":1757028481933,"y":103.371},{"x":1757028421752,"y":102.801},{"x":1757028361569,"y":95.637},{"x":1757028301240,"y":104.772},{"x":1757028241032,"y":104.1},{"x":1757028180843,"y":100.916},{"x":1757028120682,"y":101.712},{"x":1757028060537,"y":96.312},{"x":1757028000466,"y":94.538},{"x":1757027940276,"y":97.733},{"x":1757027882908,"y":99.318},{"x":1757027822742,"y":90.428},{"x":1757027762570,"y":96.099},{"x":1757027702392,"y":97.899},{"x":1757027642222,"y":107.179},{"x":1757027582055,"y":116.054},{"x":1757027521867,"y":106.591},{"x":1757027461599,"y":104.591},{"x":1757027401402,"y":97.036},{"x":1757027341213,"y":98.133},{"x":1757027281034,"y":102.656},{"x":1757027220857,"y":96.682},{"x":1757027160702,"y":94.541},{"x":1757027100652,"y":94.707},{"x":1757027040371,"y":97.407},{"x":1757026982933,"y":92.522},{"x":1757026922774,"y":105.743},{"x":1757026862599,"y":94.091},{"x":1757026800717,"y":93.386},{"x":1757026740318,"y":101.269},{"x":1757026683028,"y":102.275},{"x":1757026622879,"y":99.705},{"x":1757026562692,"y":99.044},{"x":1757026502529,"y":95.889},{"x":1757026442333,"y":94.875},{"x":1757026382174,"y":102.78},{"x":1757026321979,"y":93.597},{"x":1757026261793,"y":90.481},{"x":1757026201587,"y":93.763},{"x":1757026141415,"y":96.572},{"x":1757026081241,"y":91.632},{"x":1757026021058,"y":103.07},{"x":1757025960879,"y":102.575},{"x":1757025900775,"y":97.279},{"x":1757025840600,"y":109.179},{"x":1757025780394,"y":99.081},{"x":1757025723029,"y":108.195},{"x":1757025662851,"y":101.761},{"x":1757025602684,"y":105.165},{"x":1757025542505,"y":96.654},{"x":1757025482352,"y":108.896},{"x":1757025422162,"y":100.512},{"x":1757025361739,"y":98.807},{"x":1757025301576,"y":99.067},{"x":1757025241394,"y":98.703},{"x":1757025181222,"y":96.819},{"x":1757025121062,"y":102.658},{"x":1757025060877,"y":99.997},{"x":1757025000847,"y":102.473},{"x":1757024940478,"y":108.195},{"x":1757024880424,"y":96.599},{"x":1757024822958,"y":113.919},{"x":1757024762787,"y":117.263},{"x":1757024702603,"y":116.528},{"x":1757024642437,"y":111.532},{"x":1757024582266,"y":119.404},{"x":1757024522088,"y":116.987},{"x":1757024461776,"y":110.857},{"x":1757024401607,"y":111.021},{"x":1757024341432,"y":110.639},{"x":1757024281264,"y":119.508},{"x":1757024221092,"y":103.253},{"x":1757024160917,"y":97.596},{"x":1757024100788,"y":109.793},{"x":1757024040556,"y":111.228},{"x":1757023980389,"y":120.697},{"x":1757023923018,"y":119.368},{"x":1757023862797,"y":126.661},{"x":1757023802585,"y":113.094},{"x":1757023742406,"y":106.572},{"x":1757023682237,"y":116.327},{"x":1757023622062,"y":121.758},{"x":1757023561418,"y":118.6},{"x":1757023501242,"y":120.105},{"x":1757023441062,"y":123.576},{"x":1757023380890,"y":116.772},{"x":1757023320726,"y":106.822},{"x":1757023263547,"y":121.115},{"x":1757023200913,"y":118.386},{"x":1757023140489,"y":123.222},{"x":1757023080276,"y":106.841},{"x":1757023022933,"y":115.338},{"x":1757022962762,"y":124.716},{"x":1757022902589,"y":99.916},{"x":1757022842417,"y":113.783},{"x":1757022782229,"y":108.487},{"x":1757022722063,"y":121.926},{"x":1757022661871,"y":126.568},{"x":1757022601680,"y":123.521},{"x":1757022541502,"y":109.989},{"x":1757022481318,"y":106.571},{"x":1757022421143,"y":107.341},{"x":1757022360948,"y":118.409},{"x":1757022300803,"y":105.447},{"x":1757022240726,"y":114.172},{"x":1757022180461,"y":106.251},{"x":1757022120333,"y":101.513},{"x":1757022062973,"y":118.305},{"x":1757022002788,"y":125.277},{"x":1757021942616,"y":123.322},{"x":1757021882446,"y":113.862},{"x":1757021822256,"y":113.135},{"x":1757021762085,"y":104.532},{"x":1757021701912,"y":108.955},{"x":1757021641746,"y":109.965},{"x":1757021581567,"y":133.454},{"x":1757021521402,"y":122.352},{"x":1757021461231,"y":124.367},{"x":1757021401077,"y":111.991},{"x":1757021340816,"y":110.149},{"x":1757021280702,"y":123.693},{"x":1757021220543,"y":135.303},{"x":1757021160359,"y":129.912},{"x":1757021102973,"y":129.353},{"x":1757021042810,"y":135.021},{"x":1757020982627,"y":121.857},{"x":1757020922451,"y":128.198},{"x":1757020862276,"y":128.567},{"x":1757020802100,"y":141.797},{"x":1757020741912,"y":143.188},{"x":1757020681738,"y":126.35},{"x":1757020621469,"y":134.668},{"x":1757020561207,"y":142.059},{"x":1757020501048,"y":150.322},{"x":1757020440815,"y":139.931},{"x":1757020380658,"y":155.908},{"x":1757020320502,"y":156.593},{"x":1757020260404,"y":155.971},{"x":1757020202929,"y":162.316},{"x":1757020142756,"y":167.45},{"x":1757020082584,"y":163.194},{"x":1757020022400,"y":167.853},{"x":1757019962235,"y":160.946},{"x":1757019902074,"y":163.196},{"x":1757019841890,"y":152.963},{"x":1757019781722,"y":162.605},{"x":1757019721535,"y":150.991},{"x":1757019661385,"y":168.146},{"x":1757019600994,"y":199.239},{"x":1757019540421,"y":205.716},{"x":1757019480271,"y":192.916},{"x":1757019422903,"y":196.287},{"x":1757019362715,"y":195.57},{"x":1757019302516,"y":191.702},{"x":1757019242337,"y":206.601},{"x":1757019182165,"y":187.365},{"x":1757019121968,"y":190.423},{"x":1757019061579,"y":197.755},{"x":1757019001319,"y":209.331},{"x":1757018941148,"y":223.758},{"x":1757018880971,"y":211.832},{"x":1757018820799,"y":179.373},{"x":1757018760653,"y":172.31},{"x":1757018700530,"y":201.447},{"x":1757018640275,"y":192.402},{"x":1757018580077,"y":215.796},{"x":1757018522861,"y":247.373},{"x":1757018462681,"y":238.623},{"x":1757018402494,"y":224.597},{"x":1757018342332,"y":217.897},{"x":1757018282161,"y":226.152},{"x":1757018221988,"y":223.326},{"x":1757018161552,"y":206.709},{"x":1757018101382,"y":193.428},{"x":1757018041220,"y":208.902},{"x":1757017981047,"y":221.317},{"x":1757017920868,"y":215.341},{"x":1757017860702,"y":201.971},{"x":1757017800693,"y":222.648},{"x":1757017740349,"y":201.839},{"x":1757017680199,"y":219.812},{"x":1757017622901,"y":228.57},{"x":1757017562723,"y":222.354},{"x":1757017502548,"y":211.073},{"x":1757017442367,"y":187.156},{"x":1757017382209,"y":235.1},{"x":1757017322048,"y":216.978},{"x":1757017261861,"y":229.084},{"x":1757017201698,"y":260.179},{"x":1757017141527,"y":246.576},{"x":1757017081365,"y":220.351},{"x":1757017021200,"y":253.844},{"x":1757016961020,"y":227.871},{"x":1757016900860,"y":207.821},{"x":1757016840631,"y":224.384},{"x":1757016780483,"y":231.081},{"x":1757016720272,"y":229.531},{"x":1757016662928,"y":222.311},{"x":1757016602736,"y":253.923},{"x":1757016542574,"y":267.102},{"x":1757016482395,"y":227.293},{"x":1757016422242,"y":199.824},{"x":1757016362054,"y":212.218},{"x":1757016301875,"y":226.96},{"x":1757016241732,"y":207.921},{"x":1757016181524,"y":215.634},{"x":1757016121363,"y":229.753},{"x":1757016061194,"y":232.463},{"x":1757016002607,"y":229.824},{"x":1757015942149,"y":222.955},{"x":1757015881918,"y":239.217},{"x":1757015821640,"y":245.392},{"x":1757015761453,"y":213.876},{"x":1757015701243,"y":213.836},{"x":1757015641063,"y":234.602},{"x":1757015580887,"y":244.034},{"x":1757015520769,"y":222.649},{"x":1757015460582,"y":231.731},{"x":1757015400525,"y":218.468},{"x":1757015342956,"y":214.568},{"x":1757015282790,"y":238.167},{"x":1757015222597,"y":227.45},{"x":1757015162430,"y":187.786},{"x":1757015102259,"y":234.492},{"x":1757015042088,"y":220.643},{"x":1757014981917,"y":257.395},{"x":1757014921747,"y":249.563},{"x":1757014861600,"y":250.329},{"x":1757014801163,"y":226.706},{"x":1757014740964,"y":238.167},{"x":1757014680799,"y":236.956},{"x":1757014620648,"y":249.948},{"x":1757014560474,"y":211.876},{"x":1757014500316,"y":242.929},{"x":1757014442985,"y":248.33},{"x":1757014382824,"y":234.426},{"x":1757014322656,"y":236.996},{"x":1757014262494,"y":247.997},{"x":1757014202319,"y":221.527},{"x":1757014142143,"y":240.921},{"x":1757014081964,"y":216.685},{"x":1757014021801,"y":256.917},{"x":1757013961645,"y":214.602},{"x":1757013901455,"y":206.506},{"x":1757013841280,"y":260.208},{"x":1757013781115,"y":253.763},{"x":1757013720930,"y":237.528},{"x":1757013660783,"y":231.906},{"x":1757013600631,"y":226.889},{"x":1757013540443,"y":262.972},{"x":1757013483030,"y":222.511},{"x":1757013422868,"y":220.31},{"x":1757013362693,"y":207.178},{"x":1757013302510,"y":237.96},{"x":1757013242336,"y":215.903},{"x":1757013182186,"y":226.086},{"x":1757013121990,"y":226.387},{"x":1757013061739,"y":247.229},{"x":1757013001542,"y":271.152},{"x":1757012941376,"y":253.44},{"x":1757012881198,"y":291.914},{"x":1757012820996,"y":253.281},{"x":1757012760826,"y":245.932},{"x":1757012700721,"y":248.609},{"x":1757012640541,"y":228.016},{"x":1757012580302,"y":242.702},{"x":1757012522952,"y":228.265},{"x":1757012462794,"y":262.791},{"x":1757012402284,"y":248.647},{"x":1757012342015,"y":250.926},{"x":1757012281824,"y":256.746},{"x":1757012221658,"y":249.619},{"x":1757012161485,"y":291.024},{"x":1757012101040,"y":245.882},{"x":1757012040865,"y":247.454},{"x":1757011980705,"y":245.386},{"x":1757011920619,"y":240.806},{"x":1757011860422,"y":250.045},{"x":1757011800277,"y":241.453},{"x":1757011742889,"y":232.248},{"x":1757011682723,"y":238.88},{"x":1757011622556,"y":249.223},{"x":1757011562382,"y":251.645},{"x":1757011502217,"y":257.76},{"x":1757011442033,"y":287.13},{"x":1757011381865,"y":277.864},{"x":1757011321705,"y":270.189},{"x":1757011261519,"y":252.648},{"x":1757011201136,"y":257.473},{"x":1757011140936,"y":247.713},{"x":1757011080779,"y":254.546},{"x":1757011020615,"y":247.073},{"x":1757010960506,"y":239.799},{"x":1757010900284,"y":240.085},{"x":1757010842951,"y":282.966},{"x":1757010782770,"y":269.929},{"x":1757010722597,"y":264.911},{"x":1757010662432,"y":275.61},{"x":1757010602262,"y":255.383},{"x":1757010542071,"y":278.338},{"x":1757010481868,"y":254.623},{"x":1757010421686,"y":277.842},{"x":1757010361559,"y":238.795},{"x":1757010301212,"y":244.102},{"x":1757010241019,"y":262.361},{"x":1757010180846,"y":269.867},{"x":1757010120683,"y":262.99},{"x":1757010060631,"y":264.264},{"x":1757010000572,"y":239.812},{"x":1757009940287,"y":247.267},{"x":1757009882592,"y":260.911},{"x":1757009822402,"y":254.762},{"x":1757009762229,"y":254.529},{"x":1757009702061,"y":260.422},{"x":1757009641872,"y":251.971},{"x":1757009581699,"y":248.003},{"x":1757009521493,"y":240.892},{"x":1757009461269,"y":247.988},{"x":1757009400851,"y":252.185},{"x":1757009340678,"y":261.888},{"x":1757009280512,"y":261.906},{"x":1757009220292,"y":261.634},{"x":1757009162945,"y":243.29},{"x":1757009102778,"y":270.819},{"x":1757009042608,"y":269.344},{"x":1757008982443,"y":269.534},{"x":1757008922275,"y":276.548},{"x":1757008862098,"y":263.828},{"x":1757008802330,"y":261.93},{"x":1757008742108,"y":236.319},{"x":1757008681876,"y":246.125},{"x":1757008621678,"y":247.468},{"x":1757008561518,"y":247.251},{"x":1757008501148,"y":271.156},{"x":1757008440963,"y":271.008},{"x":1757008380787,"y":247.324},{"x":1757008320676,"y":263.482},{"x":1757008260471,"y":262.396},{"x":1757008200631,"y":272.495},{"x":1757008142927,"y":312.667},{"x":1757008082765,"y":266.773},{"x":1757008022589,"y":277.29},{"x":1757007962359,"y":277.545},{"x":1757007902185,"y":268.272},{"x":1757007841998,"y":268.444},{"x":1757007781832,"y":278.56},{"x":1757007721651,"y":279.088},{"x":1757007661470,"y":250.446},{"x":1757007601268,"y":255.265},{"x":1757007541029,"y":250.992},{"x":1757007480854,"y":267.821},{"x":1757007420687,"y":290.597},{"x":1757007360605,"y":276.658},{"x":1757007300368,"y":246.718},{"x":1757007243024,"y":265.574},{"x":1757007182822,"y":269.632},{"x":1757007122650,"y":293.611},{"x":1757007062467,"y":282.446},{"x":1757007002293,"y":281.225},{"x":1757006942138,"y":248.701},{"x":1757006881959,"y":236.275},{"x":1757006821771,"y":271.409},{"x":1757006761617,"y":281.309},{"x":1757006701434,"y":280.954},{"x":1757006641262,"y":288.944},{"x":1757006581082,"y":256.362},{"x":1757006520889,"y":235.222},{"x":1757006460724,"y":241.96},{"x":1757006400624,"y":245.641},{"x":1757006340353,"y":229.022},{"x":1757006283019,"y":239.786},{"x":1757006222838,"y":261.854},{"x":1757006162668,"y":264.797},{"x":1757006102479,"y":270.286},{"x":1757006042311,"y":269.849},{"x":1757005982129,"y":279.327},{"x":1757005921915,"y":271.425},{"x":1757005861527,"y":256.56},{"x":1757005800844,"y":245.906},{"x":1757005740635,"y":251.385},{"x":1757005680576,"y":246.052},{"x":1757005620325,"y":257.195},{"x":1757005562948,"y":259.864},{"x":1757005502770,"y":261.772},{"x":1757005442603,"y":270.82},{"x":1757005382420,"y":276.597},{"x":1757005322247,"y":240.152},{"x":1757005262100,"y":231.273},{"x":1757005202328,"y":224.27},{"x":1757005141948,"y":226.761},{"x":1757005081752,"y":250.907},{"x":1757005021587,"y":249.183},{"x":1757004961433,"y":263.376},{"x":1757004901156,"y":257.351},{"x":1757004840977,"y":237.281},{"x":1757004780809,"y":237.662},{"x":1757004720689,"y":240.346},{"x":1757004660500,"y":259.618},{"x":1757004600394,"y":239.606},{"x":1757004542952,"y":250.232},{"x":1757004482777,"y":229.689},{"x":1757004422608,"y":247.324},{"x":1757004362433,"y":248.791},{"x":1757004302269,"y":237.077},{"x":1757004242095,"y":243.888},{"x":1757004181885,"y":228.827},{"x":1757004121712,"y":227.903},{"x":1757004061533,"y":231.524},{"x":1757004001188,"y":240.98},{"x":1757003940980,"y":249.067},{"x":1757003880818,"y":250.802},{"x":1757003820687,"y":261.316},{"x":1757003760559,"y":247.098},{"x":1757003700365,"y":262.654},{"x":1757003643018,"y":246.906},{"x":1757003582825,"y":252.234},{"x":1757003522651,"y":238.876},{"x":1757003462484,"y":224.916},{"x":1757003402298,"y":255.115},{"x":1757003342130,"y":258.987},{"x":1757003281962,"y":260.149},{"x":1757003221686,"y":231.944},{"x":1757003161517,"y":235.343},{"x":1757003101353,"y":226.087},{"x":1757003041182,"y":219.743},{"x":1757002980995,"y":237.561},{"x":1757002920828,"y":238.903},{"x":1757002860661,"y":241.159},{"x":1757002800588,"y":222.126},{"x":1757002740286,"y":219.32},{"x":1757002682955,"y":226.284},{"x":1757002622798,"y":235.078},{"x":1757002562605,"y":214.901},{"x":1757002502439,"y":222.951},{"x":1757002442270,"y":212.483},{"x":1757002382073,"y":219.978},{"x":1757002321873,"y":235.683},{"x":1757002261587,"y":225.757},{"x":1757002200842,"y":234.894},{"x":1757002140616,"y":210.848},{"x":1757002080522,"y":215.006},{"x":1757002020317,"y":215.716},{"x":1757001960211,"y":206.993},{"x":1757001902873,"y":221.438},{"x":1757001842699,"y":214.474},{"x":1757001782548,"y":213.983},{"x":1757001722370,"y":213.366},{"x":1757001662202,"y":228.581},{"x":1757001600832,"y":245.226},{"x":1757001540512,"y":233.128},{"x":1757001480387,"y":221.419},{"x":1757001422972,"y":219.292},{"x":1757001362828,"y":227.46},{"x":1757001302659,"y":228.442},{"x":1757001242473,"y":229.25},{"x":1757001182306,"y":240.462},{"x":1757001122146,"y":220.383},{"x":1757001061958,"y":244.547},{"x":1757001001770,"y":253.583},{"x":1757000941610,"y":242.019},{"x":1757000881433,"y":247.979},{"x":1757000821170,"y":236.171},{"x":1757000760990,"y":238.16},{"x":1757000700915,"y":214.831},{"x":1757000640653,"y":227.011},{"x":1757000580441,"y":232.274},{"x":1757000520290,"y":218.032},{"x":1757000460033,"y":222.061},{"x":1757000402837,"y":208.407},{"x":1757000342686,"y":236.028},{"x":1757000282485,"y":222.765},{"x":1757000222321,"y":242.94},{"x":1757000162143,"y":229.742},{"x":1757000101976,"y":244.981},{"x":1757000041794,"y":249.172},{"x":1756999981634,"y":239.637},{"x":1756999921444,"y":228.95},{"x":1756999861268,"y":239.906},{"x":1756999801128,"y":232.69},{"x":1756999740840,"y":238.174},{"x":1756999680689,"y":245.105},{"x":1756999620484,"y":246.981},{"x":1756999560339,"y":264.585},{"x":1756999502955,"y":265.071},{"x":1756999442782,"y":250.647},{"x":1756999382607,"y":240.337},{"x":1756999322439,"y":260.337},{"x":1756999262257,"y":243.478},{"x":1756999202107,"y":239.432},{"x":1756999141922,"y":247.632},{"x":1756999081747,"y":237.294},{"x":1756999021315,"y":248.894},{"x":1756998961057,"y":265.211},{"x":1756998900912,"y":259.411},{"x":1756998840698,"y":253.958},{"x":1756998780536,"y":239.595},{"x":1756998720422,"y":219.095},{"x":1756998660143,"y":210.389},{"x":1756998602872,"y":209.507},{"x":1756998542703,"y":208.133},{"x":1756998482540,"y":186.682},{"x":1756998422367,"y":183.299},{"x":1756998362184,"y":185.72},{"x":1756998302018,"y":207.896},{"x":1756998241826,"y":196.709},{"x":1756998181659,"y":188.812},{"x":1756998121502,"y":186.933},{"x":1756998061375,"y":206.619},{"x":1756998000589,"y":210.723},{"x":1756997940315,"y":226.47},{"x":1756997882981,"y":214.623},{"x":1756997822813,"y":239.405},{"x":1756997762634,"y":214.132},{"x":1756997702471,"y":233.46},{"x":1756997642301,"y":243.249},{"x":1756997582132,"y":250.357},{"x":1756997521948,"y":243.693},{"x":1756997461682,"y":208.498},{"x":1756997401358,"y":190.483},{"x":1756997341160,"y":198.497},{"x":1756997280960,"y":204.927},{"x":1756997220801,"y":189.567},{"x":1756997160643,"y":190.264},{"x":1756997100619,"y":181.937},{"x":1756997040406,"y":171.351},{"x":1756996980275,"y":168.278},{"x":1756996922870,"y":178.203},{"x":1756996862691,"y":175.048},{"x":1756996802513,"y":173.92},{"x":1756996742340,"y":179.939},{"x":1756996682170,"y":181.14},{"x":1756996621994,"y":191.491},{"x":1756996561616,"y":195.664},{"x":1756996501439,"y":181.716},{"x":1756996441258,"y":175.917},{"x":1756996381076,"y":170.604},{"x":1756996320884,"y":164.696},{"x":1756996260705,"y":179.296},{"x":1756996200669,"y":169.313},{"x":1756996140322,"y":172.473},{"x":1756996080266,"y":177.153},{"x":1756996022882,"y":180.566},{"x":1756995962730,"y":174.416},{"x":1756995902563,"y":173.644},{"x":1756995842389,"y":184.141},{"x":1756995782223,"y":163.228},{"x":1756995722045,"y":159.418},{"x":1756995661868,"y":157.71},{"x":1756995601713,"y":158.759},{"x":1756995541518,"y":158.868},{"x":1756995481348,"y":173.322},{"x":1756995421177,"y":184.743},{"x":1756995360981,"y":171.015},{"x":1756995300873,"y":202.198},{"x":1756995240596,"y":193.981},{"x":1756995180564,"y":190.366},{"x":1756995120251,"y":174.092},{"x":1756995062889,"y":160.687},{"x":1756995002715,"y":184.126},{"x":1756994942531,"y":176.387},{"x":1756994882353,"y":183.837},{"x":1756994822165,"y":171.514},{"x":1756994761979,"y":164.686},{"x":1756994701805,"y":161.747},{"x":1756994641615,"y":166.85},{"x":1756994581450,"y":165.965},{"x":1756994521275,"y":178.585},{"x":1756994461134,"y":163.173},{"x":1756994402246,"y":183.903},{"x":1756994342047,"y":172.488},{"x":1756994281831,"y":186.247},{"x":1756994221663,"y":182.439},{"x":1756994161485,"y":190.107},{"x":1756994101268,"y":199.159},{"x":1756994041082,"y":195.395},{"x":1756993980883,"y":195.292},{"x":1756993920743,"y":213.758},{"x":1756993860528,"y":200.543},{"x":1756993800393,"y":217.907},{"x":1756993743022,"y":203.135},{"x":1756993682849,"y":187.266},{"x":1756993622644,"y":202.663},{"x":1756993562467,"y":182.898},{"x":1756993502305,"y":201.745},{"x":1756993442125,"y":186.196},{"x":1756993381950,"y":178.644},{"x":1756993321783,"y":195.818},{"x":1756993261614,"y":207.779},{"x":1756993201423,"y":193.539},{"x":1756993141249,"y":219.104},{"x":1756993081082,"y":188.837},{"x":1756993020902,"y":182.182},{"x":1756992960721,"y":182.757},{"x":1756992900589,"y":173.168},{"x":1756992840322,"y":178.369},{"x":1756992783034,"y":187.245},{"x":1756992722847,"y":184.26},{"x":1756992662679,"y":177.681},{"x":1756992602450,"y":167.475},{"x":1756992542282,"y":156.018},{"x":1756992482101,"y":168.952},{"x":1756992421921,"y":185.257},{"x":1756992361750,"y":188.367},{"x":1756992301563,"y":187.684},{"x":1756992241403,"y":173.118},{"x":1756992181199,"y":173.792},{"x":1756992121012,"y":197.318},{"x":1756992060832,"y":175.119},{"x":1756992000767,"y":182.876},{"x":1756991940459,"y":190.832},{"x":1756991880252,"y":190.9},{"x":1756991822905,"y":209.795},{"x":1756991762740,"y":188.447},{"x":1756991702562,"y":167.816},{"x":1756991642377,"y":180.028},{"x":1756991582209,"y":158.404},{"x":1756991522043,"y":147.157},{"x":1756991461760,"y":164.371},{"x":1756991401557,"y":176.614},{"x":1756991341397,"y":174.708},{"x":1756991281210,"y":152.173},{"x":1756991221036,"y":180.562},{"x":1756991160840,"y":177.799},{"x":1756991100756,"y":200.114},{"x":1756991040500,"y":202.794},{"x":1756990980283,"y":181.603},{"x":1756990922970,"y":184.936},{"x":1756990862805,"y":192.959},{"x":1756990802435,"y":186.365},{"x":1756990742119,"y":173.866},{"x":1756990681860,"y":156.035},{"x":1756990621691,"y":161.728},{"x":1756990561523,"y":160.252},{"x":1756990501245,"y":165.169},{"x":1756990441068,"y":166.892},{"x":1756990380896,"y":169.363},{"x":1756990320757,"y":191.975},{"x":1756990260596,"y":169.42},{"x":1756990200408,"y":172.749},{"x":1756990142883,"y":170.797},{"x":1756990082723,"y":174.995},{"x":1756990022565,"y":196.916},{"x":1756989962368,"y":190.001},{"x":1756989902210,"y":149.628},{"x":1756989842041,"y":146.519},{"x":1756989781823,"y":146.378},{"x":1756989721644,"y":153.995},{"x":1756989661454,"y":164.006},{"x":1756989601258,"y":159.781},{"x":1756989541050,"y":186.233},{"x":1756989480864,"y":160.736},{"x":1756989420674,"y":168.335},{"x":1756989360538,"y":185.971},{"x":1756989300369,"y":163.546},{"x":1756989242965,"y":166.771},{"x":1756989182782,"y":163.748},{"x":1756989122623,"y":160.079},{"x":1756989062462,"y":168.482},{"x":1756989002271,"y":155.465},{"x":1756988942074,"y":168.273},{"x":1756988881898,"y":171.093},{"x":1756988821710,"y":167.574},{"x":1756988761538,"y":179.982},{"x":1756988701286,"y":171.368},{"x":1756988641121,"y":180.954},{"x":1756988580965,"y":168.325},{"x":1756988520765,"y":162.274},{"x":1756988460615,"y":158.871},{"x":1756988400638,"y":170.224},{"x":1756988340389,"y":168.159},{"x":1756988282979,"y":166.914},{"x":1756988222805,"y":165.023},{"x":1756988162592,"y":166.43},{"x":1756988102407,"y":169.95},{"x":1756988042233,"y":170.084},{"x":1756987982049,"y":188.911},{"x":1756987921856,"y":163.817},{"x":1756987861510,"y":169.009},{"x":1756987800801,"y":174.47},{"x":1756987740590,"y":168.827},{"x":1756987682873,"y":170.25},{"x":1756987622702,"y":170.153},{"x":1756987562527,"y":168.625},{"x":1756987502356,"y":172.205},{"x":1756987442183,"y":178.128},{"x":1756987381993,"y":169.689},{"x":1756987321823,"y":166.383},{"x":1756987261671,"y":161.153},{"x":1756987202563,"y":183.071},{"x":1756987142326,"y":184.462},{"x":1756987082105,"y":173.149},{"x":1756987021916,"y":162.266},{"x":1756986961748,"y":158.507},{"x":1756986901585,"y":155.814},{"x":1756986841415,"y":156.934},{"x":1756986781250,"y":168.121},{"x":1756986721068,"y":162.402},{"x":1756986660888,"y":160.955},{"x":1756986600748,"y":178.755},{"x":1756986540531,"y":179.461},{"x":1756986480449,"y":174.252},{"x":1756986422949,"y":181.331},{"x":1756986362781,"y":181.913},{"x":1756986302620,"y":182.102},{"x":1756986242430,"y":169.025},{"x":1756986182259,"y":165.687},{"x":1756986122058,"y":178.059},{"x":1756986061916,"y":182.179},{"x":1756986001688,"y":174.338},{"x":1756985941509,"y":162.802},{"x":1756985881339,"y":174.202},{"x":1756985821141,"y":176.539},{"x":1756985760947,"y":168.126},{"x":1756985700793,"y":155.342},{"x":1756985640621,"y":158.404},{"x":1756985580481,"y":178.308},{"x":1756985520312,"y":176.381},{"x":1756985462918,"y":188.691},{"x":1756985402747,"y":176.427},{"x":1756985342604,"y":136.915},{"x":1756985282403,"y":173.27},{"x":1756985222221,"y":156.852},{"x":1756985161957,"y":151.151},{"x":1756985100698,"y":160.64},{"x":1756985040588,"y":158.377},{"x":1756984980372,"y":159.303},{"x":1756984923027,"y":155.719},{"x":1756984861890,"y":151.322},{"x":1756984801696,"y":148.098},{"x":1756984741511,"y":173.497},{"x":1756984681337,"y":174.871},{"x":1756984621171,"y":210.814},{"x":1756984560548,"y":182.917},{"x":1756984500340,"y":168.134},{"x":1756984442996,"y":198.092},{"x":1756984382831,"y":181.661},{"x":1756984322602,"y":159.351},{"x":1756984261852,"y":151.412},{"x":1756984201648,"y":160.075},{"x":1756984141477,"y":153.747},{"x":1756984081306,"y":153.602},{"x":1756984021137,"y":152.648},{"x":1756983960978,"y":155.219},{"x":1756983900794,"y":154.559},{"x":1756983840603,"y":128.45},{"x":1756983780425,"y":141.642},{"x":1756983720239,"y":155.5},{"x":1756983662888,"y":150.443},{"x":1756983600623,"y":144.544},{"x":1756983540294,"y":143.656},{"x":1756983482969,"y":158.614},{"x":1756983422794,"y":171.986},{"x":1756983362627,"y":160.841},{"x":1756983302454,"y":159.771},{"x":1756983242286,"y":160.3},{"x":1756983182111,"y":166.413},{"x":1756983121931,"y":152.144},{"x":1756983061686,"y":160.307},{"x":1756983001500,"y":158.01},{"x":1756982941320,"y":165.207},{"x":1756982881114,"y":153.098},{"x":1756982820910,"y":158.534},{"x":1756982760752,"y":168.556},{"x":1756982700618,"y":143.109},{"x":1756982640418,"y":146.993},{"x":1756982582977,"y":139.575},{"x":1756982522792,"y":145.878},{"x":1756982462619,"y":145.683},{"x":1756982402452,"y":145.587},{"x":1756982342285,"y":161.187},{"x":1756982282127,"y":145.295},{"x":1756982221932,"y":152.864},{"x":1756982161680,"y":140.31},{"x":1756982101496,"y":138.332},{"x":1756982041317,"y":156.561},{"x":1756981981130,"y":152.418},{"x":1756981920922,"y":152.719},{"x":1756981860772,"y":153.139},{"x":1756981800709,"y":167.24},{"x":1756981740443,"y":155.928},{"x":1756981683124,"y":166.965},{"x":1756981622850,"y":163.72},{"x":1756981562687,"y":170.063},{"x":1756981502531,"y":171.633},{"x":1756981442359,"y":176.678},{"x":1756981382171,"y":182.245},{"x":1756981321970,"y":171.81},{"x":1756981261805,"y":172.209},{"x":1756981201634,"y":148.047},{"x":1756981159522,"y":146.617},{"x":1756981080513,"y":157.11},{"x":1756981022897,"y":162.514},{"x":1756980962712,"y":158.14},{"x":1756980902517,"y":168.248},{"x":1756980842353,"y":173.917},{"x":1756980782195,"y":171.93},{"x":1756980722039,"y":172.44},{"x":1756980661547,"y":175.331},{"x":1756980601355,"y":166.627},{"x":1756980541182,"y":165.745},{"x":1756980480997,"y":183.607},{"x":1756980420813,"y":166.171},{"x":1756980360644,"y":160.831},{"x":1756980300564,"y":137.031},{"x":1756980240298,"y":141.536},{"x":1756980182917,"y":144.334},{"x":1756980122736,"y":139.675},{"x":1756980062571,"y":129.318},{"x":1756980002288,"y":131.407},{"x":1756979942071,"y":128.811},{"x":1756979881846,"y":143.123},{"x":1756979821668,"y":135.245},{"x":1756979761497,"y":148.783},{"x":1756979701246,"y":120.755},{"x":1756979641047,"y":135.311},{"x":1756979580878,"y":158.015},{"x":1756979520706,"y":151.884},{"x":1756979460573,"y":149.374},{"x":1756979400371,"y":158.2},{"x":1756979340079,"y":165.398},{"x":1756979282851,"y":135.713},{"x":1756979222670,"y":144.675},{"x":1756979162485,"y":147.805},{"x":1756979102291,"y":141.07},{"x":1756979042116,"y":141.298},{"x":1756978981934,"y":131.778},{"x":1756978921756,"y":116.338},{"x":1756978861580,"y":117.472},{"x":1756978801339,"y":138.743},{"x":1756978741091,"y":117.0},{"x":1756978680904,"y":117.462},{"x":1756978620735,"y":131.77},{"x":1756978560645,"y":129.91},{"x":1756978500407,"y":142.506},{"x":1756978440135,"y":139.621},{"x":1756978382879,"y":115.506},{"x":1756978322721,"y":130.727},{"x":1756978262552,"y":128.621},{"x":1756978202366,"y":127.53},{"x":1756978142190,"y":126.359},{"x":1756978081996,"y":127.972},{"x":1756978021833,"y":116.397},{"x":1756977961651,"y":146.257},{"x":1756977901489,"y":136.424},{"x":1756977841328,"y":146.755},{"x":1756977781164,"y":160.379},{"x":1756977720965,"y":131.659},{"x":1756977660778,"y":118.751},{"x":1756977600642,"y":137.454},{"x":1756977540440,"y":117.174},{"x":1756977482972,"y":116.818},{"x":1756977422800,"y":116.278},{"x":1756977362591,"y":134.821},{"x":1756977302394,"y":158.463},{"x":1756977242212,"y":159.021},{"x":1756977182031,"y":135.456},{"x":1756977121854,"y":140.813},{"x":1756977061592,"y":118.415},{"x":1756977000923,"y":133.388},{"x":1756976940636,"y":143.948},{"x":1756976882888,"y":131.897},{"x":1756976822713,"y":142.021},{"x":1756976762520,"y":153.395},{"x":1756976702331,"y":125.467},{"x":1756976642153,"y":150.684},{"x":1756976581948,"y":136.657},{"x":1756976521786,"y":148.175},{"x":1756976461634,"y":148.292},{"x":1756976401031,"y":103.565},{"x":1756976340629,"y":131.785},{"x":1756976280382,"y":110.377},{"x":1756976222894,"y":141.133},{"x":1756976162724,"y":138.519},{"x":1756976102554,"y":152.616},{"x":1756976042356,"y":136.883},{"x":1756975982157,"y":135.64},{"x":1756975921972,"y":147.074},{"x":1756975861709,"y":135.02},{"x":1756975800871,"y":143.477},{"x":1756975740690,"y":170.107},{"x":1756975680558,"y":149.637},{"x":1756975620365,"y":138.135},{"x":1756975563027,"y":173.216},{"x":1756975502829,"y":169.51},{"x":1756975442645,"y":150.096},{"x":1756975382470,"y":128.329},{"x":1756975322302,"y":140.208},{"x":1756975262136,"y":160.014},{"x":1756975201923,"y":128.878},{"x":1756975141755,"y":161.39},{"x":1756975081580,"y":153.798},{"x":1756975021297,"y":150.403},{"x":1756974961134,"y":145.309},{"x":1756974900928,"y":144.477},{"x":1756974840727,"y":134.904},{"x":1756974780600,"y":116.522},{"x":1756974720509,"y":129.139},{"x":1756974660142,"y":148.044},{"x":1756974602847,"y":138.095},{"x":1756974542691,"y":156.963},{"x":1756974482508,"y":127.006},{"x":1756974422327,"y":129.078},{"x":1756974362188,"y":133.452},{"x":1756974301523,"y":139.881},{"x":1756974241345,"y":140.338},{"x":1756974181165,"y":145.75},{"x":1756974120983,"y":137.064},{"x":1756974060812,"y":130.9},{"x":1756974000691,"y":125.704},{"x":1756973940513,"y":128.273},{"x":1756973880384,"y":115.335},{"x":1756973822945,"y":101.316},{"x":1756973762593,"y":101.497},{"x":1756973702402,"y":112.903},{"x":1756973642227,"y":121.859},{"x":1756973582053,"y":118.072},{"x":1756973521908,"y":132.488},{"x":1756973461450,"y":136.393},{"x":1756973401081,"y":123.951},{"x":1756973340855,"y":123.16},{"x":1756973280754,"y":85.406},{"x":1756973220594,"y":123.845},{"x":1756973160284,"y":126.088},{"x":1756973102969,"y":117.086},{"x":1756973042791,"y":144.105},{"x":1756972982630,"y":137.58},{"x":1756972922457,"y":126.87},{"x":1756972862292,"y":106.317},{"x":1756972802179,"y":127.41},{"x":1756972741877,"y":138.992},{"x":1756972681680,"y":154.705},{"x":1756972621508,"y":130.097},{"x":1756972561339,"y":139.948},{"x":1756972501185,"y":143.912},{"x":1756972440983,"y":120.563},{"x":1756972380818,"y":123.911},{"x":1756972320676,"y":140.957},{"x":1756972260557,"y":126.118},{"x":1756972200453,"y":115.014},{"x":1756972142968,"y":113.143},{"x":1756972082791,"y":120.763},{"x":1756972022614,"y":119.644},{"x":1756971962449,"y":117.863},{"x":1756971902282,"y":120.502},{"x":1756971842100,"y":120.702},{"x":1756971781917,"y":123.333},{"x":1756971721720,"y":122.56},{"x":1756971661542,"y":120.269},{"x":1756971601237,"y":118.281},{"x":1756971541018,"y":120.189},{"x":1756971480832,"y":121.358},{"x":1756971420647,"y":130.801},{"x":1756971360547,"y":133.347},{"x":1756971300390,"y":125.747},{"x":1756971242923,"y":114.463},{"x":1756971182740,"y":119.452},{"x":1756971122585,"y":138.626},{"x":1756971062403,"y":147.305},{"x":1756971002223,"y":138.964},{"x":1756970942033,"y":129.617},{"x":1756970881853,"y":130.083},{"x":1756970821688,"y":138.529},{"x":1756970761504,"y":147.094},{"x":1756970701313,"y":147.61},{"x":1756970641145,"y":117.315},{"x":1756970580971,"y":160.734},{"x":1756970520819,"y":114.391},{"x":1756970460655,"y":122.294},{"x":1756970400549,"y":142.563},{"x":1756970340300,"y":144.272},{"x":1756970282935,"y":129.74},{"x":1756970222756,"y":129.786},{"x":1756970162506,"y":136.478},{"x":1756970102355,"y":140.279},{"x":1756970042164,"y":134.092},{"x":1756969981980,"y":146.823},{"x":1756969921804,"y":149.71},{"x":1756969861531,"y":163.528},{"x":1756969800928,"y":126.116},{"x":1756969740709,"y":119.06},{"x":1756969680626,"y":121.411},{"x":1756969620377,"y":122.681},{"x":1756969560236,"y":118.126},{"x":1756969502873,"y":119.851},{"x":1756969442707,"y":122.986},{"x":1756969382556,"y":118.756},{"x":1756969322351,"y":113.231},{"x":1756969262192,"y":111.668},{"x":1756969202434,"y":120.934},{"x":1756969142161,"y":125.268},{"x":1756969081949,"y":117.963},{"x":1756969021783,"y":119.722},{"x":1756968961628,"y":118.929},{"x":1756968901200,"y":114.656},{"x":1756968841018,"y":113.797},{"x":1756968780846,"y":120.101},{"x":1756968720742,"y":115.247},{"x":1756968660475,"y":112.988},{"x":1756968600420,"y":108.072},{"x":1756968542994,"y":111.967},{"x":1756968482822,"y":113.297},{"x":1756968422661,"y":106.528},{"x":1756968362477,"y":117.349},{"x":1756968302299,"y":121.049},{"x":1756968242127,"y":114.557},{"x":1756968181947,"y":123.182},{"x":1756968121781,"y":117.53},{"x":1756968061616,"y":117.181},{"x":1756968001446,"y":100.575},{"x":1756967941259,"y":104.564},{"x":1756967881089,"y":108.136},{"x":1756967820881,"y":111.966},{"x":1756967760766,"y":106.803},{"x":1756967700634,"y":114.932},{"x":1756967640342,"y":103.722},{"x":1756967580133,"y":111.175},{"x":1756967522854,"y":106.652},{"x":1756967462687,"y":109.479},{"x":1756967402466,"y":105.373},{"x":1756967342279,"y":107.264},{"x":1756967282105,"y":110.431},{"x":1756967221920,"y":114.499},{"x":1756967161748,"y":115.957},{"x":1756967101576,"y":117.296},{"x":1756967041411,"y":109.278},{"x":1756966981239,"y":112.67},{"x":1756966921066,"y":111.184},{"x":1756966860879,"y":104.892},{"x":1756966800832,"y":107.347},{"x":1756966740441,"y":110.431},{"x":1756966680342,"y":111.651},{"x":1756966622978,"y":105.322},{"x":1756966562694,"y":109.379},{"x":1756966502486,"y":116.818},{"x":1756966442314,"y":110.575},{"x":1756966382146,"y":108.834},{"x":1756966321968,"y":109.86},{"x":1756966261626,"y":102.753},{"x":1756966200899,"y":99.106},{"x":1756966140648,"y":110.487},{"x":1756966080589,"y":108.756},{"x":1756966020307,"y":102.14},{"x":1756965962981,"y":105.69},{"x":1756965902813,"y":112.925},{"x":1756965842644,"y":123.935},{"x":1756965782442,"y":115.895},{"x":1756965722278,"y":113.014},{"x":1756965662111,"y":120.337},{"x":1756965602283,"y":111.199},{"x":1756965542061,"y":112.359},{"x":1756965481840,"y":118.682},{"x":1756965421676,"y":117.147},{"x":1756965361506,"y":108.536},{"x":1756965301200,"y":107.525},{"x":1756965241039,"y":101.872},{"x":1756965180852,"y":110.667},{"x":1756965120759,"y":108.702},{"x":1756965060545,"y":101.836},{"x":1756965000571,"y":105.429},{"x":1756964940092,"y":100.647},{"x":1756964882852,"y":101.04},{"x":1756964822705,"y":103.56},{"x":1756964762521,"y":122.111},{"x":1756964702353,"y":109.513},{"x":1756964642181,"y":114.37},{"x":1756964582007,"y":111.818},{"x":1756964521832,"y":114.947},{"x":1756964461667,"y":117.769},{"x":1756964401518,"y":131.878},{"x":1756964341315,"y":123.495},{"x":1756964281148,"y":111.535},{"x":1756964220961,"y":108.769},{"x":1756964160790,"y":111.476},{"x":1756964100679,"y":104.609},{"x":1756964040534,"y":101.937},{"x":1756963980308,"y":108.479},{"x":1756963922891,"y":112.56},{"x":1756963862724,"y":98.8},{"x":1756963802542,"y":117.033},{"x":1756963742375,"y":114.256},{"x":1756963682185,"y":131.798},{"x":1756963622010,"y":133.6},{"x":1756963561833,"y":123.494},{"x":1756963501648,"y":112.419},{"x":1756963441479,"y":121.577},{"x":1756963381311,"y":103.001},{"x":1756963321141,"y":109.681},{"x":1756963260951,"y":104.052},{"x":1756963200888,"y":108.0},{"x":1756963140619,"y":106.14},{"x":1756963080460,"y":111.598},{"x":1756963020327,"y":109.972},{"x":1756962962695,"y":109.62},{"x":1756962902519,"y":107.925},{"x":1756962842343,"y":116.519},{"x":1756962782165,"y":116.77},{"x":1756962721970,"y":109.608},{"x":1756962661685,"y":110.781},{"x":1756962601513,"y":111.544},{"x":1756962541335,"y":105.015},{"x":1756962481170,"y":114.418},{"x":1756962420980,"y":112.953},{"x":1756962360812,"y":114.006},{"x":1756962300732,"y":116.801},{"x":1756962240472,"y":113.086},{"x":1756962180377,"y":117.13},{"x":1756962123024,"y":112.434},{"x":1756962062818,"y":120.459},{"x":1756962001076,"y":126.174},{"x":1756961940600,"y":121.348},{"x":1756961880378,"y":123.471},{"x":1756961820109,"y":116.822},{"x":1756961762862,"y":112.521},{"x":1756961702699,"y":123.862},{"x":1756961642533,"y":107.159},{"x":1756961582367,"y":108.188},{"x":1756961522207,"y":111.238},{"x":1756961462037,"y":111.319},{"x":1756961401337,"y":117.502},{"x":1756961341171,"y":110.555},{"x":1756961280994,"y":113.15},{"x":1756961220826,"y":111.599},{"x":1756961160666,"y":116.074},{"x":1756961100600,"y":121.052},{"x":1756961040354,"y":114.468},{"x":1756960983009,"y":121.541},{"x":1756960922845,"y":115.361},{"x":1756960862672,"y":111.558},{"x":1756960802498,"y":114.562},{"x":1756960742332,"y":123.403},{"x":1756960682170,"y":122.601},{"x":1756960621982,"y":113.031},{"x":1756960561687,"y":113.89},{"x":1756960501495,"y":116.142},{"x":1756960441321,"y":117.97},{"x":1756960381149,"y":120.288},{"x":1756960320976,"y":112.844},{"x":1756960260803,"y":112.753},{"x":1756960200690,"y":116.795},{"x":1756960140481,"y":128.314},{"x":1756960080355,"y":128.072},{"x":1756960022932,"y":129.33},{"x":1756959962780,"y":127.517},{"x":1756959902599,"y":127.771},{"x":1756959842434,"y":116.014},{"x":1756959782251,"y":119.254},{"x":1756959722084,"y":105.524},{"x":1756959661592,"y":113.709},{"x":1756959601416,"y":113.03},{"x":1756959541247,"y":116.7},{"x":1756959481079,"y":113.274},{"x":1756959420816,"y":108.031},{"x":1756959360703,"y":117.818},{"x":1756959300497,"y":121.329},{"x":1756959240304,"y":109.777},{"x":1756959182971,"y":105.19},{"x":1756959122757,"y":112.764},{"x":1756959062569,"y":104.406},{"x":1756959000782,"y":118.801},{"x":1756958940595,"y":108.464},{"x":1756958880933,"y":117.469},{"x":1756958820758,"y":111.392},{"x":1756958761461,"y":114.635},{"x":1756958701295,"y":113.425},{"x":1756958641118,"y":123.615},{"x":1756958580926,"y":120.217},{"x":1756958520757,"y":124.482},{"x":1756958463560,"y":122.55},{"x":1756958402343,"y":116.424},{"x":1756958342135,"y":123.882},{"x":1756958281907,"y":128.485},{"x":1756958221742,"y":123.032},{"x":1756958161565,"y":123.888},{"x":1756958101213,"y":117.616},{"x":1756958041024,"y":120.817},{"x":1756957980862,"y":113.298},{"x":1756957920707,"y":110.783},{"x":1756957860580,"y":111.347},{"x":1756957800383,"y":116.409},{"x":1756957742999,"y":113.936},{"x":1756957682842,"y":107.794},{"x":1756957622726,"y":108.988},{"x":1756957562522,"y":113.758},{"x":1756957502352,"y":117.467},{"x":1756957442187,"y":120.606},{"x":1756957381986,"y":107.874},{"x":1756957321829,"y":113.848},{"x":1756957261651,"y":109.279},{"x":1756957201489,"y":123.107},{"x":1756957141310,"y":110.755},{"x":1756957081138,"y":112.867},{"x":1756957020949,"y":117.962},{"x":1756956960763,"y":108.38},{"x":1756956900635,"y":114.266},{"x":1756956840439,"y":118.075},{"x":1756956780228,"y":111.05},{"x":1756956722902,"y":116.053},{"x":1756956662741,"y":110.927},{"x":1756956602576,"y":127.239},{"x":1756956542396,"y":117.003},{"x":1756956482246,"y":108.438},{"x":1756956422042,"y":107.591},{"x":1756956361855,"y":107.327},{"x":1756956301685,"y":122.441},{"x":1756956241510,"y":122.774},{"x":1756956181351,"y":116.591},{"x":1756956121183,"y":118.565},{"x":1756956061320,"y":107.234},{"x":1756956001154,"y":113.782},{"x":1756955940945,"y":114.594},{"x":1756955880761,"y":124.337},{"x":1756955820670,"y":123.085},{"x":1756955760530,"y":118.386},{"x":1756955703021,"y":116.775},{"x":1756955642849,"y":126.607},{"x":1756955582672,"y":112.562},{"x":1756955522435,"y":119.531},{"x":1756955462120,"y":110.655},{"x":1756955402625,"y":112.08},{"x":1756955342456,"y":110.781},{"x":1756955280629,"y":131.83},{"x":1756955220481,"y":125.577},{"x":1756955162134,"y":119.748},{"x":1756955101922,"y":124.341},{"x":1756955065827,"y":115.772},{"x":1756955051970,"y":113.732},{"x":1756954742125,"y":102.962},{"x":1756954681899,"y":112.903},{"x":1756954621729,"y":115.01},{"x":1756954561557,"y":116.675},{"x":1756954501176,"y":112.908},{"x":1756954440995,"y":117.886},{"x":1756954380832,"y":111.32},{"x":1756954320683,"y":107.041},{"x":1756954260538,"y":117.223},{"x":1756954200452,"y":113.056},{"x":1756954142990,"y":110.151},{"x":1756954082825,"y":114.463},{"x":1756954022559,"y":107.919},{"x":1756953962400,"y":107.134},{"x":1756953902216,"y":103.216},{"x":1756953842048,"y":111.693},{"x":1756953781873,"y":115.377},{"x":1756953721709,"y":120.659},{"x":1756953661545,"y":118.152},{"x":1756953601202,"y":113.072},{"x":1756953541007,"y":116.399},{"x":1756953480821,"y":119.862},{"x":1756953420653,"y":115.626},{"x":1756953360534,"y":120.967},{"x":1756953300367,"y":125.8},{"x":1756953240382,"y":127.305},{"x":1756953182819,"y":122.402},{"x":1756953122640,"y":126.503},{"x":1756953062472,"y":129.414},{"x":1756953002298,"y":123.446},{"x":1756952942127,"y":113.266},{"x":1756952881931,"y":105.523},{"x":1756952821750,"y":123.04},{"x":1756952761591,"y":120.779},{"x":1756952701235,"y":113.294},{"x":1756952641054,"y":120.587},{"x":1756952580866,"y":120.391},{"x":1756952520707,"y":107.131},{"x":1756952460557,"y":106.038},{"x":1756952400456,"y":112.484},{"x":1756952340300,"y":117.831},{"x":1756952282919,"y":111.554},{"x":1756952222755,"y":110.223},{"x":1756952162580,"y":110.494},{"x":1756952102406,"y":111.214},{"x":1756952042244,"y":109.183},{"x":1756951982066,"y":111.918},{"x":1756951921864,"y":110.156},{"x":1756951861520,"y":108.411},{"x":1756951800818,"y":111.701},{"x":1756951740624,"y":116.466},{"x":1756951680572,"y":109.148},{"x":1756951620292,"y":105.791},{"x":1756951562930,"y":121.195},{"x":1756951502771,"y":112.591},{"x":1756951442588,"y":114.93},{"x":1756951382418,"y":111.92},{"x":1756951322275,"y":110.654},{"x":1756951262099,"y":114.908},{"x":1756951202382,"y":111.353},{"x":1756951142157,"y":112.859},{"x":1756951081882,"y":109.887},{"x":1756951021710,"y":102.39},{"x":1756950961530,"y":117.067},{"x":1756950901044,"y":124.254},{"x":1756950840865,"y":120.413},{"x":1756950780691,"y":118.077},{"x":1756950720529,"y":116.587},{"x":1756950660414,"y":124.703},{"x":1756950600205,"y":111.93},{"x":1756950542896,"y":103.69},{"x":1756950482701,"y":108.426},{"x":1756950422522,"y":102.48},{"x":1756950362354,"y":109.93},{"x":1756950302163,"y":119.984},{"x":1756950241957,"y":112.667},{"x":1756950181791,"y":113.622},{"x":1756950121627,"y":123.146},{"x":1756950061454,"y":113.337},{"x":1756950001178,"y":105.728},{"x":1756949940990,"y":106.749},{"x":1756949880809,"y":109.298},{"x":1756949820652,"y":114.643},{"x":1756949760587,"y":113.969},{"x":1756949700289,"y":111.289},{"x":1756949643025,"y":103.337},{"x":1756949582855,"y":102.781},{"x":1756949522678,"y":116.182},{"x":1756949462506,"y":118.864},{"x":1756949402295,"y":120.091},{"x":1756949342130,"y":106.918},{"x":1756949281941,"y":99.082},{"x":1756949221781,"y":105.386},{"x":1756949161600,"y":115.083},{"x":1756949101426,"y":108.693},{"x":1756949041245,"y":106.313},{"x":1756948981067,"y":103.649},{"x":1756948920892,"y":104.076},{"x":1756948860716,"y":113.819},{"x":1756948800605,"y":109.934},{"x":1756948740397,"y":112.382},{"x":1756948680070,"y":111.814},{"x":1756948622858,"y":105.93},{"x":1756948562705,"y":109.759},{"x":1756948502478,"y":117.091},{"x":1756948442317,"y":107.62},{"x":1756948382115,"y":111.228},{"x":1756948321898,"y":107.773},{"x":1756948261700,"y":107.388},{"x":1756948201502,"y":125.103},{"x":1756948141329,"y":123.597},{"x":1756948081147,"y":122.961},{"x":1756948020962,"y":122.787},{"x":1756947960789,"y":124.54},{"x":1756947900635,"y":116.691},{"x":1756947840465,"y":112.789},{"x":1756947780296,"y":118.13},{"x":1756947722885,"y":113.289},{"x":1756947662726,"y":111.474},{"x":1756947600626,"y":111.573},{"x":1756947540316,"y":113.075},{"x":1756947480289,"y":110.174},{"x":1756947422865,"y":101.721},{"x":1756947362698,"y":110.691},{"x":1756947302531,"y":107.473},{"x":1756947242355,"y":106.645},{"x":1756947182176,"y":112.984},{"x":1756947121994,"y":112.239},{"x":1756947061676,"y":114.343},{"x":1756947001316,"y":137.29},{"x":1756946941136,"y":121.153},{"x":1756946880943,"y":123.031},{"x":1756946820792,"y":117.246},{"x":1756946760618,"y":114.047},{"x":1756946700553,"y":115.497},{"x":1756946640295,"y":107.098},{"x":1756946582968,"y":113.799},{"x":1756946522804,"y":117.109},{"x":1756946462647,"y":105.623},{"x":1756946402473,"y":104.522},{"x":1756946342296,"y":103.573},{"x":1756946282129,"y":110.24},{"x":1756946221950,"y":109.671},{"x":1756946161506,"y":104.682},{"x":1756946101348,"y":103.069},{"x":1756946041157,"y":107.496},{"x":1756945980993,"y":113.872},{"x":1756945920810,"y":111.562},{"x":1756945860642,"y":111.745},{"x":1756945800556,"y":100.254},{"x":1756945740372,"y":113.48},{"x":1756945680145,"y":107.809},{"x":1756945622872,"y":115.859},{"x":1756945562710,"y":103.385},{"x":1756945502518,"y":108.736},{"x":1756945442358,"y":116.676},{"x":1756945382190,"y":119.467},{"x":1756945322000,"y":118.663},{"x":1756945261833,"y":110.252},{"x":1756945201636,"y":102.414},{"x":1756945141458,"y":112.087},{"x":1756945081283,"y":116.057},{"x":1756945021109,"y":117.296},{"x":1756944960903,"y":112.425},{"x":1756944900757,"y":109.843},{"x":1756944840576,"y":121.204},{"x":1756944780360,"y":122.754},{"x":1756944720061,"y":115.532},{"x":1756944662818,"y":118.621},{"x":1756944602586,"y":110.367},{"x":1756944542397,"y":114.815},{"x":1756944482240,"y":115.38},{"x":1756944422076,"y":112.108},{"x":1756944361419,"y":109.267},{"x":1756944301253,"y":113.59},{"x":1756944241096,"y":110.178},{"x":1756944180905,"y":113.212},{"x":1756944120733,"y":116.245},{"x":1756944063569,"y":119.344},{"x":1756944002352,"y":123.272},{"x":1756943942057,"y":109.047},{"x":1756943881829,"y":123.53},{"x":1756943821661,"y":122.504},{"x":1756943761481,"y":113.322},{"x":1756943700998,"y":113.029},{"x":1756943640790,"y":119.912},{"x":1756943580596,"y":111.051},{"x":1756943520440,"y":113.955},{"x":1756943460294,"y":112.017},{"x":1756943402980,"y":102.585},{"x":1756943342804,"y":115.598},{"x":1756943282639,"y":120.737},{"x":1756943222472,"y":110.675},{"x":1756943162305,"y":116.335},{"x":1756943102129,"y":128.967},{"x":1756943041955,"y":125.175},{"x":1756942981781,"y":129.785},{"x":1756942921617,"y":139.289},{"x":1756942861439,"y":120.999},{"x":1756942801153,"y":118.122},{"x":1756942740956,"y":129.237},{"x":1756942680791,"y":113.536},{"x":1756942620638,"y":111.73},{"x":1756942560475,"y":114.987},{"x":1756942500327,"y":109.315},{"x":1756942442968,"y":104.048},{"x":1756942382797,"y":112.838},{"x":1756942322622,"y":110.352},{"x":1756942262444,"y":110.525},{"x":1756942202286,"y":120.292},{"x":1756942142082,"y":113.845},{"x":1756942081903,"y":125.295},{"x":1756942021726,"y":106.647},{"x":1756941961545,"y":107.537},{"x":1756941901375,"y":109.974},{"x":1756941841200,"y":103.646},{"x":1756941781023,"y":114.36},{"x":1756941720863,"y":113.855},{"x":1756941660704,"y":108.557},{"x":1756941600615,"y":112.035},{"x":1756941540375,"y":113.428},{"x":1756941480259,"y":111.533},{"x":1756941422789,"y":122.393},{"x":1756941362559,"y":115.969},{"x":1756941302394,"y":107.574},{"x":1756941242201,"y":111.237},{"x":1756941182018,"y":111.611},{"x":1756941121818,"y":114.292},{"x":1756941061468,"y":110.035},{"x":1756941001150,"y":112.716},{"x":1756940940926,"y":114.899},{"x":1756940880770,"y":123.069},{"x":1756940820637,"y":122.924},{"x":1756940760412,"y":133.857},{"x":1756940703048,"y":132.575},{"x":1756940642860,"y":130.842},{"x":1756940582701,"y":115.089},{"x":1756940522527,"y":119.649},{"x":1756940462341,"y":121.597},{"x":1756940401080,"y":110.519},{"x":1756940340316,"y":123.107},{"x":1756940283017,"y":105.309},{"x":1756940222848,"y":108.574},{"x":1756940162687,"y":117.943},{"x":1756940102511,"y":111.254},{"x":1756940042354,"y":117.894},{"x":1756939982162,"y":125.525},{"x":1756939922019,"y":119.54},{"x":1756939861570,"y":116.146},{"x":1756939801408,"y":109.78},{"x":1756939741229,"y":108.382},{"x":1756939681063,"y":115.44},{"x":1756939620886,"y":110.963},{"x":1756939560723,"y":110.039},{"x":1756939500766,"y":112.447},{"x":1756939440429,"y":115.671},{"x":1756939380118,"y":107.729},{"x":1756939322853,"y":113.653},{"x":1756939262671,"y":116.043},{"x":1756939202505,"y":119.04},{"x":1756939142322,"y":106.391},{"x":1756939082156,"y":110.126},{"x":1756939021969,"y":112.486},{"x":1756938961709,"y":115.293},{"x":1756938901535,"y":106.643},{"x":1756938841364,"y":111.656},{"x":1756938781144,"y":112.766},{"x":1756938720946,"y":115.397},{"x":1756938660768,"y":107.797},{"x":1756938600646,"y":109.729},{"x":1756938540457,"y":116.354},{"x":1756938480225,"y":111.045},{"x":1756938422971,"y":109.437},{"x":1756938362807,"y":111.837},{"x":1756938302672,"y":104.278},{"x":1756938242478,"y":108.675},{"x":1756938182315,"y":111.288},{"x":1756938122132,"y":119.74},{"x":1756938061949,"y":113.211},{"x":1756938001779,"y":111.477},{"x":1756937941616,"y":113.691},{"x":1756937881441,"y":111.54},{"x":1756937821284,"y":120.211},{"x":1756937761078,"y":123.891},{"x":1756937700913,"y":121.318},{"x":1756937640732,"y":119.567},{"x":1756937580576,"y":120.666},{"x":1756937520465,"y":110.778},{"x":1756937463011,"y":111.344},{"x":1756937402762,"y":121.218},{"x":1756937342569,"y":120.17},{"x":1756937282407,"y":125.185},{"x":1756937222248,"y":116.912},{"x":1756937162053,"y":113.472},{"x":1756937101878,"y":113.648},{"x":1756937041716,"y":112.208},{"x":1756936981521,"y":120.141},{"x":1756936921324,"y":115.001},{"x":1756936864160,"y":111.02},{"x":1756936800873,"y":115.513},{"x":1758146341438,"y":50.305},{"x":1758146298579,"y":52.12},{"x":1758146222760,"y":52.439},{"x":1758146178581,"y":50.293},{"x":1758146118743,"y":48.66},{"x":1758146058576,"y":50.613},{"x":1758145980823,"y":51.689},{"x":1758145923643,"y":49.222},{"x":1758145878579,"y":50.53},{"x":1758145800726,"y":56.461},{"x":1758145758581,"y":52.12},{"x":1758145698582,"y":55.588},{"x":1758145620246,"y":51.614},{"x":1758145578605,"y":50.047},{"x":1758145503264,"y":46.667},{"x":1758145441958,"y":56.853},{"x":1758145382593,"y":61.053},{"x":1758145338588,"y":50.264},{"x":1758145262334,"y":48.076},{"x":1758145218740,"y":55.833},{"x":1758145158584,"y":59.668},{"x":1758145098591,"y":55.839},{"x":1758145038609,"y":57.241},{"x":1758144978591,"y":55.458},{"x":1758144901889,"y":54.063},{"x":1758144858626,"y":66.393},{"x":1758144798629,"y":57.323},{"x":1758144738586,"y":62.651},{"x":1758144678579,"y":59.382},{"x":1758144601357,"y":58.918},{"x":1758144558584,"y":53.036},{"x":1758144498579,"y":48.715},{"x":1758144438592,"y":48.748},{"x":1758144378584,"y":49.907},{"x":1758144318765,"y":48.261},{"x":1758144258577,"y":51.121},{"x":1758144198578,"y":52.89},{"x":1758144138598,"y":49.146},{"x":1758144078586,"y":59.199},{"x":1758144018736,"y":51.839},{"x":1758143958583,"y":57.045},{"x":1758143898582,"y":55.268},{"x":1758143838580,"y":63.852},{"x":1758143778604,"y":56.293},{"x":1758143716156,"y":54.103},{"x":1758143658601,"y":53.386},{"x":1758143598590,"y":59.354},{"x":1758143538583,"y":58.601},{"x":1758143478585,"y":52.311},{"x":1758143418805,"y":53.54},{"x":1758143358579,"y":58.203},{"x":1758143298584,"y":54.461},{"x":1758143238592,"y":60.814},{"x":1758143178587,"y":63.592},{"x":1758143118747,"y":54.377},{"x":1758143058593,"y":54.776},{"x":1758142998707,"y":55.66},{"x":1758142938630,"y":51.315},{"x":1758142878586,"y":61.623},{"x":1758142803714,"y":67.003},{"x":1758142758579,"y":71.007},{"x":1758142698597,"y":67.623},{"x":1758142625340,"y":68.338},{"x":1758142578585,"y":61.561},{"x":1758142518799,"y":53.216},{"x":1758142458581,"y":54.829},{"x":1758142398584,"y":62.059},{"x":1758142338283,"y":59.265},{"x":1758142277994,"y":48.804},{"x":1758142217840,"y":53.375},{"x":1758142157384,"y":47.014},{"x":1758142097092,"y":46.112},{"x":1758142036779,"y":45.103},{"x":1758141976532,"y":48.548},{"x":1758141916145,"y":48.54},{"x":1758141842990,"y":49.97},{"x":1758141795630,"y":49.817},{"x":1758141735320,"y":47.928},{"x":1758141674972,"y":48.797},{"x":1758141614840,"y":49.068},{"x":1758141554319,"y":52.771},{"x":1758141494116,"y":49.572},{"x":1758141433820,"y":52.537},{"x":1758141373471,"y":50.151},{"x":1758141313335,"y":50.452},{"x":1758141252928,"y":53.37},{"x":1758141192570,"y":49.693},{"x":1758141132272,"y":53.785},{"x":1758141071965,"y":52.303},{"x":1758141011881,"y":52.626},{"x":1758140951354,"y":54.661},{"x":1758140891064,"y":56.546},{"x":1758140830781,"y":52.713},{"x":1758140770408,"y":55.412},{"x":1758140710266,"y":51.654},{"x":1758140649758,"y":52.556},{"x":1758140589460,"y":74.758},{"x":1758140529151,"y":75.162},{"x":1758140468801,"y":72.764},{"x":1758140408615,"y":78.671},{"x":1758140348104,"y":75.736},{"x":1758140287794,"y":53.866},{"x":1758140227498,"y":52.801},{"x":1758140167193,"y":53.607},{"x":1758140107026,"y":55.945},{"x":1758140046494,"y":49.078},{"x":1758139986199,"y":50.532},{"x":1758139925849,"y":50.584},{"x":1758139865536,"y":57.955},{"x":1758139805399,"y":62.874},{"x":1758139744866,"y":62.292},{"x":1758139684540,"y":59.402},{"x":1758139624185,"y":56.035},{"x":1758139563892,"y":62.807},{"x":1758139503761,"y":58.638},{"x":1758139443335,"y":52.841},{"x":1758139383117,"y":55.212},{"x":1758139322791,"y":61.832},{"x":1758139262379,"y":57.113},{"x":1758139202341,"y":61.108},{"x":1758139141675,"y":52.789},{"x":1758139081373,"y":58.036},{"x":1758139021070,"y":56.157},{"x":1758138960771,"y":80.657},{"x":1758138900697,"y":57.903},{"x":1758138840216,"y":47.012},{"x":1758138782951,"y":49.327},{"x":1758138722663,"y":47.486},{"x":1758138662415,"y":55.382},{"x":1758138602202,"y":56.21},{"x":1758138541667,"y":51.279},{"x":1758138481348,"y":55.127},{"x":1758138421056,"y":46.6},{"x":1758138360710,"y":46.998},{"x":1758138300872,"y":46.634},{"x":1758138240195,"y":62.788},{"x":1758138198584,"y":48.537},{"x":1758138138587,"y":43.053},{"x":1758138078587,"y":65.299},{"x":1758138018770,"y":46.133},{"x":1758137958604,"y":70.423},{"x":1758137898590,"y":55.08},{"x":1758137838584,"y":44.647},{"x":1758137778605,"y":64.382},{"x":1758137718826,"y":43.206},{"x":1758137658683,"y":52.07},{"x":1758137598587,"y":58.004},{"x":1758137538578,"y":53.548},{"x":1758137478540,"y":57.548},{"x":1758137416145,"y":38.441},{"x":1758137358348,"y":47.593},{"x":1758137298244,"y":44.677},{"x":1758137238136,"y":47.041},{"x":1758137178048,"y":45.547},{"x":1758137118098,"y":43.975},{"x":1758137057839,"y":60.587},{"x":1758136997728,"y":45.493},{"x":1758136937584,"y":59.022},{"x":1758136877483,"y":49.081},{"x":1758136817539,"y":62.523},{"x":1758136757284,"y":79.093},{"x":1758136697187,"y":89.469},{"x":1758136637074,"y":62.279},{"x":1758136566418,"y":79.557},{"x":1758136516152,"y":54.193},{"x":1758136456780,"y":62.52},{"x":1758136396667,"y":65.834},{"x":1758136336564,"y":55.949},{"x":1758136276415,"y":43.292},{"x":1758136216479,"y":55.555},{"x":1758136143907,"y":52.76},{"x":1758136086959,"y":45.624},{"x":1758136023810,"y":77.166},{"x":1758135967247,"y":65.329},{"x":1758135915969,"y":61.521},{"x":1758135855717,"y":68.31},{"x":1758135795607,"y":82.786},{"x":1758135723838,"y":79.683},{"x":1758135675355,"y":63.538},{"x":1758135603671,"y":74.402},{"x":1758135555162,"y":66.11},{"x":1758135495097,"y":44.614},{"x":1758135423941,"y":53.645},{"x":1758135374807,"y":48.909},{"x":1758135304318,"y":56.633},{"x":1758135243737,"y":70.931},{"x":1758135183823,"y":66.564},{"x":1758135127296,"y":58.739},{"x":1758135074249,"y":66.582},{"x":1758135000599,"y":62.997},{"x":1758134954047,"y":73.991},{"x":1758134883937,"y":61.292},{"x":1758134833840,"y":60.371},{"x":1758134773691,"y":57.399},{"x":1758134713734,"y":45.043},{"x":1758134641876,"y":68.308},{"x":1758134593356,"y":61.436},{"x":1758134533238,"y":66.45},{"x":1758134463641,"y":60.684},{"x":1758134407159,"y":71.571},{"x":1758134346676,"y":54.163},{"x":1758134291970,"y":54.078},{"x":1758134232732,"y":55.716},{"x":1758134172630,"y":59.14},{"x":1758134112789,"y":55.976},{"x":1758134052451,"y":48.708},{"x":1758133992274,"y":82.64},{"x":1758133932173,"y":55.275},{"x":1758133872073,"y":61.657},{"x":1758133812127,"y":75.053},{"x":1758133751824,"y":69.673},{"x":1758133691718,"y":80.355},{"x":1758133631615,"y":76.613},{"x":1758133571512,"y":74.331},{"x":1758133511581,"y":72.59},{"x":1758133451318,"y":60.288},{"x":1758133391220,"y":58.643},{"x":1758133331120,"y":67.492},{"x":1758133271027,"y":58.381},{"x":1758133211079,"y":86.501},{"x":1758133150810,"y":73.956},{"x":1758133090706,"y":51.933},{"x":1758133030601,"y":52.188},{"x":1758132970516,"y":61.6},{"x":1758132910601,"y":53.351},{"x":1758132850306,"y":74.555},{"x":1758132790204,"y":67.553},{"x":1758132730099,"y":65.273},{"x":1758132669999,"y":57.734},{"x":1758132610074,"y":93.404},{"x":1758132549801,"y":71.573},{"x":1758132489696,"y":66.659},{"x":1758132429599,"y":62.31},{"x":1758132369495,"y":48.932},{"x":1758132309578,"y":48.226},{"x":1758132249294,"y":46.14},{"x":1758132186782,"y":66.641},{"x":1758132129089,"y":73.676},{"x":1758132068991,"y":48.959},{"x":1758132003663,"y":62.755},{"x":1758131948785,"y":71.868},{"x":1758131888685,"y":63.099},{"x":1758131823922,"y":48.401},{"x":1758131765569,"y":50.47},{"x":1758131705998,"y":44.628},{"x":1758131645542,"y":58.345},{"x":1758131588199,"y":68.028},{"x":1758131528098,"y":49.484},{"x":1758131467985,"y":59.215},{"x":1758131408059,"y":60.562},{"x":1758131345477,"y":68.914},{"x":1758131287687,"y":75.663},{"x":1758131227609,"y":87.458},{"x":1758131167467,"y":67.387},{"x":1758131107562,"y":68.514},{"x":1758131042240,"y":72.408},{"x":1758130987167,"y":65.491},{"x":1758130925162,"y":48.736},{"x":1758130865184,"y":50.445},{"x":1758130805562,"y":53.669},{"x":1758130746762,"y":48.866},{"x":1758130686691,"y":55.727},{"x":1758130626515,"y":52.495},{"x":1758130566415,"y":54.635},{"x":1758130504397,"y":49.937},{"x":1758130446241,"y":61.146},{"x":1758130386111,"y":44.292},{"x":1758130326009,"y":57.252},{"x":1758130265853,"y":76.048},{"x":1758130205969,"y":79.178},{"x":1758130145603,"y":62.769},{"x":1758130084800,"y":56.236},{"x":1758130024759,"y":72.815},{"x":1758129964729,"y":65.201},{"x":1758129905331,"y":47.976},{"x":1758129845056,"y":51.763},{"x":1758129784949,"y":50.794},{"x":1758129724841,"y":63.418},{"x":1758129664746,"y":57.521},{"x":1758129604834,"y":78.551},{"x":1758129544495,"y":66.652},{"x":1758129484396,"y":73.666},{"x":1758129424309,"y":67.403},{"x":1758129364184,"y":84.303},{"x":1758129304313,"y":69.187},{"x":1758129244022,"y":94.952},{"x":1758129183893,"y":55.405},{"x":1758129123739,"y":66.884},{"x":1758129063631,"y":56.62},{"x":1758129003739,"y":62.83},{"x":1758128943436,"y":70.372},{"x":1758128883366,"y":58.836},{"x":1758128823233,"y":52.43},{"x":1758128763140,"y":60.604},{"x":1758128703254,"y":63.628},{"x":1758128642947,"y":66.311},{"x":1758128582825,"y":75.026},{"x":1758128522730,"y":86.759},{"x":1758128462635,"y":70.021},{"x":1758128402793,"y":96.667},{"x":1758128342420,"y":74.151},{"x":1758128282322,"y":59.729},{"x":1758128222229,"y":50.301},{"x":1758128162128,"y":60.834},{"x":1758128102267,"y":65.492},{"x":1758128041924,"y":55.968},{"x":1758127981815,"y":49.894},{"x":1758127921744,"y":54.608},{"x":1758127861618,"y":56.248},{"x":1758127801856,"y":59.94},{"x":1758127741362,"y":64.945},{"x":1758127681300,"y":66.916},{"x":1758127621163,"y":62.691},{"x":1758127561097,"y":65.806},{"x":1758127501244,"y":54.466},{"x":1758127440837,"y":50.986},{"x":1758127380719,"y":59.103},{"x":1758127320618,"y":59.415},{"x":1758127260505,"y":61.931},{"x":1758127200819,"y":55.272},{"x":1758127140322,"y":51.681},{"x":1758127080400,"y":56.376},{"x":1758127020202,"y":68.383},{"x":1758126965052,"y":60.272},{"x":1758126905363,"y":75.073},{"x":1758126844798,"y":73.66},{"x":1758126782843,"y":72.793},{"x":1758126724589,"y":71.331},{"x":1758126664490,"y":73.23},{"x":1758126604718,"y":79.988},{"x":1758126544289,"y":68.742},{"x":1758126484189,"y":77.004},{"x":1758126424084,"y":72.465},{"x":1758126363985,"y":68.958},{"x":1758126304225,"y":81.835},{"x":1758126243743,"y":62.979},{"x":1758126183636,"y":81.091},{"x":1758126123536,"y":56.491},{"x":1758126063433,"y":75.512},{"x":1758126003699,"y":72.028},{"x":1758125943230,"y":47.372},{"x":1758125883147,"y":71.586},{"x":1758125823042,"y":59.99},{"x":1758125762888,"y":77.669},{"x":1758125702976,"y":51.38},{"x":1758125642341,"y":64.349},{"x":1758125582153,"y":51.549},{"x":1758125521934,"y":46.788},{"x":1758125461740,"y":60.402},{"x":1758125401934,"y":71.295},{"x":1758125341355,"y":55.211},{"x":1758125281134,"y":48.425},{"x":1758125220939,"y":62.687},{"x":1758125160727,"y":62.202},{"x":1758125101032,"y":64.74},{"x":1758125040476,"y":50.895},{"x":1758124980343,"y":63.518},{"x":1758124920293,"y":74.667},{"x":1758124863018,"y":58.854},{"x":1758124802894,"y":74.152},{"x":1758124750652,"y":58.083},{"x":1758124690497,"y":55.637},{"x":1758124622042,"y":70.997},{"x":1758124560904,"y":48.705},{"x":1758124501280,"y":56.399},{"x":1758124441824,"y":49.149},{"x":1758124389933,"y":46.309},{"x":1758124329787,"y":47.743},{"x":1758124260473,"y":54.719},{"x":1758124202003,"y":73.337},{"x":1758124140296,"y":74.372},{"x":1758124080424,"y":100.196},{"x":1758124020455,"y":71.091},{"x":1758123969160,"y":71.091},{"x":1758123901327,"y":73.992},{"x":1758123815579,"y":84.165},{"x":1758122400986,"y":51.005},{"x":1758122341615,"y":67.212},{"x":1758122281620,"y":56.617},{"x":1758122221609,"y":64.841},{"x":1758122161187,"y":58.193},{"x":1758122101936,"y":59.358},{"x":1758122041602,"y":83.783},{"x":1758121985413,"y":81.962},{"x":1758121921693,"y":65.243},{"x":1758121861650,"y":97.546},{"x":1758121805256,"y":93.37},{"x":1758121741638,"y":60.605},{"x":1758121684690,"y":61.298},{"x":1758121624512,"y":55.464},{"x":1758121564421,"y":56.219},{"x":1758121501842,"y":48.919},{"x":1758121444175,"y":69.913},{"x":1758121384061,"y":59.899},{"x":1758121321612,"y":64.513},{"x":1758121261768,"y":73.001},{"x":1758121202302,"y":62.979},{"x":1758121141611,"y":74.011},{"x":1758121081616,"y":53.008},{"x":1758121021620,"y":58.202},{"x":1758120961615,"y":54.488},{"x":1758120901838,"y":56.129},{"x":1758120841611,"y":62.36},{"x":1758120781616,"y":49.495},{"x":1758120721612,"y":60.924},{"x":1758120661622,"y":47.496},{"x":1758120601795,"y":51.941},{"x":1758120541618,"y":55.603},{"x":1758120481628,"y":77.145},{"x":1758120421630,"y":84.107},{"x":1758120361207,"y":79.08},{"x":1758120301821,"y":75.692},{"x":1758120241625,"y":75.602},{"x":1758120181627,"y":95.498},{"x":1758120121605,"y":74.434},{"x":1758120061434,"y":77.415},{"x":1758120001528,"y":91.935},{"x":1758119941242,"y":70.959},{"x":1758119881130,"y":68.913},{"x":1758119821032,"y":86.799},{"x":1758119760878,"y":58.321},{"x":1758119701011,"y":82.65},{"x":1758119640650,"y":60.576},{"x":1758119580658,"y":53.076},{"x":1758119520567,"y":51.12},{"x":1758119461753,"y":50.474},{"x":1758119400956,"y":78.37},{"x":1758119340306,"y":85.185},{"x":1758119283404,"y":64.477},{"x":1758119223273,"y":65.847},{"x":1758119163118,"y":70.177},{"x":1758119103196,"y":57.513},{"x":1758119042941,"y":60.705},{"x":1758118982840,"y":58.053},{"x":1758118922652,"y":63.528},{"x":1758118862583,"y":50.293},{"x":1758118802647,"y":60.386},{"x":1758118742332,"y":65.485},{"x":1758118682235,"y":48.373},{"x":1758118622179,"y":57.7},{"x":1758118562035,"y":57.825},{"x":1758118502159,"y":56.833},{"x":1758118441771,"y":59.348},{"x":1758118381645,"y":68.971},{"x":1758118321673,"y":59.827},{"x":1758118261694,"y":65.218},{"x":1758118201553,"y":52.488},{"x":1758118141216,"y":65.184},{"x":1758118081100,"y":60.478},{"x":1758118020960,"y":69.404},{"x":1758117960850,"y":58.22},{"x":1758117901049,"y":77.482},{"x":1758117840676,"y":89.507},{"x":1758117780585,"y":85.819},{"x":1758117720576,"y":59.43},{"x":1758117660687,"y":107.39},{"x":1758117601754,"y":63.788},{"x":1758117540330,"y":75.987},{"x":1758117483256,"y":70.961},{"x":1758117422964,"y":54.522},{"x":1758117362920,"y":61.983},{"x":1758117302946,"y":74.056},{"x":1758117244923,"y":80.455},{"x":1758117184827,"y":69.086},{"x":1758117122406,"y":62.497},{"x":1758117064245,"y":62.877},{"x":1758117004737,"y":58.857},{"x":1758116944430,"y":63.673},{"x":1758116884312,"y":44.232},{"x":1758116821901,"y":56.947},{"x":1758116764117,"y":42.069},{"x":1758116701851,"y":50.246},{"x":1758116641558,"y":67.306},{"x":1758116581453,"y":66.479},{"x":1758116521617,"y":64.562},{"x":1758116461275,"y":79.413},{"x":1758116401415,"y":74.33},{"x":1758116341044,"y":72.123},{"x":1758116280993,"y":58.827},{"x":1758116221614,"y":58.033},{"x":1758116160743,"y":65.978},{"x":1758116101803,"y":75.36},{"x":1758116040520,"y":62.421},{"x":1758115981618,"y":69.123},{"x":1758115921619,"y":48.955},{"x":1758115862556,"y":70.792},{"x":1758115802655,"y":69.771},{"x":1758115742302,"y":55.945},{"x":1758115682254,"y":59.242},{"x":1758115626550,"y":58.09},{"x":1758115566441,"y":43.102},{"x":1758115506513,"y":70.221},{"x":1758115441789,"y":61.621},{"x":1758115381582,"y":77.836},{"x":1758115321419,"y":74.26},{"x":1758115261335,"y":65.213},{"x":1758115201534,"y":49.889},{"x":1758115141240,"y":72.91},{"x":1758115080891,"y":50.935},{"x":1758115020831,"y":69.24},{"x":1758114960943,"y":43.355},{"x":1758114901078,"y":66.743},{"x":1758114840502,"y":56.699},{"x":1758114780623,"y":58.264},{"x":1758114720723,"y":63.625},{"x":1758114660537,"y":59.86},{"x":1758114605071,"y":48.733},{"x":1758114540399,"y":50.245},{"x":1758114481627,"y":43.421},{"x":1758114421613,"y":66.538},{"x":1758114364417,"y":42.538},{"x":1758114304487,"y":51.479},{"x":1758114241611,"y":65.595},{"x":1758114184119,"y":79.973},{"x":1758114123962,"y":90.363},{"x":1758114063870,"y":65.551},{"x":1758114003543,"y":66.91},{"x":1758113943659,"y":74.138},{"x":1758113881630,"y":57.945},{"x":1758113823462,"y":75.442},{"x":1758113761615,"y":75.436},{"x":1758113701794,"y":68.985},{"x":1758113641618,"y":80.994},{"x":1758113581617,"y":92.197},{"x":1758113521612,"y":78.404},{"x":1758113461627,"y":72.114},{"x":1758113401795,"y":51.052},{"x":1758113341622,"y":73.84},{"x":1758113281611,"y":51.549},{"x":1758113221616,"y":53.486},{"x":1758113161196,"y":54.074},{"x":1758113101815,"y":65.374},{"x":1758113041618,"y":64.109},{"x":1758112980625,"y":65.083},{"x":1758112921627,"y":44.983},{"x":1758112861629,"y":60.825},{"x":1758112801727,"y":56.736},{"x":1758112741444,"y":38.739},{"x":1758112681341,"y":48.722},{"x":1758112621239,"y":55.625},{"x":1758112561139,"y":54.61},{"x":1758112501235,"y":59.79},{"x":1758112440933,"y":53.508},{"x":1758112380833,"y":65.806},{"x":1758112320759,"y":63.732},{"x":1758112260630,"y":48.621},{"x":1758112201139,"y":48.343},{"x":1758112140473,"y":57.963},{"x":1758112080449,"y":46.505},{"x":1758112020390,"y":46.438},{"x":1758111960363,"y":51.694},{"x":1758111903544,"y":75.151},{"x":1758111842997,"y":60.286},{"x":1758111794229,"y":62.565},{"x":1758111733984,"y":61.636},{"x":1758111662718,"y":63.614},{"x":1758111602773,"y":55.081},{"x":1758111553322,"y":62.336},{"x":1758111482349,"y":70.535},{"x":1758111422276,"y":71.185},{"x":1758111364233,"y":81.636},{"x":1758111305587,"y":106.048},{"x":1758111242042,"y":71.111},{"x":1758111181873,"y":45.635},{"x":1758111131874,"y":42.198},{"x":1758111071659,"y":55.054},{"x":1758111001996,"y":49.838},{"x":1758110941614,"y":60.149},{"x":1758110881354,"y":67.33},{"x":1758110821247,"y":60.563},{"x":1758110761234,"y":61.469},{"x":1758110701819,"y":66.07},{"x":1758110641633,"y":55.897},{"x":1758110581610,"y":51.964},{"x":1758110520766,"y":44.701},{"x":1758110460712,"y":82.879},{"x":1758110401291,"y":58.32},{"x":1758110341614,"y":48.995},{"x":1758110280493,"y":63.663},{"x":1758110220412,"y":63.82},{"x":1758110163491,"y":55.222},{"x":1758110108256,"y":67.083},{"x":1758110047843,"y":73.514},{"x":1758109987599,"y":51.628},{"x":1758109921611,"y":51.417},{"x":1758109867190,"y":55.179},{"x":1758109801829,"y":53.581},{"x":1758109746706,"y":49.092},{"x":1758109686389,"y":46.325},{"x":1758109621625,"y":51.086},{"x":1758109564196,"y":66.159},{"x":1758109505632,"y":79.297},{"x":1758109445482,"y":96.158},{"x":1758109385330,"y":59.078},{"x":1758109322283,"y":73.047},{"x":1758109264877,"y":67.987},{"x":1758109201976,"y":67.269},{"x":1758109141626,"y":66.294},{"x":1758109081614,"y":86.067},{"x":1758109021615,"y":67.18},{"x":1758108961620,"y":77.784},{"x":1758108901842,"y":67.276},{"x":1758108840983,"y":67.622},{"x":1758108780868,"y":65.7},{"x":1758108721625,"y":77.111},{"x":1758108661197,"y":64.377},{"x":1758108601875,"y":61.157},{"x":1758108541626,"y":66.866},{"x":1758108481632,"y":49.496},{"x":1758108421612,"y":55.821},{"x":1758108361611,"y":73.393},{"x":1758108301603,"y":81.412},{"x":1758108241161,"y":66.458},{"x":1758108180965,"y":67.67},{"x":1758108125783,"y":64.451},{"x":1758108060516,"y":50.129},{"x":1758108001032,"y":83.721},{"x":1758107943469,"y":58.372},{"x":1758107881630,"y":90.832},{"x":1758107820764,"y":62.432},{"x":1758107764256,"y":64.511},{"x":1758107702569,"y":68.448},{"x":1758107646017,"y":72.708},{"x":1758107581631,"y":74.431},{"x":1758107520821,"y":52.874},{"x":1758107461705,"y":35.396},{"x":1758107404109,"y":59.219},{"x":1758107341636,"y":55.666},{"x":1758107281629,"y":53.655},{"x":1758107230105,"y":64.269},{"x":1758107163910,"y":66.993},{"x":1758107101849,"y":74.941},{"x":1758107041637,"y":79.394},{"x":1758106980214,"y":45.81},{"x":1758106921270,"y":54.475},{"x":1758106866860,"y":65.801},{"x":1758106802592,"y":53.405},{"x":1758106741331,"y":66.66},{"x":1758106681622,"y":72.905},{"x":1758106621005,"y":64.031},{"x":1758106561027,"y":66.22},{"x":1758106501150,"y":112.589},{"x":1758106441610,"y":76.843},{"x":1758106381640,"y":74.814},{"x":1758106321611,"y":77.688},{"x":1758106261618,"y":83.02},{"x":1758106201950,"y":66.869},{"x":1758106141615,"y":60.536},{"x":1758106081617,"y":54.176},{"x":1758106024885,"y":61.899},{"x":1758105961945,"y":59.9},{"x":1758105901969,"y":52.905},{"x":1758105845627,"y":84.905},{"x":1758105785821,"y":67.112},{"x":1758105725535,"y":70.69},{"x":1758105660518,"y":66.235},{"x":1758105601602,"y":67.301},{"x":1758105541474,"y":57.288},{"x":1758105481612,"y":57.493},{"x":1758105421611,"y":68.906},{"x":1758105361612,"y":78.932},{"x":1758105301915,"y":76.212},{"x":1758105241627,"y":78.493},{"x":1758105181618,"y":78.943},{"x":1758105121615,"y":77.391},{"x":1758105060471,"y":84.058},{"x":1758105002013,"y":85.577},{"x":1758104945461,"y":68.26},{"x":1758104886523,"y":65.337},{"x":1758104826193,"y":72.187},{"x":1758104760678,"y":77.923},{"x":1758104701144,"y":92.572},{"x":1758104647404,"y":81.491},{"x":1758104580563,"y":67.05},{"x":1758104520561,"y":87.486},{"x":1758104461355,"y":74.673},{"x":1758104401473,"y":71.179},{"x":1758104341615,"y":72.815},{"x":1758104281644,"y":82.467},{"x":1758104221622,"y":77.862},{"x":1758104161184,"y":66.229},{"x":1758104101995,"y":73.811},{"x":1758104041648,"y":70.417},{"x":1758103981636,"y":62.881},{"x":1758103921649,"y":86.126},{"x":1758103861666,"y":70.889},{"x":1758103802133,"y":67.716},{"x":1758103745433,"y":49.81},{"x":1758103685848,"y":50.999},{"x":1758103627402,"y":66.439},{"x":1758103560622,"y":74.277},{"x":1758103502113,"y":77.531},{"x":1758103441610,"y":71.633},{"x":1758103381616,"y":68.61},{"x":1758103321668,"y":66.532},{"x":1758103261777,"y":68.686},{"x":1758103202797,"y":70.461},{"x":1758103141632,"y":69.422},{"x":1758103081625,"y":74.633},{"x":1758103021628,"y":95.235},{"x":1758102961619,"y":51.052},{"x":1758102902115,"y":66.966},{"x":1758102841643,"y":53.445},{"x":1758102781631,"y":50.099},{"x":1758102721627,"y":59.127},{"x":1758102661624,"y":58.984},{"x":1758102602238,"y":58.415},{"x":1758102541626,"y":51.832},{"x":1758102481633,"y":59.408},{"x":1758102421654,"y":64.961},{"x":1758102361210,"y":71.161},{"x":1758102302262,"y":70.647},{"x":1758102241690,"y":80.553},{"x":1758102181662,"y":75.289},{"x":1758102121687,"y":70.059},{"x":1758102061679,"y":83.526},{"x":1758102046026,"y":83.525},{"x":1758101114289,"y":63.225},{"x":1758101041642,"y":70.005},{"x":1758100993950,"y":70.557},{"x":1758100933844,"y":78.31},{"x":1758100873745,"y":61.127},{"x":1758100813791,"y":71.023},{"x":1758100753543,"y":89.863},{"x":1758100692420,"y":78.447},{"x":1758100633342,"y":64.214},{"x":1758100573325,"y":94.327},{"x":1758100502723,"y":94.868},{"x":1758100452991,"y":80.642},{"x":1758100381703,"y":94.047},{"x":1758100332787,"y":95.697},{"x":1758100272737,"y":63.258},{"x":1758100212902,"y":69.941},{"x":1758100152479,"y":78.313},{"x":1758100092324,"y":99.282},{"x":1758100032276,"y":61.294},{"x":1758099972176,"y":66.281},{"x":1758099912226,"y":86.587},{"x":1758099851987,"y":90.468},{"x":1758099791869,"y":93.335},{"x":1758099722162,"y":114.45},{"x":1758099669397,"y":107.182},{"x":1758099602902,"y":102.721},{"x":1758099542853,"y":108.36},{"x":1758099490592,"y":108.362},{"x":1758099424657,"y":96.422},{"x":1758099371124,"y":59.39},{"x":1758099306094,"y":96.577},{"x":1758099241616,"y":85.103},{"x":1758099190864,"y":83.504},{"x":1758099126979,"y":85.432},{"x":1758099067006,"y":70.103},{"x":1758099007086,"y":66.613},{"x":1758098947139,"y":67.252},{"x":1758098887558,"y":67.575},{"x":1758098827904,"y":60.491},{"x":1758098770127,"y":64.209},{"x":1758098702478,"y":62.456},{"x":1758098649536,"y":57.497},{"x":1758098583522,"y":65.153},{"x":1758098521203,"y":59.55},{"x":1758098464868,"y":64.486},{"x":1758098405393,"y":71.305},{"x":1758098345431,"y":57.224},{"x":1758098285163,"y":59.504},{"x":1758098225109,"y":52.378},{"x":1758098165062,"y":52.544},{"x":1758098105369,"y":50.979},{"x":1758098046749,"y":58.769},{"x":1758097986743,"y":70.666},{"x":1758097927792,"y":89.558},{"x":1758097868596,"y":71.473},{"x":1758097802432,"y":67.212},{"x":1758097742216,"y":69.256},{"x":1758097683207,"y":56.035},{"x":1758097622272,"y":62.002},{"x":1758097562224,"y":59.891},{"x":1758097502653,"y":60.558},{"x":1758097443400,"y":54.23},{"x":1758097384045,"y":70.35},{"x":1758097324045,"y":55.244},{"x":1758097261645,"y":71.045},{"x":1758097201787,"y":74.988},{"x":1758097147383,"y":65.309},{"x":1758097083754,"y":63.895},{"x":1758097023788,"y":56.955},{"x":1758096963602,"y":55.906},{"x":1758096902734,"y":67.514},{"x":1758096844102,"y":58.432},{"x":1758096780800,"y":54.142},{"x":1758096726580,"y":65.23},{"x":1758096664997,"y":71.465},{"x":1758096606090,"y":56.381},{"x":1758096546226,"y":59.324},{"x":1758096486157,"y":58.5},{"x":1758096426032,"y":72.222},{"x":1758096365914,"y":64.647},{"x":1758096305941,"y":63.468},{"x":1758096241644,"y":66.538},{"x":1758096181619,"y":66.884},{"x":1758096121834,"y":63.626},{"x":1758096062034,"y":63.129},{"x":1758096002893,"y":60.102},{"x":1758095940410,"y":66.109},{"x":1758095884500,"y":58.184},{"x":1758095825009,"y":65.019},{"x":1758095764897,"y":57.273},{"x":1758095704935,"y":54.422},{"x":1758095644702,"y":60.247},{"x":1758095584605,"y":73.927},{"x":1758095524524,"y":55.384},{"x":1758095461620,"y":58.548},{"x":1758095404433,"y":58.325},{"x":1758095341619,"y":49.588},{"x":1758095284096,"y":54.896},{"x":1758095221962,"y":64.326},{"x":1758095161674,"y":63.721},{"x":1758095102716,"y":55.82},{"x":1758095043279,"y":58.799},{"x":1758094983101,"y":56.228},{"x":1758094923339,"y":59.546},{"x":1758094862973,"y":65.703},{"x":1758094803365,"y":67.988},{"x":1758094743154,"y":73.704},{"x":1758094682987,"y":71.182},{"x":1758094622881,"y":77.033},{"x":1758094562716,"y":54.078},{"x":1758094500946,"y":53.432},{"x":1758094441070,"y":63.7},{"x":1758094381052,"y":56.528},{"x":1758094322324,"y":55.514},{"x":1758094262223,"y":52.801},{"x":1758094201864,"y":59.939},{"x":1758094142041,"y":55.144},{"x":1758094081661,"y":58.58},{"x":1758094021818,"y":56.927},{"x":1758093963102,"y":62.923},{"x":1758093901780,"y":54.314},{"x":1758093841516,"y":64.781},{"x":1758093781454,"y":74.054},{"x":1758093722375,"y":79.142},{"x":1758093662223,"y":89.691},{"x":1758093602266,"y":79.401},{"x":1758093542028,"y":93.685},{"x":1758093481929,"y":97.357},{"x":1758093421836,"y":81.185},{"x":1758093361675,"y":78.045},{"x":1758093300992,"y":74.863},{"x":1758093240484,"y":80.046},{"x":1758093183174,"y":86.772},{"x":1758093120291,"y":70.306},{"x":1758093066031,"y":78.896},{"x":1758093002964,"y":77.551},{"x":1758092943059,"y":57.159},{"x":1758092882691,"y":55.006},{"x":1758092820699,"y":51.946},{"x":1758092762598,"y":57.307},{"x":1758092700868,"y":51.425},{"x":1758092642405,"y":48.226},{"x":1758092581642,"y":56.376},{"x":1758092522199,"y":62.009},{"x":1758092461665,"y":67.839},{"x":1758092402433,"y":71.516},{"x":1758092341843,"y":61.073},{"x":1758092281740,"y":59.917},{"x":1758092221644,"y":71.594},{"x":1758092161542,"y":66.316},{"x":1758092101532,"y":64.361},{"x":1758092041296,"y":64.932},{"x":1758091981207,"y":64.643},{"x":1758091921089,"y":60.374},{"x":1758091861034,"y":57.212},{"x":1758091801148,"y":50.303},{"x":1758091740783,"y":61.732},{"x":1758091680642,"y":58.044},{"x":1758091620560,"y":59.942},{"x":1758091560582,"y":59.336},{"x":1758091501037,"y":64.563},{"x":1758091440358,"y":62.566},{"x":1758091383461,"y":63.899},{"x":1758091320131,"y":62.014},{"x":1758091263660,"y":75.168},{"x":1758091203695,"y":65.343},{"x":1758091143468,"y":74.833},{"x":1758091083360,"y":69.615},{"x":1758091023258,"y":80.038},{"x":1758090963113,"y":92.597},{"x":1758090903146,"y":82.626},{"x":1758090842905,"y":87.941},{"x":1758090782800,"y":86.252},{"x":1758090722697,"y":100.194},{"x":1758090662609,"y":83.364},{"x":1758090602636,"y":73.909},{"x":1758090542395,"y":70.893},{"x":1758090482304,"y":90.545},{"x":1758090422189,"y":80.495},{"x":1758090362091,"y":101.303},{"x":1758090302134,"y":68.728},{"x":1758090241910,"y":73.438},{"x":1758090181787,"y":90.777},{"x":1758090120409,"y":90.734},{"x":1758090061589,"y":73.602},{"x":1758090001631,"y":72.875},{"x":1758089941381,"y":105.721},{"x":1758089881645,"y":100.589},{"x":1758089821663,"y":108.967},{"x":1758089761077,"y":84.171},{"x":1758089701183,"y":72.228},{"x":1758089640882,"y":72.117},{"x":1758089580778,"y":70.496},{"x":1758089521641,"y":54.762},{"x":1758089461792,"y":43.944},{"x":1758089400986,"y":46.986},{"x":1758089341645,"y":39.408},{"x":1758089280532,"y":36.596},{"x":1758089221645,"y":47.902},{"x":1758089161657,"y":46.678},{"x":1758089101796,"y":46.129},{"x":1758089041644,"y":48.246},{"x":1758088981634,"y":48.063},{"x":1758088921651,"y":57.403},{"x":1758088860710,"y":55.318},{"x":1758088802141,"y":47.818},{"x":1758088740959,"y":38.859},{"x":1758088681891,"y":32.825},{"x":1758088621648,"y":30.88},{"x":1758088561719,"y":32.556},{"x":1758088501811,"y":35.038},{"x":1758088440939,"y":37.222},{"x":1758088381668,"y":49.986},{"x":1758088321667,"y":50.728},{"x":1758088261747,"y":52.998},{"x":1758088201718,"y":50.432},{"x":1758088142564,"y":49.099},{"x":1758088084761,"y":37.56},{"x":1758088021284,"y":32.375},{"x":1758087962532,"y":31.277},{"x":1758087903719,"y":30.581},{"x":1758087841046,"y":30.653},{"x":1758087784209,"y":30.918},{"x":1758087720840,"y":38.508},{"x":1758087660676,"y":36.441},{"x":1758087600993,"y":39.274},{"x":1758087540545,"y":34.591},{"x":1758087480502,"y":42.107},{"x":1758087423593,"y":37.195},{"x":1758087363495,"y":38.05},{"x":1758087303550,"y":37.609},{"x":1758087243301,"y":34.368},{"x":1758087183196,"y":43.359},{"x":1758087123089,"y":37.826},{"x":1758087063019,"y":36.498},{"x":1758087001795,"y":42.201},{"x":1758086942162,"y":53.869},{"x":1758086882638,"y":54.911},{"x":1758086822544,"y":50.23},{"x":1758086762435,"y":49.334},{"x":1758086702466,"y":48.795},{"x":1758086642234,"y":34.275},{"x":1758086582135,"y":36.55},{"x":1758086522044,"y":32.669},{"x":1758086461882,"y":32.872},{"x":1758086401882,"y":36.13},{"x":1758086343088,"y":33.271},{"x":1758086280295,"y":40.816},{"x":1758086221439,"y":33.581},{"x":1758086162782,"y":34.924},{"x":1758086101917,"y":38.715},{"x":1758086041139,"y":38.808},{"x":1758085982537,"y":42.615},{"x":1758085920934,"y":34.545},{"x":1758085860863,"y":36.21},{"x":1758085808174,"y":32.618},{"x":1758085740632,"y":36.229},{"x":1758085680621,"y":43.63},{"x":1758085620650,"y":35.77},{"x":1758085561791,"y":35.588},{"x":1758085503231,"y":32.736},{"x":1758085440050,"y":34.673},{"x":1758085386480,"y":41.597},{"x":1758085327070,"y":38.06},{"x":1758085266974,"y":41.988},{"x":1758085203146,"y":36.442},{"x":1758085146703,"y":38.59},{"x":1758085086562,"y":34.513},{"x":1758085026408,"y":40.471},{"x":1758084962261,"y":38.778},{"x":1758084901803,"y":34.167},{"x":1758084842817,"y":33.037},{"x":1758084785907,"y":33.51},{"x":1758084725752,"y":32.793},{"x":1758084661244,"y":33.942},{"x":1758084604589,"y":51.085},{"x":1758084545450,"y":47.22},{"x":1758084485295,"y":52.984},{"x":1758084421326,"y":48.414},{"x":1758084364700,"y":49.499},{"x":1758084302730,"y":36.66},{"x":1758084244847,"y":38.243},{"x":1758084184702,"y":35.049},{"x":1758084121003,"y":36.374},{"x":1758084061986,"y":34.062},{"x":1758084004377,"y":38.967},{"x":1758083942344,"y":38.394},{"x":1758083882108,"y":41.453},{"x":1758083822069,"y":46.3},{"x":1758083761841,"y":43.358},{"x":1758083702350,"y":40.66},{"x":1758083643077,"y":37.296},{"x":1758083583318,"y":36.421},{"x":1758083523364,"y":35.228},{"x":1758083463245,"y":37.738},{"x":1758083402733,"y":36.637},{"x":1758083342979,"y":33.509},{"x":1758083282871,"y":33.121},{"x":1758083222724,"y":41.45},{"x":1758083164184,"y":48.377},{"x":1758083103789,"y":47.611},{"x":1758083043922,"y":47.722},{"x":1758082982223,"y":45.015},{"x":1758082922128,"y":36.849},{"x":1758082861979,"y":32.225},{"x":1758082802024,"y":33.45},{"x":1758082741718,"y":33.231},{"x":1758082683072,"y":32.669},{"x":1758082622924,"y":34.916},{"x":1758082561318,"y":34.584},{"x":1758082501374,"y":34.424},{"x":1758082442521,"y":37.762},{"x":1758082380964,"y":34.632},{"x":1758082321758,"y":36.691},{"x":1758082260739,"y":37.3},{"x":1758082205668,"y":33.829},{"x":1758082141963,"y":30.704},{"x":1758082083234,"y":39.668},{"x":1758082021753,"y":40.423},{"x":1758081961684,"y":41.741},{"x":1758081902551,"y":44.26},{"x":1758081841639,"y":43.655},{"x":1758081781723,"y":38.12},{"x":1758081721107,"y":32.337},{"x":1758081665177,"y":39.604},{"x":1758081602350,"y":35.295},{"x":1758081541701,"y":37.01},{"x":1758081481630,"y":30.757},{"x":1758081424688,"y":31.242},{"x":1758081361639,"y":35.884},{"x":1758081304625,"y":34.377},{"x":1758081241633,"y":37.24},{"x":1758081181637,"y":35.449},{"x":1758081121545,"y":31.16},{"x":1758081061531,"y":31.096},{"x":1758081001484,"y":34.381},{"x":1758080941206,"y":35.662},{"x":1758080881061,"y":37.0},{"x":1758080820936,"y":48.825},{"x":1758080760842,"y":43.874},{"x":1758080702758,"y":41.559},{"x":1758080640712,"y":42.005},{"x":1758080580564,"y":46.578},{"x":1758080523096,"y":32.518},{"x":1758080460446,"y":36.298},{"x":1758080403024,"y":37.387},{"x":1758080340273,"y":33.522},{"x":1758080282969,"y":35.452},{"x":1758080235594,"y":37.171},{"x":1758080162472,"y":41.57},{"x":1758080102708,"y":40.275},{"x":1758080042283,"y":35.783},{"x":1758079995619,"y":40.877},{"x":1758079922226,"y":32.15},{"x":1758079861967,"y":34.277},{"x":1758079802760,"y":37.381},{"x":1758079755598,"y":33.061},{"x":1758079681680,"y":33.58},{"x":1758079635597,"y":33.305},{"x":1758079561407,"y":35.911},{"x":1758079501801,"y":39.443},{"x":1758079455590,"y":35.501},{"x":1758079381636,"y":40.481},{"x":1758079320997,"y":35.271},{"x":1758079261631,"y":43.928},{"x":1758079201110,"y":49.992},{"x":1758079140673,"y":45.225},{"x":1758079088920,"y":42.478},{"x":1758079021747,"y":41.277},{"x":1758078960515,"y":32.8},{"x":1758078900928,"y":36.324},{"x":1758078855601,"y":33.054},{"x":1758078795633,"y":36.097},{"x":1758078735649,"y":37.129},{"x":1758078675696,"y":36.711},{"x":1758078602854,"y":41.409},{"x":1758078555604,"y":34.949},{"x":1758078482383,"y":43.384},{"x":1758078422278,"y":41.351},{"x":1758078362180,"y":38.408},{"x":1758078302140,"y":43.389},{"x":1758078241678,"y":42.541},{"x":1758078195663,"y":50.191},{"x":1758078135614,"y":52.567},{"x":1758078075655,"y":50.739},{"x":1758078002682,"y":57.062},{"x":1758077941465,"y":52.502},{"x":1758077881359,"y":40.401},{"x":1758077835593,"y":37.883},{"x":1758077761167,"y":40.449},{"x":1758077701222,"y":40.486},{"x":1758077640965,"y":39.158},{"x":1758077580461,"y":38.353},{"x":1758077535594,"y":40.3},{"x":1758077460415,"y":41.718},{"x":1758077400804,"y":44.927},{"x":1758077343156,"y":40.293},{"x":1758077280466,"y":44.468},{"x":1758077220336,"y":41.925},{"x":1758077161161,"y":41.682},{"x":1758077104515,"y":43.626},{"x":1758077055599,"y":45.215},{"x":1758076989723,"y":40.701},{"x":1758076935617,"y":52.757},{"x":1758076864279,"y":59.073},{"x":1758076811202,"y":54.932},{"x":1758076750498,"y":54.907},{"x":1758076685212,"y":55.224},{"x":1758076623752,"y":42.22},{"x":1758076571285,"y":44.919},{"x":1758076511776,"y":43.665},{"x":1758076455624,"y":47.209},{"x":1758076386386,"y":45.45},{"x":1758076333943,"y":41.777},{"x":1758076262043,"y":46.668},{"x":1758076202179,"y":45.426},{"x":1758076148654,"y":46.006},{"x":1758076081808,"y":48.414},{"x":1758076022350,"y":43.406},{"x":1758075961596,"y":42.922},{"x":1758075902013,"y":42.386},{"x":1758075843314,"y":47.105},{"x":1758075783423,"y":43.925},{"x":1758075730839,"y":45.381},{"x":1758075664496,"y":48.128},{"x":1758075605775,"y":43.467},{"x":1758075545807,"y":45.365},{"x":1758075486135,"y":39.57},{"x":1758075426564,"y":40.689},{"x":1758075366508,"y":40.901},{"x":1758075302786,"y":38.424},{"x":1758075246816,"y":45.593},{"x":1758075186686,"y":49.104},{"x":1758075127740,"y":49.482},{"x":1758075061875,"y":51.333},{"x":1758075009124,"y":53.329},{"x":1758074942675,"y":55.449},{"x":1758074883529,"y":41.815},{"x":1758074823925,"y":42.21},{"x":1758074764304,"y":38.259},{"x":1758074704384,"y":38.168},{"x":1758074640289,"y":41.902},{"x":1758074580359,"y":47.05},{"x":1758074524254,"y":45.463},{"x":1758074464703,"y":47.478},{"x":1758074402950,"y":47.926},{"x":1758074346833,"y":52.478},{"x":1758074286696,"y":42.952},{"x":1758074227586,"y":45.498},{"x":1758074167822,"y":44.048},{"x":1758074107871,"y":38.791},{"x":1758074047812,"y":48.985},{"x":1758073981649,"y":37.239},{"x":1758073921760,"y":40.143},{"x":1758073862380,"y":39.178},{"x":1758073802359,"y":43.023},{"x":1758073743212,"y":48.579},{"x":1758073683998,"y":40.208},{"x":1758073625175,"y":45.002},{"x":1758073565173,"y":55.383},{"x":1758073502746,"y":54.642},{"x":1758073445867,"y":57.013},{"x":1758073385392,"y":49.947},{"x":1758073325298,"y":49.485},{"x":1758073265258,"y":39.795},{"x":1758073206299,"y":37.92},{"x":1758073146389,"y":41.727},{"x":1758073084860,"y":41.381},{"x":1758073021620,"y":42.0},{"x":1758072962482,"y":41.12},{"x":1758072902602,"y":37.591},{"x":1758072842457,"y":37.757},{"x":1758072783231,"y":40.854},{"x":1758072723181,"y":41.28},{"x":1758072662491,"y":44.695},{"x":1758072602813,"y":43.421},{"x":1758072543230,"y":41.984},{"x":1758072483875,"y":44.189},{"x":1758072423623,"y":37.29},{"x":1758072363551,"y":36.588},{"x":1758072303471,"y":38.928},{"x":1758072243151,"y":36.704},{"x":1758072182925,"y":38.071},{"x":1758072122719,"y":37.268},{"x":1758072062476,"y":44.314},{"x":1758072002403,"y":38.506},{"x":1758071942037,"y":38.578},{"x":1758071881824,"y":48.172},{"x":1758071821699,"y":38.147},{"x":1758071761337,"y":37.99},{"x":1758071701301,"y":38.083},{"x":1758071640932,"y":36.194},{"x":1758071584626,"y":39.88},{"x":1758071521053,"y":38.364},{"x":1758071464593,"y":36.76},{"x":1758071405320,"y":35.558},{"x":1758071341213,"y":37.701},{"x":1758071281606,"y":55.425},{"x":1758071221255,"y":48.437},{"x":1758071161654,"y":48.488},{"x":1758071101808,"y":50.669},{"x":1758071041658,"y":47.711},{"x":1758070981658,"y":39.961},{"x":1758070921526,"y":36.229},{"x":1758070862525,"y":37.638},{"x":1758070801814,"y":38.312},{"x":1758070740846,"y":37.198},{"x":1758070680623,"y":43.037},{"x":1758070620515,"y":40.593},{"x":1758070568691,"y":40.282},{"x":1758070503333,"y":39.51},{"x":1758070443352,"y":42.474},{"x":1758070384546,"y":51.005},{"x":1758070335596,"y":57.198},{"x":1758070261979,"y":56.169},{"x":1758070215514,"y":48.684},{"x":1758070147515,"y":46.264},{"x":1758070087467,"y":37.287},{"x":1758070027484,"y":37.094},{"x":1758069966777,"y":38.004},{"x":1758069902757,"y":41.864},{"x":1758069841247,"y":40.155},{"x":1758069794086,"y":41.843},{"x":1758069721911,"y":41.457},{"x":1758069668843,"y":42.93},{"x":1758069609640,"y":39.749},{"x":1758069543569,"y":37.684},{"x":1758069484598,"y":38.482},{"x":1758069425266,"y":39.991},{"x":1758069371945,"y":37.791},{"x":1758069305395,"y":41.215},{"x":1758069244563,"y":51.718},{"x":1758069191298,"y":50.382},{"x":1758069131803,"y":53.881},{"x":1758069065917,"y":55.006},{"x":1758069002770,"y":53.474},{"x":1758068940621,"y":45.715},{"x":1758068887279,"y":45.968},{"x":1758068822627,"y":47.774},{"x":1758068762927,"y":41.973},{"x":1758068702300,"y":40.325},{"x":1758068642896,"y":46.684},{"x":1758068589402,"y":45.116},{"x":1758068522943,"y":46.383},{"x":1758068463293,"y":46.918},{"x":1758068409821,"y":43.81},{"x":1758068350976,"y":42.349},{"x":1758068287184,"y":42.864},{"x":1758068225054,"y":47.082},{"x":1758068166355,"y":40.801},{"x":1758068102752,"y":39.942},{"x":1758068051198,"y":40.479},{"x":1758067991050,"y":40.244},{"x":1758067930918,"y":49.22},{"x":1758067870825,"y":40.56},{"x":1758067810860,"y":45.147},{"x":1758067747110,"y":43.649},{"x":1758067687095,"y":42.322},{"x":1758067621790,"y":48.616},{"x":1758067562445,"y":41.072},{"x":1758067503932,"y":39.238},{"x":1758067444712,"y":41.331},{"x":1758067384754,"y":40.98},{"x":1758067324722,"y":44.001},{"x":1758067264690,"y":37.536},{"x":1758067203083,"y":41.217},{"x":1758067149425,"y":39.462},{"x":1758067084608,"y":42.321},{"x":1758067025597,"y":45.165},{"x":1758066965874,"y":44.461},{"x":1758066907540,"y":41.874},{"x":1758066847416,"y":42.821},{"x":1758066788569,"y":43.323},{"x":1758066722779,"y":47.332},{"x":1758066662914,"y":41.05},{"x":1758066602292,"y":44.248},{"x":1758066542544,"y":38.541},{"x":1758066486911,"y":37.615},{"x":1758066422192,"y":44.123},{"x":1758066360099,"y":38.641},{"x":1758066302766,"y":36.642},{"x":1758066244804,"y":40.95},{"x":1758066184650,"y":42.305},{"x":1758066125548,"y":45.044},{"x":1758066065991,"y":45.348},{"x":1758066007205,"y":42.833},{"x":1758065946955,"y":42.287},{"x":1758065881633,"y":37.78},{"x":1758065826772,"y":34.333},{"x":1758065766602,"y":30.485},{"x":1758065706647,"y":31.77},{"x":1758065646397,"y":44.794},{"x":1758065581660,"y":43.68},{"x":1758065522670,"y":47.427},{"x":1758065462636,"y":45.861},{"x":1758065402770,"y":47.106},{"x":1758065344736,"y":35.544},{"x":1758065283942,"y":31.723},{"x":1758065223924,"y":40.207},{"x":1758065165487,"y":32.734},{"x":1758065103976,"y":29.349},{"x":1758065043999,"y":26.309},{"x":1758064984863,"y":32.885},{"x":1758064925081,"y":34.132},{"x":1758064864930,"y":31.566},{"x":1758064804981,"y":45.09},{"x":1758064741621,"y":40.661},{"x":1758064681640,"y":34.84},{"x":1758064622637,"y":34.359},{"x":1758064562111,"y":30.75},{"x":1758064502148,"y":28.711},{"x":1758064442131,"y":39.952},{"x":1758064382089,"y":40.97},{"x":1758064321970,"y":56.739},{"x":1758064263029,"y":51.573},{"x":1758064203822,"y":46.078},{"x":1758064143569,"y":43.178},{"x":1758064083539,"y":47.567},{"x":1758064023319,"y":37.476},{"x":1758063963207,"y":35.471},{"x":1758063903229,"y":35.433},{"x":1758063842964,"y":30.17},{"x":1758063782867,"y":28.869},{"x":1758063722721,"y":29.656},{"x":1758063662626,"y":28.307},{"x":1758063602950,"y":29.448},{"x":1758063542406,"y":29.636},{"x":1758063482337,"y":35.309},{"x":1758063422205,"y":32.44},{"x":1758063362072,"y":34.359},{"x":1758063302107,"y":34.502},{"x":1758063241854,"y":35.215},{"x":1758063181776,"y":31.997},{"x":1758063121655,"y":29.268},{"x":1758063061655,"y":30.108},{"x":1758063007169,"y":30.827},{"x":1758062946922,"y":30.59},{"x":1758062886364,"y":30.444},{"x":1758062826720,"y":37.124},{"x":1758062766621,"y":42.013},{"x":1758062702764,"y":42.509},{"x":1758062646372,"y":43.304},{"x":1758062586269,"y":42.096},{"x":1758062526171,"y":44.037},{"x":1758062466079,"y":31.162},{"x":1758062406117,"y":34.797},{"x":1758062345882,"y":32.513},{"x":1758062283847,"y":33.811},{"x":1758062225660,"y":35.051},{"x":1758062165563,"y":39.418},{"x":1758062105594,"y":36.905},{"x":1758062045358,"y":39.877},{"x":1758061985255,"y":39.607},{"x":1758061925155,"y":35.404},{"x":1758061865063,"y":41.1},{"x":1758061802785,"y":35.801},{"x":1758061744853,"y":37.39},{"x":1758061684752,"y":33.862},{"x":1758061624647,"y":33.12},{"x":1758061564548,"y":36.706},{"x":1758061504588,"y":38.434},{"x":1758061444342,"y":36.127},{"x":1758061384241,"y":35.436},{"x":1758061321266,"y":36.963},{"x":1758061264083,"y":60.767},{"x":1758061204101,"y":60.198},{"x":1758061143836,"y":55.486},{"x":1758061083743,"y":57.606},{"x":1758061023654,"y":52.189},{"x":1758060963547,"y":36.149},{"x":1758060902772,"y":33.923},{"x":1758060843334,"y":35.411},{"x":1758060783275,"y":37.285},{"x":1758060723094,"y":36.383},{"x":1758060663011,"y":44.827},{"x":1758060603087,"y":39.067},{"x":1758060542779,"y":35.53},{"x":1758060483777,"y":35.423},{"x":1758060422577,"y":34.499},{"x":1758060362472,"y":38.067},{"x":1758060302520,"y":32.351},{"x":1758060242276,"y":37.985},{"x":1758060182206,"y":34.729},{"x":1758060122082,"y":34.338},{"x":1758060061979,"y":37.343},{"x":1758060002625,"y":38.113},{"x":1758059941765,"y":34.188},{"x":1758059881670,"y":36.843},{"x":1758059822632,"y":36.226},{"x":1758059762516,"y":40.535},{"x":1758059702560,"y":35.421},{"x":1758059642314,"y":33.9},{"x":1758059582207,"y":47.535},{"x":1758059522110,"y":46.852},{"x":1758059462012,"y":53.467},{"x":1758059402062,"y":45.559},{"x":1758059341810,"y":43.18},{"x":1758059281706,"y":34.872},{"x":1758059220582,"y":39.749},{"x":1758059168956,"y":47.122},{"x":1758059102767,"y":42.401},{"x":1758059048752,"y":45.522},{"x":1758058983167,"y":44.323},{"x":1758058928551,"y":46.825},{"x":1758058868463,"y":48.022},{"x":1758058808484,"y":40.486},{"x":1758058748198,"y":43.919},{"x":1758058683599,"y":39.842},{"x":1758058627997,"y":42.017},{"x":1758058567889,"y":43.686},{"x":1758058507946,"y":43.727},{"x":1758058447692,"y":41.074},{"x":1758058387586,"y":47.431},{"x":1758058327485,"y":44.323},{"x":1758058267386,"y":43.839},{"x":1758058202777,"y":43.986},{"x":1758058147185,"y":43.415},{"x":1758058085586,"y":47.584},{"x":1758058027011,"y":45.905},{"x":1758057966877,"y":53.883},{"x":1758057906913,"y":56.128},{"x":1758057846689,"y":58.72},{"x":1758057786578,"y":52.815},{"x":1758057726476,"y":57.217},{"x":1758057666377,"y":50.877},{"x":1758057606427,"y":55.987},{"x":1758057546173,"y":50.905},{"x":1758057485481,"y":60.347},{"x":1758057425977,"y":61.239},{"x":1758057365896,"y":47.069},{"x":1758057302777,"y":48.076},{"x":1758057245672,"y":42.868},{"x":1758057185564,"y":45.877},{"x":1758057125460,"y":46.041},{"x":1758057065420,"y":48.319},{"x":1758057005462,"y":58.264},{"x":1758056945163,"y":51.135},{"x":1758056885086,"y":46.168},{"x":1758056824954,"y":55.832},{"x":1758056764858,"y":48.251},{"x":1758056704896,"y":62.453},{"x":1758056644656,"y":58.771},{"x":1758056584555,"y":50.387},{"x":1758056524273,"y":45.847},{"x":1758056463521,"y":49.101},{"x":1758056402868,"y":49.703},{"x":1758056344155,"y":56.275},{"x":1758056284051,"y":78.297},{"x":1758056223946,"y":48.558},{"x":1758056163846,"y":75.066},{"x":1758056103883,"y":70.39},{"x":1758056043641,"y":66.544},{"x":1758055982113,"y":67.685},{"x":1758055922261,"y":76.403},{"x":1758055863346,"y":75.732},{"x":1758055803397,"y":82.318},{"x":1758055742081,"y":44.453},{"x":1758055682296,"y":57.847},{"x":1758055622563,"y":63.953},{"x":1758055562835,"y":48.898},{"x":1758055502820,"y":66.257},{"x":1758055442664,"y":82.041},{"x":1758055382533,"y":70.714},{"x":1758055322431,"y":52.248},{"x":1758055262332,"y":52.178},{"x":1758055202371,"y":48.26},{"x":1758055142128,"y":72.857},{"x":1758055082092,"y":68.318},{"x":1758055022813,"y":70.114},{"x":1758054961834,"y":65.47},{"x":1758054901868,"y":72.714},{"x":1758054841632,"y":48.038},{"x":1758054781554,"y":71.962},{"x":1758054721644,"y":56.117},{"x":1758054661319,"y":53.235},{"x":1758054601514,"y":57.132},{"x":1758054541665,"y":53.163},{"x":1758054481775,"y":48.069},{"x":1758054421680,"y":53.535},{"x":1758054361671,"y":55.56},{"x":1758054301077,"y":61.927},{"x":1758054241677,"y":57.981},{"x":1758054181684,"y":66.29},{"x":1758054121678,"y":66.492},{"x":1758054061674,"y":71.177},{"x":1758054001842,"y":73.266},{"x":1758053941425,"y":104.635},{"x":1758053881227,"y":102.032},{"x":1758053821031,"y":73.412},{"x":1758053761262,"y":66.007},{"x":1758053700997,"y":49.613},{"x":1758053640546,"y":49.209},{"x":1758053581730,"y":48.965},{"x":1758053521500,"y":47.597},{"x":1758053461377,"y":66.428},{"x":1758053404342,"y":73.595},{"x":1758053345176,"y":47.56},{"x":1758053282077,"y":52.403},{"x":1758053221434,"y":53.896},{"x":1758053161667,"y":49.662},{"x":1758053101479,"y":72.273},{"x":1758053041076,"y":51.741},{"x":1758052980840,"y":60.645},{"x":1758052921466,"y":58.542},{"x":1758052860623,"y":73.15},{"x":1758052801318,"y":73.293},{"x":1758052741156,"y":64.547},{"x":1758052684218,"y":60.842},{"x":1758052622866,"y":72.959},{"x":1758052562932,"y":70.761},{"x":1758052501039,"y":59.866},{"x":1758052442495,"y":55.338},{"x":1758052383181,"y":53.469},{"x":1758052323177,"y":77.153},{"x":1758052261429,"y":61.463},{"x":1758052202177,"y":75.454},{"x":1758052143192,"y":52.443},{"x":1758052083097,"y":63.951},{"x":1758052022991,"y":56.985},{"x":1758051962890,"y":60.268},{"x":1758051902760,"y":68.102},{"x":1758051842689,"y":53.84},{"x":1758051782589,"y":51.861},{"x":1758051721213,"y":48.808},{"x":1758051662426,"y":66.805},{"x":1758051602467,"y":64.334},{"x":1758051540259,"y":72.483},{"x":1758051481108,"y":50.622},{"x":1758051421785,"y":54.007},{"x":1758051361835,"y":69.564},{"x":1758051301875,"y":78.99},{"x":1758051241628,"y":58.716},{"x":1758051181523,"y":68.926},{"x":1758051121420,"y":43.887},{"x":1758051061321,"y":45.124},{"x":1758051001493,"y":53.338},{"x":1758050941122,"y":51.813},{"x":1758050883476,"y":52.519},{"x":1758050823326,"y":67.096},{"x":1758050761579,"y":62.768},{"x":1758050703261,"y":66.931},{"x":1758050641637,"y":88.641},{"x":1758050582914,"y":83.681},{"x":1758050521656,"y":78.034},{"x":1758050462709,"y":48.392},{"x":1758050401805,"y":44.387},{"x":1758050341644,"y":63.992},{"x":1758050281650,"y":43.53},{"x":1758050221280,"y":54.184},{"x":1758050162088,"y":56.031},{"x":1758050102292,"y":71.077},{"x":1758050042068,"y":54.07},{"x":1758049981906,"y":65.676},{"x":1758049920337,"y":75.943},{"x":1758049863744,"y":81.708},{"x":1758049801813,"y":51.367},{"x":1758049741449,"y":60.994},{"x":1758049680561,"y":69.101},{"x":1758049621239,"y":72.161},{"x":1758049561643,"y":58.18},{"x":1758049506792,"y":74.358},{"x":1758049447317,"y":60.675},{"x":1758049387140,"y":94.127},{"x":1758049321806,"y":68.091},{"x":1758049260679,"y":61.152},{"x":1758049202071,"y":60.147},{"x":1758049150895,"y":62.407},{"x":1758049080939,"y":60.382},{"x":1758049030635,"y":58.296},{"x":1758048960752,"y":62.035},{"x":1758048900911,"y":61.662},{"x":1758048840574,"y":65.362},{"x":1758048780491,"y":61.5},{"x":1758048730090,"y":65.848},{"x":1758048669944,"y":79.359},{"x":1758048600865,"y":56.471},{"x":1758048549731,"y":63.014},{"x":1758048484019,"y":64.221},{"x":1758048429529,"y":62.726},{"x":1758048369425,"y":54.799},{"x":1758048304718,"y":56.833},{"x":1758048249177,"y":76.041},{"x":1758048189076,"y":73.264},{"x":1758048128977,"y":94.759},{"x":1758048066024,"y":69.288},{"x":1758048008910,"y":73.565},{"x":1758047948636,"y":77.184},{"x":1758047882814,"y":71.181},{"x":1758047828422,"y":78.505},{"x":1758047767852,"y":82.66},{"x":1758047708362,"y":80.127},{"x":1758047648147,"y":88.483},{"x":1758047581464,"y":89.89},{"x":1758047527913,"y":72.22},{"x":1758047462666,"y":84.187},{"x":1758047402736,"y":69.671},{"x":1758047347610,"y":66.626},{"x":1758047283831,"y":61.404},{"x":1758047227404,"y":65.722},{"x":1758047166595,"y":64.302},{"x":1758047107307,"y":63.123},{"x":1758047047061,"y":77.831},{"x":1758046985789,"y":86.995},{"x":1758046925553,"y":64.144},{"x":1758046866056,"y":63.14},{"x":1758046806500,"y":74.935},{"x":1758046746504,"y":64.014},{"x":1758046683755,"y":69.621},{"x":1758046622106,"y":75.82},{"x":1758046566156,"y":55.203},{"x":1758046502729,"y":89.931},{"x":1758046443767,"y":76.221},{"x":1758046383990,"y":95.427},{"x":1758046321629,"y":76.381},{"x":1758046265638,"y":72.891},{"x":1758046200914,"y":76.172},{"x":1758046144612,"y":66.358},{"x":1758046083671,"y":70.861},{"x":1758046025239,"y":58.374},{"x":1758045965147,"y":55.169},{"x":1758045905219,"y":93.686},{"x":1758045844929,"y":73.539},{"x":1758045784838,"y":63.854},{"x":1758045724740,"y":75.128},{"x":1758045661943,"y":75.59},{"x":1758045602901,"y":80.438},{"x":1758045544378,"y":75.165},{"x":1758045481709,"y":82.397},{"x":1758045422145,"y":79.94},{"x":1758045363365,"y":81.813},{"x":1758045304136,"y":95.755},{"x":1758045243869,"y":82.735},{"x":1758045183764,"y":62.667},{"x":1758045123667,"y":69.776},{"x":1758045063564,"y":66.129},{"x":1758045003606,"y":68.911},{"x":1758044943395,"y":80.303},{"x":1758044883233,"y":72.631},{"x":1758044823107,"y":61.789},{"x":1758044763019,"y":74.571},{"x":1758044702742,"y":65.277},{"x":1758044642760,"y":62.406},{"x":1758044582676,"y":49.879},{"x":1758044522143,"y":74.896},{"x":1758044462497,"y":78.691},{"x":1758044402521,"y":66.891},{"x":1758044342270,"y":84.544},{"x":1758044282108,"y":75.297},{"x":1758044222009,"y":58.947},{"x":1758044161850,"y":81.581},{"x":1758044101838,"y":62.432},{"x":1758044044522,"y":58.312},{"x":1758043984854,"y":50.81},{"x":1758043926489,"y":57.462},{"x":1758043866385,"y":57.859},{"x":1758043802772,"y":52.646},{"x":1758043741648,"y":72.328},{"x":1758043683221,"y":56.401},{"x":1758043621671,"y":55.262},{"x":1758043565883,"y":50.006},{"x":1758043501922,"y":51.381},{"x":1758043441647,"y":53.777},{"x":1758043380495,"y":82.888},{"x":1758043320463,"y":66.343},{"x":1758043260472,"y":51.201},{"x":1758043204121,"y":57.118},{"x":1758043141673,"y":56.263},{"x":1758043081651,"y":78.869},{"x":1758043021718,"y":70.13},{"x":1758042961675,"y":67.305},{"x":1758042901968,"y":68.481},{"x":1758042844468,"y":63.623},{"x":1758042784372,"y":76.549},{"x":1758042724218,"y":54.557},{"x":1758042664155,"y":59.154},{"x":1758042601864,"y":58.149},{"x":1758042541652,"y":53.242},{"x":1758042481648,"y":66.075},{"x":1758042423258,"y":68.808},{"x":1758042363516,"y":82.521},{"x":1758042303614,"y":86.132},{"x":1758042243377,"y":70.515},{"x":1758042182499,"y":72.644},{"x":1758042122538,"y":71.708},{"x":1758042060670,"y":63.713},{"x":1758042001725,"y":59.147},{"x":1758041942708,"y":53.761},{"x":1758041880711,"y":66.495},{"x":1758041820626,"y":79.713},{"x":1758041762401,"y":59.874},{"x":1758041701412,"y":65.964},{"x":1758041642161,"y":63.254},{"x":1758041580380,"y":57.646},{"x":1758041520286,"y":59.156},{"x":1758041463075,"y":49.687},{"x":1758041401381,"y":70.839},{"x":1758041348295,"y":72.949},{"x":1758041282449,"y":70.32},{"x":1758041221296,"y":47.79},{"x":1758041170153,"y":59.157},{"x":1758041101374,"y":89.644},{"x":1758041040937,"y":47.506},{"x":1758040985148,"y":57.627},{"x":1758040925143,"y":80.679},{"x":1758040860604,"y":94.213},{"x":1758040800995,"y":86.066},{"x":1758040745906,"y":90.935},{"x":1758040682428,"y":85.949},{"x":1758040626434,"y":67.433},{"x":1758040567296,"y":61.758},{"x":1758040501407,"y":66.563},{"x":1758040442132,"y":79.759},{"x":1758040382165,"y":62.201},{"x":1758040321981,"y":79.568},{"x":1758040262910,"y":56.812},{"x":1758040202065,"y":82.583},{"x":1758040141803,"y":68.003},{"x":1758040082578,"y":77.97},{"x":1758040023663,"y":56.136},{"x":1758039964603,"y":74.668},{"x":1758039901399,"y":89.982},{"x":1758039845031,"y":63.799},{"x":1758039784826,"y":69.451},{"x":1758039724564,"y":73.536},{"x":1758039664384,"y":50.521},{"x":1758039604384,"y":91.54},{"x":1758039543913,"y":62.202},{"x":1758039482491,"y":76.848},{"x":1758039420463,"y":62.897},{"x":1758039363329,"y":69.121},{"x":1758039301858,"y":59.577},{"x":1758039242223,"y":67.187},{"x":1758039182695,"y":78.715},{"x":1758039122503,"y":70.244},{"x":1758039062246,"y":82.044},{"x":1758039002234,"y":86.358},{"x":1758038941655,"y":94.701},{"x":1758038881454,"y":82.234},{"x":1758038821199,"y":87.736},{"x":1758038761234,"y":83.452},{"x":1758038701834,"y":100.969},{"x":1758038645540,"y":73.119},{"x":1758038581674,"y":83.627},{"x":1758038523596,"y":81.34},{"x":1758038461692,"y":77.788},{"x":1758038402502,"y":86.491},{"x":1758038341700,"y":79.788},{"x":1758038282332,"y":54.05},{"x":1758038220452,"y":55.978},{"x":1758038161680,"y":62.738},{"x":1758038109714,"y":82.727},{"x":1758038055625,"y":76.381},{"x":1758037995624,"y":72.703},{"x":1758037935636,"y":69.164},{"x":1758037860623,"y":75.002},{"x":1758037815827,"y":75.698},{"x":1758037740450,"y":65.606},{"x":1758037685418,"y":69.539},{"x":1758037620596,"y":72.701},{"x":1758037567538,"y":68.527},{"x":1758037502784,"y":86.61},{"x":1758037447475,"y":66.922},{"x":1758037381882,"y":51.992},{"x":1758037322125,"y":70.992},{"x":1758037270107,"y":47.973},{"x":1758037209141,"y":56.067},{"x":1758037142185,"y":84.562},{"x":1758037082062,"y":66.05},{"x":1758037027502,"y":70.942},{"x":1758036967415,"y":74.542},{"x":1758036902355,"y":82.246},{"x":1758036847362,"y":59.894},{"x":1758036787327,"y":76.506},{"x":1758036727354,"y":69.838},{"x":1758036662082,"y":57.66},{"x":1758036602827,"y":57.487},{"x":1758036542305,"y":76.051},{"x":1758036481982,"y":78.723},{"x":1758036424227,"y":70.709},{"x":1758036360812,"y":60.45},{"x":1758036301911,"y":51.533},{"x":1758036252289,"y":59.377},{"x":1758036185288,"y":67.132},{"x":1758036130151,"y":77.354},{"x":1758036064482,"y":58.32},{"x":1758036012181,"y":61.679},{"x":1758035944680,"y":60.073},{"x":1758035882019,"y":48.034},{"x":1758035825189,"y":66.037},{"x":1758035773069,"y":48.69},{"x":1758035702802,"y":61.583},{"x":1758035647657,"y":61.407},{"x":1758035581769,"y":71.562},{"x":1758035528404,"y":55.944},{"x":1758035469317,"y":80.584},{"x":1758035409860,"y":71.588},{"x":1758035350847,"y":104.316},{"x":1758035281871,"y":63.89},{"x":1758035225223,"y":83.072},{"x":1758035172551,"y":59.55},{"x":1758035105234,"y":49.568},{"x":1758035045254,"y":36.094},{"x":1758034985083,"y":51.741},{"x":1758034925293,"y":45.533},{"x":1758034865492,"y":53.31},{"x":1758034803042,"y":53.05},{"x":1758034745515,"y":57.811},{"x":1758034681758,"y":59.722},{"x":1758034626934,"y":39.511},{"x":1758034574355,"y":45.236},{"x":1758034502559,"y":47.377},{"x":1758034442314,"y":35.293},{"x":1758034382965,"y":41.058},{"x":1758034323203,"y":28.62},{"x":1758034264023,"y":29.541},{"x":1758034201973,"y":35.934},{"x":1758034145431,"y":44.156},{"x":1758034083830,"y":48.005},{"x":1758034025379,"y":40.01},{"x":1758033965229,"y":55.967},{"x":1758033902800,"y":49.839},{"x":1758033845294,"y":45.311},{"x":1758033785476,"y":36.921},{"x":1758033725981,"y":33.466},{"x":1758033665844,"y":41.71},{"x":1758033607314,"y":35.348},{"x":1758033542702,"y":46.025},{"x":1758033481499,"y":35.124},{"x":1758033424444,"y":39.173},{"x":1758033365984,"y":32.728},{"x":1758033302968,"y":41.257},{"x":1758033243634,"y":54.798},{"x":1758033189899,"y":54.216},{"x":1758033123791,"y":51.351},{"x":1758033064598,"y":59.184},{"x":1758033002815,"y":38.003},{"x":1758032944809,"y":47.596},{"x":1758032881237,"y":68.835},{"x":1758032823882,"y":75.282},{"x":1758032763742,"y":61.043},{"x":1758032704882,"y":75.569},{"x":1758032644593,"y":48.269},{"x":1758032583988,"y":57.034},{"x":1758032525376,"y":39.355},{"x":1758032461810,"y":36.772},{"x":1758032409260,"y":41.359},{"x":1758032342611,"y":39.676},{"x":1758032281291,"y":60.05},{"x":1758032224524,"y":30.027},{"x":1758032164282,"y":28.382},{"x":1758032102859,"y":34.087},{"x":1758032044820,"y":42.095},{"x":1758031984838,"y":47.864},{"x":1758031924472,"y":33.978},{"x":1758031865433,"y":41.073},{"x":1758031802199,"y":46.423},{"x":1758031751452,"y":38.838},{"x":1758031682973,"y":70.372},{"x":1758031625624,"y":48.04},{"x":1758031565773,"y":69.975},{"x":1758031502601,"y":47.985},{"x":1758031442377,"y":42.545},{"x":1758031382149,"y":37.972},{"x":1758031322249,"y":35.688},{"x":1758031262099,"y":61.129},{"x":1758031203005,"y":46.655},{"x":1758031142624,"y":42.56},{"x":1758031081094,"y":47.283},{"x":1758031024249,"y":46.941},{"x":1758030965352,"y":46.105},{"x":1758030906301,"y":53.914},{"x":1758030844177,"y":45.206},{"x":1758030780462,"y":59.014},{"x":1758030724830,"y":64.381},{"x":1758030666276,"y":76.939},{"x":1758030603926,"y":65.191},{"x":1758030543889,"y":56.298},{"x":1758030482715,"y":45.118},{"x":1758030421730,"y":37.162},{"x":1758030361729,"y":42.585},{"x":1758030302692,"y":46.486},{"x":1758030243405,"y":29.641},{"x":1758030184283,"y":35.811},{"x":1758030123711,"y":45.041},{"x":1758030061777,"y":62.404},{"x":1758030003156,"y":56.675},{"x":1758029942683,"y":46.828},{"x":1758029880915,"y":41.175},{"x":1758029824707,"y":35.216},{"x":1758029764527,"y":37.86},{"x":1758029704672,"y":33.842},{"x":1758029644043,"y":37.69},{"x":1758029584508,"y":38.525},{"x":1758029523978,"y":54.69},{"x":1758029464673,"y":34.036},{"x":1758029401932,"y":30.166},{"x":1758029345309,"y":48.872},{"x":1758029281753,"y":52.555},{"x":1758029226217,"y":30.486},{"x":1758029162348,"y":51.953},{"x":1758029101426,"y":57.201},{"x":1758029041130,"y":38.352},{"x":1758028981803,"y":51.888},{"x":1758028925244,"y":52.825},{"x":1758028865463,"y":47.281},{"x":1758028805995,"y":52.814},{"x":1758028745745,"y":50.901},{"x":1758028682333,"y":49.477},{"x":1758028625348,"y":48.678},{"x":1758028565711,"y":62.715},{"x":1758028502836,"y":54.385},{"x":1758028445731,"y":56.069},{"x":1758028385640,"y":63.675},{"x":1758028325578,"y":66.874},{"x":1758028262373,"y":69.027},{"x":1758028201998,"y":74.885},{"x":1758028143685,"y":63.937},{"x":1758028082225,"y":73.664},{"x":1758028021080,"y":70.45},{"x":1758027963510,"y":45.433},{"x":1758027902913,"y":54.925},{"x":1758027843260,"y":63.296},{"x":1758027784302,"y":81.497},{"x":1758027724516,"y":65.65},{"x":1758027664372,"y":65.834},{"x":1758027603693,"y":46.864},{"x":1758027544169,"y":44.945},{"x":1758027482083,"y":63.678},{"x":1758027423960,"y":54.397},{"x":1758027363871,"y":62.72},{"x":1758027303957,"y":69.359},{"x":1758027243663,"y":57.875},{"x":1758027182672,"y":60.566},{"x":1758027122830,"y":54.209},{"x":1758027061714,"y":89.999},{"x":1758027003361,"y":72.136},{"x":1758026943078,"y":63.233},{"x":1758026881961,"y":52.187},{"x":1758026822864,"y":59.749},{"x":1758026762753,"y":60.758},{"x":1758026702849,"y":59.78},{"x":1758026642548,"y":62.257},{"x":1758026582449,"y":62.097},{"x":1758026522386,"y":53.356},{"x":1758026462254,"y":63.316},{"x":1758026402342,"y":65.287},{"x":1758026342090,"y":78.877},{"x":1758026280500,"y":71.483},{"x":1758026221852,"y":51.666},{"x":1758026161755,"y":51.5},{"x":1758026103630,"y":46.035},{"x":1758026043256,"y":62.904},{"x":1758025983147,"y":47.414},{"x":1758025923120,"y":56.237},{"x":1758025862945,"y":56.306},{"x":1758025802805,"y":82.865},{"x":1758025742745,"y":66.382},{"x":1758025682583,"y":58.165},{"x":1758025620789,"y":64.613},{"x":1758025562420,"y":50.423},{"x":1758025502460,"y":53.108},{"x":1758025444929,"y":61.921},{"x":1758025382037,"y":53.016},{"x":1758025321935,"y":84.141},{"x":1758025261680,"y":71.972},{"x":1758025201940,"y":75.676},{"x":1758025144356,"y":69.067},{"x":1758025084251,"y":71.158},{"x":1758025024162,"y":43.77},{"x":1758024964047,"y":38.242},{"x":1758024902920,"y":73.416},{"x":1758024843899,"y":69.851},{"x":1758024783665,"y":63.38},{"x":1758024723674,"y":72.477},{"x":1758024663590,"y":45.383},{"x":1758024603486,"y":24.799},{"x":1758024543145,"y":22.624},{"x":1758024483044,"y":30.913},{"x":1758024422939,"y":48.37},{"x":1758024362830,"y":54.741},{"x":1758024301737,"y":75.971},{"x":1758024242643,"y":67.076},{"x":1758024182539,"y":57.418},{"x":1758024122425,"y":56.787},{"x":1758024061863,"y":55.723},{"x":1758024002762,"y":62.923},{"x":1758023942108,"y":64.111},{"x":1758023883688,"y":94.204},{"x":1758023823633,"y":71.078},{"x":1758023761722,"y":65.132},{"x":1758023703497,"y":53.73},{"x":1758023641525,"y":50.322},{"x":1758023581421,"y":69.351},{"x":1758023521272,"y":58.553},{"x":1758023461170,"y":77.882},{"x":1758023401384,"y":65.572},{"x":1758023343467,"y":94.735},{"x":1758023282433,"y":66.397},{"x":1758023222292,"y":51.386},{"x":1758023162195,"y":72.995},{"x":1758023102830,"y":41.079},{"x":1758023041947,"y":53.224},{"x":1758022981775,"y":40.945},{"x":1758022920490,"y":41.588},{"x":1758022860353,"y":68.582},{"x":1758022804556,"y":49.067},{"x":1758022743093,"y":40.023},{"x":1758022682884,"y":55.982},{"x":1758022621856,"y":49.831},{"x":1758022561700,"y":57.712},{"x":1758022502198,"y":67.576},{"x":1758022441822,"y":59.968},{"x":1758022380745,"y":63.067},{"x":1758022321906,"y":60.414},{"x":1758022261675,"y":62.132},{"x":1758022201996,"y":64.161},{"x":1758022141706,"y":88.924},{"x":1758022081732,"y":70.861},{"x":1758022021681,"y":70.556},{"x":1758021961609,"y":52.433},{"x":1758021901669,"y":48.347},{"x":1758021840424,"y":58.121},{"x":1758021782014,"y":69.606},{"x":1758021721132,"y":70.477},{"x":1758021661121,"y":55.16},{"x":1758021601262,"y":40.966},{"x":1758021540819,"y":32.482},{"x":1758021480913,"y":50.962},{"x":1758021423088,"y":53.812},{"x":1758021360640,"y":67.722},{"x":1758021301411,"y":79.492},{"x":1758021240995,"y":56.449},{"x":1758021180860,"y":51.223},{"x":1758021120512,"y":51.952},{"x":1758021060642,"y":52.761},{"x":1758021003231,"y":50.809},{"x":1758020942871,"y":62.012},{"x":1758020882721,"y":53.59},{"x":1758020821706,"y":66.961},{"x":1758020762439,"y":69.611},{"x":1758020702566,"y":70.187},{"x":1758020642275,"y":70.297},{"x":1758020581992,"y":70.75},{"x":1758020522789,"y":59.727},{"x":1758020462691,"y":47.152},{"x":1758020402955,"y":70.359},{"x":1758020341738,"y":69.994},{"x":1758020281588,"y":58.208},{"x":1758020221442,"y":76.526},{"x":1758020160651,"y":79.3},{"x":1758020102223,"y":87.648},{"x":1758020041185,"y":68.653},{"x":1758019980976,"y":82.75},{"x":1758019920870,"y":60.992},{"x":1758019860783,"y":66.063},{"x":1758019801097,"y":67.545},{"x":1758019740742,"y":64.49},{"x":1758019682794,"y":56.763},{"x":1758019620570,"y":75.191},{"x":1758019560674,"y":63.817},{"x":1758019500068,"y":76.186},{"x":1758019448669,"y":76.118},{"x":1758019383213,"y":96.405},{"x":1758019322913,"y":69.696},{"x":1758019260580,"y":60.734},{"x":1758019203156,"y":62.355},{"x":1758019142572,"y":71.393},{"x":1758019080452,"y":66.209},{"x":1758019027915,"y":58.637},{"x":1758018962241,"y":64.541},{"x":1758018902387,"y":88.477},{"x":1758018842990,"y":77.405},{"x":1758018781946,"y":66.221},{"x":1758018721763,"y":78.225},{"x":1758018660899,"y":91.763},{"x":1758018602013,"y":93.853},{"x":1758018540711,"y":71.555},{"x":1758018480719,"y":99.495},{"x":1758018421246,"y":77.893},{"x":1758018361236,"y":68.027},{"x":1758018306989,"y":65.898},{"x":1758018240974,"y":57.641},{"x":1758018180918,"y":77.38},{"x":1758018120802,"y":68.397},{"x":1758018060612,"y":66.057},{"x":1758018001636,"y":76.134},{"x":1758017945991,"y":74.719},{"x":1758017885918,"y":77.27},{"x":1758017825739,"y":77.431},{"x":1758017765629,"y":52.828},{"x":1758017701368,"y":54.491},{"x":1758017645411,"y":53.86},{"x":1758017585347,"y":66.016},{"x":1758017525244,"y":77.216},{"x":1758017462567,"y":79.321},{"x":1758017405355,"y":68.396},{"x":1758017344809,"y":78.422},{"x":1758017284733,"y":69.881},{"x":1758017224558,"y":80.44},{"x":1758017164448,"y":85.919},{"x":1758017104721,"y":71.097},{"x":1758017044198,"y":71.016},{"x":1758016984111,"y":69.042},{"x":1758016924029,"y":72.237},{"x":1758016863840,"y":60.083},{"x":1758016803268,"y":74.325},{"x":1758016743610,"y":81.707},{"x":1758016683509,"y":78.944},{"x":1758016623481,"y":70.696},{"x":1758016563312,"y":79.455},{"x":1758016503662,"y":106.816},{"x":1758016443138,"y":71.497},{"x":1758016382939,"y":64.322},{"x":1758016322796,"y":86.151},{"x":1758016262649,"y":76.536},{"x":1758016202902,"y":71.434},{"x":1758016142399,"y":77.589},{"x":1758016080633,"y":82.281},{"x":1758016022164,"y":55.69},{"x":1758015962056,"y":67.361},{"x":1758015902379,"y":77.449},{"x":1758015841793,"y":62.099},{"x":1758015781645,"y":67.797},{"x":1758015721565,"y":78.586},{"x":1758015666256,"y":66.907},{"x":1758015607140,"y":64.76},{"x":1758015541343,"y":86.855},{"x":1758015529852,"y":69.803},{"x":1758015526202,"y":69.803},{"x":1758013743124,"y":74.194},{"x":1758013685156,"y":51.378},{"x":1758013623202,"y":57.436},{"x":1758013563071,"y":74.299},{"x":1758013503200,"y":61.253},{"x":1758013444127,"y":59.708},{"x":1758013383175,"y":59.494},{"x":1758013323145,"y":58.205},{"x":1758013260691,"y":59.057},{"x":1758013203547,"y":89.644},{"x":1758013140173,"y":76.346},{"x":1758013092921,"y":59.322},{"x":1758013023325,"y":51.192},{"x":1758012972723,"y":54.977},{"x":1758012903981,"y":55.877},{"x":1758012840033,"y":36.896},{"x":1758012792482,"y":38.845},{"x":1758012723242,"y":24.257},{"x":1758012663187,"y":44.122},{"x":1758012604063,"y":49.368},{"x":1758012543299,"y":52.633},{"x":1758012491907,"y":59.739},{"x":1758012423033,"y":43.914},{"x":1758012362787,"y":66.961},{"x":1758012304858,"y":48.743},{"x":1758012242196,"y":49.426},{"x":1758012191354,"y":45.456},{"x":1758012131251,"y":49.535},{"x":1758012071151,"y":48.016},{"x":1758012001403,"y":45.567},{"x":1758011950951,"y":43.673},{"x":1758011890855,"y":59.08},{"x":1758011820585,"y":52.985},{"x":1758011760420,"y":50.61},{"x":1758011710663,"y":34.2},{"x":1758011650473,"y":34.478},{"x":1758011590291,"y":43.541},{"x":1758011523646,"y":42.079},{"x":1758011462754,"y":30.69},{"x":1758011404869,"y":43.277},{"x":1758011349889,"y":38.04},{"x":1758011281326,"y":66.394},{"x":1758011221047,"y":66.685},{"x":1758011169588,"y":71.118},{"x":1758011109653,"y":70.868},{"x":1758011049386,"y":76.219},{"x":1758010989279,"y":67.538},{"x":1758010923410,"y":71.297},{"x":1758010860174,"y":70.539},{"x":1758010809201,"y":68.877},{"x":1758010748819,"y":67.767},{"x":1758010683373,"y":71.281},{"x":1758010628639,"y":81.76},{"x":1758010568521,"y":49.24},{"x":1758010504838,"y":57.267},{"x":1758010443191,"y":45.512},{"x":1758010383192,"y":46.375},{"x":1758010323130,"y":43.127},{"x":1758010268029,"y":67.482},{"x":1758010203846,"y":66.275},{"x":1758010143178,"y":73.284},{"x":1758010083225,"y":68.825},{"x":1758010027605,"y":67.642},{"x":1758009963203,"y":51.845},{"x":1758009903300,"y":58.315},{"x":1758009847318,"y":43.256},{"x":1758009783141,"y":40.312},{"x":1758009723210,"y":47.345},{"x":1758009660360,"y":55.808},{"x":1758009606007,"y":58.359},{"x":1758009546805,"y":52.851},{"x":1758009483153,"y":63.695},{"x":1758009423270,"y":63.929},{"x":1758009363385,"y":61.281},{"x":1758009300065,"y":51.102},{"x":1758009240058,"y":46.9},{"x":1758009183449,"y":43.868},{"x":1758009123191,"y":49.335},{"x":1758009063156,"y":51.645},{"x":1758009000068,"y":56.973},{"x":1758008943273,"y":46.574},{"x":1758008883096,"y":47.632},{"x":1758008823186,"y":47.418},{"x":1758008765433,"y":49.494},{"x":1758008703401,"y":42.496},{"x":1758008643223,"y":56.435},{"x":1758008585155,"y":50.846},{"x":1758008524986,"y":49.049},{"x":1758008463276,"y":52.476},{"x":1758008403210,"y":48.224},{"x":1758008343163,"y":47.673},{"x":1758008283162,"y":52.617},{"x":1758008223083,"y":51.47},{"x":1758008163259,"y":60.92},{"x":1758008103201,"y":54.184},{"x":1758008043067,"y":49.958},{"x":1758007983069,"y":50.093},{"x":1758007923867,"y":65.584},{"x":1758007862749,"y":56.246},{"x":1758007803209,"y":50.652},{"x":1758007743071,"y":44.794},{"x":1758007683122,"y":62.108},{"x":1758007623367,"y":52.691},{"x":1758007563273,"y":56.791},{"x":1758007503294,"y":51.855},{"x":1758007443192,"y":49.436},{"x":1758007383076,"y":52.27},{"x":1758007325702,"y":56.512},{"x":1758007263277,"y":50.547},{"x":1758007203204,"y":55.768},{"x":1758007143130,"y":47.742},{"x":1758007085297,"y":60.97},{"x":1758007023092,"y":64.518},{"x":1758006965098,"y":67.868},{"x":1758006903863,"y":47.034},{"x":1758006843123,"y":58.356},{"x":1758006783306,"y":48.0},{"x":1758006724690,"y":47.449},{"x":1758006663122,"y":45.9},{"x":1758006603243,"y":46.565},{"x":1758006543101,"y":57.582},{"x":1758006483128,"y":53.818},{"x":1758006423078,"y":60.145},{"x":1758006363131,"y":60.297},{"x":1758006303286,"y":59.499},{"x":1758006243152,"y":72.441},{"x":1758006183202,"y":48.694},{"x":1758006123642,"y":66.349},{"x":1758006060329,"y":71.013},{"x":1758006003332,"y":66.38},{"x":1758005943112,"y":67.943},{"x":1758005883102,"y":78.955},{"x":1758005823133,"y":59.538},{"x":1758005760135,"y":54.113},{"x":1758005708664,"y":63.716},{"x":1758005648462,"y":64.655},{"x":1758005582972,"y":57.532},{"x":1758005522616,"y":63.852},{"x":1758005468069,"y":68.547},{"x":1758005402800,"y":78.702},{"x":1758005347859,"y":46.984},{"x":1758005282417,"y":60.005},{"x":1758005222365,"y":58.487},{"x":1758005162311,"y":61.784},{"x":1758005102275,"y":48.262},{"x":1758005042028,"y":56.181},{"x":1758004987105,"y":53.963},{"x":1758004921816,"y":52.901},{"x":1758004861708,"y":49.524},{"x":1758004801752,"y":76.767},{"x":1758004741523,"y":77.986},{"x":1758004681413,"y":65.13},{"x":1758004626495,"y":87.368},{"x":1758004561203,"y":113.038},{"x":1758004506450,"y":101.364},{"x":1758004446194,"y":92.806},{"x":1758004380915,"y":107.958},{"x":1758004325998,"y":77.129},{"x":1758004262628,"y":90.215},{"x":1758004200947,"y":84.745},{"x":1758004145641,"y":92.062},{"x":1758004085543,"y":83.976},{"x":1758004020427,"y":82.33},{"x":1758003960369,"y":86.303},{"x":1758003905298,"y":72.241},{"x":1758003843266,"y":103.986},{"x":1758003784954,"y":97.133},{"x":1758003724838,"y":105.728},{"x":1758003664734,"y":99.432},{"x":1758003603207,"y":110.409},{"x":1758003544540,"y":76.484},{"x":1758003484430,"y":85.219},{"x":1758003423106,"y":71.179},{"x":1758003362588,"y":61.484},{"x":1758003304210,"y":62.595},{"x":1758003243923,"y":80.52},{"x":1758003183789,"y":69.148},{"x":1758003123705,"y":65.304},{"x":1758003063525,"y":64.061},{"x":1758003003524,"y":66.397},{"x":1758002943279,"y":76.492},{"x":1758002881437,"y":55.522},{"x":1758002823021,"y":54.301},{"x":1758002762935,"y":38.043},{"x":1758002702897,"y":39.188},{"x":1758002643323,"y":39.096},{"x":1758002580938,"y":40.166},{"x":1758002520547,"y":40.528},{"x":1758002460503,"y":39.529},{"x":1758002401649,"y":41.279},{"x":1758002342069,"y":37.223},{"x":1758002285167,"y":36.426},{"x":1758002223112,"y":37.099},{"x":1758002164946,"y":31.918},{"x":1758002101796,"y":33.192},{"x":1758002040147,"y":28.454},{"x":1758001983021,"y":33.07},{"x":1758001924453,"y":35.133},{"x":1758001863123,"y":34.172},{"x":1758001803278,"y":39.815},{"x":1758001744179,"y":33.014},{"x":1758001684003,"y":29.896},{"x":1758001623094,"y":38.121},{"x":1758001563804,"y":32.141},{"x":1758001503910,"y":29.564},{"x":1758001443608,"y":31.402},{"x":1758001383447,"y":30.698},{"x":1758001323076,"y":41.959},{"x":1758001263261,"y":32.129},{"x":1758001203644,"y":34.607},{"x":1758001143201,"y":32.643},{"x":1758001082988,"y":30.113},{"x":1758001027251,"y":36.142},{"x":1758000962733,"y":30.14},{"x":1758000902762,"y":29.862},{"x":1758000842545,"y":29.32},{"x":1758000782444,"y":41.228},{"x":1758000722336,"y":45.792},{"x":1758000662237,"y":38.647},{"x":1758000602336,"y":40.022},{"x":1758000546289,"y":38.665},{"x":1758000486187,"y":31.153},{"x":1758000426117,"y":31.748},{"x":1758000361609,"y":32.858},{"x":1758000301614,"y":30.757},{"x":1758000241384,"y":29.572},{"x":1758000181279,"y":29.143},{"x":1758000121181,"y":29.007},{"x":1758000065423,"y":28.154},{"x":1758000005451,"y":31.319},{"x":1757999940858,"y":32.962},{"x":1757999885085,"y":30.459},{"x":1757999824990,"y":31.322},{"x":1757999760603,"y":29.063},{"x":1757999704818,"y":30.114},{"x":1757999644669,"y":29.584},{"x":1757999580442,"y":41.451},{"x":1757999520114,"y":43.882},{"x":1757999463343,"y":50.756},{"x":1757999404389,"y":49.053},{"x":1757999342782,"y":53.43},{"x":1757999283215,"y":50.587},{"x":1757999223078,"y":42.342},{"x":1757999162446,"y":32.087},{"x":1757999102472,"y":33.917},{"x":1757999043576,"y":31.186},{"x":1757998982161,"y":33.102},{"x":1757998923368,"y":28.819},{"x":1757998863257,"y":32.029},{"x":1757998802630,"y":31.355},{"x":1757998741740,"y":32.672},{"x":1757998681645,"y":37.625},{"x":1757998622687,"y":31.518},{"x":1757998563130,"y":30.245},{"x":1757998508027,"y":34.265},{"x":1757998442320,"y":31.323},{"x":1757998382193,"y":34.892},{"x":1757998323171,"y":31.679},{"x":1757998260892,"y":31.621},{"x":1757998200992,"y":32.453},{"x":1757998141787,"y":34.042},{"x":1757998081688,"y":34.941},{"x":1757998020479,"y":30.668},{"x":1757997960386,"y":31.626},{"x":1757997900913,"y":31.37},{"x":1757997840247,"y":30.079},{"x":1757997785628,"y":30.099},{"x":1757997725428,"y":34.391},{"x":1757997665229,"y":28.895},{"x":1757997603057,"y":28.213},{"x":1757997543068,"y":29.225},{"x":1757997484624,"y":32.409},{"x":1757997424419,"y":32.009},{"x":1757997364276,"y":32.78},{"x":1757997302392,"y":31.208},{"x":1757997243920,"y":39.342},{"x":1757997183766,"y":32.24},{"x":1757997123650,"y":31.674},{"x":1757997063419,"y":42.051},{"x":1757997003491,"y":43.288},{"x":1757996943020,"y":48.012},{"x":1757996882817,"y":43.65},{"x":1757996822613,"y":42.492},{"x":1757996762463,"y":33.756},{"x":1757996701423,"y":34.733},{"x":1757996642123,"y":41.259},{"x":1757996581956,"y":31.923},{"x":1757996521756,"y":35.279},{"x":1757996461601,"y":32.944},{"x":1757996401563,"y":31.996},{"x":1757996343260,"y":38.691},{"x":1757996285754,"y":33.366},{"x":1757996220959,"y":34.992},{"x":1757996160805,"y":33.368},{"x":1757996104829,"y":36.835},{"x":1757996043241,"y":40.08},{"x":1757995985165,"y":38.733},{"x":1757995923130,"y":37.421},{"x":1757995864965,"y":38.605},{"x":1757995804964,"y":41.281},{"x":1757995743222,"y":42.296},{"x":1757995684556,"y":36.79},{"x":1757995623353,"y":34.501},{"x":1757995564348,"y":32.611},{"x":1757995503203,"y":32.802},{"x":1757995443269,"y":33.546},{"x":1757995384001,"y":32.869},{"x":1757995323135,"y":38.931},{"x":1757995263774,"y":32.866},{"x":1757995203844,"y":34.324},{"x":1757995143544,"y":37.44},{"x":1757995083454,"y":36.087},{"x":1757995023338,"y":38.186},{"x":1757994963313,"y":35.073},{"x":1757994900180,"y":35.488},{"x":1757994840209,"y":31.094},{"x":1757994780058,"y":29.991},{"x":1757994725199,"y":29.751},{"x":1757994665047,"y":33.755},{"x":1757994602659,"y":28.646},{"x":1757994544855,"y":32.192},{"x":1757994483442,"y":33.399},{"x":1757994423268,"y":38.41},{"x":1757994364527,"y":36.566},{"x":1757994304562,"y":33.875},{"x":1757994244327,"y":35.267},{"x":1757994183393,"y":31.268},{"x":1757994123145,"y":31.008},{"x":1757994063249,"y":35.267},{"x":1757994003955,"y":29.793},{"x":1757993943726,"y":34.415},{"x":1757993883619,"y":29.48},{"x":1757993823464,"y":31.281},{"x":1757993763108,"y":30.287},{"x":1757993703360,"y":32.05},{"x":1757993643144,"y":37.727},{"x":1757993583201,"y":47.533},{"x":1757993523089,"y":44.241},{"x":1757993462790,"y":41.037},{"x":1757993404842,"y":40.074},{"x":1757993342513,"y":36.087},{"x":1757993284686,"y":29.112},{"x":1757993223146,"y":29.439},{"x":1757993164435,"y":29.09},{"x":1757993104407,"y":32.172},{"x":1757993042718,"y":36.575},{"x":1757992984096,"y":30.131},{"x":1757992923099,"y":32.281},{"x":1757992862335,"y":27.149},{"x":1757992803812,"y":30.51},{"x":1757992743548,"y":32.619},{"x":1757992683460,"y":31.442},{"x":1757992623320,"y":34.835},{"x":1757992563178,"y":30.821},{"x":1757992503233,"y":31.073},{"x":1757992443016,"y":32.045},{"x":1757992382823,"y":31.785},{"x":1757992323141,"y":35.355},{"x":1757992262623,"y":29.761},{"x":1757992202602,"y":36.502},{"x":1757992142347,"y":30.932},{"x":1757992082241,"y":31.846},{"x":1757992022124,"y":30.587},{"x":1757991960570,"y":33.274},{"x":1757991902055,"y":38.861},{"x":1757991840617,"y":29.893},{"x":1757991781641,"y":29.853},{"x":1757991723395,"y":30.271},{"x":1757991667045,"y":34.629},{"x":1757991603295,"y":36.014},{"x":1757991542918,"y":32.122},{"x":1757991483123,"y":28.095},{"x":1757991422655,"y":31.861},{"x":1757991363242,"y":34.277},{"x":1757991310336,"y":36.236},{"x":1757991250047,"y":33.184},{"x":1757991180226,"y":34.223},{"x":1757991123292,"y":46.165},{"x":1757991063068,"y":41.605},{"x":1757991002077,"y":40.061},{"x":1757990949509,"y":44.809},{"x":1757990889362,"y":35.199},{"x":1757990822630,"y":28.68},{"x":1757990762521,"y":27.119},{"x":1757990704845,"y":28.255},{"x":1757990642236,"y":32.908},{"x":1757990582150,"y":33.531},{"x":1757990522047,"y":33.91},{"x":1757990461929,"y":32.019},{"x":1757990401852,"y":30.541},{"x":1757990341577,"y":30.045},{"x":1757990281493,"y":31.608},{"x":1757990221361,"y":28.848},{"x":1757990161220,"y":28.404},{"x":1757990101228,"y":27.64},{"x":1757990040987,"y":31.003},{"x":1757989980883,"y":29.791},{"x":1757989927592,"y":36.423},{"x":1757989860632,"y":36.089},{"x":1757989801012,"y":33.871},{"x":1757989740502,"y":31.221},{"x":1757989680458,"y":28.973},{"x":1757989627087,"y":30.927},{"x":1757989560029,"y":30.567},{"x":1757989500239,"y":26.897},{"x":1757989446790,"y":27.24},{"x":1757989386680,"y":30.059},{"x":1757989326586,"y":27.406},{"x":1757989263071,"y":38.243},{"x":1757989206507,"y":36.475},{"x":1757989146278,"y":35.83},{"x":1757989086192,"y":35.409},{"x":1757989026100,"y":35.163},{"x":1757988965999,"y":38.955},{"x":1757988904805,"y":28.634},{"x":1757988845776,"y":31.993},{"x":1757988785677,"y":32.266},{"x":1757988720461,"y":45.003},{"x":1757988665494,"y":46.05},{"x":1757988605493,"y":43.841},{"x":1757988545269,"y":47.924},{"x":1757988485172,"y":45.916},{"x":1757988425066,"y":36.35},{"x":1757988364965,"y":38.296},{"x":1757988304986,"y":37.189},{"x":1757988244766,"y":33.154},{"x":1757988184668,"y":31.812},{"x":1757988124583,"y":31.478},{"x":1757988064468,"y":39.312},{"x":1757988003787,"y":33.361},{"x":1757987944217,"y":34.263},{"x":1757987884115,"y":36.184},{"x":1757987823082,"y":41.324},{"x":1757987763896,"y":40.585},{"x":1757987703989,"y":34.096},{"x":1757987640239,"y":36.816},{"x":1757987583512,"y":33.918},{"x":1757987523158,"y":31.629},{"x":1757987463066,"y":44.01},{"x":1757987403279,"y":45.787},{"x":1757987343161,"y":56.443},{"x":1757987285991,"y":58.789},{"x":1757987225888,"y":60.682},{"x":1757987162734,"y":48.525},{"x":1757987103296,"y":45.013},{"x":1757987045590,"y":31.588},{"x":1757986983143,"y":36.836},{"x":1757986923126,"y":38.724},{"x":1757986865288,"y":45.45},{"x":1757986804390,"y":43.073},{"x":1757986745087,"y":39.902},{"x":1757986683089,"y":37.41},{"x":1757986623080,"y":41.838},{"x":1757986563362,"y":34.567},{"x":1757986503835,"y":33.351},{"x":1757986443098,"y":31.4},{"x":1757986384474,"y":31.748},{"x":1757986323168,"y":32.435},{"x":1757986264291,"y":29.41},{"x":1757986204307,"y":42.332},{"x":1757986143215,"y":43.217},{"x":1757986083973,"y":52.59},{"x":1757986023128,"y":54.995},{"x":1757985963218,"y":55.28},{"x":1757985903202,"y":44.759},{"x":1757985840404,"y":42.908},{"x":1757985783417,"y":31.186},{"x":1757985723327,"y":31.703},{"x":1757985663256,"y":36.011},{"x":1757985603241,"y":30.735},{"x":1757985543030,"y":30.29},{"x":1757985482910,"y":41.119},{"x":1757985422826,"y":39.745},{"x":1757985362705,"y":42.38},{"x":1757985302707,"y":41.331},{"x":1757985242501,"y":39.902},{"x":1757985182408,"y":31.378},{"x":1757985122314,"y":32.299},{"x":1757985062203,"y":31.41},{"x":1757985002227,"y":45.192},{"x":1757984942005,"y":46.285},{"x":1757984881899,"y":55.771},{"x":1757984821798,"y":54.144},{"x":1757984761735,"y":53.361},{"x":1757984701549,"y":40.052},{"x":1757984641499,"y":45.395},{"x":1757984581393,"y":40.758},{"x":1757984521314,"y":39.006},{"x":1757984461208,"y":34.695},{"x":1757984401877,"y":33.175},{"x":1757984340992,"y":34.408},{"x":1757984280900,"y":34.983},{"x":1757984220786,"y":31.071},{"x":1757984160707,"y":32.975},{"x":1757984100768,"y":35.369},{"x":1757984040591,"y":30.659},{"x":1757983980519,"y":49.227},{"x":1757983923283,"y":43.768},{"x":1757983863180,"y":48.56},{"x":1757983803290,"y":46.445},{"x":1757983759876,"y":54.928},{"x":1757983682685,"y":45.616},{"x":1757983622900,"y":41.243},{"x":1757983562703,"y":43.053},{"x":1757983502871,"y":45.67},{"x":1757983442135,"y":37.599},{"x":1757983382487,"y":38.246},{"x":1757983322394,"y":36.192},{"x":1757983262283,"y":33.848},{"x":1757983202310,"y":34.644},{"x":1757983142099,"y":43.45},{"x":1757983081980,"y":43.004},{"x":1757983021873,"y":44.758},{"x":1757982961777,"y":45.541},{"x":1757982901379,"y":41.966},{"x":1757982841576,"y":31.663},{"x":1757982781466,"y":30.31},{"x":1757982721402,"y":41.464},{"x":1757982661219,"y":43.314},{"x":1757982601307,"y":33.565},{"x":1757982541029,"y":54.684},{"x":1757982480909,"y":51.44},{"x":1757982420825,"y":50.11},{"x":1757982360810,"y":49.396},{"x":1757982300910,"y":47.371},{"x":1757982240685,"y":31.786},{"x":1757982180457,"y":29.377},{"x":1757982120410,"y":28.064},{"x":1757982074056,"y":28.248},{"x":1757982000108,"y":33.421},{"x":1757981953637,"y":39.393},{"x":1757981893391,"y":36.987},{"x":1757981833191,"y":38.158},{"x":1757981760349,"y":32.481},{"x":1757981704854,"y":38.188},{"x":1757981652581,"y":38.519},{"x":1757981592387,"y":34.343},{"x":1757981532129,"y":37.685},{"x":1757981471928,"y":32.272},{"x":1757981411860,"y":31.998},{"x":1757981351526,"y":35.548},{"x":1757981291331,"y":36.351},{"x":1757981231129,"y":59.699},{"x":1757981170948,"y":61.422},{"x":1757981110818,"y":60.412},{"x":1757981050472,"y":64.051},{"x":1757980990293,"y":59.073},{"x":1757980930088,"y":33.926},{"x":1757980869821,"y":33.035},{"x":1757980803810,"y":37.932},{"x":1757980749369,"y":34.552},{"x":1757980689162,"y":35.396},{"x":1757980629011,"y":34.875},{"x":1757980568811,"y":36.66},{"x":1757980508747,"y":37.232},{"x":1757980448349,"y":38.469},{"x":1757980388122,"y":47.023},{"x":1757980323175,"y":37.6},{"x":1757980267703,"y":58.735},{"x":1757980207707,"y":59.787},{"x":1757980143160,"y":60.898},{"x":1757980083097,"y":56.857},{"x":1757980026898,"y":59.767},{"x":1757979966710,"y":37.925},{"x":1757979904850,"y":41.552},{"x":1757979846340,"y":37.471},{"x":1757979783167,"y":35.293},{"x":1757979723141,"y":33.044},{"x":1757979663157,"y":37.396},{"x":1757979605517,"y":34.535},{"x":1757979545199,"y":31.511},{"x":1757979484948,"y":33.55},{"x":1757979424688,"y":32.595},{"x":1757979363095,"y":33.325},{"x":1757979304383,"y":38.598},{"x":1757979243141,"y":45.689},{"x":1757979183144,"y":57.185},{"x":1757979123141,"y":57.17},{"x":1757979063390,"y":57.549},{"x":1757979003267,"y":57.349},{"x":1757978943089,"y":43.423},{"x":1757978895188,"y":32.481},{"x":1757978823312,"y":31.765},{"x":1757978763295,"y":33.395},{"x":1757978702317,"y":29.502},{"x":1757978646018,"y":31.746},{"x":1757978583401,"y":32.187},{"x":1757978520061,"y":37.323},{"x":1757978463525,"y":37.449},{"x":1757978403521,"y":38.236},{"x":1757978343219,"y":34.37},{"x":1757978283380,"y":33.443},{"x":1757978223167,"y":41.075},{"x":1757978162716,"y":37.372},{"x":1757978103658,"y":31.501},{"x":1757978043034,"y":59.712},{"x":1757977982847,"y":60.607},{"x":1757977922618,"y":60.835},{"x":1757977862441,"y":57.736},{"x":1757977802385,"y":60.421},{"x":1757977742046,"y":34.236},{"x":1757977681873,"y":31.694},{"x":1757977621724,"y":37.519},{"x":1757977572858,"y":34.288},{"x":1757977501436,"y":36.595},{"x":1757977441052,"y":33.034},{"x":1757977380800,"y":33.909},{"x":1757977320625,"y":37.254},{"x":1757977260523,"y":35.436},{"x":1757977201370,"y":32.859},{"x":1757977143171,"y":37.31},{"x":1757977091998,"y":31.464},{"x":1757977031888,"y":44.899},{"x":1757976971797,"y":70.793},{"x":1757976911834,"y":61.345},{"x":1757976840062,"y":58.216},{"x":1757976791518,"y":58.428},{"x":1757976731388,"y":47.796},{"x":1757976671288,"y":35.43},{"x":1757976611326,"y":33.61},{"x":1757976551085,"y":33.66},{"x":1757976490985,"y":32.93},{"x":1757976430884,"y":32.039},{"x":1757976370779,"y":41.644},{"x":1757976304845,"y":44.088},{"x":1757976250534,"y":54.018},{"x":1757976183074,"y":49.286},{"x":1757976123111,"y":48.772},{"x":1757976070219,"y":39.545},{"x":1757976003246,"y":46.657},{"x":1757975950015,"y":36.739},{"x":1757975883165,"y":36.78},{"x":1757975829764,"y":36.942},{"x":1757975769665,"y":37.826},{"x":1757975703223,"y":38.929},{"x":1757975643279,"y":38.325},{"x":1757975583242,"y":42.884},{"x":1757975523163,"y":48.559},{"x":1757975469117,"y":36.311},{"x":1757975404840,"y":38.16},{"x":1757975343191,"y":37.645},{"x":1757975283180,"y":40.737},{"x":1757975228712,"y":39.485},{"x":1757975163135,"y":32.859},{"x":1757975108589,"y":31.987},{"x":1757975043139,"y":31.804},{"x":1757974988204,"y":31.809},{"x":1757974923328,"y":46.864},{"x":1757974863156,"y":60.894},{"x":1757974803277,"y":67.509},{"x":1757974743091,"y":65.209},{"x":1757974683212,"y":63.524},{"x":1757974623116,"y":57.548},{"x":1757974567509,"y":36.462},{"x":1757974504831,"y":35.599},{"x":1757974443080,"y":46.69},{"x":1757974387106,"y":52.724},{"x":1757974326986,"y":52.77},{"x":1757974260063,"y":50.895},{"x":1757974203604,"y":49.571},{"x":1757974146683,"y":40.565},{"x":1757974083136,"y":46.484},{"x":1757974023078,"y":46.103},{"x":1757973963248,"y":40.831},{"x":1757973903646,"y":37.637},{"x":1757973843246,"y":34.383},{"x":1757973785920,"y":40.429},{"x":1757973723146,"y":54.656},{"x":1757973660543,"y":44.808},{"x":1757973604973,"y":53.348},{"x":1757973543091,"y":61.537},{"x":1757973483262,"y":50.668},{"x":1757973423113,"y":37.684},{"x":1757973363839,"y":38.661},{"x":1757973303559,"y":38.23},{"x":1757973245034,"y":35.387},{"x":1757973180031,"y":41.198},{"x":1757973120192,"y":36.243},{"x":1757973063224,"y":35.157},{"x":1757973004637,"y":35.325},{"x":1757972943213,"y":35.949},{"x":1757972884313,"y":43.451},{"x":1757972824209,"y":46.164},{"x":1757972764062,"y":44.558},{"x":1757972703256,"y":49.936},{"x":1757972643135,"y":47.402},{"x":1757972583104,"y":47.475},{"x":1757972523138,"y":55.979},{"x":1757972463130,"y":62.191},{"x":1757972404156,"y":55.792},{"x":1757972343172,"y":61.756},{"x":1757972283419,"y":46.062},{"x":1757972229299,"y":36.37},{"x":1757972169157,"y":34.741},{"x":1757972109175,"y":34.004},{"x":1757972043398,"y":34.425},{"x":1757971980086,"y":40.311},{"x":1757971928739,"y":44.216},{"x":1757971868648,"y":57.343},{"x":1757971804841,"y":56.09},{"x":1757971748395,"y":52.197},{"x":1757971683098,"y":65.429},{"x":1757971623120,"y":44.681},{"x":1757971560070,"y":46.585},{"x":1757971503582,"y":48.049},{"x":1757971443441,"y":42.066},{"x":1757971383171,"y":45.629},{"x":1757971323073,"y":58.371},{"x":1757971267537,"y":57.815},{"x":1757971203758,"y":68.254},{"x":1757971147284,"y":60.435},{"x":1757971083116,"y":61.576},{"x":1757971027095,"y":61.474},{"x":1757970967049,"y":38.681},{"x":1757970904864,"y":38.096},{"x":1757970846780,"y":38.339},{"x":1757970786681,"y":40.401},{"x":1757970723170,"y":38.077},{"x":1757970663239,"y":44.712},{"x":1757970603692,"y":41.184},{"x":1757970543261,"y":43.425},{"x":1757970486125,"y":40.184},{"x":1757970425965,"y":40.508},{"x":1757970365868,"y":42.075},{"x":1757970305843,"y":42.629},{"x":1757970245607,"y":56.23},{"x":1757970185550,"y":56.514},{"x":1757970125410,"y":60.988},{"x":1757970065303,"y":76.022},{"x":1757970003780,"y":71.899},{"x":1757969945072,"y":64.207},{"x":1757969884969,"y":59.008},{"x":1757969824861,"y":44.209},{"x":1757969764705,"y":42.586},{"x":1757969704743,"y":41.769},{"x":1757969644513,"y":42.457},{"x":1757969584384,"y":42.259},{"x":1757969524242,"y":44.194},{"x":1757969464149,"y":52.945},{"x":1757969404171,"y":50.44},{"x":1757969343898,"y":48.534},{"x":1757969283791,"y":55.355},{"x":1757969223694,"y":50.27},{"x":1757969163597,"y":54.268},{"x":1757969103710,"y":41.81},{"x":1757969043399,"y":39.347},{"x":1757968983313,"y":37.556},{"x":1757968923205,"y":38.198},{"x":1757968863128,"y":37.691},{"x":1757968803285,"y":36.117},{"x":1757968743140,"y":40.883},{"x":1757968683090,"y":38.642},{"x":1757968633638,"y":39.212},{"x":1757968560047,"y":45.795},{"x":1757968503759,"y":59.23},{"x":1757968453286,"y":51.57},{"x":1757968383169,"y":52.813},{"x":1757968323200,"y":53.783},{"x":1757968272934,"y":54.918},{"x":1757968204864,"y":38.362},{"x":1757968143200,"y":39.228},{"x":1757968092648,"y":53.937},{"x":1757968032530,"y":50.013},{"x":1757967972427,"y":48.328},{"x":1757967903713,"y":43.59},{"x":1757967843287,"y":45.368},{"x":1757967792082,"y":57.634},{"x":1757967731918,"y":64.455},{"x":1757967663089,"y":73.472},{"x":1757967611842,"y":62.464},{"x":1757967551571,"y":56.421},{"x":1757967483209,"y":42.813},{"x":1757967431368,"y":45.524},{"x":1757967371270,"y":56.046},{"x":1757967303205,"y":44.333},{"x":1757967243303,"y":45.907},{"x":1757967190865,"y":63.098},{"x":1757967130760,"y":49.956},{"x":1757967070657,"y":43.161},{"x":1757967010681,"y":49.733},{"x":1757966950461,"y":60.696},{"x":1757966890361,"y":58.799},{"x":1757966830262,"y":87.851},{"x":1757966770110,"y":79.227},{"x":1757966710160,"y":64.489},{"x":1757966649899,"y":68.529},{"x":1757966589809,"y":62.209},{"x":1757966529718,"y":44.971},{"x":1757966468981,"y":47.302},{"x":1757966403778,"y":53.583},{"x":1757966349346,"y":46.556},{"x":1757966289251,"y":49.816},{"x":1757966229097,"y":64.117},{"x":1757966169028,"y":46.023},{"x":1757966109054,"y":58.666},{"x":1757966048837,"y":73.946},{"x":1757965988692,"y":57.193},{"x":1757965928538,"y":58.237},{"x":1757965868436,"y":60.748},{"x":1757965808459,"y":61.223},{"x":1757965748258,"y":60.451},{"x":1757965688142,"y":58.425},{"x":1757965628039,"y":59.683},{"x":1757965567931,"y":66.503},{"x":1757965504848,"y":57.641},{"x":1757965447731,"y":53.463},{"x":1757965387660,"y":42.207},{"x":1757965323084,"y":48.491},{"x":1757965263122,"y":61.744},{"x":1757965207407,"y":51.35},{"x":1757965143348,"y":70.22},{"x":1757965083267,"y":60.57},{"x":1757965023130,"y":81.367},{"x":1757964966719,"y":80.388},{"x":1757964903325,"y":68.293},{"x":1757964843167,"y":71.513},{"x":1757964780047,"y":64.496},{"x":1757964723132,"y":62.665},{"x":1757964666212,"y":58.531},{"x":1757964603297,"y":61.073},{"x":1757964543109,"y":53.135},{"x":1757964483231,"y":74.372},{"x":1757964423110,"y":60.22},{"x":1757964365606,"y":61.665},{"x":1757964303194,"y":74.157},{"x":1757964245405,"y":70.919},{"x":1757964185304,"y":85.991},{"x":1757964123078,"y":90.914},{"x":1757964065110,"y":55.447},{"x":1757964005154,"y":61.863},{"x":1757963944849,"y":81.088},{"x":1757963883075,"y":61.71},{"x":1757963824601,"y":67.526},{"x":1757963764491,"y":51.603},{"x":1757963703275,"y":54.306},{"x":1757963643208,"y":57.269},{"x":1757963583090,"y":72.747},{"x":1757963524090,"y":70.716},{"x":1757963463256,"y":85.491},{"x":1757963403235,"y":83.074},{"x":1757963343168,"y":84.873},{"x":1757963283143,"y":78.197},{"x":1757963223533,"y":72.421},{"x":1757963163387,"y":71.938},{"x":1757963103317,"y":60.312},{"x":1757963043139,"y":71.188},{"x":1757962983177,"y":86.448},{"x":1757962923569,"y":57.198},{"x":1757962860435,"y":72.583},{"x":1757962803286,"y":72.816},{"x":1757962743124,"y":69.176},{"x":1757962683073,"y":76.895},{"x":1757962623136,"y":73.02},{"x":1757962563813,"y":73.365},{"x":1757962503290,"y":75.901},{"x":1757962440084,"y":80.639},{"x":1757962383457,"y":89.724},{"x":1757962323067,"y":67.849},{"x":1757962263171,"y":61.665},{"x":1757962203209,"y":73.52},{"x":1757962143123,"y":58.066},{"x":1757962083187,"y":62.12},{"x":1757962023421,"y":72.991},{"x":1757961963150,"y":68.698},{"x":1757961904850,"y":83.812},{"x":1757961843148,"y":75.475},{"x":1757961783186,"y":84.386},{"x":1757961723164,"y":79.015},{"x":1757961663084,"y":87.089},{"x":1757961603854,"y":91.611},{"x":1757961549554,"y":63.352},{"x":1757961489314,"y":65.09},{"x":1757961423099,"y":51.945},{"x":1757961363158,"y":64.013},{"x":1757961308975,"y":60.997},{"x":1757961243012,"y":54.81},{"x":1757961182896,"y":65.538},{"x":1757961122802,"y":76.415},{"x":1757961068150,"y":67.263},{"x":1757961004814,"y":59.769},{"x":1757960942335,"y":74.169},{"x":1757960887591,"y":66.712},{"x":1757960822049,"y":66.987},{"x":1757960761883,"y":77.981},{"x":1757960701910,"y":71.033},{"x":1757960641688,"y":72.394},{"x":1757960581600,"y":64.182},{"x":1757960521475,"y":56.944},{"x":1757960466328,"y":59.952},{"x":1757960401410,"y":62.23},{"x":1757960341131,"y":57.477},{"x":1757960281032,"y":74.829},{"x":1757960220935,"y":66.1},{"x":1757960160878,"y":75.8},{"x":1757960100946,"y":81.223},{"x":1757960040636,"y":90.317},{"x":1757959980577,"y":91.167},{"x":1757959920549,"y":74.082},{"x":1757959860455,"y":58.255},{"x":1757959804539,"y":48.476},{"x":1757959744214,"y":55.463},{"x":1757959684025,"y":64.142},{"x":1757959623815,"y":63.859},{"x":1757959563664,"y":74.491},{"x":1757959503698,"y":67.482},{"x":1757959443425,"y":56.708},{"x":1757959383215,"y":55.546},{"x":1757959323072,"y":51.656},{"x":1757959260498,"y":63.915},{"x":1757959202992,"y":60.166},{"x":1757959142509,"y":65.419},{"x":1757959083207,"y":70.783},{"x":1757959022156,"y":63.118},{"x":1757958963158,"y":75.968},{"x":1757958901995,"y":46.038},{"x":1757958840049,"y":62.251},{"x":1757958780103,"y":72.665},{"x":1757958722610,"y":50.091},{"x":1757958663253,"y":50.846},{"x":1757958601166,"y":47.342},{"x":1757958540761,"y":44.035},{"x":1757958480686,"y":85.017},{"x":1757958420627,"y":81.354},{"x":1757958360542,"y":92.14},{"x":1757958301176,"y":88.109},{"x":1757958240364,"y":78.932},{"x":1757958180447,"y":72.623},{"x":1757958122693,"y":53.52},{"x":1757958069341,"y":58.063},{"x":1757958009446,"y":48.692},{"x":1757957942287,"y":51.464},{"x":1757957888983,"y":61.926},{"x":1757957828881,"y":57.592},{"x":1757957768729,"y":74.603},{"x":1757957708787,"y":66.518},{"x":1757957641349,"y":65.758},{"x":1757957588373,"y":89.901},{"x":1757957523214,"y":91.097},{"x":1757957468122,"y":80.078},{"x":1757957404858,"y":79.789},{"x":1757957347865,"y":73.463},{"x":1757957287769,"y":49.417},{"x":1757957220434,"y":53.035},{"x":1757957160371,"y":57.845},{"x":1757957107577,"y":64.364},{"x":1757957047310,"y":66.296},{"x":1757956987158,"y":52.109},{"x":1757956927074,"y":65.844},{"x":1757956866955,"y":58.447},{"x":1757956806960,"y":78.365},{"x":1757956746705,"y":59.893},{"x":1757956686555,"y":91.611},{"x":1757956626529,"y":88.406},{"x":1757956566308,"y":58.952},{"x":1757956503326,"y":59.64},{"x":1757956446013,"y":51.695},{"x":1757956385851,"y":61.194},{"x":1757956325763,"y":56.172},{"x":1757956265646,"y":72.914},{"x":1757956205706,"y":75.706},{"x":1757956143104,"y":57.988},{"x":1757956083145,"y":76.403},{"x":1757956025096,"y":63.937},{"x":1757955963318,"y":73.624},{"x":1757955905070,"y":89.326},{"x":1757955844788,"y":74.527},{"x":1757955783121,"y":54.059},{"x":1757955723109,"y":62.743},{"x":1757955660383,"y":69.039},{"x":1757955603811,"y":46.453},{"x":1757955544134,"y":55.333},{"x":1757955483134,"y":44.238},{"x":1757955423141,"y":65.684},{"x":1757955363073,"y":47.787},{"x":1757955303310,"y":58.724},{"x":1757955243566,"y":53.599},{"x":1757955183436,"y":69.646},{"x":1757955123463,"y":51.354},{"x":1757955063174,"y":46.083},{"x":1757955004055,"y":62.605},{"x":1757954943155,"y":63.858},{"x":1757954884656,"y":55.46},{"x":1757954823147,"y":60.102},{"x":1757954764460,"y":54.326},{"x":1757954703593,"y":52.767},{"x":1757954643125,"y":86.194},{"x":1757954583128,"y":87.472},{"x":1757954523139,"y":73.615},{"x":1757954463244,"y":77.654},{"x":1757954403772,"y":80.424},{"x":1757954343749,"y":66.772},{"x":1757954283206,"y":69.241},{"x":1757954223546,"y":75.154},{"x":1757954163116,"y":63.237},{"x":1757954103548,"y":65.66},{"x":1757954043185,"y":61.8},{"x":1757953988818,"y":62.634},{"x":1757953923149,"y":58.847},{"x":1757953862889,"y":65.696},{"x":1757953804843,"y":58.079},{"x":1757953743156,"y":49.404},{"x":1757953683313,"y":58.924},{"x":1757953628211,"y":71.03},{"x":1757953568107,"y":55.089},{"x":1757953508164,"y":52.225},{"x":1757953447905,"y":62.244},{"x":1757953387801,"y":77.383},{"x":1757953327696,"y":56.288},{"x":1757953267603,"y":59.697},{"x":1757953207659,"y":41.703},{"x":1757953147395,"y":61.04},{"x":1757953087304,"y":61.21},{"x":1757953027207,"y":70.096},{"x":1757952962644,"y":85.035},{"x":1757952904851,"y":114.81},{"x":1757952846891,"y":74.578},{"x":1757952786795,"y":62.12},{"x":1757952726725,"y":72.983},{"x":1757952666590,"y":67.187},{"x":1757952606659,"y":60.663},{"x":1757952546392,"y":60.891},{"x":1757952486294,"y":78.518},{"x":1757952426195,"y":74.229},{"x":1757952366086,"y":88.249},{"x":1757952306140,"y":91.858},{"x":1757952245880,"y":75.251},{"x":1757952185790,"y":74.541},{"x":1757952125677,"y":58.654},{"x":1757952060322,"y":62.271},{"x":1757952004948,"y":61.878},{"x":1757951943184,"y":61.841},{"x":1757951883156,"y":63.241},{"x":1757951823317,"y":56.908},{"x":1757951765102,"y":59.588},{"x":1757951705139,"y":66.136},{"x":1757951640042,"y":86.74},{"x":1757951584818,"y":82.539},{"x":1757951524665,"y":71.923},{"x":1757951463177,"y":75.097},{"x":1757951403753,"y":62.582},{"x":1757951344399,"y":52.796},{"x":1757951284264,"y":58.023},{"x":1757951224166,"y":78.643},{"x":1757951162629,"y":63.698},{"x":1757951104127,"y":74.253},{"x":1757951043860,"y":83.431},{"x":1757950983762,"y":70.564},{"x":1757950923657,"y":73.998},{"x":1757950863555,"y":85.649},{"x":1757950801143,"y":69.742},{"x":1757950743359,"y":63.32},{"x":1757950683328,"y":73.674},{"x":1757950623165,"y":52.982},{"x":1757950563068,"y":64.889},{"x":1757950503136,"y":49.037},{"x":1757950442849,"y":43.206},{"x":1757950383187,"y":54.304},{"x":1757950323171,"y":76.525},{"x":1757950260482,"y":77.134},{"x":1757950203272,"y":70.271},{"x":1757950143119,"y":84.294},{"x":1757950083218,"y":64.479},{"x":1757950023133,"y":63.842},{"x":1757949963165,"y":74.533},{"x":1757949903738,"y":42.457},{"x":1757949843234,"y":60.326},{"x":1757949783277,"y":51.677},{"x":1757949723377,"y":51.012},{"x":1757949665725,"y":63.953},{"x":1757949603972,"y":74.933},{"x":1757949545527,"y":59.338},{"x":1757949485371,"y":59.881},{"x":1757949425283,"y":66.531},{"x":1757949362719,"y":51.19},{"x":1757949301564,"y":46.161},{"x":1757949244898,"y":45.716},{"x":1757949184762,"y":45.06},{"x":1757949123189,"y":56.443},{"x":1757949063214,"y":55.187},{"x":1757949004395,"y":48.271},{"x":1757948943158,"y":67.048},{"x":1757948883294,"y":65.648},{"x":1757948823180,"y":50.096},{"x":1757948763243,"y":43.853},{"x":1757948703216,"y":42.627},{"x":1757948642951,"y":58.97},{"x":1757948582839,"y":61.542},{"x":1757948522736,"y":63.469},{"x":1757948462673,"y":61.631},{"x":1757948402950,"y":70.72},{"x":1757948342442,"y":47.205},{"x":1757948282332,"y":36.634},{"x":1757948222226,"y":45.881},{"x":1757948162128,"y":51.733},{"x":1757948102321,"y":39.787},{"x":1757948042579,"y":70.306},{"x":1757947981868,"y":35.515},{"x":1757947921729,"y":61.532},{"x":1757947861735,"y":51.503},{"x":1757947801704,"y":56.488},{"x":1757947741988,"y":65.567},{"x":1757947681320,"y":57.599},{"x":1757947621226,"y":33.79},{"x":1757947561209,"y":30.973},{"x":1757947501377,"y":35.884},{"x":1757947440980,"y":43.449},{"x":1757947380817,"y":43.789},{"x":1757947320710,"y":52.603},{"x":1757947260656,"y":61.672},{"x":1757947201201,"y":61.917},{"x":1757947140529,"y":80.599},{"x":1757947080492,"y":42.839},{"x":1757947020349,"y":46.016},{"x":1757946960617,"y":34.545},{"x":1757946916627,"y":30.36},{"x":1757946856224,"y":38.98},{"x":1757946796093,"y":33.617},{"x":1757946735923,"y":24.911},{"x":1757946662628,"y":30.326},{"x":1757946604883,"y":34.014},{"x":1757946555616,"y":51.158},{"x":1757946495513,"y":47.708},{"x":1757946435410,"y":50.253},{"x":1757946375322,"y":49.783},{"x":1757946315382,"y":40.535},{"x":1757946255143,"y":41.221},{"x":1757946194971,"y":37.226},{"x":1757946134817,"y":28.174},{"x":1757946074708,"y":36.863},{"x":1757946014772,"y":42.78},{"x":1757945954507,"y":31.677},{"x":1757945894401,"y":44.111},{"x":1757945834302,"y":53.521},{"x":1757945762640,"y":41.272},{"x":1757945704863,"y":52.718},{"x":1757945654022,"y":47.03},{"x":1757945593894,"y":54.247},{"x":1757945533748,"y":59.273},{"x":1757945473665,"y":67.459},{"x":1757945400975,"y":54.525},{"x":1757945353446,"y":56.52},{"x":1757945293381,"y":55.941},{"x":1757945233241,"y":68.621},{"x":1757945163158,"y":45.33},{"x":1757945104301,"y":49.156},{"x":1757945052937,"y":52.724},{"x":1757944992857,"y":67.584},{"x":1757944932726,"y":64.044},{"x":1757944868844,"y":77.353},{"x":1757944803568,"y":51.29},{"x":1757944752425,"y":64.923},{"x":1757944683225,"y":63.612},{"x":1757944623140,"y":58.842},{"x":1757944572210,"y":29.791},{"x":1757944500184,"y":40.256},{"x":1757944440208,"y":36.076},{"x":1757944383126,"y":58.145},{"x":1757944323270,"y":56.726},{"x":1757944271567,"y":45.579},{"x":1757944203353,"y":67.07},{"x":1757944143148,"y":63.703},{"x":1757944091214,"y":42.598},{"x":1757944031123,"y":51.158},{"x":1757943962607,"y":74.168},{"x":1757943903354,"y":49.431},{"x":1757943850813,"y":64.717},{"x":1757943783101,"y":79.464},{"x":1757943730608,"y":72.988},{"x":1757943670502,"y":56.156},{"x":1757943603864,"y":68.414},{"x":1757943543168,"y":55.166},{"x":1757943490174,"y":75.25},{"x":1757943423072,"y":54.926},{"x":1757943369948,"y":51.574},{"x":1757943310033,"y":75.321},{"x":1757943243209,"y":69.618},{"x":1757943189649,"y":58.133},{"x":1757943123079,"y":67.769},{"x":1757943069452,"y":78.701},{"x":1757943003323,"y":69.052},{"x":1757942943151,"y":65.518},{"x":1757942883188,"y":71.926},{"x":1757942829045,"y":69.521},{"x":1757942763094,"y":50.968},{"x":1757942708968,"y":24.161},{"x":1757942648685,"y":22.326},{"x":1757942583248,"y":33.327},{"x":1757942528483,"y":23.186},{"x":1757942463228,"y":36.156},{"x":1757942403297,"y":35.951},{"x":1757942343155,"y":41.768},{"x":1757942288043,"y":58.212},{"x":1757942223183,"y":53.554},{"x":1757942167940,"y":40.648},{"x":1757942103674,"y":62.213},{"x":1757942043270,"y":39.838},{"x":1757941983329,"y":23.723},{"x":1757941923208,"y":38.157},{"x":1757941863162,"y":46.722},{"x":1757941803738,"y":28.897},{"x":1757941743324,"y":38.535},{"x":1757941683252,"y":40.811},{"x":1757941626819,"y":41.106},{"x":1757941566724,"y":45.191},{"x":1757941506787,"y":59.34},{"x":1757941443319,"y":67.327},{"x":1757941386369,"y":53.633},{"x":1757941323109,"y":33.03},{"x":1757941260565,"y":59.145},{"x":1757941205014,"y":58.254},{"x":1757941143339,"y":49.26},{"x":1757941085707,"y":24.493},{"x":1757941020204,"y":17.94},{"x":1757940963474,"y":46.578},{"x":1757940900140,"y":40.835},{"x":1757940845361,"y":34.622},{"x":1757940783100,"y":33.49},{"x":1757940725113,"y":26.908},{"x":1757940663252,"y":58.657},{"x":1757940603449,"y":29.433},{"x":1757940543181,"y":17.397},{"x":1757940484596,"y":22.057},{"x":1757940423267,"y":37.096},{"x":1757940364356,"y":43.31},{"x":1757940304430,"y":24.416},{"x":1757940243299,"y":38.719},{"x":1757940184062,"y":23.007},{"x":1757940123168,"y":26.695},{"x":1757940063225,"y":35.385},{"x":1757940003726,"y":55.468},{"x":1757939943597,"y":40.961},{"x":1757939883263,"y":47.328},{"x":1757939823125,"y":41.549},{"x":1757939763106,"y":55.063},{"x":1757939703756,"y":65.708},{"x":1757939643268,"y":37.476},{"x":1757939580063,"y":46.961},{"x":1757939523231,"y":50.078},{"x":1757939462788,"y":40.552},{"x":1757939404883,"y":46.554},{"x":1757939348314,"y":29.727},{"x":1757939288133,"y":46.975},{"x":1757939227978,"y":43.307},{"x":1757939167878,"y":57.117},{"x":1757939104406,"y":45.773},{"x":1757939047726,"y":57.475},{"x":1757938987530,"y":49.031},{"x":1757938920051,"y":59.015},{"x":1757938867401,"y":29.462},{"x":1757938803770,"y":45.509},{"x":1757938747069,"y":55.201},{"x":1757938687009,"y":42.281},{"x":1757938626875,"y":53.095},{"x":1757938566767,"y":45.783},{"x":1757938503813,"y":30.045},{"x":1757938440083,"y":27.122},{"x":1757938386464,"y":34.587},{"x":1757938326364,"y":45.862},{"x":1757938266262,"y":38.888},{"x":1757938206317,"y":52.353},{"x":1757938146011,"y":29.839},{"x":1757938083247,"y":30.476},{"x":1757938023398,"y":30.234},{"x":1757937963250,"y":68.29},{"x":1757937903433,"y":44.573},{"x":1757937845514,"y":55.908},{"x":1757937785403,"y":50.088},{"x":1757937725251,"y":45.623},{"x":1757937665171,"y":29.195},{"x":1757937603790,"y":44.17},{"x":1757937544955,"y":56.764},{"x":1757937484849,"y":53.334},{"x":1757937424748,"y":63.811},{"x":1757937364648,"y":69.583},{"x":1757937304852,"y":80.506},{"x":1757937244369,"y":60.874},{"x":1757937184277,"y":60.16},{"x":1757937124142,"y":72.555},{"x":1757937064048,"y":73.467},{"x":1757937004089,"y":58.67},{"x":1757936943781,"y":55.529},{"x":1757936883690,"y":74.255},{"x":1757936823594,"y":55.144},{"x":1757936762639,"y":29.546},{"x":1757936703558,"y":33.334},{"x":1757936643254,"y":57.138},{"x":1757936583387,"y":63.637},{"x":1757936523040,"y":44.737},{"x":1757936462961,"y":36.937},{"x":1757936403070,"y":33.628},{"x":1757936342734,"y":50.183},{"x":1757936282627,"y":30.234},{"x":1757936222518,"y":23.442},{"x":1757936169819,"y":25.851},{"x":1757936103374,"y":37.629},{"x":1757936049567,"y":44.31},{"x":1757935989438,"y":52.607},{"x":1757935923146,"y":20.646},{"x":1757935869167,"y":26.076},{"x":1757935804912,"y":34.395},{"x":1757935749010,"y":47.668},{"x":1757935680078,"y":52.13},{"x":1757935623233,"y":46.086},{"x":1757935563243,"y":30.528},{"x":1757935503706,"y":29.155},{"x":1757935443279,"y":66.789},{"x":1757935383495,"y":51.372},{"x":1757935327993,"y":45.284},{"x":1757935267803,"y":21.973},{"x":1757935207900,"y":29.983},{"x":1757935143129,"y":33.78},{"x":1757935083160,"y":38.229},{"x":1757935023174,"y":42.679},{"x":1757934967153,"y":40.434},{"x":1757934904993,"y":46.218},{"x":1757934846939,"y":52.387},{"x":1757934786841,"y":62.248},{"x":1757934726694,"y":63.709},{"x":1757934666593,"y":41.694},{"x":1757934606719,"y":32.655},{"x":1757934546338,"y":66.756},{"x":1757934486184,"y":46.756},{"x":1757934426096,"y":47.647},{"x":1757934365931,"y":26.104},{"x":1757934302153,"y":53.871},{"x":1757934245687,"y":42.859},{"x":1757934185534,"y":34.518},{"x":1757934125455,"y":42.6},{"x":1757934065341,"y":40.801},{"x":1757934003910,"y":25.825},{"x":1757933945089,"y":15.738},{"x":1757933884936,"y":39.986},{"x":1757933824836,"y":77.287},{"x":1757933764811,"y":47.436},{"x":1757933705150,"y":56.805},{"x":1757933644530,"y":43.996},{"x":1757933584440,"y":50.697},{"x":1757933524331,"y":56.725},{"x":1757933464219,"y":36.736},{"x":1757933404433,"y":31.847},{"x":1757933343969,"y":44.768},{"x":1757933283815,"y":53.646},{"x":1757933223735,"y":52.65},{"x":1757933160360,"y":39.103},{"x":1757933104441,"y":73.321},{"x":1757933043392,"y":26.254},{"x":1757932983258,"y":26.517},{"x":1757932923810,"y":31.383},{"x":1757932862804,"y":37.804},{"x":1757932803873,"y":39.924},{"x":1757932743167,"y":51.272},{"x":1757932683329,"y":38.372},{"x":1757932622351,"y":45.171},{"x":1757932563176,"y":35.193},{"x":1757932504076,"y":34.814},{"x":1757932443296,"y":45.146},{"x":1757932383154,"y":61.967},{"x":1757932324929,"y":46.764},{"x":1757932262739,"y":54.425},{"x":1757932200272,"y":57.918},{"x":1757932143141,"y":58.825},{"x":1757932084513,"y":49.069},{"x":1757932023107,"y":36.429},{"x":1757931964224,"y":57.324},{"x":1757931903586,"y":49.684},{"x":1757931843218,"y":19.718},{"x":1757931780716,"y":33.867},{"x":1757931723306,"y":43.698},{"x":1757931663180,"y":61.277},{"x":1757931603487,"y":40.477},{"x":1757931540378,"y":51.163},{"x":1757931484034,"y":45.543},{"x":1757931423095,"y":40.457},{"x":1757931362780,"y":34.281},{"x":1757931302909,"y":32.748},{"x":1757931242838,"y":35.455},{"x":1757931182657,"y":42.375},{"x":1757931122508,"y":64.875},{"x":1757931062357,"y":74.066},{"x":1757931002476,"y":71.321},{"x":1757930942153,"y":67.593},{"x":1757930882237,"y":40.382},{"x":1757930822153,"y":40.894},{"x":1757930761859,"y":50.543},{"x":1757930701952,"y":43.808},{"x":1757930642790,"y":57.011},{"x":1757930611496,"y":53.292},{"x":1757930608176,"y":53.76},{"x":1757930576915,"y":44.381},{"x":1757930573248,"y":40.612},{"x":1757930569062,"y":40.612},{"x":1757929922007,"y":43.154},{"x":1757929861815,"y":51.645},{"x":1757929801843,"y":46.585},{"x":1757929741503,"y":51.889},{"x":1757929681351,"y":49.265},{"x":1757929621193,"y":47.266},{"x":1757929561012,"y":50.101},{"x":1757929501122,"y":59.72},{"x":1757929440674,"y":45.903},{"x":1757929380449,"y":43.596},{"x":1757929320352,"y":69.372},{"x":1757929260024,"y":38.968},{"x":1757929203011,"y":50.875},{"x":1757929142717,"y":37.552},{"x":1757929082563,"y":26.068},{"x":1757929022410,"y":50.206},{"x":1757928962263,"y":35.345},{"x":1757928902224,"y":54.705},{"x":1757928841933,"y":66.282},{"x":1757928781750,"y":42.529},{"x":1757928721601,"y":75.18},{"x":1757928661449,"y":60.018},{"x":1757928601526,"y":52.7},{"x":1757928541142,"y":40.976},{"x":1757928480958,"y":57.261},{"x":1757928420814,"y":47.216},{"x":1757928360670,"y":32.082},{"x":1757928300790,"y":44.569},{"x":1757928240393,"y":38.521},{"x":1757928180182,"y":31.061},{"x":1757928122875,"y":53.341},{"x":1757928062718,"y":77.146},{"x":1757928002707,"y":81.852},{"x":1757927942400,"y":88.171},{"x":1757927882261,"y":83.124},{"x":1757927822115,"y":57.714},{"x":1757927761942,"y":49.992},{"x":1757927701931,"y":65.671},{"x":1757927641641,"y":70.32},{"x":1757927581478,"y":69.772},{"x":1757927521311,"y":40.243},{"x":1757927461103,"y":31.759},{"x":1757927401119,"y":30.469},{"x":1757927340738,"y":30.422},{"x":1757927280611,"y":23.056},{"x":1757927220422,"y":40.811},{"x":1757927160322,"y":37.658},{"x":1757927103075,"y":33.82},{"x":1757927042766,"y":40.087},{"x":1757926982622,"y":43.776},{"x":1757926922450,"y":34.149},{"x":1757926862310,"y":45.703},{"x":1757926802420,"y":44.291},{"x":1757926741956,"y":54.141},{"x":1757926681738,"y":50.189},{"x":1757926621590,"y":38.749},{"x":1757926561426,"y":52.579},{"x":1757926501425,"y":42.734},{"x":1757926441115,"y":31.463},{"x":1757926380954,"y":38.451},{"x":1757926320809,"y":39.788},{"x":1757926260645,"y":45.365},{"x":1757926200827,"y":57.696},{"x":1757926140365,"y":62.373},{"x":1757926083008,"y":58.904},{"x":1757926022856,"y":51.744},{"x":1757925962701,"y":45.716},{"x":1757925902688,"y":46.933},{"x":1757925842394,"y":63.666},{"x":1757925782235,"y":44.369},{"x":1757925722089,"y":63.157},{"x":1757925661920,"y":62.906},{"x":1757925601855,"y":59.286},{"x":1757925541542,"y":41.726},{"x":1757925481390,"y":56.343},{"x":1757925421245,"y":56.034},{"x":1757925361085,"y":53.922},{"x":1757925301081,"y":48.487},{"x":1757925240775,"y":48.517},{"x":1757925180619,"y":35.91},{"x":1757925120550,"y":46.586},{"x":1757925060353,"y":50.234},{"x":1757925000495,"y":50.764},{"x":1757924942879,"y":35.185},{"x":1757924882728,"y":45.452},{"x":1757924822582,"y":51.642},{"x":1757924762417,"y":40.365},{"x":1757924702399,"y":45.027},{"x":1757924642096,"y":35.068},{"x":1757924581932,"y":39.88},{"x":1757924521498,"y":48.885},{"x":1757924461333,"y":43.009},{"x":1757924401353,"y":52.747},{"x":1757924340979,"y":48.722},{"x":1757924280841,"y":67.206},{"x":1757924220716,"y":53.909},{"x":1757924160536,"y":66.689},{"x":1757924100790,"y":50.61},{"x":1757924040130,"y":54.327},{"x":1757923982895,"y":54.532},{"x":1757923922766,"y":56.134},{"x":1757923862536,"y":68.63},{"x":1757923802510,"y":60.045},{"x":1757923742172,"y":59.436},{"x":1757923682008,"y":58.795},{"x":1757923621854,"y":54.83},{"x":1757923561653,"y":61.282},{"x":1757923501627,"y":60.444},{"x":1757923441324,"y":70.143},{"x":1757923381171,"y":65.912},{"x":1757923321013,"y":79.276},{"x":1757923260853,"y":72.725},{"x":1757923201343,"y":67.234},{"x":1757923140569,"y":52.008},{"x":1757923080317,"y":58.781},{"x":1757923023056,"y":57.815},{"x":1757922962876,"y":54.82},{"x":1757922902834,"y":65.78},{"x":1757922842551,"y":62.585},{"x":1757922782383,"y":56.127},{"x":1757922722239,"y":50.984},{"x":1757922662075,"y":53.202},{"x":1757922602068,"y":47.189},{"x":1757922541736,"y":48.367},{"x":1757922481572,"y":49.484},{"x":1757922421414,"y":55.773},{"x":1757922361233,"y":50.667},{"x":1757922301323,"y":58.589},{"x":1757922240850,"y":54.945},{"x":1757922180687,"y":59.258},{"x":1757922120552,"y":66.03},{"x":1757922060368,"y":66.025},{"x":1757922000903,"y":50.578},{"x":1757921942922,"y":68.131},{"x":1757921882772,"y":56.948},{"x":1757921822619,"y":59.25},{"x":1757921762465,"y":61.544},{"x":1757921702431,"y":62.196},{"x":1757921642125,"y":49.569},{"x":1757921581961,"y":52.325},{"x":1757921521811,"y":51.398},{"x":1757921461666,"y":53.277},{"x":1757921401741,"y":53.321},{"x":1757921341366,"y":49.2},{"x":1757921281207,"y":50.657},{"x":1757921221045,"y":55.626},{"x":1757921160885,"y":61.315},{"x":1757921100931,"y":48.835},{"x":1757921040558,"y":37.714},{"x":1757920980373,"y":39.12},{"x":1757920922966,"y":36.593},{"x":1757920862806,"y":47.255},{"x":1757920802791,"y":40.84},{"x":1757920742505,"y":38.046},{"x":1757920682350,"y":44.178},{"x":1757920622190,"y":41.273},{"x":1757920562010,"y":40.298},{"x":1757920501995,"y":41.253},{"x":1757920441712,"y":56.394},{"x":1757920381556,"y":58.23},{"x":1757920321427,"y":59.109},{"x":1757920261219,"y":53.163},{"x":1757920201146,"y":47.544},{"x":1757920140765,"y":39.138},{"x":1757920080652,"y":37.107},{"x":1757920020501,"y":38.95},{"x":1757919960289,"y":33.316},{"x":1757919903103,"y":36.594},{"x":1757919842807,"y":38.909},{"x":1757919782658,"y":43.558},{"x":1757919722507,"y":44.973},{"x":1757919662330,"y":44.572},{"x":1757919602533,"y":44.874},{"x":1757919541874,"y":45.82},{"x":1757919481662,"y":47.768},{"x":1757919421508,"y":57.766},{"x":1757919361344,"y":65.19},{"x":1757919301334,"y":57.673},{"x":1757919241030,"y":62.239},{"x":1757919180849,"y":45.361},{"x":1757919120705,"y":44.608},{"x":1757919060544,"y":39.908},{"x":1757919000663,"y":49.283},{"x":1757918940143,"y":49.541},{"x":1757918882903,"y":44.856},{"x":1757918822752,"y":42.131},{"x":1757918762595,"y":45.243},{"x":1757918702562,"y":33.266},{"x":1757918642275,"y":44.177},{"x":1757918582126,"y":42.4},{"x":1757918521989,"y":45.893},{"x":1757918461814,"y":58.849},{"x":1757918401817,"y":57.728},{"x":1757918341512,"y":41.404},{"x":1757918281349,"y":62.661},{"x":1757918221191,"y":59.247},{"x":1757918161029,"y":55.797},{"x":1757918101034,"y":81.162},{"x":1757918040712,"y":70.122},{"x":1757917980581,"y":55.434},{"x":1757917920397,"y":58.442},{"x":1757917860252,"y":65.105},{"x":1757917803030,"y":70.69},{"x":1757917742718,"y":40.745},{"x":1757917682555,"y":69.369},{"x":1757917622405,"y":60.848},{"x":1757917562237,"y":65.417},{"x":1757917502221,"y":66.561},{"x":1757917441912,"y":82.892},{"x":1757917381757,"y":70.254},{"x":1757917321597,"y":68.545},{"x":1757917261433,"y":43.568},{"x":1757917201442,"y":41.538},{"x":1757917141118,"y":53.675},{"x":1757917080954,"y":48.785},{"x":1757917020829,"y":55.908},{"x":1757916960665,"y":64.946},{"x":1757916900913,"y":62.903},{"x":1757916840359,"y":44.363},{"x":1757916783007,"y":39.297},{"x":1757916722828,"y":44.942},{"x":1757916662613,"y":42.147},{"x":1757916602550,"y":53.609},{"x":1757916542253,"y":56.273},{"x":1757916482097,"y":55.564},{"x":1757916421935,"y":57.846},{"x":1757916361784,"y":56.463},{"x":1757916301761,"y":41.621},{"x":1757916241472,"y":40.654},{"x":1757916181306,"y":42.684},{"x":1757916121153,"y":47.6},{"x":1757916060952,"y":50.731},{"x":1757916001146,"y":44.968},{"x":1757915940466,"y":42.064},{"x":1757915880333,"y":42.098},{"x":1757915822969,"y":40.862},{"x":1757915762803,"y":43.714},{"x":1757915702770,"y":55.237},{"x":1757915642478,"y":53.834},{"x":1757915582328,"y":59.583},{"x":1757915522166,"y":58.726},{"x":1757915461936,"y":53.778},{"x":1757915401927,"y":49.308},{"x":1757915341637,"y":46.663},{"x":1757915281470,"y":45.191},{"x":1757915221299,"y":41.412},{"x":1757915161135,"y":40.503},{"x":1757915101314,"y":46.435},{"x":1757915040790,"y":45.172},{"x":1757914980638,"y":49.305},{"x":1757914920502,"y":49.104},{"x":1757914860407,"y":47.54},{"x":1757914803145,"y":49.061},{"x":1757914742852,"y":46.456},{"x":1757914682693,"y":43.602},{"x":1757914622553,"y":44.981},{"x":1757914562392,"y":43.459},{"x":1757914502415,"y":44.109},{"x":1757914442091,"y":43.073},{"x":1757914381920,"y":46.8},{"x":1757914321764,"y":45.547},{"x":1757914261604,"y":56.047},{"x":1757914201653,"y":58.592},{"x":1757914141280,"y":65.842},{"x":1757914081126,"y":57.29},{"x":1757914020935,"y":56.967},{"x":1757913960791,"y":45.614},{"x":1757913900847,"y":44.843},{"x":1757913840514,"y":53.719},{"x":1757913780287,"y":44.53},{"x":1757913723013,"y":43.36},{"x":1757913662835,"y":45.544},{"x":1757913602814,"y":47.667},{"x":1757913542516,"y":54.159},{"x":1757913482370,"y":47.433},{"x":1757913422173,"y":48.245},{"x":1757913362010,"y":47.656},{"x":1757913302007,"y":47.756},{"x":1757913241702,"y":47.719},{"x":1757913181536,"y":43.376},{"x":1757913121346,"y":38.616},{"x":1757913061132,"y":35.449},{"x":1757913001130,"y":36.571},{"x":1757912940807,"y":39.792},{"x":1757912880674,"y":51.012},{"x":1757912820526,"y":54.463},{"x":1757912760259,"y":49.978},{"x":1757912703125,"y":49.74},{"x":1757912642820,"y":46.628},{"x":1757912582657,"y":40.022},{"x":1757912522512,"y":35.517},{"x":1757912462349,"y":36.533},{"x":1757912402697,"y":40.256},{"x":1757912341956,"y":39.004},{"x":1757912281758,"y":39.472},{"x":1757912221606,"y":38.306},{"x":1757912161454,"y":38.346},{"x":1757912101439,"y":42.0},{"x":1757912041123,"y":39.327},{"x":1757911980970,"y":37.671},{"x":1757911920825,"y":40.683},{"x":1757911860661,"y":36.021},{"x":1757911800827,"y":44.627},{"x":1757911740299,"y":35.234},{"x":1757911682940,"y":40.281},{"x":1757911622784,"y":41.935},{"x":1757911562629,"y":43.127},{"x":1757911502596,"y":37.57},{"x":1757911442296,"y":32.814},{"x":1757911382133,"y":36.406},{"x":1757911321968,"y":37.424},{"x":1757911261820,"y":43.904},{"x":1757911201812,"y":36.146},{"x":1757911141513,"y":40.395},{"x":1757911081367,"y":39.513},{"x":1757911021215,"y":33.477},{"x":1757910961058,"y":40.627},{"x":1757910901063,"y":31.068},{"x":1757910840744,"y":42.866},{"x":1757910780596,"y":32.453},{"x":1757910720450,"y":30.884},{"x":1757910662959,"y":40.071},{"x":1757910602944,"y":49.714},{"x":1757910542652,"y":54.069},{"x":1757910482508,"y":55.147},{"x":1757910422355,"y":55.475},{"x":1757910362204,"y":58.453},{"x":1757910302196,"y":40.691},{"x":1757910241877,"y":32.139},{"x":1757910181728,"y":41.907},{"x":1757910121570,"y":43.219},{"x":1757910061414,"y":44.492},{"x":1757910001408,"y":45.475},{"x":1757909941101,"y":43.964},{"x":1757909880935,"y":39.078},{"x":1757909820781,"y":35.867},{"x":1757909760616,"y":38.598},{"x":1757909700831,"y":41.727},{"x":1757909640361,"y":32.6},{"x":1757909580235,"y":33.435},{"x":1757909522814,"y":33.012},{"x":1757909462669,"y":31.07},{"x":1757909402657,"y":36.947},{"x":1757909342366,"y":34.679},{"x":1757909280735,"y":30.39},{"x":1757909220583,"y":33.462},{"x":1757909160479,"y":35.174},{"x":1757909100854,"y":39.07},{"x":1757909042953,"y":34.466},{"x":1757908982795,"y":37.361},{"x":1757908922653,"y":32.281},{"x":1757908862555,"y":30.918},{"x":1757908802886,"y":41.718},{"x":1757908741991,"y":42.094},{"x":1757908681777,"y":46.371},{"x":1757908621621,"y":41.384},{"x":1757908561471,"y":48.292},{"x":1757908501504,"y":35.474},{"x":1757908441152,"y":36.08},{"x":1757908380988,"y":41.169},{"x":1757908320846,"y":32.68},{"x":1757908260665,"y":37.101},{"x":1757908201011,"y":31.924},{"x":1757908140321,"y":34.814},{"x":1757908080339,"y":35.723},{"x":1757908022890,"y":38.604},{"x":1757907962738,"y":37.417},{"x":1757907902719,"y":38.662},{"x":1757907842426,"y":34.886},{"x":1757907782279,"y":31.951},{"x":1757907722130,"y":38.98},{"x":1757907661961,"y":35.184},{"x":1757907601868,"y":34.714},{"x":1757907541581,"y":32.934},{"x":1757907481434,"y":34.815},{"x":1757907421294,"y":34.157},{"x":1757907361131,"y":33.432},{"x":1757907301113,"y":34.534},{"x":1757907240822,"y":35.21},{"x":1757907180685,"y":35.555},{"x":1757907120547,"y":33.454},{"x":1757907060298,"y":36.897},{"x":1757907003126,"y":32.237},{"x":1757906942820,"y":31.915},{"x":1757906882672,"y":32.149},{"x":1757906822535,"y":35.477},{"x":1757906762382,"y":36.163},{"x":1757906702360,"y":36.918},{"x":1757906642052,"y":37.942},{"x":1757906581885,"y":34.359},{"x":1757906521730,"y":41.107},{"x":1757906461540,"y":39.573},{"x":1757906401533,"y":36.29},{"x":1757906341246,"y":34.648},{"x":1757906281082,"y":34.104},{"x":1757906220928,"y":31.993},{"x":1757906160770,"y":37.123},{"x":1757906100903,"y":32.972},{"x":1757906040495,"y":35.472},{"x":1757905980217,"y":46.887},{"x":1757905922850,"y":49.138},{"x":1757905862692,"y":51.999},{"x":1757905802699,"y":47.294},{"x":1757905742383,"y":45.686},{"x":1757905682207,"y":36.272},{"x":1757905622036,"y":41.716},{"x":1757905561516,"y":44.107},{"x":1757905501635,"y":41.759},{"x":1757905441215,"y":38.956},{"x":1757905380982,"y":40.638},{"x":1757905320784,"y":42.761},{"x":1757905260621,"y":39.519},{"x":1757905202534,"y":48.401},{"x":1757905142172,"y":36.183},{"x":1757905081944,"y":36.926},{"x":1757905021796,"y":41.058},{"x":1757904961631,"y":37.169},{"x":1757904901643,"y":41.595},{"x":1757904841326,"y":40.572},{"x":1757904781183,"y":42.911},{"x":1757904721025,"y":53.952},{"x":1757904660879,"y":53.666},{"x":1757904600924,"y":48.382},{"x":1757904540575,"y":50.704},{"x":1757904480488,"y":43.502},{"x":1757904420325,"y":38.43},{"x":1757904362966,"y":35.128},{"x":1757904302949,"y":33.943},{"x":1757904242668,"y":40.901},{"x":1757904182519,"y":33.064},{"x":1757904122360,"y":38.365},{"x":1757904062179,"y":37.182},{"x":1757904002177,"y":36.633},{"x":1757903941859,"y":37.41},{"x":1757903881718,"y":33.604},{"x":1757903821566,"y":33.075},{"x":1757903761415,"y":31.091},{"x":1757903701438,"y":35.93},{"x":1757903641089,"y":35.205},{"x":1757903580934,"y":39.651},{"x":1757903520791,"y":37.806},{"x":1757903460617,"y":35.47},{"x":1757903400884,"y":38.417},{"x":1757903340372,"y":39.399},{"x":1757903282964,"y":39.988},{"x":1757903222818,"y":34.295},{"x":1757903162669,"y":34.998},{"x":1757903102658,"y":30.105},{"x":1757903042368,"y":32.975},{"x":1757902982215,"y":31.609},{"x":1757902922066,"y":32.029},{"x":1757902861878,"y":34.659},{"x":1757902801846,"y":40.021},{"x":1757902741539,"y":38.754},{"x":1757902681384,"y":33.65},{"x":1757902621240,"y":39.016},{"x":1757902561074,"y":32.897},{"x":1757902501067,"y":33.441},{"x":1757902440724,"y":36.791},{"x":1757902380577,"y":35.343},{"x":1757902320484,"y":39.289},{"x":1757902260295,"y":36.926},{"x":1757902202998,"y":31.137},{"x":1757902142709,"y":34.591},{"x":1757902082545,"y":29.934},{"x":1757902022388,"y":36.441},{"x":1757901962235,"y":31.515},{"x":1757901902228,"y":29.499},{"x":1757901841911,"y":30.139},{"x":1757901781758,"y":32.342},{"x":1757901721611,"y":41.158},{"x":1757901661455,"y":44.842},{"x":1757901601777,"y":42.622},{"x":1757901541119,"y":44.406},{"x":1757901480881,"y":44.3},{"x":1757901420716,"y":31.234},{"x":1757901360614,"y":34.108},{"x":1757901300815,"y":39.439},{"x":1757901240350,"y":33.308},{"x":1757901182949,"y":32.672},{"x":1757901122792,"y":32.07},{"x":1757901062647,"y":27.737},{"x":1757901002621,"y":33.224},{"x":1757900942325,"y":29.412},{"x":1757900882169,"y":36.107},{"x":1757900822020,"y":34.069},{"x":1757900761865,"y":34.265},{"x":1757900701861,"y":33.116},{"x":1757900641565,"y":33.459},{"x":1757900581416,"y":32.844},{"x":1757900521265,"y":33.178},{"x":1757900461104,"y":31.55},{"x":1757900401127,"y":34.864},{"x":1757900340766,"y":44.195},{"x":1757900280626,"y":40.975},{"x":1757900220478,"y":50.296},{"x":1757900160287,"y":46.162},{"x":1757900100507,"y":45.472},{"x":1757900042883,"y":35.264},{"x":1757899982729,"y":33.754},{"x":1757899922576,"y":32.188},{"x":1757899862424,"y":35.139},{"x":1757899802401,"y":38.301},{"x":1757899742115,"y":30.898},{"x":1757899681955,"y":32.158},{"x":1757899621808,"y":31.682},{"x":1757899561646,"y":34.041},{"x":1757899501633,"y":41.709},{"x":1757899441342,"y":34.516},{"x":1757899381197,"y":34.989},{"x":1757899321020,"y":33.127},{"x":1757899260855,"y":32.824},{"x":1757899201105,"y":37.898},{"x":1757899140558,"y":31.831},{"x":1757899080400,"y":30.966},{"x":1757899020217,"y":30.269},{"x":1757898962926,"y":32.898},{"x":1757898902911,"y":34.051},{"x":1757898842617,"y":29.915},{"x":1757898782459,"y":31.057},{"x":1757898722306,"y":30.922},{"x":1757898662086,"y":32.858},{"x":1757898602053,"y":32.785},{"x":1757898541743,"y":33.16},{"x":1757898481589,"y":38.646},{"x":1757898421431,"y":38.906},{"x":1757898361258,"y":40.164},{"x":1757898301279,"y":42.614},{"x":1757898240925,"y":33.054},{"x":1757898180781,"y":34.632},{"x":1757898120643,"y":34.867},{"x":1757898060518,"y":41.42},{"x":1757898001556,"y":39.153},{"x":1757897943010,"y":36.878},{"x":1757897882769,"y":37.062},{"x":1757897822709,"y":37.457},{"x":1757897762526,"y":43.574},{"x":1757897702471,"y":40.933},{"x":1757897642185,"y":40.207},{"x":1757897582041,"y":36.614},{"x":1757897521869,"y":35.456},{"x":1757897461714,"y":36.713},{"x":1757897401718,"y":36.549},{"x":1757897341399,"y":39.257},{"x":1757897281238,"y":51.713},{"x":1757897221079,"y":48.673},{"x":1757897160924,"y":49.308},{"x":1757897101200,"y":44.101},{"x":1757897040609,"y":45.932},{"x":1757896980406,"y":36.041},{"x":1757896920273,"y":33.539},{"x":1757896862966,"y":38.538},{"x":1757896802936,"y":38.226},{"x":1757896742669,"y":32.678},{"x":1757896682501,"y":33.104},{"x":1757896622356,"y":29.214},{"x":1757896562203,"y":35.16},{"x":1757896502159,"y":34.878},{"x":1757896441869,"y":34.767},{"x":1757896381727,"y":31.387},{"x":1757896321569,"y":33.425},{"x":1757896261415,"y":34.814},{"x":1757896201469,"y":29.227},{"x":1757896141107,"y":31.45},{"x":1757896080941,"y":28.368},{"x":1757896020795,"y":27.886},{"x":1757895960653,"y":40.825},{"x":1757895900815,"y":40.004},{"x":1757895840344,"y":43.362},{"x":1757895780304,"y":44.992},{"x":1757895722885,"y":39.588},{"x":1757895662729,"y":39.951},{"x":1757895602719,"y":38.658},{"x":1757895542420,"y":35.087},{"x":1757895482271,"y":50.033},{"x":1757895422119,"y":41.698},{"x":1757895361946,"y":38.421},{"x":1757895301935,"y":42.06},{"x":1757895241643,"y":37.698},{"x":1757895181492,"y":32.039},{"x":1757895121331,"y":30.295},{"x":1757895061130,"y":31.885},{"x":1757895001101,"y":35.34},{"x":1757894940762,"y":35.232},{"x":1757894880658,"y":41.044},{"x":1757894820484,"y":34.296},{"x":1757894760269,"y":36.442},{"x":1757894703090,"y":39.546},{"x":1757894642810,"y":37.438},{"x":1757894582659,"y":40.707},{"x":1757894522490,"y":35.649},{"x":1757894462331,"y":39.222},{"x":1757894402481,"y":43.466},{"x":1757894341985,"y":43.331},{"x":1757894281755,"y":47.001},{"x":1757894221609,"y":48.777},{"x":1757894161470,"y":44.795},{"x":1757894101438,"y":43.977},{"x":1757894041153,"y":40.152},{"x":1757893980963,"y":37.162},{"x":1757893920822,"y":38.788},{"x":1757893860669,"y":37.311},{"x":1757893800927,"y":42.802},{"x":1757893740260,"y":45.96},{"x":1757893683016,"y":38.493},{"x":1757893622827,"y":39.322},{"x":1757893562668,"y":43.578},{"x":1757893502657,"y":40.932},{"x":1757893442372,"y":43.758},{"x":1757893382215,"y":47.776},{"x":1757893322066,"y":52.017},{"x":1757893261893,"y":52.229},{"x":1757893201902,"y":53.292},{"x":1757893141592,"y":51.228},{"x":1757893081436,"y":50.23},{"x":1757893021284,"y":40.707},{"x":1757892961128,"y":42.09},{"x":1757892901106,"y":37.542},{"x":1757892840798,"y":37.531},{"x":1757892780646,"y":39.7},{"x":1757892720544,"y":49.147},{"x":1757892660364,"y":44.431},{"x":1757892603131,"y":43.63},{"x":1757892542843,"y":49.413},{"x":1757892482692,"y":49.229},{"x":1757892422536,"y":53.691},{"x":1757892362377,"y":50.676},{"x":1757892302365,"y":51.037},{"x":1757892242063,"y":40.115},{"x":1757892181898,"y":38.589},{"x":1757892121752,"y":45.348},{"x":1757892061595,"y":41.258},{"x":1757892001588,"y":41.261},{"x":1757891941288,"y":44.181},{"x":1757891881144,"y":46.677},{"x":1757891820971,"y":46.371},{"x":1757891760830,"y":45.011},{"x":1757891701053,"y":40.948},{"x":1757891640539,"y":39.116},{"x":1757891580355,"y":42.207},{"x":1757891520208,"y":49.198},{"x":1757891462889,"y":39.32},{"x":1757891402834,"y":39.477},{"x":1757891342519,"y":46.477},{"x":1757891282348,"y":43.368},{"x":1757891222219,"y":55.984},{"x":1757891162042,"y":43.916},{"x":1757891102026,"y":45.322},{"x":1757891041707,"y":43.556},{"x":1757890981547,"y":43.977},{"x":1757890921397,"y":47.16},{"x":1757890861245,"y":48.808},{"x":1757890801711,"y":46.178},{"x":1757890740883,"y":44.625},{"x":1757890680681,"y":54.837},{"x":1757890620547,"y":49.03},{"x":1757890560404,"y":46.421},{"x":1757890500708,"y":46.467},{"x":1757890442927,"y":48.558},{"x":1757890382766,"y":44.738},{"x":1757890322623,"y":46.694},{"x":1757890262472,"y":48.88},{"x":1757890202445,"y":42.179},{"x":1757890142146,"y":45.861},{"x":1757890081989,"y":41.898},{"x":1757890021838,"y":47.71},{"x":1757889961704,"y":44.147},{"x":1757889901688,"y":47.728},{"x":1757889841389,"y":43.3},{"x":1757889781227,"y":55.301},{"x":1757889721082,"y":51.979},{"x":1757889660928,"y":51.462},{"x":1757889600970,"y":54.609},{"x":1757889540611,"y":51.382},{"x":1757889480458,"y":44.841},{"x":1757889420315,"y":39.717},{"x":1757889363011,"y":44.887},{"x":1757889302994,"y":37.934},{"x":1757889242716,"y":39.831},{"x":1757889182566,"y":44.267},{"x":1757889122412,"y":40.014},{"x":1757889062243,"y":45.369},{"x":1757889002267,"y":41.164},{"x":1757888941905,"y":38.721},{"x":1757888881756,"y":38.084},{"x":1757888821614,"y":42.16},{"x":1757888761457,"y":39.371},{"x":1757888701448,"y":39.214},{"x":1757888641153,"y":40.633},{"x":1757888580989,"y":44.575},{"x":1757888520841,"y":44.138},{"x":1757888460661,"y":43.238},{"x":1757888400966,"y":46.937},{"x":1757888340271,"y":41.476},{"x":1757888283006,"y":42.699},{"x":1757888222857,"y":40.426},{"x":1757888162684,"y":40.749},{"x":1757888102657,"y":39.199},{"x":1757888042375,"y":41.827},{"x":1757887982235,"y":49.656},{"x":1757887922077,"y":48.478},{"x":1757887861871,"y":46.135},{"x":1757887801827,"y":50.551},{"x":1757887741460,"y":50.666},{"x":1757887681313,"y":41.132},{"x":1757887621174,"y":40.921},{"x":1757887561038,"y":42.125},{"x":1757887501047,"y":41.551},{"x":1757887440746,"y":38.071},{"x":1757887380616,"y":38.601},{"x":1757887320477,"y":37.167},{"x":1757887263021,"y":38.522},{"x":1757887203184,"y":40.532},{"x":1757887142663,"y":42.131},{"x":1757887082465,"y":43.07},{"x":1757887022316,"y":40.104},{"x":1757886962154,"y":39.452},{"x":1757886902143,"y":41.934},{"x":1757886841836,"y":40.766},{"x":1757886781684,"y":43.694},{"x":1757886721523,"y":40.747},{"x":1757886661327,"y":40.572},{"x":1757886601316,"y":39.36},{"x":1757886541007,"y":46.21},{"x":1757886480869,"y":44.142},{"x":1757886420725,"y":39.166},{"x":1757886360571,"y":47.953},{"x":1757886300754,"y":46.741},{"x":1757886240364,"y":62.365},{"x":1757886182972,"y":60.024},{"x":1757886122813,"y":49.594},{"x":1757886062680,"y":48.395},{"x":1757886002638,"y":63.043},{"x":1757885942357,"y":61.151},{"x":1757885882209,"y":66.352},{"x":1757885822051,"y":60.314},{"x":1757885761886,"y":63.95},{"x":1757885701936,"y":67.278},{"x":1757885641583,"y":59.831},{"x":1757885581431,"y":59.142},{"x":1757885521285,"y":38.383},{"x":1757885461138,"y":37.071},{"x":1757885401146,"y":44.019},{"x":1757885340785,"y":40.967},{"x":1757885280643,"y":47.567},{"x":1757885220455,"y":43.159},{"x":1757885160451,"y":43.362},{"x":1757885103164,"y":43.098},{"x":1757885042834,"y":48.581},{"x":1757884982689,"y":46.48},{"x":1757884922535,"y":45.734},{"x":1757884862385,"y":46.777},{"x":1757884802364,"y":48.152},{"x":1757884742055,"y":46.768},{"x":1757884681887,"y":42.452},{"x":1757884621741,"y":41.379},{"x":1757884561694,"y":45.337},{"x":1757884501581,"y":46.516},{"x":1757884441300,"y":38.136},{"x":1757884381120,"y":57.249},{"x":1757884320956,"y":59.292},{"x":1757884260792,"y":60.338},{"x":1757884201063,"y":62.32},{"x":1757884140301,"y":59.43},{"x":1757884082975,"y":40.702},{"x":1757884022836,"y":38.549},{"x":1757883962656,"y":38.63},{"x":1757883902645,"y":41.497},{"x":1757883842362,"y":39.437},{"x":1757883782220,"y":40.245},{"x":1757883722076,"y":40.392},{"x":1757883661913,"y":46.009},{"x":1757883602131,"y":37.508},{"x":1757883541592,"y":39.527},{"x":1757883481375,"y":41.837},{"x":1757883421232,"y":47.758},{"x":1757883361076,"y":68.78},{"x":1757883301073,"y":63.026},{"x":1757883240780,"y":40.505},{"x":1757883180632,"y":38.511},{"x":1757883120520,"y":40.079},{"x":1757883060324,"y":38.429},{"x":1757883003088,"y":35.037},{"x":1757882942803,"y":33.202},{"x":1757882882661,"y":32.768},{"x":1757882822522,"y":37.112},{"x":1757882762353,"y":43.772},{"x":1757882702349,"y":45.927},{"x":1757882642056,"y":45.529},{"x":1757882581902,"y":42.048},{"x":1757882521740,"y":47.927},{"x":1757882461601,"y":50.687},{"x":1757882401595,"y":46.84},{"x":1757882341284,"y":60.038},{"x":1757882281139,"y":50.601},{"x":1757882220950,"y":59.421},{"x":1757882160807,"y":47.469},{"x":1757882100874,"y":42.181},{"x":1757882040478,"y":45.804},{"x":1757881980361,"y":53.825},{"x":1757881920263,"y":41.715},{"x":1757881862907,"y":50.192},{"x":1757881802892,"y":45.162},{"x":1757881742609,"y":42.984},{"x":1757881682450,"y":44.838},{"x":1757881622292,"y":47.697},{"x":1757881562129,"y":43.621},{"x":1757881502086,"y":39.63},{"x":1757881441800,"y":49.955},{"x":1757881381638,"y":49.293},{"x":1757881321473,"y":48.678},{"x":1757881261331,"y":60.2},{"x":1757881201327,"y":49.447},{"x":1757881140984,"y":51.558},{"x":1757881080834,"y":41.818},{"x":1757881020683,"y":63.892},{"x":1757880960585,"y":49.572},{"x":1757880900808,"y":48.499},{"x":1757880840315,"y":56.995},{"x":1757880782893,"y":53.832},{"x":1757880722720,"y":68.651},{"x":1757880662490,"y":46.637},{"x":1757880602487,"y":54.111},{"x":1757880542170,"y":51.927},{"x":1757880482003,"y":55.208},{"x":1757880421841,"y":65.55},{"x":1757880361690,"y":50.536},{"x":1757880301661,"y":50.492},{"x":1757880241374,"y":50.349},{"x":1757880181231,"y":65.791},{"x":1757880121069,"y":62.247},{"x":1757880060904,"y":61.706},{"x":1757880001986,"y":55.696},{"x":1757879940509,"y":46.15},{"x":1757879880323,"y":37.645},{"x":1757879820229,"y":54.549},{"x":1757879762888,"y":45.576},{"x":1757879702868,"y":49.627},{"x":1757879642578,"y":53.562},{"x":1757879582438,"y":60.471},{"x":1757879522288,"y":69.16},{"x":1757879462137,"y":67.109},{"x":1757879402161,"y":64.325},{"x":1757879341805,"y":61.63},{"x":1757879281654,"y":65.792},{"x":1757879221504,"y":47.661},{"x":1757879161349,"y":48.389},{"x":1757879101387,"y":48.87},{"x":1757879041023,"y":59.535},{"x":1757878980885,"y":61.543},{"x":1757878920725,"y":56.736},{"x":1757878860588,"y":55.543},{"x":1757878800870,"y":50.211},{"x":1757878740311,"y":65.408},{"x":1757878682975,"y":57.66},{"x":1757878622829,"y":42.663},{"x":1757878562674,"y":50.289},{"x":1757878502659,"y":42.253},{"x":1757878442374,"y":57.028},{"x":1757878382224,"y":54.627},{"x":1757878322050,"y":59.079},{"x":1757878261898,"y":74.621},{"x":1757878201890,"y":67.18},{"x":1757878141582,"y":77.753},{"x":1757878081425,"y":66.45},{"x":1757878021266,"y":55.365},{"x":1757877961110,"y":69.455},{"x":1757877901121,"y":50.522},{"x":1757877840790,"y":64.43},{"x":1757877780649,"y":53.06},{"x":1757877720474,"y":60.539},{"x":1757877660266,"y":66.734},{"x":1757877603119,"y":72.44},{"x":1757877542830,"y":58.911},{"x":1757877482675,"y":48.996},{"x":1757877422539,"y":49.671},{"x":1757877362371,"y":54.407},{"x":1757877302375,"y":67.026},{"x":1757877242063,"y":80.192},{"x":1757877181908,"y":67.793},{"x":1757877121747,"y":68.655},{"x":1757877061558,"y":69.178},{"x":1757877001514,"y":65.653},{"x":1757876941235,"y":52.886},{"x":1757876881083,"y":53.897},{"x":1757876820902,"y":60.575},{"x":1757876760750,"y":65.729},{"x":1757876700879,"y":79.333},{"x":1757876640481,"y":70.102},{"x":1757876580369,"y":50.585},{"x":1757876522917,"y":47.442},{"x":1757876462758,"y":63.492},{"x":1757876402880,"y":72.048},{"x":1757876342419,"y":71.492},{"x":1757876282219,"y":64.335},{"x":1757876222061,"y":56.575},{"x":1757876161891,"y":52.886},{"x":1757876101874,"y":76.584},{"x":1757876041586,"y":44.044},{"x":1757875981427,"y":55.733},{"x":1757875921263,"y":61.628},{"x":1757875861103,"y":47.6},{"x":1757875801082,"y":46.622},{"x":1757875740779,"y":59.494},{"x":1757875680644,"y":66.597},{"x":1757875620499,"y":60.572},{"x":1757875560304,"y":51.52},{"x":1757875503136,"y":42.138},{"x":1757875442832,"y":51.695},{"x":1757875382686,"y":54.542},{"x":1757875322504,"y":46.306},{"x":1757875262386,"y":56.236},{"x":1757875202327,"y":64.23},{"x":1757875142057,"y":71.284},{"x":1757875081863,"y":63.709},{"x":1757875021709,"y":62.369},{"x":1757874961503,"y":48.659},{"x":1757874901462,"y":51.735},{"x":1757874841170,"y":54.986},{"x":1757874781013,"y":61.854},{"x":1757874720846,"y":63.831},{"x":1757874660682,"y":68.68},{"x":1757874601074,"y":60.616},{"x":1757874540437,"y":87.622},{"x":1757874483028,"y":67.279},{"x":1757874422895,"y":59.468},{"x":1757874362722,"y":50.854},{"x":1757874302744,"y":50.009},{"x":1757874242414,"y":57.619},{"x":1757874182266,"y":61.236},{"x":1757874122123,"y":72.334},{"x":1757874061906,"y":80.52},{"x":1757874001884,"y":84.82},{"x":1757873941612,"y":60.107},{"x":1757873881394,"y":68.774},{"x":1757873821243,"y":68.371},{"x":1757873761064,"y":47.89},{"x":1757873701175,"y":56.929},{"x":1757873640765,"y":48.192},{"x":1757873580641,"y":53.506},{"x":1757873520481,"y":54.838},{"x":1757873460275,"y":53.819},{"x":1757873403138,"y":80.887},{"x":1757873342836,"y":58.731},{"x":1757873282672,"y":78.324},{"x":1757873222512,"y":62.466},{"x":1757873162368,"y":54.175},{"x":1757873102336,"y":50.172},{"x":1757873042054,"y":49.008},{"x":1757872981890,"y":54.176},{"x":1757872921743,"y":57.556},{"x":1757872861594,"y":49.067},{"x":1757872801837,"y":63.16},{"x":1757872741226,"y":48.761},{"x":1757872681029,"y":51.431},{"x":1757872620868,"y":58.936},{"x":1757872560733,"y":60.945},{"x":1757872500756,"y":52.764},{"x":1757872440410,"y":54.122},{"x":1757872380328,"y":62.707},{"x":1757872322978,"y":50.666},{"x":1757872262827,"y":52.949},{"x":1757872202817,"y":57.975},{"x":1757872142528,"y":69.351},{"x":1757872082363,"y":62.503},{"x":1757872022217,"y":44.007},{"x":1757871962050,"y":57.659},{"x":1757871902033,"y":76.075},{"x":1757871841734,"y":55.989},{"x":1757871781581,"y":68.193},{"x":1757871721436,"y":57.537},{"x":1757871661303,"y":83.413},{"x":1757871601290,"y":47.4},{"x":1757871540941,"y":41.618},{"x":1757871480787,"y":50.604},{"x":1757871420642,"y":54.972},{"x":1757871360499,"y":61.098},{"x":1757871300808,"y":48.028},{"x":1757871240079,"y":54.241},{"x":1757871182884,"y":60.411},{"x":1757871122740,"y":53.109},{"x":1757871062587,"y":63.389},{"x":1757871002566,"y":72.228},{"x":1757870942273,"y":64.999},{"x":1757870882118,"y":51.047},{"x":1757870821949,"y":51.692},{"x":1757870761798,"y":65.862},{"x":1757870701770,"y":56.795},{"x":1757870641477,"y":54.253},{"x":1757870581328,"y":53.316},{"x":1757870521169,"y":61.858},{"x":1757870460993,"y":52.022},{"x":1757870401085,"y":74.46},{"x":1757870340662,"y":51.695},{"x":1757870280521,"y":62.204},{"x":1757870220376,"y":65.268},{"x":1757870160247,"y":56.121},{"x":1757870103052,"y":51.714},{"x":1757870042723,"y":62.777},{"x":1757869982569,"y":69.372},{"x":1757869922402,"y":82.204},{"x":1757869862232,"y":52.841},{"x":1757869802150,"y":57.778},{"x":1757869741812,"y":58.136},{"x":1757869681679,"y":54.637},{"x":1757869621494,"y":77.785},{"x":1757869561331,"y":63.633},{"x":1757869501329,"y":71.287},{"x":1757869440992,"y":66.854},{"x":1757869380834,"y":51.507},{"x":1757869320674,"y":57.983},{"x":1757869260581,"y":60.884},{"x":1757869201409,"y":59.138},{"x":1757869140267,"y":61.581},{"x":1757869082864,"y":60.078},{"x":1757869022725,"y":64.713},{"x":1757868962558,"y":57.511},{"x":1757868902577,"y":85.125},{"x":1757868842246,"y":73.111},{"x":1757868782084,"y":86.926},{"x":1757868721922,"y":76.514},{"x":1757868661765,"y":74.994},{"x":1757868601741,"y":66.217},{"x":1757868541469,"y":96.67},{"x":1757868481311,"y":71.028},{"x":1757868421143,"y":59.446},{"x":1757868360960,"y":83.655},{"x":1757868301162,"y":73.425},{"x":1757868240533,"y":85.197},{"x":1757868180432,"y":75.097},{"x":1757868120332,"y":85.734},{"x":1757868062973,"y":63.474},{"x":1757868002959,"y":68.479},{"x":1757867942661,"y":53.242},{"x":1757867882512,"y":67.025},{"x":1757867822367,"y":73.031},{"x":1757867762218,"y":82.012},{"x":1757867702201,"y":75.533},{"x":1757867641908,"y":60.147},{"x":1757867581741,"y":80.603},{"x":1757867521592,"y":71.7},{"x":1757867461444,"y":65.243},{"x":1757867401512,"y":69.319},{"x":1757867341120,"y":79.593},{"x":1757867280963,"y":85.831},{"x":1757867220819,"y":70.537},{"x":1757867160681,"y":81.349},{"x":1757867100853,"y":82.399},{"x":1757867040370,"y":66.453},{"x":1757866983005,"y":59.672},{"x":1757866922844,"y":57.633},{"x":1757866862695,"y":68.76},{"x":1757866802683,"y":49.724},{"x":1757866742397,"y":50.845},{"x":1757866682239,"y":62.078},{"x":1757866622086,"y":54.962},{"x":1757866561907,"y":69.911},{"x":1757866501887,"y":48.646},{"x":1757866441589,"y":50.429},{"x":1757866381440,"y":72.789},{"x":1757866321305,"y":56.002},{"x":1757866261080,"y":78.014},{"x":1757866201084,"y":69.121},{"x":1757866140723,"y":94.409},{"x":1757866080614,"y":81.096},{"x":1757866020436,"y":92.021},{"x":1757865960237,"y":54.598},{"x":1757865903036,"y":73.339},{"x":1757865842752,"y":72.508},{"x":1757865782602,"y":68.85},{"x":1757865722453,"y":65.763},{"x":1757865662302,"y":51.353},{"x":1757865602563,"y":65.567},{"x":1757865541950,"y":60.252},{"x":1757865481748,"y":57.066},{"x":1757865421598,"y":63.007},{"x":1757865361441,"y":74.91},{"x":1757865301430,"y":85.703},{"x":1757865241137,"y":54.419},{"x":1757865180971,"y":62.856},{"x":1757865120818,"y":74.262},{"x":1757865060675,"y":78.325},{"x":1757865000806,"y":80.574},{"x":1757864940328,"y":58.905},{"x":1757864882941,"y":83.852},{"x":1757864822786,"y":79.466},{"x":1757864762657,"y":62.528},{"x":1757864702655,"y":65.658},{"x":1757864642345,"y":73.697},{"x":1757864582179,"y":60.862},{"x":1757864521998,"y":68.34},{"x":1757864461850,"y":94.656},{"x":1757864401829,"y":64.774},{"x":1757864341533,"y":61.171},{"x":1757864281385,"y":69.493},{"x":1757864221233,"y":54.405},{"x":1757864161083,"y":62.187},{"x":1757864101070,"y":59.304},{"x":1757864040749,"y":78.213},{"x":1757863980611,"y":88.528},{"x":1757863920515,"y":57.703},{"x":1757863860325,"y":57.548},{"x":1757863803159,"y":53.771},{"x":1757863742867,"y":71.926},{"x":1757863682718,"y":77.957},{"x":1757863622562,"y":65.037},{"x":1757863562418,"y":51.494},{"x":1757863502399,"y":68.815},{"x":1757863442113,"y":61.498},{"x":1757863381938,"y":51.054},{"x":1757863321797,"y":49.521},{"x":1757863261652,"y":51.673},{"x":1757863201656,"y":57.204},{"x":1757863141340,"y":50.447},{"x":1757863081191,"y":81.222},{"x":1757863021019,"y":80.044},{"x":1757862960845,"y":71.887},{"x":1757862900900,"y":57.166},{"x":1757862840449,"y":66.921},{"x":1757862780259,"y":44.007},{"x":1757862723019,"y":65.683},{"x":1757862662812,"y":45.508},{"x":1757862602783,"y":48.792},{"x":1757862542500,"y":45.217},{"x":1757862482352,"y":45.677},{"x":1757862422200,"y":48.232},{"x":1757862362053,"y":60.889},{"x":1757862302033,"y":53.805},{"x":1757862241728,"y":55.924},{"x":1757862181579,"y":54.209},{"x":1757862121424,"y":75.345},{"x":1757862061253,"y":66.56},{"x":1757862002026,"y":65.268},{"x":1757861940816,"y":82.535},{"x":1757861880598,"y":67.883},{"x":1757861820450,"y":62.485},{"x":1757861760382,"y":69.006},{"x":1757861703070,"y":55.734},{"x":1757861642761,"y":67.609},{"x":1757861582609,"y":57.877},{"x":1757861522452,"y":65.267},{"x":1757861462306,"y":51.431},{"x":1757861402284,"y":59.128},{"x":1757861341984,"y":49.54},{"x":1757861281826,"y":61.196},{"x":1757861221685,"y":52.082},{"x":1757861161516,"y":83.399},{"x":1757861101498,"y":56.103},{"x":1757861041189,"y":46.767},{"x":1757860981004,"y":67.168},{"x":1757860920823,"y":85.337},{"x":1757860860679,"y":65.18},{"x":1757860800941,"y":59.999},{"x":1757860740315,"y":64.133},{"x":1757860683031,"y":58.589},{"x":1757860622870,"y":51.547},{"x":1757860562710,"y":73.045},{"x":1757860502688,"y":74.012},{"x":1757860442402,"y":73.573},{"x":1757860382249,"y":77.923},{"x":1757860322108,"y":62.004},{"x":1757860261936,"y":93.223},{"x":1757860201956,"y":70.413},{"x":1757860141645,"y":49.442},{"x":1757860081487,"y":44.596},{"x":1757860021337,"y":64.685},{"x":1757859961171,"y":93.147},{"x":1757859901147,"y":49.971},{"x":1757859840843,"y":47.284},{"x":1757859780681,"y":70.825},{"x":1757859720528,"y":41.758},{"x":1757859660501,"y":45.36},{"x":1757859600661,"y":69.552},{"x":1757859542922,"y":56.363},{"x":1757859482765,"y":51.109},{"x":1757859422612,"y":41.571},{"x":1757859362456,"y":54.692},{"x":1757859302442,"y":61.893},{"x":1757859242153,"y":68.383},{"x":1757859181987,"y":52.319},{"x":1757859121825,"y":49.649},{"x":1757859061606,"y":53.181},{"x":1757859001551,"y":33.05},{"x":1757858941252,"y":57.708},{"x":1757858881102,"y":44.609},{"x":1757858820927,"y":47.484},{"x":1757858760782,"y":51.078},{"x":1757858700831,"y":59.014},{"x":1757858640524,"y":72.388},{"x":1757858580341,"y":45.544},{"x":1757858522982,"y":44.989},{"x":1757858462832,"y":65.048},{"x":1757858402918,"y":52.064},{"x":1757858342492,"y":52.411},{"x":1757858282256,"y":60.372},{"x":1757858222093,"y":38.183},{"x":1757858161924,"y":83.142},{"x":1757858101913,"y":92.231},{"x":1757858041618,"y":75.522},{"x":1757857981475,"y":53.581},{"x":1757857921308,"y":60.263},{"x":1757857861156,"y":63.532},{"x":1757857801128,"y":59.642},{"x":1757857740814,"y":45.405},{"x":1757857680664,"y":56.869},{"x":1757857620512,"y":55.414},{"x":1757857560370,"y":47.34},{"x":1757857503175,"y":63.763},{"x":1757857442868,"y":86.17},{"x":1757857382717,"y":43.044},{"x":1757857322578,"y":65.79},{"x":1757857262410,"y":89.778},{"x":1757857202390,"y":52.923},{"x":1757857142101,"y":62.091},{"x":1757857081943,"y":55.152},{"x":1757857021788,"y":55.875},{"x":1757856961632,"y":65.456},{"x":1757856901600,"y":83.581},{"x":1757856841309,"y":55.575},{"x":1757856781155,"y":53.464},{"x":1757856720964,"y":53.065},{"x":1757856660813,"y":46.909},{"x":1757856600908,"y":51.958},{"x":1757856540462,"y":66.22},{"x":1757856480323,"y":75.767},{"x":1757856420050,"y":70.464},{"x":1757856362864,"y":43.772},{"x":1757856302880,"y":44.596},{"x":1757856242583,"y":47.756},{"x":1757856182417,"y":34.594},{"x":1757856122256,"y":48.022},{"x":1757856062085,"y":49.152},{"x":1757856002082,"y":84.616},{"x":1757855941752,"y":47.321},{"x":1757855881594,"y":54.206},{"x":1757855821437,"y":41.352},{"x":1757855761284,"y":28.468},{"x":1757855701284,"y":72.534},{"x":1757855640921,"y":38.982},{"x":1757855580765,"y":43.097},{"x":1757855520668,"y":34.14},{"x":1757855460453,"y":28.352},{"x":1757855400627,"y":49.622},{"x":1757855342930,"y":72.889},{"x":1757855282793,"y":80.601},{"x":1757855222618,"y":61.637},{"x":1757855162461,"y":60.405},{"x":1757855102457,"y":68.09},{"x":1757855042145,"y":76.15},{"x":1757854981958,"y":58.855},{"x":1757854921811,"y":59.448},{"x":1757854861663,"y":49.607},{"x":1757854802222,"y":60.44},{"x":1757854741300,"y":57.106},{"x":1757854681076,"y":50.266},{"x":1757854620915,"y":56.75},{"x":1757854560767,"y":61.021},{"x":1757854500882,"y":48.136},{"x":1757854440437,"y":52.082},{"x":1757854380287,"y":56.752},{"x":1757854322999,"y":76.971},{"x":1757854262848,"y":57.448},{"x":1757854202808,"y":50.801},{"x":1757854142475,"y":39.058},{"x":1757854082324,"y":43.308},{"x":1757854022178,"y":51.115},{"x":1757853962020,"y":55.523},{"x":1757853901997,"y":43.401},{"x":1757853841646,"y":48.674},{"x":1757853781495,"y":77.643},{"x":1757853721326,"y":39.883},{"x":1757853661156,"y":59.908},{"x":1757853601256,"y":49.17},{"x":1757853540810,"y":42.923},{"x":1757853480667,"y":48.862},{"x":1757853420545,"y":37.832},{"x":1757853360374,"y":45.449},{"x":1757853303118,"y":62.215},{"x":1757853242822,"y":33.48},{"x":1757853182675,"y":40.662},{"x":1757853122522,"y":32.943},{"x":1757853062370,"y":37.134},{"x":1757853002369,"y":66.104},{"x":1757852942042,"y":55.885},{"x":1757852881887,"y":43.789},{"x":1757852821734,"y":38.404},{"x":1757852761577,"y":33.945},{"x":1757852701571,"y":49.568},{"x":1757852641270,"y":41.644},{"x":1757852581145,"y":47.594},{"x":1757852520942,"y":43.24},{"x":1757852460786,"y":73.682},{"x":1757852401060,"y":41.263},{"x":1757852340478,"y":64.984},{"x":1757852280339,"y":61.633},{"x":1757852223007,"y":59.36},{"x":1757852162832,"y":52.331},{"x":1757852102813,"y":62.397},{"x":1757852042529,"y":101.43},{"x":1757851982375,"y":70.448},{"x":1757851922213,"y":70.559},{"x":1757851861997,"y":47.162},{"x":1757851801966,"y":50.963},{"x":1757851741651,"y":60.076},{"x":1757851681497,"y":56.635},{"x":1757851621350,"y":43.583},{"x":1757851561193,"y":51.148},{"x":1757851501172,"y":45.559},{"x":1757851440856,"y":47.923},{"x":1757851380699,"y":73.857},{"x":1757851320552,"y":52.412},{"x":1757851260349,"y":39.949},{"x":1757851200632,"y":44.821},{"x":1757851142857,"y":46.271},{"x":1757851082649,"y":69.717},{"x":1757851022503,"y":56.83},{"x":1757850962355,"y":50.895},{"x":1757850902336,"y":53.018},{"x":1757850842039,"y":43.544},{"x":1757850781879,"y":65.924},{"x":1757850721726,"y":56.696},{"x":1757850661564,"y":41.227},{"x":1757850601548,"y":48.043},{"x":1757850541278,"y":35.124},{"x":1757850481100,"y":37.291},{"x":1757850420911,"y":40.739},{"x":1757850360764,"y":59.302},{"x":1757850301137,"y":33.163},{"x":1757850240440,"y":54.069},{"x":1757850180408,"y":55.1},{"x":1757850122976,"y":35.602},{"x":1757850062826,"y":50.43},{"x":1757850002805,"y":31.403},{"x":1757849942518,"y":68.121},{"x":1757849882360,"y":58.039},{"x":1757849822203,"y":40.721},{"x":1757849762054,"y":40.63},{"x":1757849702030,"y":52.688},{"x":1757849641719,"y":31.424},{"x":1757849581575,"y":34.814},{"x":1757849521428,"y":59.71},{"x":1757849461264,"y":54.617},{"x":1757849401281,"y":43.127},{"x":1757849340946,"y":48.651},{"x":1757849280804,"y":56.977},{"x":1757849220643,"y":54.773},{"x":1757849160523,"y":51.001},{"x":1757849100760,"y":63.172},{"x":1757849043026,"y":37.351},{"x":1757848982873,"y":81.994},{"x":1757848922718,"y":44.477},{"x":1757848862560,"y":40.615},{"x":1757848802554,"y":32.451},{"x":1757848742258,"y":44.954},{"x":1757848682101,"y":50.628},{"x":1757848621934,"y":59.477},{"x":1757848561769,"y":42.478},{"x":1757848501759,"y":29.01},{"x":1757848441423,"y":35.529},{"x":1757848381246,"y":34.213},{"x":1757848321070,"y":37.664},{"x":1757848260843,"y":41.991},{"x":1757848200918,"y":64.754},{"x":1757848140540,"y":63.273},{"x":1757848080464,"y":62.814},{"x":1757848022940,"y":28.847},{"x":1757847962763,"y":35.747},{"x":1757847902716,"y":35.443},{"x":1757847842431,"y":47.776},{"x":1757847782264,"y":42.074},{"x":1757847722114,"y":26.545},{"x":1757847661939,"y":24.649},{"x":1757847602470,"y":40.175},{"x":1757847541522,"y":73.163},{"x":1757847481288,"y":38.675},{"x":1757847421115,"y":68.198},{"x":1757847360932,"y":42.962},{"x":1757847300905,"y":74.205},{"x":1757847240598,"y":41.64},{"x":1757847180445,"y":51.461},{"x":1757847120264,"y":64.682},{"x":1757847062994,"y":35.945},{"x":1757847002987,"y":27.714},{"x":1757846942697,"y":49.716},{"x":1757846882549,"y":70.935},{"x":1757846822402,"y":55.662},{"x":1757846762250,"y":75.112},{"x":1757846702237,"y":57.832},{"x":1757846641925,"y":40.711},{"x":1757846581757,"y":49.43},{"x":1757846521606,"y":35.35},{"x":1757846461439,"y":34.006},{"x":1757846401419,"y":49.517},{"x":1757846341105,"y":61.679},{"x":1757846280932,"y":59.64},{"x":1757846220778,"y":62.442},{"x":1757846160642,"y":64.903},{"x":1757846100801,"y":64.74},{"x":1757846040360,"y":54.096},{"x":1757845982994,"y":77.452},{"x":1757845922838,"y":53.878},{"x":1757845862682,"y":39.455},{"x":1757845802675,"y":43.293},{"x":1757845742369,"y":38.55},{"x":1757845682224,"y":48.631},{"x":1757845622074,"y":83.474},{"x":1757845561904,"y":69.878},{"x":1757845501889,"y":60.862},{"x":1757845441600,"y":54.724},{"x":1757845381429,"y":63.347},{"x":1757845321270,"y":43.315},{"x":1757845261108,"y":52.392},{"x":1757845201175,"y":52.241},{"x":1757845140749,"y":85.76},{"x":1757845080599,"y":43.165},{"x":1757845020456,"y":42.463},{"x":1757844960271,"y":51.205},{"x":1757844903043,"y":51.409},{"x":1757844842747,"y":33.264},{"x":1757844782590,"y":48.82},{"x":1757844722437,"y":60.891},{"x":1757844662231,"y":51.698},{"x":1757844602205,"y":47.925},{"x":1757844541851,"y":48.846},{"x":1757844481697,"y":46.662},{"x":1757844421554,"y":61.014},{"x":1757844361391,"y":52.778},{"x":1757844301365,"y":55.947},{"x":1757844241076,"y":65.777},{"x":1757844180910,"y":68.239},{"x":1757844120767,"y":74.023},{"x":1757844060629,"y":71.32},{"x":1757844001345,"y":63.429},{"x":1757843940139,"y":61.112},{"x":1757843882860,"y":59.39},{"x":1757843822711,"y":49.925},{"x":1757843762566,"y":36.269},{"x":1757843702552,"y":34.984},{"x":1757843642271,"y":38.274},{"x":1757843582112,"y":42.978},{"x":1757843521938,"y":50.264},{"x":1757843461736,"y":63.223},{"x":1757843401724,"y":43.964},{"x":1757843341423,"y":36.597},{"x":1757843281279,"y":63.526},{"x":1757843221128,"y":33.92},{"x":1757843160956,"y":54.729},{"x":1757843101100,"y":34.487},{"x":1757843040658,"y":42.934},{"x":1757842980469,"y":49.285},{"x":1757842920330,"y":57.048},{"x":1757842863003,"y":44.243},{"x":1757842802992,"y":65.489},{"x":1757842742715,"y":45.108},{"x":1757842682562,"y":52.312},{"x":1757842622407,"y":42.301},{"x":1757842562245,"y":48.82},{"x":1757842502217,"y":59.483},{"x":1757842441915,"y":55.565},{"x":1757842381766,"y":44.933},{"x":1757842321618,"y":39.037},{"x":1757842261466,"y":42.075},{"x":1757842201583,"y":49.087},{"x":1757842141090,"y":52.518},{"x":1757842080911,"y":58.331},{"x":1757842020766,"y":76.215},{"x":1757841960641,"y":75.744},{"x":1757841900700,"y":47.965},{"x":1757841840334,"y":68.726},{"x":1757841782969,"y":80.049},{"x":1757841722810,"y":74.742},{"x":1757841662660,"y":47.714},{"x":1757841602658,"y":37.795},{"x":1757841542359,"y":34.175},{"x":1757841482213,"y":46.363},{"x":1757841422066,"y":47.973},{"x":1757841361899,"y":72.091},{"x":1757841301893,"y":77.543},{"x":1757841241595,"y":63.759},{"x":1757841181416,"y":57.703},{"x":1757841121253,"y":58.584},{"x":1757841061033,"y":39.21},{"x":1757841001044,"y":69.581},{"x":1757840940669,"y":68.394},{"x":1757840880608,"y":56.184},{"x":1757840820359,"y":71.519},{"x":1757840760256,"y":56.383},{"x":1757840703041,"y":71.942},{"x":1757840642750,"y":74.401},{"x":1757840582582,"y":41.674},{"x":1757840522433,"y":60.472},{"x":1757840462285,"y":57.758},{"x":1757840402832,"y":39.197},{"x":1757840341895,"y":42.994},{"x":1757840281697,"y":47.692},{"x":1757840221535,"y":54.606},{"x":1757840161360,"y":50.077},{"x":1757840101360,"y":47.819},{"x":1757840041063,"y":55.888},{"x":1757839980893,"y":57.203},{"x":1757839920721,"y":59.327},{"x":1757839860558,"y":43.57},{"x":1757839800752,"y":48.554},{"x":1757839740252,"y":43.975},{"x":1757839682949,"y":45.386},{"x":1757839622786,"y":51.427},{"x":1757839562625,"y":49.462},{"x":1757839502628,"y":60.151},{"x":1757839442323,"y":58.283},{"x":1757839382173,"y":68.588},{"x":1757839322022,"y":69.805},{"x":1757839261872,"y":83.402},{"x":1757839201855,"y":97.551},{"x":1757839141554,"y":89.35},{"x":1757839081380,"y":88.015},{"x":1757839021234,"y":77.733},{"x":1757838961065,"y":70.04},{"x":1757838901058,"y":62.369},{"x":1757838840724,"y":76.028},{"x":1757838780559,"y":77.394},{"x":1757838720413,"y":48.592},{"x":1757838660281,"y":48.328},{"x":1757838603129,"y":73.553},{"x":1757838542833,"y":68.77},{"x":1757838482680,"y":72.405},{"x":1757838422535,"y":42.315},{"x":1757838362382,"y":62.654},{"x":1757838302366,"y":54.01},{"x":1757838242085,"y":53.407},{"x":1757838181929,"y":55.349},{"x":1757838121769,"y":52.144},{"x":1757838061608,"y":60.294},{"x":1757838001607,"y":50.993},{"x":1757837941309,"y":50.022},{"x":1757837881153,"y":39.282},{"x":1757837820986,"y":47.559},{"x":1757837760818,"y":48.861},{"x":1757837700976,"y":45.786},{"x":1757837640469,"y":61.3},{"x":1757837580344,"y":49.86},{"x":1757837520230,"y":30.725},{"x":1757837462843,"y":28.799},{"x":1757837402785,"y":35.244},{"x":1757837342495,"y":41.228},{"x":1757837282347,"y":52.816},{"x":1757837222196,"y":66.724},{"x":1757837162034,"y":67.378},{"x":1757837101992,"y":69.79},{"x":1757837041702,"y":66.584},{"x":1757836981556,"y":49.512},{"x":1757836921412,"y":51.982},{"x":1757836861245,"y":43.501},{"x":1757836801495,"y":48.115},{"x":1757836740738,"y":31.96},{"x":1757836680536,"y":39.86},{"x":1757836620387,"y":32.853},{"x":1757836563015,"y":29.944},{"x":1757836502983,"y":32.325},{"x":1757836442684,"y":48.829},{"x":1757836382538,"y":62.02},{"x":1757836322399,"y":56.629},{"x":1757836262245,"y":47.21},{"x":1757836202229,"y":47.165},{"x":1757836141933,"y":58.726},{"x":1757836081779,"y":56.296},{"x":1757836021618,"y":54.777},{"x":1757835961470,"y":58.634},{"x":1757835901515,"y":28.266},{"x":1757835841149,"y":37.894},{"x":1757835780945,"y":40.851},{"x":1757835720805,"y":44.834},{"x":1757835660644,"y":50.538},{"x":1757835600976,"y":46.932},{"x":1757835540299,"y":51.037},{"x":1757835482987,"y":43.161},{"x":1757835422846,"y":51.638},{"x":1757835362655,"y":49.363},{"x":1757835302647,"y":54.75},{"x":1757835242359,"y":60.199},{"x":1757835182198,"y":48.915},{"x":1757835122017,"y":44.195},{"x":1757835061864,"y":58.354},{"x":1757835001845,"y":47.03},{"x":1757834941533,"y":53.317},{"x":1757834881369,"y":73.308},{"x":1757834821225,"y":61.384},{"x":1757834761066,"y":57.755},{"x":1757834701033,"y":79.844},{"x":1757834640730,"y":55.993},{"x":1757834580573,"y":79.471},{"x":1757834520443,"y":58.271},{"x":1757834460283,"y":72.676},{"x":1757834403098,"y":75.651},{"x":1757834342809,"y":75.107},{"x":1757834282660,"y":67.045},{"x":1757834222512,"y":67.9},{"x":1757834162359,"y":57.268},{"x":1757834102339,"y":77.198},{"x":1757834042045,"y":71.677},{"x":1757833981879,"y":61.485},{"x":1757833921753,"y":44.864},{"x":1757833861534,"y":41.646},{"x":1757833801493,"y":51.192},{"x":1757833741200,"y":35.472},{"x":1757833681037,"y":41.538},{"x":1757833620882,"y":46.101},{"x":1757833560721,"y":45.933},{"x":1757833500833,"y":43.082},{"x":1757833440456,"y":40.789},{"x":1757833380402,"y":39.116},{"x":1757833322962,"y":41.19},{"x":1757833262811,"y":30.291},{"x":1757833202891,"y":29.889},{"x":1757833142428,"y":31.365},{"x":1757833082244,"y":36.349},{"x":1757833022097,"y":37.482},{"x":1757832961922,"y":37.368},{"x":1757832901904,"y":39.31},{"x":1757832841601,"y":42.739},{"x":1757832781455,"y":42.686},{"x":1757832721308,"y":41.821},{"x":1757832661147,"y":48.374},{"x":1757832601205,"y":62.708},{"x":1757832540831,"y":48.11},{"x":1757832480701,"y":71.693},{"x":1757832420511,"y":62.261},{"x":1757832360385,"y":47.034},{"x":1757832303088,"y":46.08},{"x":1757832242792,"y":48.12},{"x":1757832182630,"y":55.132},{"x":1757832122481,"y":59.635},{"x":1757832062323,"y":64.555},{"x":1757832002316,"y":63.684},{"x":1757831942014,"y":68.51},{"x":1757831881848,"y":54.518},{"x":1757831821687,"y":51.352},{"x":1757831761501,"y":57.721},{"x":1757831701489,"y":47.353},{"x":1757831641209,"y":60.362},{"x":1757831581038,"y":39.612},{"x":1757831520873,"y":44.081},{"x":1757831460724,"y":45.911},{"x":1757831400881,"y":53.875},{"x":1757831340227,"y":49.769},{"x":1757831282909,"y":48.524},{"x":1757831222761,"y":46.843},{"x":1757831162618,"y":55.303},{"x":1757831102595,"y":61.778},{"x":1757831042315,"y":64.488},{"x":1757830982156,"y":51.671},{"x":1757830921989,"y":61.747},{"x":1757830861823,"y":63.8},{"x":1757830801811,"y":75.427},{"x":1757830741524,"y":69.312},{"x":1757830681375,"y":52.31},{"x":1757830621228,"y":74.133},{"x":1757830561066,"y":77.725},{"x":1757830501200,"y":64.73},{"x":1757830440707,"y":71.785},{"x":1757830380563,"y":55.394},{"x":1757830320435,"y":44.023},{"x":1757830260199,"y":59.971},{"x":1757830203073,"y":59.119},{"x":1757830142766,"y":46.939},{"x":1757830082614,"y":47.146},{"x":1757830022444,"y":60.946},{"x":1757829962301,"y":72.191},{"x":1757829902281,"y":53.528},{"x":1757829841972,"y":61.095},{"x":1757829781805,"y":67.402},{"x":1757829721655,"y":60.544},{"x":1757829661501,"y":48.887},{"x":1757829601832,"y":42.783},{"x":1757829541086,"y":38.984},{"x":1757829480876,"y":29.843},{"x":1757829420728,"y":36.895},{"x":1757829360599,"y":43.146},{"x":1757829300806,"y":45.364},{"x":1757829240337,"y":42.509},{"x":1757829182981,"y":43.457},{"x":1757829122827,"y":41.191},{"x":1757829062675,"y":34.019},{"x":1757829002659,"y":29.449},{"x":1757828942377,"y":26.957},{"x":1757828882223,"y":30.225},{"x":1757828822066,"y":37.948},{"x":1757828761907,"y":33.423},{"x":1757828701874,"y":35.127},{"x":1757828641579,"y":35.081},{"x":1757828581432,"y":42.908},{"x":1757828521270,"y":42.54},{"x":1757828461118,"y":43.182},{"x":1757828401173,"y":44.845},{"x":1757828340752,"y":41.478},{"x":1757828280642,"y":46.775},{"x":1757828220486,"y":56.001},{"x":1757828160303,"y":44.127},{"x":1757828103150,"y":36.203},{"x":1757828042864,"y":54.108},{"x":1757827982687,"y":54.754},{"x":1757827922543,"y":54.722},{"x":1757827862394,"y":53.364},{"x":1757827802360,"y":56.777},{"x":1757827742080,"y":43.709},{"x":1757827681910,"y":43.419},{"x":1757827621752,"y":48.242},{"x":1757827561606,"y":44.617},{"x":1757827501592,"y":45.266},{"x":1757827441304,"y":46.452},{"x":1757827381156,"y":43.662},{"x":1757827320984,"y":42.137},{"x":1757827260838,"y":47.01},{"x":1757827201083,"y":43.43},{"x":1757827140567,"y":42.325},{"x":1757827080412,"y":41.796},{"x":1757827020259,"y":46.512},{"x":1757826962882,"y":50.14},{"x":1757826902866,"y":52.152},{"x":1757826842575,"y":47.908},{"x":1757826782430,"y":45.872},{"x":1757826722218,"y":43.137},{"x":1757826662019,"y":43.445},{"x":1757826602018,"y":43.508},{"x":1757826541710,"y":53.458},{"x":1757826481538,"y":43.538},{"x":1757826421385,"y":46.693},{"x":1757826361222,"y":52.271},{"x":1757826301229,"y":52.893},{"x":1757826240918,"y":48.65},{"x":1757826180741,"y":48.308},{"x":1757826120603,"y":47.878},{"x":1757826060488,"y":46.499},{"x":1757826000970,"y":43.725},{"x":1757825940225,"y":43.082},{"x":1757825882822,"y":43.031},{"x":1757825822668,"y":42.964},{"x":1757825762508,"y":60.894},{"x":1757825702476,"y":58.915},{"x":1757825642194,"y":58.127},{"x":1757825582040,"y":60.208},{"x":1757825521871,"y":56.955},{"x":1757825461675,"y":52.433},{"x":1757825401650,"y":48.535},{"x":1757825341355,"y":47.01},{"x":1757825281213,"y":49.631},{"x":1757825221065,"y":44.865},{"x":1757825160888,"y":46.535},{"x":1757825101204,"y":45.32},{"x":1757825040580,"y":44.735},{"x":1757824980379,"y":46.217},{"x":1757824920280,"y":46.046},{"x":1757824862880,"y":51.928},{"x":1757824802866,"y":49.014},{"x":1757824742578,"y":45.014},{"x":1757824682439,"y":55.418},{"x":1757824622284,"y":53.021},{"x":1757824562123,"y":55.962},{"x":1757824502090,"y":54.837},{"x":1757824441772,"y":49.837},{"x":1757824381626,"y":45.372},{"x":1757824321477,"y":47.262},{"x":1757824261323,"y":44.543},{"x":1757824201404,"y":46.551},{"x":1757824140964,"y":45.393},{"x":1757824080807,"y":56.569},{"x":1757824020663,"y":56.228},{"x":1757823960522,"y":57.23},{"x":1757823900705,"y":53.521},{"x":1757823842969,"y":53.642},{"x":1757823782817,"y":43.803},{"x":1757823722669,"y":45.927},{"x":1757823662518,"y":47.15},{"x":1757823602503,"y":48.26},{"x":1757823542199,"y":45.165},{"x":1757823482044,"y":44.731},{"x":1757823421896,"y":43.887},{"x":1757823361724,"y":48.069},{"x":1757823301723,"y":45.265},{"x":1757823241425,"y":44.889},{"x":1757823181266,"y":45.299},{"x":1757823120994,"y":46.55},{"x":1757823060838,"y":48.328},{"x":1757823000917,"y":59.99},{"x":1757822940526,"y":52.761},{"x":1757822880379,"y":47.422},{"x":1757822820266,"y":50.995},{"x":1757822762887,"y":57.57},{"x":1757822702898,"y":50.668},{"x":1757822642609,"y":49.604},{"x":1757822582415,"y":47.929},{"x":1757822522282,"y":62.027},{"x":1757822462107,"y":55.843},{"x":1757822402236,"y":48.588},{"x":1757822341711,"y":40.483},{"x":1757822281536,"y":51.412},{"x":1757822221389,"y":45.769},{"x":1757822161234,"y":48.185},{"x":1757822101251,"y":51.748},{"x":1757822040927,"y":47.446},{"x":1757821980761,"y":37.353},{"x":1757821920652,"y":39.575},{"x":1757821860436,"y":39.794},{"x":1757821800670,"y":38.87},{"x":1757821742948,"y":41.254},{"x":1757821682795,"y":45.647},{"x":1757821622642,"y":53.021},{"x":1757821562476,"y":62.558},{"x":1757821502460,"y":49.352},{"x":1757821442150,"y":55.284},{"x":1757821381992,"y":41.317},{"x":1757821321844,"y":44.423},{"x":1757821261678,"y":42.302},{"x":1757821201660,"y":39.306},{"x":1757821141372,"y":38.522},{"x":1757821081217,"y":42.604},{"x":1757821021064,"y":43.028},{"x":1757820960905,"y":36.006},{"x":1757820900926,"y":51.38},{"x":1757820840583,"y":49.882},{"x":1757820780496,"y":44.913},{"x":1757820720322,"y":48.319},{"x":1757820662967,"y":43.695},{"x":1757820602957,"y":31.197},{"x":1757820542646,"y":31.3},{"x":1757820482483,"y":30.935},{"x":1757820422330,"y":32.855},{"x":1757820362162,"y":37.521},{"x":1757820302150,"y":35.133},{"x":1757820241852,"y":36.735},{"x":1757820181704,"y":39.331},{"x":1757820121540,"y":36.355},{"x":1757820061383,"y":42.125},{"x":1757820001381,"y":34.63},{"x":1757819941072,"y":37.408},{"x":1757819880895,"y":36.431},{"x":1757819820806,"y":33.02},{"x":1757819760603,"y":35.932},{"x":1757819700693,"y":41.14},{"x":1757819640262,"y":38.056},{"x":1757819582934,"y":43.144},{"x":1757819522717,"y":39.665},{"x":1757819462559,"y":37.641},{"x":1757819402546,"y":36.409},{"x":1757819342253,"y":41.966},{"x":1757819282103,"y":37.553},{"x":1757819221926,"y":36.232},{"x":1757819161768,"y":39.005},{"x":1757819101850,"y":37.212},{"x":1757819041710,"y":40.633},{"x":1757818981294,"y":43.095},{"x":1757818921101,"y":34.561},{"x":1757818860831,"y":34.148},{"x":1757818802894,"y":31.796},{"x":1757818742325,"y":38.981},{"x":1757818682079,"y":35.938},{"x":1757818621939,"y":35.663},{"x":1757818561756,"y":38.52},{"x":1757818501726,"y":38.833},{"x":1757818441429,"y":37.477},{"x":1757818381272,"y":34.458},{"x":1757818321127,"y":35.924},{"x":1757818260947,"y":37.523},{"x":1757818201013,"y":46.626},{"x":1757818140625,"y":47.371},{"x":1757818080609,"y":44.401},{"x":1757818020285,"y":43.388},{"x":1757817962921,"y":42.214},{"x":1757817902905,"y":40.518},{"x":1757817842604,"y":35.372},{"x":1757817782434,"y":34.579},{"x":1757817722286,"y":36.67},{"x":1757817662121,"y":36.213},{"x":1757817602074,"y":37.11},{"x":1757817541750,"y":38.363},{"x":1757817481605,"y":32.938},{"x":1757817421460,"y":35.943},{"x":1757817361316,"y":38.756},{"x":1757817301293,"y":29.794},{"x":1757817241005,"y":32.81},{"x":1757817180850,"y":34.739},{"x":1757817120704,"y":33.148},{"x":1757817060566,"y":33.135},{"x":1757817000810,"y":32.443},{"x":1757816940395,"y":31.553},{"x":1757816883019,"y":35.149},{"x":1757816822853,"y":37.481},{"x":1757816762703,"y":40.1},{"x":1757816702692,"y":35.744},{"x":1757816642386,"y":32.996},{"x":1757816582234,"y":38.681},{"x":1757816522076,"y":36.959},{"x":1757816461904,"y":37.266},{"x":1757816401904,"y":47.1},{"x":1757816341604,"y":43.5},{"x":1757816281438,"y":42.302},{"x":1757816221287,"y":48.627},{"x":1757816161115,"y":46.312},{"x":1757816101107,"y":34.732},{"x":1757816040795,"y":37.315},{"x":1757815980657,"y":35.852},{"x":1757815920478,"y":35.719},{"x":1757815860348,"y":36.694},{"x":1757815803157,"y":35.032},{"x":1757815742858,"y":32.41},{"x":1757815682708,"y":33.503},{"x":1757815622554,"y":33.096},{"x":1757815562388,"y":30.07},{"x":1757815502382,"y":33.457},{"x":1757815442088,"y":31.605},{"x":1757815381916,"y":34.475},{"x":1757815321766,"y":41.211},{"x":1757815261618,"y":35.994},{"x":1757815201939,"y":36.584},{"x":1757815141137,"y":38.028},{"x":1757815080930,"y":34.408},{"x":1757815020783,"y":35.02},{"x":1757814960622,"y":37.522},{"x":1757814900832,"y":35.776},{"x":1757814840300,"y":35.077},{"x":1757814782965,"y":31.847},{"x":1757814722819,"y":34.805},{"x":1757814662664,"y":47.626},{"x":1757814602665,"y":54.957},{"x":1757814542356,"y":49.892},{"x":1757814482213,"y":70.048},{"x":1757814422054,"y":55.094},{"x":1757814361898,"y":34.581},{"x":1757814301890,"y":46.888},{"x":1757814241576,"y":35.507},{"x":1757814181432,"y":39.568},{"x":1757814121275,"y":36.012},{"x":1757814061121,"y":36.403},{"x":1757814001227,"y":39.749},{"x":1757813940791,"y":36.872},{"x":1757813880646,"y":40.098},{"x":1757813820512,"y":62.847},{"x":1757813760327,"y":47.181},{"x":1757813703071,"y":48.945},{"x":1757813642762,"y":46.434},{"x":1757813582617,"y":49.086},{"x":1757813522462,"y":41.422},{"x":1757813462303,"y":41.766},{"x":1757813402279,"y":48.706},{"x":1757813341966,"y":38.453},{"x":1757813281816,"y":36.514},{"x":1757813221671,"y":35.206},{"x":1757813161517,"y":41.259},{"x":1757813101498,"y":39.642},{"x":1757813041216,"y":36.716},{"x":1757812981070,"y":38.975},{"x":1757812920897,"y":39.684},{"x":1757812860743,"y":39.674},{"x":1757812800930,"y":38.973},{"x":1757812740425,"y":42.895},{"x":1757812680311,"y":39.33},{"x":1757812622996,"y":55.305},{"x":1757812562817,"y":42.719},{"x":1757812502810,"y":40.012},{"x":1757812442521,"y":38.614},{"x":1757812382372,"y":40.653},{"x":1757812322265,"y":42.968},{"x":1757812262025,"y":42.61},{"x":1757812201957,"y":42.257},{"x":1757812141665,"y":49.511},{"x":1757812081511,"y":36.318},{"x":1757812021342,"y":34.02},{"x":1757811961190,"y":31.948},{"x":1757811901181,"y":36.68},{"x":1757811840869,"y":45.905},{"x":1757811780727,"y":54.616},{"x":1757811720587,"y":53.838},{"x":1757811660437,"y":56.563},{"x":1757811600677,"y":57.5},{"x":1757811542960,"y":44.791},{"x":1757811482756,"y":33.232},{"x":1757811422609,"y":36.454},{"x":1757811362460,"y":32.44},{"x":1757811302442,"y":38.605},{"x":1757811242138,"y":31.306},{"x":1757811181999,"y":34.473},{"x":1757811121816,"y":39.293},{"x":1757811061667,"y":35.896},{"x":1757811001661,"y":37.539},{"x":1757810941366,"y":45.313},{"x":1757810881209,"y":46.799},{"x":1757810821056,"y":33.21},{"x":1757810760890,"y":47.139},{"x":1757810701045,"y":63.49},{"x":1757810640548,"y":48.424},{"x":1757810580361,"y":53.222},{"x":1757810523010,"y":61.972},{"x":1757810462843,"y":56.59},{"x":1757810402842,"y":56.322},{"x":1757810342533,"y":59.554},{"x":1757810282389,"y":60.039},{"x":1757810222235,"y":49.603},{"x":1757810162079,"y":53.99},{"x":1757810102062,"y":50.483},{"x":1757810041766,"y":38.801},{"x":1757809981593,"y":48.553},{"x":1757809921445,"y":39.654},{"x":1757809861296,"y":50.468},{"x":1757809801364,"y":49.428},{"x":1757809740964,"y":57.485},{"x":1757809680809,"y":53.874},{"x":1757809620657,"y":54.323},{"x":1757809560525,"y":41.576},{"x":1757809500774,"y":41.245},{"x":1757809442988,"y":37.704},{"x":1757809382836,"y":37.766},{"x":1757809322686,"y":36.847},{"x":1757809262530,"y":41.159},{"x":1757809202521,"y":38.061},{"x":1757809142221,"y":43.576},{"x":1757809082077,"y":40.353},{"x":1757809021910,"y":42.578},{"x":1757808961757,"y":48.89},{"x":1757808901748,"y":39.058},{"x":1757808841452,"y":52.939},{"x":1757808781286,"y":44.414},{"x":1757808721134,"y":53.04},{"x":1757808660914,"y":41.408},{"x":1757808600996,"y":43.67},{"x":1757808540539,"y":44.063},{"x":1757808480449,"y":52.334},{"x":1757808420277,"y":57.568},{"x":1757808362890,"y":53.617},{"x":1757808302859,"y":47.957},{"x":1757808242560,"y":47.136},{"x":1757808182418,"y":54.583},{"x":1757808122269,"y":45.115},{"x":1757808062116,"y":47.169},{"x":1757808002366,"y":45.207},{"x":1757807941723,"y":58.101},{"x":1757807881529,"y":55.734},{"x":1757807821376,"y":45.899},{"x":1757807761218,"y":43.083},{"x":1757807701179,"y":45.803},{"x":1757807640876,"y":46.823},{"x":1757807580733,"y":56.509},{"x":1757807520605,"y":44.375},{"x":1757807460473,"y":40.79},{"x":1757807400703,"y":43.327},{"x":1757807340183,"y":45.991},{"x":1757807282882,"y":45.516},{"x":1757807222725,"y":67.062},{"x":1757807162563,"y":60.274},{"x":1757807102536,"y":56.855},{"x":1757807042234,"y":58.534},{"x":1757806982086,"y":55.683},{"x":1757806921911,"y":54.233},{"x":1757806861767,"y":54.64},{"x":1757806801773,"y":51.937},{"x":1757806741440,"y":44.05},{"x":1757806681291,"y":45.581},{"x":1757806621124,"y":52.238},{"x":1757806560972,"y":45.07},{"x":1757806500971,"y":46.707},{"x":1757806440658,"y":48.1},{"x":1757806380504,"y":46.073},{"x":1757806320350,"y":48.2},{"x":1757806262962,"y":44.527},{"x":1757806202959,"y":40.904},{"x":1757806142636,"y":43.642},{"x":1757806082468,"y":43.641},{"x":1757806022315,"y":49.77},{"x":1757805962170,"y":47.716},{"x":1757805902151,"y":47.521},{"x":1757805841832,"y":57.072},{"x":1757805781678,"y":50.332},{"x":1757805721528,"y":56.607},{"x":1757805661378,"y":49.264},{"x":1757805601362,"y":45.634},{"x":1757805541054,"y":43.325},{"x":1757805480894,"y":41.323},{"x":1757805420740,"y":50.162},{"x":1757805360594,"y":44.26},{"x":1757805300794,"y":43.412},{"x":1757805240321,"y":43.722},{"x":1757805182951,"y":47.458},{"x":1757805122816,"y":54.176},{"x":1757805062601,"y":52.81},{"x":1757805002533,"y":54.606},{"x":1757804942238,"y":67.258},{"x":1757804882055,"y":62.438},{"x":1757804821897,"y":49.977},{"x":1757804761745,"y":46.407},{"x":1757804701729,"y":45.569},{"x":1757804641437,"y":46.951},{"x":1757804581284,"y":44.035},{"x":1757804521137,"y":60.419},{"x":1757804460981,"y":49.884},{"x":1757804401368,"y":47.979},{"x":1757804340542,"y":48.215},{"x":1757804280272,"y":47.296},{"x":1757804222986,"y":58.312},{"x":1757804162824,"y":42.02},{"x":1757804102814,"y":44.564},{"x":1757804042524,"y":43.499},{"x":1757803982375,"y":48.109},{"x":1757803922215,"y":46.028},{"x":1757803862062,"y":47.929},{"x":1757803802029,"y":66.65},{"x":1757803741745,"y":48.293},{"x":1757803681584,"y":57.115},{"x":1757803621442,"y":47.898},{"x":1757803561289,"y":52.487},{"x":1757803501380,"y":46.537},{"x":1757803440946,"y":47.28},{"x":1757803380801,"y":62.299},{"x":1757803320655,"y":62.428},{"x":1757803260558,"y":66.072},{"x":1757803200688,"y":56.348},{"x":1757803142961,"y":61.52},{"x":1757803082813,"y":69.941},{"x":1757803022663,"y":62.836},{"x":1757802962500,"y":54.499},{"x":1757802902488,"y":54.888},{"x":1757802842203,"y":66.605},{"x":1757802782041,"y":76.641},{"x":1757802721888,"y":68.833},{"x":1757802661735,"y":77.79},{"x":1757802601749,"y":64.889},{"x":1757802541405,"y":43.96},{"x":1757802481242,"y":49.846},{"x":1757802421081,"y":58.092},{"x":1757802360893,"y":49.704},{"x":1757802300963,"y":55.361},{"x":1757802240604,"y":53.096},{"x":1757802180478,"y":52.06},{"x":1757802120232,"y":60.699},{"x":1757802062930,"y":48.34},{"x":1757802002930,"y":52.151},{"x":1757801942632,"y":46.946},{"x":1757801882495,"y":46.418},{"x":1757801822321,"y":54.604},{"x":1757801762188,"y":47.858},{"x":1757801702155,"y":44.453},{"x":1757801641832,"y":50.107},{"x":1757801581687,"y":47.012},{"x":1757801521525,"y":44.759},{"x":1757801461336,"y":41.653},{"x":1757801401307,"y":40.892},{"x":1757801340972,"y":59.554},{"x":1757801280816,"y":43.999},{"x":1757801220671,"y":41.866},{"x":1757801160518,"y":49.558},{"x":1757801100761,"y":44.613},{"x":1757801040204,"y":42.182},{"x":1757800982918,"y":58.33},{"x":1757800922769,"y":45.348},{"x":1757800862622,"y":55.722},{"x":1757800802798,"y":52.448},{"x":1757800742264,"y":47.742},{"x":1757800682070,"y":55.408},{"x":1757800621910,"y":57.645},{"x":1757800561762,"y":50.048},{"x":1757800501733,"y":54.73},{"x":1757800441425,"y":46.548},{"x":1757800381277,"y":47.855},{"x":1757800321124,"y":39.647},{"x":1757800260967,"y":52.052},{"x":1757800200978,"y":49.273},{"x":1757800140646,"y":45.139},{"x":1757800080511,"y":51.641},{"x":1757800020370,"y":65.52},{"x":1757799962993,"y":76.44},{"x":1757799902980,"y":57.983},{"x":1757799842641,"y":64.574},{"x":1757799782493,"y":42.544},{"x":1757799722342,"y":48.434},{"x":1757799662181,"y":57.744},{"x":1757799602155,"y":61.022},{"x":1757799541851,"y":55.401},{"x":1757799481697,"y":61.363},{"x":1757799421549,"y":70.674},{"x":1757799361374,"y":73.339},{"x":1757799301355,"y":74.248},{"x":1757799241068,"y":65.001},{"x":1757799180892,"y":74.395},{"x":1757799120751,"y":98.395},{"x":1757799060607,"y":70.622},{"x":1757799000856,"y":75.32},{"x":1757798940317,"y":72.919},{"x":1757798880158,"y":72.967},{"x":1757798822882,"y":69.818},{"x":1757798762743,"y":84.357},{"x":1757798702713,"y":72.435},{"x":1757798642423,"y":52.133},{"x":1757798582280,"y":71.848},{"x":1757798522119,"y":83.508},{"x":1757798461953,"y":82.173},{"x":1757798402095,"y":79.71},{"x":1757798341676,"y":76.532},{"x":1757798281480,"y":86.724},{"x":1757798221328,"y":60.176},{"x":1757798161165,"y":64.945},{"x":1757798101161,"y":55.054},{"x":1757798040833,"y":69.012},{"x":1757797980685,"y":78.576},{"x":1757797920576,"y":62.562},{"x":1757797860381,"y":64.393},{"x":1757797800744,"y":63.027},{"x":1757797742870,"y":61.015},{"x":1757797682709,"y":57.506},{"x":1757797622550,"y":64.034},{"x":1757797562390,"y":61.97},{"x":1757797502383,"y":66.73},{"x":1757797442085,"y":56.086},{"x":1757797381912,"y":73.545},{"x":1757797321778,"y":63.4},{"x":1757797261607,"y":58.164},{"x":1757797201885,"y":62.394},{"x":1757797141252,"y":71.804},{"x":1757797081025,"y":62.041},{"x":1757797020866,"y":92.908},{"x":1757796960730,"y":78.88},{"x":1757796900892,"y":66.341},{"x":1757796840349,"y":44.698},{"x":1757796783021,"y":61.844},{"x":1757796722854,"y":86.884},{"x":1757796662712,"y":47.494},{"x":1757796602709,"y":63.248},{"x":1757796542385,"y":63.434},{"x":1757796482230,"y":55.269},{"x":1757796422075,"y":48.408},{"x":1757796361907,"y":51.301},{"x":1757796301893,"y":55.416},{"x":1757796241609,"y":51.354},{"x":1757796181469,"y":54.679},{"x":1757796121316,"y":65.945},{"x":1757796061157,"y":50.307},{"x":1757796001166,"y":59.789},{"x":1757795940779,"y":76.835},{"x":1757795880642,"y":64.472},{"x":1757795820496,"y":54.739},{"x":1757795760351,"y":65.002},{"x":1757795700508,"y":80.348},{"x":1757795642871,"y":60.758},{"x":1757795582715,"y":80.968},{"x":1757795522555,"y":67.694},{"x":1757795462406,"y":70.429},{"x":1757795402401,"y":78.801},{"x":1757795342106,"y":70.217},{"x":1757795281939,"y":65.632},{"x":1757795221790,"y":45.094},{"x":1757795161644,"y":61.403},{"x":1757795101619,"y":52.746},{"x":1757795041330,"y":80.571},{"x":1757794981177,"y":73.452},{"x":1757794921021,"y":60.627},{"x":1757794860868,"y":61.83},{"x":1757794800998,"y":40.149},{"x":1757794740495,"y":43.396},{"x":1757794680321,"y":56.172},{"x":1757794622970,"y":59.702},{"x":1757794562812,"y":62.867},{"x":1757794502787,"y":52.533},{"x":1757794442497,"y":49.331},{"x":1757794382352,"y":62.735},{"x":1757794322170,"y":71.158},{"x":1757794261985,"y":48.087},{"x":1757794201966,"y":65.231},{"x":1757794141661,"y":46.256},{"x":1757794081519,"y":55.09},{"x":1757794021328,"y":66.499},{"x":1757793961182,"y":57.074},{"x":1757793901170,"y":48.556},{"x":1757793840829,"y":65.002},{"x":1757793780676,"y":58.78},{"x":1757793720507,"y":61.434},{"x":1757793660346,"y":65.556},{"x":1757793600626,"y":58.261},{"x":1757793542881,"y":61.472},{"x":1757793482668,"y":48.391},{"x":1757793422509,"y":47.847},{"x":1757793362354,"y":47.704},{"x":1757793302336,"y":53.845},{"x":1757793242017,"y":105.472},{"x":1757793181853,"y":71.08},{"x":1757793121694,"y":79.198},{"x":1757793061525,"y":69.152},{"x":1757793001519,"y":84.77},{"x":1757792941228,"y":51.008},{"x":1757792881047,"y":61.636},{"x":1757792820839,"y":64.314},{"x":1757792760689,"y":66.841},{"x":1757792701058,"y":54.355},{"x":1757792640437,"y":68.056},{"x":1757792580306,"y":58.036},{"x":1757792522907,"y":66.771},{"x":1757792462759,"y":51.193},{"x":1757792402735,"y":65.383},{"x":1757792342461,"y":48.303},{"x":1757792282309,"y":53.463},{"x":1757792222160,"y":69.916},{"x":1757792161998,"y":89.126},{"x":1757792102036,"y":85.786},{"x":1757792041679,"y":83.621},{"x":1757791981521,"y":72.408},{"x":1757791921355,"y":68.707},{"x":1757791861199,"y":52.16},{"x":1757791801230,"y":63.807},{"x":1757791740844,"y":58.362},{"x":1757791680704,"y":88.163},{"x":1757791620537,"y":75.155},{"x":1757791560271,"y":60.821},{"x":1757791500754,"y":67.877},{"x":1757791442881,"y":50.754},{"x":1757791382731,"y":57.018},{"x":1757791322581,"y":65.136},{"x":1757791262432,"y":54.852},{"x":1757791202418,"y":64.467},{"x":1757791142110,"y":55.211},{"x":1757791081931,"y":62.813},{"x":1757791021766,"y":78.572},{"x":1757790961599,"y":56.042},{"x":1757790901620,"y":84.473},{"x":1757790841302,"y":49.142},{"x":1757790781159,"y":67.632},{"x":1757790721027,"y":59.334},{"x":1757790660810,"y":55.178},{"x":1757790600996,"y":71.973},{"x":1757790540452,"y":73.937},{"x":1757790480303,"y":52.869},{"x":1757790423019,"y":54.211},{"x":1757790362862,"y":76.187},{"x":1757790302854,"y":74.006},{"x":1757790242548,"y":90.249},{"x":1757790182398,"y":76.291},{"x":1757790122243,"y":72.601},{"x":1757790062063,"y":66.929},{"x":1757790002293,"y":95.771},{"x":1757789941666,"y":104.589},{"x":1757789881370,"y":66.362},{"x":1757789821221,"y":63.32},{"x":1757789761066,"y":83.001},{"x":1757789701026,"y":73.144},{"x":1757789640712,"y":51.705},{"x":1757789580503,"y":47.184},{"x":1757789520390,"y":75.138},{"x":1757789460275,"y":70.653},{"x":1757789403058,"y":76.719},{"x":1757789342746,"y":54.222},{"x":1757789282599,"y":83.858},{"x":1757789222395,"y":92.174},{"x":1757789162246,"y":79.454},{"x":1757789102204,"y":78.523},{"x":1757789041897,"y":70.955},{"x":1757788981746,"y":79.723},{"x":1757788921577,"y":53.491},{"x":1757788861426,"y":53.072},{"x":1757788801418,"y":53.461},{"x":1757788741092,"y":48.549},{"x":1757788680910,"y":57.097},{"x":1757788620753,"y":56.049},{"x":1757788560563,"y":86.115},{"x":1757788500760,"y":67.29},{"x":1757788440306,"y":61.455},{"x":1757788382927,"y":72.356},{"x":1757788322772,"y":72.298},{"x":1757788262627,"y":62.578},{"x":1757788202607,"y":58.391},{"x":1757788142313,"y":73.706},{"x":1757788082161,"y":47.185},{"x":1757788022015,"y":69.923},{"x":1757787961847,"y":65.954},{"x":1757787901822,"y":74.032},{"x":1757787841540,"y":64.061},{"x":1757787781387,"y":83.884},{"x":1757787721242,"y":59.539},{"x":1757787661083,"y":58.365},{"x":1757787601212,"y":84.278},{"x":1757787540723,"y":80.111},{"x":1757787480577,"y":83.88},{"x":1757787420494,"y":68.66},{"x":1757787360271,"y":64.428},{"x":1757787303138,"y":80.224},{"x":1757787242820,"y":93.011},{"x":1757787182667,"y":83.288},{"x":1757787122490,"y":74.146},{"x":1757787062300,"y":88.327},{"x":1757787002231,"y":99.31},{"x":1757786941895,"y":64.521},{"x":1757786881736,"y":75.566},{"x":1757786821587,"y":54.893},{"x":1757786761433,"y":54.038},{"x":1757786701421,"y":57.729},{"x":1757786641133,"y":68.418},{"x":1757786580953,"y":63.773},{"x":1757786520809,"y":80.19},{"x":1757786460675,"y":70.171},{"x":1757786401408,"y":78.374},{"x":1757786340345,"y":77.456},{"x":1757786283009,"y":94.615},{"x":1757786222855,"y":82.391},{"x":1757786162693,"y":77.466},{"x":1757786102657,"y":92.068},{"x":1757786042370,"y":61.49},{"x":1757785982218,"y":71.008},{"x":1757785922073,"y":91.972},{"x":1757785861889,"y":72.81},{"x":1757785801869,"y":85.088},{"x":1757785741582,"y":64.688},{"x":1757785681433,"y":81.747},{"x":1757785621290,"y":68.369},{"x":1757785561133,"y":71.49},{"x":1757785501275,"y":75.237},{"x":1757785440817,"y":72.881},{"x":1757785380621,"y":87.315},{"x":1757785320478,"y":93.206},{"x":1757785260413,"y":80.9},{"x":1757785203140,"y":77.064},{"x":1757785142829,"y":88.199},{"x":1757785082682,"y":79.532},{"x":1757785022530,"y":83.688},{"x":1757784962378,"y":76.358},{"x":1757784902352,"y":81.282},{"x":1757784842066,"y":81.983},{"x":1757784781908,"y":65.903},{"x":1757784721762,"y":70.257},{"x":1757784661619,"y":77.3},{"x":1757784601879,"y":58.074},{"x":1757784541302,"y":68.641},{"x":1757784481150,"y":69.534},{"x":1757784420973,"y":74.586},{"x":1757784360819,"y":73.098},{"x":1757784300959,"y":100.761},{"x":1757784240531,"y":65.572},{"x":1757784180300,"y":88.081},{"x":1757784120183,"y":73.959},{"x":1757784062898,"y":65.974},{"x":1757784002877,"y":49.813},{"x":1757783942576,"y":83.689},{"x":1757783882403,"y":62.988},{"x":1757783822260,"y":54.981},{"x":1757783762077,"y":60.125},{"x":1757783702035,"y":54.837},{"x":1757783641741,"y":52.989},{"x":1757783581596,"y":61.95},{"x":1757783521442,"y":63.408},{"x":1757783461261,"y":57.37},{"x":1757783401249,"y":94.824},{"x":1757783340729,"y":64.43},{"x":1757783280659,"y":74.455},{"x":1757783220423,"y":59.76},{"x":1757783160225,"y":53.642},{"x":1757783103092,"y":44.584},{"x":1757783042811,"y":47.846},{"x":1757782982658,"y":67.231},{"x":1757782922510,"y":91.077},{"x":1757782862343,"y":96.084},{"x":1757782802429,"y":73.947},{"x":1757782741980,"y":94.692},{"x":1757782681755,"y":84.503},{"x":1757782621601,"y":54.844},{"x":1757782561442,"y":55.578},{"x":1757782501435,"y":81.236},{"x":1757782441136,"y":67.22},{"x":1757782380962,"y":79.609},{"x":1757782320818,"y":94.495},{"x":1757782260650,"y":114.724},{"x":1757782200910,"y":87.222},{"x":1757782140319,"y":66.158},{"x":1757782082991,"y":64.969},{"x":1757782022832,"y":90.157},{"x":1757781962660,"y":82.943},{"x":1757781902647,"y":68.737},{"x":1757781842354,"y":58.446},{"x":1757781782204,"y":60.437},{"x":1757781722043,"y":56.557},{"x":1757781661870,"y":59.065},{"x":1757781601859,"y":52.436},{"x":1757781541566,"y":72.335},{"x":1757781481419,"y":59.799},{"x":1757781421269,"y":37.749},{"x":1757781361093,"y":44.666},{"x":1757781301073,"y":53.197},{"x":1757781240781,"y":55.335},{"x":1757781180639,"y":61.448},{"x":1757781120539,"y":68.231},{"x":1757781060301,"y":76.224},{"x":1757781000714,"y":57.279},{"x":1757780942909,"y":48.426},{"x":1757780882763,"y":55.983},{"x":1757780822578,"y":40.828},{"x":1757780762427,"y":58.334},{"x":1757780702417,"y":70.545},{"x":1757780642130,"y":56.429},{"x":1757780581975,"y":90.132},{"x":1757780521816,"y":52.096},{"x":1757780461628,"y":63.525},{"x":1757780401646,"y":96.622},{"x":1757780341321,"y":54.403},{"x":1757780281156,"y":64.055},{"x":1757780220986,"y":43.856},{"x":1757780160831,"y":59.554},{"x":1757780100948,"y":40.76},{"x":1757780040508,"y":60.338},{"x":1757779980318,"y":54.973},{"x":1757779920229,"y":53.844},{"x":1757779862858,"y":48.845},{"x":1757779802778,"y":72.516},{"x":1757779742473,"y":67.838},{"x":1757779682324,"y":57.289},{"x":1757779622165,"y":55.443},{"x":1757779562020,"y":41.945},{"x":1757779502022,"y":42.244},{"x":1757779441721,"y":60.796},{"x":1757779381565,"y":49.985},{"x":1757779321415,"y":67.522},{"x":1757779261269,"y":65.238},{"x":1757779201460,"y":71.029},{"x":1757779140801,"y":73.389},{"x":1757779080563,"y":49.791},{"x":1757779020440,"y":42.732},{"x":1757778960284,"y":81.778},{"x":1757778903095,"y":61.121},{"x":1757778842808,"y":53.831},{"x":1757778782666,"y":57.874},{"x":1757778722515,"y":83.717},{"x":1757778662338,"y":67.113},{"x":1757778602385,"y":58.578},{"x":1757778542044,"y":62.372},{"x":1757778481892,"y":79.43},{"x":1757778421738,"y":89.794},{"x":1757778361586,"y":60.561},{"x":1757778301606,"y":60.63},{"x":1757778241269,"y":54.994},{"x":1757778181112,"y":59.653},{"x":1757778120944,"y":91.235},{"x":1757778060794,"y":63.458},{"x":1757778001067,"y":75.427},{"x":1757777940489,"y":53.118},{"x":1757777880283,"y":67.394},{"x":1757777822995,"y":58.291},{"x":1757777762845,"y":60.433},{"x":1757777702821,"y":71.489},{"x":1757777642531,"y":57.315},{"x":1757777582379,"y":76.587},{"x":1757777522231,"y":73.652},{"x":1757777462090,"y":53.421},{"x":1757777402085,"y":69.752},{"x":1757777341767,"y":75.996},{"x":1757777281618,"y":66.59},{"x":1757777221449,"y":59.832},{"x":1757777161286,"y":67.402},{"x":1757777101277,"y":54.343},{"x":1757777040926,"y":66.983},{"x":1757776980771,"y":71.497},{"x":1757776920621,"y":66.533},{"x":1757776860475,"y":64.339},{"x":1757776800942,"y":65.851},{"x":1757776742959,"y":72.334},{"x":1757776682809,"y":46.694},{"x":1757776622647,"y":55.982},{"x":1757776562493,"y":61.341},{"x":1757776502480,"y":71.393},{"x":1757776442191,"y":61.637},{"x":1757776382028,"y":75.712},{"x":1757776321866,"y":61.288},{"x":1757776261665,"y":68.719},{"x":1757776201591,"y":68.622},{"x":1757776141273,"y":56.405},{"x":1757776081117,"y":65.114},{"x":1757776020957,"y":65.177},{"x":1757775960831,"y":59.406},{"x":1757775900883,"y":59.632},{"x":1757775840499,"y":59.606},{"x":1757775780400,"y":76.529},{"x":1757775722945,"y":54.488},{"x":1757775662786,"y":55.568},{"x":1757775602879,"y":54.252},{"x":1757775542451,"y":44.988},{"x":1757775482233,"y":55.447},{"x":1757775422071,"y":67.277},{"x":1757775361899,"y":52.633},{"x":1757775301890,"y":69.263},{"x":1757775241600,"y":64.775},{"x":1757775181451,"y":74.977},{"x":1757775121302,"y":59.651},{"x":1757775061135,"y":99.235},{"x":1757775001111,"y":81.372},{"x":1757774940815,"y":62.712},{"x":1757774880724,"y":78.291},{"x":1757774820543,"y":63.569},{"x":1757774760402,"y":83.042},{"x":1757774700791,"y":66.588},{"x":1757774642909,"y":57.933},{"x":1757774582766,"y":47.691},{"x":1757774522611,"y":47.074},{"x":1757774462459,"y":49.216},{"x":1757774402445,"y":68.85},{"x":1757774342152,"y":45.551},{"x":1757774281991,"y":56.447},{"x":1757774221823,"y":54.025},{"x":1757774161676,"y":56.633},{"x":1757774101663,"y":38.367},{"x":1757774041375,"y":44.39},{"x":1757773981224,"y":48.854},{"x":1757773921068,"y":45.179},{"x":1757773860906,"y":42.396},{"x":1757773801019,"y":44.86},{"x":1757773740596,"y":47.804},{"x":1757773680475,"y":56.453},{"x":1757773620301,"y":56.275},{"x":1757773563016,"y":66.53},{"x":1757773502964,"y":42.365},{"x":1757773442682,"y":49.703},{"x":1757773382534,"y":64.079},{"x":1757773322379,"y":43.05},{"x":1757773262229,"y":91.12},{"x":1757773202193,"y":82.895},{"x":1757773141891,"y":54.954},{"x":1757773081747,"y":76.85},{"x":1757773021576,"y":73.842},{"x":1757772961410,"y":69.495},{"x":1757772901411,"y":50.415},{"x":1757772841113,"y":60.643},{"x":1757772780917,"y":53.361},{"x":1757772720751,"y":64.989},{"x":1757772660575,"y":66.614},{"x":1757772600625,"y":72.857},{"x":1757772540277,"y":90.627},{"x":1757772482904,"y":66.221},{"x":1757772422757,"y":59.53},{"x":1757772362614,"y":46.063},{"x":1757772302628,"y":55.818},{"x":1757772242307,"y":51.703},{"x":1757772182155,"y":63.7},{"x":1757772121981,"y":54.318},{"x":1757772061836,"y":74.631},{"x":1757772002085,"y":64.936},{"x":1757771941438,"y":75.085},{"x":1757771881221,"y":62.041},{"x":1757771821067,"y":59.192},{"x":1757771760888,"y":55.153},{"x":1757771700930,"y":60.152},{"x":1757771640597,"y":63.517},{"x":1757771580488,"y":61.285},{"x":1757771520332,"y":52.685},{"x":1757771460231,"y":52.468},{"x":1757771403027,"y":51.552},{"x":1757771342741,"y":71.888},{"x":1757771282593,"y":43.332},{"x":1757771222442,"y":56.939},{"x":1757771162276,"y":64.418},{"x":1757771102238,"y":56.703},{"x":1757771041934,"y":77.682},{"x":1757770981778,"y":57.106},{"x":1757770921620,"y":53.625},{"x":1757770861468,"y":66.687},{"x":1757770801431,"y":71.061},{"x":1757770741132,"y":64.314},{"x":1757770680948,"y":41.86},{"x":1757770620799,"y":63.794},{"x":1757770560669,"y":47.101},{"x":1757770501136,"y":58.549},{"x":1757770440686,"y":69.604},{"x":1757770380231,"y":59.547},{"x":1757770322924,"y":49.045},{"x":1757770262771,"y":57.394},{"x":1757770202747,"y":67.422},{"x":1757770142469,"y":77.324},{"x":1757770082318,"y":53.388},{"x":1757770022161,"y":54.405},{"x":1757769962006,"y":70.788},{"x":1757769901987,"y":54.677},{"x":1757769841691,"y":59.331},{"x":1757769781531,"y":67.314},{"x":1757769721383,"y":51.314},{"x":1757769661237,"y":60.852},{"x":1757769601253,"y":58.147},{"x":1757769540909,"y":61.466},{"x":1757769480754,"y":83.131},{"x":1757769420635,"y":67.32},{"x":1757769360514,"y":66.161},{"x":1757769300813,"y":54.0},{"x":1757769240055,"y":63.921},{"x":1757769182868,"y":52.1},{"x":1757769122716,"y":57.762},{"x":1757769062510,"y":67.851},{"x":1757769002445,"y":68.727},{"x":1757768942164,"y":51.699},{"x":1757768881985,"y":65.52},{"x":1757768821834,"y":74.375},{"x":1757768761691,"y":59.287},{"x":1757768701701,"y":56.658},{"x":1757768641381,"y":77.989},{"x":1757768581228,"y":41.031},{"x":1757768521071,"y":47.851},{"x":1757768460917,"y":40.509},{"x":1757768401336,"y":68.847},{"x":1757768340473,"y":55.434},{"x":1757768280288,"y":54.668},{"x":1757768222990,"y":53.997},{"x":1757768162835,"y":55.361},{"x":1757768102810,"y":57.364},{"x":1757768042533,"y":40.019},{"x":1757767982375,"y":39.958},{"x":1757767922228,"y":73.169},{"x":1757767862079,"y":71.578},{"x":1757767802059,"y":40.395},{"x":1757767741762,"y":43.585},{"x":1757767681618,"y":54.684},{"x":1757767621468,"y":49.556},{"x":1757767561318,"y":47.699},{"x":1757767501335,"y":66.798},{"x":1757767440993,"y":49.979},{"x":1757767380847,"y":56.472},{"x":1757767320708,"y":68.82},{"x":1757767260568,"y":70.227},{"x":1757767200895,"y":52.537},{"x":1757767140294,"y":54.924},{"x":1757767082952,"y":55.194},{"x":1757767022798,"y":60.221},{"x":1757766962650,"y":99.494},{"x":1757766902640,"y":61.186},{"x":1757766842359,"y":53.702},{"x":1757766782228,"y":49.971},{"x":1757766722042,"y":65.265},{"x":1757766661896,"y":44.986},{"x":1757766601882,"y":62.273},{"x":1757766541582,"y":37.203},{"x":1757766481424,"y":50.713},{"x":1757766421308,"y":42.168},{"x":1757766361120,"y":31.901},{"x":1757766301144,"y":36.275},{"x":1757766240807,"y":42.3},{"x":1757766180643,"y":44.946},{"x":1757766120476,"y":39.975},{"x":1757766060431,"y":57.591},{"x":1757766003095,"y":49.339},{"x":1757765942801,"y":33.328},{"x":1757765882632,"y":37.552},{"x":1757765822482,"y":42.375},{"x":1757765762333,"y":40.44},{"x":1757765702316,"y":20.66},{"x":1757765641976,"y":56.577},{"x":1757765581822,"y":49.372},{"x":1757765521648,"y":51.671},{"x":1757765461452,"y":41.306},{"x":1757765401403,"y":43.346},{"x":1757765341074,"y":30.481},{"x":1757765280893,"y":25.293},{"x":1757765220743,"y":42.18},{"x":1757765160596,"y":18.039},{"x":1757765100775,"y":49.324},{"x":1757765040213,"y":32.09},{"x":1757764982933,"y":42.796},{"x":1757764922775,"y":43.042},{"x":1757764862611,"y":56.462},{"x":1757764802661,"y":48.601},{"x":1757764742287,"y":41.346},{"x":1757764682077,"y":42.995},{"x":1757764621915,"y":36.639},{"x":1757764561756,"y":28.275},{"x":1757764501720,"y":34.455},{"x":1757764441435,"y":38.123},{"x":1757764381286,"y":18.158},{"x":1757764321144,"y":26.694},{"x":1757764260972,"y":50.441},{"x":1757764200974,"y":40.495},{"x":1757764140630,"y":65.091},{"x":1757764080515,"y":51.67},{"x":1757764020358,"y":31.525},{"x":1757763962939,"y":39.29},{"x":1757763902927,"y":30.712},{"x":1757763842628,"y":39.234},{"x":1757763782466,"y":23.807},{"x":1757763722299,"y":43.796},{"x":1757763662133,"y":28.428},{"x":1757763602111,"y":35.652},{"x":1757763541802,"y":42.077},{"x":1757763481648,"y":38.506},{"x":1757763421489,"y":39.607},{"x":1757763361336,"y":49.28},{"x":1757763301332,"y":60.609},{"x":1757763241013,"y":71.437},{"x":1757763180857,"y":50.111},{"x":1757763120696,"y":52.2},{"x":1757763060557,"y":90.021},{"x":1757763000811,"y":44.75},{"x":1757762940331,"y":44.696},{"x":1757762882899,"y":39.911},{"x":1757762822753,"y":39.48},{"x":1757762762589,"y":42.302},{"x":1757762702594,"y":69.14},{"x":1757762642268,"y":54.588},{"x":1757762582116,"y":58.67},{"x":1757762521952,"y":64.634},{"x":1757762461794,"y":69.038},{"x":1757762401794,"y":52.736},{"x":1757762341486,"y":59.441},{"x":1757762281341,"y":55.269},{"x":1757762221186,"y":67.816},{"x":1757762161014,"y":96.064},{"x":1757762101083,"y":83.657},{"x":1757762040699,"y":50.942},{"x":1757761980555,"y":81.452},{"x":1757761920403,"y":61.738},{"x":1757761860279,"y":57.563},{"x":1757761803024,"y":56.314},{"x":1757761742719,"y":73.75},{"x":1757761682553,"y":69.587},{"x":1757761622401,"y":53.891},{"x":1757761562241,"y":57.671},{"x":1757761502220,"y":50.747},{"x":1757761441914,"y":68.322},{"x":1757761381756,"y":56.557},{"x":1757761321586,"y":69.812},{"x":1757761261444,"y":56.97},{"x":1757761201804,"y":69.923},{"x":1757761141076,"y":70.451},{"x":1757761080873,"y":65.161},{"x":1757761020733,"y":61.622},{"x":1757760960570,"y":55.721},{"x":1757760900702,"y":74.404},{"x":1757760840296,"y":61.918},{"x":1757760782872,"y":62.985},{"x":1757760722730,"y":71.338},{"x":1757760662566,"y":59.816},{"x":1757760602538,"y":65.576},{"x":1757760542235,"y":68.028},{"x":1757760482079,"y":88.773},{"x":1757760421904,"y":82.227},{"x":1757760361751,"y":65.159},{"x":1757760301759,"y":56.682},{"x":1757760241446,"y":56.066},{"x":1757760181301,"y":54.709},{"x":1757760121140,"y":50.154},{"x":1757760060977,"y":60.515},{"x":1757760001147,"y":52.141},{"x":1757759940652,"y":50.947},{"x":1757759880527,"y":47.001},{"x":1757759820332,"y":60.961},{"x":1757759760219,"y":57.329},{"x":1757759703023,"y":49.77},{"x":1757759642734,"y":49.484},{"x":1757759582570,"y":50.765},{"x":1757759522421,"y":77.134},{"x":1757759462254,"y":70.561},{"x":1757759402239,"y":75.929},{"x":1757759341933,"y":89.299},{"x":1757759281783,"y":79.185},{"x":1757759221638,"y":57.728},{"x":1757759161487,"y":77.809},{"x":1757759101613,"y":47.449},{"x":1757759041185,"y":68.442},{"x":1757758981033,"y":57.872},{"x":1757758920867,"y":72.401},{"x":1757758860719,"y":51.035},{"x":1757758800999,"y":43.601},{"x":1757758740385,"y":42.259},{"x":1757758680306,"y":36.802},{"x":1757758622893,"y":43.951},{"x":1757758562735,"y":37.375},{"x":1757758502772,"y":42.7},{"x":1757758442425,"y":37.882},{"x":1757758382263,"y":34.949},{"x":1757758322087,"y":43.127},{"x":1757758261878,"y":38.539},{"x":1757758201836,"y":45.523},{"x":1757758141532,"y":35.079},{"x":1757758081383,"y":34.071},{"x":1757758021229,"y":47.738},{"x":1757757961073,"y":41.782},{"x":1757757901068,"y":37.088},{"x":1757757840733,"y":62.033},{"x":1757757780556,"y":37.061},{"x":1757757720454,"y":43.914},{"x":1757757660379,"y":44.537},{"x":1757757603129,"y":34.958},{"x":1757757542759,"y":39.977},{"x":1757757482552,"y":38.519},{"x":1757757422402,"y":41.548},{"x":1757757362246,"y":36.473},{"x":1757757302194,"y":39.422},{"x":1757757241885,"y":31.392},{"x":1757757181734,"y":30.377},{"x":1757757121579,"y":34.807},{"x":1757757061429,"y":46.526},{"x":1757757001420,"y":28.423},{"x":1757756941127,"y":40.636},{"x":1757756880961,"y":32.52},{"x":1757756820809,"y":59.878},{"x":1757756760661,"y":55.059},{"x":1757756700952,"y":35.805},{"x":1757756640472,"y":43.103},{"x":1757756580389,"y":50.426},{"x":1757756522891,"y":53.218},{"x":1757756462720,"y":61.001},{"x":1757756402702,"y":62.612},{"x":1757756342392,"y":47.329},{"x":1757756282245,"y":45.043},{"x":1757756222058,"y":45.559},{"x":1757756161895,"y":43.004},{"x":1757756101882,"y":39.571},{"x":1757756041587,"y":25.812},{"x":1757755981423,"y":15.916},{"x":1757755921266,"y":23.18},{"x":1757755861126,"y":51.212},{"x":1757755801195,"y":23.291},{"x":1757755740744,"y":16.461},{"x":1757755680617,"y":16.509},{"x":1757755620453,"y":31.932},{"x":1757755560277,"y":36.392},{"x":1757755503042,"y":46.846},{"x":1757755442753,"y":61.725},{"x":1757755382589,"y":75.509},{"x":1757755322439,"y":66.015},{"x":1757755262287,"y":53.39},{"x":1757755202270,"y":85.819},{"x":1757755141972,"y":57.642},{"x":1757755081804,"y":52.197},{"x":1757755021663,"y":51.904},{"x":1757754961510,"y":46.111},{"x":1757754901540,"y":56.37},{"x":1757754841215,"y":51.524},{"x":1757754781081,"y":46.075},{"x":1757754720885,"y":51.701},{"x":1757754660678,"y":59.375},{"x":1757754600728,"y":57.579},{"x":1757754542985,"y":57.871},{"x":1757754482837,"y":49.859},{"x":1757754422667,"y":35.334},{"x":1757754362513,"y":56.501},{"x":1757754302495,"y":55.805},{"x":1757754242206,"y":45.923},{"x":1757754182056,"y":42.697},{"x":1757754121894,"y":35.118},{"x":1757754061745,"y":45.39},{"x":1757754002053,"y":55.252},{"x":1757753941391,"y":42.895},{"x":1757753881218,"y":42.898},{"x":1757753821020,"y":39.231},{"x":1757753760873,"y":36.076},{"x":1757753700947,"y":32.676},{"x":1757753640560,"y":39.442},{"x":1757753580427,"y":50.488},{"x":1757753520262,"y":61.013},{"x":1757753462971,"y":53.36},{"x":1757753402945,"y":45.774},{"x":1757753342667,"y":39.728},{"x":1757753282492,"y":32.008},{"x":1757753222339,"y":37.373},{"x":1757753162165,"y":53.392},{"x":1757753102143,"y":42.159},{"x":1757753041826,"y":39.577},{"x":1757752981670,"y":34.432},{"x":1757752921519,"y":34.32},{"x":1757752861357,"y":47.525},{"x":1757752801355,"y":36.995},{"x":1757752741033,"y":42.275},{"x":1757752680838,"y":40.318},{"x":1757752620688,"y":38.849},{"x":1757752560534,"y":33.319},{"x":1757752500729,"y":41.27},{"x":1757752440224,"y":34.282},{"x":1757752382906,"y":39.543},{"x":1757752322744,"y":39.488},{"x":1757752262572,"y":46.213},{"x":1757752202573,"y":34.652},{"x":1757752142273,"y":37.069},{"x":1757752082115,"y":28.091},{"x":1757752021970,"y":55.885},{"x":1757751961808,"y":43.483},{"x":1757751901789,"y":47.969},{"x":1757751841491,"y":59.037},{"x":1757751781277,"y":35.293},{"x":1757751721097,"y":38.255},{"x":1757751660936,"y":36.98},{"x":1757751601083,"y":40.866},{"x":1757751540594,"y":36.102},{"x":1757751480547,"y":37.97},{"x":1757751420440,"y":40.474},{"x":1757751362956,"y":37.157},{"x":1757751302937,"y":47.719},{"x":1757751242647,"y":74.258},{"x":1757751182498,"y":45.347},{"x":1757751122324,"y":55.537},{"x":1757751062113,"y":33.398},{"x":1757751002083,"y":54.49},{"x":1757750941754,"y":39.676},{"x":1757750881615,"y":41.926},{"x":1757750821451,"y":35.231},{"x":1757750761309,"y":41.54},{"x":1757750701325,"y":39.815},{"x":1757750640989,"y":35.399},{"x":1757750580837,"y":43.557},{"x":1757750520685,"y":53.065},{"x":1757750460585,"y":46.243},{"x":1757750401475,"y":47.267},{"x":1757750343023,"y":37.151},{"x":1757750282783,"y":36.789},{"x":1757750222642,"y":36.429},{"x":1757750162482,"y":43.648},{"x":1757750102461,"y":37.631},{"x":1757750042174,"y":40.77},{"x":1757749981982,"y":47.769},{"x":1757749921829,"y":65.966},{"x":1757749861682,"y":41.034},{"x":1757749801631,"y":64.041},{"x":1757749741338,"y":77.707},{"x":1757749681155,"y":81.865},{"x":1757749620994,"y":69.558},{"x":1757749560845,"y":65.87},{"x":1757749501085,"y":79.289},{"x":1757749440522,"y":67.874},{"x":1757749380359,"y":76.359},{"x":1757749320341,"y":65.911},{"x":1757749262900,"y":30.338},{"x":1757749202895,"y":26.956},{"x":1757749142617,"y":22.527},{"x":1757749082474,"y":29.271},{"x":1757749022298,"y":22.638},{"x":1757748962143,"y":56.336},{"x":1757748902133,"y":41.463},{"x":1757748841831,"y":36.695},{"x":1757748781682,"y":33.717},{"x":1757748721528,"y":50.08},{"x":1757748661379,"y":46.463},{"x":1757748601485,"y":50.521},{"x":1757748541067,"y":41.116},{"x":1757748480898,"y":66.743},{"x":1757748420738,"y":40.652},{"x":1757748360596,"y":50.227},{"x":1757748300797,"y":35.887},{"x":1757748240296,"y":41.926},{"x":1757748182952,"y":59.617},{"x":1757748122794,"y":36.247},{"x":1757748062641,"y":50.004},{"x":1757748002623,"y":53.94},{"x":1757747942331,"y":50.231},{"x":1757747882181,"y":40.222},{"x":1757747822025,"y":37.494},{"x":1757747761865,"y":37.158},{"x":1757747701853,"y":29.766},{"x":1757747641553,"y":31.194},{"x":1757747581393,"y":34.221},{"x":1757747521239,"y":52.992},{"x":1757747461041,"y":36.178},{"x":1757747401019,"y":31.411},{"x":1757747340673,"y":28.338},{"x":1757747280520,"y":32.151},{"x":1757747220403,"y":38.219},{"x":1757747160275,"y":33.156},{"x":1757747103031,"y":34.059},{"x":1757747042757,"y":40.988},{"x":1757746982578,"y":39.802},{"x":1757746922401,"y":39.035},{"x":1757746862254,"y":47.803},{"x":1757746802464,"y":43.18},{"x":1757746741919,"y":51.667},{"x":1757746681670,"y":50.921},{"x":1757746621516,"y":46.601},{"x":1757746561371,"y":47.738},{"x":1757746501362,"y":39.887},{"x":1757746441067,"y":57.622},{"x":1757746380902,"y":42.019},{"x":1757746320754,"y":53.499},{"x":1757746260599,"y":56.92},{"x":1757746200818,"y":58.356},{"x":1757746140309,"y":71.951},{"x":1757746082962,"y":75.525},{"x":1757746022786,"y":54.869},{"x":1757745962639,"y":54.204},{"x":1757745902614,"y":44.43},{"x":1757745842327,"y":59.436},{"x":1757745782165,"y":45.196},{"x":1757745722004,"y":48.391},{"x":1757745661843,"y":49.351},{"x":1757745601821,"y":46.091},{"x":1757745541537,"y":52.349},{"x":1757745481378,"y":64.443},{"x":1757745421230,"y":68.082},{"x":1757745361079,"y":70.4},{"x":1757745301074,"y":39.471},{"x":1757745240777,"y":57.058},{"x":1757745180614,"y":67.46},{"x":1757745120521,"y":67.38},{"x":1757745060268,"y":66.422},{"x":1757745003140,"y":67.228},{"x":1757744942845,"y":78.237},{"x":1757744882693,"y":68.546},{"x":1757744822539,"y":64.625},{"x":1757744762385,"y":78.702},{"x":1757744702355,"y":45.616},{"x":1757744642076,"y":62.533},{"x":1757744581911,"y":63.355},{"x":1757744521757,"y":45.165},{"x":1757744461607,"y":62.934},{"x":1757744401595,"y":56.661},{"x":1757744341317,"y":56.155},{"x":1757744281159,"y":53.893},{"x":1757744220989,"y":42.089},{"x":1757744160841,"y":50.756},{"x":1757744101003,"y":54.715},{"x":1757744040573,"y":50.417},{"x":1757743980425,"y":51.016},{"x":1757743920240,"y":37.707},{"x":1757743862952,"y":35.918},{"x":1757743802892,"y":31.146},{"x":1757743742605,"y":30.119},{"x":1757743682456,"y":29.338},{"x":1757743622297,"y":33.43},{"x":1757743562158,"y":38.471},{"x":1757743502103,"y":33.29},{"x":1757743441800,"y":35.124},{"x":1757743381643,"y":33.85},{"x":1757743321491,"y":32.353},{"x":1757743261342,"y":36.951},{"x":1757743201568,"y":32.365},{"x":1757743140956,"y":31.205},{"x":1757743080754,"y":30.713},{"x":1757743020605,"y":28.728},{"x":1757742960477,"y":30.316},{"x":1757742900663,"y":32.42},{"x":1757742843033,"y":35.302},{"x":1757742782870,"y":28.98},{"x":1757742722705,"y":29.165},{"x":1757742662558,"y":28.386},{"x":1757742602523,"y":32.674},{"x":1757742542226,"y":32.496},{"x":1757742482070,"y":29.412},{"x":1757742421903,"y":36.182},{"x":1757742361746,"y":28.325},{"x":1757742301740,"y":26.929},{"x":1757742241438,"y":29.064},{"x":1757742181278,"y":25.556},{"x":1757742121116,"y":27.195},{"x":1757742060950,"y":26.833},{"x":1757742001071,"y":34.05},{"x":1757741940566,"y":36.848},{"x":1757741880461,"y":29.258},{"x":1757741820302,"y":33.326},{"x":1757741762974,"y":46.154},{"x":1757741702944,"y":45.69},{"x":1757741642651,"y":45.016},{"x":1757741582502,"y":40.04},{"x":1757741522398,"y":56.504},{"x":1757741462204,"y":32.155},{"x":1757741402240,"y":33.099},{"x":1757741341883,"y":36.555},{"x":1757741281737,"y":34.596},{"x":1757741221569,"y":31.859},{"x":1757741161423,"y":29.545},{"x":1757741101401,"y":32.684},{"x":1757741041113,"y":34.204},{"x":1757740980929,"y":34.37},{"x":1757740920788,"y":32.788},{"x":1757740860635,"y":32.078},{"x":1757740801017,"y":31.603},{"x":1757740740313,"y":30.155},{"x":1757740682978,"y":28.261},{"x":1757740622851,"y":33.011},{"x":1757740562674,"y":27.196},{"x":1757740502644,"y":31.139},{"x":1757740442341,"y":28.401},{"x":1757740382177,"y":32.052},{"x":1757740321917,"y":43.399},{"x":1757740261744,"y":33.976},{"x":1757740201718,"y":32.929},{"x":1757740141412,"y":34.106},{"x":1757740081257,"y":30.047},{"x":1757740021091,"y":29.74},{"x":1757739960922,"y":31.03},{"x":1757739900989,"y":29.448},{"x":1757739840641,"y":28.678},{"x":1757739780465,"y":30.952},{"x":1757739720327,"y":31.397},{"x":1757739662989,"y":38.694},{"x":1757739603062,"y":34.379},{"x":1757739542665,"y":37.028},{"x":1757739482432,"y":34.933},{"x":1757739422277,"y":35.372},{"x":1757739362121,"y":38.938},{"x":1757739302102,"y":37.713},{"x":1757739241808,"y":36.17},{"x":1757739181653,"y":31.15},{"x":1757739121488,"y":34.716},{"x":1757739061331,"y":32.286},{"x":1757739001320,"y":38.273},{"x":1757738941022,"y":35.667},{"x":1757738880866,"y":36.438},{"x":1757738820716,"y":34.041},{"x":1757738760589,"y":32.321},{"x":1757738700860,"y":36.889},{"x":1757738642884,"y":35.823},{"x":1757738582731,"y":34.872},{"x":1757738522571,"y":32.502},{"x":1757738462425,"y":30.284},{"x":1757738402412,"y":33.413},{"x":1757738342113,"y":37.905},{"x":1757738281955,"y":32.54},{"x":1757738221791,"y":31.27},{"x":1757738161644,"y":30.242},{"x":1757738101634,"y":31.039},{"x":1757738041353,"y":36.61},{"x":1757737981209,"y":33.145},{"x":1757737921028,"y":37.065},{"x":1757737860876,"y":33.498},{"x":1757737801176,"y":31.964},{"x":1757737740607,"y":31.381},{"x":1757737680453,"y":33.689},{"x":1757737620339,"y":41.287},{"x":1757737562956,"y":34.294},{"x":1757737502938,"y":33.451},{"x":1757737442649,"y":31.719},{"x":1757737382524,"y":34.599},{"x":1757737322354,"y":27.858},{"x":1757737262204,"y":29.066},{"x":1757737202204,"y":34.214},{"x":1757737141863,"y":30.886},{"x":1757737081712,"y":32.918},{"x":1757737021554,"y":31.863},{"x":1757736961389,"y":31.299},{"x":1757736901390,"y":35.579},{"x":1757736841080,"y":36.139},{"x":1757736780844,"y":30.115},{"x":1757736720627,"y":35.497},{"x":1757736660475,"y":28.575},{"x":1757736600674,"y":31.724},{"x":1757736542949,"y":28.342},{"x":1757736482783,"y":29.269},{"x":1757736422635,"y":39.194},{"x":1757736362472,"y":35.762},{"x":1757736302495,"y":34.549},{"x":1757736242166,"y":47.776},{"x":1757736181970,"y":44.818},{"x":1757736121815,"y":41.591},{"x":1757736061630,"y":42.422},{"x":1757736001895,"y":43.889},{"x":1757735941170,"y":36.85},{"x":1757735880960,"y":34.636},{"x":1757735820815,"y":36.055},{"x":1757735760667,"y":40.289},{"x":1757735700786,"y":40.484},{"x":1757735640323,"y":41.262},{"x":1757735582962,"y":43.061},{"x":1757735522806,"y":37.704},{"x":1757735462646,"y":36.569},{"x":1757735402633,"y":32.323},{"x":1757735342352,"y":36.864},{"x":1757735282205,"y":33.111},{"x":1757735222052,"y":32.746},{"x":1757735161880,"y":33.382},{"x":1757735101876,"y":34.977},{"x":1757735041553,"y":31.175},{"x":1757734981387,"y":35.243},{"x":1757734921227,"y":36.058},{"x":1757734861063,"y":36.23},{"x":1757734801125,"y":37.534},{"x":1757734740734,"y":40.711},{"x":1757734680572,"y":36.911},{"x":1757734620445,"y":34.437},{"x":1757734560290,"y":33.035},{"x":1757734503030,"y":31.558},{"x":1757734442734,"y":40.409},{"x":1757734382589,"y":31.586},{"x":1757734322450,"y":33.929},{"x":1757734262291,"y":33.894},{"x":1757734202280,"y":35.759},{"x":1757734141960,"y":44.72},{"x":1757734081807,"y":35.663},{"x":1757734021657,"y":34.884},{"x":1757733961501,"y":34.821},{"x":1757733901474,"y":31.706},{"x":1757733841173,"y":42.52},{"x":1757733781012,"y":40.382},{"x":1757733720841,"y":43.949},{"x":1757733660693,"y":42.914},{"x":1757733600970,"y":41.635},{"x":1757733540416,"y":44.911},{"x":1757733480288,"y":44.918},{"x":1757733422971,"y":42.527},{"x":1757733362732,"y":42.994},{"x":1757733302724,"y":44.013},{"x":1757733242435,"y":39.59},{"x":1757733182242,"y":38.283},{"x":1757733122035,"y":38.153},{"x":1757733061964,"y":38.178},{"x":1757733001854,"y":39.196},{"x":1757732941544,"y":39.693},{"x":1757732881371,"y":40.061},{"x":1757732821223,"y":44.591},{"x":1757732761041,"y":41.177},{"x":1757732701139,"y":41.223},{"x":1757732640706,"y":54.825},{"x":1757732581624,"y":56.339},{"x":1757732521432,"y":54.034},{"x":1757732461222,"y":54.468},{"x":1757732402943,"y":52.117},{"x":1757732342493,"y":49.224},{"x":1757732282287,"y":48.476},{"x":1757732222131,"y":50.064},{"x":1757732161977,"y":52.073},{"x":1757732101957,"y":47.699},{"x":1757732041670,"y":50.708},{"x":1757731981509,"y":42.053},{"x":1757731921334,"y":44.734},{"x":1757731861183,"y":48.158},{"x":1757731801152,"y":44.144},{"x":1757731740860,"y":46.743},{"x":1757731680718,"y":42.302},{"x":1757731620548,"y":42.879},{"x":1757731560409,"y":40.385},{"x":1757731500633,"y":45.098},{"x":1757731442955,"y":45.672},{"x":1757731382803,"y":40.069},{"x":1757731322653,"y":39.787},{"x":1757731262504,"y":43.596},{"x":1757731202486,"y":38.7},{"x":1757731142196,"y":44.45},{"x":1757731082048,"y":42.114},{"x":1757731021882,"y":50.438},{"x":1757730961728,"y":46.098},{"x":1757730901751,"y":42.207},{"x":1757730841430,"y":40.331},{"x":1757730781274,"y":38.409},{"x":1757730721134,"y":37.898},{"x":1757730660963,"y":41.743},{"x":1757730601029,"y":49.958},{"x":1757730540647,"y":41.965},{"x":1757730480562,"y":48.395},{"x":1757730420410,"y":49.382},{"x":1757730360238,"y":45.691},{"x":1757730303090,"y":38.734},{"x":1757730242800,"y":34.245},{"x":1757730182643,"y":34.316},{"x":1757730122486,"y":35.456},{"x":1757730062321,"y":31.157},{"x":1757730002298,"y":35.009},{"x":1757729941999,"y":31.594},{"x":1757729881844,"y":32.913},{"x":1757729821684,"y":44.555},{"x":1757729761516,"y":36.093},{"x":1757729701511,"y":33.986},{"x":1757729641219,"y":36.227},{"x":1757729581061,"y":31.991},{"x":1757729520901,"y":32.508},{"x":1757729460701,"y":35.433},{"x":1757729400934,"y":31.546},{"x":1757729340436,"y":29.265},{"x":1757729283002,"y":30.519},{"x":1757729222868,"y":36.533},{"x":1757729162686,"y":40.061},{"x":1757729102681,"y":33.306},{"x":1757729042366,"y":33.575},{"x":1757728982236,"y":32.812},{"x":1757728922058,"y":30.464},{"x":1757728861889,"y":33.161},{"x":1757728802126,"y":35.647},{"x":1757728741438,"y":34.492},{"x":1757728681215,"y":36.143},{"x":1757728621063,"y":34.814},{"x":1757728560896,"y":35.456},{"x":1757728500910,"y":41.14},{"x":1757728440595,"y":33.759},{"x":1757728380420,"y":34.14},{"x":1757728320369,"y":34.226},{"x":1757728262945,"y":32.173},{"x":1757728202870,"y":33.311},{"x":1757728142587,"y":34.459},{"x":1757728082432,"y":35.113},{"x":1757728022290,"y":39.177},{"x":1757727962140,"y":37.495},{"x":1757727902117,"y":39.281},{"x":1757727841823,"y":37.13},{"x":1757727781663,"y":33.434},{"x":1757727721505,"y":36.269},{"x":1757727661350,"y":31.862},{"x":1757727601357,"y":33.956},{"x":1757727541044,"y":31.922},{"x":1757727480877,"y":31.701},{"x":1757727420735,"y":33.938},{"x":1757727360601,"y":34.19},{"x":1757727300749,"y":34.766},{"x":1757727240273,"y":32.0},{"x":1757727183027,"y":35.524},{"x":1757727122848,"y":33.662},{"x":1757727062689,"y":34.917},{"x":1757727002617,"y":36.972},{"x":1757726942334,"y":32.976},{"x":1757726882190,"y":31.929},{"x":1757726822027,"y":33.957},{"x":1757726761861,"y":31.819},{"x":1757726701829,"y":36.206},{"x":1757726641545,"y":28.686},{"x":1757726581384,"y":31.556},{"x":1757726521238,"y":35.706},{"x":1757726461081,"y":29.764},{"x":1757726401094,"y":31.491},{"x":1757726340711,"y":25.838},{"x":1757726280570,"y":26.174},{"x":1757726220420,"y":26.968},{"x":1757726160326,"y":27.424},{"x":1757726103102,"y":30.908},{"x":1757726042791,"y":28.314},{"x":1757725982647,"y":28.441},{"x":1757725922506,"y":31.166},{"x":1757725862248,"y":35.103},{"x":1757725802218,"y":29.961},{"x":1757725741891,"y":30.202},{"x":1757725681739,"y":32.213},{"x":1757725621590,"y":33.872},{"x":1757725561434,"y":31.436},{"x":1757725501415,"y":33.243},{"x":1757725441118,"y":27.573},{"x":1757725380949,"y":27.006},{"x":1757725320794,"y":43.946},{"x":1757725260646,"y":38.894},{"x":1757725201337,"y":42.097},{"x":1757725140283,"y":39.272},{"x":1757725082998,"y":45.03},{"x":1757725022844,"y":31.982},{"x":1757724962691,"y":35.348},{"x":1757724902657,"y":32.429},{"x":1757724842356,"y":33.723},{"x":1757724782202,"y":28.772},{"x":1757724722046,"y":27.415},{"x":1757724661864,"y":27.762},{"x":1757724601839,"y":27.358},{"x":1757724541555,"y":34.285},{"x":1757724481386,"y":34.352},{"x":1757724421239,"y":30.669},{"x":1757724361080,"y":33.571},{"x":1757724301113,"y":34.696},{"x":1757724240746,"y":37.436},{"x":1757724180589,"y":33.586},{"x":1757724120554,"y":34.79},{"x":1757724060345,"y":28.914},{"x":1757724003132,"y":31.478},{"x":1757723942820,"y":32.534},{"x":1757723882687,"y":34.075},{"x":1757723822500,"y":33.888},{"x":1757723762354,"y":35.176},{"x":1757723702339,"y":35.119},{"x":1757723642058,"y":37.155},{"x":1757723581882,"y":36.15},{"x":1757723521743,"y":34.357},{"x":1757723461572,"y":34.527},{"x":1757723401602,"y":31.021},{"x":1757723341265,"y":34.713},{"x":1757723281105,"y":32.415},{"x":1757723220944,"y":36.058},{"x":1757723160802,"y":35.334},{"x":1757723100943,"y":30.818},{"x":1757723040514,"y":31.317},{"x":1757722980377,"y":31.7},{"x":1757722920270,"y":32.47},{"x":1757722862901,"y":33.855},{"x":1757722802885,"y":36.103},{"x":1757722742603,"y":31.99},{"x":1757722682442,"y":31.861},{"x":1757722622285,"y":35.61},{"x":1757722562121,"y":36.512},{"x":1757722502080,"y":34.12},{"x":1757722441792,"y":33.005},{"x":1757722381627,"y":29.904},{"x":1757722321474,"y":28.966},{"x":1757722261255,"y":30.278},{"x":1757722201240,"y":27.05},{"x":1757722140889,"y":27.676},{"x":1757722080695,"y":33.569},{"x":1757722020559,"y":28.902},{"x":1757721960362,"y":31.888},{"x":1757721900671,"y":35.957},{"x":1757721842893,"y":30.95},{"x":1757721782745,"y":33.514},{"x":1757721722597,"y":30.674},{"x":1757721662445,"y":32.399},{"x":1757721602478,"y":33.354},{"x":1757721542127,"y":29.453},{"x":1757721481931,"y":29.334},{"x":1757721421787,"y":33.596},{"x":1757721361628,"y":31.569},{"x":1757721301604,"y":35.548},{"x":1757721241314,"y":40.5},{"x":1757721181166,"y":32.163},{"x":1757721120993,"y":36.438},{"x":1757721060837,"y":33.947},{"x":1757721000888,"y":30.852},{"x":1757720940497,"y":33.111},{"x":1757720880331,"y":34.153},{"x":1757720820203,"y":29.407},{"x":1757720762893,"y":28.508},{"x":1757720702856,"y":31.162},{"x":1757720642571,"y":29.715},{"x":1757720582419,"y":36.199},{"x":1757720522256,"y":34.744},{"x":1757720462087,"y":29.372},{"x":1757720402073,"y":31.151},{"x":1757720341769,"y":33.784},{"x":1757720281627,"y":34.678},{"x":1757720221466,"y":37.311},{"x":1757720161318,"y":37.836},{"x":1757720101299,"y":30.884},{"x":1757720040985,"y":29.813},{"x":1757719980833,"y":29.21},{"x":1757719920692,"y":35.89},{"x":1757719860554,"y":37.43},{"x":1757719800864,"y":32.916},{"x":1757719740267,"y":32.806},{"x":1757719682930,"y":31.574},{"x":1757719622759,"y":34.995},{"x":1757719562609,"y":41.737},{"x":1757719502591,"y":41.801},{"x":1757719442306,"y":42.809},{"x":1757719382151,"y":44.023},{"x":1757719321999,"y":34.98},{"x":1757719261833,"y":34.215},{"x":1757719201822,"y":30.845},{"x":1757719141544,"y":31.883},{"x":1757719081374,"y":37.006},{"x":1757719021208,"y":36.129},{"x":1757718961046,"y":37.157},{"x":1757718901077,"y":35.7},{"x":1757718840726,"y":38.692},{"x":1757718780591,"y":46.221},{"x":1757718720383,"y":45.713},{"x":1757718660219,"y":49.215},{"x":1757718602991,"y":46.193},{"x":1757718542709,"y":46.674},{"x":1757718482546,"y":46.974},{"x":1757718422398,"y":42.32},{"x":1757718362245,"y":47.056},{"x":1757718302236,"y":44.605},{"x":1757718241933,"y":51.502},{"x":1757718181769,"y":42.499},{"x":1757718121610,"y":38.268},{"x":1757718061461,"y":39.038},{"x":1757718001760,"y":31.58},{"x":1757717941044,"y":33.543},{"x":1757717880816,"y":43.349},{"x":1757717820670,"y":43.669},{"x":1757717760534,"y":38.618},{"x":1757717700748,"y":37.923},{"x":1757717640150,"y":53.209},{"x":1757717582894,"y":52.59},{"x":1757717522755,"y":42.807},{"x":1757717462599,"y":42.518},{"x":1757717402569,"y":44.765},{"x":1757717342288,"y":50.087},{"x":1757717282126,"y":42.998},{"x":1757717221979,"y":46.215},{"x":1757717161846,"y":49.77},{"x":1757717101837,"y":48.03},{"x":1757717041519,"y":43.445},{"x":1757716981385,"y":42.767},{"x":1757716921205,"y":49.991},{"x":1757716861037,"y":55.885},{"x":1757716801179,"y":48.816},{"x":1757716740740,"y":55.721},{"x":1757716680576,"y":54.429},{"x":1757716620433,"y":53.044},{"x":1757716560342,"y":58.272},{"x":1757716500689,"y":49.732},{"x":1757716442884,"y":53.034},{"x":1757716382740,"y":51.026},{"x":1757716322575,"y":48.332},{"x":1757716262422,"y":49.745},{"x":1757716202421,"y":50.67},{"x":1757716142118,"y":44.29},{"x":1757716081962,"y":43.202},{"x":1757716021803,"y":46.214},{"x":1757715961654,"y":63.499},{"x":1757715901640,"y":54.431},{"x":1757715841359,"y":62.327},{"x":1757715781194,"y":55.611},{"x":1757715721012,"y":53.875},{"x":1757715660856,"y":47.755},{"x":1757715600993,"y":50.846},{"x":1757715540555,"y":43.31},{"x":1757715480394,"y":44.434},{"x":1757715420333,"y":46.663},{"x":1757715362980,"y":44.11},{"x":1757715302958,"y":60.999},{"x":1757715242667,"y":59.132},{"x":1757715182518,"y":56.004},{"x":1757715122362,"y":65.482},{"x":1757715062159,"y":56.233},{"x":1757715002106,"y":48.88},{"x":1757714941799,"y":49.077},{"x":1757714881638,"y":54.274},{"x":1757714821481,"y":41.982},{"x":1757714761334,"y":54.289},{"x":1757714701336,"y":65.303},{"x":1757714641014,"y":64.153},{"x":1757714580872,"y":64.926},{"x":1757714520717,"y":59.476},{"x":1757714460577,"y":52.94},{"x":1757714401046,"y":51.244},{"x":1757714340179,"y":52.658},{"x":1757714282884,"y":45.472},{"x":1757714222716,"y":52.308},{"x":1757714162570,"y":61.787},{"x":1757714102574,"y":76.143},{"x":1757714042259,"y":60.237},{"x":1757713982098,"y":82.898},{"x":1757713921930,"y":77.846},{"x":1757713861721,"y":68.516},{"x":1757713801702,"y":63.402},{"x":1757713741408,"y":85.248},{"x":1757713681240,"y":77.604},{"x":1757713621083,"y":50.821},{"x":1757713560930,"y":57.356},{"x":1757713501128,"y":69.35},{"x":1757713440611,"y":71.475},{"x":1757713380477,"y":54.065},{"x":1757713320366,"y":57.909},{"x":1757713262914,"y":65.558},{"x":1757713202907,"y":71.86},{"x":1757713142606,"y":56.894},{"x":1757713082433,"y":75.328},{"x":1757713022279,"y":65.471},{"x":1757712962128,"y":69.846},{"x":1757712902122,"y":51.972},{"x":1757712841816,"y":54.589},{"x":1757712781657,"y":59.428},{"x":1757712721502,"y":69.561},{"x":1757712661366,"y":52.848},{"x":1757712601427,"y":60.955},{"x":1757712541026,"y":58.906},{"x":1757712480873,"y":75.271},{"x":1757712420721,"y":59.811},{"x":1757712360575,"y":74.862},{"x":1757712300762,"y":51.633},{"x":1757712240289,"y":59.961},{"x":1757712182964,"y":71.808},{"x":1757712122812,"y":58.98},{"x":1757712062640,"y":63.541},{"x":1757712002617,"y":63.234},{"x":1757711942297,"y":73.118},{"x":1757711882148,"y":58.644},{"x":1757711821987,"y":67.694},{"x":1757711761830,"y":59.395},{"x":1757711701826,"y":58.137},{"x":1757711641514,"y":49.145},{"x":1757711581364,"y":81.092},{"x":1757711521211,"y":73.532},{"x":1757711461005,"y":55.406},{"x":1757711401060,"y":68.295},{"x":1757711340649,"y":45.12},{"x":1757711280551,"y":58.487},{"x":1757711220428,"y":51.449},{"x":1757711160251,"y":42.24},{"x":1757711103037,"y":54.025},{"x":1757711042740,"y":61.1},{"x":1757710982591,"y":61.135},{"x":1757710922426,"y":61.273},{"x":1757710862287,"y":62.058},{"x":1757710802512,"y":61.2},{"x":1757710741893,"y":52.065},{"x":1757710681697,"y":73.964},{"x":1757710621542,"y":59.555},{"x":1757710561392,"y":73.299},{"x":1757710501421,"y":71.842},{"x":1757710441092,"y":61.079},{"x":1757710380920,"y":73.252},{"x":1757710320763,"y":57.338},{"x":1757710260614,"y":66.444},{"x":1757710200816,"y":52.376},{"x":1757710140283,"y":75.618},{"x":1757710083012,"y":52.821},{"x":1757710022860,"y":47.86},{"x":1757709962735,"y":79.628},{"x":1757709902712,"y":68.448},{"x":1757709842434,"y":56.757},{"x":1757709782285,"y":62.844},{"x":1757709722130,"y":71.709},{"x":1757709661961,"y":61.817},{"x":1757709601954,"y":57.029},{"x":1757709541610,"y":59.584},{"x":1757709481466,"y":51.917},{"x":1757709421314,"y":81.175},{"x":1757709361164,"y":68.773},{"x":1757709301155,"y":66.296},{"x":1757709240837,"y":53.908},{"x":1757709180683,"y":68.983},{"x":1757709120518,"y":62.857},{"x":1757709060336,"y":65.888},{"x":1757709000827,"y":66.647},{"x":1757708942863,"y":46.241},{"x":1757708882715,"y":71.965},{"x":1757708822557,"y":85.368},{"x":1757708762387,"y":69.178},{"x":1757708702383,"y":64.71},{"x":1757708642086,"y":53.761},{"x":1757708581925,"y":46.274},{"x":1757708521777,"y":77.638},{"x":1757708461627,"y":56.862},{"x":1757708401637,"y":66.203},{"x":1757708341329,"y":102.082},{"x":1757708281173,"y":104.006},{"x":1757708221020,"y":79.809},{"x":1757708160852,"y":74.211},{"x":1757708100959,"y":75.443},{"x":1757708040550,"y":84.476},{"x":1757707980387,"y":60.388},{"x":1757707923042,"y":77.967},{"x":1757707862810,"y":74.482},{"x":1757707802770,"y":78.852},{"x":1757707742467,"y":81.379},{"x":1757707682313,"y":59.323},{"x":1757707622164,"y":56.951},{"x":1757707562016,"y":71.068},{"x":1757707501999,"y":68.606},{"x":1757707441698,"y":76.56},{"x":1757707381538,"y":53.705},{"x":1757707321380,"y":61.434},{"x":1757707261227,"y":79.67},{"x":1757707201433,"y":74.723},{"x":1757707140686,"y":98.528},{"x":1757707080484,"y":89.594},{"x":1757707020394,"y":66.572},{"x":1757706962920,"y":85.841},{"x":1757706902906,"y":103.389},{"x":1757706842622,"y":82.992},{"x":1757706782467,"y":86.358},{"x":1757706722311,"y":84.331},{"x":1757706662169,"y":73.771},{"x":1757706602118,"y":98.673},{"x":1757706541815,"y":108.211},{"x":1757706481657,"y":70.434},{"x":1757706421499,"y":66.228},{"x":1757706361339,"y":75.143},{"x":1757706301356,"y":78.887},{"x":1757706241010,"y":84.13},{"x":1757706180855,"y":67.079},{"x":1757706120715,"y":81.909},{"x":1757706060561,"y":78.3},{"x":1757706000798,"y":64.349},{"x":1757705940324,"y":83.46},{"x":1757705882971,"y":69.574},{"x":1757705822794,"y":81.216},{"x":1757705762646,"y":91.945},{"x":1757705702645,"y":74.474},{"x":1757705642361,"y":81.886},{"x":1757705582193,"y":80.746},{"x":1757705522036,"y":79.35},{"x":1757705461870,"y":71.601},{"x":1757705401887,"y":80.621},{"x":1757705341565,"y":76.237},{"x":1757705281432,"y":71.921},{"x":1757705221273,"y":70.84},{"x":1757705161122,"y":81.339},{"x":1757705101112,"y":68.089},{"x":1757705040809,"y":84.006},{"x":1757704980665,"y":73.947},{"x":1757704920540,"y":71.95},{"x":1757704860395,"y":62.936},{"x":1757704800987,"y":90.052},{"x":1757704742898,"y":86.961},{"x":1757704682744,"y":66.33},{"x":1757704622589,"y":70.908},{"x":1757704562429,"y":62.923},{"x":1757704502390,"y":73.315},{"x":1757704442083,"y":64.847},{"x":1757704381925,"y":68.341},{"x":1757704321726,"y":76.116},{"x":1757704261470,"y":78.262},{"x":1757704201497,"y":104.257},{"x":1757704141159,"y":84.173},{"x":1757704081002,"y":89.998},{"x":1757704020851,"y":78.214},{"x":1757703960679,"y":75.776},{"x":1757703900783,"y":63.11},{"x":1757703840408,"y":71.792},{"x":1757703780212,"y":77.385},{"x":1757703722878,"y":66.281},{"x":1757703662720,"y":80.013},{"x":1757703602839,"y":66.39},{"x":1757703542360,"y":84.253},{"x":1757703482138,"y":93.41},{"x":1757703421977,"y":86.97},{"x":1757703361816,"y":66.426},{"x":1757703301813,"y":75.912},{"x":1757703241503,"y":93.368},{"x":1757703181353,"y":61.126},{"x":1757703121204,"y":77.921},{"x":1757703061023,"y":56.199},{"x":1757703001047,"y":58.643},{"x":1757702940697,"y":69.188},{"x":1757702880513,"y":58.2},{"x":1757702820410,"y":62.081},{"x":1757702760022,"y":53.434},{"x":1757702703025,"y":75.523},{"x":1757702642723,"y":61.556},{"x":1757702582573,"y":59.375},{"x":1757702522423,"y":66.787},{"x":1757702462268,"y":85.558},{"x":1757702402234,"y":70.677},{"x":1757702341927,"y":84.191},{"x":1757702281766,"y":69.133},{"x":1757702221616,"y":65.938},{"x":1757702161470,"y":89.402},{"x":1757702101471,"y":75.173},{"x":1757702041145,"y":92.29},{"x":1757701980969,"y":75.415},{"x":1757701920833,"y":76.558},{"x":1757701860654,"y":84.765},{"x":1757701800870,"y":59.845},{"x":1757701740270,"y":82.921},{"x":1757701682971,"y":75.379},{"x":1757701622785,"y":82.182},{"x":1757701562638,"y":92.811},{"x":1757701502626,"y":55.571},{"x":1757701442287,"y":73.021},{"x":1757701382138,"y":67.925},{"x":1757701321975,"y":59.079},{"x":1757701261813,"y":81.085},{"x":1757701201843,"y":70.244},{"x":1757701141506,"y":61.406},{"x":1757701081349,"y":99.255},{"x":1757701021172,"y":103.791},{"x":1757700960995,"y":73.432},{"x":1757700901109,"y":95.276},{"x":1757700840682,"y":80.047},{"x":1757700780518,"y":74.907},{"x":1757700720501,"y":74.119},{"x":1757700662974,"y":83.771},{"x":1757700602956,"y":82.773},{"x":1757700542658,"y":83.783},{"x":1757700482463,"y":89.542},{"x":1757700422315,"y":87.87},{"x":1757700362166,"y":79.626},{"x":1757700302170,"y":67.757},{"x":1757700241861,"y":87.461},{"x":1757700181712,"y":65.201},{"x":1757700121537,"y":59.963},{"x":1757700061393,"y":59.379},{"x":1757700001669,"y":88.161},{"x":1757699940922,"y":70.908},{"x":1757699880693,"y":72.54},{"x":1757699820551,"y":63.632},{"x":1757699760474,"y":79.551},{"x":1757699700637,"y":77.883},{"x":1757699642987,"y":91.376},{"x":1757699582819,"y":55.064},{"x":1757699522669,"y":62.437},{"x":1757699462523,"y":64.043},{"x":1757699402505,"y":78.831},{"x":1757699342205,"y":94.749},{"x":1757699282052,"y":70.44},{"x":1757699221886,"y":86.858},{"x":1757699161736,"y":68.97},{"x":1757699101735,"y":96.336},{"x":1757699041425,"y":93.344},{"x":1757698981281,"y":92.796},{"x":1757698921127,"y":84.544},{"x":1757698860941,"y":75.625},{"x":1757698801038,"y":69.325},{"x":1757698740554,"y":99.171},{"x":1757698680406,"y":74.297},{"x":1757698620290,"y":76.997},{"x":1757698562932,"y":74.327},{"x":1757698502923,"y":85.605},{"x":1757698442634,"y":90.187},{"x":1757698382485,"y":80.109},{"x":1757698322334,"y":88.458},{"x":1757698262177,"y":69.7},{"x":1757698202174,"y":62.329},{"x":1757698141857,"y":69.571},{"x":1757698081703,"y":92.223},{"x":1757698021552,"y":75.119},{"x":1757697961403,"y":97.794},{"x":1757697901393,"y":82.538},{"x":1757697841072,"y":85.617},{"x":1757697780920,"y":68.217},{"x":1757697720781,"y":64.002},{"x":1757697660640,"y":73.856},{"x":1757697600902,"y":90.371},{"x":1757697540343,"y":64.369},{"x":1757697482927,"y":70.18},{"x":1757697422777,"y":70.582},{"x":1757697362617,"y":63.255},{"x":1757697302598,"y":78.903},{"x":1757697242297,"y":85.543},{"x":1757697182159,"y":102.013},{"x":1757697121961,"y":73.56},{"x":1757697061768,"y":88.076},{"x":1757697001746,"y":83.357},{"x":1757696941438,"y":76.752},{"x":1757696881280,"y":71.906},{"x":1757696821127,"y":95.455},{"x":1757696760970,"y":84.141},{"x":1757696700991,"y":89.21},{"x":1757696640601,"y":70.915},{"x":1757696580567,"y":85.073},{"x":1757696520304,"y":104.14},{"x":1757696463012,"y":100.625},{"x":1757696403036,"y":80.864},{"x":1757696342624,"y":98.224},{"x":1757696282442,"y":81.429},{"x":1757696222269,"y":68.716},{"x":1757696162103,"y":89.534},{"x":1757696102071,"y":76.007},{"x":1757696041752,"y":64.852},{"x":1757695981600,"y":53.014},{"x":1757695921456,"y":66.771},{"x":1757695861286,"y":61.201},{"x":1757695801318,"y":67.214},{"x":1757695740959,"y":81.338},{"x":1757695680815,"y":61.475},{"x":1757695620645,"y":68.263},{"x":1757695560524,"y":72.892},{"x":1757695500988,"y":58.353},{"x":1757695442989,"y":68.808},{"x":1757695382826,"y":58.562},{"x":1757695322671,"y":75.804},{"x":1757695262515,"y":69.288},{"x":1757695202519,"y":79.731},{"x":1757695142214,"y":70.502},{"x":1757695082031,"y":60.284},{"x":1757695021869,"y":64.731},{"x":1757694961717,"y":60.324},{"x":1757694901694,"y":55.47},{"x":1757694841408,"y":57.219},{"x":1757694781257,"y":64.484},{"x":1757694721081,"y":73.498},{"x":1757694660912,"y":63.294},{"x":1757694601142,"y":75.841},{"x":1757694540584,"y":55.359},{"x":1757694480465,"y":83.449},{"x":1757694420399,"y":54.772},{"x":1757694362978,"y":67.97},{"x":1757694303000,"y":58.709},{"x":1757694242662,"y":52.787},{"x":1757694182496,"y":58.328},{"x":1757694122340,"y":71.609},{"x":1757694062172,"y":62.857},{"x":1757694002187,"y":81.323},{"x":1757693941864,"y":74.278},{"x":1757693881698,"y":59.574},{"x":1757693821533,"y":62.488},{"x":1757693761382,"y":64.132},{"x":1757693701397,"y":60.944},{"x":1757693641069,"y":59.102},{"x":1757693580920,"y":54.72},{"x":1757693520745,"y":73.657},{"x":1757693460516,"y":66.965},{"x":1757693400757,"y":86.864},{"x":1757693340164,"y":80.712},{"x":1757693282907,"y":57.365},{"x":1757693222742,"y":53.465},{"x":1757693162577,"y":45.462},{"x":1757693102574,"y":64.856},{"x":1757693042270,"y":47.09},{"x":1757692982079,"y":48.762},{"x":1757692921900,"y":44.237},{"x":1757692861751,"y":51.048},{"x":1757692802026,"y":56.339},{"x":1757692741351,"y":54.293},{"x":1757692681147,"y":49.417},{"x":1757692620981,"y":39.516},{"x":1757692560823,"y":42.702},{"x":1757692500903,"y":66.596},{"x":1757692440519,"y":39.575},{"x":1757692380307,"y":53.735},{"x":1757692320240,"y":63.783},{"x":1757692262872,"y":55.247},{"x":1757692203040,"y":68.697},{"x":1757692142547,"y":59.337},{"x":1757692082397,"y":59.071},{"x":1757692022252,"y":76.243},{"x":1757691962096,"y":50.743},{"x":1757691902120,"y":73.921},{"x":1757691841773,"y":54.471},{"x":1757691781619,"y":50.554},{"x":1757691721457,"y":48.278},{"x":1757691661318,"y":57.669},{"x":1757691601480,"y":42.247},{"x":1757691540972,"y":53.642},{"x":1757691480825,"y":59.038},{"x":1757691420682,"y":53.211},{"x":1757691360583,"y":61.361},{"x":1757691300954,"y":62.294},{"x":1757691240288,"y":73.218},{"x":1757691182904,"y":69.961},{"x":1757691122739,"y":56.134},{"x":1757691062585,"y":60.002},{"x":1757691002640,"y":62.075},{"x":1757690942273,"y":66.988},{"x":1757690882110,"y":57.024},{"x":1757690821949,"y":69.66},{"x":1757690761786,"y":38.08},{"x":1757690701831,"y":50.331},{"x":1757690641476,"y":50.921},{"x":1757690581308,"y":44.218},{"x":1757690521159,"y":47.172},{"x":1757690460989,"y":32.927},{"x":1757690401246,"y":53.992},{"x":1757690340623,"y":33.595},{"x":1757690280488,"y":52.923},{"x":1757690220265,"y":34.549},{"x":1757690162987,"y":58.19},{"x":1757690103044,"y":68.946},{"x":1757690042686,"y":40.021},{"x":1757689982537,"y":62.876},{"x":1757689922381,"y":83.224},{"x":1757689862163,"y":55.858},{"x":1757689802187,"y":46.221},{"x":1757689741811,"y":53.214},{"x":1757689681637,"y":36.178},{"x":1757689621516,"y":60.681},{"x":1757689561333,"y":49.909},{"x":1757689501409,"y":72.69},{"x":1757689441031,"y":47.504},{"x":1757689380880,"y":42.94},{"x":1757689320735,"y":54.561},{"x":1757689260629,"y":50.142},{"x":1757689201011,"y":39.705},{"x":1757689140361,"y":40.934},{"x":1757689082916,"y":36.333},{"x":1757689022755,"y":50.106},{"x":1757688962621,"y":64.956},{"x":1757688902640,"y":70.424},{"x":1757688842303,"y":54.158},{"x":1757688782140,"y":50.594},{"x":1757688721973,"y":50.38},{"x":1757688661814,"y":45.387},{"x":1757688601866,"y":52.983},{"x":1757688541457,"y":54.764},{"x":1757688481290,"y":44.591},{"x":1757688421135,"y":52.198},{"x":1757688360959,"y":59.482},{"x":1757688301371,"y":57.432},{"x":1757688240696,"y":65.661},{"x":1757688180475,"y":67.023},{"x":1757688120321,"y":82.049},{"x":1757688063031,"y":76.928},{"x":1757688003032,"y":79.148},{"x":1757687942684,"y":56.322},{"x":1757687882531,"y":56.728},{"x":1757687822344,"y":57.44},{"x":1757687762175,"y":45.936},{"x":1757687702210,"y":63.15},{"x":1757687641844,"y":80.748},{"x":1757687581685,"y":56.09},{"x":1757687521537,"y":65.276},{"x":1757687461394,"y":40.838},{"x":1757687401526,"y":53.299},{"x":1757687341068,"y":63.09},{"x":1757687280896,"y":35.347},{"x":1757687220734,"y":48.583},{"x":1757687160585,"y":47.035},{"x":1757687100852,"y":33.372},{"x":1757687040274,"y":59.466},{"x":1757686982978,"y":48.009},{"x":1757686922823,"y":55.494},{"x":1757686862662,"y":42.479},{"x":1757686802700,"y":54.763},{"x":1757686742360,"y":29.375},{"x":1757686682210,"y":41.935},{"x":1757686622061,"y":28.542},{"x":1757686561872,"y":31.54},{"x":1757686501903,"y":31.912},{"x":1757686441551,"y":24.685},{"x":1757686381412,"y":35.349},{"x":1757686321221,"y":34.532},{"x":1757686261038,"y":20.194},{"x":1757686201144,"y":30.231},{"x":1757686140583,"y":45.496},{"x":1757686080472,"y":47.293},{"x":1757686020311,"y":52.733},{"x":1757685963020,"y":66.734},{"x":1757685903036,"y":64.693},{"x":1757685842713,"y":60.997},{"x":1757685782537,"y":71.305},{"x":1757685722386,"y":72.972},{"x":1757685662229,"y":79.581},{"x":1757685602650,"y":69.66},{"x":1757685541852,"y":49.208},{"x":1757685481600,"y":67.717},{"x":1757685421439,"y":52.033},{"x":1757685361279,"y":47.694},{"x":1757685301325,"y":60.028},{"x":1757685240943,"y":54.694},{"x":1757685180771,"y":63.594},{"x":1757685120700,"y":63.665},{"x":1757685060467,"y":56.25},{"x":1757685000755,"y":58.365},{"x":1757684942961,"y":54.812},{"x":1757684882812,"y":50.26},{"x":1757684822679,"y":59.318},{"x":1757684762505,"y":63.824},{"x":1757684702592,"y":70.169},{"x":1757684642183,"y":78.243},{"x":1757684582025,"y":56.332},{"x":1757684521852,"y":77.132},{"x":1757684461696,"y":99.901},{"x":1757684401738,"y":62.75},{"x":1757684341361,"y":85.841},{"x":1757684281201,"y":70.827},{"x":1757684221014,"y":86.932},{"x":1757684160861,"y":69.188},{"x":1757684100972,"y":70.483},{"x":1757684040578,"y":68.652},{"x":1757683980386,"y":68.957},{"x":1757683920211,"y":51.196},{"x":1757683862880,"y":75.452},{"x":1757683802956,"y":50.268},{"x":1757683742588,"y":51.473},{"x":1757683682436,"y":49.022},{"x":1757683622272,"y":37.609},{"x":1757683562127,"y":31.652},{"x":1757683502171,"y":57.031},{"x":1757683441805,"y":47.397},{"x":1757683381651,"y":66.27},{"x":1757683321505,"y":38.598},{"x":1757683261352,"y":52.895},{"x":1757683201512,"y":54.108},{"x":1757683141050,"y":55.782},{"x":1757683080888,"y":61.504},{"x":1757683020746,"y":51.389},{"x":1757682960607,"y":64.306},{"x":1757682900922,"y":45.159},{"x":1757682840082,"y":41.157},{"x":1757682782872,"y":57.696},{"x":1757682722684,"y":20.547},{"x":1757682662500,"y":48.626},{"x":1757682602535,"y":52.894},{"x":1757682542178,"y":32.415},{"x":1757682481992,"y":33.974},{"x":1757682421815,"y":53.977},{"x":1757682361662,"y":63.746},{"x":1757682301721,"y":43.281},{"x":1757682241339,"y":55.781},{"x":1757682181192,"y":79.401},{"x":1757682121039,"y":54.531},{"x":1757682060872,"y":46.782},{"x":1757682001795,"y":47.8},{"x":1757681940489,"y":47.767},{"x":1757681880322,"y":29.957},{"x":1757681822936,"y":36.829},{"x":1757681762763,"y":72.86},{"x":1757681702806,"y":80.743},{"x":1757681642458,"y":40.629},{"x":1757681582296,"y":49.018},{"x":1757681522139,"y":39.606},{"x":1757681461977,"y":25.571},{"x":1757681402031,"y":39.225},{"x":1757681341661,"y":33.212},{"x":1757681281509,"y":37.307},{"x":1757681221357,"y":35.707},{"x":1757681161195,"y":35.524},{"x":1757681101445,"y":31.643},{"x":1757681040847,"y":41.114},{"x":1757680980688,"y":43.297},{"x":1757680920547,"y":39.324},{"x":1757680860414,"y":27.408},{"x":1757680800957,"y":31.632},{"x":1757680742919,"y":16.909},{"x":1757680682775,"y":20.627},{"x":1757680622615,"y":35.691},{"x":1757680562462,"y":50.77},{"x":1757680502512,"y":35.122},{"x":1757680442156,"y":50.975},{"x":1757680381986,"y":66.0},{"x":1757680321824,"y":62.949},{"x":1757680261677,"y":56.96},{"x":1757680201759,"y":48.353},{"x":1757680141365,"y":34.835},{"x":1757680081189,"y":30.315},{"x":1757680021033,"y":39.641},{"x":1757679960829,"y":33.368},{"x":1757679900956,"y":38.855},{"x":1757679840596,"y":84.34},{"x":1757679780354,"y":74.33},{"x":1757679720226,"y":71.591},{"x":1757679662902,"y":72.955},{"x":1757679602942,"y":63.282},{"x":1757679542568,"y":76.164},{"x":1757679482419,"y":53.082},{"x":1757679422270,"y":51.455},{"x":1757679362097,"y":51.408},{"x":1757679302330,"y":14.28},{"x":1757679241969,"y":23.866},{"x":1757679181656,"y":29.457},{"x":1757679121648,"y":37.041},{"x":1757679061381,"y":56.658},{"x":1757679001376,"y":50.802},{"x":1757678940905,"y":64.177},{"x":1757678880762,"y":55.722},{"x":1757678820603,"y":55.414},{"x":1757678760469,"y":69.665},{"x":1757678700914,"y":53.647},{"x":1757678642906,"y":71.531},{"x":1757678582766,"y":64.331},{"x":1757678522593,"y":84.611},{"x":1757678462435,"y":64.154},{"x":1757678402651,"y":55.149},{"x":1757678342063,"y":61.005},{"x":1757678281854,"y":57.769},{"x":1757678221672,"y":38.43},{"x":1757678161523,"y":72.108},{"x":1757678101568,"y":35.89},{"x":1757678041215,"y":45.928},{"x":1757677981054,"y":48.896},{"x":1757677920881,"y":47.864},{"x":1757677860723,"y":55.953},{"x":1757677800955,"y":54.521},{"x":1757677740452,"y":46.566},{"x":1757677680409,"y":53.859},{"x":1757677622953,"y":62.011},{"x":1757677562816,"y":72.949},{"x":1757677502908,"y":28.461},{"x":1757677442491,"y":41.223},{"x":1757677382339,"y":51.687},{"x":1757677322192,"y":33.931},{"x":1757677262016,"y":28.302},{"x":1757677202080,"y":47.293},{"x":1757677141690,"y":24.968},{"x":1757677081534,"y":27.833},{"x":1757677021378,"y":16.854},{"x":1757676961227,"y":32.242},{"x":1757676901278,"y":47.256},{"x":1757676840900,"y":43.984},{"x":1757676780764,"y":69.559},{"x":1757676720653,"y":69.01},{"x":1757676660477,"y":47.854},{"x":1757676600863,"y":62.039},{"x":1757676540183,"y":83.61},{"x":1757676482883,"y":83.728},{"x":1757676422725,"y":108.145},{"x":1757676362573,"y":72.131},{"x":1757676302642,"y":67.463},{"x":1757676242260,"y":46.317},{"x":1757676182099,"y":56.188},{"x":1757676121925,"y":51.456},{"x":1757676061762,"y":41.959},{"x":1757676001807,"y":57.797},{"x":1757675941468,"y":22.16},{"x":1757675881284,"y":63.299},{"x":1757675821115,"y":49.769},{"x":1757675760943,"y":26.353},{"x":1757675701146,"y":32.301},{"x":1757675640614,"y":43.672},{"x":1757675580482,"y":38.225},{"x":1757675520340,"y":23.19},{"x":1757675463000,"y":19.889},{"x":1757675402981,"y":22.339},{"x":1757675342627,"y":24.896},{"x":1757675282478,"y":31.383},{"x":1757675222330,"y":47.175},{"x":1757675162179,"y":36.084},{"x":1757675102221,"y":44.215},{"x":1757675041847,"y":39.468},{"x":1757674981694,"y":38.112},{"x":1757674921525,"y":30.281},{"x":1757674861375,"y":40.086},{"x":1757674802267,"y":33.748},{"x":1757674740941,"y":37.229},{"x":1757674680728,"y":27.355},{"x":1757674620581,"y":44.021},{"x":1757674560551,"y":33.673},{"x":1757674500785,"y":53.973},{"x":1757674442964,"y":54.939},{"x":1757674382785,"y":40.792},{"x":1757674322634,"y":52.648},{"x":1757674262484,"y":62.615},{"x":1757674202536,"y":62.847},{"x":1757674142179,"y":46.962},{"x":1757674082026,"y":57.804},{"x":1757674021866,"y":54.141},{"x":1757673961711,"y":40.814},{"x":1757673901759,"y":33.953},{"x":1757673841387,"y":30.704},{"x":1757673781237,"y":52.859},{"x":1757673721065,"y":45.872},{"x":1757673660911,"y":43.53},{"x":1757673601348,"y":44.694},{"x":1757673540612,"y":37.002},{"x":1757673480482,"y":23.309},{"x":1757673420370,"y":27.181},{"x":1757673362982,"y":27.554},{"x":1757673303041,"y":33.16},{"x":1757673242688,"y":62.086},{"x":1757673182533,"y":61.399},{"x":1757673122377,"y":83.242},{"x":1757673062970,"y":80.935},{"x":1757673002896,"y":67.106},{"x":1757672942545,"y":93.79},{"x":1757672882366,"y":88.989},{"x":1757672822206,"y":65.635},{"x":1757672762063,"y":70.56},{"x":1757672702095,"y":81.448},{"x":1757672641715,"y":75.817},{"x":1757672581537,"y":61.951},{"x":1757672521401,"y":78.243},{"x":1757672461246,"y":83.46},{"x":1757672401396,"y":62.568},{"x":1757672340915,"y":72.668},{"x":1757672280762,"y":53.269},{"x":1757672220631,"y":35.153},{"x":1757672160524,"y":36.241},{"x":1757672101072,"y":39.77},{"x":1757672043027,"y":58.162},{"x":1757671982867,"y":73.724},{"x":1757671922699,"y":85.106},{"x":1757671862497,"y":74.476},{"x":1757671802521,"y":78.137},{"x":1757671742146,"y":69.997},{"x":1757671682497,"y":82.587},{"x":1757671622325,"y":96.348},{"x":1757671562160,"y":89.928},{"x":1757671502198,"y":64.234},{"x":1757671441821,"y":62.875},{"x":1757671381676,"y":61.827},{"x":1757671321550,"y":71.451},{"x":1757671261398,"y":83.571},{"x":1757671201514,"y":66.823},{"x":1757671140772,"y":67.008},{"x":1757671080574,"y":71.173},{"x":1757671020556,"y":77.831},{"x":1757670960293,"y":83.306},{"x":1757670903232,"y":102.928},{"x":1757670842811,"y":93.065},{"x":1757670782654,"y":86.24},{"x":1757670722493,"y":94.711},{"x":1757670662332,"y":98.238},{"x":1757670602397,"y":70.899},{"x":1757670542029,"y":78.609},{"x":1757670481886,"y":80.72},{"x":1757670421696,"y":89.529},{"x":1757670361553,"y":103.707},{"x":1757670301673,"y":88.827},{"x":1757670241194,"y":98.974},{"x":1757670181037,"y":78.275},{"x":1757670120861,"y":107.852},{"x":1757670060714,"y":78.658},{"x":1757670001133,"y":75.821},{"x":1757669940386,"y":61.451},{"x":1757669883037,"y":73.231},{"x":1757669822861,"y":80.797},{"x":1757669760909,"y":61.129},{"x":1757669701073,"y":86.334},{"x":1757669640581,"y":73.465},{"x":1757669580482,"y":77.559},{"x":1757669520236,"y":67.628},{"x":1757669463036,"y":63.703},{"x":1757669403066,"y":59.829},{"x":1757669342698,"y":63.782},{"x":1757669282513,"y":69.322},{"x":1757669222352,"y":63.373},{"x":1757669162203,"y":71.185},{"x":1757669102267,"y":59.124},{"x":1757669041858,"y":70.435},{"x":1757668981682,"y":58.521},{"x":1757668921527,"y":49.42},{"x":1757668861371,"y":26.543},{"x":1757668801530,"y":31.799},{"x":1757668741068,"y":28.813},{"x":1757668680914,"y":36.672},{"x":1757668620779,"y":39.253},{"x":1757668560606,"y":33.864},{"x":1757668501060,"y":41.469},{"x":1757668440251,"y":50.122},{"x":1757668382888,"y":49.053},{"x":1757668322733,"y":32.62},{"x":1757668262501,"y":46.258},{"x":1757668202555,"y":47.842},{"x":1757668142164,"y":63.617},{"x":1757668082002,"y":67.311},{"x":1757668021822,"y":59.332},{"x":1757667961670,"y":55.563},{"x":1757667901758,"y":65.166},{"x":1757667841349,"y":77.948},{"x":1757667781201,"y":46.898},{"x":1757667721059,"y":55.028},{"x":1757667660866,"y":49.127},{"x":1757667602031,"y":54.39},{"x":1757667540345,"y":29.182},{"x":1757667480172,"y":33.377},{"x":1757667422900,"y":44.565},{"x":1757667362749,"y":29.786},{"x":1757667302888,"y":50.776},{"x":1757667242477,"y":85.04},{"x":1757667182295,"y":54.57},{"x":1757667122112,"y":67.581},{"x":1757667061956,"y":57.86},{"x":1757667002157,"y":51.051},{"x":1757666941646,"y":46.547},{"x":1757666881507,"y":48.483},{"x":1757666821349,"y":45.689},{"x":1757666761199,"y":54.653},{"x":1757666701377,"y":64.743},{"x":1757666640829,"y":60.172},{"x":1757666580682,"y":59.169},{"x":1757666520517,"y":78.214},{"x":1757666460479,"y":67.218},{"x":1757666403321,"y":78.384},{"x":1757666342812,"y":69.632},{"x":1757666282673,"y":48.49},{"x":1757666222509,"y":44.227},{"x":1757666162350,"y":40.473},{"x":1757666102567,"y":57.249},{"x":1757666042037,"y":46.426},{"x":1757665981862,"y":50.166},{"x":1757665921712,"y":52.062},{"x":1757665861546,"y":49.093},{"x":1757665801839,"y":43.963},{"x":1757665741234,"y":31.237},{"x":1757665681078,"y":39.31},{"x":1757665620907,"y":39.488},{"x":1757665560758,"y":42.375},{"x":1757665501080,"y":37.917},{"x":1757665440506,"y":30.196},{"x":1757665380355,"y":52.707},{"x":1757665322960,"y":37.651},{"x":1757665262812,"y":44.517},{"x":1757665203029,"y":46.528},{"x":1757665142504,"y":42.098},{"x":1757665082344,"y":47.313},{"x":1757665022192,"y":45.061},{"x":1757664962013,"y":58.055},{"x":1757664902255,"y":47.736},{"x":1757664841682,"y":55.944},{"x":1757664781544,"y":65.214},{"x":1757664721409,"y":66.044},{"x":1757664661172,"y":46.702},{"x":1757664601363,"y":36.37},{"x":1757664540722,"y":47.859},{"x":1757664480633,"y":33.467},{"x":1757664420422,"y":34.279},{"x":1757664360318,"y":54.508},{"x":1757664303318,"y":46.249},{"x":1757664242769,"y":49.929},{"x":1757664182610,"y":59.237},{"x":1757664122464,"y":62.146},{"x":1757664062251,"y":70.257},{"x":1757664002870,"y":64.445},{"x":1757663941869,"y":36.443},{"x":1757663881647,"y":42.373},{"x":1757663821492,"y":38.145},{"x":1757663761343,"y":47.054},{"x":1757663701584,"y":42.641},{"x":1757663640945,"y":45.397},{"x":1757663580797,"y":56.352},{"x":1757663520688,"y":43.815},{"x":1757663460496,"y":50.971},{"x":1757663401102,"y":42.832},{"x":1757663342987,"y":46.53},{"x":1757663282706,"y":48.823},{"x":1757663222555,"y":45.126},{"x":1757663162945,"y":48.657},{"x":1757663101661,"y":39.569},{"x":1757663041503,"y":41.757},{"x":1757662983025,"y":46.674},{"x":1757662922618,"y":44.581},{"x":1757662860496,"y":64.827},{"x":1757662800360,"y":50.381},{"x":1757662742933,"y":54.46},{"x":1757662682778,"y":44.753},{"x":1757662622595,"y":49.724},{"x":1757662562446,"y":50.23},{"x":1757662502300,"y":43.972},{"x":1757662442153,"y":47.628},{"x":1757662381962,"y":49.378},{"x":1757662321804,"y":44.88},{"x":1757662261650,"y":49.918},{"x":1757662201467,"y":46.992},{"x":1757662142447,"y":55.439},{"x":1757662082285,"y":64.765},{"x":1757662022146,"y":58.131},{"x":1757661961964,"y":81.873},{"x":1757661901801,"y":79.944},{"x":1757661841651,"y":68.376},{"x":1757661782659,"y":70.643},{"x":1757661722431,"y":74.698},{"x":1757661662286,"y":57.013},{"x":1757661601357,"y":49.543},{"x":1757661542142,"y":60.271},{"x":1757661481974,"y":60.403},{"x":1757661420597,"y":76.062},{"x":1757661360876,"y":60.359},{"x":1757661300823,"y":60.321},{"x":1757661240548,"y":60.451},{"x":1757661180448,"y":56.859},{"x":1757661120261,"y":44.842},{"x":1757661062953,"y":34.643},{"x":1757661002747,"y":39.472},{"x":1757660942575,"y":46.131},{"x":1757660882402,"y":58.7},{"x":1757660822254,"y":45.394},{"x":1757660762090,"y":44.538},{"x":1757660701928,"y":48.573},{"x":1757660641781,"y":51.348},{"x":1757660581633,"y":49.136},{"x":1757660521466,"y":45.645},{"x":1757660461352,"y":47.31},{"x":1757660401275,"y":47.775},{"x":1757660340850,"y":57.245},{"x":1757660280667,"y":49.294},{"x":1757660220546,"y":54.004},{"x":1757660160438,"y":68.183},{"x":1757660100236,"y":60.415},{"x":1757660042916,"y":82.553},{"x":1757659982755,"y":84.493},{"x":1757659922595,"y":85.455},{"x":1757659862436,"y":68.767},{"x":1757659802293,"y":78.438},{"x":1757659742128,"y":68.882},{"x":1757659681964,"y":70.018},{"x":1757659621792,"y":76.259},{"x":1757659561645,"y":64.458},{"x":1757659501493,"y":65.034},{"x":1757659441339,"y":73.37},{"x":1757659381186,"y":70.3},{"x":1757659321026,"y":49.95},{"x":1757659260851,"y":76.933},{"x":1757659200724,"y":54.302},{"x":1757659140498,"y":66.822},{"x":1757659080338,"y":59.755},{"x":1757659020286,"y":63.693},{"x":1757658962899,"y":62.593},{"x":1757658902736,"y":58.185},{"x":1757658842587,"y":77.343},{"x":1757658782444,"y":72.433},{"x":1757658722274,"y":80.978},{"x":1757658662105,"y":84.014},{"x":1757658601923,"y":77.943},{"x":1757658541764,"y":92.383},{"x":1757658481611,"y":90.78},{"x":1757658421455,"y":99.882},{"x":1757658361302,"y":98.429},{"x":1757658301130,"y":101.752},{"x":1757658240952,"y":102.42},{"x":1757658180790,"y":101.539},{"x":1757658120646,"y":69.163},{"x":1757658060499,"y":91.112},{"x":1757658000372,"y":82.953},{"x":1757657940243,"y":91.73},{"x":1757657882917,"y":105.199},{"x":1757657822706,"y":121.053},{"x":1757657762529,"y":100.83},{"x":1757657702374,"y":85.631},{"x":1757657642219,"y":84.734},{"x":1757657582050,"y":81.621},{"x":1757657521877,"y":100.851},{"x":1757657461637,"y":97.794},{"x":1757657401454,"y":101.69},{"x":1757657341302,"y":93.226},{"x":1757657281152,"y":107.148},{"x":1757657220990,"y":99.345},{"x":1757657160809,"y":122.138},{"x":1757657100683,"y":73.803},{"x":1757657040506,"y":63.358},{"x":1757656980366,"y":79.24},{"x":1757656922944,"y":71.971},{"x":1757656862778,"y":70.954},{"x":1757656802710,"y":73.625},{"x":1757656742388,"y":72.358},{"x":1757656682157,"y":57.573},{"x":1757656621993,"y":48.315},{"x":1757656561831,"y":48.153},{"x":1757656501672,"y":63.307},{"x":1757656441508,"y":61.226},{"x":1757656381354,"y":62.139},{"x":1757656321194,"y":61.634},{"x":1757656261038,"y":62.431},{"x":1757656200897,"y":48.424},{"x":1757656140741,"y":49.717},{"x":1757656080611,"y":56.457},{"x":1757656020447,"y":53.29},{"x":1757655960249,"y":53.796},{"x":1757655902976,"y":62.841},{"x":1757655842821,"y":64.135},{"x":1757655782674,"y":65.067},{"x":1757655722525,"y":65.417},{"x":1757655662318,"y":59.942},{"x":1757655602165,"y":52.039},{"x":1757655542011,"y":56.717},{"x":1757655481842,"y":53.328},{"x":1757655421738,"y":55.302},{"x":1757655361469,"y":58.386},{"x":1757655301297,"y":54.668},{"x":1757655241106,"y":58.94},{"x":1757655180931,"y":62.827},{"x":1757655120793,"y":57.406},{"x":1757655060727,"y":62.225},{"x":1757655000403,"y":63.82},{"x":1757654940030,"y":59.865},{"x":1757654882832,"y":54.463},{"x":1757654822680,"y":50.778},{"x":1757654762529,"y":55.111},{"x":1757654702368,"y":54.634},{"x":1757654642203,"y":56.664},{"x":1757654582047,"y":53.655},{"x":1757654521797,"y":67.767},{"x":1757654461622,"y":64.354},{"x":1757654401487,"y":63.734},{"x":1757654341305,"y":71.51},{"x":1757654281159,"y":64.861},{"x":1757654220984,"y":56.737},{"x":1757654160830,"y":49.609},{"x":1757654100717,"y":53.177},{"x":1757654040511,"y":53.79},{"x":1757653980391,"y":55.249},{"x":1757653920385,"y":56.559},{"x":1757653862826,"y":56.611},{"x":1757653802678,"y":51.826},{"x":1757653742503,"y":54.117},{"x":1757653682348,"y":49.81},{"x":1757653622183,"y":48.67},{"x":1757653562046,"y":53.956},{"x":1757653501846,"y":56.476},{"x":1757653441704,"y":51.447},{"x":1757653381550,"y":48.073},{"x":1757653321381,"y":51.127},{"x":1757653261238,"y":53.877},{"x":1757653201273,"y":57.074},{"x":1757653140871,"y":57.155},{"x":1757653080692,"y":62.993},{"x":1757653020568,"y":55.813},{"x":1757652960432,"y":49.748},{"x":1757652900319,"y":64.414},{"x":1757652842898,"y":66.866},{"x":1757652782742,"y":61.713},{"x":1757652722560,"y":55.251},{"x":1757652662408,"y":43.285},{"x":1757652602269,"y":40.972},{"x":1757652542119,"y":36.94},{"x":1757652481960,"y":41.441},{"x":1757652421819,"y":42.909},{"x":1757652361657,"y":42.986},{"x":1757652301525,"y":41.682},{"x":1757652241335,"y":38.476},{"x":1757652181196,"y":41.469},{"x":1757652121006,"y":42.15},{"x":1757652060853,"y":42.781},{"x":1757652000720,"y":45.986},{"x":1757651940425,"y":39.22},{"x":1757651880347,"y":47.774},{"x":1757651822958,"y":42.825},{"x":1757651762806,"y":40.972},{"x":1757651702637,"y":42.933},{"x":1757651642488,"y":43.968},{"x":1757651582319,"y":50.49},{"x":1757651522174,"y":52.071},{"x":1757651462004,"y":54.792},{"x":1757651401841,"y":53.763},{"x":1757651341680,"y":50.216},{"x":1757651281529,"y":46.062},{"x":1757651221384,"y":47.42},{"x":1757651161195,"y":46.941},{"x":1757651101049,"y":41.686},{"x":1757651040864,"y":41.72},{"x":1757650980709,"y":47.916},{"x":1757650920566,"y":41.957},{"x":1757650860423,"y":48.092},{"x":1757650800045,"y":55.094},{"x":1757650742874,"y":66.824},{"x":1757650682713,"y":61.209},{"x":1757650622560,"y":65.984},{"x":1757650562401,"y":71.829},{"x":1757650502257,"y":51.965},{"x":1757650442103,"y":31.787},{"x":1757650381921,"y":31.929},{"x":1757650321676,"y":34.199},{"x":1757650261518,"y":30.506},{"x":1757650201378,"y":30.785},{"x":1757650141220,"y":29.524},{"x":1757650081065,"y":35.113},{"x":1757650020907,"y":28.934},{"x":1757649960753,"y":29.5},{"x":1757649900646,"y":34.597},{"x":1757649840491,"y":36.795},{"x":1757649780454,"y":37.112},{"x":1757649723022,"y":32.074},{"x":1757649662816,"y":33.945},{"x":1757649602601,"y":33.714},{"x":1757649542310,"y":36.57},{"x":1757649482093,"y":32.008},{"x":1757649421916,"y":32.818},{"x":1757649361760,"y":27.137},{"x":1757649301594,"y":34.983},{"x":1757649241428,"y":30.916},{"x":1757649181275,"y":35.432},{"x":1757649121116,"y":34.214},{"x":1757649060970,"y":32.175},{"x":1757649000800,"y":36.019},{"x":1757648940606,"y":32.084},{"x":1757648880520,"y":29.254},{"x":1757648820290,"y":28.305},{"x":1757648762957,"y":31.2},{"x":1757648702808,"y":31.617},{"x":1757648642659,"y":27.697},{"x":1757648582510,"y":30.722},{"x":1757648522358,"y":31.589},{"x":1757648462200,"y":37.409},{"x":1757648402051,"y":41.755},{"x":1757648341900,"y":38.662},{"x":1757648281733,"y":34.711},{"x":1757648221585,"y":30.166},{"x":1757648161429,"y":31.638},{"x":1757648101283,"y":31.964},{"x":1757648041127,"y":37.815},{"x":1757647980964,"y":34.102},{"x":1757647920823,"y":33.956},{"x":1757647860678,"y":33.965},{"x":1757647800602,"y":36.647},{"x":1757647740375,"y":36.683},{"x":1757647680164,"y":47.715},{"x":1757647622894,"y":36.918},{"x":1757647562747,"y":31.308},{"x":1757647502591,"y":32.703},{"x":1757647442436,"y":29.788},{"x":1757647382287,"y":31.18},{"x":1757647322120,"y":39.265},{"x":1757647261924,"y":36.114},{"x":1757647201776,"y":36.604},{"x":1757647141629,"y":43.458},{"x":1757647081472,"y":34.226},{"x":1757647021327,"y":32.724},{"x":1757646961148,"y":34.324},{"x":1757646900990,"y":33.904},{"x":1757646840843,"y":43.711},{"x":1757646780634,"y":38.282},{"x":1757646720492,"y":36.471},{"x":1757646660317,"y":39.556},{"x":1757646602949,"y":37.594},{"x":1757646542793,"y":35.541},{"x":1757646481939,"y":31.965},{"x":1757646421765,"y":42.221},{"x":1757646361628,"y":39.812},{"x":1757646301445,"y":49.924},{"x":1757646241274,"y":55.66},{"x":1757646181072,"y":54.242},{"x":1757646120885,"y":41.79},{"x":1757646060694,"y":39.316},{"x":1757646001707,"y":32.196},{"x":1757645941314,"y":33.702},{"x":1757645881098,"y":31.584},{"x":1757645820935,"y":30.649},{"x":1757645760766,"y":28.806},{"x":1757645700648,"y":26.58},{"x":1757645640462,"y":35.064},{"x":1757645580356,"y":32.227},{"x":1757645523029,"y":31.405},{"x":1757645462870,"y":30.66},{"x":1757645402725,"y":31.452},{"x":1757645342562,"y":31.185},{"x":1757645282416,"y":28.336},{"x":1757645222270,"y":39.204},{"x":1757645162124,"y":38.865},{"x":1757645101970,"y":37.607},{"x":1757645041814,"y":35.305},{"x":1757644981658,"y":37.901},{"x":1757644921502,"y":41.765},{"x":1757644861351,"y":37.253},{"x":1757644801197,"y":41.182},{"x":1757644741008,"y":43.691},{"x":1757644680842,"y":38.921},{"x":1757644620710,"y":35.432},{"x":1757644560575,"y":38.193},{"x":1757644500358,"y":37.589},{"x":1757644440225,"y":37.459},{"x":1757644382865,"y":36.185},{"x":1757644322718,"y":36.089},{"x":1757644262564,"y":33.896},{"x":1757644202426,"y":36.361},{"x":1757644142259,"y":40.968},{"x":1757644082109,"y":55.247},{"x":1757644021942,"y":52.487},{"x":1757643961761,"y":57.079},{"x":1757643901591,"y":48.733},{"x":1757643841431,"y":47.531},{"x":1757643781287,"y":46.427},{"x":1757643721138,"y":41.719},{"x":1757643660971,"y":45.131},{"x":1757643600923,"y":42.184},{"x":1757643540566,"y":37.746},{"x":1757643480444,"y":41.492},{"x":1757643420204,"y":37.338},{"x":1757643362902,"y":43.765},{"x":1757643302747,"y":40.248},{"x":1757643242596,"y":39.297},{"x":1757643182436,"y":42.547},{"x":1757643122267,"y":36.228},{"x":1757643062043,"y":36.739},{"x":1757643001850,"y":36.629},{"x":1757642941692,"y":38.558},{"x":1757642881541,"y":36.874},{"x":1757642821393,"y":51.381},{"x":1757642761213,"y":49.309},{"x":1757642701047,"y":45.601},{"x":1757642640880,"y":44.23},{"x":1757642580718,"y":51.147},{"x":1757642520576,"y":39.447},{"x":1757642460424,"y":40.529},{"x":1757642400423,"y":39.374},{"x":1757642343001,"y":40.967},{"x":1757642282770,"y":38.886},{"x":1757642222621,"y":42.999},{"x":1757642162473,"y":39.371},{"x":1757642102320,"y":33.599},{"x":1757642042159,"y":31.644},{"x":1757641981988,"y":31.728},{"x":1757641921851,"y":41.075},{"x":1757641861669,"y":46.292},{"x":1757641801508,"y":37.372},{"x":1757641741347,"y":38.12},{"x":1757641681205,"y":37.612},{"x":1757641621052,"y":28.564},{"x":1757641560897,"y":31.349},{"x":1757641500819,"y":28.276},{"x":1757641440588,"y":29.435},{"x":1757641380387,"y":28.787},{"x":1757641320038,"y":34.48},{"x":1757641262865,"y":35.53},{"x":1757641202712,"y":32.795},{"x":1757641142549,"y":35.407},{"x":1757641082403,"y":36.203},{"x":1757641022251,"y":30.245},{"x":1757640962100,"y":31.767},{"x":1757640901926,"y":33.661},{"x":1757640841767,"y":30.176},{"x":1757640781610,"y":33.585},{"x":1757640721461,"y":32.384},{"x":1757640661308,"y":45.193},{"x":1757640601165,"y":42.598},{"x":1757640540991,"y":43.393},{"x":1757640480850,"y":48.234},{"x":1757640420692,"y":48.15},{"x":1757640360559,"y":34.815},{"x":1757640300464,"y":35.947},{"x":1757640240306,"y":35.315},{"x":1757640182947,"y":33.624},{"x":1757640122792,"y":32.463},{"x":1757640062649,"y":39.262},{"x":1757640002492,"y":37.016},{"x":1757639942338,"y":34.264},{"x":1757639882192,"y":36.037},{"x":1757639822049,"y":36.226},{"x":1757639761864,"y":35.83},{"x":1757639701710,"y":37.166},{"x":1757639641552,"y":37.069},{"x":1757639581370,"y":32.622},{"x":1757639521173,"y":30.483},{"x":1757639460962,"y":39.453},{"x":1757639400795,"y":42.146},{"x":1757639340616,"y":42.292},{"x":1757639280490,"y":42.706},{"x":1757639220325,"y":40.537},{"x":1757639163028,"y":43.771},{"x":1757639102832,"y":42.829},{"x":1757639042680,"y":43.466},{"x":1757638982522,"y":46.093},{"x":1757638922371,"y":32.592},{"x":1757638862231,"y":33.856},{"x":1757638802218,"y":36.276},{"x":1757638741852,"y":30.384},{"x":1757638681608,"y":32.785},{"x":1757638621490,"y":29.828},{"x":1757638561307,"y":35.873},{"x":1757638501120,"y":39.047},{"x":1757638440957,"y":44.095},{"x":1757638380802,"y":36.43},{"x":1757638320655,"y":35.172},{"x":1757638260486,"y":36.906},{"x":1757638200340,"y":39.717},{"x":1757638143035,"y":33.822},{"x":1757638082832,"y":35.379},{"x":1757638022688,"y":31.687},{"x":1757637962540,"y":33.232},{"x":1757637902390,"y":36.738},{"x":1757637842236,"y":32.735},{"x":1757637782082,"y":33.901},{"x":1757637721915,"y":36.688},{"x":1757637661761,"y":36.274},{"x":1757637601615,"y":37.655},{"x":1757637541460,"y":41.036},{"x":1757637481293,"y":40.7},{"x":1757637421135,"y":38.884},{"x":1757637360923,"y":39.772},{"x":1757637300794,"y":39.007},{"x":1757637240620,"y":30.283},{"x":1757637180481,"y":28.799},{"x":1757637120378,"y":28.091},{"x":1757637062994,"y":40.93},{"x":1757637002843,"y":47.323},{"x":1757636942669,"y":43.384},{"x":1757636882527,"y":42.362},{"x":1757636822365,"y":42.983},{"x":1757636762200,"y":27.393},{"x":1757636702026,"y":36.599},{"x":1757636641865,"y":31.3},{"x":1757636581708,"y":34.02},{"x":1757636521558,"y":27.748},{"x":1757636461399,"y":30.478},{"x":1757636401244,"y":31.193},{"x":1757636341080,"y":30.863},{"x":1757636280914,"y":34.419},{"x":1757636220769,"y":40.441},{"x":1757636160625,"y":36.228},{"x":1757636100524,"y":38.68},{"x":1757636040244,"y":38.994},{"x":1757635982963,"y":31.162},{"x":1757635922782,"y":31.354},{"x":1757635862581,"y":32.125},{"x":1757635802402,"y":35.726},{"x":1757635742195,"y":31.529},{"x":1757635682042,"y":34.77},{"x":1757635621883,"y":43.941},{"x":1757635561737,"y":46.175},{"x":1757635501598,"y":47.039},{"x":1757635441444,"y":51.542},{"x":1757635381289,"y":44.314},{"x":1757635321130,"y":39.628},{"x":1757635260967,"y":41.502},{"x":1757635200873,"y":39.008},{"x":1757635140598,"y":38.005},{"x":1757635080412,"y":41.873},{"x":1757635020248,"y":32.411},{"x":1757634962922,"y":35.673},{"x":1757634902787,"y":33.491},{"x":1757634842582,"y":35.044},{"x":1757634782415,"y":34.655},{"x":1757634722254,"y":34.391},{"x":1757634662098,"y":33.635},{"x":1757634601927,"y":35.894},{"x":1757634541751,"y":30.915},{"x":1757634481602,"y":28.714},{"x":1757634421441,"y":30.814},{"x":1757634361279,"y":34.62},{"x":1757634301149,"y":35.536},{"x":1757634240956,"y":43.437},{"x":1757634180804,"y":46.112},{"x":1757634120635,"y":43.359},{"x":1757634060489,"y":53.138},{"x":1757634000334,"y":49.661},{"x":1757633943019,"y":50.991},{"x":1757633882857,"y":37.654},{"x":1757633822743,"y":44.133},{"x":1757633762559,"y":43.387},{"x":1757633702401,"y":34.753},{"x":1757633642264,"y":37.615},{"x":1757633582134,"y":37.03},{"x":1757633521933,"y":34.33},{"x":1757633461769,"y":39.171},{"x":1757633401623,"y":37.741},{"x":1757633341459,"y":35.466},{"x":1757633281238,"y":35.76},{"x":1757633221076,"y":40.881},{"x":1757633160911,"y":42.665},{"x":1757633100801,"y":37.801},{"x":1757633040543,"y":42.232},{"x":1757632980411,"y":34.239},{"x":1757632923018,"y":36.773},{"x":1757632862850,"y":42.159},{"x":1757632802705,"y":38.98},{"x":1757632742562,"y":34.489},{"x":1757632682403,"y":31.879},{"x":1757632622233,"y":37.877},{"x":1757632562075,"y":46.112},{"x":1757632501892,"y":41.472},{"x":1757632441736,"y":44.479},{"x":1757632381593,"y":40.864},{"x":1757632321438,"y":43.567},{"x":1757632261222,"y":58.41},{"x":1757632201044,"y":52.305},{"x":1757632140838,"y":51.115},{"x":1757632080674,"y":50.375},{"x":1757632020470,"y":48.189},{"x":1757631960323,"y":38.902},{"x":1757631902928,"y":37.22},{"x":1757631842777,"y":51.901},{"x":1757631782608,"y":54.214},{"x":1757631722451,"y":54.577},{"x":1757631662296,"y":58.228},{"x":1757631602151,"y":47.588},{"x":1757631541975,"y":37.791},{"x":1757631481758,"y":37.889},{"x":1757631421594,"y":50.677},{"x":1757631361446,"y":42.391},{"x":1757631301294,"y":41.97},{"x":1757631241159,"y":38.899},{"x":1757631180960,"y":49.683},{"x":1757631120835,"y":52.885},{"x":1757631060650,"y":44.011},{"x":1757631000524,"y":45.797},{"x":1757630940357,"y":42.623},{"x":1757630882972,"y":42.117},{"x":1757630822788,"y":38.639},{"x":1757630762646,"y":42.295},{"x":1757630702495,"y":42.855},{"x":1757630642329,"y":44.841},{"x":1757630582176,"y":47.201},{"x":1757630522010,"y":45.413},{"x":1757630461834,"y":43.025},{"x":1757630401687,"y":39.725},{"x":1757630341532,"y":42.405},{"x":1757630281380,"y":43.56},{"x":1757630221217,"y":41.182},{"x":1757630161028,"y":43.713},{"x":1757630100887,"y":54.5},{"x":1757630040724,"y":72.912},{"x":1757629980574,"y":53.217},{"x":1757629920514,"y":62.778},{"x":1757629860229,"y":65.219},{"x":1757629802959,"y":55.346},{"x":1757629742802,"y":57.226},{"x":1757629682670,"y":53.664},{"x":1757629622493,"y":64.344},{"x":1757629562327,"y":63.995},{"x":1757629502175,"y":52.474},{"x":1757629442020,"y":48.224},{"x":1757629381864,"y":45.593},{"x":1757629321725,"y":48.272},{"x":1757629261545,"y":43.844},{"x":1757629201382,"y":42.127},{"x":1757629141224,"y":45.092},{"x":1757629081079,"y":40.768},{"x":1757629020896,"y":44.885},{"x":1757628960778,"y":42.484},{"x":1757628900674,"y":47.813},{"x":1757628840465,"y":50.984},{"x":1757628780229,"y":58.591},{"x":1757628722882,"y":68.512},{"x":1757628662680,"y":80.721},{"x":1757628602463,"y":67.266},{"x":1757628542284,"y":59.245},{"x":1757628482117,"y":64.867},{"x":1757628421967,"y":39.212},{"x":1757628361767,"y":46.205},{"x":1757628301597,"y":44.171},{"x":1757628241445,"y":47.918},{"x":1757628181302,"y":57.799},{"x":1757628121137,"y":50.863},{"x":1757628060965,"y":57.035},{"x":1757628000894,"y":62.124},{"x":1757627940688,"y":43.074},{"x":1757627880415,"y":46.301},{"x":1757627820204,"y":53.672},{"x":1757627762973,"y":57.75},{"x":1757627702814,"y":46.446},{"x":1757627642659,"y":58.261},{"x":1757627582507,"y":59.037},{"x":1757627522346,"y":51.437},{"x":1757627462190,"y":69.908},{"x":1757627402035,"y":60.121},{"x":1757627341870,"y":47.403},{"x":1757627281723,"y":41.937},{"x":1757627221547,"y":38.873},{"x":1757627161374,"y":45.542},{"x":1757627101220,"y":45.918},{"x":1757627041006,"y":43.814},{"x":1757626980845,"y":43.967},{"x":1757626920689,"y":48.197},{"x":1757626860533,"y":49.627},{"x":1757626800419,"y":46.439},{"x":1757626740181,"y":60.656},{"x":1757626682855,"y":63.242},{"x":1757626622705,"y":47.227},{"x":1757626562528,"y":48.036},{"x":1757626502374,"y":47.007},{"x":1757626442217,"y":69.845},{"x":1757626382045,"y":51.093},{"x":1757626321881,"y":65.226},{"x":1757626261724,"y":70.52},{"x":1757626201571,"y":76.8},{"x":1757626141410,"y":73.239},{"x":1757626081250,"y":66.362},{"x":1757626021090,"y":62.678},{"x":1757625960920,"y":54.991},{"x":1757625900766,"y":58.872},{"x":1757625840614,"y":53.891},{"x":1757625780478,"y":65.108},{"x":1757625720296,"y":63.76},{"x":1757625662923,"y":77.162},{"x":1757625602760,"y":51.3},{"x":1757625542609,"y":72.562},{"x":1757625482459,"y":78.19},{"x":1757625422309,"y":93.607},{"x":1757625362127,"y":78.279},{"x":1757625301953,"y":95.381},{"x":1757625241805,"y":58.784},{"x":1757625181637,"y":58.35},{"x":1757625121432,"y":61.475},{"x":1757625061238,"y":68.656},{"x":1757625001026,"y":55.175},{"x":1757624940858,"y":65.416},{"x":1757624880746,"y":46.797},{"x":1757624820574,"y":52.086},{"x":1757624760462,"y":64.62},{"x":1757624700296,"y":53.157},{"x":1757624642946,"y":51.541},{"x":1757624582804,"y":47.111},{"x":1757624522660,"y":63.503},{"x":1757624462521,"y":48.363},{"x":1757624402342,"y":61.504},{"x":1757624342072,"y":56.73},{"x":1757624281851,"y":60.954},{"x":1757624221701,"y":49.718},{"x":1757624161543,"y":66.639},{"x":1757624101384,"y":64.748},{"x":1757624041237,"y":62.985},{"x":1757623981091,"y":57.155},{"x":1757623920936,"y":71.894},{"x":1757623860773,"y":72.449},{"x":1757623800659,"y":64.983},{"x":1757623740465,"y":69.933},{"x":1757623680332,"y":55.462},{"x":1757623623024,"y":51.285},{"x":1757623562862,"y":52.045},{"x":1757623502716,"y":83.248},{"x":1757623442569,"y":70.407},{"x":1757623382395,"y":59.295},{"x":1757623322254,"y":63.282},{"x":1757623262103,"y":57.49},{"x":1757623201932,"y":48.124},{"x":1757623141776,"y":71.681},{"x":1757623081629,"y":78.377},{"x":1757623021477,"y":42.471},{"x":1757622961323,"y":70.219},{"x":1757622901150,"y":49.432},{"x":1757622840989,"y":57.395},{"x":1757622780830,"y":55.347},{"x":1757622720698,"y":71.52},{"x":1757622660554,"y":55.179},{"x":1757622600437,"y":61.423},{"x":1757622540135,"y":50.911},{"x":1757622482923,"y":71.842},{"x":1757622422744,"y":54.002},{"x":1757622362586,"y":72.811},{"x":1757622302425,"y":80.599},{"x":1757622242274,"y":79.535},{"x":1757622182123,"y":66.548},{"x":1757622121966,"y":69.049},{"x":1757622061809,"y":88.38},{"x":1757622001676,"y":96.279},{"x":1757621941495,"y":107.003},{"x":1757621881363,"y":99.001},{"x":1757621821183,"y":69.135},{"x":1757621761006,"y":51.578},{"x":1757621700872,"y":53.616},{"x":1757621640715,"y":62.267},{"x":1757621580554,"y":60.733},{"x":1757621520512,"y":92.583},{"x":1757621460267,"y":75.927},{"x":1757621402845,"y":81.38},{"x":1757621342692,"y":85.409},{"x":1757621282545,"y":85.836},{"x":1757621222400,"y":75.789},{"x":1757621162248,"y":97.192},{"x":1757621102102,"y":81.165},{"x":1757621041933,"y":59.836},{"x":1757620981786,"y":61.545},{"x":1757620921630,"y":68.24},{"x":1757620861483,"y":77.413},{"x":1757620801434,"y":75.293},{"x":1757620741078,"y":101.375},{"x":1757620680890,"y":92.952},{"x":1757620620735,"y":60.478},{"x":1757620560588,"y":72.27},{"x":1757620500456,"y":87.047},{"x":1757620440338,"y":75.949},{"x":1757620383025,"y":70.037},{"x":1757620322864,"y":90.322},{"x":1757620262782,"y":76.658},{"x":1757620202577,"y":63.663},{"x":1757620142406,"y":72.659},{"x":1757620082253,"y":57.82},{"x":1757620022093,"y":60.742},{"x":1757619961935,"y":68.905},{"x":1757619901779,"y":60.314},{"x":1757619841621,"y":75.911},{"x":1757619781465,"y":60.745},{"x":1757619721310,"y":77.491},{"x":1757619661159,"y":78.644},{"x":1757619601009,"y":72.533},{"x":1757619540803,"y":63.929},{"x":1757619480652,"y":84.203},{"x":1757619420535,"y":113.139},{"x":1757619360408,"y":93.672},{"x":1757619300123,"y":67.801},{"x":1757619242878,"y":75.039},{"x":1757619182751,"y":79.561},{"x":1757619122577,"y":93.38},{"x":1757619062424,"y":77.236},{"x":1757619002244,"y":65.118},{"x":1757618942111,"y":71.602},{"x":1757618881923,"y":80.078},{"x":1757618821787,"y":65.149},{"x":1757618761601,"y":75.39},{"x":1757618701473,"y":88.182},{"x":1757618641280,"y":71.521},{"x":1757618581131,"y":96.394},{"x":1757618520959,"y":91.439},{"x":1757618460809,"y":74.101},{"x":1757618400715,"y":96.315},{"x":1757618340443,"y":74.985},{"x":1757618280292,"y":75.82},{"x":1757618220188,"y":72.33},{"x":1757618162852,"y":78.346},{"x":1757618102700,"y":95.46},{"x":1757618042543,"y":91.972},{"x":1757617982387,"y":83.5},{"x":1757617922227,"y":99.36},{"x":1757617862037,"y":102.889},{"x":1757617801828,"y":78.456},{"x":1757617741659,"y":80.461},{"x":1757617681505,"y":91.366},{"x":1757617621359,"y":89.702},{"x":1757617561199,"y":85.816},{"x":1757617501046,"y":85.989},{"x":1757617440886,"y":87.977},{"x":1757617380723,"y":105.391},{"x":1757617320591,"y":114.184},{"x":1757617260421,"y":71.927},{"x":1757617200333,"y":103.0},{"x":1757617142940,"y":93.045},{"x":1757617082746,"y":85.023},{"x":1757617022562,"y":81.339},{"x":1757616962410,"y":90.306},{"x":1757616902257,"y":100.635},{"x":1757616842115,"y":72.29},{"x":1757616781934,"y":75.775},{"x":1757616721784,"y":94.539},{"x":1757616661619,"y":89.146},{"x":1757616601473,"y":88.566},{"x":1757616541298,"y":97.594},{"x":1757616481141,"y":103.483},{"x":1757616420976,"y":105.03},{"x":1757616360822,"y":86.871},{"x":1757616300729,"y":83.006},{"x":1757616240452,"y":80.728},{"x":1757616180231,"y":100.713},{"x":1757616122964,"y":81.986},{"x":1757616062773,"y":83.451},{"x":1757616002666,"y":85.591},{"x":1757615942433,"y":84.942},{"x":1757615882280,"y":73.056},{"x":1757615822120,"y":115.043},{"x":1757615761956,"y":85.306},{"x":1757615701798,"y":76.186},{"x":1757615641677,"y":79.585},{"x":1757615581489,"y":83.962},{"x":1757615521342,"y":81.243},{"x":1757615461153,"y":84.577},{"x":1757615400991,"y":86.244},{"x":1757615340798,"y":106.061},{"x":1757615280680,"y":101.022},{"x":1757615220473,"y":67.383},{"x":1757615160334,"y":64.204},{"x":1757615102975,"y":66.91},{"x":1757615042829,"y":67.697},{"x":1757614982676,"y":81.275},{"x":1757614922524,"y":75.455},{"x":1757614862363,"y":72.849},{"x":1757614802209,"y":72.645},{"x":1757614742041,"y":79.447},{"x":1757614681884,"y":82.645},{"x":1757614621731,"y":72.734},{"x":1757614561574,"y":71.958},{"x":1757614501446,"y":79.616},{"x":1757614440912,"y":74.782},{"x":1757614380752,"y":93.458},{"x":1757614320603,"y":108.581},{"x":1757614260407,"y":89.778},{"x":1757614200429,"y":118.315},{"x":1757614142938,"y":103.62},{"x":1757614082782,"y":90.487},{"x":1757614022639,"y":82.164},{"x":1757613962505,"y":61.293},{"x":1757613902327,"y":58.435},{"x":1757613842165,"y":86.35},{"x":1757613782008,"y":69.571},{"x":1757613721847,"y":61.069},{"x":1757613661702,"y":95.563},{"x":1757613601676,"y":85.054},{"x":1757613541302,"y":96.128},{"x":1757613481071,"y":104.277},{"x":1757613420905,"y":86.74},{"x":1757613360764,"y":94.712},{"x":1757613300632,"y":89.646},{"x":1757613240425,"y":68.199},{"x":1757613180299,"y":116.804},{"x":1757613122970,"y":78.328},{"x":1757613062836,"y":60.38},{"x":1757613002656,"y":87.049},{"x":1757612942496,"y":85.009},{"x":1757612882331,"y":101.987},{"x":1757612822185,"y":85.723},{"x":1757612762025,"y":104.84},{"x":1757612701852,"y":83.281},{"x":1757612641703,"y":80.146},{"x":1757612581552,"y":70.553},{"x":1757612521415,"y":65.263},{"x":1757612461247,"y":74.691},{"x":1757612401071,"y":60.503},{"x":1757612340895,"y":63.331},{"x":1757612280743,"y":74.315},{"x":1757612220594,"y":61.97},{"x":1757612160481,"y":72.994},{"x":1757612100246,"y":68.655},{"x":1757612042986,"y":100.475},{"x":1757611982837,"y":84.719},{"x":1757611922672,"y":70.544},{"x":1757611862521,"y":69.991},{"x":1757611802372,"y":81.984},{"x":1757611742204,"y":61.92},{"x":1757611682022,"y":76.259},{"x":1757611621866,"y":84.61},{"x":1757611561716,"y":75.196},{"x":1757611501549,"y":87.373},{"x":1757611441395,"y":63.986},{"x":1757611381222,"y":75.622},{"x":1757611321066,"y":71.799},{"x":1757611260889,"y":82.116},{"x":1757611200787,"y":105.824},{"x":1757611140581,"y":82.813},{"x":1757611080435,"y":70.689},{"x":1757611020227,"y":60.846},{"x":1757610963032,"y":65.464},{"x":1757610902868,"y":72.313},{"x":1757610842721,"y":73.931},{"x":1757610782575,"y":61.399},{"x":1757610722393,"y":61.905},{"x":1757610662198,"y":67.363},{"x":1757610602022,"y":81.165},{"x":1757610541863,"y":92.85},{"x":1757610481713,"y":72.162},{"x":1757610421567,"y":63.985},{"x":1757610361417,"y":62.81},{"x":1757610301263,"y":81.716},{"x":1757610241080,"y":70.073},{"x":1757610180905,"y":75.721},{"x":1757610120762,"y":64.455},{"x":1757610060615,"y":67.207},{"x":1757610000900,"y":111.389},{"x":1757609940277,"y":79.385},{"x":1757609882918,"y":79.205},{"x":1757609822760,"y":90.901},{"x":1757609762604,"y":82.078},{"x":1757609702429,"y":76.474},{"x":1757609642287,"y":46.969},{"x":1757609582130,"y":59.272},{"x":1757609521965,"y":55.03},{"x":1757609461783,"y":57.201},{"x":1757609401632,"y":58.146},{"x":1757609341462,"y":65.038},{"x":1757609281318,"y":52.526},{"x":1757609221193,"y":72.728},{"x":1757609161004,"y":63.618},{"x":1757609100903,"y":73.408},{"x":1757609040639,"y":68.154},{"x":1757608980525,"y":77.388},{"x":1757608920381,"y":101.703},{"x":1757608862996,"y":77.404},{"x":1757608802846,"y":75.534},{"x":1757608742685,"y":69.994},{"x":1757608682532,"y":56.801},{"x":1757608622378,"y":57.942},{"x":1757608562220,"y":64.843},{"x":1757608502014,"y":71.821},{"x":1757608441858,"y":65.427},{"x":1757608381698,"y":58.587},{"x":1757608321548,"y":63.169},{"x":1757608261402,"y":63.851},{"x":1757608201254,"y":58.971},{"x":1757608141080,"y":74.762},{"x":1757608080909,"y":57.489},{"x":1757608020764,"y":59.97},{"x":1757607960620,"y":65.65},{"x":1757607900488,"y":57.644},{"x":1757607840365,"y":67.205},{"x":1757607780223,"y":64.989},{"x":1757607722887,"y":76.177},{"x":1757607662734,"y":83.958},{"x":1757607602562,"y":70.824},{"x":1757607542400,"y":65.506},{"x":1757607482249,"y":58.906},{"x":1757607422106,"y":44.631},{"x":1757607361939,"y":69.606},{"x":1757607301779,"y":57.27},{"x":1757607241634,"y":65.734},{"x":1757607181488,"y":41.211},{"x":1757607121317,"y":46.459},{"x":1757607061135,"y":51.668},{"x":1757607000952,"y":48.665},{"x":1757606940783,"y":39.227},{"x":1757606880648,"y":37.98},{"x":1757606820478,"y":75.271},{"x":1757606760427,"y":63.922},{"x":1757606702893,"y":56.579},{"x":1757606642768,"y":60.021},{"x":1757606582590,"y":58.341},{"x":1757606522410,"y":51.806},{"x":1757606462255,"y":51.134},{"x":1757606402190,"y":46.086},{"x":1757606341904,"y":51.89},{"x":1757606281698,"y":47.915},{"x":1757606221536,"y":41.61},{"x":1757606161384,"y":58.803},{"x":1757606101231,"y":47.131},{"x":1757606041067,"y":66.966},{"x":1757605980916,"y":58.974},{"x":1757605920778,"y":68.966},{"x":1757605860631,"y":43.357},{"x":1757605800463,"y":61.879},{"x":1757605740330,"y":52.014},{"x":1757605682986,"y":65.344},{"x":1757605622828,"y":67.151},{"x":1757605562682,"y":48.04},{"x":1757605502536,"y":67.393},{"x":1757605442363,"y":52.738},{"x":1757605382214,"y":65.923},{"x":1757605322049,"y":66.172},{"x":1757605261892,"y":75.174},{"x":1757605201747,"y":72.663},{"x":1757605141593,"y":66.546},{"x":1757605081441,"y":66.266},{"x":1757605021290,"y":53.303},{"x":1757604961126,"y":38.73},{"x":1757604900951,"y":36.922},{"x":1757604840790,"y":47.285},{"x":1757604780644,"y":52.806},{"x":1757604720579,"y":30.768},{"x":1757604660370,"y":28.677},{"x":1757604603006,"y":42.149},{"x":1757604542848,"y":46.467},{"x":1757604482694,"y":67.321},{"x":1757604422547,"y":40.985},{"x":1757604362402,"y":53.758},{"x":1757604302247,"y":50.069},{"x":1757604242088,"y":43.919},{"x":1757604181942,"y":35.291},{"x":1757604121785,"y":33.552},{"x":1757604061624,"y":35.026},{"x":1757604001466,"y":54.225},{"x":1757603941315,"y":28.213},{"x":1757603881163,"y":65.509},{"x":1757603821020,"y":44.278},{"x":1757603760846,"y":52.628},{"x":1757603700708,"y":32.836},{"x":1757603640531,"y":47.857},{"x":1757603580353,"y":50.246},{"x":1757603520254,"y":52.142},{"x":1757603462844,"y":48.288},{"x":1757603402647,"y":77.528},{"x":1757603342495,"y":61.493},{"x":1757603282341,"y":82.352},{"x":1757603222197,"y":72.185},{"x":1757603162044,"y":64.902},{"x":1757603101867,"y":60.855},{"x":1757603041710,"y":57.64},{"x":1757602981555,"y":55.087},{"x":1757602921398,"y":43.8},{"x":1757602861248,"y":43.387},{"x":1757602800990,"y":50.61},{"x":1757602740624,"y":33.481},{"x":1757602680427,"y":36.465},{"x":1757602620397,"y":37.134},{"x":1757602562959,"y":56.336},{"x":1757602502795,"y":26.675},{"x":1757602442644,"y":37.532},{"x":1757602382504,"y":45.643},{"x":1757602322334,"y":73.467},{"x":1757602262167,"y":51.742},{"x":1757602201980,"y":55.433},{"x":1757602141823,"y":79.093},{"x":1757602081673,"y":80.503},{"x":1757602021513,"y":73.199},{"x":1757601961351,"y":71.894},{"x":1757601901188,"y":79.832},{"x":1757601840961,"y":65.241},{"x":1757601780809,"y":50.085},{"x":1757601720659,"y":62.188},{"x":1757601660480,"y":60.879},{"x":1757601600381,"y":69.507},{"x":1757601540054,"y":60.84},{"x":1757601482873,"y":62.697},{"x":1757601422699,"y":53.374},{"x":1757601362547,"y":78.498},{"x":1757601302388,"y":64.459},{"x":1757601242234,"y":82.085},{"x":1757601182074,"y":62.152},{"x":1757601121911,"y":94.993},{"x":1757601061755,"y":94.739},{"x":1757601001606,"y":83.463},{"x":1757600941441,"y":85.155},{"x":1757600881300,"y":96.338},{"x":1757600821139,"y":47.695},{"x":1757600760965,"y":67.331},{"x":1757600700830,"y":59.652},{"x":1757600640612,"y":67.88},{"x":1757600580515,"y":49.298},{"x":1757600520342,"y":57.079},{"x":1757600463020,"y":58.828},{"x":1757600402845,"y":49.634},{"x":1757600342705,"y":55.148},{"x":1757600282530,"y":56.373},{"x":1757600222369,"y":45.024},{"x":1757600162231,"y":69.88},{"x":1757600102037,"y":61.534},{"x":1757600041882,"y":51.835},{"x":1757599981693,"y":57.267},{"x":1757599921515,"y":56.142},{"x":1757599861294,"y":67.232},{"x":1757599801075,"y":46.914},{"x":1757599740910,"y":53.102},{"x":1757599680747,"y":57.715},{"x":1757599620610,"y":56.749},{"x":1757599560483,"y":64.702},{"x":1757599500331,"y":68.755},{"x":1757599442935,"y":63.587},{"x":1757599382777,"y":57.621},{"x":1757599322617,"y":86.987},{"x":1757599262474,"y":74.752},{"x":1757599202412,"y":84.004},{"x":1757599142136,"y":68.049},{"x":1757599081879,"y":47.468},{"x":1757599021729,"y":59.217},{"x":1757598961618,"y":63.171},{"x":1757598901426,"y":57.287},{"x":1757598841281,"y":61.999},{"x":1757598781124,"y":53.025},{"x":1757598720956,"y":54.726},{"x":1757598660778,"y":45.979},{"x":1757598600740,"y":55.69},{"x":1757598540473,"y":72.374},{"x":1757598480463,"y":64.606},{"x":1757598422979,"y":52.989},{"x":1757598362828,"y":61.542},{"x":1757598302670,"y":58.502},{"x":1757598242517,"y":59.963},{"x":1757598182363,"y":46.306},{"x":1757598122186,"y":54.984},{"x":1757598062029,"y":59.486},{"x":1757598001838,"y":56.209},{"x":1757597941670,"y":50.911},{"x":1757597881491,"y":63.838},{"x":1757597821327,"y":71.436},{"x":1757597761154,"y":59.835},{"x":1757597700995,"y":62.157},{"x":1757597640844,"y":72.331},{"x":1757597580700,"y":50.603},{"x":1757597520532,"y":63.325},{"x":1757597460271,"y":50.951},{"x":1757597402920,"y":46.28},{"x":1757597342763,"y":49.607},{"x":1757597282599,"y":38.258},{"x":1757597222453,"y":48.577},{"x":1757597162315,"y":48.74},{"x":1757597102139,"y":48.784},{"x":1757597041967,"y":66.142},{"x":1757596981299,"y":56.903},{"x":1757596921133,"y":71.398},{"x":1757596860932,"y":48.023},{"x":1757596800842,"y":42.295},{"x":1757596740517,"y":58.819},{"x":1757596680426,"y":65.41},{"x":1757596620413,"y":78.934},{"x":1757596562903,"y":76.722},{"x":1757596502756,"y":82.037},{"x":1757596442608,"y":71.375},{"x":1757596382455,"y":88.103},{"x":1757596322261,"y":50.271},{"x":1757596262079,"y":53.206},{"x":1757596201878,"y":62.137},{"x":1757596141705,"y":58.999},{"x":1757596081552,"y":68.299},{"x":1757596021398,"y":47.365},{"x":1757595961255,"y":51.997},{"x":1757595901084,"y":64.942},{"x":1757595840899,"y":71.136},{"x":1757595780750,"y":49.638},{"x":1757595720606,"y":61.586},{"x":1757595660443,"y":69.078},{"x":1757595603031,"y":62.929},{"x":1757595542810,"y":64.645},{"x":1757595482586,"y":66.71},{"x":1757595422443,"y":64.305},{"x":1757595362293,"y":72.287},{"x":1757595302134,"y":50.96},{"x":1757595241980,"y":50.695},{"x":1757595181793,"y":43.11},{"x":1757595121637,"y":53.36},{"x":1757595061460,"y":52.012},{"x":1757595001325,"y":65.374},{"x":1757594941160,"y":59.134},{"x":1757594881008,"y":66.496},{"x":1757594820831,"y":65.268},{"x":1757594760662,"y":47.291},{"x":1757594700588,"y":62.376},{"x":1757594640408,"y":40.769},{"x":1757594580067,"y":75.198},{"x":1757594522875,"y":43.811},{"x":1757594462712,"y":43.315},{"x":1757594402552,"y":51.425},{"x":1757594342398,"y":62.486},{"x":1757594282245,"y":39.76},{"x":1757594222096,"y":53.434},{"x":1757594161929,"y":41.66},{"x":1757594101739,"y":57.923},{"x":1757594041574,"y":39.564},{"x":1757593981408,"y":49.256},{"x":1757593921248,"y":42.732},{"x":1757593861032,"y":67.441},{"x":1757593800886,"y":52.003},{"x":1757593740703,"y":60.744},{"x":1757593680559,"y":49.189},{"x":1757593620441,"y":50.898},{"x":1757593560090,"y":46.13},{"x":1757593502871,"y":44.467},{"x":1757593442719,"y":45.798},{"x":1757593382571,"y":58.462},{"x":1757593322404,"y":63.543},{"x":1757593262280,"y":41.499},{"x":1757593202092,"y":52.038},{"x":1757593141918,"y":27.675},{"x":1757593081765,"y":41.287},{"x":1757593021604,"y":38.364},{"x":1757592961442,"y":41.684},{"x":1757592901286,"y":43.323},{"x":1757592841133,"y":57.862},{"x":1757592780950,"y":51.036},{"x":1757592720771,"y":71.88},{"x":1757592660560,"y":53.12},{"x":1757592600434,"y":62.455},{"x":1757592542988,"y":54.644},{"x":1757592482823,"y":47.457},{"x":1757592422678,"y":52.177},{"x":1757592362520,"y":41.547},{"x":1757592302375,"y":45.919},{"x":1757592242210,"y":55.449},{"x":1757592182049,"y":54.986},{"x":1757592121890,"y":39.212},{"x":1757592061731,"y":40.301},{"x":1757592001791,"y":56.354},{"x":1757591941390,"y":46.547},{"x":1757591881140,"y":29.774},{"x":1757591820940,"y":51.262},{"x":1757591760773,"y":71.132},{"x":1757591700660,"y":50.376},{"x":1757591640492,"y":46.693},{"x":1757591580352,"y":60.815},{"x":1757591523017,"y":65.909},{"x":1757591462862,"y":59.718},{"x":1757591402693,"y":74.978},{"x":1757591342530,"y":77.053},{"x":1757591282383,"y":77.991},{"x":1757591222237,"y":90.473},{"x":1757591162055,"y":70.886},{"x":1757591101879,"y":77.518},{"x":1757591041722,"y":91.279},{"x":1757590981576,"y":75.988},{"x":1757590921415,"y":63.43},{"x":1757590861240,"y":52.256},{"x":1757590801096,"y":48.677},{"x":1757590740927,"y":50.2},{"x":1757590680777,"y":51.281},{"x":1757590620637,"y":58.071},{"x":1757590560517,"y":52.215},{"x":1757590500362,"y":80.988},{"x":1757590440130,"y":64.475},{"x":1757590382887,"y":63.69},{"x":1757590322723,"y":77.983},{"x":1757590262577,"y":79.177},{"x":1757590202396,"y":94.53},{"x":1757590142252,"y":67.329},{"x":1757590082107,"y":61.654},{"x":1757590021944,"y":65.169},{"x":1757589961782,"y":50.617},{"x":1757589901591,"y":48.082},{"x":1757589841415,"y":56.792},{"x":1757589782430,"y":59.656},{"x":1757589722291,"y":38.184},{"x":1757589662139,"y":36.21},{"x":1757589600528,"y":41.232},{"x":1757589541377,"y":38.042},{"x":1757589481195,"y":28.875},{"x":1757589422497,"y":35.025},{"x":1757589362325,"y":38.639},{"x":1757589300637,"y":62.526},{"x":1757589241972,"y":35.208},{"x":1757589181795,"y":34.712},{"x":1757589122043,"y":61.143},{"x":1757589060582,"y":51.86},{"x":1757589000428,"y":50.686},{"x":1757588940176,"y":39.105},{"x":1757588882912,"y":45.101},{"x":1757588822364,"y":54.689},{"x":1757588762046,"y":62.112},{"x":1757588702985,"y":69.252},{"x":1757588643206,"y":68.037},{"x":1757588582980,"y":61.595},{"x":1757588522826,"y":68.314},{"x":1757588462664,"y":51.856},{"x":1757588402531,"y":74.769},{"x":1757588342322,"y":67.903},{"x":1757588282105,"y":42.192},{"x":1757588221936,"y":41.584},{"x":1757588161789,"y":56.89},{"x":1757588101600,"y":65.302},{"x":1757588041436,"y":59.632},{"x":1757587981294,"y":71.092},{"x":1757587921136,"y":86.287},{"x":1757587860981,"y":83.99},{"x":1757587800829,"y":94.347},{"x":1757587740592,"y":93.665},{"x":1757587680501,"y":78.857},{"x":1757587623017,"y":77.171},{"x":1757587562854,"y":48.736},{"x":1757587502687,"y":30.776},{"x":1757587442529,"y":27.996},{"x":1757587382382,"y":65.213},{"x":1757587322219,"y":68.582},{"x":1757587262060,"y":35.517},{"x":1757587201901,"y":33.438},{"x":1757587141743,"y":54.326},{"x":1757587081585,"y":88.776},{"x":1757587021428,"y":92.973},{"x":1757586961275,"y":81.021},{"x":1757586901122,"y":43.728},{"x":1757586840938,"y":37.063},{"x":1757586780798,"y":49.567},{"x":1757586720678,"y":45.898},{"x":1757586660550,"y":58.821},{"x":1757586600360,"y":29.006},{"x":1757586543019,"y":24.538},{"x":1757586482858,"y":55.904},{"x":1757586422690,"y":56.027},{"x":1757586362521,"y":70.942},{"x":1757586302371,"y":47.089},{"x":1757586242216,"y":53.693},{"x":1757586182056,"y":46.077},{"x":1757586121885,"y":21.457},{"x":1757586061724,"y":42.782},{"x":1757586001594,"y":25.084},{"x":1757585941421,"y":29.869},{"x":1757585881266,"y":32.355},{"x":1757585821122,"y":29.591},{"x":1757585760946,"y":46.759},{"x":1757585700849,"y":47.475},{"x":1757585640632,"y":66.121},{"x":1757585580493,"y":41.43},{"x":1757585520291,"y":23.202},{"x":1757585462986,"y":61.972},{"x":1757585402834,"y":67.853},{"x":1757585342665,"y":66.078},{"x":1757585282505,"y":68.937},{"x":1757585222358,"y":42.812},{"x":1757585162193,"y":26.237},{"x":1757585102032,"y":62.018},{"x":1757585041871,"y":54.52},{"x":1757584981706,"y":58.271},{"x":1757584921556,"y":33.731},{"x":1757584861420,"y":39.794},{"x":1757584801340,"y":19.788},{"x":1757584741036,"y":45.937},{"x":1757584680803,"y":43.733},{"x":1757584620674,"y":33.313},{"x":1757584560536,"y":26.779},{"x":1757584500472,"y":48.336},{"x":1757584440184,"y":39.373},{"x":1757584382893,"y":33.844},{"x":1757584322754,"y":42.416},{"x":1757584262585,"y":49.46},{"x":1757584202443,"y":29.732},{"x":1757584142276,"y":36.528},{"x":1757584082109,"y":32.244},{"x":1757584021936,"y":48.352},{"x":1757583961783,"y":43.591},{"x":1757583901634,"y":57.39},{"x":1757583841472,"y":57.879},{"x":1757583781303,"y":57.811},{"x":1757583721149,"y":69.343},{"x":1757583660994,"y":66.926},{"x":1757583600862,"y":49.611},{"x":1757583540564,"y":26.689},{"x":1757583480390,"y":48.25},{"x":1757583420256,"y":47.893},{"x":1757583362964,"y":57.926},{"x":1757583302812,"y":62.294},{"x":1757583242663,"y":43.441},{"x":1757583182517,"y":38.041},{"x":1757583122360,"y":24.302},{"x":1757583062210,"y":57.217},{"x":1757583002065,"y":69.062},{"x":1757582941865,"y":84.135},{"x":1757582881712,"y":72.23},{"x":1757582821570,"y":85.397},{"x":1757582761421,"y":63.261},{"x":1757582701262,"y":64.661},{"x":1757582641101,"y":67.495},{"x":1757582580930,"y":47.509},{"x":1757582520779,"y":49.659},{"x":1757582460626,"y":51.555},{"x":1757582400559,"y":63.165},{"x":1757582340361,"y":76.611},{"x":1757582282987,"y":51.06},{"x":1757582222818,"y":48.007},{"x":1757582162677,"y":59.968},{"x":1757582102501,"y":33.413},{"x":1757582042341,"y":30.307},{"x":1757581982187,"y":23.316},{"x":1757581922036,"y":27.513},{"x":1757581861826,"y":39.932},{"x":1757581801640,"y":27.93},{"x":1757581741479,"y":26.677},{"x":1757581681323,"y":28.013},{"x":1757581621184,"y":39.434},{"x":1757581560984,"y":36.977},{"x":1757581500847,"y":45.061},{"x":1757581440706,"y":44.259},{"x":1757581380530,"y":52.466},{"x":1757581320390,"y":44.09},{"x":1757581260293,"y":48.611},{"x":1757581202950,"y":55.278},{"x":1757581142802,"y":37.878},{"x":1757581082572,"y":29.798},{"x":1757581022408,"y":39.502},{"x":1757580962244,"y":37.843},{"x":1757580902061,"y":58.209},{"x":1757580841903,"y":35.377},{"x":1757580781760,"y":38.432},{"x":1757580721602,"y":51.606},{"x":1757580661436,"y":59.616},{"x":1757580601288,"y":40.694},{"x":1757580541130,"y":57.39},{"x":1757580480957,"y":40.608},{"x":1757580420796,"y":24.783},{"x":1757580360657,"y":36.433},{"x":1757580300650,"y":37.498},{"x":1757580240457,"y":29.533},{"x":1757580180302,"y":36.95},{"x":1757580122932,"y":40.268},{"x":1757580062790,"y":59.654},{"x":1757580002643,"y":40.644},{"x":1757579942485,"y":40.965},{"x":1757579882319,"y":39.168},{"x":1757579822166,"y":48.483},{"x":1757579762007,"y":66.507},{"x":1757579701850,"y":53.668},{"x":1757579641719,"y":57.098},{"x":1757579581544,"y":50.03},{"x":1757579521385,"y":35.763},{"x":1757579461215,"y":39.952},{"x":1757579401067,"y":34.705},{"x":1757579340890,"y":37.242},{"x":1757579280748,"y":30.271},{"x":1757579220583,"y":37.861},{"x":1757579160423,"y":38.346},{"x":1757579100270,"y":39.574},{"x":1757579042954,"y":41.931},{"x":1757578982815,"y":50.548},{"x":1757578922669,"y":52.873},{"x":1757578862503,"y":60.473},{"x":1757578802332,"y":58.653},{"x":1757578742178,"y":57.917},{"x":1757578681994,"y":58.825},{"x":1757578621842,"y":45.806},{"x":1757578561684,"y":47.195},{"x":1757578501531,"y":58.574},{"x":1757578441331,"y":60.611},{"x":1757578381168,"y":48.896},{"x":1757578321006,"y":61.133},{"x":1757578260829,"y":65.277},{"x":1757578200656,"y":60.465},{"x":1757578140466,"y":50.32},{"x":1757578080285,"y":43.696},{"x":1757578022956,"y":59.298},{"x":1757577962793,"y":47.423},{"x":1757577902634,"y":38.748},{"x":1757577842484,"y":59.972},{"x":1757577782332,"y":38.402},{"x":1757577722179,"y":36.609},{"x":1757577662011,"y":32.399},{"x":1757577601893,"y":31.82},{"x":1757577541651,"y":35.355},{"x":1757577481433,"y":41.882},{"x":1757577421259,"y":43.484},{"x":1757577361103,"y":60.84},{"x":1757577300936,"y":55.66},{"x":1757577240755,"y":52.815},{"x":1757577180632,"y":49.024},{"x":1757577120523,"y":48.182},{"x":1757577060278,"y":56.269},{"x":1757577002947,"y":52.973},{"x":1757576942791,"y":57.406},{"x":1757576882648,"y":58.953},{"x":1757576822486,"y":39.542},{"x":1757576762329,"y":47.599},{"x":1757576702169,"y":68.505},{"x":1757576642007,"y":65.473},{"x":1757576581848,"y":66.057},{"x":1757576521680,"y":52.624},{"x":1757576461528,"y":67.097},{"x":1757576401376,"y":72.016},{"x":1757576341218,"y":57.865},{"x":1757576281069,"y":48.533},{"x":1757576220892,"y":52.868},{"x":1757576160744,"y":53.067},{"x":1757576100610,"y":63.983},{"x":1757576040452,"y":58.998},{"x":1757575980314,"y":63.163},{"x":1757575922965,"y":62.678},{"x":1757575862809,"y":52.066},{"x":1757575802661,"y":57.4},{"x":1757575742514,"y":56.015},{"x":1757575682338,"y":46.432},{"x":1757575622179,"y":43.968},{"x":1757575561983,"y":54.424},{"x":1757575501836,"y":61.804},{"x":1757575441689,"y":50.307},{"x":1757575381537,"y":73.081},{"x":1757575321387,"y":49.746},{"x":1757575261239,"y":54.667},{"x":1757575201122,"y":49.207},{"x":1757575140923,"y":42.697},{"x":1757575080789,"y":48.646},{"x":1757575020663,"y":49.819},{"x":1757574960499,"y":70.45},{"x":1757574900318,"y":69.365},{"x":1757574840128,"y":89.397},{"x":1757574782894,"y":71.561},{"x":1757574722723,"y":69.376},{"x":1757574662518,"y":58.162},{"x":1757574602325,"y":81.385},{"x":1757574542165,"y":68.467},{"x":1757574481980,"y":50.997},{"x":1757574421835,"y":73.068},{"x":1757574361649,"y":48.926},{"x":1757574301505,"y":55.894},{"x":1757574241344,"y":62.72},{"x":1757574181186,"y":70.815},{"x":1757574121007,"y":56.004},{"x":1757574060850,"y":49.553},{"x":1757574000770,"y":64.078},{"x":1757573940535,"y":79.439},{"x":1757573880343,"y":79.476},{"x":1757573820015,"y":61.027},{"x":1757573762852,"y":74.328},{"x":1757573702677,"y":64.98},{"x":1757573642521,"y":67.159},{"x":1757573582364,"y":75.349},{"x":1757573522204,"y":53.415},{"x":1757573462046,"y":43.602},{"x":1757573401881,"y":57.214},{"x":1757573341724,"y":78.041},{"x":1757573281553,"y":52.215},{"x":1757573221392,"y":61.744},{"x":1757573161244,"y":65.321},{"x":1757573101106,"y":42.968},{"x":1757573040906,"y":60.719},{"x":1757572980755,"y":47.874},{"x":1757572920606,"y":49.802},{"x":1757572860579,"y":59.166},{"x":1757572802968,"y":58.472},{"x":1757572742806,"y":59.695},{"x":1757572682654,"y":56.46},{"x":1757572622502,"y":58.42},{"x":1757572562346,"y":59.006},{"x":1757572502178,"y":55.081},{"x":1757572441985,"y":55.848},{"x":1757572381822,"y":55.05},{"x":1757572321664,"y":68.269},{"x":1757572261515,"y":49.347},{"x":1757572201379,"y":52.585},{"x":1757572141190,"y":61.997},{"x":1757572081012,"y":90.244},{"x":1757572020841,"y":79.292},{"x":1757571960700,"y":81.321},{"x":1757571900584,"y":76.114},{"x":1757571840379,"y":62.293},{"x":1757571783018,"y":96.44},{"x":1757571722862,"y":104.677},{"x":1757571662712,"y":101.457},{"x":1757571602555,"y":95.928},{"x":1757571542341,"y":103.425},{"x":1757571482202,"y":105.674},{"x":1757571421996,"y":93.492},{"x":1757571361839,"y":108.456},{"x":1757571301672,"y":84.245},{"x":1757571241523,"y":64.444},{"x":1757571181367,"y":80.915},{"x":1757571121199,"y":78.856},{"x":1757571060960,"y":74.151},{"x":1757571000828,"y":78.753},{"x":1757570940629,"y":76.258},{"x":1757570880454,"y":67.004},{"x":1757570820323,"y":80.527},{"x":1757570762972,"y":62.16},{"x":1757570702805,"y":86.142},{"x":1757570642652,"y":69.116},{"x":1757570582499,"y":69.78},{"x":1757570522334,"y":65.576},{"x":1757570462180,"y":37.311},{"x":1757570402099,"y":35.77},{"x":1757570341834,"y":33.494},{"x":1757570281618,"y":32.956},{"x":1757570221469,"y":33.515},{"x":1757570161324,"y":30.208},{"x":1757570101185,"y":33.62},{"x":1757570040981,"y":35.127},{"x":1757569980834,"y":35.697},{"x":1757569920688,"y":36.825},{"x":1757569860529,"y":48.578},{"x":1757569800462,"y":44.85},{"x":1757569740308,"y":47.619},{"x":1757569682907,"y":47.37},{"x":1757569622753,"y":47.625},{"x":1757569562597,"y":43.841},{"x":1757569502446,"y":37.546},{"x":1757569442265,"y":34.685},{"x":1757569382084,"y":34.34},{"x":1757569321906,"y":39.417},{"x":1757569261751,"y":38.196},{"x":1757569201593,"y":33.508},{"x":1757569141396,"y":33.6},{"x":1757569081248,"y":33.59},{"x":1757569021076,"y":37.445},{"x":1757568960915,"y":38.569},{"x":1757568900828,"y":40.301},{"x":1757568840586,"y":35.125},{"x":1757568780447,"y":33.22},{"x":1757568720312,"y":34.175},{"x":1757568662952,"y":32.77},{"x":1757568602788,"y":35.683},{"x":1757568542637,"y":30.403},{"x":1757568482477,"y":31.41},{"x":1757568422314,"y":36.386},{"x":1757568362153,"y":33.835},{"x":1757568301990,"y":40.375},{"x":1757568241833,"y":38.267},{"x":1757568181682,"y":34.251},{"x":1757568121513,"y":31.852},{"x":1757568061368,"y":31.294},{"x":1757568001218,"y":35.99},{"x":1757567941056,"y":30.232},{"x":1757567880884,"y":29.945},{"x":1757567820742,"y":30.054},{"x":1757567760587,"y":30.389},{"x":1757567700455,"y":39.486},{"x":1757567640248,"y":32.987},{"x":1757567582887,"y":36.544},{"x":1757567522709,"y":43.509},{"x":1757567462499,"y":44.854},{"x":1757567402330,"y":40.621},{"x":1757567342172,"y":45.328},{"x":1757567282012,"y":41.936},{"x":1757567221833,"y":32.265},{"x":1757567161680,"y":35.789},{"x":1757567101521,"y":37.153},{"x":1757567041373,"y":39.131},{"x":1757566981222,"y":29.416},{"x":1757566921055,"y":33.483},{"x":1757566860893,"y":35.133},{"x":1757566800822,"y":43.974},{"x":1757566740537,"y":56.686},{"x":1757566680243,"y":52.01},{"x":1757566622925,"y":52.182},{"x":1757566562773,"y":52.352},{"x":1757566502622,"y":41.8},{"x":1757566442461,"y":40.573},{"x":1757566382318,"y":35.841},{"x":1757566322157,"y":39.739},{"x":1757566261992,"y":37.159},{"x":1757566201835,"y":36.561},{"x":1757566141690,"y":42.662},{"x":1757566081552,"y":46.813},{"x":1757566021347,"y":42.603},{"x":1757565961196,"y":49.077},{"x":1757565901058,"y":44.511},{"x":1757565840836,"y":28.849},{"x":1757565780677,"y":34.279},{"x":1757565720538,"y":31.505},{"x":1757565660363,"y":33.494},{"x":1757565600285,"y":33.575},{"x":1757565542886,"y":32.271},{"x":1757565482737,"y":49.699},{"x":1757565422572,"y":42.712},{"x":1757565362424,"y":41.474},{"x":1757565302260,"y":48.115},{"x":1757565242094,"y":37.795},{"x":1757565181917,"y":32.23},{"x":1757565121753,"y":32.529},{"x":1757565061606,"y":31.141},{"x":1757565001464,"y":29.912},{"x":1757564941321,"y":31.348},{"x":1757564881131,"y":32.921},{"x":1757564820978,"y":31.343},{"x":1757564760819,"y":37.355},{"x":1757564700740,"y":35.612},{"x":1757564640536,"y":37.587},{"x":1757564580327,"y":31.032},{"x":1757564520218,"y":35.371},{"x":1757564462930,"y":29.431},{"x":1757564402739,"y":29.653},{"x":1757564342576,"y":32.895},{"x":1757564282430,"y":32.101},{"x":1757564222273,"y":34.636},{"x":1757564162116,"y":32.054},{"x":1757564101924,"y":31.235},{"x":1757564041798,"y":32.968},{"x":1757563981519,"y":33.645},{"x":1757563921314,"y":35.649},{"x":1757563861146,"y":33.773},{"x":1757563800967,"y":35.48},{"x":1757563740793,"y":29.217},{"x":1757563680661,"y":31.623},{"x":1757563620463,"y":32.384},{"x":1757563560340,"y":32.163},{"x":1757563502945,"y":30.696},{"x":1757563442790,"y":39.721},{"x":1757563382627,"y":29.977},{"x":1757563322460,"y":28.387},{"x":1757563262245,"y":35.463},{"x":1757563202156,"y":30.16},{"x":1757563141777,"y":32.372},{"x":1757563081583,"y":30.896},{"x":1757563021420,"y":32.303},{"x":1757562961273,"y":35.823},{"x":1757562901114,"y":28.946},{"x":1757562840946,"y":31.152},{"x":1757562780792,"y":32.323},{"x":1757562720648,"y":35.194},{"x":1757562660552,"y":38.367},{"x":1757562600337,"y":35.801},{"x":1757562540223,"y":51.673},{"x":1757562482872,"y":45.832},{"x":1757562422732,"y":55.626},{"x":1757562362577,"y":60.929},{"x":1757562302421,"y":58.0},{"x":1757562242273,"y":56.804},{"x":1757562182116,"y":48.819},{"x":1757562121949,"y":36.496},{"x":1757562061786,"y":31.997},{"x":1757562001631,"y":32.804},{"x":1757561941486,"y":37.121},{"x":1757561881331,"y":34.237},{"x":1757561821177,"y":35.214},{"x":1757561761011,"y":35.602},{"x":1757561700864,"y":40.901},{"x":1757561640697,"y":34.547},{"x":1757561580555,"y":33.633},{"x":1757561520432,"y":33.276},{"x":1757561460301,"y":35.533},{"x":1757561402960,"y":41.005},{"x":1757561342792,"y":39.894},{"x":1757561282661,"y":30.907},{"x":1757561222472,"y":33.034},{"x":1757561162318,"y":30.145},{"x":1757561102164,"y":34.658},{"x":1757561042017,"y":36.84},{"x":1757560981844,"y":32.43},{"x":1757560921688,"y":33.201},{"x":1757560861537,"y":32.314},{"x":1757560801394,"y":29.128},{"x":1757560741213,"y":27.956},{"x":1757560681073,"y":29.607},{"x":1757560620927,"y":33.017},{"x":1757560560716,"y":29.708},{"x":1757560500647,"y":29.395},{"x":1757560440406,"y":38.057},{"x":1757560380335,"y":39.4},{"x":1757560322921,"y":35.258},{"x":1757560262746,"y":32.152},{"x":1757560202620,"y":32.979},{"x":1757560142422,"y":27.484},{"x":1757560082267,"y":31.618},{"x":1757560022110,"y":28.574},{"x":1757559961946,"y":27.521},{"x":1757559901788,"y":27.285},{"x":1757559841620,"y":33.129},{"x":1757559781446,"y":37.719},{"x":1757559721277,"y":33.284},{"x":1757559661102,"y":35.222},{"x":1757559602125,"y":34.085},{"x":1757559541901,"y":34.327},{"x":1757559481686,"y":30.721},{"x":1757559421529,"y":29.51},{"x":1757559361363,"y":29.015},{"x":1757559301209,"y":31.745},{"x":1757559241061,"y":30.239},{"x":1757559180878,"y":30.911},{"x":1757559120723,"y":31.901},{"x":1757559060571,"y":32.16},{"x":1757559000518,"y":33.785},{"x":1757558940268,"y":46.85},{"x":1757558882948,"y":45.754},{"x":1757558822788,"y":51.021},{"x":1757558762653,"y":40.262},{"x":1757558702484,"y":40.2},{"x":1757558642344,"y":33.576},{"x":1757558582188,"y":31.219},{"x":1757558522040,"y":29.77},{"x":1757558461873,"y":29.988},{"x":1757558401725,"y":26.647},{"x":1757558341569,"y":32.637},{"x":1757558281415,"y":36.624},{"x":1757558221262,"y":31.964},{"x":1757558161102,"y":32.331},{"x":1757558100938,"y":35.409},{"x":1757558040769,"y":29.191},{"x":1757557980626,"y":29.909},{"x":1757557920530,"y":30.032},{"x":1757557860319,"y":34.926},{"x":1757557803008,"y":30.298},{"x":1757557742851,"y":30.22},{"x":1757557682715,"y":35.016},{"x":1757557622538,"y":37.168},{"x":1757557562387,"y":36.022},{"x":1757557502234,"y":31.09},{"x":1757557442089,"y":30.546},{"x":1757557381921,"y":29.113},{"x":1757557321765,"y":26.464},{"x":1757557261593,"y":31.142},{"x":1757557201446,"y":30.192},{"x":1757557141280,"y":29.373},{"x":1757557081127,"y":33.044},{"x":1757557020947,"y":36.511},{"x":1757556960799,"y":31.686},{"x":1757556900728,"y":33.537},{"x":1757556840476,"y":30.081},{"x":1757556780310,"y":30.219},{"x":1757556720213,"y":38.241},{"x":1757556662899,"y":36.8},{"x":1757556602625,"y":45.279},{"x":1757556542473,"y":35.682},{"x":1757556482324,"y":40.216},{"x":1757556422176,"y":32.32},{"x":1757556362019,"y":30.332},{"x":1757556301858,"y":43.305},{"x":1757556241705,"y":31.031},{"x":1757556181534,"y":30.885},{"x":1757556121385,"y":31.777},{"x":1757556061234,"y":27.208},{"x":1757556000961,"y":26.846},{"x":1757555940647,"y":41.152},{"x":1757555880492,"y":49.324},{"x":1757555820272,"y":50.877},{"x":1757555762915,"y":55.68},{"x":1757555702766,"y":49.742},{"x":1757555642609,"y":36.992},{"x":1757555582462,"y":30.878},{"x":1757555522316,"y":30.897},{"x":1757555462153,"y":32.636},{"x":1757555401982,"y":32.527},{"x":1757555341735,"y":32.289},{"x":1757555281583,"y":27.354},{"x":1757555221426,"y":30.999},{"x":1757555161274,"y":33.729},{"x":1757555101149,"y":30.793},{"x":1757555040966,"y":33.521},{"x":1757554980823,"y":31.425},{"x":1757554920681,"y":28.233},{"x":1757554860542,"y":29.424},{"x":1757554800402,"y":31.639},{"x":1757554740252,"y":33.404},{"x":1757554682951,"y":38.626},{"x":1757554622802,"y":37.844},{"x":1757554562641,"y":36.224},{"x":1757554502490,"y":30.736},{"x":1757554442331,"y":33.582},{"x":1757554382183,"y":31.601},{"x":1757554322027,"y":31.216},{"x":1757554261879,"y":31.984},{"x":1757554201725,"y":31.785},{"x":1757554141580,"y":31.794},{"x":1757554081428,"y":37.018},{"x":1757554021280,"y":35.684},{"x":1757553961114,"y":35.831},{"x":1757553900964,"y":35.286},{"x":1757553840813,"y":35.404},{"x":1757553780669,"y":38.959},{"x":1757553720512,"y":32.721},{"x":1757553660353,"y":31.761},{"x":1757553603027,"y":33.252},{"x":1757553542835,"y":32.449},{"x":1757553482699,"y":34.714},{"x":1757553422540,"y":33.54},{"x":1757553362379,"y":32.034},{"x":1757553302215,"y":35.907},{"x":1757553242056,"y":31.471},{"x":1757553181896,"y":32.216},{"x":1757553121678,"y":30.51},{"x":1757553061481,"y":30.811},{"x":1757553001303,"y":29.563},{"x":1757552941147,"y":27.913},{"x":1757552880988,"y":28.32},{"x":1757552820835,"y":29.697},{"x":1757552760683,"y":33.347},{"x":1757552700617,"y":30.16},{"x":1757552640432,"y":32.03},{"x":1757552580307,"y":34.136},{"x":1757552522934,"y":46.051},{"x":1757552462788,"y":41.431},{"x":1757552402642,"y":44.746},{"x":1757552342455,"y":41.577},{"x":1757552282247,"y":28.805},{"x":1757552222093,"y":35.232},{"x":1757552161933,"y":28.579},{"x":1757552101761,"y":30.529},{"x":1757552041597,"y":32.894},{"x":1757551981449,"y":30.574},{"x":1757551921310,"y":34.941},{"x":1757551861152,"y":33.903},{"x":1757551800983,"y":31.757},{"x":1757551740827,"y":32.283},{"x":1757551680701,"y":29.588},{"x":1757551620575,"y":29.134},{"x":1757551560400,"y":29.797},{"x":1757551503043,"y":39.123},{"x":1757551442853,"y":33.885},{"x":1757551382716,"y":32.863},{"x":1757551322563,"y":32.011},{"x":1757551262413,"y":32.775},{"x":1757551202254,"y":32.462},{"x":1757551142105,"y":31.035},{"x":1757551081932,"y":30.836},{"x":1757551021775,"y":33.675},{"x":1757550961607,"y":34.523},{"x":1757550901456,"y":27.515},{"x":1757550841289,"y":39.918},{"x":1757550781119,"y":40.442},{"x":1757550720946,"y":41.472},{"x":1757550660803,"y":42.913},{"x":1757550600719,"y":43.262},{"x":1757550540492,"y":37.799},{"x":1757550480331,"y":34.046},{"x":1757550420394,"y":35.848},{"x":1757550362884,"y":35.06},{"x":1757550302745,"y":29.187},{"x":1757550242594,"y":30.243},{"x":1757550182447,"y":30.513},{"x":1757550122303,"y":32.03},{"x":1757550062151,"y":35.279},{"x":1757550001979,"y":31.836},{"x":1757549941835,"y":34.455},{"x":1757549881681,"y":32.005},{"x":1757549821553,"y":30.67},{"x":1757549761367,"y":31.43},{"x":1757549701209,"y":32.105},{"x":1757549641037,"y":32.641},{"x":1757549580882,"y":30.234},{"x":1757549520742,"y":31.884},{"x":1757549460538,"y":38.716},{"x":1757549400335,"y":32.392},{"x":1757549342988,"y":30.946},{"x":1757549282808,"y":35.475},{"x":1757549222655,"y":30.824},{"x":1757549162507,"y":29.193},{"x":1757549102342,"y":31.738},{"x":1757549042176,"y":29.054},{"x":1757548981999,"y":28.19},{"x":1757548921842,"y":27.439},{"x":1757548861667,"y":33.619},{"x":1757548801625,"y":50.792},{"x":1757548741247,"y":47.721},{"x":1757548681031,"y":48.155},{"x":1757548620882,"y":48.077},{"x":1757548560729,"y":46.601},{"x":1757548500580,"y":33.979},{"x":1757548440475,"y":31.982},{"x":1757548380366,"y":40.715},{"x":1757548322991,"y":45.832},{"x":1757548262835,"y":43.672},{"x":1757548202677,"y":43.778},{"x":1757548142528,"y":48.351},{"x":1757548082376,"y":34.574},{"x":1757548022226,"y":32.121},{"x":1757547962060,"y":31.496},{"x":1757547901904,"y":31.402},{"x":1757547841747,"y":32.997},{"x":1757547781585,"y":36.225},{"x":1757547721433,"y":32.314},{"x":1757547661288,"y":41.071},{"x":1757547601134,"y":32.46},{"x":1757547540958,"y":39.02},{"x":1757547480814,"y":32.641},{"x":1757547420661,"y":35.658},{"x":1757547360548,"y":35.363},{"x":1757547300507,"y":36.347},{"x":1757547242974,"y":37.608},{"x":1757547182812,"y":41.11},{"x":1757547122656,"y":37.212},{"x":1757547062502,"y":38.006},{"x":1757547002326,"y":38.932},{"x":1757546942166,"y":48.023},{"x":1757546882023,"y":50.859},{"x":1757546821864,"y":45.494},{"x":1757546761713,"y":47.13},{"x":1757546701557,"y":47.168},{"x":1757546641408,"y":37.504},{"x":1757546581245,"y":41.848},{"x":1757546521099,"y":42.446},{"x":1757546460944,"y":41.876},{"x":1757546400860,"y":40.113},{"x":1757546340635,"y":38.906},{"x":1757546280484,"y":37.457},{"x":1757546220335,"y":35.151},{"x":1757546163019,"y":33.761},{"x":1757546102862,"y":42.077},{"x":1757546042699,"y":44.536},{"x":1757545982552,"y":48.789},{"x":1757545922389,"y":49.711},{"x":1757545862193,"y":50.098},{"x":1757545801997,"y":40.295},{"x":1757545741843,"y":44.851},{"x":1757545681680,"y":35.027},{"x":1757545621526,"y":37.752},{"x":1757545561379,"y":33.075},{"x":1757545501219,"y":35.895},{"x":1757545441063,"y":32.823},{"x":1757545380905,"y":31.158},{"x":1757545320751,"y":34.141},{"x":1757545260610,"y":30.322},{"x":1757545200604,"y":32.286},{"x":1757545140256,"y":36.661},{"x":1757545082990,"y":32.769},{"x":1757545022837,"y":47.185},{"x":1757544962674,"y":44.857},{"x":1757544902519,"y":44.215},{"x":1757544842368,"y":40.256},{"x":1757544782236,"y":41.532},{"x":1757544722069,"y":42.82},{"x":1757544661894,"y":34.508},{"x":1757544601744,"y":37.236},{"x":1757544541632,"y":32.405},{"x":1757544481434,"y":31.955},{"x":1757544421266,"y":33.252},{"x":1757544361120,"y":29.876},{"x":1757544300954,"y":32.559},{"x":1757544240795,"y":35.839},{"x":1757544180644,"y":35.407},{"x":1757544120500,"y":39.459},{"x":1757544060331,"y":32.251},{"x":1757544002964,"y":47.023},{"x":1757543942817,"y":56.883},{"x":1757543882655,"y":54.235},{"x":1757543822511,"y":61.057},{"x":1757543762356,"y":45.639},{"x":1757543702195,"y":49.319},{"x":1757543642033,"y":46.64},{"x":1757543581884,"y":53.157},{"x":1757543521717,"y":55.125},{"x":1757543461570,"y":50.48},{"x":1757543401424,"y":42.164},{"x":1757543341260,"y":40.626},{"x":1757543281124,"y":32.899},{"x":1757543220933,"y":36.798},{"x":1757543160781,"y":31.763},{"x":1757543100646,"y":33.386},{"x":1757543040526,"y":30.423},{"x":1757542980368,"y":34.566},{"x":1757542920299,"y":39.061},{"x":1757542862908,"y":37.689},{"x":1757542802757,"y":39.483},{"x":1757542742600,"y":35.944},{"x":1757542682443,"y":33.607},{"x":1757542622279,"y":37.088},{"x":1757542562103,"y":30.732},{"x":1757542501922,"y":32.026},{"x":1757542441775,"y":32.66},{"x":1757542381629,"y":31.833},{"x":1757542321457,"y":37.69},{"x":1757542261269,"y":36.539},{"x":1757542201077,"y":39.392},{"x":1757542140913,"y":39.668},{"x":1757542080741,"y":41.883},{"x":1757542020586,"y":38.686},{"x":1757541960435,"y":37.043},{"x":1757541900416,"y":37.399},{"x":1757541843015,"y":33.773},{"x":1757541782866,"y":47.327},{"x":1757541722701,"y":45.238},{"x":1757541662543,"y":48.774},{"x":1757541602398,"y":50.91},{"x":1758214028342,"y":60.766},{"x":1758213967990,"y":73.04},{"x":1758213907955,"y":59.637},{"x":1758213847554,"y":73.55},{"x":1758213787265,"y":79.445},{"x":1758213726932,"y":69.728},{"x":1758213666685,"y":86.464},{"x":1758213606561,"y":86.891},{"x":1758213546199,"y":69.289},{"x":1758213485945,"y":52.894},{"x":1758213425597,"y":60.937},{"x":1758213365386,"y":55.773},{"x":1758213305392,"y":68.916},{"x":1758213244924,"y":68.814},{"x":1758213184636,"y":63.558},{"x":1758213124377,"y":56.61},{"x":1758213064085,"y":55.679},{"x":1758213003867,"y":66.882},{"x":1758212943483,"y":64.417},{"x":1758212883290,"y":71.174},{"x":1758212823026,"y":68.101},{"x":1758212762719,"y":57.313},{"x":1758212702495,"y":52.129},{"x":1758212642125,"y":75.648},{"x":1758212581869,"y":76.391},{"x":1758212521626,"y":69.028},{"x":1758212461361,"y":57.366},{"x":1758212401265,"y":57.646},{"x":1758212340769,"y":72.917},{"x":1758212280462,"y":60.24},{"x":1758212220341,"y":63.538},{"x":1758212163168,"y":62.113},{"x":1758212102900,"y":55.48},{"x":1758212042558,"y":74.902},{"x":1758211982244,"y":64.309},{"x":1758211921940,"y":83.985},{"x":1758211877707,"y":95.841},{"x":1758211801560,"y":75.022},{"x":1758211741142,"y":97.438},{"x":1758211697407,"y":79.537},{"x":1758211637256,"y":59.907},{"x":1758211560323,"y":75.851},{"x":1758211500638,"y":76.539},{"x":1758211456935,"y":50.108},{"x":1758211396794,"y":65.447},{"x":1758211336687,"y":54.814},{"x":1758211276546,"y":58.307},{"x":1758211203700,"y":62.293},{"x":1758211156354,"y":73.955},{"x":1758211096234,"y":76.896},{"x":1758211026224,"y":83.865},{"x":1758210976039,"y":92.079},{"x":1758210916043,"y":62.098},{"x":1758210842371,"y":57.009},{"x":1758210795721,"y":50.246},{"x":1758210735590,"y":68.645},{"x":1758210675421,"y":62.873},{"x":1758210615440,"y":65.561},{"x":1758210555183,"y":55.628},{"x":1758210495056,"y":65.554},{"x":1758210434880,"y":67.626},{"x":1758210374794,"y":87.539},{"x":1758210314827,"y":84.123},{"x":1758210254579,"y":88.52},{"x":1758210206340,"y":85.311},{"x":1758210134310,"y":84.105},{"x":1758210074224,"y":68.477},{"x":1758210014237,"y":56.085},{"x":1758209954051,"y":80.287},{"x":1758209893908,"y":56.835},{"x":1758209833802,"y":63.252},{"x":1758209773699,"y":53.532},{"x":1758209713746,"y":80.388},{"x":1758209653540,"y":79.49},{"x":1758209593336,"y":72.841},{"x":1758209533158,"y":85.424},{"x":1758209473078,"y":87.306},{"x":1758209413102,"y":69.443},{"x":1758209352902,"y":63.322},{"x":1758209292760,"y":60.985},{"x":1758209232613,"y":57.15},{"x":1758209172501,"y":53.449},{"x":1758209112463,"y":47.883},{"x":1758209052208,"y":55.848},{"x":1758208992123,"y":51.498},{"x":1758208931937,"y":44.687},{"x":1758208871836,"y":61.17},{"x":1758208811864,"y":59.015},{"x":1758208751646,"y":57.882},{"x":1758208691568,"y":58.642},{"x":1758208631461,"y":47.841},{"x":1758208571347,"y":43.805},{"x":1758208511412,"y":43.302},{"x":1758208451087,"y":47.312},{"x":1758208390928,"y":47.547},{"x":1758208330825,"y":53.422},{"x":1758208270763,"y":55.339},{"x":1758208210798,"y":42.986},{"x":1758208150538,"y":56.185},{"x":1758208090427,"y":52.03},{"x":1758208030327,"y":55.362},{"x":1758207970232,"y":50.418},{"x":1758207910324,"y":69.692},{"x":1758207850048,"y":62.241},{"x":1758207789938,"y":60.858},{"x":1758207729791,"y":74.456},{"x":1758207669735,"y":73.328},{"x":1758207603776,"y":62.66},{"x":1758207549479,"y":36.463},{"x":1758207489370,"y":37.87},{"x":1758207424713,"y":50.082},{"x":1758207369129,"y":43.499},{"x":1758207309166,"y":50.855},{"x":1758207248885,"y":36.119},{"x":1758207188714,"y":40.699},{"x":1758207128620,"y":41.421},{"x":1758207068539,"y":43.785},{"x":1758207008501,"y":44.009},{"x":1758206948231,"y":55.485},{"x":1758206888141,"y":90.875},{"x":1758206827962,"y":79.725},{"x":1758206767870,"y":62.09},{"x":1758206707887,"y":60.261},{"x":1758206647661,"y":61.601},{"x":1758206587566,"y":50.925},{"x":1758206527464,"y":57.053},{"x":1758206467306,"y":60.504},{"x":1758206407328,"y":53.451},{"x":1758206347103,"y":49.195},{"x":1758206287012,"y":61.25},{"x":1758206226851,"y":79.915},{"x":1758206166751,"y":75.754},{"x":1758206106836,"y":83.468},{"x":1758206046571,"y":85.422},{"x":1758205986447,"y":68.955},{"x":1758205926361,"y":67.85},{"x":1758205866299,"y":76.274},{"x":1758205806269,"y":56.64},{"x":1758205746054,"y":67.656},{"x":1758205685948,"y":59.513},{"x":1758205625863,"y":78.176},{"x":1758205565728,"y":63.304},{"x":1758205505760,"y":72.286},{"x":1758205445544,"y":60.159},{"x":1758205385435,"y":71.354},{"x":1758205325326,"y":85.311},{"x":1758205265234,"y":84.349},{"x":1758205205268,"y":81.042},{"x":1758205144979,"y":59.397},{"x":1758205084882,"y":74.086},{"x":1758205024733,"y":71.797},{"x":1758204964630,"y":63.21},{"x":1758204904646,"y":80.314},{"x":1758204844421,"y":79.426},{"x":1758204784319,"y":58.693},{"x":1758204724220,"y":59.69},{"x":1758204664100,"y":62.098},{"x":1758204604138,"y":62.734},{"x":1758204543860,"y":54.369},{"x":1758204483768,"y":75.766},{"x":1758204423662,"y":59.331},{"x":1758204363519,"y":86.912},{"x":1758204303443,"y":69.971},{"x":1758204243199,"y":82.453},{"x":1758204183077,"y":75.106},{"x":1758204122994,"y":58.263},{"x":1758204062857,"y":54.584},{"x":1758204002888,"y":49.986},{"x":1758203942654,"y":43.074},{"x":1758203882510,"y":56.949},{"x":1758203822420,"y":41.886},{"x":1758203762302,"y":63.239},{"x":1758203702328,"y":54.822},{"x":1758203642109,"y":56.777},{"x":1758203582003,"y":66.6},{"x":1758203521909,"y":55.261},{"x":1758203461785,"y":47.243},{"x":1758203401829,"y":83.538},{"x":1758203341545,"y":57.073},{"x":1758203281462,"y":59.131},{"x":1758203221301,"y":56.015},{"x":1758203161198,"y":39.644},{"x":1758203101256,"y":43.036},{"x":1758203040997,"y":52.567},{"x":1758202980887,"y":53.662},{"x":1758202920784,"y":65.236},{"x":1758202860632,"y":58.28},{"x":1758202800755,"y":53.984},{"x":1758202740451,"y":51.161},{"x":1758202680401,"y":82.399},{"x":1758202620298,"y":69.048},{"x":1758202560280,"y":68.586},{"x":1758202500586,"y":46.626},{"x":1758202451447,"y":31.216},{"x":1758202382971,"y":48.557},{"x":1758202322886,"y":60.484},{"x":1758202262774,"y":36.658},{"x":1758202202828,"y":78.691},{"x":1758202150829,"y":76.303},{"x":1758202082457,"y":79.167},{"x":1758202030640,"y":98.909},{"x":1758201970545,"y":61.965},{"x":1758201910548,"y":76.824},{"x":1758201841982,"y":64.786},{"x":1758201781867,"y":58.732},{"x":1758201721744,"y":73.858},{"x":1758201669976,"y":75.22},{"x":1758201601630,"y":48.35},{"x":1758201549731,"y":58.995},{"x":1758201489582,"y":48.503},{"x":1758201421177,"y":65.423},{"x":1758201361060,"y":66.014},{"x":1758201301121,"y":70.367},{"x":1758201240831,"y":77.88},{"x":1758201180794,"y":69.55},{"x":1758201120608,"y":69.801},{"x":1758201060590,"y":76.179},{"x":1758201000727,"y":68.544},{"x":1758200948566,"y":66.077},{"x":1758200888418,"y":69.968},{"x":1758200828343,"y":69.314},{"x":1758200768289,"y":88.462},{"x":1758200708214,"y":90.459},{"x":1758200647854,"y":80.613},{"x":1758200587614,"y":70.291},{"x":1758200527356,"y":67.81},{"x":1758200464470,"y":77.804},{"x":1758200403700,"y":73.354},{"x":1758200346665,"y":66.346},{"x":1758200286458,"y":74.834},{"x":1758200224615,"y":50.014},{"x":1758200163907,"y":53.647},{"x":1758200104367,"y":55.777},{"x":1758200043770,"y":47.748},{"x":1758199983779,"y":44.069},{"x":1758199924891,"y":60.135},{"x":1758199864612,"y":45.38},{"x":1758199804463,"y":59.834},{"x":1758199743950,"y":53.966},{"x":1758199681089,"y":57.824},{"x":1758199623399,"y":56.925},{"x":1758199560616,"y":39.007},{"x":1758199502998,"y":51.475},{"x":1758199442636,"y":50.775},{"x":1758199382333,"y":42.882},{"x":1758199322028,"y":39.79},{"x":1758199261724,"y":34.423},{"x":1758199201545,"y":50.351},{"x":1758199141078,"y":47.414},{"x":1758199080777,"y":62.348},{"x":1758199020584,"y":49.548},{"x":1758198960304,"y":41.332},{"x":1758198907496,"y":37.938},{"x":1758198843468,"y":52.853},{"x":1758198782769,"y":46.406},{"x":1758198722357,"y":54.766},{"x":1758198662105,"y":57.526},{"x":1758198601895,"y":43.164},{"x":1758198541455,"y":56.754},{"x":1758198481099,"y":61.491},{"x":1758198421581,"y":41.68},{"x":1758198360604,"y":62.268},{"x":1758198306373,"y":42.031},{"x":1758198246150,"y":57.464},{"x":1758198186081,"y":54.261},{"x":1758198122457,"y":55.299},{"x":1758198062180,"y":56.204},{"x":1758198005863,"y":68.237},{"x":1758197945643,"y":53.732},{"x":1758197880924,"y":60.434},{"x":1758197825448,"y":58.271},{"x":1758197765346,"y":60.167},{"x":1758197705344,"y":54.869},{"x":1758197645097,"y":46.82},{"x":1758197584992,"y":50.017},{"x":1758197524885,"y":62.177},{"x":1758197464779,"y":61.486},{"x":1758197404826,"y":50.2},{"x":1758197344530,"y":60.775},{"x":1758197284433,"y":65.29},{"x":1758197224333,"y":44.571},{"x":1758197164245,"y":49.622},{"x":1758197104252,"y":59.682},{"x":1758197044029,"y":70.138},{"x":1758196983932,"y":54.262},{"x":1758196923819,"y":48.901},{"x":1758196863726,"y":72.005},{"x":1758196803687,"y":56.645},{"x":1758196743514,"y":89.12},{"x":1758196683433,"y":74.749},{"x":1758196623313,"y":81.357},{"x":1758196563273,"y":67.773},{"x":1758196503263,"y":73.264},{"x":1758196443022,"y":58.982},{"x":1758196382905,"y":56.983},{"x":1758196322808,"y":75.605},{"x":1758196262711,"y":62.988},{"x":1758196202736,"y":68.914},{"x":1758196142452,"y":58.721},{"x":1758196082358,"y":54.31},{"x":1758196022252,"y":75.021},{"x":1758195962114,"y":63.458},{"x":1758195902134,"y":63.674},{"x":1758195841890,"y":53.517},{"x":1758195781798,"y":81.082},{"x":1758195721693,"y":63.955},{"x":1758195661592,"y":77.279},{"x":1758195601611,"y":81.356},{"x":1758195541336,"y":82.443},{"x":1758195481253,"y":71.6},{"x":1758195421166,"y":64.198},{"x":1758195361038,"y":49.702},{"x":1758195301054,"y":54.494},{"x":1758195240898,"y":69.235},{"x":1758195180811,"y":77.123},{"x":1758195120631,"y":58.348},{"x":1758195060541,"y":75.45},{"x":1758195000701,"y":63.908},{"x":1758194940302,"y":74.607},{"x":1758194880322,"y":58.676},{"x":1758194820235,"y":58.392},{"x":1758194763064,"y":89.431},{"x":1758194703078,"y":63.206},{"x":1758194642789,"y":56.549},{"x":1758194582681,"y":56.191},{"x":1758194522591,"y":64.094},{"x":1758194462491,"y":77.757},{"x":1758194402594,"y":88.821},{"x":1758194342289,"y":53.636},{"x":1758194282186,"y":63.615},{"x":1758194222110,"y":61.341},{"x":1758194161991,"y":56.349},{"x":1758194102111,"y":53.574},{"x":1758194041288,"y":54.289},{"x":1758193981690,"y":59.814},{"x":1758193921574,"y":78.691},{"x":1758193861495,"y":80.4},{"x":1758193801540,"y":59.371},{"x":1758193741283,"y":55.604},{"x":1758193681207,"y":58.676},{"x":1758193621071,"y":78.649},{"x":1758193560965,"y":75.396},{"x":1758193501092,"y":61.878},{"x":1758193440759,"y":57.16},{"x":1758193380758,"y":50.541},{"x":1758193320563,"y":58.446},{"x":1758193273756,"y":94.531},{"x":1758193201292,"y":72.115},{"x":1758193140308,"y":71.039},{"x":1758193080261,"y":50.803},{"x":1758193020128,"y":52.66},{"x":1758192973192,"y":59.102},{"x":1758192913189,"y":75.968},{"x":1758192852994,"y":80.247},{"x":1758192792855,"y":89.801},{"x":1758192732701,"y":75.826},{"x":1758192672596,"y":70.587},{"x":1758192612615,"y":90.877},{"x":1758192552385,"y":89.51},{"x":1758192492284,"y":85.481},{"x":1758192432192,"y":75.394},{"x":1758192372113,"y":57.612},{"x":1758192312109,"y":77.449},{"x":1758192251889,"y":61.811},{"x":1758192191781,"y":64.97},{"x":1758192131685,"y":79.459},{"x":1758192071593,"y":54.251},{"x":1758192011608,"y":46.359},{"x":1758191951326,"y":46.273},{"x":1758191891227,"y":45.606},{"x":1758191831133,"y":56.235},{"x":1758191771024,"y":50.166},{"x":1758191711181,"y":50.608},{"x":1758191650864,"y":43.062},{"x":1758191590740,"y":50.975},{"x":1758191530624,"y":46.267},{"x":1758191470533,"y":66.726},{"x":1758191410543,"y":61.372},{"x":1758191350322,"y":52.875},{"x":1758191290169,"y":51.708},{"x":1758191230076,"y":69.905},{"x":1758191169958,"y":68.753},{"x":1758191110048,"y":73.072},{"x":1758191049778,"y":72.799},{"x":1758190989621,"y":67.737},{"x":1758190929565,"y":82.929},{"x":1758190869411,"y":59.41},{"x":1758190809394,"y":69.513},{"x":1758190749164,"y":60.266},{"x":1758190689065,"y":52.494},{"x":1758190628965,"y":53.024},{"x":1758190568858,"y":46.698},{"x":1758190508827,"y":62.622},{"x":1758190448613,"y":49.908},{"x":1758190388515,"y":50.569},{"x":1758190328410,"y":72.335},{"x":1758190268306,"y":54.097},{"x":1758190208320,"y":59.454},{"x":1758190148102,"y":64.314},{"x":1758190088005,"y":59.623},{"x":1758190027914,"y":68.572},{"x":1758189967758,"y":49.566},{"x":1758189906633,"y":58.11},{"x":1758189847548,"y":56.088},{"x":1758189787452,"y":56.538},{"x":1758189727348,"y":55.887},{"x":1758189667257,"y":43.607},{"x":1758189603692,"y":65.686},{"x":1758189545771,"y":60.822},{"x":1758189484051,"y":68.374},{"x":1758189424075,"y":77.408},{"x":1758189364988,"y":48.62},{"x":1758189306760,"y":65.018},{"x":1758189246534,"y":75.093},{"x":1758189186446,"y":61.809},{"x":1758189126347,"y":65.887},{"x":1758189066259,"y":43.644},{"x":1758189006420,"y":33.587},{"x":1758188946006,"y":65.614},{"x":1758188885952,"y":61.778},{"x":1758188825804,"y":55.845},{"x":1758188765701,"y":73.0},{"x":1758188705713,"y":79.542},{"x":1758188645444,"y":56.917},{"x":1758188585344,"y":54.188},{"x":1758188525248,"y":43.286},{"x":1758188465142,"y":62.98},{"x":1758188401910,"y":49.89},{"x":1758188344953,"y":50.407},{"x":1758188284845,"y":43.435},{"x":1758188224763,"y":62.136},{"x":1758188164640,"y":57.559},{"x":1758188104540,"y":52.965},{"x":1758188044252,"y":66.649},{"x":1758187983881,"y":69.84},{"x":1758187923574,"y":47.074},{"x":1758187863324,"y":49.75},{"x":1758187803100,"y":61.735},{"x":1758187742666,"y":58.299},{"x":1758187682362,"y":50.715},{"x":1758187622021,"y":61.031},{"x":1758187561723,"y":64.591},{"x":1758187501482,"y":72.179},{"x":1758187441061,"y":71.754},{"x":1758187380859,"y":61.84},{"x":1758187320618,"y":57.714},{"x":1758187260329,"y":61.585},{"x":1758187200746,"y":82.881},{"x":1758187142945,"y":65.223},{"x":1758187082637,"y":76.832},{"x":1758187022309,"y":82.97},{"x":1758186961972,"y":73.12},{"x":1758186901818,"y":65.963},{"x":1758186841407,"y":51.392},{"x":1758186781073,"y":63.664},{"x":1758186720801,"y":57.096},{"x":1758186660474,"y":67.834},{"x":1758186600548,"y":56.175},{"x":1758186558595,"y":62.051},{"x":1758186498594,"y":79.241},{"x":1758186438597,"y":52.839},{"x":1758186378596,"y":49.701},{"x":1758186301933,"y":53.26},{"x":1758186258608,"y":65.212},{"x":1758186181254,"y":86.852},{"x":1758186121109,"y":52.317},{"x":1758186060964,"y":61.906},{"x":1758186001531,"y":50.893},{"x":1758185958589,"y":48.632},{"x":1758185880652,"y":63.763},{"x":1758185820515,"y":50.076},{"x":1758185760432,"y":59.61},{"x":1758185700586,"y":72.401},{"x":1758185640305,"y":63.697},{"x":1758185598649,"y":77.505},{"x":1758185538594,"y":79.059},{"x":1758185478603,"y":62.858},{"x":1758185418706,"y":57.928},{"x":1758185358598,"y":42.496},{"x":1758185298596,"y":61.648},{"x":1758185238584,"y":73.637},{"x":1758185178593,"y":50.487},{"x":1758185116101,"y":42.689},{"x":1758185042217,"y":47.555},{"x":1758184998593,"y":63.102},{"x":1758184938655,"y":42.956},{"x":1758184878590,"y":39.304},{"x":1758184818725,"y":39.67},{"x":1758184758588,"y":44.096},{"x":1758184698590,"y":52.512},{"x":1758184621409,"y":49.974},{"x":1758184578592,"y":51.981},{"x":1758184518727,"y":55.397},{"x":1758184458585,"y":63.688},{"x":1758184398627,"y":58.863},{"x":1758184338594,"y":63.148},{"x":1758184278590,"y":69.146},{"x":1758184216141,"y":55.115},{"x":1758184158594,"y":54.622},{"x":1758184098591,"y":49.773},{"x":1758184038597,"y":40.275},{"x":1758183960340,"y":61.801},{"x":1758183918849,"y":48.271},{"x":1758183858585,"y":74.002},{"x":1758183798616,"y":51.825},{"x":1758183738599,"y":48.822},{"x":1758183678590,"y":54.917},{"x":1758183618759,"y":51.51},{"x":1758183558592,"y":65.123},{"x":1758183498613,"y":55.533},{"x":1758183438596,"y":64.911},{"x":1758183378600,"y":79.046},{"x":1758183305655,"y":75.142},{"x":1758183258592,"y":81.702},{"x":1758183198593,"y":68.921},{"x":1758183138591,"y":70.359},{"x":1758183078593,"y":59.927},{"x":1758183005316,"y":61.272},{"x":1758182944755,"y":67.932},{"x":1758182884732,"y":54.728},{"x":1758182824597,"y":63.762},{"x":1758182764632,"y":76.246},{"x":1758182709318,"y":53.467},{"x":1758182658592,"y":66.716},{"x":1758182598601,"y":60.264},{"x":1758182538595,"y":56.892},{"x":1758182465148,"y":52.131},{"x":1758182403451,"y":51.335},{"x":1758182358583,"y":43.115},{"x":1758182298592,"y":51.867},{"x":1758182225443,"y":48.416},{"x":1758182164616,"y":48.247},{"x":1758182104979,"y":55.28},{"x":1758182044344,"y":60.362},{"x":1758181984215,"y":66.024},{"x":1758181924145,"y":59.233},{"x":1758181867700,"y":48.882},{"x":1758181818698,"y":61.684},{"x":1758181758586,"y":50.458},{"x":1758181698589,"y":55.807},{"x":1758181638586,"y":55.489},{"x":1758181578586,"y":54.112},{"x":1758181516106,"y":63.224},{"x":1758181458584,"y":58.414},{"x":1758181398586,"y":57.786},{"x":1758181338581,"y":46.602},{"x":1758181278584,"y":54.026},{"x":1758181218728,"y":43.282},{"x":1758181158589,"y":72.187},{"x":1758181098592,"y":58.041},{"x":1758181038591,"y":51.903},{"x":1758180978582,"y":61.124},{"x":1758180906975,"y":59.071},{"x":1758180858630,"y":60.492},{"x":1758180798594,"y":55.031},{"x":1758180738585,"y":52.568},{"x":1758180678646,"y":56.069},{"x":1758180606816,"y":50.031},{"x":1758180546395,"y":54.417},{"x":1758180484283,"y":57.777},{"x":1758180426355,"y":66.14},{"x":1758180366354,"y":48.069},{"x":1758180309959,"y":61.002},{"x":1758180258588,"y":60.327},{"x":1758180198586,"y":67.539},{"x":1758180138598,"y":58.856},{"x":1758180063971,"y":59.075},{"x":1758180018700,"y":61.867},{"x":1758179958581,"y":55.654},{"x":1758179898582,"y":53.349},{"x":1758179838586,"y":42.926},{"x":1758179766200,"y":52.962},{"x":1758179706554,"y":51.558},{"x":1758179646185,"y":52.943},{"x":1758179586155,"y":46.164},{"x":1758179526153,"y":46.293},{"x":1758179469343,"y":57.647},{"x":1758179418763,"y":49.498},{"x":1758179358596,"y":60.338},{"x":1758179298596,"y":63.64},{"x":1758179238609,"y":47.042},{"x":1758179178599,"y":53.222},{"x":1758179118531,"y":50.651},{"x":1758179058064,"y":47.19},{"x":1758178997742,"y":50.27},{"x":1758178937451,"y":47.284},{"x":1758178877146,"y":43.545},{"x":1758178803712,"y":57.555},{"x":1758178756507,"y":58.971},{"x":1758178696130,"y":73.644},{"x":1758178623622,"y":61.896},{"x":1758178575559,"y":64.299},{"x":1758178515391,"y":69.465},{"x":1758178455041,"y":62.024},{"x":1758178394728,"y":54.258},{"x":1758178334426,"y":54.028},{"x":1758178274134,"y":59.636},{"x":1758178213932,"y":67.053},{"x":1758178153538,"y":86.356},{"x":1758178093220,"y":59.659},{"x":1758178032919,"y":76.087},{"x":1758177972664,"y":75.104},{"x":1758177912422,"y":69.929},{"x":1758177851921,"y":72.339},{"x":1758177791614,"y":89.498},{"x":1758177731313,"y":57.715},{"x":1758177671018,"y":72.184},{"x":1758177610825,"y":68.933},{"x":1758177550413,"y":64.184},{"x":1758177490110,"y":75.469},{"x":1758177429856,"y":59.139},{"x":1758177369526,"y":73.079},{"x":1758177309369,"y":76.033},{"x":1758177249025,"y":81.049},{"x":1758177188612,"y":83.623},{"x":1758177128304,"y":81.059},{"x":1758177066077,"y":73.241},{"x":1758177007817,"y":79.108},{"x":1758176947409,"y":77.471},{"x":1758176887054,"y":106.061},{"x":1758176826746,"y":75.495},{"x":1758176766448,"y":70.626},{"x":1758176706216,"y":108.94},{"x":1758176645806,"y":111.385},{"x":1758176585583,"y":106.728},{"x":1758176525196,"y":91.519},{"x":1758176464843,"y":121.812},{"x":1758176404704,"y":107.796},{"x":1758176344291,"y":82.258},{"x":1758176283938,"y":121.799},{"x":1758176223614,"y":98.471},{"x":1758176163296,"y":68.751},{"x":1758176103058,"y":87.04},{"x":1758176042629,"y":103.662},{"x":1758175982335,"y":114.832},{"x":1758175922031,"y":87.363},{"x":1758175861780,"y":87.089},{"x":1758175801644,"y":90.288},{"x":1758175741076,"y":80.92},{"x":1758175680770,"y":68.378},{"x":1758175620380,"y":53.035},{"x":1758175560216,"y":41.612},{"x":1758175503113,"y":41.969},{"x":1758175442622,"y":37.95},{"x":1758175382333,"y":42.519},{"x":1758175321986,"y":35.632},{"x":1758175261688,"y":33.538},{"x":1758175201968,"y":33.092},{"x":1758175141063,"y":34.09},{"x":1758175080717,"y":38.046},{"x":1758175020425,"y":36.76},{"x":1758174960271,"y":34.882},{"x":1758174904356,"y":31.825},{"x":1758174843733,"y":31.917},{"x":1758174786817,"y":28.788},{"x":1758174738581,"y":34.457},{"x":1758174678581,"y":31.645},{"x":1758174618775,"y":35.41},{"x":1758174546807,"y":35.804},{"x":1758174498578,"y":39.612},{"x":1758174438581,"y":36.722},{"x":1758174378593,"y":39.874},{"x":1758174316101,"y":40.452},{"x":1758174258578,"y":39.497},{"x":1758174186331,"y":37.896},{"x":1758174126192,"y":39.947},{"x":1758174066218,"y":28.489},{"x":1758174004704,"y":29.414},{"x":1758173947534,"y":29.379},{"x":1758173898577,"y":36.439},{"x":1758173838581,"y":41.855},{"x":1758173778584,"y":36.71},{"x":1758173718699,"y":36.573},{"x":1758173658602,"y":33.019},{"x":1758173598603,"y":29.35},{"x":1758173538597,"y":33.431},{"x":1758173478586,"y":31.932},{"x":1758173416156,"y":32.144},{"x":1758173358580,"y":32.94},{"x":1758173298576,"y":30.455},{"x":1758173238579,"y":32.988},{"x":1758173178585,"y":35.878},{"x":1758173118722,"y":35.295},{"x":1758173058583,"y":34.606},{"x":1758172998582,"y":32.736},{"x":1758172938582,"y":35.125},{"x":1758172878619,"y":36.765},{"x":1758172818741,"y":39.007},{"x":1758172758578,"y":39.123},{"x":1758172698582,"y":34.913},{"x":1758172638582,"y":37.471},{"x":1758172578579,"y":33.28},{"x":1758172516107,"y":28.261},{"x":1758172458576,"y":29.136},{"x":1758172398592,"y":28.916},{"x":1758172338578,"y":34.251},{"x":1758172278643,"y":43.801},{"x":1758172218744,"y":40.81},{"x":1758172158586,"y":40.433},{"x":1758172098578,"y":42.539},{"x":1758172038586,"y":42.899},{"x":1758171978577,"y":36.127},{"x":1758171918704,"y":35.793},{"x":1758171858592,"y":30.294},{"x":1758171798590,"y":28.32},{"x":1758171738579,"y":26.088},{"x":1758171678580,"y":33.414},{"x":1758171603761,"y":32.53},{"x":1758171558579,"y":34.665},{"x":1758171498575,"y":34.269},{"x":1758171425216,"y":32.764},{"x":1758171378579,"y":33.592},{"x":1758171318712,"y":30.596},{"x":1758171258480,"y":30.445},{"x":1758171198385,"y":30.361},{"x":1758171138226,"y":26.869},{"x":1758171078135,"y":31.847},{"x":1758171018161,"y":33.047},{"x":1758170957935,"y":30.159},{"x":1758170897828,"y":30.778},{"x":1758170837722,"y":29.764},{"x":1758170777617,"y":32.17},{"x":1758170716122,"y":31.016},{"x":1758170657431,"y":29.019},{"x":1758170597321,"y":33.217},{"x":1758170537215,"y":29.908},{"x":1758170477143,"y":32.744},{"x":1758170417144,"y":41.513},{"x":1758170356910,"y":38.899},{"x":1758170296811,"y":41.209},{"x":1758170236706,"y":40.596},{"x":1758170176616,"y":41.297},{"x":1758170116639,"y":36.437},{"x":1758170056353,"y":34.434},{"x":1758169996211,"y":33.64},{"x":1758169936098,"y":32.305},{"x":1758169876011,"y":31.55},{"x":1758169816025,"y":39.072},{"x":1758169755798,"y":26.422},{"x":1758169695695,"y":33.478},{"x":1758169635602,"y":30.458},{"x":1758169575500,"y":28.818},{"x":1758169515473,"y":43.119},{"x":1758169455198,"y":32.815},{"x":1758169395096,"y":33.335},{"x":1758169334991,"y":37.265},{"x":1758169274891,"y":33.457},{"x":1758169214909,"y":36.491},{"x":1758169154699,"y":32.738},{"x":1758169094592,"y":30.994},{"x":1758169034484,"y":30.697},{"x":1758168974391,"y":30.014},{"x":1758168914420,"y":35.49},{"x":1758168854190,"y":36.185},{"x":1758168794080,"y":36.368},{"x":1758168733980,"y":40.894},{"x":1758168673879,"y":35.444},{"x":1758168613901,"y":39.69},{"x":1758168553676,"y":41.855},{"x":1758168493575,"y":44.819},{"x":1758168433479,"y":43.988},{"x":1758168373375,"y":44.013},{"x":1758168313400,"y":51.178},{"x":1758168253126,"y":46.37},{"x":1758168193020,"y":32.906},{"x":1758168132867,"y":38.552},{"x":1758168072820,"y":37.657},{"x":1758168003749,"y":41.977},{"x":1758167952571,"y":37.862},{"x":1758167892414,"y":31.828},{"x":1758167824095,"y":34.865},{"x":1758167772160,"y":38.982},{"x":1758167712190,"y":33.556},{"x":1758167651959,"y":33.645},{"x":1758167591856,"y":33.45},{"x":1758167531761,"y":33.798},{"x":1758167471649,"y":35.858},{"x":1758167411632,"y":35.476},{"x":1758167351406,"y":37.367},{"x":1758167291303,"y":36.167},{"x":1758167231204,"y":36.118},{"x":1758167171106,"y":32.663},{"x":1758167111133,"y":31.533},{"x":1758167050898,"y":29.923},{"x":1758166990796,"y":30.739},{"x":1758166930696,"y":35.192},{"x":1758166870438,"y":32.374},{"x":1758166810612,"y":34.241},{"x":1758166750304,"y":29.33},{"x":1758166690219,"y":29.754},{"x":1758166630109,"y":34.432},{"x":1758166569995,"y":32.646},{"x":1758166510092,"y":36.342},{"x":1758166449822,"y":34.011},{"x":1758166389691,"y":33.044},{"x":1758166325545,"y":31.379},{"x":1758166269503,"y":33.513},{"x":1758166209566,"y":34.147},{"x":1758166149292,"y":34.137},{"x":1758166089197,"y":31.753},{"x":1758166029105,"y":36.261},{"x":1758165968995,"y":30.091},{"x":1758165909002,"y":32.692},{"x":1758165840460,"y":30.578},{"x":1758165784632,"y":31.688},{"x":1758165728586,"y":33.776},{"x":1758165668571,"y":33.859},{"x":1758165608456,"y":37.668},{"x":1758165548269,"y":43.84},{"x":1758165488135,"y":33.024},{"x":1758165428036,"y":32.078},{"x":1758165367883,"y":37.021},{"x":1758165307742,"y":34.282},{"x":1758165247232,"y":48.067},{"x":1758165186925,"y":48.694},{"x":1758165126627,"y":48.834},{"x":1758165066278,"y":40.664},{"x":1758165006061,"y":40.067},{"x":1758164944648,"y":41.711},{"x":1758164885277,"y":29.992},{"x":1758164824976,"y":33.942},{"x":1758164764729,"y":36.632},{"x":1758164704499,"y":34.003},{"x":1758164644186,"y":34.084},{"x":1758164583955,"y":33.338},{"x":1758164523730,"y":32.519},{"x":1758164463564,"y":36.88},{"x":1758164403485,"y":31.45},{"x":1758164342902,"y":35.015},{"x":1758164282670,"y":37.209},{"x":1758164222408,"y":35.929},{"x":1758164162114,"y":31.659},{"x":1758164101932,"y":31.591},{"x":1758164041555,"y":35.089},{"x":1758163981300,"y":43.257},{"x":1758163921045,"y":41.736},{"x":1758163860768,"y":41.325},{"x":1758163800674,"y":39.954},{"x":1758163740287,"y":48.703},{"x":1758163683211,"y":32.741},{"x":1758163622894,"y":34.051},{"x":1758163562588,"y":34.233},{"x":1758163502465,"y":34.009},{"x":1758163442065,"y":36.357},{"x":1758163381764,"y":31.011},{"x":1758163321429,"y":30.787},{"x":1758163261175,"y":33.593},{"x":1758163201009,"y":30.179},{"x":1758163140582,"y":30.731},{"x":1758163080326,"y":31.049},{"x":1758163020154,"y":32.838},{"x":1758162963721,"y":34.789},{"x":1758162903758,"y":34.046},{"x":1758162843550,"y":37.103},{"x":1758162782270,"y":34.637},{"x":1758162723225,"y":34.161},{"x":1758162663131,"y":30.602},{"x":1758162601307,"y":27.885},{"x":1758162542918,"y":38.344},{"x":1758162482813,"y":38.123},{"x":1758162422713,"y":41.38},{"x":1758162362616,"y":39.723},{"x":1758162302650,"y":41.151},{"x":1758162242410,"y":31.662},{"x":1758162182312,"y":30.242},{"x":1758162122171,"y":31.731},{"x":1758162062070,"y":30.397},{"x":1758162002101,"y":31.344},{"x":1758161941891,"y":30.983},{"x":1758161881765,"y":33.628},{"x":1758161821671,"y":32.082},{"x":1758161761555,"y":34.651},{"x":1758161701639,"y":33.246},{"x":1758161641358,"y":27.553},{"x":1758161581256,"y":30.823},{"x":1758161521158,"y":31.527},{"x":1758161461054,"y":32.119},{"x":1758161401097,"y":32.092},{"x":1758161340796,"y":35.548},{"x":1758161280693,"y":37.765},{"x":1758161220587,"y":41.765},{"x":1758161160469,"y":35.032},{"x":1758161100621,"y":36.037},{"x":1758161040319,"y":33.912},{"x":1758160980314,"y":31.86},{"x":1758160923221,"y":39.446},{"x":1758160863017,"y":36.898},{"x":1758160803080,"y":32.945},{"x":1758160742782,"y":36.249},{"x":1758160682687,"y":33.826},{"x":1758160622572,"y":39.485},{"x":1758160562474,"y":35.209},{"x":1758160502506,"y":37.29},{"x":1758160442276,"y":40.346},{"x":1758160382173,"y":38.882},{"x":1758160321158,"y":41.367},{"x":1758160261969,"y":35.735},{"x":1758160201991,"y":38.668},{"x":1758160141773,"y":36.774},{"x":1758160081666,"y":37.129},{"x":1758160021563,"y":38.889},{"x":1758159961462,"y":37.769},{"x":1758159901538,"y":36.584},{"x":1758159841270,"y":36.251},{"x":1758159781163,"y":36.137},{"x":1758159721059,"y":33.628},{"x":1758159660959,"y":31.325},{"x":1758159600981,"y":35.622},{"x":1758159540759,"y":31.728},{"x":1758159480649,"y":31.601},{"x":1758159420556,"y":31.925},{"x":1758159360486,"y":36.073},{"x":1758159300656,"y":37.27},{"x":1758159240411,"y":32.444},{"x":1758159180254,"y":34.299},{"x":1758159120111,"y":32.276},{"x":1758159063072,"y":35.846},{"x":1758159003091,"y":32.033},{"x":1758158942861,"y":28.219},{"x":1758158882750,"y":27.862},{"x":1758158822688,"y":27.075},{"x":1758158762555,"y":31.065},{"x":1758158702582,"y":31.94},{"x":1758158642357,"y":37.065},{"x":1758158582242,"y":34.175},{"x":1758158522186,"y":33.781},{"x":1758158462054,"y":36.084},{"x":1758158402023,"y":31.397},{"x":1758158341788,"y":31.281},{"x":1758158281690,"y":34.334},{"x":1758158221395,"y":31.849},{"x":1758158161438,"y":34.723},{"x":1758158101472,"y":30.817},{"x":1758158041258,"y":33.92},{"x":1758157981174,"y":34.597},{"x":1758157921039,"y":36.335},{"x":1758157860932,"y":38.868},{"x":1758157800917,"y":39.845},{"x":1758157740693,"y":32.501},{"x":1758157680593,"y":32.737},{"x":1758157620507,"y":30.287},{"x":1758157560393,"y":34.106},{"x":1758157500521,"y":31.239},{"x":1758157440296,"y":31.116},{"x":1758157380262,"y":35.439},{"x":1758157329388,"y":31.669},{"x":1758157269283,"y":38.044},{"x":1758157203641,"y":32.748},{"x":1758157149087,"y":48.247},{"x":1758157089004,"y":56.335},{"x":1758157024280,"y":57.629},{"x":1758156968749,"y":61.392},{"x":1758156908759,"y":51.765},{"x":1758156848532,"y":42.591},{"x":1758156788381,"y":32.201},{"x":1758156728271,"y":34.815},{"x":1758156668168,"y":40.002},{"x":1758156608193,"y":32.832},{"x":1758156547974,"y":37.915},{"x":1758156487868,"y":37.679},{"x":1758156427772,"y":44.543},{"x":1758156367671,"y":52.75},{"x":1758156307689,"y":46.632},{"x":1758156247469,"y":46.54},{"x":1758156187315,"y":42.155},{"x":1758156127163,"y":38.103},{"x":1758156067068,"y":33.372},{"x":1758156007082,"y":35.322},{"x":1758155946868,"y":36.51},{"x":1758155886756,"y":32.389},{"x":1758155826663,"y":37.555},{"x":1758155766561,"y":34.365},{"x":1758155706618,"y":36.939},{"x":1758155646381,"y":38.191},{"x":1758155586287,"y":34.264},{"x":1758155526166,"y":38.208},{"x":1758155466070,"y":36.403},{"x":1758155406098,"y":29.37},{"x":1758155345862,"y":31.401},{"x":1758155285777,"y":34.945},{"x":1758155225649,"y":33.003},{"x":1758155165555,"y":32.414},{"x":1758155105577,"y":29.166},{"x":1758155045409,"y":32.459},{"x":1758154985200,"y":29.184},{"x":1758154925104,"y":33.14},{"x":1758154865001,"y":35.615},{"x":1758154805022,"y":32.375},{"x":1758154744745,"y":31.322},{"x":1758154684642,"y":33.686},{"x":1758154624577,"y":31.846},{"x":1758154564440,"y":30.777},{"x":1758154504464,"y":33.058},{"x":1758154444246,"y":32.822},{"x":1758154384145,"y":31.569},{"x":1758154323988,"y":36.831},{"x":1758154263923,"y":33.53},{"x":1758154203940,"y":33.833},{"x":1758154143643,"y":34.964},{"x":1758154083535,"y":34.82},{"x":1758154023384,"y":40.013},{"x":1758153963285,"y":36.959},{"x":1758153903354,"y":33.447},{"x":1758153843103,"y":33.771},{"x":1758153782981,"y":44.858},{"x":1758153722832,"y":44.784},{"x":1758153662735,"y":42.318},{"x":1758153602744,"y":46.665},{"x":1758153542480,"y":36.03},{"x":1758153482356,"y":40.579},{"x":1758153422236,"y":44.161},{"x":1758153362152,"y":37.691},{"x":1758153302161,"y":43.657},{"x":1758153241957,"y":36.488},{"x":1758153181821,"y":37.486},{"x":1758153121727,"y":36.891},{"x":1758153061623,"y":40.199},{"x":1758153001664,"y":40.008},{"x":1758152941432,"y":36.858},{"x":1758152881325,"y":36.391},{"x":1758152821229,"y":36.847},{"x":1758152761076,"y":37.191},{"x":1758152701114,"y":42.074},{"x":1758152640868,"y":41.33},{"x":1758152580714,"y":50.852},{"x":1758152520617,"y":47.201},{"x":1758152460518,"y":45.216},{"x":1758152400631,"y":51.609},{"x":1758152340333,"y":45.842},{"x":1758152280260,"y":38.748},{"x":1758152220230,"y":42.072},{"x":1758152165302,"y":35.817},{"x":1758152105485,"y":36.297},{"x":1758152045097,"y":34.763},{"x":1758151984934,"y":36.229},{"x":1758151924659,"y":34.801},{"x":1758151864410,"y":31.425},{"x":1758151804357,"y":38.822},{"x":1758151743865,"y":29.803},{"x":1758151683570,"y":29.835},{"x":1758151623318,"y":33.288},{"x":1758151563107,"y":41.127},{"x":1758151502939,"y":36.479},{"x":1758151442512,"y":32.915},{"x":1758151382213,"y":36.023},{"x":1758151321957,"y":33.659},{"x":1758151261651,"y":32.571},{"x":1758151201706,"y":35.628},{"x":1758151147461,"y":30.345},{"x":1758151081249,"y":31.842},{"x":1758151021111,"y":30.446},{"x":1758150960987,"y":32.555},{"x":1758150900899,"y":42.427},{"x":1758150846864,"y":31.488},{"x":1758150786766,"y":32.311},{"x":1758150720604,"y":31.176},{"x":1758150660498,"y":36.302},{"x":1758150600643,"y":37.82},{"x":1758150540283,"y":34.569},{"x":1758150480206,"y":36.254},{"x":1758150423222,"y":36.23},{"x":1758150365879,"y":37.223},{"x":1758150305917,"y":38.242},{"x":1758150245682,"y":37.679},{"x":1758150185488,"y":35.345},{"x":1758150125388,"y":32.664},{"x":1758150065286,"y":33.363},{"x":1758150003689,"y":29.128},{"x":1758149944988,"y":34.86},{"x":1758149884881,"y":33.193},{"x":1758149824516,"y":33.62},{"x":1758149764631,"y":40.933},{"x":1758149704697,"y":40.802},{"x":1758149644428,"y":51.08},{"x":1758149584325,"y":41.681},{"x":1758149524182,"y":42.383},{"x":1758149464036,"y":43.461},{"x":1758149404096,"y":38.911},{"x":1758149343779,"y":42.238},{"x":1758149283674,"y":43.426},{"x":1758149223577,"y":45.34},{"x":1758149163421,"y":39.248},{"x":1758149103535,"y":42.316},{"x":1758149043222,"y":68.921},{"x":1758148983135,"y":63.853},{"x":1758148923038,"y":62.711},{"x":1758148862919,"y":60.827},{"x":1758148802971,"y":67.723},{"x":1758148742716,"y":46.929},{"x":1758148682570,"y":43.764},{"x":1758148622462,"y":46.05},{"x":1758148562338,"y":41.503},{"x":1758148502432,"y":43.842},{"x":1758148442118,"y":42.812},{"x":1758148381966,"y":50.113},{"x":1758148321859,"y":47.797},{"x":1758148261762,"y":46.764},{"x":1758148201852,"y":46.938},{"x":1758148141521,"y":46.296},{"x":1758148081409,"y":41.291},{"x":1758148021300,"y":41.705},{"x":1758147961210,"y":43.109},{"x":1758147901262,"y":45.821},{"x":1758147841008,"y":48.281},{"x":1758147780848,"y":46.892},{"x":1758147720746,"y":50.03},{"x":1758147660646,"y":47.855},{"x":1758147600901,"y":52.277},{"x":1758147540463,"y":54.94},{"x":1758147480393,"y":50.214},{"x":1758147420315,"y":59.455},{"x":1758147360255,"y":57.604},{"x":1758147300368,"y":53.881},{"x":1758147258576,"y":54.247},{"x":1758147182910,"y":56.335},{"x":1758147138587,"y":53.67},{"x":1758147078580,"y":44.66},{"x":1758147018796,"y":48.229},{"x":1758146945362,"y":50.244},{"x":1758146882351,"y":47.731},{"x":1758146838585,"y":44.196},{"x":1758146762162,"y":46.502},{"x":1758146702233,"y":46.847},{"x":1758146658588,"y":58.565},{"x":1758146581860,"y":47.472},{"x":1758146521753,"y":48.094},{"x":1758146478584,"y":49.068},{"x":1758146401938,"y":47.973}] \ No newline at end of file diff --git a/tests/ml/test_prophet_model_performance.py b/tests/ml/test_prophet_model_performance.py new file mode 100644 index 0000000..68e626f --- /dev/null +++ b/tests/ml/test_prophet_model_performance.py @@ -0,0 +1,128 @@ +import logging +import time +from datetime import datetime +from uuid import UUID + +from openremote_client import AssetDatapoint + +from service_ml_forecast.ml.model_provider_factory import ModelProviderFactory +from service_ml_forecast.models.feature_data_wrappers import AssetFeatureDatapoints, TrainingDataSet +from service_ml_forecast.models.model_config import ( + ProphetModelConfig, + ProphetSeasonalityModeEnum, + TargetAssetDatapointsFeature, +) +from service_ml_forecast.models.model_type import ModelTypeEnum + +logger = logging.getLogger(__name__) + + +def test_prophet_model_performance(power_grid_mock_datapoints: list[AssetDatapoint]) -> None: + """Test Prophet model performance with power grid data. + + Verifies that: + - The model trains successfully with power grid data + - The trained model can be saved and loaded + - The model can generate forecasts with non-empty results + - The forecast data has reasonable quality and structure + """ + + # Create test configuration + config = ProphetModelConfig( + id=UUID("12345678-1234-5678-9abc-def012345678"), + realm="test", + name="Power Performance Test", + enabled=True, + type=ModelTypeEnum.PROPHET, + target=TargetAssetDatapointsFeature( + asset_id="41ORIhkDVAlT97dYGUD3n5", + attribute_name="power", + training_data_period="P6M", + ), + forecast_interval="PT1H", + training_interval="PT1H", + forecast_frequency="1h", + forecast_periods=24, + weekly_seasonality=True, + yearly_seasonality=False, + daily_seasonality=True, + seasonality_mode=ProphetSeasonalityModeEnum.ADDITIVE, + changepoint_range=0.8, + changepoint_prior_scale=0.05, + ) + + # Use power grid data + dataset = sorted(power_grid_mock_datapoints, key=lambda dp: dp.x) + + logger.info("Prophet Model Performance Test - Power Grid Data") + logger.info(f"Dataset: {len(dataset)} data points") + + # Get time range from data + if dataset: + first_timestamp = dataset[0].x + last_timestamp = dataset[-1].x + start_time = datetime.fromtimestamp(first_timestamp / 1000) + end_time = datetime.fromtimestamp(last_timestamp / 1000) + logger.info(f"Date range: {start_time} to {end_time}") + + logger.info("Data source: power grid measurements") + + # Split data for training + split_point = int(len(dataset) * 0.8) + train_data = dataset[:split_point] + + logger.info(f"Training data: {len(train_data)} points (first: {train_data[0].x}, last: {train_data[-1].x})") + + # Train model and measure time + train_start_time = time.time() + + model_provider = ModelProviderFactory.create_provider(config) + training_dataset = TrainingDataSet( + target=AssetFeatureDatapoints( + feature_name=config.target.attribute_name, + datapoints=train_data, + ), + ) + + model = model_provider.train_model(training_dataset) + training_time = time.time() - train_start_time + + logger.info(f"Training time: {training_time:.2f} seconds") + assert model is not None, "Model training failed" + + # Save model + model_provider.save_model(model) + + # Run cross-validation evaluation + logger.info("Running model evaluation") + metrics = model_provider.evaluate_model(model) + assert metrics is not None, "Model evaluation metrics should be available" + + # Generate forecast and measure time + forecast_start_time = time.time() + + forecast = model_provider.generate_forecast() + forecast_time = time.time() - forecast_start_time + + assert forecast is not None, "Forecast generation failed" + assert forecast.datapoints is not None, "Forecast has no datapoints" + assert len(forecast.datapoints) > 0, "Forecast is empty" + + # Performance summary + logger.info(f"Train/Fit Time: {training_time:.2f}s") + logger.info(f"Forecast Time: {forecast_time:.2f}s") + logger.info(f"RMSE: {metrics.rmse:.1f}kW (typical forecast error)") + logger.info(f"MAE: {metrics.mae:.1f}kW (average absolute error)") + logger.info(f"MAPE: {metrics.mape:.1%} (average percentage error)") + logger.info(f"MdAPE: {metrics.mdape:.1%} (median percentage error)") + logger.info(f"R²: {metrics.r2:.3f} (variance explained)") + + # Assert reasonable performance + assert metrics.rmse > 0, "RMSE should be positive" + assert metrics.mae > 0, "MAE should be positive" + assert 0 <= metrics.r2 <= 1, "R² should be between 0 and 1" + + # We're aiming for a maximum of 20% error margin + MAX_ACCEPTABLE_PERCENTAGE = 20 + assert metrics.mape < MAX_ACCEPTABLE_PERCENTAGE, "MAPE should be reasonable" + assert metrics.mdape < MAX_ACCEPTABLE_PERCENTAGE, "MdAPE should be reasonable" diff --git a/tests/ml/test_prophet_model_provider.py b/tests/ml/test_prophet_model_provider.py index 829f3f7..57f44c7 100644 --- a/tests/ml/test_prophet_model_provider.py +++ b/tests/ml/test_prophet_model_provider.py @@ -1,4 +1,7 @@ -from service_ml_forecast.clients.openremote.models import AssetDatapoint +import pytest +from openremote_client import AssetDatapoint + +from service_ml_forecast.common.exceptions import ResourceNotFoundError from service_ml_forecast.ml.model_provider_factory import ModelProviderFactory from service_ml_forecast.models.feature_data_wrappers import AssetFeatureDatapoints, ForecastDataSet, TrainingDataSet from service_ml_forecast.models.model_config import ProphetModelConfig @@ -112,3 +115,262 @@ def test_train_and_predict_with_regressor( assert forecast is not None assert forecast.datapoints is not None assert len(forecast.datapoints) > 0 + + +def test_train_with_insufficient_data( + prophet_basic_config: ProphetModelConfig, +) -> None: + """Test that training fails gracefully with insufficient data. + + Verifies that: + - Model returns None when training data is too small + - No exceptions are raised with edge case data + """ + # Create minimal dataset with only 1 datapoint + minimal_datapoints = [AssetDatapoint(x=1741193868185, y=2.57)] + + model_provider = ModelProviderFactory.create_provider(prophet_basic_config) + + model = model_provider.train_model( + TrainingDataSet( + target=AssetFeatureDatapoints( + feature_name=prophet_basic_config.target.attribute_name, + datapoints=minimal_datapoints, + ), + ), + ) + + # Should return None for insufficient data + assert model is None + + +def test_train_with_empty_data( + prophet_basic_config: ProphetModelConfig, +) -> None: + """Test that training fails gracefully with empty data. + + Verifies that: + - Model returns None when no training data is provided + - No exceptions are raised with empty dataset + """ + model_provider = ModelProviderFactory.create_provider(prophet_basic_config) + + model = model_provider.train_model( + TrainingDataSet( + target=AssetFeatureDatapoints( + feature_name=prophet_basic_config.target.attribute_name, + datapoints=[], + ), + ), + ) + + # Should return None for empty data + assert model is None + + +def test_forecast_without_trained_model( + prophet_basic_config: ProphetModelConfig, +) -> None: + """Test that forecasting fails gracefully when no model is trained. + + Verifies that: + - Appropriate exception is raised when trying to forecast without training + - Error handling works correctly for missing model scenario + """ + model_provider = ModelProviderFactory.create_provider(prophet_basic_config) + + # Try to generate forecast without training a model first + with pytest.raises(ResourceNotFoundError): # Should raise an exception when model doesn't exist + model_provider.generate_forecast() + + +def test_data_resampling_and_alignment( + prophet_multi_variable_config: ProphetModelConfig, + windspeed_mock_datapoints: list[AssetDatapoint], + tariff_mock_datapoints: list[AssetDatapoint], +) -> None: + """Test that data resampling and alignment works correctly with different frequencies. + + Verifies that: + - Data with different frequencies (10min vs 1hour) can be aligned + - Resampling produces reasonable results + - Training succeeds with mismatched data frequencies + """ + model_provider = ModelProviderFactory.create_provider(prophet_multi_variable_config) + + # Create training data with different frequencies + target_datapoints = AssetFeatureDatapoints( + feature_name=prophet_multi_variable_config.target.attribute_name, + datapoints=tariff_mock_datapoints, # 1-hour frequency + ) + + assert prophet_multi_variable_config.regressors is not None + regressor_datapoints = AssetFeatureDatapoints( + feature_name=prophet_multi_variable_config.regressors[0].attribute_name, + datapoints=windspeed_mock_datapoints, # 10-minute frequency + ) + + # Train model with mismatched frequencies + model = model_provider.train_model( + TrainingDataSet( + target=target_datapoints, + regressors=[regressor_datapoints], + ), + ) + + # Should succeed despite frequency mismatch + assert model is not None + + +def test_forecast_with_missing_regressor_data( + prophet_multi_variable_config: ProphetModelConfig, + tariff_mock_datapoints: list[AssetDatapoint], +) -> None: + """Test forecasting behavior when regressor data is missing or incomplete. + + Verifies that: + - Model handles missing regressor data gracefully + - Forecasts can still be generated with partial regressor information + - Appropriate warnings are logged for missing data + """ + model_provider = ModelProviderFactory.create_provider(prophet_multi_variable_config) + + # Train model first + target_datapoints = AssetFeatureDatapoints( + feature_name=prophet_multi_variable_config.target.attribute_name, + datapoints=tariff_mock_datapoints, + ) + + # Create regressor with some data + assert prophet_multi_variable_config.regressors is not None + regressor_datapoints = AssetFeatureDatapoints( + feature_name=prophet_multi_variable_config.regressors[0].attribute_name, + datapoints=tariff_mock_datapoints[:5], # Only first 5 points + ) + + model = model_provider.train_model( + TrainingDataSet( + target=target_datapoints, + regressors=[regressor_datapoints], + ), + ) + assert model is not None + + model_provider.save_model(model) + + # Try to forecast with minimal regressor data (Prophet requires regressors to be present) + assert prophet_multi_variable_config.regressors is not None + minimal_regressor = AssetFeatureDatapoints( + feature_name=prophet_multi_variable_config.regressors[0].attribute_name, + datapoints=[tariff_mock_datapoints[0]], # Just one point + ) + + forecast_dataset = ForecastDataSet(regressors=[minimal_regressor]) + + # Should handle minimal regressor data gracefully + forecast = model_provider.generate_forecast(forecast_dataset) + assert forecast is not None + assert forecast.datapoints is not None + + +def test_model_persistence_and_reload( + prophet_basic_config: ProphetModelConfig, + windspeed_mock_datapoints: list[AssetDatapoint], +) -> None: + """Test that models can be saved and reloaded correctly. + + Verifies that: + - Models can be saved to storage + - Saved models can be loaded back + - Loaded models produce consistent forecasts + """ + model_provider = ModelProviderFactory.create_provider(prophet_basic_config) + + # Train and save model + model = model_provider.train_model( + TrainingDataSet( + target=AssetFeatureDatapoints( + feature_name=prophet_basic_config.target.attribute_name, + datapoints=windspeed_mock_datapoints, + ), + ), + ) + assert model is not None + + model_provider.save_model(model) + + # Generate forecast with original model + original_forecast = model_provider.generate_forecast() + assert original_forecast is not None + assert len(original_forecast.datapoints) > 0 + + # Create new provider instance and load model + new_provider = ModelProviderFactory.create_provider(prophet_basic_config) + loaded_model = new_provider.load_model(prophet_basic_config.id) + assert loaded_model is not None + + # Generate forecast with loaded model + loaded_forecast = new_provider.generate_forecast() + assert loaded_forecast is not None + assert len(loaded_forecast.datapoints) > 0 + + # Forecasts should have same number of points + assert len(original_forecast.datapoints) == len(loaded_forecast.datapoints) + + +def test_forecast_data_quality( + prophet_basic_config: ProphetModelConfig, + windspeed_mock_datapoints: list[AssetDatapoint], +) -> None: + """Test that forecast data has reasonable quality and structure. + + Verifies that: + - Forecast timestamps are in the future + - Forecast values are reasonable (not NaN, not extreme outliers) + - Forecast frequency matches expected frequency + """ + model_provider = ModelProviderFactory.create_provider(prophet_basic_config) + + # Train model + model = model_provider.train_model( + TrainingDataSet( + target=AssetFeatureDatapoints( + feature_name=prophet_basic_config.target.attribute_name, + datapoints=windspeed_mock_datapoints, + ), + ), + ) + assert model is not None + + model_provider.save_model(model) + + # Generate forecast + forecast = model_provider.generate_forecast() + assert forecast is not None + assert forecast.datapoints is not None + assert len(forecast.datapoints) > 0 + + # Check forecast data quality + last_training_time = max(point.x for point in windspeed_mock_datapoints) + + for datapoint in forecast.datapoints: + # Forecast timestamps should be in the future + assert datapoint.x > last_training_time + + # Forecast values should be reasonable (not NaN, not extreme) + assert datapoint.y is not None + assert not (datapoint.y != datapoint.y) # Check for NaN + MIN_REASONABLE_VALUE = -1000 + MAX_REASONABLE_VALUE = 1000 + assert MIN_REASONABLE_VALUE < datapoint.y < MAX_REASONABLE_VALUE # Reasonable range check + + # Check forecast frequency (should match config) + if len(forecast.datapoints) > 1: + time_diffs = [ + forecast.datapoints[i + 1].x - forecast.datapoints[i].x for i in range(len(forecast.datapoints) - 1) + ] + # Most time differences should be close to expected frequency (1 hour = 3600000 ms) + expected_interval = 3600000 # 1 hour in milliseconds + for diff in time_diffs: + # Allow some tolerance for rounding + assert abs(diff - expected_interval) < expected_interval * 0.1 diff --git a/tests/services/test_model_scheduler.py b/tests/services/test_model_scheduler.py index e750d85..42b73c2 100644 --- a/tests/services/test_model_scheduler.py +++ b/tests/services/test_model_scheduler.py @@ -4,8 +4,8 @@ import pytest import respx +from openremote_client import AssetDatapoint -from service_ml_forecast.clients.openremote.models import AssetDatapoint from service_ml_forecast.common.exceptions import ResourceNotFoundError from service_ml_forecast.common.time_util import TimeUtil from service_ml_forecast.ml.model_provider_factory import ModelProviderFactory @@ -136,7 +136,7 @@ def test_training_execution( ).mock( return_value=respx.MockResponse( HTTPStatus.OK, - json=windspeed_mock_datapoints, + json=[{"x": point.x, "y": point.y} for point in windspeed_mock_datapoints], ), ) _model_training_job(prophet_basic_config, mock_openremote_service) @@ -288,7 +288,7 @@ def trained_basic_model( ).mock( return_value=respx.MockResponse( HTTPStatus.OK, - json=windspeed_mock_datapoints, + json=[{"x": point.x, "y": point.y} for point in windspeed_mock_datapoints], ), ) _model_training_job(prophet_basic_config, mock_openremote_service) @@ -319,7 +319,7 @@ def trained_regressor_model( ).mock( return_value=respx.MockResponse( HTTPStatus.OK, - json=tariff_mock_datapoints, + json=[{"x": point.x, "y": point.y} for point in tariff_mock_datapoints], ), ) # mock historical datapoints retrieval for regressor @@ -328,7 +328,7 @@ def trained_regressor_model( ).mock( return_value=respx.MockResponse( HTTPStatus.OK, - json=windspeed_mock_datapoints, + json=[{"x": point.x, "y": point.y} for point in windspeed_mock_datapoints], ), ) _model_training_job(prophet_multi_variable_config, mock_openremote_service) diff --git a/tests/services/test_openremote_service.py b/tests/services/test_openremote_service.py index dbbc613..bb179c6 100644 --- a/tests/services/test_openremote_service.py +++ b/tests/services/test_openremote_service.py @@ -1,6 +1,7 @@ from unittest.mock import Mock -from service_ml_forecast.clients.openremote.models import AssetDatapoint +from openremote_client import AssetDatapoint + from service_ml_forecast.services.openremote_service import OpenRemoteService # Constants for test values @@ -29,7 +30,7 @@ def test_get_historical_datapoints_single_month_no_chunking(mock_openremote_serv # Mock return value for single month mock_datapoints = [AssetDatapoint(x=JAN_1_2024, y=100)] - mock_client.get_historical_datapoints.return_value = mock_datapoints + mock_client.assets.get_historical_datapoints.return_value = mock_datapoints # Test single month (Jan 1 to Feb 1) from_timestamp = JAN_1_2024 # 2024-01-01 00:00:00 UTC @@ -40,7 +41,7 @@ def test_get_historical_datapoints_single_month_no_chunking(mock_openremote_serv ) # Should call client method once (no chunking) - mock_client.get_historical_datapoints.assert_called_once_with( + mock_client.assets.get_historical_datapoints.assert_called_once_with( "test_asset", "test_attribute", from_timestamp, to_timestamp ) assert result == mock_datapoints @@ -65,7 +66,7 @@ def test_get_historical_datapoints_multi_month_chunking(mock_openremote_service: chunk2_datapoints = [AssetDatapoint(x=FEB_1_2024, y=200)] # Feb chunk3_datapoints = [AssetDatapoint(x=MAR_1_2024, y=300)] # Mar - mock_client.get_historical_datapoints.side_effect = [ + mock_client.assets.get_historical_datapoints.side_effect = [ chunk1_datapoints, chunk2_datapoints, chunk3_datapoints, @@ -80,10 +81,10 @@ def test_get_historical_datapoints_multi_month_chunking(mock_openremote_service: ) # Should call client method 3 times (one for each month) - assert mock_client.get_historical_datapoints.call_count == EXPECTED_CALLS_3_MONTHS + assert mock_client.assets.get_historical_datapoints.call_count == EXPECTED_CALLS_3_MONTHS # Verify the calls were made with correct timestamps - calls = mock_client.get_historical_datapoints.call_args_list + calls = mock_client.assets.get_historical_datapoints.call_args_list assert len(calls) == EXPECTED_CALLS_3_MONTHS # Verify chunk boundaries are correct @@ -134,7 +135,7 @@ def test_get_historical_datapoints_chunking_partial_months(mock_openremote_servi mar_datapoints = [AssetDatapoint(x=MAR_1_2024, y=300)] # Mar 1-31 apr_datapoints = [AssetDatapoint(x=APR_1_2024, y=400)] # Apr 1-30 - mock_client.get_historical_datapoints.side_effect = [ + mock_client.assets.get_historical_datapoints.side_effect = [ jan_datapoints, feb_datapoints, mar_datapoints, @@ -150,10 +151,10 @@ def test_get_historical_datapoints_chunking_partial_months(mock_openremote_servi ) # Should call client method 4 times (Jan 15-31, Feb 1-29, Mar 1-31, Apr 1-30) - assert mock_client.get_historical_datapoints.call_count == EXPECTED_CALLS_4_MONTHS + assert mock_client.assets.get_historical_datapoints.call_count == EXPECTED_CALLS_4_MONTHS # Verify the calls were made with correct timestamps - calls = mock_client.get_historical_datapoints.call_args_list + calls = mock_client.assets.get_historical_datapoints.call_args_list assert len(calls) == EXPECTED_CALLS_4_MONTHS # Verify boundaries for partial month scenario @@ -172,7 +173,7 @@ def test_get_historical_datapoints_chunking_partial_months(mock_openremote_servi # Reset mock for second test mock_client.reset_mock() - mock_client.get_historical_datapoints.side_effect = [ + mock_client.assets.get_historical_datapoints.side_effect = [ jan_datapoints, feb_datapoints, mar_datapoints, @@ -187,10 +188,10 @@ def test_get_historical_datapoints_chunking_partial_months(mock_openremote_servi ) # Should call client method 3 times (Jan 1-31, Feb 1-29, Mar 1-31) - assert mock_client.get_historical_datapoints.call_count == EXPECTED_CALLS_3_MONTHS + assert mock_client.assets.get_historical_datapoints.call_count == EXPECTED_CALLS_3_MONTHS # Verify boundaries for the second test case - calls = mock_client.get_historical_datapoints.call_args_list + calls = mock_client.assets.get_historical_datapoints.call_args_list first_call_args = calls[0][0] last_call_args = calls[2][0] @@ -218,7 +219,7 @@ def test_get_historical_datapoints_chunking_failure_handling(mock_openremote_ser # Mock first chunk succeeds, second chunk fails chunk1_datapoints = [AssetDatapoint(x=JAN_1_2024, y=100)] - mock_client.get_historical_datapoints.side_effect = [ + mock_client.assets.get_historical_datapoints.side_effect = [ chunk1_datapoints, None, # Second chunk fails ] @@ -235,7 +236,7 @@ def test_get_historical_datapoints_chunking_failure_handling(mock_openremote_ser assert result is None # Should call client method 2 times (first succeeds, second fails) - assert mock_client.get_historical_datapoints.call_count == EXPECTED_CALLS_2_MONTHS + assert mock_client.assets.get_historical_datapoints.call_count == EXPECTED_CALLS_2_MONTHS def test_get_historical_datapoints_chunking_edge_case_same_timestamp( @@ -255,7 +256,7 @@ def test_get_historical_datapoints_chunking_edge_case_same_timestamp( # Mock return value mock_datapoints = [AssetDatapoint(x=JAN_1_2024, y=100)] - mock_client.get_historical_datapoints.return_value = mock_datapoints + mock_client.assets.get_historical_datapoints.return_value = mock_datapoints # Test same timestamp timestamp = JAN_1_2024 # 2024-01-01 00:00:00 UTC @@ -263,5 +264,7 @@ def test_get_historical_datapoints_chunking_edge_case_same_timestamp( result = mock_openremote_service._get_historical_datapoints("test_asset", "test_attribute", timestamp, timestamp) # Should call client method once (goes through single month path) - mock_client.get_historical_datapoints.assert_called_once_with("test_asset", "test_attribute", timestamp, timestamp) + mock_client.assets.get_historical_datapoints.assert_called_once_with( + "test_asset", "test_attribute", timestamp, timestamp + ) assert result == mock_datapoints diff --git a/uv.lock b/uv.lock index d71648d..4cc208d 100644 --- a/uv.lock +++ b/uv.lock @@ -1,23 +1,29 @@ version = 1 -revision = 1 +revision = 3 requires-python = ">=3.13" +[manifest] +members = [ + "openremote-client", + "service-ml-forecast", +] + [[package]] name = "aiocache" version = "0.12.3" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/7a/64/b945b8025a9d1e6e2138845f4022165d3b337f55f50984fbc6a4c0a1e355/aiocache-0.12.3.tar.gz", hash = "sha256:f528b27bf4d436b497a1d0d1a8f59a542c153ab1e37c3621713cb376d44c4713", size = 132196 } +sdist = { url = "https://files.pythonhosted.org/packages/7a/64/b945b8025a9d1e6e2138845f4022165d3b337f55f50984fbc6a4c0a1e355/aiocache-0.12.3.tar.gz", hash = "sha256:f528b27bf4d436b497a1d0d1a8f59a542c153ab1e37c3621713cb376d44c4713", size = 132196, upload-time = "2024-09-25T13:20:23.823Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/37/d7/15d67e05b235d1ed8c3ce61688fe4d84130e72af1657acadfaac3479f4cf/aiocache-0.12.3-py2.py3-none-any.whl", hash = "sha256:889086fc24710f431937b87ad3720a289f7fc31c4fd8b68e9f918b9bacd8270d", size = 28199 }, + { url = "https://files.pythonhosted.org/packages/37/d7/15d67e05b235d1ed8c3ce61688fe4d84130e72af1657acadfaac3479f4cf/aiocache-0.12.3-py2.py3-none-any.whl", hash = "sha256:889086fc24710f431937b87ad3720a289f7fc31c4fd8b68e9f918b9bacd8270d", size = 28199, upload-time = "2024-09-25T13:20:22.688Z" }, ] [[package]] name = "annotated-types" version = "0.7.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/ee/67/531ea369ba64dcff5ec9c3402f9f51bf748cec26dde048a2f973a4eea7f5/annotated_types-0.7.0.tar.gz", hash = "sha256:aff07c09a53a08bc8cfccb9c85b05f1aa9a2a6f23728d790723543408344ce89", size = 16081 } +sdist = { url = "https://files.pythonhosted.org/packages/ee/67/531ea369ba64dcff5ec9c3402f9f51bf748cec26dde048a2f973a4eea7f5/annotated_types-0.7.0.tar.gz", hash = "sha256:aff07c09a53a08bc8cfccb9c85b05f1aa9a2a6f23728d790723543408344ce89", size = 16081, upload-time = "2024-05-20T21:33:25.928Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/78/b6/6307fbef88d9b5ee7421e68d78a9f162e0da4900bc5f5793f6d3d0e34fb8/annotated_types-0.7.0-py3-none-any.whl", hash = "sha256:1f02e8b43a8fbbc3f3e0d4f0f4bfc8131bcb4eebe8849b8e5c773f3a1c582a53", size = 13643 }, + { url = "https://files.pythonhosted.org/packages/78/b6/6307fbef88d9b5ee7421e68d78a9f162e0da4900bc5f5793f6d3d0e34fb8/annotated_types-0.7.0-py3-none-any.whl", hash = "sha256:1f02e8b43a8fbbc3f3e0d4f0f4bfc8131bcb4eebe8849b8e5c773f3a1c582a53", size = 13643, upload-time = "2024-05-20T21:33:24.1Z" }, ] [[package]] @@ -28,9 +34,9 @@ dependencies = [ { name = "idna" }, { name = "sniffio" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/95/7d/4c1bd541d4dffa1b52bd83fb8527089e097a106fc90b467a7313b105f840/anyio-4.9.0.tar.gz", hash = "sha256:673c0c244e15788651a4ff38710fea9675823028a6f08a5eda409e0c9840a028", size = 190949 } +sdist = { url = "https://files.pythonhosted.org/packages/95/7d/4c1bd541d4dffa1b52bd83fb8527089e097a106fc90b467a7313b105f840/anyio-4.9.0.tar.gz", hash = "sha256:673c0c244e15788651a4ff38710fea9675823028a6f08a5eda409e0c9840a028", size = 190949, upload-time = "2025-03-17T00:02:54.77Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/a1/ee/48ca1a7c89ffec8b6a0c5d02b89c305671d5ffd8d3c94acf8b8c408575bb/anyio-4.9.0-py3-none-any.whl", hash = "sha256:9f76d541cad6e36af7beb62e978876f3b41e3e04f2c1fbf0884604c0a9c4d93c", size = 100916 }, + { url = "https://files.pythonhosted.org/packages/a1/ee/48ca1a7c89ffec8b6a0c5d02b89c305671d5ffd8d3c94acf8b8c408575bb/anyio-4.9.0-py3-none-any.whl", hash = "sha256:9f76d541cad6e36af7beb62e978876f3b41e3e04f2c1fbf0884604c0a9c4d93c", size = 100916, upload-time = "2025-03-17T00:02:52.713Z" }, ] [[package]] @@ -40,9 +46,9 @@ source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "tzlocal" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/4e/00/6d6814ddc19be2df62c8c898c4df6b5b1914f3bd024b780028caa392d186/apscheduler-3.11.0.tar.gz", hash = "sha256:4c622d250b0955a65d5d0eb91c33e6d43fd879834bf541e0a18661ae60460133", size = 107347 } +sdist = { url = "https://files.pythonhosted.org/packages/4e/00/6d6814ddc19be2df62c8c898c4df6b5b1914f3bd024b780028caa392d186/apscheduler-3.11.0.tar.gz", hash = "sha256:4c622d250b0955a65d5d0eb91c33e6d43fd879834bf541e0a18661ae60460133", size = 107347, upload-time = "2024-11-24T19:39:26.463Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/d0/ae/9a053dd9229c0fde6b1f1f33f609ccff1ee79ddda364c756a924c6d8563b/APScheduler-3.11.0-py3-none-any.whl", hash = "sha256:fc134ca32e50f5eadcc4938e3a4545ab19131435e851abb40b34d63d5141c6da", size = 64004 }, + { url = "https://files.pythonhosted.org/packages/d0/ae/9a053dd9229c0fde6b1f1f33f609ccff1ee79ddda364c756a924c6d8563b/APScheduler-3.11.0-py3-none-any.whl", hash = "sha256:fc134ca32e50f5eadcc4938e3a4545ab19131435e851abb40b34d63d5141c6da", size = 64004, upload-time = "2024-11-24T19:39:24.442Z" }, ] [[package]] @@ -54,18 +60,18 @@ dependencies = [ { name = "packaging" }, { name = "pyproject-hooks" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/7d/46/aeab111f8e06793e4f0e421fcad593d547fb8313b50990f31681ee2fb1ad/build-1.2.2.post1.tar.gz", hash = "sha256:b36993e92ca9375a219c99e606a122ff365a760a2d4bba0caa09bd5278b608b7", size = 46701 } +sdist = { url = "https://files.pythonhosted.org/packages/7d/46/aeab111f8e06793e4f0e421fcad593d547fb8313b50990f31681ee2fb1ad/build-1.2.2.post1.tar.gz", hash = "sha256:b36993e92ca9375a219c99e606a122ff365a760a2d4bba0caa09bd5278b608b7", size = 46701, upload-time = "2024-10-06T17:22:25.251Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/84/c2/80633736cd183ee4a62107413def345f7e6e3c01563dbca1417363cf957e/build-1.2.2.post1-py3-none-any.whl", hash = "sha256:1d61c0887fa860c01971625baae8bdd338e517b836a2f70dd1f7aa3a6b2fc5b5", size = 22950 }, + { url = "https://files.pythonhosted.org/packages/84/c2/80633736cd183ee4a62107413def345f7e6e3c01563dbca1417363cf957e/build-1.2.2.post1-py3-none-any.whl", hash = "sha256:1d61c0887fa860c01971625baae8bdd338e517b836a2f70dd1f7aa3a6b2fc5b5", size = 22950, upload-time = "2024-10-06T17:22:23.299Z" }, ] [[package]] name = "certifi" version = "2025.1.31" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/1c/ab/c9f1e32b7b1bf505bf26f0ef697775960db7932abeb7b516de930ba2705f/certifi-2025.1.31.tar.gz", hash = "sha256:3d5da6925056f6f18f119200434a4780a94263f10d1c21d032a6f6b2baa20651", size = 167577 } +sdist = { url = "https://files.pythonhosted.org/packages/1c/ab/c9f1e32b7b1bf505bf26f0ef697775960db7932abeb7b516de930ba2705f/certifi-2025.1.31.tar.gz", hash = "sha256:3d5da6925056f6f18f119200434a4780a94263f10d1c21d032a6f6b2baa20651", size = 167577, upload-time = "2025-01-31T02:16:47.166Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/38/fc/bce832fd4fd99766c04d1ee0eead6b0ec6486fb100ae5e74c1d91292b982/certifi-2025.1.31-py3-none-any.whl", hash = "sha256:ca78db4565a652026a4db2bcdf68f2fb589ea80d0be70e03929ed730746b84fe", size = 166393 }, + { url = "https://files.pythonhosted.org/packages/38/fc/bce832fd4fd99766c04d1ee0eead6b0ec6486fb100ae5e74c1d91292b982/certifi-2025.1.31-py3-none-any.whl", hash = "sha256:ca78db4565a652026a4db2bcdf68f2fb589ea80d0be70e03929ed730746b84fe", size = 166393, upload-time = "2025-01-31T02:16:45.015Z" }, ] [[package]] @@ -75,19 +81,19 @@ source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "pycparser" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/fc/97/c783634659c2920c3fc70419e3af40972dbaf758daa229a7d6ea6135c90d/cffi-1.17.1.tar.gz", hash = "sha256:1c39c6016c32bc48dd54561950ebd6836e1670f2ae46128f67cf49e789c52824", size = 516621 } +sdist = { url = "https://files.pythonhosted.org/packages/fc/97/c783634659c2920c3fc70419e3af40972dbaf758daa229a7d6ea6135c90d/cffi-1.17.1.tar.gz", hash = "sha256:1c39c6016c32bc48dd54561950ebd6836e1670f2ae46128f67cf49e789c52824", size = 516621, upload-time = "2024-09-04T20:45:21.852Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/8d/f8/dd6c246b148639254dad4d6803eb6a54e8c85c6e11ec9df2cffa87571dbe/cffi-1.17.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:f3a2b4222ce6b60e2e8b337bb9596923045681d71e5a082783484d845390938e", size = 182989 }, - { url = "https://files.pythonhosted.org/packages/8b/f1/672d303ddf17c24fc83afd712316fda78dc6fce1cd53011b839483e1ecc8/cffi-1.17.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:0984a4925a435b1da406122d4d7968dd861c1385afe3b45ba82b750f229811e2", size = 178802 }, - { url = "https://files.pythonhosted.org/packages/0e/2d/eab2e858a91fdff70533cab61dcff4a1f55ec60425832ddfdc9cd36bc8af/cffi-1.17.1-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d01b12eeeb4427d3110de311e1774046ad344f5b1a7403101878976ecd7a10f3", size = 454792 }, - { url = "https://files.pythonhosted.org/packages/75/b2/fbaec7c4455c604e29388d55599b99ebcc250a60050610fadde58932b7ee/cffi-1.17.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:706510fe141c86a69c8ddc029c7910003a17353970cff3b904ff0686a5927683", size = 478893 }, - { url = "https://files.pythonhosted.org/packages/4f/b7/6e4a2162178bf1935c336d4da8a9352cccab4d3a5d7914065490f08c0690/cffi-1.17.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:de55b766c7aa2e2a3092c51e0483d700341182f08e67c63630d5b6f200bb28e5", size = 485810 }, - { url = "https://files.pythonhosted.org/packages/c7/8a/1d0e4a9c26e54746dc08c2c6c037889124d4f59dffd853a659fa545f1b40/cffi-1.17.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c59d6e989d07460165cc5ad3c61f9fd8f1b4796eacbd81cee78957842b834af4", size = 471200 }, - { url = "https://files.pythonhosted.org/packages/26/9f/1aab65a6c0db35f43c4d1b4f580e8df53914310afc10ae0397d29d697af4/cffi-1.17.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd398dbc6773384a17fe0d3e7eeb8d1a21c2200473ee6806bb5e6a8e62bb73dd", size = 479447 }, - { url = "https://files.pythonhosted.org/packages/5f/e4/fb8b3dd8dc0e98edf1135ff067ae070bb32ef9d509d6cb0f538cd6f7483f/cffi-1.17.1-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:3edc8d958eb099c634dace3c7e16560ae474aa3803a5df240542b305d14e14ed", size = 484358 }, - { url = "https://files.pythonhosted.org/packages/f1/47/d7145bf2dc04684935d57d67dff9d6d795b2ba2796806bb109864be3a151/cffi-1.17.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:72e72408cad3d5419375fc87d289076ee319835bdfa2caad331e377589aebba9", size = 488469 }, - { url = "https://files.pythonhosted.org/packages/bf/ee/f94057fa6426481d663b88637a9a10e859e492c73d0384514a17d78ee205/cffi-1.17.1-cp313-cp313-win32.whl", hash = "sha256:e03eab0a8677fa80d646b5ddece1cbeaf556c313dcfac435ba11f107ba117b5d", size = 172475 }, - { url = "https://files.pythonhosted.org/packages/7c/fc/6a8cb64e5f0324877d503c854da15d76c1e50eb722e320b15345c4d0c6de/cffi-1.17.1-cp313-cp313-win_amd64.whl", hash = "sha256:f6a16c31041f09ead72d69f583767292f750d24913dadacf5756b966aacb3f1a", size = 182009 }, + { url = "https://files.pythonhosted.org/packages/8d/f8/dd6c246b148639254dad4d6803eb6a54e8c85c6e11ec9df2cffa87571dbe/cffi-1.17.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:f3a2b4222ce6b60e2e8b337bb9596923045681d71e5a082783484d845390938e", size = 182989, upload-time = "2024-09-04T20:44:28.956Z" }, + { url = "https://files.pythonhosted.org/packages/8b/f1/672d303ddf17c24fc83afd712316fda78dc6fce1cd53011b839483e1ecc8/cffi-1.17.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:0984a4925a435b1da406122d4d7968dd861c1385afe3b45ba82b750f229811e2", size = 178802, upload-time = "2024-09-04T20:44:30.289Z" }, + { url = "https://files.pythonhosted.org/packages/0e/2d/eab2e858a91fdff70533cab61dcff4a1f55ec60425832ddfdc9cd36bc8af/cffi-1.17.1-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d01b12eeeb4427d3110de311e1774046ad344f5b1a7403101878976ecd7a10f3", size = 454792, upload-time = "2024-09-04T20:44:32.01Z" }, + { url = "https://files.pythonhosted.org/packages/75/b2/fbaec7c4455c604e29388d55599b99ebcc250a60050610fadde58932b7ee/cffi-1.17.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:706510fe141c86a69c8ddc029c7910003a17353970cff3b904ff0686a5927683", size = 478893, upload-time = "2024-09-04T20:44:33.606Z" }, + { url = "https://files.pythonhosted.org/packages/4f/b7/6e4a2162178bf1935c336d4da8a9352cccab4d3a5d7914065490f08c0690/cffi-1.17.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:de55b766c7aa2e2a3092c51e0483d700341182f08e67c63630d5b6f200bb28e5", size = 485810, upload-time = "2024-09-04T20:44:35.191Z" }, + { url = "https://files.pythonhosted.org/packages/c7/8a/1d0e4a9c26e54746dc08c2c6c037889124d4f59dffd853a659fa545f1b40/cffi-1.17.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c59d6e989d07460165cc5ad3c61f9fd8f1b4796eacbd81cee78957842b834af4", size = 471200, upload-time = "2024-09-04T20:44:36.743Z" }, + { url = "https://files.pythonhosted.org/packages/26/9f/1aab65a6c0db35f43c4d1b4f580e8df53914310afc10ae0397d29d697af4/cffi-1.17.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd398dbc6773384a17fe0d3e7eeb8d1a21c2200473ee6806bb5e6a8e62bb73dd", size = 479447, upload-time = "2024-09-04T20:44:38.492Z" }, + { url = "https://files.pythonhosted.org/packages/5f/e4/fb8b3dd8dc0e98edf1135ff067ae070bb32ef9d509d6cb0f538cd6f7483f/cffi-1.17.1-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:3edc8d958eb099c634dace3c7e16560ae474aa3803a5df240542b305d14e14ed", size = 484358, upload-time = "2024-09-04T20:44:40.046Z" }, + { url = "https://files.pythonhosted.org/packages/f1/47/d7145bf2dc04684935d57d67dff9d6d795b2ba2796806bb109864be3a151/cffi-1.17.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:72e72408cad3d5419375fc87d289076ee319835bdfa2caad331e377589aebba9", size = 488469, upload-time = "2024-09-04T20:44:41.616Z" }, + { url = "https://files.pythonhosted.org/packages/bf/ee/f94057fa6426481d663b88637a9a10e859e492c73d0384514a17d78ee205/cffi-1.17.1-cp313-cp313-win32.whl", hash = "sha256:e03eab0a8677fa80d646b5ddece1cbeaf556c313dcfac435ba11f107ba117b5d", size = 172475, upload-time = "2024-09-04T20:44:43.733Z" }, + { url = "https://files.pythonhosted.org/packages/7c/fc/6a8cb64e5f0324877d503c854da15d76c1e50eb722e320b15345c4d0c6de/cffi-1.17.1-cp313-cp313-win_amd64.whl", hash = "sha256:f6a16c31041f09ead72d69f583767292f750d24913dadacf5756b966aacb3f1a", size = 182009, upload-time = "2024-09-04T20:44:45.309Z" }, ] [[package]] @@ -97,9 +103,9 @@ source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "colorama", marker = "sys_platform == 'win32'" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/b9/2e/0090cbf739cee7d23781ad4b89a9894a41538e4fcf4c31dcdd705b78eb8b/click-8.1.8.tar.gz", hash = "sha256:ed53c9d8990d83c2a27deae68e4ee337473f6330c040a31d4225c9574d16096a", size = 226593 } +sdist = { url = "https://files.pythonhosted.org/packages/b9/2e/0090cbf739cee7d23781ad4b89a9894a41538e4fcf4c31dcdd705b78eb8b/click-8.1.8.tar.gz", hash = "sha256:ed53c9d8990d83c2a27deae68e4ee337473f6330c040a31d4225c9574d16096a", size = 226593, upload-time = "2024-12-21T18:38:44.339Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/7e/d4/7ebdbd03970677812aac39c869717059dbb71a4cfc033ca6e5221787892c/click-8.1.8-py3-none-any.whl", hash = "sha256:63c132bbbed01578a06712a2d1f497bb62d9c1c0d329b7903a866228027263b2", size = 98188 }, + { url = "https://files.pythonhosted.org/packages/7e/d4/7ebdbd03970677812aac39c869717059dbb71a4cfc033ca6e5221787892c/click-8.1.8-py3-none-any.whl", hash = "sha256:63c132bbbed01578a06712a2d1f497bb62d9c1c0d329b7903a866228027263b2", size = 98188, upload-time = "2024-12-21T18:38:41.666Z" }, ] [[package]] @@ -112,18 +118,18 @@ dependencies = [ { name = "stanio" }, { name = "tqdm" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/ca/d7/0bd9a70cf49007eb87a6fbb9b09f52ec741414b39113bcb588df55c64320/cmdstanpy-1.2.5.tar.gz", hash = "sha256:53314e934ac63d894affb36263ac062b1e0e483c368a7b691087726803917b3b", size = 114278 } +sdist = { url = "https://files.pythonhosted.org/packages/ca/d7/0bd9a70cf49007eb87a6fbb9b09f52ec741414b39113bcb588df55c64320/cmdstanpy-1.2.5.tar.gz", hash = "sha256:53314e934ac63d894affb36263ac062b1e0e483c368a7b691087726803917b3b", size = 114278, upload-time = "2024-12-11T20:14:33.768Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/2a/80/04b3989f055e555737b3b6944f02112e90cfc4f2e53c763771dded22e684/cmdstanpy-1.2.5-py3-none-any.whl", hash = "sha256:90ae8781d80efbc62962b91974deb6033ee2f0696324eacde7188d837c36c47c", size = 94497 }, + { url = "https://files.pythonhosted.org/packages/2a/80/04b3989f055e555737b3b6944f02112e90cfc4f2e53c763771dded22e684/cmdstanpy-1.2.5-py3-none-any.whl", hash = "sha256:90ae8781d80efbc62962b91974deb6033ee2f0696324eacde7188d837c36c47c", size = 94497, upload-time = "2024-12-11T20:14:32.435Z" }, ] [[package]] name = "colorama" version = "0.4.6" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/d8/53/6f443c9a4a8358a93a6792e2acffb9d9d5cb0a5cfd8802644b7b1c9a02e4/colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44", size = 27697 } +sdist = { url = "https://files.pythonhosted.org/packages/d8/53/6f443c9a4a8358a93a6792e2acffb9d9d5cb0a5cfd8802644b7b1c9a02e4/colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44", size = 27697, upload-time = "2022-10-25T02:36:22.414Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6", size = 25335 }, + { url = "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6", size = 25335, upload-time = "2022-10-25T02:36:20.889Z" }, ] [[package]] @@ -133,57 +139,57 @@ source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "numpy" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/25/c2/fc7193cc5383637ff390a712e88e4ded0452c9fbcf84abe3de5ea3df1866/contourpy-1.3.1.tar.gz", hash = "sha256:dfd97abd83335045a913e3bcc4a09c0ceadbe66580cf573fe961f4a825efa699", size = 13465753 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/9a/e7/de62050dce687c5e96f946a93546910bc67e483fe05324439e329ff36105/contourpy-1.3.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:a761d9ccfc5e2ecd1bf05534eda382aa14c3e4f9205ba5b1684ecfe400716ef2", size = 271548 }, - { url = "https://files.pythonhosted.org/packages/78/4d/c2a09ae014ae984c6bdd29c11e74d3121b25eaa117eca0bb76340efd7e1c/contourpy-1.3.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:523a8ee12edfa36f6d2a49407f705a6ef4c5098de4f498619787e272de93f2d5", size = 255576 }, - { url = "https://files.pythonhosted.org/packages/ab/8a/915380ee96a5638bda80cd061ccb8e666bfdccea38d5741cb69e6dbd61fc/contourpy-1.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ece6df05e2c41bd46776fbc712e0996f7c94e0d0543af1656956d150c4ca7c81", size = 306635 }, - { url = "https://files.pythonhosted.org/packages/29/5c/c83ce09375428298acd4e6582aeb68b1e0d1447f877fa993d9bf6cd3b0a0/contourpy-1.3.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:573abb30e0e05bf31ed067d2f82500ecfdaec15627a59d63ea2d95714790f5c2", size = 345925 }, - { url = "https://files.pythonhosted.org/packages/29/63/5b52f4a15e80c66c8078a641a3bfacd6e07106835682454647aca1afc852/contourpy-1.3.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a9fa36448e6a3a1a9a2ba23c02012c43ed88905ec80163f2ffe2421c7192a5d7", size = 318000 }, - { url = "https://files.pythonhosted.org/packages/9a/e2/30ca086c692691129849198659bf0556d72a757fe2769eb9620a27169296/contourpy-1.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ea9924d28fc5586bf0b42d15f590b10c224117e74409dd7a0be3b62b74a501c", size = 322689 }, - { url = "https://files.pythonhosted.org/packages/6b/77/f37812ef700f1f185d348394debf33f22d531e714cf6a35d13d68a7003c7/contourpy-1.3.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:5b75aa69cb4d6f137b36f7eb2ace9280cfb60c55dc5f61c731fdf6f037f958a3", size = 1268413 }, - { url = "https://files.pythonhosted.org/packages/3f/6d/ce84e79cdd128542ebeb268f84abb4b093af78e7f8ec504676673d2675bc/contourpy-1.3.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:041b640d4ec01922083645a94bb3b2e777e6b626788f4095cf21abbe266413c1", size = 1326530 }, - { url = "https://files.pythonhosted.org/packages/72/22/8282f4eae20c73c89bee7a82a19c4e27af9b57bb602ecaa00713d5bdb54d/contourpy-1.3.1-cp313-cp313-win32.whl", hash = "sha256:36987a15e8ace5f58d4d5da9dca82d498c2bbb28dff6e5d04fbfcc35a9cb3a82", size = 175315 }, - { url = "https://files.pythonhosted.org/packages/e3/d5/28bca491f65312b438fbf076589dcde7f6f966b196d900777f5811b9c4e2/contourpy-1.3.1-cp313-cp313-win_amd64.whl", hash = "sha256:a7895f46d47671fa7ceec40f31fae721da51ad34bdca0bee83e38870b1f47ffd", size = 220987 }, - { url = "https://files.pythonhosted.org/packages/2f/24/a4b285d6adaaf9746e4700932f579f1a7b6f9681109f694cfa233ae75c4e/contourpy-1.3.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:9ddeb796389dadcd884c7eb07bd14ef12408aaae358f0e2ae24114d797eede30", size = 285001 }, - { url = "https://files.pythonhosted.org/packages/48/1d/fb49a401b5ca4f06ccf467cd6c4f1fd65767e63c21322b29b04ec40b40b9/contourpy-1.3.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:19c1555a6801c2f084c7ddc1c6e11f02eb6a6016ca1318dd5452ba3f613a1751", size = 268553 }, - { url = "https://files.pythonhosted.org/packages/79/1e/4aef9470d13fd029087388fae750dccb49a50c012a6c8d1d634295caa644/contourpy-1.3.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:841ad858cff65c2c04bf93875e384ccb82b654574a6d7f30453a04f04af71342", size = 310386 }, - { url = "https://files.pythonhosted.org/packages/b0/34/910dc706ed70153b60392b5305c708c9810d425bde12499c9184a1100888/contourpy-1.3.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4318af1c925fb9a4fb190559ef3eec206845f63e80fb603d47f2d6d67683901c", size = 349806 }, - { url = "https://files.pythonhosted.org/packages/31/3c/faee6a40d66d7f2a87f7102236bf4780c57990dd7f98e5ff29881b1b1344/contourpy-1.3.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:14c102b0eab282427b662cb590f2e9340a9d91a1c297f48729431f2dcd16e14f", size = 321108 }, - { url = "https://files.pythonhosted.org/packages/17/69/390dc9b20dd4bb20585651d7316cc3054b7d4a7b4f8b710b2b698e08968d/contourpy-1.3.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05e806338bfeaa006acbdeba0ad681a10be63b26e1b17317bfac3c5d98f36cda", size = 327291 }, - { url = "https://files.pythonhosted.org/packages/ef/74/7030b67c4e941fe1e5424a3d988080e83568030ce0355f7c9fc556455b01/contourpy-1.3.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:4d76d5993a34ef3df5181ba3c92fabb93f1eaa5729504fb03423fcd9f3177242", size = 1263752 }, - { url = "https://files.pythonhosted.org/packages/f0/ed/92d86f183a8615f13f6b9cbfc5d4298a509d6ce433432e21da838b4b63f4/contourpy-1.3.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:89785bb2a1980c1bd87f0cb1517a71cde374776a5f150936b82580ae6ead44a1", size = 1318403 }, - { url = "https://files.pythonhosted.org/packages/b3/0e/c8e4950c77dcfc897c71d61e56690a0a9df39543d2164040301b5df8e67b/contourpy-1.3.1-cp313-cp313t-win32.whl", hash = "sha256:8eb96e79b9f3dcadbad2a3891672f81cdcab7f95b27f28f1c67d75f045b6b4f1", size = 185117 }, - { url = "https://files.pythonhosted.org/packages/c1/31/1ae946f11dfbd229222e6d6ad8e7bd1891d3d48bde5fbf7a0beb9491f8e3/contourpy-1.3.1-cp313-cp313t-win_amd64.whl", hash = "sha256:287ccc248c9e0d0566934e7d606201abd74761b5703d804ff3df8935f523d546", size = 236668 }, +sdist = { url = "https://files.pythonhosted.org/packages/25/c2/fc7193cc5383637ff390a712e88e4ded0452c9fbcf84abe3de5ea3df1866/contourpy-1.3.1.tar.gz", hash = "sha256:dfd97abd83335045a913e3bcc4a09c0ceadbe66580cf573fe961f4a825efa699", size = 13465753, upload-time = "2024-11-12T11:00:59.118Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9a/e7/de62050dce687c5e96f946a93546910bc67e483fe05324439e329ff36105/contourpy-1.3.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:a761d9ccfc5e2ecd1bf05534eda382aa14c3e4f9205ba5b1684ecfe400716ef2", size = 271548, upload-time = "2024-11-12T10:55:32.228Z" }, + { url = "https://files.pythonhosted.org/packages/78/4d/c2a09ae014ae984c6bdd29c11e74d3121b25eaa117eca0bb76340efd7e1c/contourpy-1.3.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:523a8ee12edfa36f6d2a49407f705a6ef4c5098de4f498619787e272de93f2d5", size = 255576, upload-time = "2024-11-12T10:55:36.246Z" }, + { url = "https://files.pythonhosted.org/packages/ab/8a/915380ee96a5638bda80cd061ccb8e666bfdccea38d5741cb69e6dbd61fc/contourpy-1.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ece6df05e2c41bd46776fbc712e0996f7c94e0d0543af1656956d150c4ca7c81", size = 306635, upload-time = "2024-11-12T10:55:41.904Z" }, + { url = "https://files.pythonhosted.org/packages/29/5c/c83ce09375428298acd4e6582aeb68b1e0d1447f877fa993d9bf6cd3b0a0/contourpy-1.3.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:573abb30e0e05bf31ed067d2f82500ecfdaec15627a59d63ea2d95714790f5c2", size = 345925, upload-time = "2024-11-12T10:55:47.206Z" }, + { url = "https://files.pythonhosted.org/packages/29/63/5b52f4a15e80c66c8078a641a3bfacd6e07106835682454647aca1afc852/contourpy-1.3.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a9fa36448e6a3a1a9a2ba23c02012c43ed88905ec80163f2ffe2421c7192a5d7", size = 318000, upload-time = "2024-11-12T10:55:52.264Z" }, + { url = "https://files.pythonhosted.org/packages/9a/e2/30ca086c692691129849198659bf0556d72a757fe2769eb9620a27169296/contourpy-1.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ea9924d28fc5586bf0b42d15f590b10c224117e74409dd7a0be3b62b74a501c", size = 322689, upload-time = "2024-11-12T10:55:57.858Z" }, + { url = "https://files.pythonhosted.org/packages/6b/77/f37812ef700f1f185d348394debf33f22d531e714cf6a35d13d68a7003c7/contourpy-1.3.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:5b75aa69cb4d6f137b36f7eb2ace9280cfb60c55dc5f61c731fdf6f037f958a3", size = 1268413, upload-time = "2024-11-12T10:56:13.328Z" }, + { url = "https://files.pythonhosted.org/packages/3f/6d/ce84e79cdd128542ebeb268f84abb4b093af78e7f8ec504676673d2675bc/contourpy-1.3.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:041b640d4ec01922083645a94bb3b2e777e6b626788f4095cf21abbe266413c1", size = 1326530, upload-time = "2024-11-12T10:56:30.07Z" }, + { url = "https://files.pythonhosted.org/packages/72/22/8282f4eae20c73c89bee7a82a19c4e27af9b57bb602ecaa00713d5bdb54d/contourpy-1.3.1-cp313-cp313-win32.whl", hash = "sha256:36987a15e8ace5f58d4d5da9dca82d498c2bbb28dff6e5d04fbfcc35a9cb3a82", size = 175315, upload-time = "2024-11-12T10:57:42.804Z" }, + { url = "https://files.pythonhosted.org/packages/e3/d5/28bca491f65312b438fbf076589dcde7f6f966b196d900777f5811b9c4e2/contourpy-1.3.1-cp313-cp313-win_amd64.whl", hash = "sha256:a7895f46d47671fa7ceec40f31fae721da51ad34bdca0bee83e38870b1f47ffd", size = 220987, upload-time = "2024-11-12T10:57:46.365Z" }, + { url = "https://files.pythonhosted.org/packages/2f/24/a4b285d6adaaf9746e4700932f579f1a7b6f9681109f694cfa233ae75c4e/contourpy-1.3.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:9ddeb796389dadcd884c7eb07bd14ef12408aaae358f0e2ae24114d797eede30", size = 285001, upload-time = "2024-11-12T10:56:34.483Z" }, + { url = "https://files.pythonhosted.org/packages/48/1d/fb49a401b5ca4f06ccf467cd6c4f1fd65767e63c21322b29b04ec40b40b9/contourpy-1.3.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:19c1555a6801c2f084c7ddc1c6e11f02eb6a6016ca1318dd5452ba3f613a1751", size = 268553, upload-time = "2024-11-12T10:56:39.167Z" }, + { url = "https://files.pythonhosted.org/packages/79/1e/4aef9470d13fd029087388fae750dccb49a50c012a6c8d1d634295caa644/contourpy-1.3.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:841ad858cff65c2c04bf93875e384ccb82b654574a6d7f30453a04f04af71342", size = 310386, upload-time = "2024-11-12T10:56:44.594Z" }, + { url = "https://files.pythonhosted.org/packages/b0/34/910dc706ed70153b60392b5305c708c9810d425bde12499c9184a1100888/contourpy-1.3.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4318af1c925fb9a4fb190559ef3eec206845f63e80fb603d47f2d6d67683901c", size = 349806, upload-time = "2024-11-12T10:56:49.565Z" }, + { url = "https://files.pythonhosted.org/packages/31/3c/faee6a40d66d7f2a87f7102236bf4780c57990dd7f98e5ff29881b1b1344/contourpy-1.3.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:14c102b0eab282427b662cb590f2e9340a9d91a1c297f48729431f2dcd16e14f", size = 321108, upload-time = "2024-11-12T10:56:55.013Z" }, + { url = "https://files.pythonhosted.org/packages/17/69/390dc9b20dd4bb20585651d7316cc3054b7d4a7b4f8b710b2b698e08968d/contourpy-1.3.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05e806338bfeaa006acbdeba0ad681a10be63b26e1b17317bfac3c5d98f36cda", size = 327291, upload-time = "2024-11-12T10:56:59.897Z" }, + { url = "https://files.pythonhosted.org/packages/ef/74/7030b67c4e941fe1e5424a3d988080e83568030ce0355f7c9fc556455b01/contourpy-1.3.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:4d76d5993a34ef3df5181ba3c92fabb93f1eaa5729504fb03423fcd9f3177242", size = 1263752, upload-time = "2024-11-12T10:57:14.79Z" }, + { url = "https://files.pythonhosted.org/packages/f0/ed/92d86f183a8615f13f6b9cbfc5d4298a509d6ce433432e21da838b4b63f4/contourpy-1.3.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:89785bb2a1980c1bd87f0cb1517a71cde374776a5f150936b82580ae6ead44a1", size = 1318403, upload-time = "2024-11-12T10:57:31.326Z" }, + { url = "https://files.pythonhosted.org/packages/b3/0e/c8e4950c77dcfc897c71d61e56690a0a9df39543d2164040301b5df8e67b/contourpy-1.3.1-cp313-cp313t-win32.whl", hash = "sha256:8eb96e79b9f3dcadbad2a3891672f81cdcab7f95b27f28f1c67d75f045b6b4f1", size = 185117, upload-time = "2024-11-12T10:57:34.735Z" }, + { url = "https://files.pythonhosted.org/packages/c1/31/1ae946f11dfbd229222e6d6ad8e7bd1891d3d48bde5fbf7a0beb9491f8e3/contourpy-1.3.1-cp313-cp313t-win_amd64.whl", hash = "sha256:287ccc248c9e0d0566934e7d606201abd74761b5703d804ff3df8935f523d546", size = 236668, upload-time = "2024-11-12T10:57:39.061Z" }, ] [[package]] name = "coverage" version = "7.7.1" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/6b/bf/3effb7453498de9c14a81ca21e1f92e6723ce7ebdc5402ae30e4dcc490ac/coverage-7.7.1.tar.gz", hash = "sha256:199a1272e642266b90c9f40dec7fd3d307b51bf639fa0d15980dc0b3246c1393", size = 810332 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/ec/2a/1a254eaadb01c163b29d6ce742aa380fc5cfe74a82138ce6eb944c42effa/coverage-7.7.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:eebd927b86761a7068a06d3699fd6c20129becf15bb44282db085921ea0f1585", size = 211277 }, - { url = "https://files.pythonhosted.org/packages/cf/00/9636028365efd4eb6db71cdd01d99e59f25cf0d47a59943dbee32dd1573b/coverage-7.7.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:2a79c4a09765d18311c35975ad2eb1ac613c0401afdd9cb1ca4110aeb5dd3c4c", size = 211551 }, - { url = "https://files.pythonhosted.org/packages/6f/c8/14aed97f80363f055b6cd91e62986492d9fe3b55e06b4b5c82627ae18744/coverage-7.7.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b1c65a739447c5ddce5b96c0a388fd82e4bbdff7251396a70182b1d83631019", size = 245068 }, - { url = "https://files.pythonhosted.org/packages/d6/76/9c5fe3f900e01d7995b0cda08fc8bf9773b4b1be58bdd626f319c7d4ec11/coverage-7.7.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:392cc8fd2b1b010ca36840735e2a526fcbd76795a5d44006065e79868cc76ccf", size = 242109 }, - { url = "https://files.pythonhosted.org/packages/c0/81/760993bb536fb674d3a059f718145dcd409ed6d00ae4e3cbf380019fdfd0/coverage-7.7.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9bb47cc9f07a59a451361a850cb06d20633e77a9118d05fd0f77b1864439461b", size = 244129 }, - { url = "https://files.pythonhosted.org/packages/00/be/1114a19f93eae0b6cd955dabb5bee80397bd420d846e63cd0ebffc134e3d/coverage-7.7.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:b4c144c129343416a49378e05c9451c34aae5ccf00221e4fa4f487db0816ee2f", size = 244201 }, - { url = "https://files.pythonhosted.org/packages/06/8d/9128fd283c660474c7dc2b1ea5c66761bc776b970c1724989ed70e9d6eee/coverage-7.7.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:bc96441c9d9ca12a790b5ae17d2fa6654da4b3962ea15e0eabb1b1caed094777", size = 242282 }, - { url = "https://files.pythonhosted.org/packages/d4/2a/6d7dbfe9c1f82e2cdc28d48f4a0c93190cf58f057fa91ba2391b92437fe6/coverage-7.7.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:3d03287eb03186256999539d98818c425c33546ab4901028c8fa933b62c35c3a", size = 243570 }, - { url = "https://files.pythonhosted.org/packages/cf/3e/29f1e4ce3bb951bcf74b2037a82d94c5064b3334304a3809a95805628838/coverage-7.7.1-cp313-cp313-win32.whl", hash = "sha256:8fed429c26b99641dc1f3a79179860122b22745dd9af36f29b141e178925070a", size = 213772 }, - { url = "https://files.pythonhosted.org/packages/bc/3a/cf029bf34aefd22ad34f0e808eba8d5830f297a1acb483a2124f097ff769/coverage-7.7.1-cp313-cp313-win_amd64.whl", hash = "sha256:092b134129a8bb940c08b2d9ceb4459af5fb3faea77888af63182e17d89e1cf1", size = 214575 }, - { url = "https://files.pythonhosted.org/packages/92/4c/fb8b35f186a2519126209dce91ab8644c9a901cf04f8dfa65576ca2dd9e8/coverage-7.7.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:d3154b369141c3169b8133973ac00f63fcf8d6dbcc297d788d36afbb7811e511", size = 212113 }, - { url = "https://files.pythonhosted.org/packages/59/90/e834ffc86fd811c5b570a64ee1895b20404a247ec18a896b9ba543b12097/coverage-7.7.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:264ff2bcce27a7f455b64ac0dfe097680b65d9a1a293ef902675fa8158d20b24", size = 212333 }, - { url = "https://files.pythonhosted.org/packages/a5/a1/27f0ad39569b3b02410b881c42e58ab403df13fcd465b475db514b83d3d3/coverage-7.7.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ba8480ebe401c2f094d10a8c4209b800a9b77215b6c796d16b6ecdf665048950", size = 256566 }, - { url = "https://files.pythonhosted.org/packages/9f/3b/21fa66a1db1b90a0633e771a32754f7c02d60236a251afb1b86d7e15d83a/coverage-7.7.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:520af84febb6bb54453e7fbb730afa58c7178fd018c398a8fcd8e269a79bf96d", size = 252276 }, - { url = "https://files.pythonhosted.org/packages/d6/e5/4ab83a59b0f8ac4f0029018559fc4c7d042e1b4552a722e2bfb04f652296/coverage-7.7.1-cp313-cp313t-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88d96127ae01ff571d465d4b0be25c123789cef88ba0879194d673fdea52f54e", size = 254616 }, - { url = "https://files.pythonhosted.org/packages/db/7a/4224417c0ccdb16a5ba4d8d1fcfaa18439be1624c29435bb9bc88ccabdfb/coverage-7.7.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:0ce92c5a9d7007d838456f4b77ea159cb628187a137e1895331e530973dcf862", size = 255707 }, - { url = "https://files.pythonhosted.org/packages/51/20/ff18a329ccaa3d035e2134ecf3a2e92a52d3be6704c76e74ca5589ece260/coverage-7.7.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:0dab4ef76d7b14f432057fdb7a0477e8bffca0ad39ace308be6e74864e632271", size = 253876 }, - { url = "https://files.pythonhosted.org/packages/e4/e8/1d6f1a6651672c64f45ffad05306dad9c4c189bec694270822508049b2cb/coverage-7.7.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:7e688010581dbac9cab72800e9076e16f7cccd0d89af5785b70daa11174e94de", size = 254687 }, - { url = "https://files.pythonhosted.org/packages/6b/ea/1b9a14cf3e2bc3fd9de23a336a8082091711c5f480b500782d59e84a8fe5/coverage-7.7.1-cp313-cp313t-win32.whl", hash = "sha256:e52eb31ae3afacdacfe50705a15b75ded67935770c460d88c215a9c0c40d0e9c", size = 214486 }, - { url = "https://files.pythonhosted.org/packages/cc/bb/faa6bcf769cb7b3b660532a30d77c440289b40636c7f80e498b961295d07/coverage-7.7.1-cp313-cp313t-win_amd64.whl", hash = "sha256:a6b6b3bd121ee2ec4bd35039319f3423d0be282b9752a5ae9f18724bc93ebe7c", size = 215647 }, - { url = "https://files.pythonhosted.org/packages/52/26/9f53293ff4cc1d47d98367ce045ca2e62746d6be74a5c6851a474eabf59b/coverage-7.7.1-py3-none-any.whl", hash = "sha256:822fa99dd1ac686061e1219b67868e25d9757989cf2259f735a4802497d6da31", size = 203006 }, +sdist = { url = "https://files.pythonhosted.org/packages/6b/bf/3effb7453498de9c14a81ca21e1f92e6723ce7ebdc5402ae30e4dcc490ac/coverage-7.7.1.tar.gz", hash = "sha256:199a1272e642266b90c9f40dec7fd3d307b51bf639fa0d15980dc0b3246c1393", size = 810332, upload-time = "2025-03-21T17:23:58.093Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ec/2a/1a254eaadb01c163b29d6ce742aa380fc5cfe74a82138ce6eb944c42effa/coverage-7.7.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:eebd927b86761a7068a06d3699fd6c20129becf15bb44282db085921ea0f1585", size = 211277, upload-time = "2025-03-21T17:23:04.822Z" }, + { url = "https://files.pythonhosted.org/packages/cf/00/9636028365efd4eb6db71cdd01d99e59f25cf0d47a59943dbee32dd1573b/coverage-7.7.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:2a79c4a09765d18311c35975ad2eb1ac613c0401afdd9cb1ca4110aeb5dd3c4c", size = 211551, upload-time = "2025-03-21T17:23:06.256Z" }, + { url = "https://files.pythonhosted.org/packages/6f/c8/14aed97f80363f055b6cd91e62986492d9fe3b55e06b4b5c82627ae18744/coverage-7.7.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b1c65a739447c5ddce5b96c0a388fd82e4bbdff7251396a70182b1d83631019", size = 245068, upload-time = "2025-03-21T17:23:08.462Z" }, + { url = "https://files.pythonhosted.org/packages/d6/76/9c5fe3f900e01d7995b0cda08fc8bf9773b4b1be58bdd626f319c7d4ec11/coverage-7.7.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:392cc8fd2b1b010ca36840735e2a526fcbd76795a5d44006065e79868cc76ccf", size = 242109, upload-time = "2025-03-21T17:23:10.208Z" }, + { url = "https://files.pythonhosted.org/packages/c0/81/760993bb536fb674d3a059f718145dcd409ed6d00ae4e3cbf380019fdfd0/coverage-7.7.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9bb47cc9f07a59a451361a850cb06d20633e77a9118d05fd0f77b1864439461b", size = 244129, upload-time = "2025-03-21T17:23:11.83Z" }, + { url = "https://files.pythonhosted.org/packages/00/be/1114a19f93eae0b6cd955dabb5bee80397bd420d846e63cd0ebffc134e3d/coverage-7.7.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:b4c144c129343416a49378e05c9451c34aae5ccf00221e4fa4f487db0816ee2f", size = 244201, upload-time = "2025-03-21T17:23:13.667Z" }, + { url = "https://files.pythonhosted.org/packages/06/8d/9128fd283c660474c7dc2b1ea5c66761bc776b970c1724989ed70e9d6eee/coverage-7.7.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:bc96441c9d9ca12a790b5ae17d2fa6654da4b3962ea15e0eabb1b1caed094777", size = 242282, upload-time = "2025-03-21T17:23:15.454Z" }, + { url = "https://files.pythonhosted.org/packages/d4/2a/6d7dbfe9c1f82e2cdc28d48f4a0c93190cf58f057fa91ba2391b92437fe6/coverage-7.7.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:3d03287eb03186256999539d98818c425c33546ab4901028c8fa933b62c35c3a", size = 243570, upload-time = "2025-03-21T17:23:16.902Z" }, + { url = "https://files.pythonhosted.org/packages/cf/3e/29f1e4ce3bb951bcf74b2037a82d94c5064b3334304a3809a95805628838/coverage-7.7.1-cp313-cp313-win32.whl", hash = "sha256:8fed429c26b99641dc1f3a79179860122b22745dd9af36f29b141e178925070a", size = 213772, upload-time = "2025-03-21T17:23:18.3Z" }, + { url = "https://files.pythonhosted.org/packages/bc/3a/cf029bf34aefd22ad34f0e808eba8d5830f297a1acb483a2124f097ff769/coverage-7.7.1-cp313-cp313-win_amd64.whl", hash = "sha256:092b134129a8bb940c08b2d9ceb4459af5fb3faea77888af63182e17d89e1cf1", size = 214575, upload-time = "2025-03-21T17:23:19.664Z" }, + { url = "https://files.pythonhosted.org/packages/92/4c/fb8b35f186a2519126209dce91ab8644c9a901cf04f8dfa65576ca2dd9e8/coverage-7.7.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:d3154b369141c3169b8133973ac00f63fcf8d6dbcc297d788d36afbb7811e511", size = 212113, upload-time = "2025-03-21T17:23:21.041Z" }, + { url = "https://files.pythonhosted.org/packages/59/90/e834ffc86fd811c5b570a64ee1895b20404a247ec18a896b9ba543b12097/coverage-7.7.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:264ff2bcce27a7f455b64ac0dfe097680b65d9a1a293ef902675fa8158d20b24", size = 212333, upload-time = "2025-03-21T17:23:22.474Z" }, + { url = "https://files.pythonhosted.org/packages/a5/a1/27f0ad39569b3b02410b881c42e58ab403df13fcd465b475db514b83d3d3/coverage-7.7.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ba8480ebe401c2f094d10a8c4209b800a9b77215b6c796d16b6ecdf665048950", size = 256566, upload-time = "2025-03-21T17:23:24.492Z" }, + { url = "https://files.pythonhosted.org/packages/9f/3b/21fa66a1db1b90a0633e771a32754f7c02d60236a251afb1b86d7e15d83a/coverage-7.7.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:520af84febb6bb54453e7fbb730afa58c7178fd018c398a8fcd8e269a79bf96d", size = 252276, upload-time = "2025-03-21T17:23:26.245Z" }, + { url = "https://files.pythonhosted.org/packages/d6/e5/4ab83a59b0f8ac4f0029018559fc4c7d042e1b4552a722e2bfb04f652296/coverage-7.7.1-cp313-cp313t-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88d96127ae01ff571d465d4b0be25c123789cef88ba0879194d673fdea52f54e", size = 254616, upload-time = "2025-03-21T17:23:28.183Z" }, + { url = "https://files.pythonhosted.org/packages/db/7a/4224417c0ccdb16a5ba4d8d1fcfaa18439be1624c29435bb9bc88ccabdfb/coverage-7.7.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:0ce92c5a9d7007d838456f4b77ea159cb628187a137e1895331e530973dcf862", size = 255707, upload-time = "2025-03-21T17:23:29.578Z" }, + { url = "https://files.pythonhosted.org/packages/51/20/ff18a329ccaa3d035e2134ecf3a2e92a52d3be6704c76e74ca5589ece260/coverage-7.7.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:0dab4ef76d7b14f432057fdb7a0477e8bffca0ad39ace308be6e74864e632271", size = 253876, upload-time = "2025-03-21T17:23:31.554Z" }, + { url = "https://files.pythonhosted.org/packages/e4/e8/1d6f1a6651672c64f45ffad05306dad9c4c189bec694270822508049b2cb/coverage-7.7.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:7e688010581dbac9cab72800e9076e16f7cccd0d89af5785b70daa11174e94de", size = 254687, upload-time = "2025-03-21T17:23:33.406Z" }, + { url = "https://files.pythonhosted.org/packages/6b/ea/1b9a14cf3e2bc3fd9de23a336a8082091711c5f480b500782d59e84a8fe5/coverage-7.7.1-cp313-cp313t-win32.whl", hash = "sha256:e52eb31ae3afacdacfe50705a15b75ded67935770c460d88c215a9c0c40d0e9c", size = 214486, upload-time = "2025-03-21T17:23:35.035Z" }, + { url = "https://files.pythonhosted.org/packages/cc/bb/faa6bcf769cb7b3b660532a30d77c440289b40636c7f80e498b961295d07/coverage-7.7.1-cp313-cp313t-win_amd64.whl", hash = "sha256:a6b6b3bd121ee2ec4bd35039319f3423d0be282b9752a5ae9f18724bc93ebe7c", size = 215647, upload-time = "2025-03-21T17:23:36.572Z" }, + { url = "https://files.pythonhosted.org/packages/52/26/9f53293ff4cc1d47d98367ce045ca2e62746d6be74a5c6851a474eabf59b/coverage-7.7.1-py3-none-any.whl", hash = "sha256:822fa99dd1ac686061e1219b67868e25d9757989cf2259f735a4802497d6da31", size = 203006, upload-time = "2025-03-21T17:23:56.378Z" }, ] [[package]] @@ -193,41 +199,41 @@ source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "cffi", marker = "platform_python_implementation != 'PyPy'" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/cd/25/4ce80c78963834b8a9fd1cc1266be5ed8d1840785c0f2e1b73b8d128d505/cryptography-44.0.2.tar.gz", hash = "sha256:c63454aa261a0cf0c5b4718349629793e9e634993538db841165b3df74f37ec0", size = 710807 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/92/ef/83e632cfa801b221570c5f58c0369db6fa6cef7d9ff859feab1aae1a8a0f/cryptography-44.0.2-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:efcfe97d1b3c79e486554efddeb8f6f53a4cdd4cf6086642784fa31fc384e1d7", size = 6676361 }, - { url = "https://files.pythonhosted.org/packages/30/ec/7ea7c1e4c8fc8329506b46c6c4a52e2f20318425d48e0fe597977c71dbce/cryptography-44.0.2-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:29ecec49f3ba3f3849362854b7253a9f59799e3763b0c9d0826259a88efa02f1", size = 3952350 }, - { url = "https://files.pythonhosted.org/packages/27/61/72e3afdb3c5ac510330feba4fc1faa0fe62e070592d6ad00c40bb69165e5/cryptography-44.0.2-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc821e161ae88bfe8088d11bb39caf2916562e0a2dc7b6d56714a48b784ef0bb", size = 4166572 }, - { url = "https://files.pythonhosted.org/packages/26/e4/ba680f0b35ed4a07d87f9e98f3ebccb05091f3bf6b5a478b943253b3bbd5/cryptography-44.0.2-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:3c00b6b757b32ce0f62c574b78b939afab9eecaf597c4d624caca4f9e71e7843", size = 3958124 }, - { url = "https://files.pythonhosted.org/packages/9c/e8/44ae3e68c8b6d1cbc59040288056df2ad7f7f03bbcaca6b503c737ab8e73/cryptography-44.0.2-cp37-abi3-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:7bdcd82189759aba3816d1f729ce42ffded1ac304c151d0a8e89b9996ab863d5", size = 3678122 }, - { url = "https://files.pythonhosted.org/packages/27/7b/664ea5e0d1eab511a10e480baf1c5d3e681c7d91718f60e149cec09edf01/cryptography-44.0.2-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:4973da6ca3db4405c54cd0b26d328be54c7747e89e284fcff166132eb7bccc9c", size = 4191831 }, - { url = "https://files.pythonhosted.org/packages/2a/07/79554a9c40eb11345e1861f46f845fa71c9e25bf66d132e123d9feb8e7f9/cryptography-44.0.2-cp37-abi3-manylinux_2_34_aarch64.whl", hash = "sha256:4e389622b6927d8133f314949a9812972711a111d577a5d1f4bee5e58736b80a", size = 3960583 }, - { url = "https://files.pythonhosted.org/packages/bb/6d/858e356a49a4f0b591bd6789d821427de18432212e137290b6d8a817e9bf/cryptography-44.0.2-cp37-abi3-manylinux_2_34_x86_64.whl", hash = "sha256:f514ef4cd14bb6fb484b4a60203e912cfcb64f2ab139e88c2274511514bf7308", size = 4191753 }, - { url = "https://files.pythonhosted.org/packages/b2/80/62df41ba4916067fa6b125aa8c14d7e9181773f0d5d0bd4dcef580d8b7c6/cryptography-44.0.2-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:1bc312dfb7a6e5d66082c87c34c8a62176e684b6fe3d90fcfe1568de675e6688", size = 4079550 }, - { url = "https://files.pythonhosted.org/packages/f3/cd/2558cc08f7b1bb40683f99ff4327f8dcfc7de3affc669e9065e14824511b/cryptography-44.0.2-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:3b721b8b4d948b218c88cb8c45a01793483821e709afe5f622861fc6182b20a7", size = 4298367 }, - { url = "https://files.pythonhosted.org/packages/71/59/94ccc74788945bc3bd4cf355d19867e8057ff5fdbcac781b1ff95b700fb1/cryptography-44.0.2-cp37-abi3-win32.whl", hash = "sha256:51e4de3af4ec3899d6d178a8c005226491c27c4ba84101bfb59c901e10ca9f79", size = 2772843 }, - { url = "https://files.pythonhosted.org/packages/ca/2c/0d0bbaf61ba05acb32f0841853cfa33ebb7a9ab3d9ed8bb004bd39f2da6a/cryptography-44.0.2-cp37-abi3-win_amd64.whl", hash = "sha256:c505d61b6176aaf982c5717ce04e87da5abc9a36a5b39ac03905c4aafe8de7aa", size = 3209057 }, - { url = "https://files.pythonhosted.org/packages/9e/be/7a26142e6d0f7683d8a382dd963745e65db895a79a280a30525ec92be890/cryptography-44.0.2-cp39-abi3-macosx_10_9_universal2.whl", hash = "sha256:8e0ddd63e6bf1161800592c71ac794d3fb8001f2caebe0966e77c5234fa9efc3", size = 6677789 }, - { url = "https://files.pythonhosted.org/packages/06/88/638865be7198a84a7713950b1db7343391c6066a20e614f8fa286eb178ed/cryptography-44.0.2-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:81276f0ea79a208d961c433a947029e1a15948966658cf6710bbabb60fcc2639", size = 3951919 }, - { url = "https://files.pythonhosted.org/packages/d7/fc/99fe639bcdf58561dfad1faa8a7369d1dc13f20acd78371bb97a01613585/cryptography-44.0.2-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9a1e657c0f4ea2a23304ee3f964db058c9e9e635cc7019c4aa21c330755ef6fd", size = 4167812 }, - { url = "https://files.pythonhosted.org/packages/53/7b/aafe60210ec93d5d7f552592a28192e51d3c6b6be449e7fd0a91399b5d07/cryptography-44.0.2-cp39-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:6210c05941994290f3f7f175a4a57dbbb2afd9273657614c506d5976db061181", size = 3958571 }, - { url = "https://files.pythonhosted.org/packages/16/32/051f7ce79ad5a6ef5e26a92b37f172ee2d6e1cce09931646eef8de1e9827/cryptography-44.0.2-cp39-abi3-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:d1c3572526997b36f245a96a2b1713bf79ce99b271bbcf084beb6b9b075f29ea", size = 3679832 }, - { url = "https://files.pythonhosted.org/packages/78/2b/999b2a1e1ba2206f2d3bca267d68f350beb2b048a41ea827e08ce7260098/cryptography-44.0.2-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:b042d2a275c8cee83a4b7ae30c45a15e6a4baa65a179a0ec2d78ebb90e4f6699", size = 4193719 }, - { url = "https://files.pythonhosted.org/packages/72/97/430e56e39a1356e8e8f10f723211a0e256e11895ef1a135f30d7d40f2540/cryptography-44.0.2-cp39-abi3-manylinux_2_34_aarch64.whl", hash = "sha256:d03806036b4f89e3b13b6218fefea8d5312e450935b1a2d55f0524e2ed7c59d9", size = 3960852 }, - { url = "https://files.pythonhosted.org/packages/89/33/c1cf182c152e1d262cac56850939530c05ca6c8d149aa0dcee490b417e99/cryptography-44.0.2-cp39-abi3-manylinux_2_34_x86_64.whl", hash = "sha256:c7362add18b416b69d58c910caa217f980c5ef39b23a38a0880dfd87bdf8cd23", size = 4193906 }, - { url = "https://files.pythonhosted.org/packages/e1/99/87cf26d4f125380dc674233971069bc28d19b07f7755b29861570e513650/cryptography-44.0.2-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:8cadc6e3b5a1f144a039ea08a0bdb03a2a92e19c46be3285123d32029f40a922", size = 4081572 }, - { url = "https://files.pythonhosted.org/packages/b3/9f/6a3e0391957cc0c5f84aef9fbdd763035f2b52e998a53f99345e3ac69312/cryptography-44.0.2-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:6f101b1f780f7fc613d040ca4bdf835c6ef3b00e9bd7125a4255ec574c7916e4", size = 4298631 }, - { url = "https://files.pythonhosted.org/packages/e2/a5/5bc097adb4b6d22a24dea53c51f37e480aaec3465285c253098642696423/cryptography-44.0.2-cp39-abi3-win32.whl", hash = "sha256:3dc62975e31617badc19a906481deacdeb80b4bb454394b4098e3f2525a488c5", size = 2773792 }, - { url = "https://files.pythonhosted.org/packages/33/cf/1f7649b8b9a3543e042d3f348e398a061923ac05b507f3f4d95f11938aa9/cryptography-44.0.2-cp39-abi3-win_amd64.whl", hash = "sha256:5f6f90b72d8ccadb9c6e311c775c8305381db88374c65fa1a68250aa8a9cb3a6", size = 3210957 }, +sdist = { url = "https://files.pythonhosted.org/packages/cd/25/4ce80c78963834b8a9fd1cc1266be5ed8d1840785c0f2e1b73b8d128d505/cryptography-44.0.2.tar.gz", hash = "sha256:c63454aa261a0cf0c5b4718349629793e9e634993538db841165b3df74f37ec0", size = 710807, upload-time = "2025-03-02T00:01:37.692Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/92/ef/83e632cfa801b221570c5f58c0369db6fa6cef7d9ff859feab1aae1a8a0f/cryptography-44.0.2-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:efcfe97d1b3c79e486554efddeb8f6f53a4cdd4cf6086642784fa31fc384e1d7", size = 6676361, upload-time = "2025-03-02T00:00:06.528Z" }, + { url = "https://files.pythonhosted.org/packages/30/ec/7ea7c1e4c8fc8329506b46c6c4a52e2f20318425d48e0fe597977c71dbce/cryptography-44.0.2-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:29ecec49f3ba3f3849362854b7253a9f59799e3763b0c9d0826259a88efa02f1", size = 3952350, upload-time = "2025-03-02T00:00:09.537Z" }, + { url = "https://files.pythonhosted.org/packages/27/61/72e3afdb3c5ac510330feba4fc1faa0fe62e070592d6ad00c40bb69165e5/cryptography-44.0.2-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc821e161ae88bfe8088d11bb39caf2916562e0a2dc7b6d56714a48b784ef0bb", size = 4166572, upload-time = "2025-03-02T00:00:12.03Z" }, + { url = "https://files.pythonhosted.org/packages/26/e4/ba680f0b35ed4a07d87f9e98f3ebccb05091f3bf6b5a478b943253b3bbd5/cryptography-44.0.2-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:3c00b6b757b32ce0f62c574b78b939afab9eecaf597c4d624caca4f9e71e7843", size = 3958124, upload-time = "2025-03-02T00:00:14.518Z" }, + { url = "https://files.pythonhosted.org/packages/9c/e8/44ae3e68c8b6d1cbc59040288056df2ad7f7f03bbcaca6b503c737ab8e73/cryptography-44.0.2-cp37-abi3-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:7bdcd82189759aba3816d1f729ce42ffded1ac304c151d0a8e89b9996ab863d5", size = 3678122, upload-time = "2025-03-02T00:00:17.212Z" }, + { url = "https://files.pythonhosted.org/packages/27/7b/664ea5e0d1eab511a10e480baf1c5d3e681c7d91718f60e149cec09edf01/cryptography-44.0.2-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:4973da6ca3db4405c54cd0b26d328be54c7747e89e284fcff166132eb7bccc9c", size = 4191831, upload-time = "2025-03-02T00:00:19.696Z" }, + { url = "https://files.pythonhosted.org/packages/2a/07/79554a9c40eb11345e1861f46f845fa71c9e25bf66d132e123d9feb8e7f9/cryptography-44.0.2-cp37-abi3-manylinux_2_34_aarch64.whl", hash = "sha256:4e389622b6927d8133f314949a9812972711a111d577a5d1f4bee5e58736b80a", size = 3960583, upload-time = "2025-03-02T00:00:22.488Z" }, + { url = "https://files.pythonhosted.org/packages/bb/6d/858e356a49a4f0b591bd6789d821427de18432212e137290b6d8a817e9bf/cryptography-44.0.2-cp37-abi3-manylinux_2_34_x86_64.whl", hash = "sha256:f514ef4cd14bb6fb484b4a60203e912cfcb64f2ab139e88c2274511514bf7308", size = 4191753, upload-time = "2025-03-02T00:00:25.038Z" }, + { url = "https://files.pythonhosted.org/packages/b2/80/62df41ba4916067fa6b125aa8c14d7e9181773f0d5d0bd4dcef580d8b7c6/cryptography-44.0.2-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:1bc312dfb7a6e5d66082c87c34c8a62176e684b6fe3d90fcfe1568de675e6688", size = 4079550, upload-time = "2025-03-02T00:00:26.929Z" }, + { url = "https://files.pythonhosted.org/packages/f3/cd/2558cc08f7b1bb40683f99ff4327f8dcfc7de3affc669e9065e14824511b/cryptography-44.0.2-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:3b721b8b4d948b218c88cb8c45a01793483821e709afe5f622861fc6182b20a7", size = 4298367, upload-time = "2025-03-02T00:00:28.735Z" }, + { url = "https://files.pythonhosted.org/packages/71/59/94ccc74788945bc3bd4cf355d19867e8057ff5fdbcac781b1ff95b700fb1/cryptography-44.0.2-cp37-abi3-win32.whl", hash = "sha256:51e4de3af4ec3899d6d178a8c005226491c27c4ba84101bfb59c901e10ca9f79", size = 2772843, upload-time = "2025-03-02T00:00:30.592Z" }, + { url = "https://files.pythonhosted.org/packages/ca/2c/0d0bbaf61ba05acb32f0841853cfa33ebb7a9ab3d9ed8bb004bd39f2da6a/cryptography-44.0.2-cp37-abi3-win_amd64.whl", hash = "sha256:c505d61b6176aaf982c5717ce04e87da5abc9a36a5b39ac03905c4aafe8de7aa", size = 3209057, upload-time = "2025-03-02T00:00:33.393Z" }, + { url = "https://files.pythonhosted.org/packages/9e/be/7a26142e6d0f7683d8a382dd963745e65db895a79a280a30525ec92be890/cryptography-44.0.2-cp39-abi3-macosx_10_9_universal2.whl", hash = "sha256:8e0ddd63e6bf1161800592c71ac794d3fb8001f2caebe0966e77c5234fa9efc3", size = 6677789, upload-time = "2025-03-02T00:00:36.009Z" }, + { url = "https://files.pythonhosted.org/packages/06/88/638865be7198a84a7713950b1db7343391c6066a20e614f8fa286eb178ed/cryptography-44.0.2-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:81276f0ea79a208d961c433a947029e1a15948966658cf6710bbabb60fcc2639", size = 3951919, upload-time = "2025-03-02T00:00:38.581Z" }, + { url = "https://files.pythonhosted.org/packages/d7/fc/99fe639bcdf58561dfad1faa8a7369d1dc13f20acd78371bb97a01613585/cryptography-44.0.2-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9a1e657c0f4ea2a23304ee3f964db058c9e9e635cc7019c4aa21c330755ef6fd", size = 4167812, upload-time = "2025-03-02T00:00:42.934Z" }, + { url = "https://files.pythonhosted.org/packages/53/7b/aafe60210ec93d5d7f552592a28192e51d3c6b6be449e7fd0a91399b5d07/cryptography-44.0.2-cp39-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:6210c05941994290f3f7f175a4a57dbbb2afd9273657614c506d5976db061181", size = 3958571, upload-time = "2025-03-02T00:00:46.026Z" }, + { url = "https://files.pythonhosted.org/packages/16/32/051f7ce79ad5a6ef5e26a92b37f172ee2d6e1cce09931646eef8de1e9827/cryptography-44.0.2-cp39-abi3-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:d1c3572526997b36f245a96a2b1713bf79ce99b271bbcf084beb6b9b075f29ea", size = 3679832, upload-time = "2025-03-02T00:00:48.647Z" }, + { url = "https://files.pythonhosted.org/packages/78/2b/999b2a1e1ba2206f2d3bca267d68f350beb2b048a41ea827e08ce7260098/cryptography-44.0.2-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:b042d2a275c8cee83a4b7ae30c45a15e6a4baa65a179a0ec2d78ebb90e4f6699", size = 4193719, upload-time = "2025-03-02T00:00:51.397Z" }, + { url = "https://files.pythonhosted.org/packages/72/97/430e56e39a1356e8e8f10f723211a0e256e11895ef1a135f30d7d40f2540/cryptography-44.0.2-cp39-abi3-manylinux_2_34_aarch64.whl", hash = "sha256:d03806036b4f89e3b13b6218fefea8d5312e450935b1a2d55f0524e2ed7c59d9", size = 3960852, upload-time = "2025-03-02T00:00:53.317Z" }, + { url = "https://files.pythonhosted.org/packages/89/33/c1cf182c152e1d262cac56850939530c05ca6c8d149aa0dcee490b417e99/cryptography-44.0.2-cp39-abi3-manylinux_2_34_x86_64.whl", hash = "sha256:c7362add18b416b69d58c910caa217f980c5ef39b23a38a0880dfd87bdf8cd23", size = 4193906, upload-time = "2025-03-02T00:00:56.49Z" }, + { url = "https://files.pythonhosted.org/packages/e1/99/87cf26d4f125380dc674233971069bc28d19b07f7755b29861570e513650/cryptography-44.0.2-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:8cadc6e3b5a1f144a039ea08a0bdb03a2a92e19c46be3285123d32029f40a922", size = 4081572, upload-time = "2025-03-02T00:00:59.995Z" }, + { url = "https://files.pythonhosted.org/packages/b3/9f/6a3e0391957cc0c5f84aef9fbdd763035f2b52e998a53f99345e3ac69312/cryptography-44.0.2-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:6f101b1f780f7fc613d040ca4bdf835c6ef3b00e9bd7125a4255ec574c7916e4", size = 4298631, upload-time = "2025-03-02T00:01:01.623Z" }, + { url = "https://files.pythonhosted.org/packages/e2/a5/5bc097adb4b6d22a24dea53c51f37e480aaec3465285c253098642696423/cryptography-44.0.2-cp39-abi3-win32.whl", hash = "sha256:3dc62975e31617badc19a906481deacdeb80b4bb454394b4098e3f2525a488c5", size = 2773792, upload-time = "2025-03-02T00:01:04.133Z" }, + { url = "https://files.pythonhosted.org/packages/33/cf/1f7649b8b9a3543e042d3f348e398a061923ac05b507f3f4d95f11938aa9/cryptography-44.0.2-cp39-abi3-win_amd64.whl", hash = "sha256:5f6f90b72d8ccadb9c6e311c775c8305381db88374c65fa1a68250aa8a9cb3a6", size = 3210957, upload-time = "2025-03-02T00:01:06.987Z" }, ] [[package]] name = "cycler" version = "0.12.1" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/a9/95/a3dbbb5028f35eafb79008e7522a75244477d2838f38cbb722248dabc2a8/cycler-0.12.1.tar.gz", hash = "sha256:88bb128f02ba341da8ef447245a9e138fae777f6a23943da4540077d3601eb1c", size = 7615 } +sdist = { url = "https://files.pythonhosted.org/packages/a9/95/a3dbbb5028f35eafb79008e7522a75244477d2838f38cbb722248dabc2a8/cycler-0.12.1.tar.gz", hash = "sha256:88bb128f02ba341da8ef447245a9e138fae777f6a23943da4540077d3601eb1c", size = 7615, upload-time = "2023-10-07T05:32:18.335Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl", hash = "sha256:85cef7cff222d8644161529808465972e51340599459b8ac3ccbac5a854e0d30", size = 8321 }, + { url = "https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl", hash = "sha256:85cef7cff222d8644161529808465972e51340599459b8ac3ccbac5a854e0d30", size = 8321, upload-time = "2023-10-07T05:32:16.783Z" }, ] [[package]] @@ -239,35 +245,35 @@ dependencies = [ { name = "starlette" }, { name = "typing-extensions" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/f4/55/ae499352d82338331ca1e28c7f4a63bfd09479b16395dce38cf50a39e2c2/fastapi-0.115.12.tar.gz", hash = "sha256:1e2c2a2646905f9e83d32f04a3f86aff4a286669c6c950ca95b5fd68c2602681", size = 295236 } +sdist = { url = "https://files.pythonhosted.org/packages/f4/55/ae499352d82338331ca1e28c7f4a63bfd09479b16395dce38cf50a39e2c2/fastapi-0.115.12.tar.gz", hash = "sha256:1e2c2a2646905f9e83d32f04a3f86aff4a286669c6c950ca95b5fd68c2602681", size = 295236, upload-time = "2025-03-23T22:55:43.822Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/50/b3/b51f09c2ba432a576fe63758bddc81f78f0c6309d9e5c10d194313bf021e/fastapi-0.115.12-py3-none-any.whl", hash = "sha256:e94613d6c05e27be7ffebdd6ea5f388112e5e430c8f7d6494a9d1d88d43e814d", size = 95164 }, + { url = "https://files.pythonhosted.org/packages/50/b3/b51f09c2ba432a576fe63758bddc81f78f0c6309d9e5c10d194313bf021e/fastapi-0.115.12-py3-none-any.whl", hash = "sha256:e94613d6c05e27be7ffebdd6ea5f388112e5e430c8f7d6494a9d1d88d43e814d", size = 95164, upload-time = "2025-03-23T22:55:42.101Z" }, ] [[package]] name = "fonttools" version = "4.57.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/03/2d/a9a0b6e3a0cf6bd502e64fc16d894269011930cabfc89aee20d1635b1441/fonttools-4.57.0.tar.gz", hash = "sha256:727ece10e065be2f9dd239d15dd5d60a66e17eac11aea47d447f9f03fdbc42de", size = 3492448 } +sdist = { url = "https://files.pythonhosted.org/packages/03/2d/a9a0b6e3a0cf6bd502e64fc16d894269011930cabfc89aee20d1635b1441/fonttools-4.57.0.tar.gz", hash = "sha256:727ece10e065be2f9dd239d15dd5d60a66e17eac11aea47d447f9f03fdbc42de", size = 3492448, upload-time = "2025-04-03T11:07:13.898Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/e9/2f/11439f3af51e4bb75ac9598c29f8601aa501902dcedf034bdc41f47dd799/fonttools-4.57.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:408ce299696012d503b714778d89aa476f032414ae57e57b42e4b92363e0b8ef", size = 2739175 }, - { url = "https://files.pythonhosted.org/packages/25/52/677b55a4c0972dc3820c8dba20a29c358197a78229daa2ea219fdb19e5d5/fonttools-4.57.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:bbceffc80aa02d9e8b99f2a7491ed8c4a783b2fc4020119dc405ca14fb5c758c", size = 2276583 }, - { url = "https://files.pythonhosted.org/packages/64/79/184555f8fa77b827b9460a4acdbbc0b5952bb6915332b84c615c3a236826/fonttools-4.57.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f022601f3ee9e1f6658ed6d184ce27fa5216cee5b82d279e0f0bde5deebece72", size = 4766437 }, - { url = "https://files.pythonhosted.org/packages/f8/ad/c25116352f456c0d1287545a7aa24e98987b6d99c5b0456c4bd14321f20f/fonttools-4.57.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4dea5893b58d4637ffa925536462ba626f8a1b9ffbe2f5c272cdf2c6ebadb817", size = 4838431 }, - { url = "https://files.pythonhosted.org/packages/53/ae/398b2a833897297797a44f519c9af911c2136eb7aa27d3f1352c6d1129fa/fonttools-4.57.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:dff02c5c8423a657c550b48231d0a48d7e2b2e131088e55983cfe74ccc2c7cc9", size = 4951011 }, - { url = "https://files.pythonhosted.org/packages/b7/5d/7cb31c4bc9ffb9a2bbe8b08f8f53bad94aeb158efad75da645b40b62cb73/fonttools-4.57.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:767604f244dc17c68d3e2dbf98e038d11a18abc078f2d0f84b6c24571d9c0b13", size = 5205679 }, - { url = "https://files.pythonhosted.org/packages/4c/e4/6934513ec2c4d3d69ca1bc3bd34d5c69dafcbf68c15388dd3bb062daf345/fonttools-4.57.0-cp313-cp313-win32.whl", hash = "sha256:8e2e12d0d862f43d51e5afb8b9751c77e6bec7d2dc00aad80641364e9df5b199", size = 2144833 }, - { url = "https://files.pythonhosted.org/packages/c4/0d/2177b7fdd23d017bcfb702fd41e47d4573766b9114da2fddbac20dcc4957/fonttools-4.57.0-cp313-cp313-win_amd64.whl", hash = "sha256:f1d6bc9c23356908db712d282acb3eebd4ae5ec6d8b696aa40342b1d84f8e9e3", size = 2190799 }, - { url = "https://files.pythonhosted.org/packages/90/27/45f8957c3132917f91aaa56b700bcfc2396be1253f685bd5c68529b6f610/fonttools-4.57.0-py3-none-any.whl", hash = "sha256:3122c604a675513c68bd24c6a8f9091f1c2376d18e8f5fe5a101746c81b3e98f", size = 1093605 }, + { url = "https://files.pythonhosted.org/packages/e9/2f/11439f3af51e4bb75ac9598c29f8601aa501902dcedf034bdc41f47dd799/fonttools-4.57.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:408ce299696012d503b714778d89aa476f032414ae57e57b42e4b92363e0b8ef", size = 2739175, upload-time = "2025-04-03T11:06:19.583Z" }, + { url = "https://files.pythonhosted.org/packages/25/52/677b55a4c0972dc3820c8dba20a29c358197a78229daa2ea219fdb19e5d5/fonttools-4.57.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:bbceffc80aa02d9e8b99f2a7491ed8c4a783b2fc4020119dc405ca14fb5c758c", size = 2276583, upload-time = "2025-04-03T11:06:21.753Z" }, + { url = "https://files.pythonhosted.org/packages/64/79/184555f8fa77b827b9460a4acdbbc0b5952bb6915332b84c615c3a236826/fonttools-4.57.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f022601f3ee9e1f6658ed6d184ce27fa5216cee5b82d279e0f0bde5deebece72", size = 4766437, upload-time = "2025-04-03T11:06:23.521Z" }, + { url = "https://files.pythonhosted.org/packages/f8/ad/c25116352f456c0d1287545a7aa24e98987b6d99c5b0456c4bd14321f20f/fonttools-4.57.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4dea5893b58d4637ffa925536462ba626f8a1b9ffbe2f5c272cdf2c6ebadb817", size = 4838431, upload-time = "2025-04-03T11:06:25.423Z" }, + { url = "https://files.pythonhosted.org/packages/53/ae/398b2a833897297797a44f519c9af911c2136eb7aa27d3f1352c6d1129fa/fonttools-4.57.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:dff02c5c8423a657c550b48231d0a48d7e2b2e131088e55983cfe74ccc2c7cc9", size = 4951011, upload-time = "2025-04-03T11:06:27.41Z" }, + { url = "https://files.pythonhosted.org/packages/b7/5d/7cb31c4bc9ffb9a2bbe8b08f8f53bad94aeb158efad75da645b40b62cb73/fonttools-4.57.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:767604f244dc17c68d3e2dbf98e038d11a18abc078f2d0f84b6c24571d9c0b13", size = 5205679, upload-time = "2025-04-03T11:06:29.804Z" }, + { url = "https://files.pythonhosted.org/packages/4c/e4/6934513ec2c4d3d69ca1bc3bd34d5c69dafcbf68c15388dd3bb062daf345/fonttools-4.57.0-cp313-cp313-win32.whl", hash = "sha256:8e2e12d0d862f43d51e5afb8b9751c77e6bec7d2dc00aad80641364e9df5b199", size = 2144833, upload-time = "2025-04-03T11:06:31.737Z" }, + { url = "https://files.pythonhosted.org/packages/c4/0d/2177b7fdd23d017bcfb702fd41e47d4573766b9114da2fddbac20dcc4957/fonttools-4.57.0-cp313-cp313-win_amd64.whl", hash = "sha256:f1d6bc9c23356908db712d282acb3eebd4ae5ec6d8b696aa40342b1d84f8e9e3", size = 2190799, upload-time = "2025-04-03T11:06:34.784Z" }, + { url = "https://files.pythonhosted.org/packages/90/27/45f8957c3132917f91aaa56b700bcfc2396be1253f685bd5c68529b6f610/fonttools-4.57.0-py3-none-any.whl", hash = "sha256:3122c604a675513c68bd24c6a8f9091f1c2376d18e8f5fe5a101746c81b3e98f", size = 1093605, upload-time = "2025-04-03T11:07:11.341Z" }, ] [[package]] name = "h11" version = "0.14.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/f5/38/3af3d3633a34a3316095b39c8e8fb4853a28a536e55d347bd8d8e9a14b03/h11-0.14.0.tar.gz", hash = "sha256:8f19fbbe99e72420ff35c00b27a34cb9937e902a8b810e2c88300c6f0a3b699d", size = 100418 } +sdist = { url = "https://files.pythonhosted.org/packages/f5/38/3af3d3633a34a3316095b39c8e8fb4853a28a536e55d347bd8d8e9a14b03/h11-0.14.0.tar.gz", hash = "sha256:8f19fbbe99e72420ff35c00b27a34cb9937e902a8b810e2c88300c6f0a3b699d", size = 100418, upload-time = "2022-09-25T15:40:01.519Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/95/04/ff642e65ad6b90db43e668d70ffb6736436c7ce41fcc549f4e9472234127/h11-0.14.0-py3-none-any.whl", hash = "sha256:e3fe4ac4b851c468cc8363d500db52c2ead036020723024a109d37346efaa761", size = 58259 }, + { url = "https://files.pythonhosted.org/packages/95/04/ff642e65ad6b90db43e668d70ffb6736436c7ce41fcc549f4e9472234127/h11-0.14.0-py3-none-any.whl", hash = "sha256:e3fe4ac4b851c468cc8363d500db52c2ead036020723024a109d37346efaa761", size = 58259, upload-time = "2022-09-25T15:39:59.68Z" }, ] [[package]] @@ -277,9 +283,9 @@ source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "python-dateutil" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/85/06/9646b271283c00fa687f4bd2b22109f39f2a071b1a66e3ebb1c3d720fd1b/holidays-0.69.tar.gz", hash = "sha256:7dcd213d9c0a39f492f35c75180b6650522c7131cda9f57107a9c16e9a6c0468", size = 561339 } +sdist = { url = "https://files.pythonhosted.org/packages/85/06/9646b271283c00fa687f4bd2b22109f39f2a071b1a66e3ebb1c3d720fd1b/holidays-0.69.tar.gz", hash = "sha256:7dcd213d9c0a39f492f35c75180b6650522c7131cda9f57107a9c16e9a6c0468", size = 561339, upload-time = "2025-03-17T19:10:02.952Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/3c/1c/9e3fc8b8d4f2361b423e726732fcbb81f8817c7399a94d25296fc668586a/holidays-0.69-py3-none-any.whl", hash = "sha256:c179b46bc6326978adb24da108cc3cd3cf28c297bc212065a1041bb2fff51b99", size = 863879 }, + { url = "https://files.pythonhosted.org/packages/3c/1c/9e3fc8b8d4f2361b423e726732fcbb81f8817c7399a94d25296fc668586a/holidays-0.69-py3-none-any.whl", hash = "sha256:c179b46bc6326978adb24da108cc3cd3cf28c297bc212065a1041bb2fff51b99", size = 863879, upload-time = "2025-03-17T19:10:01.212Z" }, ] [[package]] @@ -290,9 +296,9 @@ dependencies = [ { name = "certifi" }, { name = "h11" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/6a/41/d7d0a89eb493922c37d343b607bc1b5da7f5be7e383740b4753ad8943e90/httpcore-1.0.7.tar.gz", hash = "sha256:8551cb62a169ec7162ac7be8d4817d561f60e08eaa485234898414bb5a8a0b4c", size = 85196 } +sdist = { url = "https://files.pythonhosted.org/packages/6a/41/d7d0a89eb493922c37d343b607bc1b5da7f5be7e383740b4753ad8943e90/httpcore-1.0.7.tar.gz", hash = "sha256:8551cb62a169ec7162ac7be8d4817d561f60e08eaa485234898414bb5a8a0b4c", size = 85196, upload-time = "2024-11-15T12:30:47.531Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/87/f5/72347bc88306acb359581ac4d52f23c0ef445b57157adedb9aee0cd689d2/httpcore-1.0.7-py3-none-any.whl", hash = "sha256:a3fff8f43dc260d5bd363d9f9cf1830fa3a458b332856f34282de498ed420edd", size = 78551 }, + { url = "https://files.pythonhosted.org/packages/87/f5/72347bc88306acb359581ac4d52f23c0ef445b57157adedb9aee0cd689d2/httpcore-1.0.7-py3-none-any.whl", hash = "sha256:a3fff8f43dc260d5bd363d9f9cf1830fa3a458b332856f34282de498ed420edd", size = 78551, upload-time = "2024-11-15T12:30:45.782Z" }, ] [[package]] @@ -305,81 +311,90 @@ dependencies = [ { name = "httpcore" }, { name = "idna" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/b1/df/48c586a5fe32a0f01324ee087459e112ebb7224f646c0b5023f5e79e9956/httpx-0.28.1.tar.gz", hash = "sha256:75e98c5f16b0f35b567856f597f06ff2270a374470a5c2392242528e3e3e42fc", size = 141406 } +sdist = { url = "https://files.pythonhosted.org/packages/b1/df/48c586a5fe32a0f01324ee087459e112ebb7224f646c0b5023f5e79e9956/httpx-0.28.1.tar.gz", hash = "sha256:75e98c5f16b0f35b567856f597f06ff2270a374470a5c2392242528e3e3e42fc", size = 141406, upload-time = "2024-12-06T15:37:23.222Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/2a/39/e50c7c3a983047577ee07d2a9e53faf5a69493943ec3f6a384bdc792deb2/httpx-0.28.1-py3-none-any.whl", hash = "sha256:d909fcccc110f8c7faf814ca82a9a4d816bc5a6dbfea25d6591d6985b8ba59ad", size = 73517 }, + { url = "https://files.pythonhosted.org/packages/2a/39/e50c7c3a983047577ee07d2a9e53faf5a69493943ec3f6a384bdc792deb2/httpx-0.28.1-py3-none-any.whl", hash = "sha256:d909fcccc110f8c7faf814ca82a9a4d816bc5a6dbfea25d6591d6985b8ba59ad", size = 73517, upload-time = "2024-12-06T15:37:21.509Z" }, ] [[package]] name = "idna" version = "3.10" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/f1/70/7703c29685631f5a7590aa73f1f1d3fa9a380e654b86af429e0934a32f7d/idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9", size = 190490 } +sdist = { url = "https://files.pythonhosted.org/packages/f1/70/7703c29685631f5a7590aa73f1f1d3fa9a380e654b86af429e0934a32f7d/idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9", size = 190490, upload-time = "2024-09-15T18:07:39.745Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3", size = 70442 }, + { url = "https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3", size = 70442, upload-time = "2024-09-15T18:07:37.964Z" }, ] [[package]] name = "importlib-resources" version = "6.5.2" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/cf/8c/f834fbf984f691b4f7ff60f50b514cc3de5cc08abfc3295564dd89c5e2e7/importlib_resources-6.5.2.tar.gz", hash = "sha256:185f87adef5bcc288449d98fb4fba07cea78bc036455dd44c5fc4a2fe78fed2c", size = 44693 } +sdist = { url = "https://files.pythonhosted.org/packages/cf/8c/f834fbf984f691b4f7ff60f50b514cc3de5cc08abfc3295564dd89c5e2e7/importlib_resources-6.5.2.tar.gz", hash = "sha256:185f87adef5bcc288449d98fb4fba07cea78bc036455dd44c5fc4a2fe78fed2c", size = 44693, upload-time = "2025-01-03T18:51:56.698Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/a4/ed/1f1afb2e9e7f38a545d628f864d562a5ae64fe6f7a10e28ffb9b185b4e89/importlib_resources-6.5.2-py3-none-any.whl", hash = "sha256:789cfdc3ed28c78b67a06acb8126751ced69a3d5f79c095a98298cd8a760ccec", size = 37461 }, + { url = "https://files.pythonhosted.org/packages/a4/ed/1f1afb2e9e7f38a545d628f864d562a5ae64fe6f7a10e28ffb9b185b4e89/importlib_resources-6.5.2-py3-none-any.whl", hash = "sha256:789cfdc3ed28c78b67a06acb8126751ced69a3d5f79c095a98298cd8a760ccec", size = 37461, upload-time = "2025-01-03T18:51:54.306Z" }, ] [[package]] name = "iniconfig" version = "2.1.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/f2/97/ebf4da567aa6827c909642694d71c9fcf53e5b504f2d96afea02718862f3/iniconfig-2.1.0.tar.gz", hash = "sha256:3abbd2e30b36733fee78f9c7f7308f2d0050e88f0087fd25c2645f63c773e1c7", size = 4793 } +sdist = { url = "https://files.pythonhosted.org/packages/f2/97/ebf4da567aa6827c909642694d71c9fcf53e5b504f2d96afea02718862f3/iniconfig-2.1.0.tar.gz", hash = "sha256:3abbd2e30b36733fee78f9c7f7308f2d0050e88f0087fd25c2645f63c773e1c7", size = 4793, upload-time = "2025-03-19T20:09:59.721Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/2c/e1/e6716421ea10d38022b952c159d5161ca1193197fb744506875fbb87ea7b/iniconfig-2.1.0-py3-none-any.whl", hash = "sha256:9deba5723312380e77435581c6bf4935c94cbfab9b1ed33ef8d238ea168eb760", size = 6050 }, + { url = "https://files.pythonhosted.org/packages/2c/e1/e6716421ea10d38022b952c159d5161ca1193197fb744506875fbb87ea7b/iniconfig-2.1.0-py3-none-any.whl", hash = "sha256:9deba5723312380e77435581c6bf4935c94cbfab9b1ed33ef8d238ea168eb760", size = 6050, upload-time = "2025-03-19T20:10:01.071Z" }, ] [[package]] name = "isodate" version = "0.7.2" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/54/4d/e940025e2ce31a8ce1202635910747e5a87cc3a6a6bb2d00973375014749/isodate-0.7.2.tar.gz", hash = "sha256:4cd1aa0f43ca76f4a6c6c0292a85f40b35ec2e43e315b59f06e6d32171a953e6", size = 29705 } +sdist = { url = "https://files.pythonhosted.org/packages/54/4d/e940025e2ce31a8ce1202635910747e5a87cc3a6a6bb2d00973375014749/isodate-0.7.2.tar.gz", hash = "sha256:4cd1aa0f43ca76f4a6c6c0292a85f40b35ec2e43e315b59f06e6d32171a953e6", size = 29705, upload-time = "2024-10-08T23:04:11.5Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/15/aa/0aca39a37d3c7eb941ba736ede56d689e7be91cab5d9ca846bde3999eba6/isodate-0.7.2-py3-none-any.whl", hash = "sha256:28009937d8031054830160fce6d409ed342816b543597cece116d966c6d99e15", size = 22320 }, + { url = "https://files.pythonhosted.org/packages/15/aa/0aca39a37d3c7eb941ba736ede56d689e7be91cab5d9ca846bde3999eba6/isodate-0.7.2-py3-none-any.whl", hash = "sha256:28009937d8031054830160fce6d409ed342816b543597cece116d966c6d99e15", size = 22320, upload-time = "2024-10-08T23:04:09.501Z" }, +] + +[[package]] +name = "joblib" +version = "1.5.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e8/5d/447af5ea094b9e4c4054f82e223ada074c552335b9b4b2d14bd9b35a67c4/joblib-1.5.2.tar.gz", hash = "sha256:3faa5c39054b2f03ca547da9b2f52fde67c06240c31853f306aea97f13647b55", size = 331077, upload-time = "2025-08-27T12:15:46.575Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1e/e8/685f47e0d754320684db4425a0967f7d3fa70126bffd76110b7009a0090f/joblib-1.5.2-py3-none-any.whl", hash = "sha256:4e1f0bdbb987e6d843c70cf43714cb276623def372df3c22fe5266b2670bc241", size = 308396, upload-time = "2025-08-27T12:15:45.188Z" }, ] [[package]] name = "kiwisolver" version = "1.4.8" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/82/59/7c91426a8ac292e1cdd53a63b6d9439abd573c875c3f92c146767dd33faf/kiwisolver-1.4.8.tar.gz", hash = "sha256:23d5f023bdc8c7e54eb65f03ca5d5bb25b601eac4d7f1a042888a1f45237987e", size = 97538 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/79/b3/e62464a652f4f8cd9006e13d07abad844a47df1e6537f73ddfbf1bc997ec/kiwisolver-1.4.8-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:1c8ceb754339793c24aee1c9fb2485b5b1f5bb1c2c214ff13368431e51fc9a09", size = 124156 }, - { url = "https://files.pythonhosted.org/packages/8d/2d/f13d06998b546a2ad4f48607a146e045bbe48030774de29f90bdc573df15/kiwisolver-1.4.8-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:54a62808ac74b5e55a04a408cda6156f986cefbcf0ada13572696b507cc92fa1", size = 66555 }, - { url = "https://files.pythonhosted.org/packages/59/e3/b8bd14b0a54998a9fd1e8da591c60998dc003618cb19a3f94cb233ec1511/kiwisolver-1.4.8-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:68269e60ee4929893aad82666821aaacbd455284124817af45c11e50a4b42e3c", size = 65071 }, - { url = "https://files.pythonhosted.org/packages/f0/1c/6c86f6d85ffe4d0ce04228d976f00674f1df5dc893bf2dd4f1928748f187/kiwisolver-1.4.8-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:34d142fba9c464bc3bbfeff15c96eab0e7310343d6aefb62a79d51421fcc5f1b", size = 1378053 }, - { url = "https://files.pythonhosted.org/packages/4e/b9/1c6e9f6dcb103ac5cf87cb695845f5fa71379021500153566d8a8a9fc291/kiwisolver-1.4.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3ddc373e0eef45b59197de815b1b28ef89ae3955e7722cc9710fb91cd77b7f47", size = 1472278 }, - { url = "https://files.pythonhosted.org/packages/ee/81/aca1eb176de671f8bda479b11acdc42c132b61a2ac861c883907dde6debb/kiwisolver-1.4.8-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:77e6f57a20b9bd4e1e2cedda4d0b986ebd0216236f0106e55c28aea3d3d69b16", size = 1478139 }, - { url = "https://files.pythonhosted.org/packages/49/f4/e081522473671c97b2687d380e9e4c26f748a86363ce5af48b4a28e48d06/kiwisolver-1.4.8-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:08e77738ed7538f036cd1170cbed942ef749137b1311fa2bbe2a7fda2f6bf3cc", size = 1413517 }, - { url = "https://files.pythonhosted.org/packages/8f/e9/6a7d025d8da8c4931522922cd706105aa32b3291d1add8c5427cdcd66e63/kiwisolver-1.4.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a5ce1e481a74b44dd5e92ff03ea0cb371ae7a0268318e202be06c8f04f4f1246", size = 1474952 }, - { url = "https://files.pythonhosted.org/packages/82/13/13fa685ae167bee5d94b415991c4fc7bb0a1b6ebea6e753a87044b209678/kiwisolver-1.4.8-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:fc2ace710ba7c1dfd1a3b42530b62b9ceed115f19a1656adefce7b1782a37794", size = 2269132 }, - { url = "https://files.pythonhosted.org/packages/ef/92/bb7c9395489b99a6cb41d502d3686bac692586db2045adc19e45ee64ed23/kiwisolver-1.4.8-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:3452046c37c7692bd52b0e752b87954ef86ee2224e624ef7ce6cb21e8c41cc1b", size = 2425997 }, - { url = "https://files.pythonhosted.org/packages/ed/12/87f0e9271e2b63d35d0d8524954145837dd1a6c15b62a2d8c1ebe0f182b4/kiwisolver-1.4.8-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:7e9a60b50fe8b2ec6f448fe8d81b07e40141bfced7f896309df271a0b92f80f3", size = 2376060 }, - { url = "https://files.pythonhosted.org/packages/02/6e/c8af39288edbce8bf0fa35dee427b082758a4b71e9c91ef18fa667782138/kiwisolver-1.4.8-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:918139571133f366e8362fa4a297aeba86c7816b7ecf0bc79168080e2bd79957", size = 2520471 }, - { url = "https://files.pythonhosted.org/packages/13/78/df381bc7b26e535c91469f77f16adcd073beb3e2dd25042efd064af82323/kiwisolver-1.4.8-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:e063ef9f89885a1d68dd8b2e18f5ead48653176d10a0e324e3b0030e3a69adeb", size = 2338793 }, - { url = "https://files.pythonhosted.org/packages/d0/dc/c1abe38c37c071d0fc71c9a474fd0b9ede05d42f5a458d584619cfd2371a/kiwisolver-1.4.8-cp313-cp313-win_amd64.whl", hash = "sha256:a17b7c4f5b2c51bb68ed379defd608a03954a1845dfed7cc0117f1cc8a9b7fd2", size = 71855 }, - { url = "https://files.pythonhosted.org/packages/a0/b6/21529d595b126ac298fdd90b705d87d4c5693de60023e0efcb4f387ed99e/kiwisolver-1.4.8-cp313-cp313-win_arm64.whl", hash = "sha256:3cd3bc628b25f74aedc6d374d5babf0166a92ff1317f46267f12d2ed54bc1d30", size = 65430 }, - { url = "https://files.pythonhosted.org/packages/34/bd/b89380b7298e3af9b39f49334e3e2a4af0e04819789f04b43d560516c0c8/kiwisolver-1.4.8-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:370fd2df41660ed4e26b8c9d6bbcad668fbe2560462cba151a721d49e5b6628c", size = 126294 }, - { url = "https://files.pythonhosted.org/packages/83/41/5857dc72e5e4148eaac5aa76e0703e594e4465f8ab7ec0fc60e3a9bb8fea/kiwisolver-1.4.8-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:84a2f830d42707de1d191b9490ac186bf7997a9495d4e9072210a1296345f7dc", size = 67736 }, - { url = "https://files.pythonhosted.org/packages/e1/d1/be059b8db56ac270489fb0b3297fd1e53d195ba76e9bbb30e5401fa6b759/kiwisolver-1.4.8-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:7a3ad337add5148cf51ce0b55642dc551c0b9d6248458a757f98796ca7348712", size = 66194 }, - { url = "https://files.pythonhosted.org/packages/e1/83/4b73975f149819eb7dcf9299ed467eba068ecb16439a98990dcb12e63fdd/kiwisolver-1.4.8-cp313-cp313t-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7506488470f41169b86d8c9aeff587293f530a23a23a49d6bc64dab66bedc71e", size = 1465942 }, - { url = "https://files.pythonhosted.org/packages/c7/2c/30a5cdde5102958e602c07466bce058b9d7cb48734aa7a4327261ac8e002/kiwisolver-1.4.8-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2f0121b07b356a22fb0414cec4666bbe36fd6d0d759db3d37228f496ed67c880", size = 1595341 }, - { url = "https://files.pythonhosted.org/packages/ff/9b/1e71db1c000385aa069704f5990574b8244cce854ecd83119c19e83c9586/kiwisolver-1.4.8-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d6d6bd87df62c27d4185de7c511c6248040afae67028a8a22012b010bc7ad062", size = 1598455 }, - { url = "https://files.pythonhosted.org/packages/85/92/c8fec52ddf06231b31cbb779af77e99b8253cd96bd135250b9498144c78b/kiwisolver-1.4.8-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:291331973c64bb9cce50bbe871fb2e675c4331dab4f31abe89f175ad7679a4d7", size = 1522138 }, - { url = "https://files.pythonhosted.org/packages/0b/51/9eb7e2cd07a15d8bdd976f6190c0164f92ce1904e5c0c79198c4972926b7/kiwisolver-1.4.8-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:893f5525bb92d3d735878ec00f781b2de998333659507d29ea4466208df37bed", size = 1582857 }, - { url = "https://files.pythonhosted.org/packages/0f/95/c5a00387a5405e68ba32cc64af65ce881a39b98d73cc394b24143bebc5b8/kiwisolver-1.4.8-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:b47a465040146981dc9db8647981b8cb96366fbc8d452b031e4f8fdffec3f26d", size = 2293129 }, - { url = "https://files.pythonhosted.org/packages/44/83/eeb7af7d706b8347548313fa3a3a15931f404533cc54fe01f39e830dd231/kiwisolver-1.4.8-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:99cea8b9dd34ff80c521aef46a1dddb0dcc0283cf18bde6d756f1e6f31772165", size = 2421538 }, - { url = "https://files.pythonhosted.org/packages/05/f9/27e94c1b3eb29e6933b6986ffc5fa1177d2cd1f0c8efc5f02c91c9ac61de/kiwisolver-1.4.8-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:151dffc4865e5fe6dafce5480fab84f950d14566c480c08a53c663a0020504b6", size = 2390661 }, - { url = "https://files.pythonhosted.org/packages/d9/d4/3c9735faa36ac591a4afcc2980d2691000506050b7a7e80bcfe44048daa7/kiwisolver-1.4.8-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:577facaa411c10421314598b50413aa1ebcf5126f704f1e5d72d7e4e9f020d90", size = 2546710 }, - { url = "https://files.pythonhosted.org/packages/4c/fa/be89a49c640930180657482a74970cdcf6f7072c8d2471e1babe17a222dc/kiwisolver-1.4.8-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:be4816dc51c8a471749d664161b434912eee82f2ea66bd7628bd14583a833e85", size = 2349213 }, +sdist = { url = "https://files.pythonhosted.org/packages/82/59/7c91426a8ac292e1cdd53a63b6d9439abd573c875c3f92c146767dd33faf/kiwisolver-1.4.8.tar.gz", hash = "sha256:23d5f023bdc8c7e54eb65f03ca5d5bb25b601eac4d7f1a042888a1f45237987e", size = 97538, upload-time = "2024-12-24T18:30:51.519Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/79/b3/e62464a652f4f8cd9006e13d07abad844a47df1e6537f73ddfbf1bc997ec/kiwisolver-1.4.8-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:1c8ceb754339793c24aee1c9fb2485b5b1f5bb1c2c214ff13368431e51fc9a09", size = 124156, upload-time = "2024-12-24T18:29:45.368Z" }, + { url = "https://files.pythonhosted.org/packages/8d/2d/f13d06998b546a2ad4f48607a146e045bbe48030774de29f90bdc573df15/kiwisolver-1.4.8-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:54a62808ac74b5e55a04a408cda6156f986cefbcf0ada13572696b507cc92fa1", size = 66555, upload-time = "2024-12-24T18:29:46.37Z" }, + { url = "https://files.pythonhosted.org/packages/59/e3/b8bd14b0a54998a9fd1e8da591c60998dc003618cb19a3f94cb233ec1511/kiwisolver-1.4.8-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:68269e60ee4929893aad82666821aaacbd455284124817af45c11e50a4b42e3c", size = 65071, upload-time = "2024-12-24T18:29:47.333Z" }, + { url = "https://files.pythonhosted.org/packages/f0/1c/6c86f6d85ffe4d0ce04228d976f00674f1df5dc893bf2dd4f1928748f187/kiwisolver-1.4.8-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:34d142fba9c464bc3bbfeff15c96eab0e7310343d6aefb62a79d51421fcc5f1b", size = 1378053, upload-time = "2024-12-24T18:29:49.636Z" }, + { url = "https://files.pythonhosted.org/packages/4e/b9/1c6e9f6dcb103ac5cf87cb695845f5fa71379021500153566d8a8a9fc291/kiwisolver-1.4.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3ddc373e0eef45b59197de815b1b28ef89ae3955e7722cc9710fb91cd77b7f47", size = 1472278, upload-time = "2024-12-24T18:29:51.164Z" }, + { url = "https://files.pythonhosted.org/packages/ee/81/aca1eb176de671f8bda479b11acdc42c132b61a2ac861c883907dde6debb/kiwisolver-1.4.8-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:77e6f57a20b9bd4e1e2cedda4d0b986ebd0216236f0106e55c28aea3d3d69b16", size = 1478139, upload-time = "2024-12-24T18:29:52.594Z" }, + { url = "https://files.pythonhosted.org/packages/49/f4/e081522473671c97b2687d380e9e4c26f748a86363ce5af48b4a28e48d06/kiwisolver-1.4.8-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:08e77738ed7538f036cd1170cbed942ef749137b1311fa2bbe2a7fda2f6bf3cc", size = 1413517, upload-time = "2024-12-24T18:29:53.941Z" }, + { url = "https://files.pythonhosted.org/packages/8f/e9/6a7d025d8da8c4931522922cd706105aa32b3291d1add8c5427cdcd66e63/kiwisolver-1.4.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a5ce1e481a74b44dd5e92ff03ea0cb371ae7a0268318e202be06c8f04f4f1246", size = 1474952, upload-time = "2024-12-24T18:29:56.523Z" }, + { url = "https://files.pythonhosted.org/packages/82/13/13fa685ae167bee5d94b415991c4fc7bb0a1b6ebea6e753a87044b209678/kiwisolver-1.4.8-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:fc2ace710ba7c1dfd1a3b42530b62b9ceed115f19a1656adefce7b1782a37794", size = 2269132, upload-time = "2024-12-24T18:29:57.989Z" }, + { url = "https://files.pythonhosted.org/packages/ef/92/bb7c9395489b99a6cb41d502d3686bac692586db2045adc19e45ee64ed23/kiwisolver-1.4.8-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:3452046c37c7692bd52b0e752b87954ef86ee2224e624ef7ce6cb21e8c41cc1b", size = 2425997, upload-time = "2024-12-24T18:29:59.393Z" }, + { url = "https://files.pythonhosted.org/packages/ed/12/87f0e9271e2b63d35d0d8524954145837dd1a6c15b62a2d8c1ebe0f182b4/kiwisolver-1.4.8-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:7e9a60b50fe8b2ec6f448fe8d81b07e40141bfced7f896309df271a0b92f80f3", size = 2376060, upload-time = "2024-12-24T18:30:01.338Z" }, + { url = "https://files.pythonhosted.org/packages/02/6e/c8af39288edbce8bf0fa35dee427b082758a4b71e9c91ef18fa667782138/kiwisolver-1.4.8-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:918139571133f366e8362fa4a297aeba86c7816b7ecf0bc79168080e2bd79957", size = 2520471, upload-time = "2024-12-24T18:30:04.574Z" }, + { url = "https://files.pythonhosted.org/packages/13/78/df381bc7b26e535c91469f77f16adcd073beb3e2dd25042efd064af82323/kiwisolver-1.4.8-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:e063ef9f89885a1d68dd8b2e18f5ead48653176d10a0e324e3b0030e3a69adeb", size = 2338793, upload-time = "2024-12-24T18:30:06.25Z" }, + { url = "https://files.pythonhosted.org/packages/d0/dc/c1abe38c37c071d0fc71c9a474fd0b9ede05d42f5a458d584619cfd2371a/kiwisolver-1.4.8-cp313-cp313-win_amd64.whl", hash = "sha256:a17b7c4f5b2c51bb68ed379defd608a03954a1845dfed7cc0117f1cc8a9b7fd2", size = 71855, upload-time = "2024-12-24T18:30:07.535Z" }, + { url = "https://files.pythonhosted.org/packages/a0/b6/21529d595b126ac298fdd90b705d87d4c5693de60023e0efcb4f387ed99e/kiwisolver-1.4.8-cp313-cp313-win_arm64.whl", hash = "sha256:3cd3bc628b25f74aedc6d374d5babf0166a92ff1317f46267f12d2ed54bc1d30", size = 65430, upload-time = "2024-12-24T18:30:08.504Z" }, + { url = "https://files.pythonhosted.org/packages/34/bd/b89380b7298e3af9b39f49334e3e2a4af0e04819789f04b43d560516c0c8/kiwisolver-1.4.8-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:370fd2df41660ed4e26b8c9d6bbcad668fbe2560462cba151a721d49e5b6628c", size = 126294, upload-time = "2024-12-24T18:30:09.508Z" }, + { url = "https://files.pythonhosted.org/packages/83/41/5857dc72e5e4148eaac5aa76e0703e594e4465f8ab7ec0fc60e3a9bb8fea/kiwisolver-1.4.8-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:84a2f830d42707de1d191b9490ac186bf7997a9495d4e9072210a1296345f7dc", size = 67736, upload-time = "2024-12-24T18:30:11.039Z" }, + { url = "https://files.pythonhosted.org/packages/e1/d1/be059b8db56ac270489fb0b3297fd1e53d195ba76e9bbb30e5401fa6b759/kiwisolver-1.4.8-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:7a3ad337add5148cf51ce0b55642dc551c0b9d6248458a757f98796ca7348712", size = 66194, upload-time = "2024-12-24T18:30:14.886Z" }, + { url = "https://files.pythonhosted.org/packages/e1/83/4b73975f149819eb7dcf9299ed467eba068ecb16439a98990dcb12e63fdd/kiwisolver-1.4.8-cp313-cp313t-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7506488470f41169b86d8c9aeff587293f530a23a23a49d6bc64dab66bedc71e", size = 1465942, upload-time = "2024-12-24T18:30:18.927Z" }, + { url = "https://files.pythonhosted.org/packages/c7/2c/30a5cdde5102958e602c07466bce058b9d7cb48734aa7a4327261ac8e002/kiwisolver-1.4.8-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2f0121b07b356a22fb0414cec4666bbe36fd6d0d759db3d37228f496ed67c880", size = 1595341, upload-time = "2024-12-24T18:30:22.102Z" }, + { url = "https://files.pythonhosted.org/packages/ff/9b/1e71db1c000385aa069704f5990574b8244cce854ecd83119c19e83c9586/kiwisolver-1.4.8-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d6d6bd87df62c27d4185de7c511c6248040afae67028a8a22012b010bc7ad062", size = 1598455, upload-time = "2024-12-24T18:30:24.947Z" }, + { url = "https://files.pythonhosted.org/packages/85/92/c8fec52ddf06231b31cbb779af77e99b8253cd96bd135250b9498144c78b/kiwisolver-1.4.8-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:291331973c64bb9cce50bbe871fb2e675c4331dab4f31abe89f175ad7679a4d7", size = 1522138, upload-time = "2024-12-24T18:30:26.286Z" }, + { url = "https://files.pythonhosted.org/packages/0b/51/9eb7e2cd07a15d8bdd976f6190c0164f92ce1904e5c0c79198c4972926b7/kiwisolver-1.4.8-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:893f5525bb92d3d735878ec00f781b2de998333659507d29ea4466208df37bed", size = 1582857, upload-time = "2024-12-24T18:30:28.86Z" }, + { url = "https://files.pythonhosted.org/packages/0f/95/c5a00387a5405e68ba32cc64af65ce881a39b98d73cc394b24143bebc5b8/kiwisolver-1.4.8-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:b47a465040146981dc9db8647981b8cb96366fbc8d452b031e4f8fdffec3f26d", size = 2293129, upload-time = "2024-12-24T18:30:30.34Z" }, + { url = "https://files.pythonhosted.org/packages/44/83/eeb7af7d706b8347548313fa3a3a15931f404533cc54fe01f39e830dd231/kiwisolver-1.4.8-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:99cea8b9dd34ff80c521aef46a1dddb0dcc0283cf18bde6d756f1e6f31772165", size = 2421538, upload-time = "2024-12-24T18:30:33.334Z" }, + { url = "https://files.pythonhosted.org/packages/05/f9/27e94c1b3eb29e6933b6986ffc5fa1177d2cd1f0c8efc5f02c91c9ac61de/kiwisolver-1.4.8-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:151dffc4865e5fe6dafce5480fab84f950d14566c480c08a53c663a0020504b6", size = 2390661, upload-time = "2024-12-24T18:30:34.939Z" }, + { url = "https://files.pythonhosted.org/packages/d9/d4/3c9735faa36ac591a4afcc2980d2691000506050b7a7e80bcfe44048daa7/kiwisolver-1.4.8-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:577facaa411c10421314598b50413aa1ebcf5126f704f1e5d72d7e4e9f020d90", size = 2546710, upload-time = "2024-12-24T18:30:37.281Z" }, + { url = "https://files.pythonhosted.org/packages/4c/fa/be89a49c640930180657482a74970cdcf6f7072c8d2471e1babe17a222dc/kiwisolver-1.4.8-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:be4816dc51c8a471749d664161b434912eee82f2ea66bd7628bd14583a833e85", size = 2349213, upload-time = "2024-12-24T18:30:40.019Z" }, ] [[package]] @@ -397,20 +412,20 @@ dependencies = [ { name = "pyparsing" }, { name = "python-dateutil" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/2f/08/b89867ecea2e305f408fbb417139a8dd941ecf7b23a2e02157c36da546f0/matplotlib-3.10.1.tar.gz", hash = "sha256:e8d2d0e3881b129268585bf4765ad3ee73a4591d77b9a18c214ac7e3a79fb2ba", size = 36743335 } +sdist = { url = "https://files.pythonhosted.org/packages/2f/08/b89867ecea2e305f408fbb417139a8dd941ecf7b23a2e02157c36da546f0/matplotlib-3.10.1.tar.gz", hash = "sha256:e8d2d0e3881b129268585bf4765ad3ee73a4591d77b9a18c214ac7e3a79fb2ba", size = 36743335, upload-time = "2025-02-27T19:19:51.038Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/60/73/6770ff5e5523d00f3bc584acb6031e29ee5c8adc2336b16cd1d003675fe0/matplotlib-3.10.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:c42eee41e1b60fd83ee3292ed83a97a5f2a8239b10c26715d8a6172226988d7b", size = 8176112 }, - { url = "https://files.pythonhosted.org/packages/08/97/b0ca5da0ed54a3f6599c3ab568bdda65269bc27c21a2c97868c1625e4554/matplotlib-3.10.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:4f0647b17b667ae745c13721602b540f7aadb2a32c5b96e924cd4fea5dcb90f1", size = 8046931 }, - { url = "https://files.pythonhosted.org/packages/df/9a/1acbdc3b165d4ce2dcd2b1a6d4ffb46a7220ceee960c922c3d50d8514067/matplotlib-3.10.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aa3854b5f9473564ef40a41bc922be978fab217776e9ae1545c9b3a5cf2092a3", size = 8453422 }, - { url = "https://files.pythonhosted.org/packages/51/d0/2bc4368abf766203e548dc7ab57cf7e9c621f1a3c72b516cc7715347b179/matplotlib-3.10.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e496c01441be4c7d5f96d4e40f7fca06e20dcb40e44c8daa2e740e1757ad9e6", size = 8596819 }, - { url = "https://files.pythonhosted.org/packages/ab/1b/8b350f8a1746c37ab69dda7d7528d1fc696efb06db6ade9727b7887be16d/matplotlib-3.10.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5d45d3f5245be5b469843450617dcad9af75ca50568acf59997bed9311131a0b", size = 9402782 }, - { url = "https://files.pythonhosted.org/packages/89/06/f570373d24d93503988ba8d04f213a372fa1ce48381c5eb15da985728498/matplotlib-3.10.1-cp313-cp313-win_amd64.whl", hash = "sha256:8e8e25b1209161d20dfe93037c8a7f7ca796ec9aa326e6e4588d8c4a5dd1e473", size = 8063812 }, - { url = "https://files.pythonhosted.org/packages/fc/e0/8c811a925b5a7ad75135f0e5af46408b78af88bbb02a1df775100ef9bfef/matplotlib-3.10.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:19b06241ad89c3ae9469e07d77efa87041eac65d78df4fcf9cac318028009b01", size = 8214021 }, - { url = "https://files.pythonhosted.org/packages/4a/34/319ec2139f68ba26da9d00fce2ff9f27679fb799a6c8e7358539801fd629/matplotlib-3.10.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:01e63101ebb3014e6e9f80d9cf9ee361a8599ddca2c3e166c563628b39305dbb", size = 8090782 }, - { url = "https://files.pythonhosted.org/packages/77/ea/9812124ab9a99df5b2eec1110e9b2edc0b8f77039abf4c56e0a376e84a29/matplotlib-3.10.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3f06bad951eea6422ac4e8bdebcf3a70c59ea0a03338c5d2b109f57b64eb3972", size = 8478901 }, - { url = "https://files.pythonhosted.org/packages/c9/db/b05bf463689134789b06dea85828f8ebe506fa1e37593f723b65b86c9582/matplotlib-3.10.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a3dfb036f34873b46978f55e240cff7a239f6c4409eac62d8145bad3fc6ba5a3", size = 8613864 }, - { url = "https://files.pythonhosted.org/packages/c2/04/41ccec4409f3023a7576df3b5c025f1a8c8b81fbfe922ecfd837ac36e081/matplotlib-3.10.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:dc6ab14a7ab3b4d813b88ba957fc05c79493a037f54e246162033591e770de6f", size = 9409487 }, - { url = "https://files.pythonhosted.org/packages/ac/c2/0d5aae823bdcc42cc99327ecdd4d28585e15ccd5218c453b7bcd827f3421/matplotlib-3.10.1-cp313-cp313t-win_amd64.whl", hash = "sha256:bc411ebd5889a78dabbc457b3fa153203e22248bfa6eedc6797be5df0164dbf9", size = 8134832 }, + { url = "https://files.pythonhosted.org/packages/60/73/6770ff5e5523d00f3bc584acb6031e29ee5c8adc2336b16cd1d003675fe0/matplotlib-3.10.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:c42eee41e1b60fd83ee3292ed83a97a5f2a8239b10c26715d8a6172226988d7b", size = 8176112, upload-time = "2025-02-27T19:19:07.59Z" }, + { url = "https://files.pythonhosted.org/packages/08/97/b0ca5da0ed54a3f6599c3ab568bdda65269bc27c21a2c97868c1625e4554/matplotlib-3.10.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:4f0647b17b667ae745c13721602b540f7aadb2a32c5b96e924cd4fea5dcb90f1", size = 8046931, upload-time = "2025-02-27T19:19:10.515Z" }, + { url = "https://files.pythonhosted.org/packages/df/9a/1acbdc3b165d4ce2dcd2b1a6d4ffb46a7220ceee960c922c3d50d8514067/matplotlib-3.10.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aa3854b5f9473564ef40a41bc922be978fab217776e9ae1545c9b3a5cf2092a3", size = 8453422, upload-time = "2025-02-27T19:19:12.738Z" }, + { url = "https://files.pythonhosted.org/packages/51/d0/2bc4368abf766203e548dc7ab57cf7e9c621f1a3c72b516cc7715347b179/matplotlib-3.10.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e496c01441be4c7d5f96d4e40f7fca06e20dcb40e44c8daa2e740e1757ad9e6", size = 8596819, upload-time = "2025-02-27T19:19:15.306Z" }, + { url = "https://files.pythonhosted.org/packages/ab/1b/8b350f8a1746c37ab69dda7d7528d1fc696efb06db6ade9727b7887be16d/matplotlib-3.10.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5d45d3f5245be5b469843450617dcad9af75ca50568acf59997bed9311131a0b", size = 9402782, upload-time = "2025-02-27T19:19:17.841Z" }, + { url = "https://files.pythonhosted.org/packages/89/06/f570373d24d93503988ba8d04f213a372fa1ce48381c5eb15da985728498/matplotlib-3.10.1-cp313-cp313-win_amd64.whl", hash = "sha256:8e8e25b1209161d20dfe93037c8a7f7ca796ec9aa326e6e4588d8c4a5dd1e473", size = 8063812, upload-time = "2025-02-27T19:19:20.888Z" }, + { url = "https://files.pythonhosted.org/packages/fc/e0/8c811a925b5a7ad75135f0e5af46408b78af88bbb02a1df775100ef9bfef/matplotlib-3.10.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:19b06241ad89c3ae9469e07d77efa87041eac65d78df4fcf9cac318028009b01", size = 8214021, upload-time = "2025-02-27T19:19:23.412Z" }, + { url = "https://files.pythonhosted.org/packages/4a/34/319ec2139f68ba26da9d00fce2ff9f27679fb799a6c8e7358539801fd629/matplotlib-3.10.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:01e63101ebb3014e6e9f80d9cf9ee361a8599ddca2c3e166c563628b39305dbb", size = 8090782, upload-time = "2025-02-27T19:19:28.33Z" }, + { url = "https://files.pythonhosted.org/packages/77/ea/9812124ab9a99df5b2eec1110e9b2edc0b8f77039abf4c56e0a376e84a29/matplotlib-3.10.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3f06bad951eea6422ac4e8bdebcf3a70c59ea0a03338c5d2b109f57b64eb3972", size = 8478901, upload-time = "2025-02-27T19:19:31.536Z" }, + { url = "https://files.pythonhosted.org/packages/c9/db/b05bf463689134789b06dea85828f8ebe506fa1e37593f723b65b86c9582/matplotlib-3.10.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a3dfb036f34873b46978f55e240cff7a239f6c4409eac62d8145bad3fc6ba5a3", size = 8613864, upload-time = "2025-02-27T19:19:34.233Z" }, + { url = "https://files.pythonhosted.org/packages/c2/04/41ccec4409f3023a7576df3b5c025f1a8c8b81fbfe922ecfd837ac36e081/matplotlib-3.10.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:dc6ab14a7ab3b4d813b88ba957fc05c79493a037f54e246162033591e770de6f", size = 9409487, upload-time = "2025-02-27T19:19:36.924Z" }, + { url = "https://files.pythonhosted.org/packages/ac/c2/0d5aae823bdcc42cc99327ecdd4d28585e15ccd5218c453b7bcd827f3421/matplotlib-3.10.1-cp313-cp313t-win_amd64.whl", hash = "sha256:bc411ebd5889a78dabbc457b3fa153203e22248bfa6eedc6797be5df0164dbf9", size = 8134832, upload-time = "2025-02-27T19:19:39.431Z" }, ] [[package]] @@ -421,70 +436,87 @@ dependencies = [ { name = "mypy-extensions" }, { name = "typing-extensions" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/ce/43/d5e49a86afa64bd3839ea0d5b9c7103487007d728e1293f52525d6d5486a/mypy-1.15.0.tar.gz", hash = "sha256:404534629d51d3efea5c800ee7c42b72a6554d6c400e6a79eafe15d11341fd43", size = 3239717 } +sdist = { url = "https://files.pythonhosted.org/packages/ce/43/d5e49a86afa64bd3839ea0d5b9c7103487007d728e1293f52525d6d5486a/mypy-1.15.0.tar.gz", hash = "sha256:404534629d51d3efea5c800ee7c42b72a6554d6c400e6a79eafe15d11341fd43", size = 3239717, upload-time = "2025-02-05T03:50:34.655Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/6a/9b/fd2e05d6ffff24d912f150b87db9e364fa8282045c875654ce7e32fffa66/mypy-1.15.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:93faf3fdb04768d44bf28693293f3904bbb555d076b781ad2530214ee53e3445", size = 10788592 }, - { url = "https://files.pythonhosted.org/packages/74/37/b246d711c28a03ead1fd906bbc7106659aed7c089d55fe40dd58db812628/mypy-1.15.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:811aeccadfb730024c5d3e326b2fbe9249bb7413553f15499a4050f7c30e801d", size = 9753611 }, - { url = "https://files.pythonhosted.org/packages/a6/ac/395808a92e10cfdac8003c3de9a2ab6dc7cde6c0d2a4df3df1b815ffd067/mypy-1.15.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:98b7b9b9aedb65fe628c62a6dc57f6d5088ef2dfca37903a7d9ee374d03acca5", size = 11438443 }, - { url = "https://files.pythonhosted.org/packages/d2/8b/801aa06445d2de3895f59e476f38f3f8d610ef5d6908245f07d002676cbf/mypy-1.15.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c43a7682e24b4f576d93072216bf56eeff70d9140241f9edec0c104d0c515036", size = 12402541 }, - { url = "https://files.pythonhosted.org/packages/c7/67/5a4268782eb77344cc613a4cf23540928e41f018a9a1ec4c6882baf20ab8/mypy-1.15.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:baefc32840a9f00babd83251560e0ae1573e2f9d1b067719479bfb0e987c6357", size = 12494348 }, - { url = "https://files.pythonhosted.org/packages/83/3e/57bb447f7bbbfaabf1712d96f9df142624a386d98fb026a761532526057e/mypy-1.15.0-cp313-cp313-win_amd64.whl", hash = "sha256:b9378e2c00146c44793c98b8d5a61039a048e31f429fb0eb546d93f4b000bedf", size = 9373648 }, - { url = "https://files.pythonhosted.org/packages/09/4e/a7d65c7322c510de2c409ff3828b03354a7c43f5a8ed458a7a131b41c7b9/mypy-1.15.0-py3-none-any.whl", hash = "sha256:5469affef548bd1895d86d3bf10ce2b44e33d86923c29e4d675b3e323437ea3e", size = 2221777 }, + { url = "https://files.pythonhosted.org/packages/6a/9b/fd2e05d6ffff24d912f150b87db9e364fa8282045c875654ce7e32fffa66/mypy-1.15.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:93faf3fdb04768d44bf28693293f3904bbb555d076b781ad2530214ee53e3445", size = 10788592, upload-time = "2025-02-05T03:48:55.789Z" }, + { url = "https://files.pythonhosted.org/packages/74/37/b246d711c28a03ead1fd906bbc7106659aed7c089d55fe40dd58db812628/mypy-1.15.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:811aeccadfb730024c5d3e326b2fbe9249bb7413553f15499a4050f7c30e801d", size = 9753611, upload-time = "2025-02-05T03:48:44.581Z" }, + { url = "https://files.pythonhosted.org/packages/a6/ac/395808a92e10cfdac8003c3de9a2ab6dc7cde6c0d2a4df3df1b815ffd067/mypy-1.15.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:98b7b9b9aedb65fe628c62a6dc57f6d5088ef2dfca37903a7d9ee374d03acca5", size = 11438443, upload-time = "2025-02-05T03:49:25.514Z" }, + { url = "https://files.pythonhosted.org/packages/d2/8b/801aa06445d2de3895f59e476f38f3f8d610ef5d6908245f07d002676cbf/mypy-1.15.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c43a7682e24b4f576d93072216bf56eeff70d9140241f9edec0c104d0c515036", size = 12402541, upload-time = "2025-02-05T03:49:57.623Z" }, + { url = "https://files.pythonhosted.org/packages/c7/67/5a4268782eb77344cc613a4cf23540928e41f018a9a1ec4c6882baf20ab8/mypy-1.15.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:baefc32840a9f00babd83251560e0ae1573e2f9d1b067719479bfb0e987c6357", size = 12494348, upload-time = "2025-02-05T03:48:52.361Z" }, + { url = "https://files.pythonhosted.org/packages/83/3e/57bb447f7bbbfaabf1712d96f9df142624a386d98fb026a761532526057e/mypy-1.15.0-cp313-cp313-win_amd64.whl", hash = "sha256:b9378e2c00146c44793c98b8d5a61039a048e31f429fb0eb546d93f4b000bedf", size = 9373648, upload-time = "2025-02-05T03:49:11.395Z" }, + { url = "https://files.pythonhosted.org/packages/09/4e/a7d65c7322c510de2c409ff3828b03354a7c43f5a8ed458a7a131b41c7b9/mypy-1.15.0-py3-none-any.whl", hash = "sha256:5469affef548bd1895d86d3bf10ce2b44e33d86923c29e4d675b3e323437ea3e", size = 2221777, upload-time = "2025-02-05T03:50:08.348Z" }, ] [[package]] name = "mypy-extensions" version = "1.0.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/98/a4/1ab47638b92648243faf97a5aeb6ea83059cc3624972ab6b8d2316078d3f/mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782", size = 4433 } +sdist = { url = "https://files.pythonhosted.org/packages/98/a4/1ab47638b92648243faf97a5aeb6ea83059cc3624972ab6b8d2316078d3f/mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782", size = 4433, upload-time = "2023-02-04T12:11:27.157Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/2a/e2/5d3f6ada4297caebe1a2add3b126fe800c96f56dbe5d1988a2cbe0b267aa/mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d", size = 4695 }, + { url = "https://files.pythonhosted.org/packages/2a/e2/5d3f6ada4297caebe1a2add3b126fe800c96f56dbe5d1988a2cbe0b267aa/mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d", size = 4695, upload-time = "2023-02-04T12:11:25.002Z" }, ] [[package]] name = "narwhals" version = "1.33.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/85/fd/484aa8bb557f97a1781f38c78b79f795a2fa320e4165c4230f679937d1e8/narwhals-1.33.0.tar.gz", hash = "sha256:6233d2457debf4b5fe4a1da54530c6fe2d84326f4a8e3bca35bbbff580a347cb", size = 262554 } +sdist = { url = "https://files.pythonhosted.org/packages/85/fd/484aa8bb557f97a1781f38c78b79f795a2fa320e4165c4230f679937d1e8/narwhals-1.33.0.tar.gz", hash = "sha256:6233d2457debf4b5fe4a1da54530c6fe2d84326f4a8e3bca35bbbff580a347cb", size = 262554, upload-time = "2025-03-31T17:12:36.569Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/41/c1/e9bc6b67c774e7c1f939c91ea535f18f7644fedc61b20d6baa861ad52b34/narwhals-1.33.0-py3-none-any.whl", hash = "sha256:f653319112fd121a1f1c18a40cf70dada773cdacfd53e62c2aa0afae43c17129", size = 322750 }, + { url = "https://files.pythonhosted.org/packages/41/c1/e9bc6b67c774e7c1f939c91ea535f18f7644fedc61b20d6baa861ad52b34/narwhals-1.33.0-py3-none-any.whl", hash = "sha256:f653319112fd121a1f1c18a40cf70dada773cdacfd53e62c2aa0afae43c17129", size = 322750, upload-time = "2025-03-31T17:12:34.435Z" }, ] [[package]] name = "numpy" version = "2.2.4" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/e1/78/31103410a57bc2c2b93a3597340a8119588571f6a4539067546cb9a0bfac/numpy-2.2.4.tar.gz", hash = "sha256:9ba03692a45d3eef66559efe1d1096c4b9b75c0986b5dff5530c378fb8331d4f", size = 20270701 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/2a/d0/bd5ad792e78017f5decfb2ecc947422a3669a34f775679a76317af671ffc/numpy-2.2.4-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:1cf4e5c6a278d620dee9ddeb487dc6a860f9b199eadeecc567f777daace1e9e7", size = 20933623 }, - { url = "https://files.pythonhosted.org/packages/c3/bc/2b3545766337b95409868f8e62053135bdc7fa2ce630aba983a2aa60b559/numpy-2.2.4-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1974afec0b479e50438fc3648974268f972e2d908ddb6d7fb634598cdb8260a0", size = 14148681 }, - { url = "https://files.pythonhosted.org/packages/6a/70/67b24d68a56551d43a6ec9fe8c5f91b526d4c1a46a6387b956bf2d64744e/numpy-2.2.4-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:79bd5f0a02aa16808fcbc79a9a376a147cc1045f7dfe44c6e7d53fa8b8a79392", size = 5148759 }, - { url = "https://files.pythonhosted.org/packages/1c/8b/e2fc8a75fcb7be12d90b31477c9356c0cbb44abce7ffb36be39a0017afad/numpy-2.2.4-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:3387dd7232804b341165cedcb90694565a6015433ee076c6754775e85d86f1fc", size = 6683092 }, - { url = "https://files.pythonhosted.org/packages/13/73/41b7b27f169ecf368b52533edb72e56a133f9e86256e809e169362553b49/numpy-2.2.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f527d8fdb0286fd2fd97a2a96c6be17ba4232da346931d967a0630050dfd298", size = 14081422 }, - { url = "https://files.pythonhosted.org/packages/4b/04/e208ff3ae3ddfbafc05910f89546382f15a3f10186b1f56bd99f159689c2/numpy-2.2.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bce43e386c16898b91e162e5baaad90c4b06f9dcbe36282490032cec98dc8ae7", size = 16132202 }, - { url = "https://files.pythonhosted.org/packages/fe/bc/2218160574d862d5e55f803d88ddcad88beff94791f9c5f86d67bd8fbf1c/numpy-2.2.4-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:31504f970f563d99f71a3512d0c01a645b692b12a63630d6aafa0939e52361e6", size = 15573131 }, - { url = "https://files.pythonhosted.org/packages/a5/78/97c775bc4f05abc8a8426436b7cb1be806a02a2994b195945600855e3a25/numpy-2.2.4-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:81413336ef121a6ba746892fad881a83351ee3e1e4011f52e97fba79233611fd", size = 17894270 }, - { url = "https://files.pythonhosted.org/packages/b9/eb/38c06217a5f6de27dcb41524ca95a44e395e6a1decdc0c99fec0832ce6ae/numpy-2.2.4-cp313-cp313-win32.whl", hash = "sha256:f486038e44caa08dbd97275a9a35a283a8f1d2f0ee60ac260a1790e76660833c", size = 6308141 }, - { url = "https://files.pythonhosted.org/packages/52/17/d0dd10ab6d125c6d11ffb6dfa3423c3571befab8358d4f85cd4471964fcd/numpy-2.2.4-cp313-cp313-win_amd64.whl", hash = "sha256:207a2b8441cc8b6a2a78c9ddc64d00d20c303d79fba08c577752f080c4007ee3", size = 12636885 }, - { url = "https://files.pythonhosted.org/packages/fa/e2/793288ede17a0fdc921172916efb40f3cbc2aa97e76c5c84aba6dc7e8747/numpy-2.2.4-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:8120575cb4882318c791f839a4fd66161a6fa46f3f0a5e613071aae35b5dd8f8", size = 20961829 }, - { url = "https://files.pythonhosted.org/packages/3a/75/bb4573f6c462afd1ea5cbedcc362fe3e9bdbcc57aefd37c681be1155fbaa/numpy-2.2.4-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a761ba0fa886a7bb33c6c8f6f20213735cb19642c580a931c625ee377ee8bd39", size = 14161419 }, - { url = "https://files.pythonhosted.org/packages/03/68/07b4cd01090ca46c7a336958b413cdbe75002286295f2addea767b7f16c9/numpy-2.2.4-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:ac0280f1ba4a4bfff363a99a6aceed4f8e123f8a9b234c89140f5e894e452ecd", size = 5196414 }, - { url = "https://files.pythonhosted.org/packages/a5/fd/d4a29478d622fedff5c4b4b4cedfc37a00691079623c0575978d2446db9e/numpy-2.2.4-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:879cf3a9a2b53a4672a168c21375166171bc3932b7e21f622201811c43cdd3b0", size = 6709379 }, - { url = "https://files.pythonhosted.org/packages/41/78/96dddb75bb9be730b87c72f30ffdd62611aba234e4e460576a068c98eff6/numpy-2.2.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f05d4198c1bacc9124018109c5fba2f3201dbe7ab6e92ff100494f236209c960", size = 14051725 }, - { url = "https://files.pythonhosted.org/packages/00/06/5306b8199bffac2a29d9119c11f457f6c7d41115a335b78d3f86fad4dbe8/numpy-2.2.4-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2f085ce2e813a50dfd0e01fbfc0c12bbe5d2063d99f8b29da30e544fb6483b8", size = 16101638 }, - { url = "https://files.pythonhosted.org/packages/fa/03/74c5b631ee1ded596945c12027649e6344614144369fd3ec1aaced782882/numpy-2.2.4-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:92bda934a791c01d6d9d8e038363c50918ef7c40601552a58ac84c9613a665bc", size = 15571717 }, - { url = "https://files.pythonhosted.org/packages/cb/dc/4fc7c0283abe0981e3b89f9b332a134e237dd476b0c018e1e21083310c31/numpy-2.2.4-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:ee4d528022f4c5ff67332469e10efe06a267e32f4067dc76bb7e2cddf3cd25ff", size = 17879998 }, - { url = "https://files.pythonhosted.org/packages/e5/2b/878576190c5cfa29ed896b518cc516aecc7c98a919e20706c12480465f43/numpy-2.2.4-cp313-cp313t-win32.whl", hash = "sha256:05c076d531e9998e7e694c36e8b349969c56eadd2cdcd07242958489d79a7286", size = 6366896 }, - { url = "https://files.pythonhosted.org/packages/3e/05/eb7eec66b95cf697f08c754ef26c3549d03ebd682819f794cb039574a0a6/numpy-2.2.4-cp313-cp313t-win_amd64.whl", hash = "sha256:188dcbca89834cc2e14eb2f106c96d6d46f200fe0200310fc29089657379c58d", size = 12739119 }, +sdist = { url = "https://files.pythonhosted.org/packages/e1/78/31103410a57bc2c2b93a3597340a8119588571f6a4539067546cb9a0bfac/numpy-2.2.4.tar.gz", hash = "sha256:9ba03692a45d3eef66559efe1d1096c4b9b75c0986b5dff5530c378fb8331d4f", size = 20270701, upload-time = "2025-03-16T18:27:00.648Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2a/d0/bd5ad792e78017f5decfb2ecc947422a3669a34f775679a76317af671ffc/numpy-2.2.4-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:1cf4e5c6a278d620dee9ddeb487dc6a860f9b199eadeecc567f777daace1e9e7", size = 20933623, upload-time = "2025-03-16T18:13:43.231Z" }, + { url = "https://files.pythonhosted.org/packages/c3/bc/2b3545766337b95409868f8e62053135bdc7fa2ce630aba983a2aa60b559/numpy-2.2.4-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1974afec0b479e50438fc3648974268f972e2d908ddb6d7fb634598cdb8260a0", size = 14148681, upload-time = "2025-03-16T18:14:08.031Z" }, + { url = "https://files.pythonhosted.org/packages/6a/70/67b24d68a56551d43a6ec9fe8c5f91b526d4c1a46a6387b956bf2d64744e/numpy-2.2.4-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:79bd5f0a02aa16808fcbc79a9a376a147cc1045f7dfe44c6e7d53fa8b8a79392", size = 5148759, upload-time = "2025-03-16T18:14:18.613Z" }, + { url = "https://files.pythonhosted.org/packages/1c/8b/e2fc8a75fcb7be12d90b31477c9356c0cbb44abce7ffb36be39a0017afad/numpy-2.2.4-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:3387dd7232804b341165cedcb90694565a6015433ee076c6754775e85d86f1fc", size = 6683092, upload-time = "2025-03-16T18:14:31.386Z" }, + { url = "https://files.pythonhosted.org/packages/13/73/41b7b27f169ecf368b52533edb72e56a133f9e86256e809e169362553b49/numpy-2.2.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f527d8fdb0286fd2fd97a2a96c6be17ba4232da346931d967a0630050dfd298", size = 14081422, upload-time = "2025-03-16T18:14:54.83Z" }, + { url = "https://files.pythonhosted.org/packages/4b/04/e208ff3ae3ddfbafc05910f89546382f15a3f10186b1f56bd99f159689c2/numpy-2.2.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bce43e386c16898b91e162e5baaad90c4b06f9dcbe36282490032cec98dc8ae7", size = 16132202, upload-time = "2025-03-16T18:15:22.035Z" }, + { url = "https://files.pythonhosted.org/packages/fe/bc/2218160574d862d5e55f803d88ddcad88beff94791f9c5f86d67bd8fbf1c/numpy-2.2.4-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:31504f970f563d99f71a3512d0c01a645b692b12a63630d6aafa0939e52361e6", size = 15573131, upload-time = "2025-03-16T18:15:48.546Z" }, + { url = "https://files.pythonhosted.org/packages/a5/78/97c775bc4f05abc8a8426436b7cb1be806a02a2994b195945600855e3a25/numpy-2.2.4-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:81413336ef121a6ba746892fad881a83351ee3e1e4011f52e97fba79233611fd", size = 17894270, upload-time = "2025-03-16T18:16:20.274Z" }, + { url = "https://files.pythonhosted.org/packages/b9/eb/38c06217a5f6de27dcb41524ca95a44e395e6a1decdc0c99fec0832ce6ae/numpy-2.2.4-cp313-cp313-win32.whl", hash = "sha256:f486038e44caa08dbd97275a9a35a283a8f1d2f0ee60ac260a1790e76660833c", size = 6308141, upload-time = "2025-03-16T18:20:15.297Z" }, + { url = "https://files.pythonhosted.org/packages/52/17/d0dd10ab6d125c6d11ffb6dfa3423c3571befab8358d4f85cd4471964fcd/numpy-2.2.4-cp313-cp313-win_amd64.whl", hash = "sha256:207a2b8441cc8b6a2a78c9ddc64d00d20c303d79fba08c577752f080c4007ee3", size = 12636885, upload-time = "2025-03-16T18:20:36.982Z" }, + { url = "https://files.pythonhosted.org/packages/fa/e2/793288ede17a0fdc921172916efb40f3cbc2aa97e76c5c84aba6dc7e8747/numpy-2.2.4-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:8120575cb4882318c791f839a4fd66161a6fa46f3f0a5e613071aae35b5dd8f8", size = 20961829, upload-time = "2025-03-16T18:16:56.191Z" }, + { url = "https://files.pythonhosted.org/packages/3a/75/bb4573f6c462afd1ea5cbedcc362fe3e9bdbcc57aefd37c681be1155fbaa/numpy-2.2.4-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a761ba0fa886a7bb33c6c8f6f20213735cb19642c580a931c625ee377ee8bd39", size = 14161419, upload-time = "2025-03-16T18:17:22.811Z" }, + { url = "https://files.pythonhosted.org/packages/03/68/07b4cd01090ca46c7a336958b413cdbe75002286295f2addea767b7f16c9/numpy-2.2.4-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:ac0280f1ba4a4bfff363a99a6aceed4f8e123f8a9b234c89140f5e894e452ecd", size = 5196414, upload-time = "2025-03-16T18:17:34.066Z" }, + { url = "https://files.pythonhosted.org/packages/a5/fd/d4a29478d622fedff5c4b4b4cedfc37a00691079623c0575978d2446db9e/numpy-2.2.4-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:879cf3a9a2b53a4672a168c21375166171bc3932b7e21f622201811c43cdd3b0", size = 6709379, upload-time = "2025-03-16T18:17:47.466Z" }, + { url = "https://files.pythonhosted.org/packages/41/78/96dddb75bb9be730b87c72f30ffdd62611aba234e4e460576a068c98eff6/numpy-2.2.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f05d4198c1bacc9124018109c5fba2f3201dbe7ab6e92ff100494f236209c960", size = 14051725, upload-time = "2025-03-16T18:18:11.904Z" }, + { url = "https://files.pythonhosted.org/packages/00/06/5306b8199bffac2a29d9119c11f457f6c7d41115a335b78d3f86fad4dbe8/numpy-2.2.4-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2f085ce2e813a50dfd0e01fbfc0c12bbe5d2063d99f8b29da30e544fb6483b8", size = 16101638, upload-time = "2025-03-16T18:18:40.749Z" }, + { url = "https://files.pythonhosted.org/packages/fa/03/74c5b631ee1ded596945c12027649e6344614144369fd3ec1aaced782882/numpy-2.2.4-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:92bda934a791c01d6d9d8e038363c50918ef7c40601552a58ac84c9613a665bc", size = 15571717, upload-time = "2025-03-16T18:19:04.512Z" }, + { url = "https://files.pythonhosted.org/packages/cb/dc/4fc7c0283abe0981e3b89f9b332a134e237dd476b0c018e1e21083310c31/numpy-2.2.4-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:ee4d528022f4c5ff67332469e10efe06a267e32f4067dc76bb7e2cddf3cd25ff", size = 17879998, upload-time = "2025-03-16T18:19:32.52Z" }, + { url = "https://files.pythonhosted.org/packages/e5/2b/878576190c5cfa29ed896b518cc516aecc7c98a919e20706c12480465f43/numpy-2.2.4-cp313-cp313t-win32.whl", hash = "sha256:05c076d531e9998e7e694c36e8b349969c56eadd2cdcd07242958489d79a7286", size = 6366896, upload-time = "2025-03-16T18:19:43.55Z" }, + { url = "https://files.pythonhosted.org/packages/3e/05/eb7eec66b95cf697f08c754ef26c3549d03ebd682819f794cb039574a0a6/numpy-2.2.4-cp313-cp313t-win_amd64.whl", hash = "sha256:188dcbca89834cc2e14eb2f106c96d6d46f200fe0200310fc29089657379c58d", size = 12739119, upload-time = "2025-03-16T18:20:03.94Z" }, +] + +[[package]] +name = "openremote-client" +version = "0.1.0" +source = { editable = "packages/openremote_client" } +dependencies = [ + { name = "apscheduler" }, + { name = "httpx" }, + { name = "pydantic" }, +] + +[package.metadata] +requires-dist = [ + { name = "apscheduler", specifier = ">=3.11.0" }, + { name = "httpx", specifier = ">=0.24.0" }, + { name = "pydantic", specifier = ">=2.0.0" }, ] [[package]] name = "packaging" version = "24.2" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/d0/63/68dbb6eb2de9cb10ee4c9c14a0148804425e13c4fb20d61cce69f53106da/packaging-24.2.tar.gz", hash = "sha256:c228a6dc5e932d346bc5739379109d49e8853dd8223571c7c5b55260edc0b97f", size = 163950 } +sdist = { url = "https://files.pythonhosted.org/packages/d0/63/68dbb6eb2de9cb10ee4c9c14a0148804425e13c4fb20d61cce69f53106da/packaging-24.2.tar.gz", hash = "sha256:c228a6dc5e932d346bc5739379109d49e8853dd8223571c7c5b55260edc0b97f", size = 163950, upload-time = "2024-11-08T09:47:47.202Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/88/ef/eb23f262cca3c0c4eb7ab1933c3b1f03d021f2c48f54763065b6f0e321be/packaging-24.2-py3-none-any.whl", hash = "sha256:09abb1bccd265c01f4a3aa3f7a7db064b36514d2cba19a2f694fe6150451a759", size = 65451 }, + { url = "https://files.pythonhosted.org/packages/88/ef/eb23f262cca3c0c4eb7ab1933c3b1f03d021f2c48f54763065b6f0e321be/packaging-24.2-py3-none-any.whl", hash = "sha256:09abb1bccd265c01f4a3aa3f7a7db064b36514d2cba19a2f694fe6150451a759", size = 65451, upload-time = "2024-11-08T09:47:44.722Z" }, ] [[package]] @@ -497,21 +529,21 @@ dependencies = [ { name = "pytz" }, { name = "tzdata" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/9c/d6/9f8431bacc2e19dca897724cd097b1bb224a6ad5433784a44b587c7c13af/pandas-2.2.3.tar.gz", hash = "sha256:4f18ba62b61d7e192368b84517265a99b4d7ee8912f8708660fb4a366cc82667", size = 4399213 } +sdist = { url = "https://files.pythonhosted.org/packages/9c/d6/9f8431bacc2e19dca897724cd097b1bb224a6ad5433784a44b587c7c13af/pandas-2.2.3.tar.gz", hash = "sha256:4f18ba62b61d7e192368b84517265a99b4d7ee8912f8708660fb4a366cc82667", size = 4399213, upload-time = "2024-09-20T13:10:04.827Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/64/22/3b8f4e0ed70644e85cfdcd57454686b9057c6c38d2f74fe4b8bc2527214a/pandas-2.2.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:f00d1345d84d8c86a63e476bb4955e46458b304b9575dcf71102b5c705320015", size = 12477643 }, - { url = "https://files.pythonhosted.org/packages/e4/93/b3f5d1838500e22c8d793625da672f3eec046b1a99257666c94446969282/pandas-2.2.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:3508d914817e153ad359d7e069d752cdd736a247c322d932eb89e6bc84217f28", size = 11281573 }, - { url = "https://files.pythonhosted.org/packages/f5/94/6c79b07f0e5aab1dcfa35a75f4817f5c4f677931d4234afcd75f0e6a66ca/pandas-2.2.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:22a9d949bfc9a502d320aa04e5d02feab689d61da4e7764b62c30b991c42c5f0", size = 15196085 }, - { url = "https://files.pythonhosted.org/packages/e8/31/aa8da88ca0eadbabd0a639788a6da13bb2ff6edbbb9f29aa786450a30a91/pandas-2.2.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f3a255b2c19987fbbe62a9dfd6cff7ff2aa9ccab3fc75218fd4b7530f01efa24", size = 12711809 }, - { url = "https://files.pythonhosted.org/packages/ee/7c/c6dbdb0cb2a4344cacfb8de1c5808ca885b2e4dcfde8008266608f9372af/pandas-2.2.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:800250ecdadb6d9c78eae4990da62743b857b470883fa27f652db8bdde7f6659", size = 16356316 }, - { url = "https://files.pythonhosted.org/packages/57/b7/8b757e7d92023b832869fa8881a992696a0bfe2e26f72c9ae9f255988d42/pandas-2.2.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6374c452ff3ec675a8f46fd9ab25c4ad0ba590b71cf0656f8b6daa5202bca3fb", size = 14022055 }, - { url = "https://files.pythonhosted.org/packages/3b/bc/4b18e2b8c002572c5a441a64826252ce5da2aa738855747247a971988043/pandas-2.2.3-cp313-cp313-win_amd64.whl", hash = "sha256:61c5ad4043f791b61dd4752191d9f07f0ae412515d59ba8f005832a532f8736d", size = 11481175 }, - { url = "https://files.pythonhosted.org/packages/76/a3/a5d88146815e972d40d19247b2c162e88213ef51c7c25993942c39dbf41d/pandas-2.2.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:3b71f27954685ee685317063bf13c7709a7ba74fc996b84fc6821c59b0f06468", size = 12615650 }, - { url = "https://files.pythonhosted.org/packages/9c/8c/f0fd18f6140ddafc0c24122c8a964e48294acc579d47def376fef12bcb4a/pandas-2.2.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:38cf8125c40dae9d5acc10fa66af8ea6fdf760b2714ee482ca691fc66e6fcb18", size = 11290177 }, - { url = "https://files.pythonhosted.org/packages/ed/f9/e995754eab9c0f14c6777401f7eece0943840b7a9fc932221c19d1abee9f/pandas-2.2.3-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:ba96630bc17c875161df3818780af30e43be9b166ce51c9a18c1feae342906c2", size = 14651526 }, - { url = "https://files.pythonhosted.org/packages/25/b0/98d6ae2e1abac4f35230aa756005e8654649d305df9a28b16b9ae4353bff/pandas-2.2.3-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1db71525a1538b30142094edb9adc10be3f3e176748cd7acc2240c2f2e5aa3a4", size = 11871013 }, - { url = "https://files.pythonhosted.org/packages/cc/57/0f72a10f9db6a4628744c8e8f0df4e6e21de01212c7c981d31e50ffc8328/pandas-2.2.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:15c0e1e02e93116177d29ff83e8b1619c93ddc9c49083f237d4312337a61165d", size = 15711620 }, - { url = "https://files.pythonhosted.org/packages/ab/5f/b38085618b950b79d2d9164a711c52b10aefc0ae6833b96f626b7021b2ed/pandas-2.2.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:ad5b65698ab28ed8d7f18790a0dc58005c7629f227be9ecc1072aa74c0c1d43a", size = 13098436 }, + { url = "https://files.pythonhosted.org/packages/64/22/3b8f4e0ed70644e85cfdcd57454686b9057c6c38d2f74fe4b8bc2527214a/pandas-2.2.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:f00d1345d84d8c86a63e476bb4955e46458b304b9575dcf71102b5c705320015", size = 12477643, upload-time = "2024-09-20T13:09:25.522Z" }, + { url = "https://files.pythonhosted.org/packages/e4/93/b3f5d1838500e22c8d793625da672f3eec046b1a99257666c94446969282/pandas-2.2.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:3508d914817e153ad359d7e069d752cdd736a247c322d932eb89e6bc84217f28", size = 11281573, upload-time = "2024-09-20T13:09:28.012Z" }, + { url = "https://files.pythonhosted.org/packages/f5/94/6c79b07f0e5aab1dcfa35a75f4817f5c4f677931d4234afcd75f0e6a66ca/pandas-2.2.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:22a9d949bfc9a502d320aa04e5d02feab689d61da4e7764b62c30b991c42c5f0", size = 15196085, upload-time = "2024-09-20T19:02:10.451Z" }, + { url = "https://files.pythonhosted.org/packages/e8/31/aa8da88ca0eadbabd0a639788a6da13bb2ff6edbbb9f29aa786450a30a91/pandas-2.2.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f3a255b2c19987fbbe62a9dfd6cff7ff2aa9ccab3fc75218fd4b7530f01efa24", size = 12711809, upload-time = "2024-09-20T13:09:30.814Z" }, + { url = "https://files.pythonhosted.org/packages/ee/7c/c6dbdb0cb2a4344cacfb8de1c5808ca885b2e4dcfde8008266608f9372af/pandas-2.2.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:800250ecdadb6d9c78eae4990da62743b857b470883fa27f652db8bdde7f6659", size = 16356316, upload-time = "2024-09-20T19:02:13.825Z" }, + { url = "https://files.pythonhosted.org/packages/57/b7/8b757e7d92023b832869fa8881a992696a0bfe2e26f72c9ae9f255988d42/pandas-2.2.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6374c452ff3ec675a8f46fd9ab25c4ad0ba590b71cf0656f8b6daa5202bca3fb", size = 14022055, upload-time = "2024-09-20T13:09:33.462Z" }, + { url = "https://files.pythonhosted.org/packages/3b/bc/4b18e2b8c002572c5a441a64826252ce5da2aa738855747247a971988043/pandas-2.2.3-cp313-cp313-win_amd64.whl", hash = "sha256:61c5ad4043f791b61dd4752191d9f07f0ae412515d59ba8f005832a532f8736d", size = 11481175, upload-time = "2024-09-20T13:09:35.871Z" }, + { url = "https://files.pythonhosted.org/packages/76/a3/a5d88146815e972d40d19247b2c162e88213ef51c7c25993942c39dbf41d/pandas-2.2.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:3b71f27954685ee685317063bf13c7709a7ba74fc996b84fc6821c59b0f06468", size = 12615650, upload-time = "2024-09-20T13:09:38.685Z" }, + { url = "https://files.pythonhosted.org/packages/9c/8c/f0fd18f6140ddafc0c24122c8a964e48294acc579d47def376fef12bcb4a/pandas-2.2.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:38cf8125c40dae9d5acc10fa66af8ea6fdf760b2714ee482ca691fc66e6fcb18", size = 11290177, upload-time = "2024-09-20T13:09:41.141Z" }, + { url = "https://files.pythonhosted.org/packages/ed/f9/e995754eab9c0f14c6777401f7eece0943840b7a9fc932221c19d1abee9f/pandas-2.2.3-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:ba96630bc17c875161df3818780af30e43be9b166ce51c9a18c1feae342906c2", size = 14651526, upload-time = "2024-09-20T19:02:16.905Z" }, + { url = "https://files.pythonhosted.org/packages/25/b0/98d6ae2e1abac4f35230aa756005e8654649d305df9a28b16b9ae4353bff/pandas-2.2.3-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1db71525a1538b30142094edb9adc10be3f3e176748cd7acc2240c2f2e5aa3a4", size = 11871013, upload-time = "2024-09-20T13:09:44.39Z" }, + { url = "https://files.pythonhosted.org/packages/cc/57/0f72a10f9db6a4628744c8e8f0df4e6e21de01212c7c981d31e50ffc8328/pandas-2.2.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:15c0e1e02e93116177d29ff83e8b1619c93ddc9c49083f237d4312337a61165d", size = 15711620, upload-time = "2024-09-20T19:02:20.639Z" }, + { url = "https://files.pythonhosted.org/packages/ab/5f/b38085618b950b79d2d9164a711c52b10aefc0ae6833b96f626b7021b2ed/pandas-2.2.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:ad5b65698ab28ed8d7f18790a0dc58005c7629f227be9ecc1072aa74c0c1d43a", size = 13098436, upload-time = "2024-09-20T13:09:48.112Z" }, ] [[package]] @@ -522,36 +554,36 @@ dependencies = [ { name = "numpy" }, { name = "types-pytz" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/2e/5a/261f5c67a73e46df2d5984fe7129d66a3ed4864fd7aa9d8721abb3fc802e/pandas_stubs-2.2.3.250308.tar.gz", hash = "sha256:3a6e9daf161f00b85c83772ed3d5cff9522028f07a94817472c07b91f46710fd", size = 103986 } +sdist = { url = "https://files.pythonhosted.org/packages/2e/5a/261f5c67a73e46df2d5984fe7129d66a3ed4864fd7aa9d8721abb3fc802e/pandas_stubs-2.2.3.250308.tar.gz", hash = "sha256:3a6e9daf161f00b85c83772ed3d5cff9522028f07a94817472c07b91f46710fd", size = 103986, upload-time = "2025-03-08T20:51:04.999Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/ba/64/ab61d9ca06ff66c07eb804ec27dec1a2be1978b3c3767caaa91e363438cc/pandas_stubs-2.2.3.250308-py3-none-any.whl", hash = "sha256:a377edff3b61f8b268c82499fdbe7c00fdeed13235b8b71d6a1dc347aeddc74d", size = 158053 }, + { url = "https://files.pythonhosted.org/packages/ba/64/ab61d9ca06ff66c07eb804ec27dec1a2be1978b3c3767caaa91e363438cc/pandas_stubs-2.2.3.250308-py3-none-any.whl", hash = "sha256:a377edff3b61f8b268c82499fdbe7c00fdeed13235b8b71d6a1dc347aeddc74d", size = 158053, upload-time = "2025-03-08T20:51:03.411Z" }, ] [[package]] name = "pillow" version = "11.1.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/f3/af/c097e544e7bd278333db77933e535098c259609c4eb3b85381109602fb5b/pillow-11.1.0.tar.gz", hash = "sha256:368da70808b36d73b4b390a8ffac11069f8a5c85f29eff1f1b01bcf3ef5b2a20", size = 46742715 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/b3/31/9ca79cafdce364fd5c980cd3416c20ce1bebd235b470d262f9d24d810184/pillow-11.1.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:ae98e14432d458fc3de11a77ccb3ae65ddce70f730e7c76140653048c71bfcbc", size = 3226640 }, - { url = "https://files.pythonhosted.org/packages/ac/0f/ff07ad45a1f172a497aa393b13a9d81a32e1477ef0e869d030e3c1532521/pillow-11.1.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:cc1331b6d5a6e144aeb5e626f4375f5b7ae9934ba620c0ac6b3e43d5e683a0f0", size = 3101437 }, - { url = "https://files.pythonhosted.org/packages/08/2f/9906fca87a68d29ec4530be1f893149e0cb64a86d1f9f70a7cfcdfe8ae44/pillow-11.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:758e9d4ef15d3560214cddbc97b8ef3ef86ce04d62ddac17ad39ba87e89bd3b1", size = 4326605 }, - { url = "https://files.pythonhosted.org/packages/b0/0f/f3547ee15b145bc5c8b336401b2d4c9d9da67da9dcb572d7c0d4103d2c69/pillow-11.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b523466b1a31d0dcef7c5be1f20b942919b62fd6e9a9be199d035509cbefc0ec", size = 4411173 }, - { url = "https://files.pythonhosted.org/packages/b1/df/bf8176aa5db515c5de584c5e00df9bab0713548fd780c82a86cba2c2fedb/pillow-11.1.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:9044b5e4f7083f209c4e35aa5dd54b1dd5b112b108648f5c902ad586d4f945c5", size = 4369145 }, - { url = "https://files.pythonhosted.org/packages/de/7c/7433122d1cfadc740f577cb55526fdc39129a648ac65ce64db2eb7209277/pillow-11.1.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:3764d53e09cdedd91bee65c2527815d315c6b90d7b8b79759cc48d7bf5d4f114", size = 4496340 }, - { url = "https://files.pythonhosted.org/packages/25/46/dd94b93ca6bd555588835f2504bd90c00d5438fe131cf01cfa0c5131a19d/pillow-11.1.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:31eba6bbdd27dde97b0174ddf0297d7a9c3a507a8a1480e1e60ef914fe23d352", size = 4296906 }, - { url = "https://files.pythonhosted.org/packages/a8/28/2f9d32014dfc7753e586db9add35b8a41b7a3b46540e965cb6d6bc607bd2/pillow-11.1.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:b5d658fbd9f0d6eea113aea286b21d3cd4d3fd978157cbf2447a6035916506d3", size = 4431759 }, - { url = "https://files.pythonhosted.org/packages/33/48/19c2cbe7403870fbe8b7737d19eb013f46299cdfe4501573367f6396c775/pillow-11.1.0-cp313-cp313-win32.whl", hash = "sha256:f86d3a7a9af5d826744fabf4afd15b9dfef44fe69a98541f666f66fbb8d3fef9", size = 2291657 }, - { url = "https://files.pythonhosted.org/packages/3b/ad/285c556747d34c399f332ba7c1a595ba245796ef3e22eae190f5364bb62b/pillow-11.1.0-cp313-cp313-win_amd64.whl", hash = "sha256:593c5fd6be85da83656b93ffcccc2312d2d149d251e98588b14fbc288fd8909c", size = 2626304 }, - { url = "https://files.pythonhosted.org/packages/e5/7b/ef35a71163bf36db06e9c8729608f78dedf032fc8313d19bd4be5c2588f3/pillow-11.1.0-cp313-cp313-win_arm64.whl", hash = "sha256:11633d58b6ee5733bde153a8dafd25e505ea3d32e261accd388827ee987baf65", size = 2375117 }, - { url = "https://files.pythonhosted.org/packages/79/30/77f54228401e84d6791354888549b45824ab0ffde659bafa67956303a09f/pillow-11.1.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:70ca5ef3b3b1c4a0812b5c63c57c23b63e53bc38e758b37a951e5bc466449861", size = 3230060 }, - { url = "https://files.pythonhosted.org/packages/ce/b1/56723b74b07dd64c1010fee011951ea9c35a43d8020acd03111f14298225/pillow-11.1.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:8000376f139d4d38d6851eb149b321a52bb8893a88dae8ee7d95840431977081", size = 3106192 }, - { url = "https://files.pythonhosted.org/packages/e1/cd/7bf7180e08f80a4dcc6b4c3a0aa9e0b0ae57168562726a05dc8aa8fa66b0/pillow-11.1.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ee85f0696a17dd28fbcfceb59f9510aa71934b483d1f5601d1030c3c8304f3c", size = 4446805 }, - { url = "https://files.pythonhosted.org/packages/97/42/87c856ea30c8ed97e8efbe672b58c8304dee0573f8c7cab62ae9e31db6ae/pillow-11.1.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:dd0e081319328928531df7a0e63621caf67652c8464303fd102141b785ef9547", size = 4530623 }, - { url = "https://files.pythonhosted.org/packages/ff/41/026879e90c84a88e33fb00cc6bd915ac2743c67e87a18f80270dfe3c2041/pillow-11.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:e63e4e5081de46517099dc30abe418122f54531a6ae2ebc8680bcd7096860eab", size = 4465191 }, - { url = "https://files.pythonhosted.org/packages/e5/fb/a7960e838bc5df57a2ce23183bfd2290d97c33028b96bde332a9057834d3/pillow-11.1.0-cp313-cp313t-win32.whl", hash = "sha256:dda60aa465b861324e65a78c9f5cf0f4bc713e4309f83bc387be158b077963d9", size = 2295494 }, - { url = "https://files.pythonhosted.org/packages/d7/6c/6ec83ee2f6f0fda8d4cf89045c6be4b0373ebfc363ba8538f8c999f63fcd/pillow-11.1.0-cp313-cp313t-win_amd64.whl", hash = "sha256:ad5db5781c774ab9a9b2c4302bbf0c1014960a0a7be63278d13ae6fdf88126fe", size = 2631595 }, - { url = "https://files.pythonhosted.org/packages/cf/6c/41c21c6c8af92b9fea313aa47c75de49e2f9a467964ee33eb0135d47eb64/pillow-11.1.0-cp313-cp313t-win_arm64.whl", hash = "sha256:67cd427c68926108778a9005f2a04adbd5e67c442ed21d95389fe1d595458756", size = 2377651 }, +sdist = { url = "https://files.pythonhosted.org/packages/f3/af/c097e544e7bd278333db77933e535098c259609c4eb3b85381109602fb5b/pillow-11.1.0.tar.gz", hash = "sha256:368da70808b36d73b4b390a8ffac11069f8a5c85f29eff1f1b01bcf3ef5b2a20", size = 46742715, upload-time = "2025-01-02T08:13:58.407Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b3/31/9ca79cafdce364fd5c980cd3416c20ce1bebd235b470d262f9d24d810184/pillow-11.1.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:ae98e14432d458fc3de11a77ccb3ae65ddce70f730e7c76140653048c71bfcbc", size = 3226640, upload-time = "2025-01-02T08:11:58.329Z" }, + { url = "https://files.pythonhosted.org/packages/ac/0f/ff07ad45a1f172a497aa393b13a9d81a32e1477ef0e869d030e3c1532521/pillow-11.1.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:cc1331b6d5a6e144aeb5e626f4375f5b7ae9934ba620c0ac6b3e43d5e683a0f0", size = 3101437, upload-time = "2025-01-02T08:12:01.797Z" }, + { url = "https://files.pythonhosted.org/packages/08/2f/9906fca87a68d29ec4530be1f893149e0cb64a86d1f9f70a7cfcdfe8ae44/pillow-11.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:758e9d4ef15d3560214cddbc97b8ef3ef86ce04d62ddac17ad39ba87e89bd3b1", size = 4326605, upload-time = "2025-01-02T08:12:05.224Z" }, + { url = "https://files.pythonhosted.org/packages/b0/0f/f3547ee15b145bc5c8b336401b2d4c9d9da67da9dcb572d7c0d4103d2c69/pillow-11.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b523466b1a31d0dcef7c5be1f20b942919b62fd6e9a9be199d035509cbefc0ec", size = 4411173, upload-time = "2025-01-02T08:12:08.281Z" }, + { url = "https://files.pythonhosted.org/packages/b1/df/bf8176aa5db515c5de584c5e00df9bab0713548fd780c82a86cba2c2fedb/pillow-11.1.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:9044b5e4f7083f209c4e35aa5dd54b1dd5b112b108648f5c902ad586d4f945c5", size = 4369145, upload-time = "2025-01-02T08:12:11.411Z" }, + { url = "https://files.pythonhosted.org/packages/de/7c/7433122d1cfadc740f577cb55526fdc39129a648ac65ce64db2eb7209277/pillow-11.1.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:3764d53e09cdedd91bee65c2527815d315c6b90d7b8b79759cc48d7bf5d4f114", size = 4496340, upload-time = "2025-01-02T08:12:15.29Z" }, + { url = "https://files.pythonhosted.org/packages/25/46/dd94b93ca6bd555588835f2504bd90c00d5438fe131cf01cfa0c5131a19d/pillow-11.1.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:31eba6bbdd27dde97b0174ddf0297d7a9c3a507a8a1480e1e60ef914fe23d352", size = 4296906, upload-time = "2025-01-02T08:12:17.485Z" }, + { url = "https://files.pythonhosted.org/packages/a8/28/2f9d32014dfc7753e586db9add35b8a41b7a3b46540e965cb6d6bc607bd2/pillow-11.1.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:b5d658fbd9f0d6eea113aea286b21d3cd4d3fd978157cbf2447a6035916506d3", size = 4431759, upload-time = "2025-01-02T08:12:20.382Z" }, + { url = "https://files.pythonhosted.org/packages/33/48/19c2cbe7403870fbe8b7737d19eb013f46299cdfe4501573367f6396c775/pillow-11.1.0-cp313-cp313-win32.whl", hash = "sha256:f86d3a7a9af5d826744fabf4afd15b9dfef44fe69a98541f666f66fbb8d3fef9", size = 2291657, upload-time = "2025-01-02T08:12:23.922Z" }, + { url = "https://files.pythonhosted.org/packages/3b/ad/285c556747d34c399f332ba7c1a595ba245796ef3e22eae190f5364bb62b/pillow-11.1.0-cp313-cp313-win_amd64.whl", hash = "sha256:593c5fd6be85da83656b93ffcccc2312d2d149d251e98588b14fbc288fd8909c", size = 2626304, upload-time = "2025-01-02T08:12:28.069Z" }, + { url = "https://files.pythonhosted.org/packages/e5/7b/ef35a71163bf36db06e9c8729608f78dedf032fc8313d19bd4be5c2588f3/pillow-11.1.0-cp313-cp313-win_arm64.whl", hash = "sha256:11633d58b6ee5733bde153a8dafd25e505ea3d32e261accd388827ee987baf65", size = 2375117, upload-time = "2025-01-02T08:12:30.064Z" }, + { url = "https://files.pythonhosted.org/packages/79/30/77f54228401e84d6791354888549b45824ab0ffde659bafa67956303a09f/pillow-11.1.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:70ca5ef3b3b1c4a0812b5c63c57c23b63e53bc38e758b37a951e5bc466449861", size = 3230060, upload-time = "2025-01-02T08:12:32.362Z" }, + { url = "https://files.pythonhosted.org/packages/ce/b1/56723b74b07dd64c1010fee011951ea9c35a43d8020acd03111f14298225/pillow-11.1.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:8000376f139d4d38d6851eb149b321a52bb8893a88dae8ee7d95840431977081", size = 3106192, upload-time = "2025-01-02T08:12:34.361Z" }, + { url = "https://files.pythonhosted.org/packages/e1/cd/7bf7180e08f80a4dcc6b4c3a0aa9e0b0ae57168562726a05dc8aa8fa66b0/pillow-11.1.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ee85f0696a17dd28fbcfceb59f9510aa71934b483d1f5601d1030c3c8304f3c", size = 4446805, upload-time = "2025-01-02T08:12:36.99Z" }, + { url = "https://files.pythonhosted.org/packages/97/42/87c856ea30c8ed97e8efbe672b58c8304dee0573f8c7cab62ae9e31db6ae/pillow-11.1.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:dd0e081319328928531df7a0e63621caf67652c8464303fd102141b785ef9547", size = 4530623, upload-time = "2025-01-02T08:12:41.912Z" }, + { url = "https://files.pythonhosted.org/packages/ff/41/026879e90c84a88e33fb00cc6bd915ac2743c67e87a18f80270dfe3c2041/pillow-11.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:e63e4e5081de46517099dc30abe418122f54531a6ae2ebc8680bcd7096860eab", size = 4465191, upload-time = "2025-01-02T08:12:45.186Z" }, + { url = "https://files.pythonhosted.org/packages/e5/fb/a7960e838bc5df57a2ce23183bfd2290d97c33028b96bde332a9057834d3/pillow-11.1.0-cp313-cp313t-win32.whl", hash = "sha256:dda60aa465b861324e65a78c9f5cf0f4bc713e4309f83bc387be158b077963d9", size = 2295494, upload-time = "2025-01-02T08:12:47.098Z" }, + { url = "https://files.pythonhosted.org/packages/d7/6c/6ec83ee2f6f0fda8d4cf89045c6be4b0373ebfc363ba8538f8c999f63fcd/pillow-11.1.0-cp313-cp313t-win_amd64.whl", hash = "sha256:ad5db5781c774ab9a9b2c4302bbf0c1014960a0a7be63278d13ae6fdf88126fe", size = 2631595, upload-time = "2025-01-02T08:12:50.47Z" }, + { url = "https://files.pythonhosted.org/packages/cf/6c/41c21c6c8af92b9fea313aa47c75de49e2f9a467964ee33eb0135d47eb64/pillow-11.1.0-cp313-cp313t-win_arm64.whl", hash = "sha256:67cd427c68926108778a9005f2a04adbd5e67c442ed21d95389fe1d595458756", size = 2377651, upload-time = "2025-01-02T08:12:53.356Z" }, ] [[package]] @@ -562,18 +594,18 @@ dependencies = [ { name = "narwhals" }, { name = "packaging" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/c7/cc/e41b5f697ae403f0b50e47b7af2e36642a193085f553bf7cc1169362873a/plotly-6.0.1.tar.gz", hash = "sha256:dd8400229872b6e3c964b099be699f8d00c489a974f2cfccfad5e8240873366b", size = 8094643 } +sdist = { url = "https://files.pythonhosted.org/packages/c7/cc/e41b5f697ae403f0b50e47b7af2e36642a193085f553bf7cc1169362873a/plotly-6.0.1.tar.gz", hash = "sha256:dd8400229872b6e3c964b099be699f8d00c489a974f2cfccfad5e8240873366b", size = 8094643, upload-time = "2025-03-17T15:02:23.994Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/02/65/ad2bc85f7377f5cfba5d4466d5474423a3fb7f6a97fd807c06f92dd3e721/plotly-6.0.1-py3-none-any.whl", hash = "sha256:4714db20fea57a435692c548a4eb4fae454f7daddf15f8d8ba7e1045681d7768", size = 14805757 }, + { url = "https://files.pythonhosted.org/packages/02/65/ad2bc85f7377f5cfba5d4466d5474423a3fb7f6a97fd807c06f92dd3e721/plotly-6.0.1-py3-none-any.whl", hash = "sha256:4714db20fea57a435692c548a4eb4fae454f7daddf15f8d8ba7e1045681d7768", size = 14805757, upload-time = "2025-03-17T15:02:18.73Z" }, ] [[package]] name = "pluggy" version = "1.5.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/96/2d/02d4312c973c6050a18b314a5ad0b3210edb65a906f868e31c111dede4a6/pluggy-1.5.0.tar.gz", hash = "sha256:2cffa88e94fdc978c4c574f15f9e59b7f4201d439195c3715ca9e2486f1d0cf1", size = 67955 } +sdist = { url = "https://files.pythonhosted.org/packages/96/2d/02d4312c973c6050a18b314a5ad0b3210edb65a906f868e31c111dede4a6/pluggy-1.5.0.tar.gz", hash = "sha256:2cffa88e94fdc978c4c574f15f9e59b7f4201d439195c3715ca9e2486f1d0cf1", size = 67955, upload-time = "2024-04-20T21:34:42.531Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/88/5f/e351af9a41f866ac3f1fac4ca0613908d9a41741cfcf2228f4ad853b697d/pluggy-1.5.0-py3-none-any.whl", hash = "sha256:44e1ad92c8ca002de6377e165f3e0f1be63266ab4d554740532335b9d75ea669", size = 20556 }, + { url = "https://files.pythonhosted.org/packages/88/5f/e351af9a41f866ac3f1fac4ca0613908d9a41741cfcf2228f4ad853b697d/pluggy-1.5.0-py3-none-any.whl", hash = "sha256:44e1ad92c8ca002de6377e165f3e0f1be63266ab4d554740532335b9d75ea669", size = 20556, upload-time = "2024-04-20T21:34:40.434Z" }, ] [[package]] @@ -589,22 +621,22 @@ dependencies = [ { name = "pandas" }, { name = "tqdm" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/03/ff/eb5640b4c17d8254d823253fe123a3c6f5a885854e83e29f899c392356c9/prophet-1.1.6.tar.gz", hash = "sha256:92238aa584da69abe5c43e9426e6a4176064465e8424196655915ff86316a680", size = 65524 } +sdist = { url = "https://files.pythonhosted.org/packages/03/ff/eb5640b4c17d8254d823253fe123a3c6f5a885854e83e29f899c392356c9/prophet-1.1.6.tar.gz", hash = "sha256:92238aa584da69abe5c43e9426e6a4176064465e8424196655915ff86316a680", size = 65524, upload-time = "2024-10-03T00:44:16.719Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/41/46/75309abde08c10f9be78bcfca581be430b5d8303d847de8d88190f4d5c21/prophet-1.1.6-py3-none-macosx_10_11_x86_64.whl", hash = "sha256:f4bd565e6ff5f04d74dbf338c99d0aa353e00849c522f6e6663fdaf026bd0b46", size = 8845463 }, - { url = "https://files.pythonhosted.org/packages/15/9a/a8d35652e869011a3bae9e0888f4c62157bf9067c9be15535602c73039dd/prophet-1.1.6-py3-none-macosx_11_0_arm64.whl", hash = "sha256:29f69a98dbb4b96580decf773034b18639009c13c2f67c59a7e59a6eb2b92b0e", size = 8238419 }, - { url = "https://files.pythonhosted.org/packages/a1/c5/c6dd58b132653af3139c87e92b484bad79264492a62d70fc5beda837a933/prophet-1.1.6-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c0bdf573b1d89b0c0e3dc09778816a35dece000f195b2f032ff0ff8076ae0d6a", size = 14656227 }, - { url = "https://files.pythonhosted.org/packages/1f/47/f7d10a904756830efd8522700e582822ff44a15f839b464044ee4c53ee36/prophet-1.1.6-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5860990c7a6da33a4381a6adab1b35f7d2ed465eeeb364c3b0f663ff69a78eca", size = 14381384 }, - { url = "https://files.pythonhosted.org/packages/12/ff/a04156f4ca3d18bd005c73f79e86e0684346fbc2aea856429c3e49f2828e/prophet-1.1.6-py3-none-win_amd64.whl", hash = "sha256:222ec247e60e0e62fa42572bba27bd82590c7f5225f36b41a3d1762ae2ed96fd", size = 13327596 }, + { url = "https://files.pythonhosted.org/packages/41/46/75309abde08c10f9be78bcfca581be430b5d8303d847de8d88190f4d5c21/prophet-1.1.6-py3-none-macosx_10_11_x86_64.whl", hash = "sha256:f4bd565e6ff5f04d74dbf338c99d0aa353e00849c522f6e6663fdaf026bd0b46", size = 8845463, upload-time = "2024-10-03T00:44:02.497Z" }, + { url = "https://files.pythonhosted.org/packages/15/9a/a8d35652e869011a3bae9e0888f4c62157bf9067c9be15535602c73039dd/prophet-1.1.6-py3-none-macosx_11_0_arm64.whl", hash = "sha256:29f69a98dbb4b96580decf773034b18639009c13c2f67c59a7e59a6eb2b92b0e", size = 8238419, upload-time = "2024-10-03T00:44:05.768Z" }, + { url = "https://files.pythonhosted.org/packages/a1/c5/c6dd58b132653af3139c87e92b484bad79264492a62d70fc5beda837a933/prophet-1.1.6-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c0bdf573b1d89b0c0e3dc09778816a35dece000f195b2f032ff0ff8076ae0d6a", size = 14656227, upload-time = "2024-10-03T00:44:08.009Z" }, + { url = "https://files.pythonhosted.org/packages/1f/47/f7d10a904756830efd8522700e582822ff44a15f839b464044ee4c53ee36/prophet-1.1.6-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5860990c7a6da33a4381a6adab1b35f7d2ed465eeeb364c3b0f663ff69a78eca", size = 14381384, upload-time = "2024-10-03T00:44:10.909Z" }, + { url = "https://files.pythonhosted.org/packages/12/ff/a04156f4ca3d18bd005c73f79e86e0684346fbc2aea856429c3e49f2828e/prophet-1.1.6-py3-none-win_amd64.whl", hash = "sha256:222ec247e60e0e62fa42572bba27bd82590c7f5225f36b41a3d1762ae2ed96fd", size = 13327596, upload-time = "2024-10-03T00:44:13.47Z" }, ] [[package]] name = "pycparser" version = "2.22" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/1d/b2/31537cf4b1ca988837256c910a668b553fceb8f069bedc4b1c826024b52c/pycparser-2.22.tar.gz", hash = "sha256:491c8be9c040f5390f5bf44a5b07752bd07f56edf992381b05c701439eec10f6", size = 172736 } +sdist = { url = "https://files.pythonhosted.org/packages/1d/b2/31537cf4b1ca988837256c910a668b553fceb8f069bedc4b1c826024b52c/pycparser-2.22.tar.gz", hash = "sha256:491c8be9c040f5390f5bf44a5b07752bd07f56edf992381b05c701439eec10f6", size = 172736, upload-time = "2024-03-30T13:22:22.564Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/13/a3/a812df4e2dd5696d1f351d58b8fe16a405b234ad2886a0dab9183fb78109/pycparser-2.22-py3-none-any.whl", hash = "sha256:c3702b6d3dd8c7abc1afa565d7e63d53a1d0bd86cdc24edd75470f4de499cfcc", size = 117552 }, + { url = "https://files.pythonhosted.org/packages/13/a3/a812df4e2dd5696d1f351d58b8fe16a405b234ad2886a0dab9183fb78109/pycparser-2.22-py3-none-any.whl", hash = "sha256:c3702b6d3dd8c7abc1afa565d7e63d53a1d0bd86cdc24edd75470f4de499cfcc", size = 117552, upload-time = "2024-03-30T13:22:20.476Z" }, ] [[package]] @@ -617,9 +649,9 @@ dependencies = [ { name = "typing-extensions" }, { name = "typing-inspection" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/93/a3/698b87a4d4d303d7c5f62ea5fbf7a79cab236ccfbd0a17847b7f77f8163e/pydantic-2.11.1.tar.gz", hash = "sha256:442557d2910e75c991c39f4b4ab18963d57b9b55122c8b2a9cd176d8c29ce968", size = 782817 } +sdist = { url = "https://files.pythonhosted.org/packages/93/a3/698b87a4d4d303d7c5f62ea5fbf7a79cab236ccfbd0a17847b7f77f8163e/pydantic-2.11.1.tar.gz", hash = "sha256:442557d2910e75c991c39f4b4ab18963d57b9b55122c8b2a9cd176d8c29ce968", size = 782817, upload-time = "2025-03-28T21:14:58.347Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/cc/12/f9221a949f2419e2e23847303c002476c26fbcfd62dc7f3d25d0bec5ca99/pydantic-2.11.1-py3-none-any.whl", hash = "sha256:5b6c415eee9f8123a14d859be0c84363fec6b1feb6b688d6435801230b56e0b8", size = 442648 }, + { url = "https://files.pythonhosted.org/packages/cc/12/f9221a949f2419e2e23847303c002476c26fbcfd62dc7f3d25d0bec5ca99/pydantic-2.11.1-py3-none-any.whl", hash = "sha256:5b6c415eee9f8123a14d859be0c84363fec6b1feb6b688d6435801230b56e0b8", size = 442648, upload-time = "2025-03-28T21:14:55.856Z" }, ] [[package]] @@ -629,25 +661,25 @@ source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "typing-extensions" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/b9/05/91ce14dfd5a3a99555fce436318cc0fd1f08c4daa32b3248ad63669ea8b4/pydantic_core-2.33.0.tar.gz", hash = "sha256:40eb8af662ba409c3cbf4a8150ad32ae73514cd7cb1f1a2113af39763dd616b3", size = 434080 } +sdist = { url = "https://files.pythonhosted.org/packages/b9/05/91ce14dfd5a3a99555fce436318cc0fd1f08c4daa32b3248ad63669ea8b4/pydantic_core-2.33.0.tar.gz", hash = "sha256:40eb8af662ba409c3cbf4a8150ad32ae73514cd7cb1f1a2113af39763dd616b3", size = 434080, upload-time = "2025-03-26T20:30:05.906Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/79/20/de2ad03ce8f5b3accf2196ea9b44f31b0cd16ac6e8cfc6b21976ed45ec35/pydantic_core-2.33.0-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:f00e8b59e1fc8f09d05594aa7d2b726f1b277ca6155fc84c0396db1b373c4555", size = 2032214 }, - { url = "https://files.pythonhosted.org/packages/f9/af/6817dfda9aac4958d8b516cbb94af507eb171c997ea66453d4d162ae8948/pydantic_core-2.33.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1a73be93ecef45786d7d95b0c5e9b294faf35629d03d5b145b09b81258c7cd6d", size = 1852338 }, - { url = "https://files.pythonhosted.org/packages/44/f3/49193a312d9c49314f2b953fb55740b7c530710977cabe7183b8ef111b7f/pydantic_core-2.33.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ff48a55be9da6930254565ff5238d71d5e9cd8c5487a191cb85df3bdb8c77365", size = 1896913 }, - { url = "https://files.pythonhosted.org/packages/06/e0/c746677825b2e29a2fa02122a8991c83cdd5b4c5f638f0664d4e35edd4b2/pydantic_core-2.33.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:26a4ea04195638dcd8c53dadb545d70badba51735b1594810e9768c2c0b4a5da", size = 1986046 }, - { url = "https://files.pythonhosted.org/packages/11/ec/44914e7ff78cef16afb5e5273d480c136725acd73d894affdbe2a1bbaad5/pydantic_core-2.33.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:41d698dcbe12b60661f0632b543dbb119e6ba088103b364ff65e951610cb7ce0", size = 2128097 }, - { url = "https://files.pythonhosted.org/packages/fe/f5/c6247d424d01f605ed2e3802f338691cae17137cee6484dce9f1ac0b872b/pydantic_core-2.33.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ae62032ef513fe6281ef0009e30838a01057b832dc265da32c10469622613885", size = 2681062 }, - { url = "https://files.pythonhosted.org/packages/f0/85/114a2113b126fdd7cf9a9443b1b1fe1b572e5bd259d50ba9d5d3e1927fa9/pydantic_core-2.33.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f225f3a3995dbbc26affc191d0443c6c4aa71b83358fd4c2b7d63e2f6f0336f9", size = 2007487 }, - { url = "https://files.pythonhosted.org/packages/e6/40/3c05ed28d225c7a9acd2b34c5c8010c279683a870219b97e9f164a5a8af0/pydantic_core-2.33.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:5bdd36b362f419c78d09630cbaebc64913f66f62bda6d42d5fbb08da8cc4f181", size = 2121382 }, - { url = "https://files.pythonhosted.org/packages/8a/22/e70c086f41eebd323e6baa92cc906c3f38ddce7486007eb2bdb3b11c8f64/pydantic_core-2.33.0-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:2a0147c0bef783fd9abc9f016d66edb6cac466dc54a17ec5f5ada08ff65caf5d", size = 2072473 }, - { url = "https://files.pythonhosted.org/packages/3e/84/d1614dedd8fe5114f6a0e348bcd1535f97d76c038d6102f271433cd1361d/pydantic_core-2.33.0-cp313-cp313-musllinux_1_1_armv7l.whl", hash = "sha256:c860773a0f205926172c6644c394e02c25421dc9a456deff16f64c0e299487d3", size = 2249468 }, - { url = "https://files.pythonhosted.org/packages/b0/c0/787061eef44135e00fddb4b56b387a06c303bfd3884a6df9bea5cb730230/pydantic_core-2.33.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:138d31e3f90087f42aa6286fb640f3c7a8eb7bdae829418265e7e7474bd2574b", size = 2254716 }, - { url = "https://files.pythonhosted.org/packages/ae/e2/27262eb04963201e89f9c280f1e10c493a7a37bc877e023f31aa72d2f911/pydantic_core-2.33.0-cp313-cp313-win32.whl", hash = "sha256:d20cbb9d3e95114325780f3cfe990f3ecae24de7a2d75f978783878cce2ad585", size = 1916450 }, - { url = "https://files.pythonhosted.org/packages/13/8d/25ff96f1e89b19e0b70b3cd607c9ea7ca27e1dcb810a9cd4255ed6abf869/pydantic_core-2.33.0-cp313-cp313-win_amd64.whl", hash = "sha256:ca1103d70306489e3d006b0f79db8ca5dd3c977f6f13b2c59ff745249431a606", size = 1956092 }, - { url = "https://files.pythonhosted.org/packages/1b/64/66a2efeff657b04323ffcd7b898cb0354d36dae3a561049e092134a83e9c/pydantic_core-2.33.0-cp313-cp313-win_arm64.whl", hash = "sha256:6291797cad239285275558e0a27872da735b05c75d5237bbade8736f80e4c225", size = 1908367 }, - { url = "https://files.pythonhosted.org/packages/52/54/295e38769133363d7ec4a5863a4d579f331728c71a6644ff1024ee529315/pydantic_core-2.33.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:7b79af799630af263eca9ec87db519426d8c9b3be35016eddad1832bac812d87", size = 1813331 }, - { url = "https://files.pythonhosted.org/packages/4c/9c/0c8ea02db8d682aa1ef48938abae833c1d69bdfa6e5ec13b21734b01ae70/pydantic_core-2.33.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eabf946a4739b5237f4f56d77fa6668263bc466d06a8036c055587c130a46f7b", size = 1986653 }, - { url = "https://files.pythonhosted.org/packages/8e/4f/3fb47d6cbc08c7e00f92300e64ba655428c05c56b8ab6723bd290bae6458/pydantic_core-2.33.0-cp313-cp313t-win_amd64.whl", hash = "sha256:8a1d581e8cdbb857b0e0e81df98603376c1a5c34dc5e54039dcc00f043df81e7", size = 1931234 }, + { url = "https://files.pythonhosted.org/packages/79/20/de2ad03ce8f5b3accf2196ea9b44f31b0cd16ac6e8cfc6b21976ed45ec35/pydantic_core-2.33.0-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:f00e8b59e1fc8f09d05594aa7d2b726f1b277ca6155fc84c0396db1b373c4555", size = 2032214, upload-time = "2025-03-26T20:27:56.197Z" }, + { url = "https://files.pythonhosted.org/packages/f9/af/6817dfda9aac4958d8b516cbb94af507eb171c997ea66453d4d162ae8948/pydantic_core-2.33.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1a73be93ecef45786d7d95b0c5e9b294faf35629d03d5b145b09b81258c7cd6d", size = 1852338, upload-time = "2025-03-26T20:27:57.876Z" }, + { url = "https://files.pythonhosted.org/packages/44/f3/49193a312d9c49314f2b953fb55740b7c530710977cabe7183b8ef111b7f/pydantic_core-2.33.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ff48a55be9da6930254565ff5238d71d5e9cd8c5487a191cb85df3bdb8c77365", size = 1896913, upload-time = "2025-03-26T20:27:59.719Z" }, + { url = "https://files.pythonhosted.org/packages/06/e0/c746677825b2e29a2fa02122a8991c83cdd5b4c5f638f0664d4e35edd4b2/pydantic_core-2.33.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:26a4ea04195638dcd8c53dadb545d70badba51735b1594810e9768c2c0b4a5da", size = 1986046, upload-time = "2025-03-26T20:28:01.583Z" }, + { url = "https://files.pythonhosted.org/packages/11/ec/44914e7ff78cef16afb5e5273d480c136725acd73d894affdbe2a1bbaad5/pydantic_core-2.33.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:41d698dcbe12b60661f0632b543dbb119e6ba088103b364ff65e951610cb7ce0", size = 2128097, upload-time = "2025-03-26T20:28:03.437Z" }, + { url = "https://files.pythonhosted.org/packages/fe/f5/c6247d424d01f605ed2e3802f338691cae17137cee6484dce9f1ac0b872b/pydantic_core-2.33.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ae62032ef513fe6281ef0009e30838a01057b832dc265da32c10469622613885", size = 2681062, upload-time = "2025-03-26T20:28:05.498Z" }, + { url = "https://files.pythonhosted.org/packages/f0/85/114a2113b126fdd7cf9a9443b1b1fe1b572e5bd259d50ba9d5d3e1927fa9/pydantic_core-2.33.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f225f3a3995dbbc26affc191d0443c6c4aa71b83358fd4c2b7d63e2f6f0336f9", size = 2007487, upload-time = "2025-03-26T20:28:07.879Z" }, + { url = "https://files.pythonhosted.org/packages/e6/40/3c05ed28d225c7a9acd2b34c5c8010c279683a870219b97e9f164a5a8af0/pydantic_core-2.33.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:5bdd36b362f419c78d09630cbaebc64913f66f62bda6d42d5fbb08da8cc4f181", size = 2121382, upload-time = "2025-03-26T20:28:09.651Z" }, + { url = "https://files.pythonhosted.org/packages/8a/22/e70c086f41eebd323e6baa92cc906c3f38ddce7486007eb2bdb3b11c8f64/pydantic_core-2.33.0-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:2a0147c0bef783fd9abc9f016d66edb6cac466dc54a17ec5f5ada08ff65caf5d", size = 2072473, upload-time = "2025-03-26T20:28:11.69Z" }, + { url = "https://files.pythonhosted.org/packages/3e/84/d1614dedd8fe5114f6a0e348bcd1535f97d76c038d6102f271433cd1361d/pydantic_core-2.33.0-cp313-cp313-musllinux_1_1_armv7l.whl", hash = "sha256:c860773a0f205926172c6644c394e02c25421dc9a456deff16f64c0e299487d3", size = 2249468, upload-time = "2025-03-26T20:28:13.651Z" }, + { url = "https://files.pythonhosted.org/packages/b0/c0/787061eef44135e00fddb4b56b387a06c303bfd3884a6df9bea5cb730230/pydantic_core-2.33.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:138d31e3f90087f42aa6286fb640f3c7a8eb7bdae829418265e7e7474bd2574b", size = 2254716, upload-time = "2025-03-26T20:28:16.105Z" }, + { url = "https://files.pythonhosted.org/packages/ae/e2/27262eb04963201e89f9c280f1e10c493a7a37bc877e023f31aa72d2f911/pydantic_core-2.33.0-cp313-cp313-win32.whl", hash = "sha256:d20cbb9d3e95114325780f3cfe990f3ecae24de7a2d75f978783878cce2ad585", size = 1916450, upload-time = "2025-03-26T20:28:18.252Z" }, + { url = "https://files.pythonhosted.org/packages/13/8d/25ff96f1e89b19e0b70b3cd607c9ea7ca27e1dcb810a9cd4255ed6abf869/pydantic_core-2.33.0-cp313-cp313-win_amd64.whl", hash = "sha256:ca1103d70306489e3d006b0f79db8ca5dd3c977f6f13b2c59ff745249431a606", size = 1956092, upload-time = "2025-03-26T20:28:20.129Z" }, + { url = "https://files.pythonhosted.org/packages/1b/64/66a2efeff657b04323ffcd7b898cb0354d36dae3a561049e092134a83e9c/pydantic_core-2.33.0-cp313-cp313-win_arm64.whl", hash = "sha256:6291797cad239285275558e0a27872da735b05c75d5237bbade8736f80e4c225", size = 1908367, upload-time = "2025-03-26T20:28:22.498Z" }, + { url = "https://files.pythonhosted.org/packages/52/54/295e38769133363d7ec4a5863a4d579f331728c71a6644ff1024ee529315/pydantic_core-2.33.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:7b79af799630af263eca9ec87db519426d8c9b3be35016eddad1832bac812d87", size = 1813331, upload-time = "2025-03-26T20:28:25.004Z" }, + { url = "https://files.pythonhosted.org/packages/4c/9c/0c8ea02db8d682aa1ef48938abae833c1d69bdfa6e5ec13b21734b01ae70/pydantic_core-2.33.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eabf946a4739b5237f4f56d77fa6668263bc466d06a8036c055587c130a46f7b", size = 1986653, upload-time = "2025-03-26T20:28:27.02Z" }, + { url = "https://files.pythonhosted.org/packages/8e/4f/3fb47d6cbc08c7e00f92300e64ba655428c05c56b8ab6723bd290bae6458/pydantic_core-2.33.0-cp313-cp313t-win_amd64.whl", hash = "sha256:8a1d581e8cdbb857b0e0e81df98603376c1a5c34dc5e54039dcc00f043df81e7", size = 1931234, upload-time = "2025-03-26T20:28:29.237Z" }, ] [[package]] @@ -658,36 +690,36 @@ dependencies = [ { name = "pydantic" }, { name = "python-dotenv" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/88/82/c79424d7d8c29b994fb01d277da57b0a9b09cc03c3ff875f9bd8a86b2145/pydantic_settings-2.8.1.tar.gz", hash = "sha256:d5c663dfbe9db9d5e1c646b2e161da12f0d734d422ee56f567d0ea2cee4e8585", size = 83550 } +sdist = { url = "https://files.pythonhosted.org/packages/88/82/c79424d7d8c29b994fb01d277da57b0a9b09cc03c3ff875f9bd8a86b2145/pydantic_settings-2.8.1.tar.gz", hash = "sha256:d5c663dfbe9db9d5e1c646b2e161da12f0d734d422ee56f567d0ea2cee4e8585", size = 83550, upload-time = "2025-02-27T10:10:32.338Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/0b/53/a64f03044927dc47aafe029c42a5b7aabc38dfb813475e0e1bf71c4a59d0/pydantic_settings-2.8.1-py3-none-any.whl", hash = "sha256:81942d5ac3d905f7f3ee1a70df5dfb62d5569c12f51a5a647defc1c3d9ee2e9c", size = 30839 }, + { url = "https://files.pythonhosted.org/packages/0b/53/a64f03044927dc47aafe029c42a5b7aabc38dfb813475e0e1bf71c4a59d0/pydantic_settings-2.8.1-py3-none-any.whl", hash = "sha256:81942d5ac3d905f7f3ee1a70df5dfb62d5569c12f51a5a647defc1c3d9ee2e9c", size = 30839, upload-time = "2025-02-27T10:10:30.711Z" }, ] [[package]] name = "pyjwt" version = "2.10.1" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/e7/46/bd74733ff231675599650d3e47f361794b22ef3e3770998dda30d3b63726/pyjwt-2.10.1.tar.gz", hash = "sha256:3cc5772eb20009233caf06e9d8a0577824723b44e6648ee0a2aedb6cf9381953", size = 87785 } +sdist = { url = "https://files.pythonhosted.org/packages/e7/46/bd74733ff231675599650d3e47f361794b22ef3e3770998dda30d3b63726/pyjwt-2.10.1.tar.gz", hash = "sha256:3cc5772eb20009233caf06e9d8a0577824723b44e6648ee0a2aedb6cf9381953", size = 87785, upload-time = "2024-11-28T03:43:29.933Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/61/ad/689f02752eeec26aed679477e80e632ef1b682313be70793d798c1d5fc8f/PyJWT-2.10.1-py3-none-any.whl", hash = "sha256:dcdd193e30abefd5debf142f9adfcdd2b58004e644f25406ffaebd50bd98dacb", size = 22997 }, + { url = "https://files.pythonhosted.org/packages/61/ad/689f02752eeec26aed679477e80e632ef1b682313be70793d798c1d5fc8f/PyJWT-2.10.1-py3-none-any.whl", hash = "sha256:dcdd193e30abefd5debf142f9adfcdd2b58004e644f25406ffaebd50bd98dacb", size = 22997, upload-time = "2024-11-28T03:43:27.893Z" }, ] [[package]] name = "pyparsing" version = "3.2.3" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/bb/22/f1129e69d94ffff626bdb5c835506b3a5b4f3d070f17ea295e12c2c6f60f/pyparsing-3.2.3.tar.gz", hash = "sha256:b9c13f1ab8b3b542f72e28f634bad4de758ab3ce4546e4301970ad6fa77c38be", size = 1088608 } +sdist = { url = "https://files.pythonhosted.org/packages/bb/22/f1129e69d94ffff626bdb5c835506b3a5b4f3d070f17ea295e12c2c6f60f/pyparsing-3.2.3.tar.gz", hash = "sha256:b9c13f1ab8b3b542f72e28f634bad4de758ab3ce4546e4301970ad6fa77c38be", size = 1088608, upload-time = "2025-03-25T05:01:28.114Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/05/e7/df2285f3d08fee213f2d041540fa4fc9ca6c2d44cf36d3a035bf2a8d2bcc/pyparsing-3.2.3-py3-none-any.whl", hash = "sha256:a749938e02d6fd0b59b356ca504a24982314bb090c383e3cf201c95ef7e2bfcf", size = 111120 }, + { url = "https://files.pythonhosted.org/packages/05/e7/df2285f3d08fee213f2d041540fa4fc9ca6c2d44cf36d3a035bf2a8d2bcc/pyparsing-3.2.3-py3-none-any.whl", hash = "sha256:a749938e02d6fd0b59b356ca504a24982314bb090c383e3cf201c95ef7e2bfcf", size = 111120, upload-time = "2025-03-25T05:01:24.908Z" }, ] [[package]] name = "pyproject-hooks" version = "1.2.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/e7/82/28175b2414effca1cdac8dc99f76d660e7a4fb0ceefa4b4ab8f5f6742925/pyproject_hooks-1.2.0.tar.gz", hash = "sha256:1e859bd5c40fae9448642dd871adf459e5e2084186e8d2c2a79a824c970da1f8", size = 19228 } +sdist = { url = "https://files.pythonhosted.org/packages/e7/82/28175b2414effca1cdac8dc99f76d660e7a4fb0ceefa4b4ab8f5f6742925/pyproject_hooks-1.2.0.tar.gz", hash = "sha256:1e859bd5c40fae9448642dd871adf459e5e2084186e8d2c2a79a824c970da1f8", size = 19228, upload-time = "2024-09-29T09:24:13.293Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/bd/24/12818598c362d7f300f18e74db45963dbcb85150324092410c8b49405e42/pyproject_hooks-1.2.0-py3-none-any.whl", hash = "sha256:9e5c6bfa8dcc30091c74b0cf803c81fdd29d94f01992a7707bc97babb1141913", size = 10216 }, + { url = "https://files.pythonhosted.org/packages/bd/24/12818598c362d7f300f18e74db45963dbcb85150324092410c8b49405e42/pyproject_hooks-1.2.0-py3-none-any.whl", hash = "sha256:9e5c6bfa8dcc30091c74b0cf803c81fdd29d94f01992a7707bc97babb1141913", size = 10216, upload-time = "2024-09-29T09:24:11.978Z" }, ] [[package]] @@ -700,9 +732,9 @@ dependencies = [ { name = "packaging" }, { name = "pluggy" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/ae/3c/c9d525a414d506893f0cd8a8d0de7706446213181570cdbd766691164e40/pytest-8.3.5.tar.gz", hash = "sha256:f4efe70cc14e511565ac476b57c279e12a855b11f48f212af1080ef2263d3845", size = 1450891 } +sdist = { url = "https://files.pythonhosted.org/packages/ae/3c/c9d525a414d506893f0cd8a8d0de7706446213181570cdbd766691164e40/pytest-8.3.5.tar.gz", hash = "sha256:f4efe70cc14e511565ac476b57c279e12a855b11f48f212af1080ef2263d3845", size = 1450891, upload-time = "2025-03-02T12:54:54.503Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/30/3d/64ad57c803f1fa1e963a7946b6e0fea4a70df53c1a7fed304586539c2bac/pytest-8.3.5-py3-none-any.whl", hash = "sha256:c69214aa47deac29fad6c2a4f590b9c4a9fdb16a403176fe154b79c0b4d4d820", size = 343634 }, + { url = "https://files.pythonhosted.org/packages/30/3d/64ad57c803f1fa1e963a7946b6e0fea4a70df53c1a7fed304586539c2bac/pytest-8.3.5-py3-none-any.whl", hash = "sha256:c69214aa47deac29fad6c2a4f590b9c4a9fdb16a403176fe154b79c0b4d4d820", size = 343634, upload-time = "2025-03-02T12:54:52.069Z" }, ] [[package]] @@ -713,9 +745,9 @@ dependencies = [ { name = "coverage" }, { name = "pytest" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/be/45/9b538de8cef30e17c7b45ef42f538a94889ed6a16f2387a6c89e73220651/pytest-cov-6.0.0.tar.gz", hash = "sha256:fde0b595ca248bb8e2d76f020b465f3b107c9632e6a1d1705f17834c89dcadc0", size = 66945 } +sdist = { url = "https://files.pythonhosted.org/packages/be/45/9b538de8cef30e17c7b45ef42f538a94889ed6a16f2387a6c89e73220651/pytest-cov-6.0.0.tar.gz", hash = "sha256:fde0b595ca248bb8e2d76f020b465f3b107c9632e6a1d1705f17834c89dcadc0", size = 66945, upload-time = "2024-10-29T20:13:35.363Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/36/3b/48e79f2cd6a61dbbd4807b4ed46cb564b4fd50a76166b1c4ea5c1d9e2371/pytest_cov-6.0.0-py3-none-any.whl", hash = "sha256:eee6f1b9e61008bd34975a4d5bab25801eb31898b032dd55addc93e96fcaaa35", size = 22949 }, + { url = "https://files.pythonhosted.org/packages/36/3b/48e79f2cd6a61dbbd4807b4ed46cb564b4fd50a76166b1c4ea5c1d9e2371/pytest_cov-6.0.0-py3-none-any.whl", hash = "sha256:eee6f1b9e61008bd34975a4d5bab25801eb31898b032dd55addc93e96fcaaa35", size = 22949, upload-time = "2024-10-29T20:13:33.215Z" }, ] [[package]] @@ -725,44 +757,44 @@ source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "six" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/66/c0/0c8b6ad9f17a802ee498c46e004a0eb49bc148f2fd230864601a86dcf6db/python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3", size = 342432 } +sdist = { url = "https://files.pythonhosted.org/packages/66/c0/0c8b6ad9f17a802ee498c46e004a0eb49bc148f2fd230864601a86dcf6db/python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3", size = 342432, upload-time = "2024-03-01T18:36:20.211Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427", size = 229892 }, + { url = "https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427", size = 229892, upload-time = "2024-03-01T18:36:18.57Z" }, ] [[package]] name = "python-dotenv" version = "1.1.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/88/2c/7bb1416c5620485aa793f2de31d3df393d3686aa8a8506d11e10e13c5baf/python_dotenv-1.1.0.tar.gz", hash = "sha256:41f90bc6f5f177fb41f53e87666db362025010eb28f60a01c9143bfa33a2b2d5", size = 39920 } +sdist = { url = "https://files.pythonhosted.org/packages/88/2c/7bb1416c5620485aa793f2de31d3df393d3686aa8a8506d11e10e13c5baf/python_dotenv-1.1.0.tar.gz", hash = "sha256:41f90bc6f5f177fb41f53e87666db362025010eb28f60a01c9143bfa33a2b2d5", size = 39920, upload-time = "2025-03-25T10:14:56.835Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/1e/18/98a99ad95133c6a6e2005fe89faedf294a748bd5dc803008059409ac9b1e/python_dotenv-1.1.0-py3-none-any.whl", hash = "sha256:d7c01d9e2293916c18baf562d95698754b0dbbb5e74d457c45d4f6561fb9d55d", size = 20256 }, + { url = "https://files.pythonhosted.org/packages/1e/18/98a99ad95133c6a6e2005fe89faedf294a748bd5dc803008059409ac9b1e/python_dotenv-1.1.0-py3-none-any.whl", hash = "sha256:d7c01d9e2293916c18baf562d95698754b0dbbb5e74d457c45d4f6561fb9d55d", size = 20256, upload-time = "2025-03-25T10:14:55.034Z" }, ] [[package]] name = "pytz" version = "2025.2" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/f8/bf/abbd3cdfb8fbc7fb3d4d38d320f2441b1e7cbe29be4f23797b4a2b5d8aac/pytz-2025.2.tar.gz", hash = "sha256:360b9e3dbb49a209c21ad61809c7fb453643e048b38924c765813546746e81c3", size = 320884 } +sdist = { url = "https://files.pythonhosted.org/packages/f8/bf/abbd3cdfb8fbc7fb3d4d38d320f2441b1e7cbe29be4f23797b4a2b5d8aac/pytz-2025.2.tar.gz", hash = "sha256:360b9e3dbb49a209c21ad61809c7fb453643e048b38924c765813546746e81c3", size = 320884, upload-time = "2025-03-25T02:25:00.538Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/81/c4/34e93fe5f5429d7570ec1fa436f1986fb1f00c3e0f43a589fe2bbcd22c3f/pytz-2025.2-py2.py3-none-any.whl", hash = "sha256:5ddf76296dd8c44c26eb8f4b6f35488f3ccbf6fbbd7adee0b7262d43f0ec2f00", size = 509225 }, + { url = "https://files.pythonhosted.org/packages/81/c4/34e93fe5f5429d7570ec1fa436f1986fb1f00c3e0f43a589fe2bbcd22c3f/pytz-2025.2-py2.py3-none-any.whl", hash = "sha256:5ddf76296dd8c44c26eb8f4b6f35488f3ccbf6fbbd7adee0b7262d43f0ec2f00", size = 509225, upload-time = "2025-03-25T02:24:58.468Z" }, ] [[package]] name = "pyyaml" version = "6.0.2" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/54/ed/79a089b6be93607fa5cdaedf301d7dfb23af5f25c398d5ead2525b063e17/pyyaml-6.0.2.tar.gz", hash = "sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e", size = 130631 } +sdist = { url = "https://files.pythonhosted.org/packages/54/ed/79a089b6be93607fa5cdaedf301d7dfb23af5f25c398d5ead2525b063e17/pyyaml-6.0.2.tar.gz", hash = "sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e", size = 130631, upload-time = "2024-08-06T20:33:50.674Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/ef/e3/3af305b830494fa85d95f6d95ef7fa73f2ee1cc8ef5b495c7c3269fb835f/PyYAML-6.0.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:efdca5630322a10774e8e98e1af481aad470dd62c3170801852d752aa7a783ba", size = 181309 }, - { url = "https://files.pythonhosted.org/packages/45/9f/3b1c20a0b7a3200524eb0076cc027a970d320bd3a6592873c85c92a08731/PyYAML-6.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:50187695423ffe49e2deacb8cd10510bc361faac997de9efef88badc3bb9e2d1", size = 171679 }, - { url = "https://files.pythonhosted.org/packages/7c/9a/337322f27005c33bcb656c655fa78325b730324c78620e8328ae28b64d0c/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ffe8360bab4910ef1b9e87fb812d8bc0a308b0d0eef8c8f44e0254ab3b07133", size = 733428 }, - { url = "https://files.pythonhosted.org/packages/a3/69/864fbe19e6c18ea3cc196cbe5d392175b4cf3d5d0ac1403ec3f2d237ebb5/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:17e311b6c678207928d649faa7cb0d7b4c26a0ba73d41e99c4fff6b6c3276484", size = 763361 }, - { url = "https://files.pythonhosted.org/packages/04/24/b7721e4845c2f162d26f50521b825fb061bc0a5afcf9a386840f23ea19fa/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:70b189594dbe54f75ab3a1acec5f1e3faa7e8cf2f1e08d9b561cb41b845f69d5", size = 759523 }, - { url = "https://files.pythonhosted.org/packages/2b/b2/e3234f59ba06559c6ff63c4e10baea10e5e7df868092bf9ab40e5b9c56b6/PyYAML-6.0.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:41e4e3953a79407c794916fa277a82531dd93aad34e29c2a514c2c0c5fe971cc", size = 726660 }, - { url = "https://files.pythonhosted.org/packages/fe/0f/25911a9f080464c59fab9027482f822b86bf0608957a5fcc6eaac85aa515/PyYAML-6.0.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:68ccc6023a3400877818152ad9a1033e3db8625d899c72eacb5a668902e4d652", size = 751597 }, - { url = "https://files.pythonhosted.org/packages/14/0d/e2c3b43bbce3cf6bd97c840b46088a3031085179e596d4929729d8d68270/PyYAML-6.0.2-cp313-cp313-win32.whl", hash = "sha256:bc2fa7c6b47d6bc618dd7fb02ef6fdedb1090ec036abab80d4681424b84c1183", size = 140527 }, - { url = "https://files.pythonhosted.org/packages/fa/de/02b54f42487e3d3c6efb3f89428677074ca7bf43aae402517bc7cca949f3/PyYAML-6.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563", size = 156446 }, + { url = "https://files.pythonhosted.org/packages/ef/e3/3af305b830494fa85d95f6d95ef7fa73f2ee1cc8ef5b495c7c3269fb835f/PyYAML-6.0.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:efdca5630322a10774e8e98e1af481aad470dd62c3170801852d752aa7a783ba", size = 181309, upload-time = "2024-08-06T20:32:43.4Z" }, + { url = "https://files.pythonhosted.org/packages/45/9f/3b1c20a0b7a3200524eb0076cc027a970d320bd3a6592873c85c92a08731/PyYAML-6.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:50187695423ffe49e2deacb8cd10510bc361faac997de9efef88badc3bb9e2d1", size = 171679, upload-time = "2024-08-06T20:32:44.801Z" }, + { url = "https://files.pythonhosted.org/packages/7c/9a/337322f27005c33bcb656c655fa78325b730324c78620e8328ae28b64d0c/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ffe8360bab4910ef1b9e87fb812d8bc0a308b0d0eef8c8f44e0254ab3b07133", size = 733428, upload-time = "2024-08-06T20:32:46.432Z" }, + { url = "https://files.pythonhosted.org/packages/a3/69/864fbe19e6c18ea3cc196cbe5d392175b4cf3d5d0ac1403ec3f2d237ebb5/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:17e311b6c678207928d649faa7cb0d7b4c26a0ba73d41e99c4fff6b6c3276484", size = 763361, upload-time = "2024-08-06T20:32:51.188Z" }, + { url = "https://files.pythonhosted.org/packages/04/24/b7721e4845c2f162d26f50521b825fb061bc0a5afcf9a386840f23ea19fa/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:70b189594dbe54f75ab3a1acec5f1e3faa7e8cf2f1e08d9b561cb41b845f69d5", size = 759523, upload-time = "2024-08-06T20:32:53.019Z" }, + { url = "https://files.pythonhosted.org/packages/2b/b2/e3234f59ba06559c6ff63c4e10baea10e5e7df868092bf9ab40e5b9c56b6/PyYAML-6.0.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:41e4e3953a79407c794916fa277a82531dd93aad34e29c2a514c2c0c5fe971cc", size = 726660, upload-time = "2024-08-06T20:32:54.708Z" }, + { url = "https://files.pythonhosted.org/packages/fe/0f/25911a9f080464c59fab9027482f822b86bf0608957a5fcc6eaac85aa515/PyYAML-6.0.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:68ccc6023a3400877818152ad9a1033e3db8625d899c72eacb5a668902e4d652", size = 751597, upload-time = "2024-08-06T20:32:56.985Z" }, + { url = "https://files.pythonhosted.org/packages/14/0d/e2c3b43bbce3cf6bd97c840b46088a3031085179e596d4929729d8d68270/PyYAML-6.0.2-cp313-cp313-win32.whl", hash = "sha256:bc2fa7c6b47d6bc618dd7fb02ef6fdedb1090ec036abab80d4681424b84c1183", size = 140527, upload-time = "2024-08-06T20:33:03.001Z" }, + { url = "https://files.pythonhosted.org/packages/fa/de/02b54f42487e3d3c6efb3f89428677074ca7bf43aae402517bc7cca949f3/PyYAML-6.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563", size = 156446, upload-time = "2024-08-06T20:33:04.33Z" }, ] [[package]] @@ -772,27 +804,27 @@ source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "cffi", marker = "implementation_name == 'pypy'" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/b1/11/b9213d25230ac18a71b39b3723494e57adebe36e066397b961657b3b41c1/pyzmq-26.4.0.tar.gz", hash = "sha256:4bd13f85f80962f91a651a7356fe0472791a5f7a92f227822b5acf44795c626d", size = 278293 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/d7/20/fb2c92542488db70f833b92893769a569458311a76474bda89dc4264bd18/pyzmq-26.4.0-cp313-cp313-macosx_10_15_universal2.whl", hash = "sha256:c43fac689880f5174d6fc864857d1247fe5cfa22b09ed058a344ca92bf5301e3", size = 1339484 }, - { url = "https://files.pythonhosted.org/packages/58/29/2f06b9cabda3a6ea2c10f43e67ded3e47fc25c54822e2506dfb8325155d4/pyzmq-26.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:902aca7eba477657c5fb81c808318460328758e8367ecdd1964b6330c73cae43", size = 666106 }, - { url = "https://files.pythonhosted.org/packages/77/e4/dcf62bd29e5e190bd21bfccaa4f3386e01bf40d948c239239c2f1e726729/pyzmq-26.4.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e5e48a830bfd152fe17fbdeaf99ac5271aa4122521bf0d275b6b24e52ef35eb6", size = 902056 }, - { url = "https://files.pythonhosted.org/packages/1a/cf/b36b3d7aea236087d20189bec1a87eeb2b66009731d7055e5c65f845cdba/pyzmq-26.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:31be2b6de98c824c06f5574331f805707c667dc8f60cb18580b7de078479891e", size = 860148 }, - { url = "https://files.pythonhosted.org/packages/18/a6/f048826bc87528c208e90604c3bf573801e54bd91e390cbd2dfa860e82dc/pyzmq-26.4.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:6332452034be001bbf3206ac59c0d2a7713de5f25bb38b06519fc6967b7cf771", size = 855983 }, - { url = "https://files.pythonhosted.org/packages/0a/27/454d34ab6a1d9772a36add22f17f6b85baf7c16e14325fa29e7202ca8ee8/pyzmq-26.4.0-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:da8c0f5dd352136853e6a09b1b986ee5278dfddfebd30515e16eae425c872b30", size = 1197274 }, - { url = "https://files.pythonhosted.org/packages/f4/3d/7abfeab6b83ad38aa34cbd57c6fc29752c391e3954fd12848bd8d2ec0df6/pyzmq-26.4.0-cp313-cp313-musllinux_1_1_i686.whl", hash = "sha256:f4ccc1a0a2c9806dda2a2dd118a3b7b681e448f3bb354056cad44a65169f6d86", size = 1507120 }, - { url = "https://files.pythonhosted.org/packages/13/ff/bc8d21dbb9bc8705126e875438a1969c4f77e03fc8565d6901c7933a3d01/pyzmq-26.4.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:1c0b5fceadbab461578daf8d1dcc918ebe7ddd2952f748cf30c7cf2de5d51101", size = 1406738 }, - { url = "https://files.pythonhosted.org/packages/f5/5d/d4cd85b24de71d84d81229e3bbb13392b2698432cf8fdcea5afda253d587/pyzmq-26.4.0-cp313-cp313-win32.whl", hash = "sha256:28e2b0ff5ba4b3dd11062d905682bad33385cfa3cc03e81abd7f0822263e6637", size = 577826 }, - { url = "https://files.pythonhosted.org/packages/c6/6c/f289c1789d7bb6e5a3b3bef7b2a55089b8561d17132be7d960d3ff33b14e/pyzmq-26.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:23ecc9d241004c10e8b4f49d12ac064cd7000e1643343944a10df98e57bc544b", size = 640406 }, - { url = "https://files.pythonhosted.org/packages/b3/99/676b8851cb955eb5236a0c1e9ec679ea5ede092bf8bf2c8a68d7e965cac3/pyzmq-26.4.0-cp313-cp313-win_arm64.whl", hash = "sha256:1edb0385c7f025045d6e0f759d4d3afe43c17a3d898914ec6582e6f464203c08", size = 556216 }, - { url = "https://files.pythonhosted.org/packages/65/c2/1fac340de9d7df71efc59d9c50fc7a635a77b103392d1842898dd023afcb/pyzmq-26.4.0-cp313-cp313t-macosx_10_15_universal2.whl", hash = "sha256:93a29e882b2ba1db86ba5dd5e88e18e0ac6b627026c5cfbec9983422011b82d4", size = 1333769 }, - { url = "https://files.pythonhosted.org/packages/5c/c7/6c03637e8d742c3b00bec4f5e4cd9d1c01b2f3694c6f140742e93ca637ed/pyzmq-26.4.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb45684f276f57110bb89e4300c00f1233ca631f08f5f42528a5c408a79efc4a", size = 658826 }, - { url = "https://files.pythonhosted.org/packages/a5/97/a8dca65913c0f78e0545af2bb5078aebfc142ca7d91cdaffa1fbc73e5dbd/pyzmq-26.4.0-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f72073e75260cb301aad4258ad6150fa7f57c719b3f498cb91e31df16784d89b", size = 891650 }, - { url = "https://files.pythonhosted.org/packages/7d/7e/f63af1031eb060bf02d033732b910fe48548dcfdbe9c785e9f74a6cc6ae4/pyzmq-26.4.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:be37e24b13026cfedd233bcbbccd8c0bcd2fdd186216094d095f60076201538d", size = 849776 }, - { url = "https://files.pythonhosted.org/packages/f6/fa/1a009ce582802a895c0d5fe9413f029c940a0a8ee828657a3bb0acffd88b/pyzmq-26.4.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:237b283044934d26f1eeff4075f751b05d2f3ed42a257fc44386d00df6a270cf", size = 842516 }, - { url = "https://files.pythonhosted.org/packages/6e/bc/f88b0bad0f7a7f500547d71e99f10336f2314e525d4ebf576a1ea4a1d903/pyzmq-26.4.0-cp313-cp313t-musllinux_1_1_aarch64.whl", hash = "sha256:b30f862f6768b17040929a68432c8a8be77780317f45a353cb17e423127d250c", size = 1189183 }, - { url = "https://files.pythonhosted.org/packages/d9/8c/db446a3dd9cf894406dec2e61eeffaa3c07c3abb783deaebb9812c4af6a5/pyzmq-26.4.0-cp313-cp313t-musllinux_1_1_i686.whl", hash = "sha256:c80fcd3504232f13617c6ab501124d373e4895424e65de8b72042333316f64a8", size = 1495501 }, - { url = "https://files.pythonhosted.org/packages/05/4c/bf3cad0d64c3214ac881299c4562b815f05d503bccc513e3fd4fdc6f67e4/pyzmq-26.4.0-cp313-cp313t-musllinux_1_1_x86_64.whl", hash = "sha256:26a2a7451606b87f67cdeca2c2789d86f605da08b4bd616b1a9981605ca3a364", size = 1395540 }, +sdist = { url = "https://files.pythonhosted.org/packages/b1/11/b9213d25230ac18a71b39b3723494e57adebe36e066397b961657b3b41c1/pyzmq-26.4.0.tar.gz", hash = "sha256:4bd13f85f80962f91a651a7356fe0472791a5f7a92f227822b5acf44795c626d", size = 278293, upload-time = "2025-04-04T12:05:44.049Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d7/20/fb2c92542488db70f833b92893769a569458311a76474bda89dc4264bd18/pyzmq-26.4.0-cp313-cp313-macosx_10_15_universal2.whl", hash = "sha256:c43fac689880f5174d6fc864857d1247fe5cfa22b09ed058a344ca92bf5301e3", size = 1339484, upload-time = "2025-04-04T12:04:00.671Z" }, + { url = "https://files.pythonhosted.org/packages/58/29/2f06b9cabda3a6ea2c10f43e67ded3e47fc25c54822e2506dfb8325155d4/pyzmq-26.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:902aca7eba477657c5fb81c808318460328758e8367ecdd1964b6330c73cae43", size = 666106, upload-time = "2025-04-04T12:04:02.366Z" }, + { url = "https://files.pythonhosted.org/packages/77/e4/dcf62bd29e5e190bd21bfccaa4f3386e01bf40d948c239239c2f1e726729/pyzmq-26.4.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e5e48a830bfd152fe17fbdeaf99ac5271aa4122521bf0d275b6b24e52ef35eb6", size = 902056, upload-time = "2025-04-04T12:04:03.919Z" }, + { url = "https://files.pythonhosted.org/packages/1a/cf/b36b3d7aea236087d20189bec1a87eeb2b66009731d7055e5c65f845cdba/pyzmq-26.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:31be2b6de98c824c06f5574331f805707c667dc8f60cb18580b7de078479891e", size = 860148, upload-time = "2025-04-04T12:04:05.581Z" }, + { url = "https://files.pythonhosted.org/packages/18/a6/f048826bc87528c208e90604c3bf573801e54bd91e390cbd2dfa860e82dc/pyzmq-26.4.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:6332452034be001bbf3206ac59c0d2a7713de5f25bb38b06519fc6967b7cf771", size = 855983, upload-time = "2025-04-04T12:04:07.096Z" }, + { url = "https://files.pythonhosted.org/packages/0a/27/454d34ab6a1d9772a36add22f17f6b85baf7c16e14325fa29e7202ca8ee8/pyzmq-26.4.0-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:da8c0f5dd352136853e6a09b1b986ee5278dfddfebd30515e16eae425c872b30", size = 1197274, upload-time = "2025-04-04T12:04:08.523Z" }, + { url = "https://files.pythonhosted.org/packages/f4/3d/7abfeab6b83ad38aa34cbd57c6fc29752c391e3954fd12848bd8d2ec0df6/pyzmq-26.4.0-cp313-cp313-musllinux_1_1_i686.whl", hash = "sha256:f4ccc1a0a2c9806dda2a2dd118a3b7b681e448f3bb354056cad44a65169f6d86", size = 1507120, upload-time = "2025-04-04T12:04:10.58Z" }, + { url = "https://files.pythonhosted.org/packages/13/ff/bc8d21dbb9bc8705126e875438a1969c4f77e03fc8565d6901c7933a3d01/pyzmq-26.4.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:1c0b5fceadbab461578daf8d1dcc918ebe7ddd2952f748cf30c7cf2de5d51101", size = 1406738, upload-time = "2025-04-04T12:04:12.509Z" }, + { url = "https://files.pythonhosted.org/packages/f5/5d/d4cd85b24de71d84d81229e3bbb13392b2698432cf8fdcea5afda253d587/pyzmq-26.4.0-cp313-cp313-win32.whl", hash = "sha256:28e2b0ff5ba4b3dd11062d905682bad33385cfa3cc03e81abd7f0822263e6637", size = 577826, upload-time = "2025-04-04T12:04:14.289Z" }, + { url = "https://files.pythonhosted.org/packages/c6/6c/f289c1789d7bb6e5a3b3bef7b2a55089b8561d17132be7d960d3ff33b14e/pyzmq-26.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:23ecc9d241004c10e8b4f49d12ac064cd7000e1643343944a10df98e57bc544b", size = 640406, upload-time = "2025-04-04T12:04:15.757Z" }, + { url = "https://files.pythonhosted.org/packages/b3/99/676b8851cb955eb5236a0c1e9ec679ea5ede092bf8bf2c8a68d7e965cac3/pyzmq-26.4.0-cp313-cp313-win_arm64.whl", hash = "sha256:1edb0385c7f025045d6e0f759d4d3afe43c17a3d898914ec6582e6f464203c08", size = 556216, upload-time = "2025-04-04T12:04:17.212Z" }, + { url = "https://files.pythonhosted.org/packages/65/c2/1fac340de9d7df71efc59d9c50fc7a635a77b103392d1842898dd023afcb/pyzmq-26.4.0-cp313-cp313t-macosx_10_15_universal2.whl", hash = "sha256:93a29e882b2ba1db86ba5dd5e88e18e0ac6b627026c5cfbec9983422011b82d4", size = 1333769, upload-time = "2025-04-04T12:04:18.665Z" }, + { url = "https://files.pythonhosted.org/packages/5c/c7/6c03637e8d742c3b00bec4f5e4cd9d1c01b2f3694c6f140742e93ca637ed/pyzmq-26.4.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb45684f276f57110bb89e4300c00f1233ca631f08f5f42528a5c408a79efc4a", size = 658826, upload-time = "2025-04-04T12:04:20.405Z" }, + { url = "https://files.pythonhosted.org/packages/a5/97/a8dca65913c0f78e0545af2bb5078aebfc142ca7d91cdaffa1fbc73e5dbd/pyzmq-26.4.0-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f72073e75260cb301aad4258ad6150fa7f57c719b3f498cb91e31df16784d89b", size = 891650, upload-time = "2025-04-04T12:04:22.413Z" }, + { url = "https://files.pythonhosted.org/packages/7d/7e/f63af1031eb060bf02d033732b910fe48548dcfdbe9c785e9f74a6cc6ae4/pyzmq-26.4.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:be37e24b13026cfedd233bcbbccd8c0bcd2fdd186216094d095f60076201538d", size = 849776, upload-time = "2025-04-04T12:04:23.959Z" }, + { url = "https://files.pythonhosted.org/packages/f6/fa/1a009ce582802a895c0d5fe9413f029c940a0a8ee828657a3bb0acffd88b/pyzmq-26.4.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:237b283044934d26f1eeff4075f751b05d2f3ed42a257fc44386d00df6a270cf", size = 842516, upload-time = "2025-04-04T12:04:25.449Z" }, + { url = "https://files.pythonhosted.org/packages/6e/bc/f88b0bad0f7a7f500547d71e99f10336f2314e525d4ebf576a1ea4a1d903/pyzmq-26.4.0-cp313-cp313t-musllinux_1_1_aarch64.whl", hash = "sha256:b30f862f6768b17040929a68432c8a8be77780317f45a353cb17e423127d250c", size = 1189183, upload-time = "2025-04-04T12:04:27.035Z" }, + { url = "https://files.pythonhosted.org/packages/d9/8c/db446a3dd9cf894406dec2e61eeffaa3c07c3abb783deaebb9812c4af6a5/pyzmq-26.4.0-cp313-cp313t-musllinux_1_1_i686.whl", hash = "sha256:c80fcd3504232f13617c6ab501124d373e4895424e65de8b72042333316f64a8", size = 1495501, upload-time = "2025-04-04T12:04:28.833Z" }, + { url = "https://files.pythonhosted.org/packages/05/4c/bf3cad0d64c3214ac881299c4562b815f05d503bccc513e3fd4fdc6f67e4/pyzmq-26.4.0-cp313-cp313t-musllinux_1_1_x86_64.whl", hash = "sha256:26a2a7451606b87f67cdeca2c2789d86f605da08b4bd616b1a9981605ca3a364", size = 1395540, upload-time = "2025-04-04T12:04:30.562Z" }, ] [[package]] @@ -802,34 +834,114 @@ source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "httpx" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/f4/7c/96bd0bc759cf009675ad1ee1f96535edcb11e9666b985717eb8c87192a95/respx-0.22.0.tar.gz", hash = "sha256:3c8924caa2a50bd71aefc07aa812f2466ff489f1848c96e954a5362d17095d91", size = 28439 } +sdist = { url = "https://files.pythonhosted.org/packages/f4/7c/96bd0bc759cf009675ad1ee1f96535edcb11e9666b985717eb8c87192a95/respx-0.22.0.tar.gz", hash = "sha256:3c8924caa2a50bd71aefc07aa812f2466ff489f1848c96e954a5362d17095d91", size = 28439, upload-time = "2024-12-19T22:33:59.374Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/8e/67/afbb0978d5399bc9ea200f1d4489a23c9a1dad4eee6376242b8182389c79/respx-0.22.0-py2.py3-none-any.whl", hash = "sha256:631128d4c9aba15e56903fb5f66fb1eff412ce28dd387ca3a81339e52dbd3ad0", size = 25127 }, + { url = "https://files.pythonhosted.org/packages/8e/67/afbb0978d5399bc9ea200f1d4489a23c9a1dad4eee6376242b8182389c79/respx-0.22.0-py2.py3-none-any.whl", hash = "sha256:631128d4c9aba15e56903fb5f66fb1eff412ce28dd387ca3a81339e52dbd3ad0", size = 25127, upload-time = "2024-12-19T22:33:57.837Z" }, ] [[package]] name = "ruff" version = "0.11.2" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/90/61/fb87430f040e4e577e784e325351186976516faef17d6fcd921fe28edfd7/ruff-0.11.2.tar.gz", hash = "sha256:ec47591497d5a1050175bdf4e1a4e6272cddff7da88a2ad595e1e326041d8d94", size = 3857511 } +sdist = { url = "https://files.pythonhosted.org/packages/90/61/fb87430f040e4e577e784e325351186976516faef17d6fcd921fe28edfd7/ruff-0.11.2.tar.gz", hash = "sha256:ec47591497d5a1050175bdf4e1a4e6272cddff7da88a2ad595e1e326041d8d94", size = 3857511, upload-time = "2025-03-21T13:31:17.419Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/62/99/102578506f0f5fa29fd7e0df0a273864f79af044757aef73d1cae0afe6ad/ruff-0.11.2-py3-none-linux_armv6l.whl", hash = "sha256:c69e20ea49e973f3afec2c06376eb56045709f0212615c1adb0eda35e8a4e477", size = 10113146, upload-time = "2025-03-21T13:30:26.68Z" }, + { url = "https://files.pythonhosted.org/packages/74/ad/5cd4ba58ab602a579997a8494b96f10f316e874d7c435bcc1a92e6da1b12/ruff-0.11.2-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:2c5424cc1c4eb1d8ecabe6d4f1b70470b4f24a0c0171356290b1953ad8f0e272", size = 10867092, upload-time = "2025-03-21T13:30:37.949Z" }, + { url = "https://files.pythonhosted.org/packages/fc/3e/d3f13619e1d152c7b600a38c1a035e833e794c6625c9a6cea6f63dbf3af4/ruff-0.11.2-py3-none-macosx_11_0_arm64.whl", hash = "sha256:ecf20854cc73f42171eedb66f006a43d0a21bfb98a2523a809931cda569552d9", size = 10224082, upload-time = "2025-03-21T13:30:39.962Z" }, + { url = "https://files.pythonhosted.org/packages/90/06/f77b3d790d24a93f38e3806216f263974909888fd1e826717c3ec956bbcd/ruff-0.11.2-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0c543bf65d5d27240321604cee0633a70c6c25c9a2f2492efa9f6d4b8e4199bb", size = 10394818, upload-time = "2025-03-21T13:30:42.551Z" }, + { url = "https://files.pythonhosted.org/packages/99/7f/78aa431d3ddebfc2418cd95b786642557ba8b3cb578c075239da9ce97ff9/ruff-0.11.2-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:20967168cc21195db5830b9224be0e964cc9c8ecf3b5a9e3ce19876e8d3a96e3", size = 9952251, upload-time = "2025-03-21T13:30:45.196Z" }, + { url = "https://files.pythonhosted.org/packages/30/3e/f11186d1ddfaca438c3bbff73c6a2fdb5b60e6450cc466129c694b0ab7a2/ruff-0.11.2-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:955a9ce63483999d9f0b8f0b4a3ad669e53484232853054cc8b9d51ab4c5de74", size = 11563566, upload-time = "2025-03-21T13:30:47.516Z" }, + { url = "https://files.pythonhosted.org/packages/22/6c/6ca91befbc0a6539ee133d9a9ce60b1a354db12c3c5d11cfdbf77140f851/ruff-0.11.2-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:86b3a27c38b8fce73bcd262b0de32e9a6801b76d52cdb3ae4c914515f0cef608", size = 12208721, upload-time = "2025-03-21T13:30:49.56Z" }, + { url = "https://files.pythonhosted.org/packages/19/b0/24516a3b850d55b17c03fc399b681c6a549d06ce665915721dc5d6458a5c/ruff-0.11.2-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a3b66a03b248c9fcd9d64d445bafdf1589326bee6fc5c8e92d7562e58883e30f", size = 11662274, upload-time = "2025-03-21T13:30:52.055Z" }, + { url = "https://files.pythonhosted.org/packages/d7/65/76be06d28ecb7c6070280cef2bcb20c98fbf99ff60b1c57d2fb9b8771348/ruff-0.11.2-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0397c2672db015be5aa3d4dac54c69aa012429097ff219392c018e21f5085147", size = 13792284, upload-time = "2025-03-21T13:30:54.24Z" }, + { url = "https://files.pythonhosted.org/packages/ce/d2/4ceed7147e05852876f3b5f3fdc23f878ce2b7e0b90dd6e698bda3d20787/ruff-0.11.2-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:869bcf3f9abf6457fbe39b5a37333aa4eecc52a3b99c98827ccc371a8e5b6f1b", size = 11327861, upload-time = "2025-03-21T13:30:56.757Z" }, + { url = "https://files.pythonhosted.org/packages/c4/78/4935ecba13706fd60ebe0e3dc50371f2bdc3d9bc80e68adc32ff93914534/ruff-0.11.2-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:2a2b50ca35457ba785cd8c93ebbe529467594087b527a08d487cf0ee7b3087e9", size = 10276560, upload-time = "2025-03-21T13:30:58.881Z" }, + { url = "https://files.pythonhosted.org/packages/81/7f/1b2435c3f5245d410bb5dc80f13ec796454c21fbda12b77d7588d5cf4e29/ruff-0.11.2-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:7c69c74bf53ddcfbc22e6eb2f31211df7f65054bfc1f72288fc71e5f82db3eab", size = 9945091, upload-time = "2025-03-21T13:31:01.45Z" }, + { url = "https://files.pythonhosted.org/packages/39/c4/692284c07e6bf2b31d82bb8c32f8840f9d0627d92983edaac991a2b66c0a/ruff-0.11.2-py3-none-musllinux_1_2_i686.whl", hash = "sha256:6e8fb75e14560f7cf53b15bbc55baf5ecbe373dd5f3aab96ff7aa7777edd7630", size = 10977133, upload-time = "2025-03-21T13:31:04.013Z" }, + { url = "https://files.pythonhosted.org/packages/94/cf/8ab81cb7dd7a3b0a3960c2769825038f3adcd75faf46dd6376086df8b128/ruff-0.11.2-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:842a472d7b4d6f5924e9297aa38149e5dcb1e628773b70e6387ae2c97a63c58f", size = 11378514, upload-time = "2025-03-21T13:31:06.166Z" }, + { url = "https://files.pythonhosted.org/packages/d9/3a/a647fa4f316482dacf2fd68e8a386327a33d6eabd8eb2f9a0c3d291ec549/ruff-0.11.2-py3-none-win32.whl", hash = "sha256:aca01ccd0eb5eb7156b324cfaa088586f06a86d9e5314b0eb330cb48415097cc", size = 10319835, upload-time = "2025-03-21T13:31:10.7Z" }, + { url = "https://files.pythonhosted.org/packages/86/54/3c12d3af58012a5e2cd7ebdbe9983f4834af3f8cbea0e8a8c74fa1e23b2b/ruff-0.11.2-py3-none-win_amd64.whl", hash = "sha256:3170150172a8f994136c0c66f494edf199a0bbea7a409f649e4bc8f4d7084080", size = 11373713, upload-time = "2025-03-21T13:31:13.148Z" }, + { url = "https://files.pythonhosted.org/packages/d6/d4/dd813703af8a1e2ac33bf3feb27e8a5ad514c9f219df80c64d69807e7f71/ruff-0.11.2-py3-none-win_arm64.whl", hash = "sha256:52933095158ff328f4c77af3d74f0379e34fd52f175144cefc1b192e7ccd32b4", size = 10441990, upload-time = "2025-03-21T13:31:15.206Z" }, +] + +[[package]] +name = "scikit-learn" +version = "1.7.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "joblib" }, + { name = "numpy" }, + { name = "scipy" }, + { name = "threadpoolctl" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/98/c2/a7855e41c9d285dfe86dc50b250978105dce513d6e459ea66a6aeb0e1e0c/scikit_learn-1.7.2.tar.gz", hash = "sha256:20e9e49ecd130598f1ca38a1d85090e1a600147b9c02fa6f15d69cb53d968fda", size = 7193136, upload-time = "2025-09-09T08:21:29.075Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/62/99/102578506f0f5fa29fd7e0df0a273864f79af044757aef73d1cae0afe6ad/ruff-0.11.2-py3-none-linux_armv6l.whl", hash = "sha256:c69e20ea49e973f3afec2c06376eb56045709f0212615c1adb0eda35e8a4e477", size = 10113146 }, - { url = "https://files.pythonhosted.org/packages/74/ad/5cd4ba58ab602a579997a8494b96f10f316e874d7c435bcc1a92e6da1b12/ruff-0.11.2-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:2c5424cc1c4eb1d8ecabe6d4f1b70470b4f24a0c0171356290b1953ad8f0e272", size = 10867092 }, - { url = "https://files.pythonhosted.org/packages/fc/3e/d3f13619e1d152c7b600a38c1a035e833e794c6625c9a6cea6f63dbf3af4/ruff-0.11.2-py3-none-macosx_11_0_arm64.whl", hash = "sha256:ecf20854cc73f42171eedb66f006a43d0a21bfb98a2523a809931cda569552d9", size = 10224082 }, - { url = "https://files.pythonhosted.org/packages/90/06/f77b3d790d24a93f38e3806216f263974909888fd1e826717c3ec956bbcd/ruff-0.11.2-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0c543bf65d5d27240321604cee0633a70c6c25c9a2f2492efa9f6d4b8e4199bb", size = 10394818 }, - { url = "https://files.pythonhosted.org/packages/99/7f/78aa431d3ddebfc2418cd95b786642557ba8b3cb578c075239da9ce97ff9/ruff-0.11.2-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:20967168cc21195db5830b9224be0e964cc9c8ecf3b5a9e3ce19876e8d3a96e3", size = 9952251 }, - { url = "https://files.pythonhosted.org/packages/30/3e/f11186d1ddfaca438c3bbff73c6a2fdb5b60e6450cc466129c694b0ab7a2/ruff-0.11.2-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:955a9ce63483999d9f0b8f0b4a3ad669e53484232853054cc8b9d51ab4c5de74", size = 11563566 }, - { url = "https://files.pythonhosted.org/packages/22/6c/6ca91befbc0a6539ee133d9a9ce60b1a354db12c3c5d11cfdbf77140f851/ruff-0.11.2-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:86b3a27c38b8fce73bcd262b0de32e9a6801b76d52cdb3ae4c914515f0cef608", size = 12208721 }, - { url = "https://files.pythonhosted.org/packages/19/b0/24516a3b850d55b17c03fc399b681c6a549d06ce665915721dc5d6458a5c/ruff-0.11.2-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a3b66a03b248c9fcd9d64d445bafdf1589326bee6fc5c8e92d7562e58883e30f", size = 11662274 }, - { url = "https://files.pythonhosted.org/packages/d7/65/76be06d28ecb7c6070280cef2bcb20c98fbf99ff60b1c57d2fb9b8771348/ruff-0.11.2-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0397c2672db015be5aa3d4dac54c69aa012429097ff219392c018e21f5085147", size = 13792284 }, - { url = "https://files.pythonhosted.org/packages/ce/d2/4ceed7147e05852876f3b5f3fdc23f878ce2b7e0b90dd6e698bda3d20787/ruff-0.11.2-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:869bcf3f9abf6457fbe39b5a37333aa4eecc52a3b99c98827ccc371a8e5b6f1b", size = 11327861 }, - { url = "https://files.pythonhosted.org/packages/c4/78/4935ecba13706fd60ebe0e3dc50371f2bdc3d9bc80e68adc32ff93914534/ruff-0.11.2-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:2a2b50ca35457ba785cd8c93ebbe529467594087b527a08d487cf0ee7b3087e9", size = 10276560 }, - { url = "https://files.pythonhosted.org/packages/81/7f/1b2435c3f5245d410bb5dc80f13ec796454c21fbda12b77d7588d5cf4e29/ruff-0.11.2-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:7c69c74bf53ddcfbc22e6eb2f31211df7f65054bfc1f72288fc71e5f82db3eab", size = 9945091 }, - { url = "https://files.pythonhosted.org/packages/39/c4/692284c07e6bf2b31d82bb8c32f8840f9d0627d92983edaac991a2b66c0a/ruff-0.11.2-py3-none-musllinux_1_2_i686.whl", hash = "sha256:6e8fb75e14560f7cf53b15bbc55baf5ecbe373dd5f3aab96ff7aa7777edd7630", size = 10977133 }, - { url = "https://files.pythonhosted.org/packages/94/cf/8ab81cb7dd7a3b0a3960c2769825038f3adcd75faf46dd6376086df8b128/ruff-0.11.2-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:842a472d7b4d6f5924e9297aa38149e5dcb1e628773b70e6387ae2c97a63c58f", size = 11378514 }, - { url = "https://files.pythonhosted.org/packages/d9/3a/a647fa4f316482dacf2fd68e8a386327a33d6eabd8eb2f9a0c3d291ec549/ruff-0.11.2-py3-none-win32.whl", hash = "sha256:aca01ccd0eb5eb7156b324cfaa088586f06a86d9e5314b0eb330cb48415097cc", size = 10319835 }, - { url = "https://files.pythonhosted.org/packages/86/54/3c12d3af58012a5e2cd7ebdbe9983f4834af3f8cbea0e8a8c74fa1e23b2b/ruff-0.11.2-py3-none-win_amd64.whl", hash = "sha256:3170150172a8f994136c0c66f494edf199a0bbea7a409f649e4bc8f4d7084080", size = 11373713 }, - { url = "https://files.pythonhosted.org/packages/d6/d4/dd813703af8a1e2ac33bf3feb27e8a5ad514c9f219df80c64d69807e7f71/ruff-0.11.2-py3-none-win_arm64.whl", hash = "sha256:52933095158ff328f4c77af3d74f0379e34fd52f175144cefc1b192e7ccd32b4", size = 10441990 }, + { url = "https://files.pythonhosted.org/packages/ae/93/a3038cb0293037fd335f77f31fe053b89c72f17b1c8908c576c29d953e84/scikit_learn-1.7.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:0b7dacaa05e5d76759fb071558a8b5130f4845166d88654a0f9bdf3eb57851b7", size = 9212382, upload-time = "2025-09-09T08:20:54.731Z" }, + { url = "https://files.pythonhosted.org/packages/40/dd/9a88879b0c1104259136146e4742026b52df8540c39fec21a6383f8292c7/scikit_learn-1.7.2-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:abebbd61ad9e1deed54cca45caea8ad5f79e1b93173dece40bb8e0c658dbe6fe", size = 8592042, upload-time = "2025-09-09T08:20:57.313Z" }, + { url = "https://files.pythonhosted.org/packages/46/af/c5e286471b7d10871b811b72ae794ac5fe2989c0a2df07f0ec723030f5f5/scikit_learn-1.7.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:502c18e39849c0ea1a5d681af1dbcf15f6cce601aebb657aabbfe84133c1907f", size = 9434180, upload-time = "2025-09-09T08:20:59.671Z" }, + { url = "https://files.pythonhosted.org/packages/f1/fd/df59faa53312d585023b2da27e866524ffb8faf87a68516c23896c718320/scikit_learn-1.7.2-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:7a4c328a71785382fe3fe676a9ecf2c86189249beff90bf85e22bdb7efaf9ae0", size = 9283660, upload-time = "2025-09-09T08:21:01.71Z" }, + { url = "https://files.pythonhosted.org/packages/a7/c7/03000262759d7b6f38c836ff9d512f438a70d8a8ddae68ee80de72dcfb63/scikit_learn-1.7.2-cp313-cp313-win_amd64.whl", hash = "sha256:63a9afd6f7b229aad94618c01c252ce9e6fa97918c5ca19c9a17a087d819440c", size = 8702057, upload-time = "2025-09-09T08:21:04.234Z" }, + { url = "https://files.pythonhosted.org/packages/55/87/ef5eb1f267084532c8e4aef98a28b6ffe7425acbfd64b5e2f2e066bc29b3/scikit_learn-1.7.2-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:9acb6c5e867447b4e1390930e3944a005e2cb115922e693c08a323421a6966e8", size = 9558731, upload-time = "2025-09-09T08:21:06.381Z" }, + { url = "https://files.pythonhosted.org/packages/93/f8/6c1e3fc14b10118068d7938878a9f3f4e6d7b74a8ddb1e5bed65159ccda8/scikit_learn-1.7.2-cp313-cp313t-macosx_12_0_arm64.whl", hash = "sha256:2a41e2a0ef45063e654152ec9d8bcfc39f7afce35b08902bfe290c2498a67a6a", size = 9038852, upload-time = "2025-09-09T08:21:08.628Z" }, + { url = "https://files.pythonhosted.org/packages/83/87/066cafc896ee540c34becf95d30375fe5cbe93c3b75a0ee9aa852cd60021/scikit_learn-1.7.2-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:98335fb98509b73385b3ab2bd0639b1f610541d3988ee675c670371d6a87aa7c", size = 9527094, upload-time = "2025-09-09T08:21:11.486Z" }, + { url = "https://files.pythonhosted.org/packages/9c/2b/4903e1ccafa1f6453b1ab78413938c8800633988c838aa0be386cbb33072/scikit_learn-1.7.2-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:191e5550980d45449126e23ed1d5e9e24b2c68329ee1f691a3987476e115e09c", size = 9367436, upload-time = "2025-09-09T08:21:13.602Z" }, + { url = "https://files.pythonhosted.org/packages/b5/aa/8444be3cfb10451617ff9d177b3c190288f4563e6c50ff02728be67ad094/scikit_learn-1.7.2-cp313-cp313t-win_amd64.whl", hash = "sha256:57dc4deb1d3762c75d685507fbd0bc17160144b2f2ba4ccea5dc285ab0d0e973", size = 9275749, upload-time = "2025-09-09T08:21:15.96Z" }, + { url = "https://files.pythonhosted.org/packages/d9/82/dee5acf66837852e8e68df6d8d3a6cb22d3df997b733b032f513d95205b7/scikit_learn-1.7.2-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:fa8f63940e29c82d1e67a45d5297bdebbcb585f5a5a50c4914cc2e852ab77f33", size = 9208906, upload-time = "2025-09-09T08:21:18.557Z" }, + { url = "https://files.pythonhosted.org/packages/3c/30/9029e54e17b87cb7d50d51a5926429c683d5b4c1732f0507a6c3bed9bf65/scikit_learn-1.7.2-cp314-cp314-macosx_12_0_arm64.whl", hash = "sha256:f95dc55b7902b91331fa4e5845dd5bde0580c9cd9612b1b2791b7e80c3d32615", size = 8627836, upload-time = "2025-09-09T08:21:20.695Z" }, + { url = "https://files.pythonhosted.org/packages/60/18/4a52c635c71b536879f4b971c2cedf32c35ee78f48367885ed8025d1f7ee/scikit_learn-1.7.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:9656e4a53e54578ad10a434dc1f993330568cfee176dff07112b8785fb413106", size = 9426236, upload-time = "2025-09-09T08:21:22.645Z" }, + { url = "https://files.pythonhosted.org/packages/99/7e/290362f6ab582128c53445458a5befd471ed1ea37953d5bcf80604619250/scikit_learn-1.7.2-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:96dc05a854add0e50d3f47a1ef21a10a595016da5b007c7d9cd9d0bffd1fcc61", size = 9312593, upload-time = "2025-09-09T08:21:24.65Z" }, + { url = "https://files.pythonhosted.org/packages/8e/87/24f541b6d62b1794939ae6422f8023703bbf6900378b2b34e0b4384dfefd/scikit_learn-1.7.2-cp314-cp314-win_amd64.whl", hash = "sha256:bb24510ed3f9f61476181e4db51ce801e2ba37541def12dc9333b946fc7a9cf8", size = 8820007, upload-time = "2025-09-09T08:21:26.713Z" }, +] + +[[package]] +name = "scipy" +version = "1.16.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/4c/3b/546a6f0bfe791bbb7f8d591613454d15097e53f906308ec6f7c1ce588e8e/scipy-1.16.2.tar.gz", hash = "sha256:af029b153d243a80afb6eabe40b0a07f8e35c9adc269c019f364ad747f826a6b", size = 30580599, upload-time = "2025-09-11T17:48:08.271Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c1/27/c5b52f1ee81727a9fc457f5ac1e9bf3d6eab311805ea615c83c27ba06400/scipy-1.16.2-cp313-cp313-macosx_10_14_x86_64.whl", hash = "sha256:84f7bf944b43e20b8a894f5fe593976926744f6c185bacfcbdfbb62736b5cc70", size = 36604856, upload-time = "2025-09-11T17:41:47.695Z" }, + { url = "https://files.pythonhosted.org/packages/32/a9/15c20d08e950b540184caa8ced675ba1128accb0e09c653780ba023a4110/scipy-1.16.2-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:5c39026d12edc826a1ef2ad35ad1e6d7f087f934bb868fc43fa3049c8b8508f9", size = 28864626, upload-time = "2025-09-11T17:41:52.642Z" }, + { url = "https://files.pythonhosted.org/packages/4c/fc/ea36098df653cca26062a627c1a94b0de659e97127c8491e18713ca0e3b9/scipy-1.16.2-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:e52729ffd45b68777c5319560014d6fd251294200625d9d70fd8626516fc49f5", size = 20855689, upload-time = "2025-09-11T17:41:57.886Z" }, + { url = "https://files.pythonhosted.org/packages/dc/6f/d0b53be55727f3e6d7c72687ec18ea6d0047cf95f1f77488b99a2bafaee1/scipy-1.16.2-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:024dd4a118cccec09ca3209b7e8e614931a6ffb804b2a601839499cb88bdf925", size = 23512151, upload-time = "2025-09-11T17:42:02.303Z" }, + { url = "https://files.pythonhosted.org/packages/11/85/bf7dab56e5c4b1d3d8eef92ca8ede788418ad38a7dc3ff50262f00808760/scipy-1.16.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:7a5dc7ee9c33019973a470556081b0fd3c9f4c44019191039f9769183141a4d9", size = 33329824, upload-time = "2025-09-11T17:42:07.549Z" }, + { url = "https://files.pythonhosted.org/packages/da/6a/1a927b14ddc7714111ea51f4e568203b2bb6ed59bdd036d62127c1a360c8/scipy-1.16.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:c2275ff105e508942f99d4e3bc56b6ef5e4b3c0af970386ca56b777608ce95b7", size = 35681881, upload-time = "2025-09-11T17:42:13.255Z" }, + { url = "https://files.pythonhosted.org/packages/c1/5f/331148ea5780b4fcc7007a4a6a6ee0a0c1507a796365cc642d4d226e1c3a/scipy-1.16.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:af80196eaa84f033e48444d2e0786ec47d328ba00c71e4299b602235ffef9acb", size = 36006219, upload-time = "2025-09-11T17:42:18.765Z" }, + { url = "https://files.pythonhosted.org/packages/46/3a/e991aa9d2aec723b4a8dcfbfc8365edec5d5e5f9f133888067f1cbb7dfc1/scipy-1.16.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:9fb1eb735fe3d6ed1f89918224e3385fbf6f9e23757cacc35f9c78d3b712dd6e", size = 38682147, upload-time = "2025-09-11T17:42:25.177Z" }, + { url = "https://files.pythonhosted.org/packages/a1/57/0f38e396ad19e41b4c5db66130167eef8ee620a49bc7d0512e3bb67e0cab/scipy-1.16.2-cp313-cp313-win_amd64.whl", hash = "sha256:fda714cf45ba43c9d3bae8f2585c777f64e3f89a2e073b668b32ede412d8f52c", size = 38520766, upload-time = "2025-09-11T17:43:25.342Z" }, + { url = "https://files.pythonhosted.org/packages/1b/a5/85d3e867b6822d331e26c862a91375bb7746a0b458db5effa093d34cdb89/scipy-1.16.2-cp313-cp313-win_arm64.whl", hash = "sha256:2f5350da923ccfd0b00e07c3e5cfb316c1c0d6c1d864c07a72d092e9f20db104", size = 25451169, upload-time = "2025-09-11T17:43:30.198Z" }, + { url = "https://files.pythonhosted.org/packages/09/d9/60679189bcebda55992d1a45498de6d080dcaf21ce0c8f24f888117e0c2d/scipy-1.16.2-cp313-cp313t-macosx_10_14_x86_64.whl", hash = "sha256:53d8d2ee29b925344c13bda64ab51785f016b1b9617849dac10897f0701b20c1", size = 37012682, upload-time = "2025-09-11T17:42:30.677Z" }, + { url = "https://files.pythonhosted.org/packages/83/be/a99d13ee4d3b7887a96f8c71361b9659ba4ef34da0338f14891e102a127f/scipy-1.16.2-cp313-cp313t-macosx_12_0_arm64.whl", hash = "sha256:9e05e33657efb4c6a9d23bd8300101536abd99c85cca82da0bffff8d8764d08a", size = 29389926, upload-time = "2025-09-11T17:42:35.845Z" }, + { url = "https://files.pythonhosted.org/packages/bf/0a/130164a4881cec6ca8c00faf3b57926f28ed429cd6001a673f83c7c2a579/scipy-1.16.2-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:7fe65b36036357003b3ef9d37547abeefaa353b237e989c21027b8ed62b12d4f", size = 21381152, upload-time = "2025-09-11T17:42:40.07Z" }, + { url = "https://files.pythonhosted.org/packages/47/a6/503ffb0310ae77fba874e10cddfc4a1280bdcca1d13c3751b8c3c2996cf8/scipy-1.16.2-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:6406d2ac6d40b861cccf57f49592f9779071655e9f75cd4f977fa0bdd09cb2e4", size = 23914410, upload-time = "2025-09-11T17:42:44.313Z" }, + { url = "https://files.pythonhosted.org/packages/fa/c7/1147774bcea50d00c02600aadaa919facbd8537997a62496270133536ed6/scipy-1.16.2-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:ff4dc42bd321991fbf611c23fc35912d690f731c9914bf3af8f417e64aca0f21", size = 33481880, upload-time = "2025-09-11T17:42:49.325Z" }, + { url = "https://files.pythonhosted.org/packages/6a/74/99d5415e4c3e46b2586f30cdbecb95e101c7192628a484a40dd0d163811a/scipy-1.16.2-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:654324826654d4d9133e10675325708fb954bc84dae6e9ad0a52e75c6b1a01d7", size = 35791425, upload-time = "2025-09-11T17:42:54.711Z" }, + { url = "https://files.pythonhosted.org/packages/1b/ee/a6559de7c1cc710e938c0355d9d4fbcd732dac4d0d131959d1f3b63eb29c/scipy-1.16.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:63870a84cd15c44e65220eaed2dac0e8f8b26bbb991456a033c1d9abfe8a94f8", size = 36178622, upload-time = "2025-09-11T17:43:00.375Z" }, + { url = "https://files.pythonhosted.org/packages/4e/7b/f127a5795d5ba8ece4e0dce7d4a9fb7cb9e4f4757137757d7a69ab7d4f1a/scipy-1.16.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:fa01f0f6a3050fa6a9771a95d5faccc8e2f5a92b4a2e5440a0fa7264a2398472", size = 38783985, upload-time = "2025-09-11T17:43:06.661Z" }, + { url = "https://files.pythonhosted.org/packages/3e/9f/bc81c1d1e033951eb5912cd3750cc005943afa3e65a725d2443a3b3c4347/scipy-1.16.2-cp313-cp313t-win_amd64.whl", hash = "sha256:116296e89fba96f76353a8579820c2512f6e55835d3fad7780fece04367de351", size = 38631367, upload-time = "2025-09-11T17:43:14.44Z" }, + { url = "https://files.pythonhosted.org/packages/d6/5e/2cc7555fd81d01814271412a1d59a289d25f8b63208a0a16c21069d55d3e/scipy-1.16.2-cp313-cp313t-win_arm64.whl", hash = "sha256:98e22834650be81d42982360382b43b17f7ba95e0e6993e2a4f5b9ad9283a94d", size = 25787992, upload-time = "2025-09-11T17:43:19.745Z" }, + { url = "https://files.pythonhosted.org/packages/8b/ac/ad8951250516db71619f0bd3b2eb2448db04b720a003dd98619b78b692c0/scipy-1.16.2-cp314-cp314-macosx_10_14_x86_64.whl", hash = "sha256:567e77755019bb7461513c87f02bb73fb65b11f049aaaa8ca17cfaa5a5c45d77", size = 36595109, upload-time = "2025-09-11T17:43:35.713Z" }, + { url = "https://files.pythonhosted.org/packages/ff/f6/5779049ed119c5b503b0f3dc6d6f3f68eefc3a9190d4ad4c276f854f051b/scipy-1.16.2-cp314-cp314-macosx_12_0_arm64.whl", hash = "sha256:17d9bb346194e8967296621208fcdfd39b55498ef7d2f376884d5ac47cec1a70", size = 28859110, upload-time = "2025-09-11T17:43:40.814Z" }, + { url = "https://files.pythonhosted.org/packages/82/09/9986e410ae38bf0a0c737ff8189ac81a93b8e42349aac009891c054403d7/scipy-1.16.2-cp314-cp314-macosx_14_0_arm64.whl", hash = "sha256:0a17541827a9b78b777d33b623a6dcfe2ef4a25806204d08ead0768f4e529a88", size = 20850110, upload-time = "2025-09-11T17:43:44.981Z" }, + { url = "https://files.pythonhosted.org/packages/0d/ad/485cdef2d9215e2a7df6d61b81d2ac073dfacf6ae24b9ae87274c4e936ae/scipy-1.16.2-cp314-cp314-macosx_14_0_x86_64.whl", hash = "sha256:d7d4c6ba016ffc0f9568d012f5f1eb77ddd99412aea121e6fa8b4c3b7cbad91f", size = 23497014, upload-time = "2025-09-11T17:43:49.074Z" }, + { url = "https://files.pythonhosted.org/packages/a7/74/f6a852e5d581122b8f0f831f1d1e32fb8987776ed3658e95c377d308ed86/scipy-1.16.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:9702c4c023227785c779cba2e1d6f7635dbb5b2e0936cdd3a4ecb98d78fd41eb", size = 33401155, upload-time = "2025-09-11T17:43:54.661Z" }, + { url = "https://files.pythonhosted.org/packages/d9/f5/61d243bbc7c6e5e4e13dde9887e84a5cbe9e0f75fd09843044af1590844e/scipy-1.16.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:d1cdf0ac28948d225decdefcc45ad7dd91716c29ab56ef32f8e0d50657dffcc7", size = 35691174, upload-time = "2025-09-11T17:44:00.101Z" }, + { url = "https://files.pythonhosted.org/packages/03/99/59933956331f8cc57e406cdb7a483906c74706b156998f322913e789c7e1/scipy-1.16.2-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:70327d6aa572a17c2941cdfb20673f82e536e91850a2e4cb0c5b858b690e1548", size = 36070752, upload-time = "2025-09-11T17:44:05.619Z" }, + { url = "https://files.pythonhosted.org/packages/c6/7d/00f825cfb47ee19ef74ecf01244b43e95eae74e7e0ff796026ea7cd98456/scipy-1.16.2-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:5221c0b2a4b58aa7c4ed0387d360fd90ee9086d383bb34d9f2789fafddc8a936", size = 38701010, upload-time = "2025-09-11T17:44:11.322Z" }, + { url = "https://files.pythonhosted.org/packages/e4/9f/b62587029980378304ba5a8563d376c96f40b1e133daacee76efdcae32de/scipy-1.16.2-cp314-cp314-win_amd64.whl", hash = "sha256:f5a85d7b2b708025af08f060a496dd261055b617d776fc05a1a1cc69e09fe9ff", size = 39360061, upload-time = "2025-09-11T17:45:09.814Z" }, + { url = "https://files.pythonhosted.org/packages/82/04/7a2f1609921352c7fbee0815811b5050582f67f19983096c4769867ca45f/scipy-1.16.2-cp314-cp314-win_arm64.whl", hash = "sha256:2cc73a33305b4b24556957d5857d6253ce1e2dcd67fa0ff46d87d1670b3e1e1d", size = 26126914, upload-time = "2025-09-11T17:45:14.73Z" }, + { url = "https://files.pythonhosted.org/packages/51/b9/60929ce350c16b221928725d2d1d7f86cf96b8bc07415547057d1196dc92/scipy-1.16.2-cp314-cp314t-macosx_10_14_x86_64.whl", hash = "sha256:9ea2a3fed83065d77367775d689401a703d0f697420719ee10c0780bcab594d8", size = 37013193, upload-time = "2025-09-11T17:44:16.757Z" }, + { url = "https://files.pythonhosted.org/packages/2a/41/ed80e67782d4bc5fc85a966bc356c601afddd175856ba7c7bb6d9490607e/scipy-1.16.2-cp314-cp314t-macosx_12_0_arm64.whl", hash = "sha256:7280d926f11ca945c3ef92ba960fa924e1465f8d07ce3a9923080363390624c4", size = 29390172, upload-time = "2025-09-11T17:44:21.783Z" }, + { url = "https://files.pythonhosted.org/packages/c4/a3/2f673ace4090452696ccded5f5f8efffb353b8f3628f823a110e0170b605/scipy-1.16.2-cp314-cp314t-macosx_14_0_arm64.whl", hash = "sha256:8afae1756f6a1fe04636407ef7dbece33d826a5d462b74f3d0eb82deabefd831", size = 21381326, upload-time = "2025-09-11T17:44:25.982Z" }, + { url = "https://files.pythonhosted.org/packages/42/bf/59df61c5d51395066c35836b78136accf506197617c8662e60ea209881e1/scipy-1.16.2-cp314-cp314t-macosx_14_0_x86_64.whl", hash = "sha256:5c66511f29aa8d233388e7416a3f20d5cae7a2744d5cee2ecd38c081f4e861b3", size = 23915036, upload-time = "2025-09-11T17:44:30.527Z" }, + { url = "https://files.pythonhosted.org/packages/91/c3/edc7b300dc16847ad3672f1a6f3f7c5d13522b21b84b81c265f4f2760d4a/scipy-1.16.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:efe6305aeaa0e96b0ccca5ff647a43737d9a092064a3894e46c414db84bc54ac", size = 33484341, upload-time = "2025-09-11T17:44:35.981Z" }, + { url = "https://files.pythonhosted.org/packages/26/c7/24d1524e72f06ff141e8d04b833c20db3021020563272ccb1b83860082a9/scipy-1.16.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:7f3a337d9ae06a1e8d655ee9d8ecb835ea5ddcdcbd8d23012afa055ab014f374", size = 35790840, upload-time = "2025-09-11T17:44:41.76Z" }, + { url = "https://files.pythonhosted.org/packages/aa/b7/5aaad984eeedd56858dc33d75efa59e8ce798d918e1033ef62d2708f2c3d/scipy-1.16.2-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:bab3605795d269067d8ce78a910220262711b753de8913d3deeaedb5dded3bb6", size = 36174716, upload-time = "2025-09-11T17:44:47.316Z" }, + { url = "https://files.pythonhosted.org/packages/fd/c2/e276a237acb09824822b0ada11b028ed4067fdc367a946730979feacb870/scipy-1.16.2-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:b0348d8ddb55be2a844c518cd8cc8deeeb8aeba707cf834db5758fc89b476a2c", size = 38790088, upload-time = "2025-09-11T17:44:53.011Z" }, + { url = "https://files.pythonhosted.org/packages/c6/b4/5c18a766e8353015439f3780f5fc473f36f9762edc1a2e45da3ff5a31b21/scipy-1.16.2-cp314-cp314t-win_amd64.whl", hash = "sha256:26284797e38b8a75e14ea6631d29bda11e76ceaa6ddb6fdebbfe4c4d90faf2f9", size = 39457455, upload-time = "2025-09-11T17:44:58.899Z" }, + { url = "https://files.pythonhosted.org/packages/97/30/2f9a5243008f76dfc5dee9a53dfb939d9b31e16ce4bd4f2e628bfc5d89d2/scipy-1.16.2-cp314-cp314t-win_arm64.whl", hash = "sha256:d2a4472c231328d4de38d5f1f68fdd6d28a615138f842580a8a321b5845cf779", size = 26448374, upload-time = "2025-09-11T17:45:03.45Z" }, ] [[package]] @@ -844,6 +956,7 @@ dependencies = [ { name = "httpx" }, { name = "isodate" }, { name = "numpy" }, + { name = "openremote-client" }, { name = "pandas" }, { name = "plotly" }, { name = "prophet" }, @@ -852,6 +965,7 @@ dependencies = [ { name = "pyjwt" }, { name = "pyyaml" }, { name = "pyzmq" }, + { name = "scikit-learn" }, { name = "tomli" }, { name = "uvicorn" }, ] @@ -876,6 +990,7 @@ requires-dist = [ { name = "httpx", specifier = ">=0.28.1" }, { name = "isodate", specifier = ">=0.7.2" }, { name = "numpy", specifier = ">=2.2.4" }, + { name = "openremote-client", editable = "packages/openremote_client" }, { name = "pandas", specifier = ">=2.2.3" }, { name = "plotly", specifier = ">=6.0.1" }, { name = "prophet", specifier = ">=1.1.6" }, @@ -884,6 +999,7 @@ requires-dist = [ { name = "pyjwt", specifier = ">=2.10.1" }, { name = "pyyaml", specifier = ">=6.0.2" }, { name = "pyzmq", specifier = ">=26.3.0" }, + { name = "scikit-learn", specifier = ">=1.7.2" }, { name = "tomli", specifier = ">=2.2.1" }, { name = "uvicorn", specifier = ">=0.34.0" }, ] @@ -903,18 +1019,18 @@ dev = [ name = "six" version = "1.17.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/94/e7/b2c673351809dca68a0e064b6af791aa332cf192da575fd474ed7d6f16a2/six-1.17.0.tar.gz", hash = "sha256:ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81", size = 34031 } +sdist = { url = "https://files.pythonhosted.org/packages/94/e7/b2c673351809dca68a0e064b6af791aa332cf192da575fd474ed7d6f16a2/six-1.17.0.tar.gz", hash = "sha256:ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81", size = 34031, upload-time = "2024-12-04T17:35:28.174Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/b7/ce/149a00dd41f10bc29e5921b496af8b574d8413afcd5e30dfa0ed46c2cc5e/six-1.17.0-py2.py3-none-any.whl", hash = "sha256:4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274", size = 11050 }, + { url = "https://files.pythonhosted.org/packages/b7/ce/149a00dd41f10bc29e5921b496af8b574d8413afcd5e30dfa0ed46c2cc5e/six-1.17.0-py2.py3-none-any.whl", hash = "sha256:4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274", size = 11050, upload-time = "2024-12-04T17:35:26.475Z" }, ] [[package]] name = "sniffio" version = "1.3.1" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/a2/87/a6771e1546d97e7e041b6ae58d80074f81b7d5121207425c964ddf5cfdbd/sniffio-1.3.1.tar.gz", hash = "sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc", size = 20372 } +sdist = { url = "https://files.pythonhosted.org/packages/a2/87/a6771e1546d97e7e041b6ae58d80074f81b7d5121207425c964ddf5cfdbd/sniffio-1.3.1.tar.gz", hash = "sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc", size = 20372, upload-time = "2024-02-25T23:20:04.057Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/e9/44/75a9c9421471a6c4805dbf2356f7c181a29c1879239abab1ea2cc8f38b40/sniffio-1.3.1-py3-none-any.whl", hash = "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2", size = 10235 }, + { url = "https://files.pythonhosted.org/packages/e9/44/75a9c9421471a6c4805dbf2356f7c181a29c1879239abab1ea2cc8f38b40/sniffio-1.3.1-py3-none-any.whl", hash = "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2", size = 10235, upload-time = "2024-02-25T23:20:01.196Z" }, ] [[package]] @@ -924,9 +1040,9 @@ source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "numpy" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/2c/5b/6e376499c3f9d71e4154b031d059663598534dd038f421e8c643d61afec5/stanio-0.5.1.tar.gz", hash = "sha256:348d52f947dec431e118f4b601c4c5296929b86401d4d4dd5aa9373b0d4ae4ac", size = 11983 } +sdist = { url = "https://files.pythonhosted.org/packages/2c/5b/6e376499c3f9d71e4154b031d059663598534dd038f421e8c643d61afec5/stanio-0.5.1.tar.gz", hash = "sha256:348d52f947dec431e118f4b601c4c5296929b86401d4d4dd5aa9373b0d4ae4ac", size = 11983, upload-time = "2024-07-08T19:35:48.029Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/56/87/37a80e4d5bd453c33262d8fb618b6840fd98d24ed08e046a4a9b10177fa3/stanio-0.5.1-py3-none-any.whl", hash = "sha256:99ad590daa5834681245c2b651716ec2e06223853661ada21430c621521c849f", size = 8065 }, + { url = "https://files.pythonhosted.org/packages/56/87/37a80e4d5bd453c33262d8fb618b6840fd98d24ed08e046a4a9b10177fa3/stanio-0.5.1-py3-none-any.whl", hash = "sha256:99ad590daa5834681245c2b651716ec2e06223853661ada21430c621521c849f", size = 8065, upload-time = "2024-07-08T19:35:46.503Z" }, ] [[package]] @@ -936,28 +1052,37 @@ source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "anyio" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/04/1b/52b27f2e13ceedc79a908e29eac426a63465a1a01248e5f24aa36a62aeb3/starlette-0.46.1.tar.gz", hash = "sha256:3c88d58ee4bd1bb807c0d1acb381838afc7752f9ddaec81bbe4383611d833230", size = 2580102 } +sdist = { url = "https://files.pythonhosted.org/packages/04/1b/52b27f2e13ceedc79a908e29eac426a63465a1a01248e5f24aa36a62aeb3/starlette-0.46.1.tar.gz", hash = "sha256:3c88d58ee4bd1bb807c0d1acb381838afc7752f9ddaec81bbe4383611d833230", size = 2580102, upload-time = "2025-03-08T10:55:34.504Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a0/4b/528ccf7a982216885a1ff4908e886b8fb5f19862d1962f56a3fce2435a70/starlette-0.46.1-py3-none-any.whl", hash = "sha256:77c74ed9d2720138b25875133f3a2dae6d854af2ec37dceb56aef370c1d8a227", size = 71995, upload-time = "2025-03-08T10:55:32.662Z" }, +] + +[[package]] +name = "threadpoolctl" +version = "3.6.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b7/4d/08c89e34946fce2aec4fbb45c9016efd5f4d7f24af8e5d93296e935631d8/threadpoolctl-3.6.0.tar.gz", hash = "sha256:8ab8b4aa3491d812b623328249fab5302a68d2d71745c8a4c719a2fcaba9f44e", size = 21274, upload-time = "2025-03-13T13:49:23.031Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/a0/4b/528ccf7a982216885a1ff4908e886b8fb5f19862d1962f56a3fce2435a70/starlette-0.46.1-py3-none-any.whl", hash = "sha256:77c74ed9d2720138b25875133f3a2dae6d854af2ec37dceb56aef370c1d8a227", size = 71995 }, + { url = "https://files.pythonhosted.org/packages/32/d5/f9a850d79b0851d1d4ef6456097579a9005b31fea68726a4ae5f2d82ddd9/threadpoolctl-3.6.0-py3-none-any.whl", hash = "sha256:43a0b8fd5a2928500110039e43a5eed8480b918967083ea48dc3ab9f13c4a7fb", size = 18638, upload-time = "2025-03-13T13:49:21.846Z" }, ] [[package]] name = "tomli" version = "2.2.1" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/18/87/302344fed471e44a87289cf4967697d07e532f2421fdaf868a303cbae4ff/tomli-2.2.1.tar.gz", hash = "sha256:cd45e1dc79c835ce60f7404ec8119f2eb06d38b1deba146f07ced3bbc44505ff", size = 17175 } +sdist = { url = "https://files.pythonhosted.org/packages/18/87/302344fed471e44a87289cf4967697d07e532f2421fdaf868a303cbae4ff/tomli-2.2.1.tar.gz", hash = "sha256:cd45e1dc79c835ce60f7404ec8119f2eb06d38b1deba146f07ced3bbc44505ff", size = 17175, upload-time = "2024-11-27T22:38:36.873Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/04/90/2ee5f2e0362cb8a0b6499dc44f4d7d48f8fff06d28ba46e6f1eaa61a1388/tomli-2.2.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:f4039b9cbc3048b2416cc57ab3bda989a6fcf9b36cf8937f01a6e731b64f80d7", size = 132708 }, - { url = "https://files.pythonhosted.org/packages/c0/ec/46b4108816de6b385141f082ba99e315501ccd0a2ea23db4a100dd3990ea/tomli-2.2.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:286f0ca2ffeeb5b9bd4fcc8d6c330534323ec51b2f52da063b11c502da16f30c", size = 123582 }, - { url = "https://files.pythonhosted.org/packages/a0/bd/b470466d0137b37b68d24556c38a0cc819e8febe392d5b199dcd7f578365/tomli-2.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a92ef1a44547e894e2a17d24e7557a5e85a9e1d0048b0b5e7541f76c5032cb13", size = 232543 }, - { url = "https://files.pythonhosted.org/packages/d9/e5/82e80ff3b751373f7cead2815bcbe2d51c895b3c990686741a8e56ec42ab/tomli-2.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9316dc65bed1684c9a98ee68759ceaed29d229e985297003e494aa825ebb0281", size = 241691 }, - { url = "https://files.pythonhosted.org/packages/05/7e/2a110bc2713557d6a1bfb06af23dd01e7dde52b6ee7dadc589868f9abfac/tomli-2.2.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e85e99945e688e32d5a35c1ff38ed0b3f41f43fad8df0bdf79f72b2ba7bc5272", size = 251170 }, - { url = "https://files.pythonhosted.org/packages/64/7b/22d713946efe00e0adbcdfd6d1aa119ae03fd0b60ebed51ebb3fa9f5a2e5/tomli-2.2.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:ac065718db92ca818f8d6141b5f66369833d4a80a9d74435a268c52bdfa73140", size = 236530 }, - { url = "https://files.pythonhosted.org/packages/38/31/3a76f67da4b0cf37b742ca76beaf819dca0ebef26d78fc794a576e08accf/tomli-2.2.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:d920f33822747519673ee656a4b6ac33e382eca9d331c87770faa3eef562aeb2", size = 258666 }, - { url = "https://files.pythonhosted.org/packages/07/10/5af1293da642aded87e8a988753945d0cf7e00a9452d3911dd3bb354c9e2/tomli-2.2.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a198f10c4d1b1375d7687bc25294306e551bf1abfa4eace6650070a5c1ae2744", size = 243954 }, - { url = "https://files.pythonhosted.org/packages/5b/b9/1ed31d167be802da0fc95020d04cd27b7d7065cc6fbefdd2f9186f60d7bd/tomli-2.2.1-cp313-cp313-win32.whl", hash = "sha256:d3f5614314d758649ab2ab3a62d4f2004c825922f9e370b29416484086b264ec", size = 98724 }, - { url = "https://files.pythonhosted.org/packages/c7/32/b0963458706accd9afcfeb867c0f9175a741bf7b19cd424230714d722198/tomli-2.2.1-cp313-cp313-win_amd64.whl", hash = "sha256:a38aa0308e754b0e3c67e344754dff64999ff9b513e691d0e786265c93583c69", size = 109383 }, - { url = "https://files.pythonhosted.org/packages/6e/c2/61d3e0f47e2b74ef40a68b9e6ad5984f6241a942f7cd3bbfbdbd03861ea9/tomli-2.2.1-py3-none-any.whl", hash = "sha256:cb55c73c5f4408779d0cf3eef9f762b9c9f147a77de7b258bef0a5628adc85cc", size = 14257 }, + { url = "https://files.pythonhosted.org/packages/04/90/2ee5f2e0362cb8a0b6499dc44f4d7d48f8fff06d28ba46e6f1eaa61a1388/tomli-2.2.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:f4039b9cbc3048b2416cc57ab3bda989a6fcf9b36cf8937f01a6e731b64f80d7", size = 132708, upload-time = "2024-11-27T22:38:21.659Z" }, + { url = "https://files.pythonhosted.org/packages/c0/ec/46b4108816de6b385141f082ba99e315501ccd0a2ea23db4a100dd3990ea/tomli-2.2.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:286f0ca2ffeeb5b9bd4fcc8d6c330534323ec51b2f52da063b11c502da16f30c", size = 123582, upload-time = "2024-11-27T22:38:22.693Z" }, + { url = "https://files.pythonhosted.org/packages/a0/bd/b470466d0137b37b68d24556c38a0cc819e8febe392d5b199dcd7f578365/tomli-2.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a92ef1a44547e894e2a17d24e7557a5e85a9e1d0048b0b5e7541f76c5032cb13", size = 232543, upload-time = "2024-11-27T22:38:24.367Z" }, + { url = "https://files.pythonhosted.org/packages/d9/e5/82e80ff3b751373f7cead2815bcbe2d51c895b3c990686741a8e56ec42ab/tomli-2.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9316dc65bed1684c9a98ee68759ceaed29d229e985297003e494aa825ebb0281", size = 241691, upload-time = "2024-11-27T22:38:26.081Z" }, + { url = "https://files.pythonhosted.org/packages/05/7e/2a110bc2713557d6a1bfb06af23dd01e7dde52b6ee7dadc589868f9abfac/tomli-2.2.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e85e99945e688e32d5a35c1ff38ed0b3f41f43fad8df0bdf79f72b2ba7bc5272", size = 251170, upload-time = "2024-11-27T22:38:27.921Z" }, + { url = "https://files.pythonhosted.org/packages/64/7b/22d713946efe00e0adbcdfd6d1aa119ae03fd0b60ebed51ebb3fa9f5a2e5/tomli-2.2.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:ac065718db92ca818f8d6141b5f66369833d4a80a9d74435a268c52bdfa73140", size = 236530, upload-time = "2024-11-27T22:38:29.591Z" }, + { url = "https://files.pythonhosted.org/packages/38/31/3a76f67da4b0cf37b742ca76beaf819dca0ebef26d78fc794a576e08accf/tomli-2.2.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:d920f33822747519673ee656a4b6ac33e382eca9d331c87770faa3eef562aeb2", size = 258666, upload-time = "2024-11-27T22:38:30.639Z" }, + { url = "https://files.pythonhosted.org/packages/07/10/5af1293da642aded87e8a988753945d0cf7e00a9452d3911dd3bb354c9e2/tomli-2.2.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a198f10c4d1b1375d7687bc25294306e551bf1abfa4eace6650070a5c1ae2744", size = 243954, upload-time = "2024-11-27T22:38:31.702Z" }, + { url = "https://files.pythonhosted.org/packages/5b/b9/1ed31d167be802da0fc95020d04cd27b7d7065cc6fbefdd2f9186f60d7bd/tomli-2.2.1-cp313-cp313-win32.whl", hash = "sha256:d3f5614314d758649ab2ab3a62d4f2004c825922f9e370b29416484086b264ec", size = 98724, upload-time = "2024-11-27T22:38:32.837Z" }, + { url = "https://files.pythonhosted.org/packages/c7/32/b0963458706accd9afcfeb867c0f9175a741bf7b19cd424230714d722198/tomli-2.2.1-cp313-cp313-win_amd64.whl", hash = "sha256:a38aa0308e754b0e3c67e344754dff64999ff9b513e691d0e786265c93583c69", size = 109383, upload-time = "2024-11-27T22:38:34.455Z" }, + { url = "https://files.pythonhosted.org/packages/6e/c2/61d3e0f47e2b74ef40a68b9e6ad5984f6241a942f7cd3bbfbdbd03861ea9/tomli-2.2.1-py3-none-any.whl", hash = "sha256:cb55c73c5f4408779d0cf3eef9f762b9c9f147a77de7b258bef0a5628adc85cc", size = 14257, upload-time = "2024-11-27T22:38:35.385Z" }, ] [[package]] @@ -967,27 +1092,27 @@ source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "colorama", marker = "sys_platform == 'win32'" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/a8/4b/29b4ef32e036bb34e4ab51796dd745cdba7ed47ad142a9f4a1eb8e0c744d/tqdm-4.67.1.tar.gz", hash = "sha256:f8aef9c52c08c13a65f30ea34f4e5aac3fd1a34959879d7e59e63027286627f2", size = 169737 } +sdist = { url = "https://files.pythonhosted.org/packages/a8/4b/29b4ef32e036bb34e4ab51796dd745cdba7ed47ad142a9f4a1eb8e0c744d/tqdm-4.67.1.tar.gz", hash = "sha256:f8aef9c52c08c13a65f30ea34f4e5aac3fd1a34959879d7e59e63027286627f2", size = 169737, upload-time = "2024-11-24T20:12:22.481Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/d0/30/dc54f88dd4a2b5dc8a0279bdd7270e735851848b762aeb1c1184ed1f6b14/tqdm-4.67.1-py3-none-any.whl", hash = "sha256:26445eca388f82e72884e0d580d5464cd801a3ea01e63e5601bdff9ba6a48de2", size = 78540 }, + { url = "https://files.pythonhosted.org/packages/d0/30/dc54f88dd4a2b5dc8a0279bdd7270e735851848b762aeb1c1184ed1f6b14/tqdm-4.67.1-py3-none-any.whl", hash = "sha256:26445eca388f82e72884e0d580d5464cd801a3ea01e63e5601bdff9ba6a48de2", size = 78540, upload-time = "2024-11-24T20:12:19.698Z" }, ] [[package]] name = "types-pytz" version = "2025.2.0.20250326" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/4b/66/38c89861242f2c61c8315ddbcc7d7bbf64979f4b0bdc48db0ba62aeec330/types_pytz-2025.2.0.20250326.tar.gz", hash = "sha256:deda02de24f527066fc8d6a19e284ab3f3ae716a42b4adb6b40e75e408c08d36", size = 10595 } +sdist = { url = "https://files.pythonhosted.org/packages/4b/66/38c89861242f2c61c8315ddbcc7d7bbf64979f4b0bdc48db0ba62aeec330/types_pytz-2025.2.0.20250326.tar.gz", hash = "sha256:deda02de24f527066fc8d6a19e284ab3f3ae716a42b4adb6b40e75e408c08d36", size = 10595, upload-time = "2025-03-26T02:53:12.504Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/4e/e0/17f3a6670db5c95dc195f346e2e7290f22ba8327c188133959389b578cbd/types_pytz-2025.2.0.20250326-py3-none-any.whl", hash = "sha256:3c397fd1b845cd2b3adc9398607764ced9e578a98a5d1fbb4a9bc9253edfb162", size = 10222 }, + { url = "https://files.pythonhosted.org/packages/4e/e0/17f3a6670db5c95dc195f346e2e7290f22ba8327c188133959389b578cbd/types_pytz-2025.2.0.20250326-py3-none-any.whl", hash = "sha256:3c397fd1b845cd2b3adc9398607764ced9e578a98a5d1fbb4a9bc9253edfb162", size = 10222, upload-time = "2025-03-26T02:53:11.145Z" }, ] [[package]] name = "typing-extensions" version = "4.13.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/0e/3e/b00a62db91a83fff600de219b6ea9908e6918664899a2d85db222f4fbf19/typing_extensions-4.13.0.tar.gz", hash = "sha256:0a4ac55a5820789d87e297727d229866c9650f6521b64206413c4fbada24d95b", size = 106520 } +sdist = { url = "https://files.pythonhosted.org/packages/0e/3e/b00a62db91a83fff600de219b6ea9908e6918664899a2d85db222f4fbf19/typing_extensions-4.13.0.tar.gz", hash = "sha256:0a4ac55a5820789d87e297727d229866c9650f6521b64206413c4fbada24d95b", size = 106520, upload-time = "2025-03-26T03:49:41.628Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/e0/86/39b65d676ec5732de17b7e3c476e45bb80ec64eb50737a8dce1a4178aba1/typing_extensions-4.13.0-py3-none-any.whl", hash = "sha256:c8dd92cc0d6425a97c18fbb9d1954e5ff92c1ca881a309c45f06ebc0b79058e5", size = 45683 }, + { url = "https://files.pythonhosted.org/packages/e0/86/39b65d676ec5732de17b7e3c476e45bb80ec64eb50737a8dce1a4178aba1/typing_extensions-4.13.0-py3-none-any.whl", hash = "sha256:c8dd92cc0d6425a97c18fbb9d1954e5ff92c1ca881a309c45f06ebc0b79058e5", size = 45683, upload-time = "2025-03-26T03:49:40.35Z" }, ] [[package]] @@ -997,18 +1122,18 @@ source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "typing-extensions" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/82/5c/e6082df02e215b846b4b8c0b887a64d7d08ffaba30605502639d44c06b82/typing_inspection-0.4.0.tar.gz", hash = "sha256:9765c87de36671694a67904bf2c96e395be9c6439bb6c87b5142569dcdd65122", size = 76222 } +sdist = { url = "https://files.pythonhosted.org/packages/82/5c/e6082df02e215b846b4b8c0b887a64d7d08ffaba30605502639d44c06b82/typing_inspection-0.4.0.tar.gz", hash = "sha256:9765c87de36671694a67904bf2c96e395be9c6439bb6c87b5142569dcdd65122", size = 76222, upload-time = "2025-02-25T17:27:59.638Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/31/08/aa4fdfb71f7de5176385bd9e90852eaf6b5d622735020ad600f2bab54385/typing_inspection-0.4.0-py3-none-any.whl", hash = "sha256:50e72559fcd2a6367a19f7a7e610e6afcb9fac940c650290eed893d61386832f", size = 14125 }, + { url = "https://files.pythonhosted.org/packages/31/08/aa4fdfb71f7de5176385bd9e90852eaf6b5d622735020ad600f2bab54385/typing_inspection-0.4.0-py3-none-any.whl", hash = "sha256:50e72559fcd2a6367a19f7a7e610e6afcb9fac940c650290eed893d61386832f", size = 14125, upload-time = "2025-02-25T17:27:57.754Z" }, ] [[package]] name = "tzdata" version = "2025.2" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/95/32/1a225d6164441be760d75c2c42e2780dc0873fe382da3e98a2e1e48361e5/tzdata-2025.2.tar.gz", hash = "sha256:b60a638fcc0daffadf82fe0f57e53d06bdec2f36c4df66280ae79bce6bd6f2b9", size = 196380 } +sdist = { url = "https://files.pythonhosted.org/packages/95/32/1a225d6164441be760d75c2c42e2780dc0873fe382da3e98a2e1e48361e5/tzdata-2025.2.tar.gz", hash = "sha256:b60a638fcc0daffadf82fe0f57e53d06bdec2f36c4df66280ae79bce6bd6f2b9", size = 196380, upload-time = "2025-03-23T13:54:43.652Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/5c/23/c7abc0ca0a1526a0774eca151daeb8de62ec457e77262b66b359c3c7679e/tzdata-2025.2-py2.py3-none-any.whl", hash = "sha256:1a403fada01ff9221ca8044d701868fa132215d84beb92242d9acd2147f667a8", size = 347839 }, + { url = "https://files.pythonhosted.org/packages/5c/23/c7abc0ca0a1526a0774eca151daeb8de62ec457e77262b66b359c3c7679e/tzdata-2025.2-py2.py3-none-any.whl", hash = "sha256:1a403fada01ff9221ca8044d701868fa132215d84beb92242d9acd2147f667a8", size = 347839, upload-time = "2025-03-23T13:54:41.845Z" }, ] [[package]] @@ -1018,9 +1143,9 @@ source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "tzdata", marker = "sys_platform == 'win32'" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/8b/2e/c14812d3d4d9cd1773c6be938f89e5735a1f11a9f184ac3639b93cef35d5/tzlocal-5.3.1.tar.gz", hash = "sha256:cceffc7edecefea1f595541dbd6e990cb1ea3d19bf01b2809f362a03dd7921fd", size = 30761 } +sdist = { url = "https://files.pythonhosted.org/packages/8b/2e/c14812d3d4d9cd1773c6be938f89e5735a1f11a9f184ac3639b93cef35d5/tzlocal-5.3.1.tar.gz", hash = "sha256:cceffc7edecefea1f595541dbd6e990cb1ea3d19bf01b2809f362a03dd7921fd", size = 30761, upload-time = "2025-03-05T21:17:41.549Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/c2/14/e2a54fabd4f08cd7af1c07030603c3356b74da07f7cc056e600436edfa17/tzlocal-5.3.1-py3-none-any.whl", hash = "sha256:eb1a66c3ef5847adf7a834f1be0800581b683b5608e74f86ecbcef8ab91bb85d", size = 18026 }, + { url = "https://files.pythonhosted.org/packages/c2/14/e2a54fabd4f08cd7af1c07030603c3356b74da07f7cc056e600436edfa17/tzlocal-5.3.1-py3-none-any.whl", hash = "sha256:eb1a66c3ef5847adf7a834f1be0800581b683b5608e74f86ecbcef8ab91bb85d", size = 18026, upload-time = "2025-03-05T21:17:39.857Z" }, ] [[package]] @@ -1031,7 +1156,7 @@ dependencies = [ { name = "click" }, { name = "h11" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/4b/4d/938bd85e5bf2edeec766267a5015ad969730bb91e31b44021dfe8b22df6c/uvicorn-0.34.0.tar.gz", hash = "sha256:404051050cd7e905de2c9a7e61790943440b3416f49cb409f965d9dcd0fa73e9", size = 76568 } +sdist = { url = "https://files.pythonhosted.org/packages/4b/4d/938bd85e5bf2edeec766267a5015ad969730bb91e31b44021dfe8b22df6c/uvicorn-0.34.0.tar.gz", hash = "sha256:404051050cd7e905de2c9a7e61790943440b3416f49cb409f965d9dcd0fa73e9", size = 76568, upload-time = "2024-12-15T13:33:30.42Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/61/14/33a3a1352cfa71812a3a21e8c9bfb83f60b0011f5e36f2b1399d51928209/uvicorn-0.34.0-py3-none-any.whl", hash = "sha256:023dc038422502fa28a09c7a30bf2b6991512da7dcdb8fd35fe57cfc154126f4", size = 62315 }, + { url = "https://files.pythonhosted.org/packages/61/14/33a3a1352cfa71812a3a21e8c9bfb83f60b0011f5e36f2b1399d51928209/uvicorn-0.34.0-py3-none-any.whl", hash = "sha256:023dc038422502fa28a09c7a30bf2b6991512da7dcdb8fd35fe57cfc154126f4", size = 62315, upload-time = "2024-12-15T13:33:27.467Z" }, ]