Wallaroo Edge Classification Financial Services Deployment via MLOps API Demonstration

A demonstration on publishing a classification financial services model for edge deployment via the Wallaroo MLOps API.

The following tutorial is available on the Wallaroo Github Repository.

Classification Financial Services Edge Deployment Demonstration via API

This notebook will walk through building Wallaroo pipeline with a a Classification model deployed to detect the likelihood of credit card fraud, then publishing that pipeline to an Open Container Initiative (OCI) Registry where it can be deployed in other Docker and Kubernetes environments. This example uses the Wallaroo MLOps API.

This demonstration will focus on deployment to the edge.

This demonstration performs the following:

  1. As a Data Scientist in Wallaroo Ops:
    1. Upload a computer vision model to Wallaroo, deploy it in a Wallaroo pipeline, then perform a sample inference.
    2. Publish the pipeline to an Open Container Initiative (OCI) Registry service. This is configured in the Wallaroo instance. See Edge Deployment Registry Guide for details on adding an OCI Registry Service to Wallaroo as the Edge Deployment Registry. This demonstration uses a GitHub repository - see Introduction to GitHub Packages for setting up your own package repository using GitHub, which can then be used with this tutorial.
    3. View the pipeline publish details.
  2. As a DevOps Engineer in a remote aka edge device:
    1. Deploy the published pipeline as a Wallaroo Inference Server. This example will use Docker.
    2. Perform a sample inference through the Wallaroo Inference Server with the same data used in the data scientist example.

References

Data Scientist Pipeline Publish Steps

Load Libraries

The first step is to import the libraries used in this notebook.

import wallaroo
from wallaroo.object import EntityNotFoundError

import pyarrow as pa
import pandas as pd
import requests

# used to display dataframe information without truncating
from IPython.display import display
pd.set_option('display.max_colwidth', None)

Connect to the Wallaroo Instance through the User Interface

The next step is to connect to Wallaroo through the Wallaroo client. The Python library is included in the Wallaroo install and available through the Jupyter Hub interface provided with your Wallaroo environment.

This is accomplished using the wallaroo.Client() command, which provides a URL to grant the SDK permission to your specific Wallaroo environment. When displayed, enter the URL into a browser and confirm permissions. Store the connection into a variable that can be referenced later.

If logging into the Wallaroo instance through the internal JupyterHub service, use wl = wallaroo.Client(). For more information on Wallaroo Client settings, see the Client Connection guide.

wl = wallaroo.Client()

Create a New Workspace

We’ll use the SDK below to create our workspace , assign as our current workspace, then display all of the workspaces we have at the moment. We’ll also set up variables for our models and pipelines down the road, so we have one spot to change names to whatever fits your organization’s standards best.

To allow this tutorial to be run by multiple users in the same Wallaroo instance, a random 4 character prefix will be added to the workspace, pipeline, and model. Feel free to set suffix='' if this is not required.

import string
import random

# make a random 4 character suffix to verify uniqueness in tutorials
suffix= ''.join(random.choice(string.ascii_lowercase) for i in range(4))

workspace_name = f'edge-publish-api-demo{suffix}'
pipeline_name = 'edge-pipeline'
model_name = 'ccfraud'
model_file_name = './models/xgboost_ccfraud.onnx'
def get_workspace(name):
    workspace = None
    for ws in wl.list_workspaces():
        if ws.name() == name:
            workspace= ws
    if(workspace == None):
        workspace = wl.create_workspace(name)
    return workspace

def get_pipeline(name):
    try:
        pipeline = wl.pipelines_by_name(name)[0]
    except EntityNotFoundError:
        pipeline = wl.build_pipeline(name)
    return pipeline
workspace = get_workspace(workspace_name)

wl.set_current_workspace(workspace)
{'name': 'edge-publish-api-demozbnv', 'id': 27, 'archived': False, 'created_by': 'aa707604-ec80-495a-a9a1-87774c8086d5', 'created_at': '2023-09-19T19:44:20.31345+00:00', 'models': [], 'pipelines': []}

Upload the Model

When a model is uploaded to a Wallaroo cluster, it is optimized and packaged to make it ready to run as part of a pipeline. In many times, the Wallaroo Server can natively run a model without any Python overhead. In other cases, such as a Python script, a custom Python environment will be automatically generated. This is comparable to the process of “containerizing” a model by adding a small HTTP server and other wrapping around it.

Our pretrained model is in ONNX format, which is specified in the framework parameter.

edge_demo_model = wl.upload_model(
    model_name,
    model_file_name,
    framework=wallaroo.framework.Framework.ONNX,
).configure(tensor_fields=["tensor"])

Reserve Pipeline Resources

Before deploying an inference engine we need to tell wallaroo what resources it will need.
To do this we will use the wallaroo DeploymentConfigBuilder() and fill in the options listed below to determine what the properties of our inference engine will be.

We will be testing this deployment for an edge scenario, so the resource specifications are kept small – what’s the minimum needed to meet the expected load on the planned hardware.

  • cpus - 0.5 => allow the engine to use 4 CPU cores when running the neural net
  • memory - 900Mi => each inference engine will have 2 GB of memory, which is plenty for processing a single image at a time.
  • arch - we will specify the X86 architecture.
deploy_config = (wallaroo
                 .DeploymentConfigBuilder()
                 .replica_count(1)
                 .cpus(1)
                 .memory("900Mi")
                 .build()
                 )

Simulated Edge Deployment

We will now deploy our pipeline into the current Kubernetes environment using the specified resource constraints. This is a “simulated edge” deploy in that we try to mimic the edge hardware as closely as possible.

pipeline = get_pipeline(pipeline_name)
display(pipeline)

pipeline.add_model_step(edge_demo_model)

pipeline.deploy(deployment_config = deploy_config)
nameedge-pipeline
created2023-09-19 19:38:20.298800+00:00
last_updated2023-09-19 19:41:15.049021+00:00
deployedFalse
tags
versionsde226e15-5500-4b26-9c80-ee089e196585, 15be4514-3459-462c-a633-153511608d4a
stepsccfraud-xgboost
publishedFalse
nameedge-pipeline
created2023-09-19 19:44:25.627257+00:00
last_updated2023-09-19 19:44:25.627257+00:00
deployedTrue
tags
versionsed209209-c8dc-4d9b-b381-1255e1d57800
stepsccfraud
publishedFalse

Run Single Image Inference

A single image, encoded using the Apache Arrow format, is sent to the deployed pipeline. Arrow is used here because, as a binary protocol, there is far lower network and compute overhead than using JSON. The Wallaroo Server engine accepts both JSON, pandas DataFrame, and Apache Arrow formats.

The sample DataFrames and arrow tables are in the ./data directory. We’ll use the Apache Arrow table cc_data_10k.arrow.

Once complete, we’ll display how long the inference request took.

deploy_url = pipeline._deployment._url()

headers = wl.auth.auth_header()

headers['Content-Type']='application/vnd.apache.arrow.file'
# headers['Content-Type']='application/json; format=pandas-records'
headers['Accept']='application/json; format=pandas-records'

dataFile = './data/cc_data_10k.arrow'
!curl -X POST {deploy_url} \
     -H "Authorization:{headers['Authorization']}" \
     -H "Content-Type:{headers['Content-Type']}" \
     -H "Accept:{headers['Accept']}" \
     --data-binary @{dataFile} > curl_response.df.json
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100 7731k  100 6568k  100 1162k  2343k   414k  0:00:02  0:00:02 --:--:-- 2761k

Undeploy the Pipeline

With the testing complete, we can undeploy the pipeline. Note that deploying and undeploying a pipeline is not required for publishing a pipeline to the Edge Registry - this is done just for this demonstration.

pipeline.undeploy()
nameedge-pipeline
created2023-09-19 19:44:25.627257+00:00
last_updated2023-09-19 19:44:25.627257+00:00
deployedFalse
tags
versionsed209209-c8dc-4d9b-b381-1255e1d57800
stepsccfraud
publishedFalse

Publish the Pipeline for Edge Deployment

It worked! For a demo, we’ll take working once as “tested”. So now that we’ve tested our pipeline, we are ready to publish it for edge deployment.

Publishing it means assembling all of the configuration files and model assets and pushing them to an Open Container Initiative (OCI) repository set in the Wallaroo instance as the Edge Registry service. DevOps engineers then retrieve that image and deploy it through Docker, Kubernetes, or similar deployments.

See Edge Deployment Registry Guide for details on adding an OCI Registry Service to Wallaroo as the Edge Deployment Registry.

This is done through the SDK command wallaroo.pipeline.publish(deployment_config) which has the following parameters and returns.

Publish a Pipeline Endpoint

Pipelines are published as images to the edge registry set in the Enable Wallaroo Edge Registry through the following endpoint.

  • Endpoint:
    • /v1/api/pipelines/publish
  • Parameters
    • pipeline_id (Integer Required): The numerical id of the pipeline to publish to the edge registry.
    • pipeline_version_id (Integer Required): The numerical id of the pipeline’s version to publish to the edge registry.
    • model_config_ids (List Optional): The list of model config ids to include.
  • Returns
    • id (Integer): Numerical Wallaroo id of the published pipeline.
    • pipeline_version_id (Integer): Numerical Wallaroo id of the pipeline version published.
    • status: The status of the pipeline publish. Values include:
      • PendingPublish: The pipeline publication is about to be uploaded or is in the process of being uploaded.
      • Published: The pipeline is published and ready for use.
    • created_at (String): When the published pipeline was created.
    • updated_at (String): When the published pipeline was updated.
    • created_by (String): The email address of the Wallaroo user that created the pipeline publish.
    • pipeline_url (String): The URL of the published pipeline in the edge registry. May be null until the status is Published)
    • engine_url (String): The URL of the published pipeline engine in the edge registry. May be null until the status is Published.
    • helm: ???
    • engine_config (*wallaroo.deployment_config.DeploymentConfig) | The pipeline configuration included with the published pipeline.

Publish Example

We will now publish the pipeline to our Edge Deployment Registry with the pipeline.publish(deployment_config) command. deployment_config is an optional field that specifies the pipeline deployment. This can be overridden by the DevOps engineer during deployment. For this demonstration, we will be retrieving the most recent pipeline version.

For this, we will require the pipeline version id, the workspace id, and the model config ids (which will be empty as not required).

# get the pipeline version
pipeline_version_id = pipeline.versions()[-1].id()
display(pipeline_version_id)

pipeline_id = pipeline.id()
display(pipeline_id)
headers = {
    "Authorization": wl.auth._bearer_token_str(),
    "Content-Type": "application/json",
}

url = f"{wl.api_endpoint}/v1/api/pipelines/publish"
response = requests.post(
    url,
    headers=headers,
    json={"pipeline_id": 1, 
          "pipeline_version_id": pipeline_version_id, 
          "model_config_ids": [edge_demo_model.id()]
          }
    )
display(response.json())
13

13

{'id': 8,
 'pipeline_version_id': 13,
 'pipeline_version_name': '1ea2d089-1127-464d-a980-e087d1f052e2',
 'status': 'PendingPublish',
 'created_at': '2023-09-08T18:21:51.987293+00:00',
 'updated_at': '2023-09-08T18:21:51.987293+00:00',
 'created_by': 'aa707604-ec80-495a-a9a1-87774c8086d5',
 'pipeline_url': None,
 'engine_url': None,
 'helm': None,
 'engine_config': {'engine': {'resources': {'limits': {'cpu': 4.0,
     'memory': '3Gi'},
    'requests': {'cpu': 4.0, 'memory': '3Gi'}}},
  'enginelb': {'resources': {'limits': {'cpu': 1.0, 'memory': '512Mi'},
    'requests': {'cpu': 0.2, 'memory': '512Mi'}}},
  'engineAux': {}},
 'error': None,
 'user_images': []}
publish_id = response.json()['id']
display(publish_id)
8

Get Publish Status

The status of a created Wallaroo pipeline publish is available through the following endpoint.

  • Endpoint:
    • /v1/api/pipelines/get_publish_status
  • Parameters
    • publish_id (Integer Required): The numerical id of the pipeline publish to retrieve.
  • Returns
    • id (Integer): Numerical Wallaroo id of the published pipeline.
    • pipeline_version_id (Integer): Numerical Wallaroo id of the pipeline version published.
    • status: The status of the pipeline publish. Values include:
      • PendingPublish: The pipeline publication is about to be uploaded or is in the process of being uploaded.
      • Published: The pipeline is published and ready for use.
    • created_at (String): When the published pipeline was created.
    • updated_at (String): When the published pipeline was updated.
    • created_by (String): The email address of the Wallaroo user that created the pipeline publish.
    • pipeline_url (String): The URL of the published pipeline in the edge registry. May be null until the status is Published)
    • engine_url (String): The URL of the published pipeline engine in the edge registry. May be null until the status is Published.
    • helm: The Helm chart information including the following fields:
      • reference (String): The Helm reference.
      • chart (String): The Helm chart URL.
      • version (String): The Helm chart version.
    • engine_config (*wallaroo.deployment_config.DeploymentConfig) | The pipeline configuration included with the published pipeline.

Get Publish Status Example

The following example shows retrieving the status of a recently created pipeline publish. Once the published status is Published we know the pipeline is ready for deployment.

headers = {
    "Authorization": wl.auth._bearer_token_str(),
    "Content-Type": "application/json",
}
url = f"{wl.api_endpoint}/v1/api/pipelines/get_publish_status"
response = requests.post(
    url,
    headers=headers,
    json={
        "id": publish_id
        },
)
display(response.json())
pub = response.json()
{'id': 8,
 'pipeline_version_id': 13,
 'pipeline_version_name': '1ea2d089-1127-464d-a980-e087d1f052e2',
 'status': 'Published',
 'created_at': '2023-09-08T18:21:51.987293+00:00',
 'updated_at': '2023-09-08T18:21:51.987293+00:00',
 'created_by': 'aa707604-ec80-495a-a9a1-87774c8086d5',
 'pipeline_url': 'ghcr.io/wallaroolabs/doc-samples/pipelines/edge-pipeline:1ea2d089-1127-464d-a980-e087d1f052e2',
 'engine_url': 'ghcr.io/wallaroolabs/doc-samples/engines/proxy/wallaroo/ghcr.io/wallaroolabs/standalone-mini:v2023.3.0-3798',
 'helm': {'reference': 'ghcr.io/wallaroolabs/doc-samples/charts@sha256:1c19b448ae2adc33c39a954665bba079377a4a4a5bf73f81ebcc4a067eeb3fde',
  'chart': 'ghcr.io/wallaroolabs/doc-samples/charts/edge-pipeline',
  'version': '0.0.1-1ea2d089-1127-464d-a980-e087d1f052e2'},
 'engine_config': {'engine': {'resources': {'limits': {'cpu': 4.0,
     'memory': '3Gi'},
    'requests': {'cpu': 4.0, 'memory': '3Gi'}}},
  'enginelb': {'resources': {'limits': {'cpu': 1.0, 'memory': '512Mi'},
    'requests': {'cpu': 0.2, 'memory': '512Mi'}}},
  'engineAux': {}},
 'error': None,
 'user_images': []}

List Publishes for a Pipeline

A list of publishes created for a specific pipeline is retrieved through the following endpoint.

  • Endpoint:
    • /v1/api/pipelines/list_publishes_for_pipeline
  • Parameters
    • publish_id (Integer Required): The numerical id of the pipeline to retrieve all publishes for.
  • Returns a List of pipeline publishes with the following fields:
    • id (Integer): Numerical Wallaroo id of the published pipeline.
    • pipeline_version_id (Integer): Numerical Wallaroo id of the pipeline version published.
    • status: The status of the pipeline publish. Values include:
      • PendingPublish: The pipeline publication is about to be uploaded or is in the process of being uploaded.
      • Published: The pipeline is published and ready for use.
    • created_at (String): When the published pipeline was created.
    • updated_at (String): When the published pipeline was updated.
    • created_by (String): The email address of the Wallaroo user that created the pipeline publish.
    • pipeline_url (String): The URL of the published pipeline in the edge registry. May be null until the status is Published)
    • engine_url (String): The URL of the published pipeline engine in the edge registry. May be null until the status is Published.
    • helm: The Helm chart information including the following fields:
      • reference (String): The Helm reference.
      • chart (String): The Helm chart URL.
      • version (String): The Helm chart version.
    • engine_config (*wallaroo.deployment_config.DeploymentConfig) | The pipeline configuration included with the published pipeline.

List Publishes for a Pipeline Example

headers = {
    "Authorization": wl.auth._bearer_token_str(),
    "Content-Type": "application/json",
}

url = f"{wl.api_endpoint}/v1/api/pipelines/list_publishes_for_pipeline"

response = requests.post(
    url,
    headers=headers,
    json={"pipeline_id": pipeline_id},
)
display(response.json())
{'pipelines': [{'id': 7,
   'pipeline_version_id': 13,
   'pipeline_version_name': '1ea2d089-1127-464d-a980-e087d1f052e2',
   'status': 'Published',
   'created_at': '2023-09-08T18:17:12.975417+00:00',
   'updated_at': '2023-09-08T18:17:12.975417+00:00',
   'created_by': 'aa707604-ec80-495a-a9a1-87774c8086d5',
   'pipeline_url': 'ghcr.io/wallaroolabs/doc-samples/pipelines/edge-pipeline:1ea2d089-1127-464d-a980-e087d1f052e2',
   'engine_url': 'ghcr.io/wallaroolabs/doc-samples/engines/proxy/wallaroo/ghcr.io/wallaroolabs/standalone-mini:v2023.3.0-3798',
   'helm': {'reference': 'ghcr.io/wallaroolabs/doc-samples/charts@sha256:6e6b2fa3b595b2add4bf177588a131d4493b9c38999ee22a00a34af41332f307',
    'chart': 'ghcr.io/wallaroolabs/doc-samples/charts/edge-pipeline',
    'version': '0.0.1-1ea2d089-1127-464d-a980-e087d1f052e2'},
   'engine_config': {'engine': {'resources': {'limits': {'cpu': 4.0,
       'memory': '3Gi'},
      'requests': {'cpu': 4.0, 'memory': '3Gi'}}},
    'enginelb': {'resources': {'limits': {'cpu': 1.0, 'memory': '512Mi'},
      'requests': {'cpu': 0.2, 'memory': '512Mi'}}},
    'engineAux': {}},
   'error': None,
   'user_images': []},
  {'id': 5,
   'pipeline_version_id': 13,
   'pipeline_version_name': '1ea2d089-1127-464d-a980-e087d1f052e2',
   'status': 'Error',
   'created_at': '2023-09-08T17:44:10.957028+00:00',
   'updated_at': '2023-09-08T17:44:10.957028+00:00',
   'created_by': 'aa707604-ec80-495a-a9a1-87774c8086d5',
   'pipeline_url': None,
   'engine_url': None,
   'helm': None,
   'engine_config': {'engine': {'resources': {'limits': {'cpu': 4.0,
       'memory': '3Gi'},
      'requests': {'cpu': 4.0, 'memory': '3Gi'}}},
    'enginelb': {'resources': {'limits': {'cpu': 1.0, 'memory': '512Mi'},
      'requests': {'cpu': 0.2, 'memory': '512Mi'}}},
    'engineAux': {}},
   'error': 'Authentication failure: ',
   'user_images': []},
  {'id': 4,
   'pipeline_version_id': 13,
   'pipeline_version_name': '1ea2d089-1127-464d-a980-e087d1f052e2',
   'status': 'Published',
   'created_at': '2023-09-08T17:31:35.735893+00:00',
   'updated_at': '2023-09-08T17:31:35.735893+00:00',
   'created_by': 'aa707604-ec80-495a-a9a1-87774c8086d5',
   'pipeline_url': 'ghcr.io/wallaroolabs/doc-samples/pipelines/edge-pipeline:1ea2d089-1127-464d-a980-e087d1f052e2',
   'engine_url': 'ghcr.io/wallaroolabs/doc-samples/engines/proxy/wallaroo/ghcr.io/wallaroolabs/standalone-mini:v2023.3.0-3798',
   'helm': {'reference': 'ghcr.io/wallaroolabs/doc-samples/charts@sha256:819e7476614f99e5d83069fccac4b7eef347b891915625c39978b94718c116e7',
    'chart': 'ghcr.io/wallaroolabs/doc-samples/charts/edge-pipeline',
    'version': '0.0.1-1ea2d089-1127-464d-a980-e087d1f052e2'},
   'engine_config': {'engine': {'resources': {'limits': {'cpu': 4.0,
       'memory': '3Gi'},
      'requests': {'cpu': 4.0, 'memory': '3Gi'}}},
    'enginelb': {'resources': {'limits': {'cpu': 1.0, 'memory': '512Mi'},
      'requests': {'cpu': 0.2, 'memory': '512Mi'}}},
    'engineAux': {}},
   'error': None,
   'user_images': []},
  {'id': 6,
   'pipeline_version_id': 13,
   'pipeline_version_name': '1ea2d089-1127-464d-a980-e087d1f052e2',
   'status': 'Published',
   'created_at': '2023-09-08T18:07:42.61758+00:00',
   'updated_at': '2023-09-08T18:07:42.61758+00:00',
   'created_by': 'aa707604-ec80-495a-a9a1-87774c8086d5',
   'pipeline_url': 'ghcr.io/wallaroolabs/doc-samples/pipelines/edge-pipeline:1ea2d089-1127-464d-a980-e087d1f052e2',
   'engine_url': 'ghcr.io/wallaroolabs/doc-samples/engines/proxy/wallaroo/ghcr.io/wallaroolabs/standalone-mini:v2023.3.0-3798',
   'helm': {'reference': 'ghcr.io/wallaroolabs/doc-samples/charts@sha256:be785f7bbc91a4cad8d5fa15893e1a198e507242e801e40322d5d61ee537906e',
    'chart': 'ghcr.io/wallaroolabs/doc-samples/charts/edge-pipeline',
    'version': '0.0.1-1ea2d089-1127-464d-a980-e087d1f052e2'},
   'engine_config': {'engine': {'resources': {'limits': {'cpu': 4.0,
       'memory': '3Gi'},
      'requests': {'cpu': 4.0, 'memory': '3Gi'}}},
    'enginelb': {'resources': {'limits': {'cpu': 1.0, 'memory': '512Mi'},
      'requests': {'cpu': 0.2, 'memory': '512Mi'}}},
    'engineAux': {}},
   'error': None,
   'user_images': []},
  {'id': 8,
   'pipeline_version_id': 13,
   'pipeline_version_name': '1ea2d089-1127-464d-a980-e087d1f052e2',
   'status': 'Publishing',
   'created_at': '2023-09-08T18:21:51.987293+00:00',
   'updated_at': '2023-09-08T18:21:51.987293+00:00',
   'created_by': 'aa707604-ec80-495a-a9a1-87774c8086d5',
   'pipeline_url': None,
   'engine_url': None,
   'helm': None,
   'engine_config': {'engine': {'resources': {'limits': {'cpu': 4.0,
       'memory': '3Gi'},
      'requests': {'cpu': 4.0, 'memory': '3Gi'}}},
    'enginelb': {'resources': {'limits': {'cpu': 1.0, 'memory': '512Mi'},
      'requests': {'cpu': 0.2, 'memory': '512Mi'}}},
    'engineAux': {}},
   'error': None,
   'user_images': []}]}

DevOps Deployment

We now have our pipeline published to our Edge Registry service. We can deploy this in a x86 environment running Docker that is logged into the same registry service that we deployed to.

For more details, check with the documentation on your artifact service. The following are provided for the three major cloud services:

DevOps - Pipeline Edge Deployment

Once a pipeline is deployed to the Edge Registry service, it can be deployed in environments such as Docker, Kubernetes, or similar container running services by a DevOps engineer.

Docker Deployment

First, the DevOps engineer must authenticate to the same OCI Registry service used for the Wallaroo Edge Deployment registry.

For more details, check with the documentation on your artifact service. The following are provided for the three major cloud services:

For the deployment, the engine URL is specified with the following environmental variables:

  • DEBUG (true|false): Whether to include debug output.
  • OCI_REGISTRY: The URL of the registry service.
  • CONFIG_CPUS: The number of CPUs to use.
  • OCI_USERNAME: The edge registry username.
  • OCI_PASSWORD: The edge registry password or token.
  • PIPELINE_URL: The published pipeline URL.

Docker Deployment Example

Using our sample environment, here’s sample deployment using Docker with a computer vision ML model, the same used in the Wallaroo Use Case Tutorials Computer Vision: Retail tutorials.

docker run -p 8080:8080 \
    -e DEBUG=true -e OCI_REGISTRY={your registry server} \
    -e CONFIG_CPUS=1 \
    -e OCI_USERNAME=oauth2accesstoken \
    -e OCI_PASSWORD={registry token here} \
    -e PIPELINE_URL={your registry server}/pipelines/edge-cv-retail:bf70eaf7-8c11-4b46-b751-916a43b1a555 \
    {your registry server}/engine:v2023.3.0-main-3707

Docker Compose Deployment

For users who prefer to use docker compose, the following sample compose.yaml file is used to launch the Wallaroo Edge pipeline. This is the same used in the Wallaroo Use Case Tutorials Computer Vision: Retail tutorials.

services:
  engine:
    image: {Your Engine URL}
    ports:
      - 8080:8080
    environment:
      PIPELINE_URL: {Your Pipeline URL}
      OCI_REGISTRY: {Your Edge Registry URL}
      OCI_USERNAME:  {Your Registry Username}
      OCI_PASSWORD: {Your Token or Password}
      CONFIG_CPUS: 1

For example:

services:
  engine:
    image: sample-registry.com/engine:v2023.3.0-main-3707
    ports:
      - 8080:8080
    environment:
      PIPELINE_URL: sample-registry.com/pipelines/edge-cv-retail:bf70eaf7-8c11-4b46-b751-916a43b1a555
      OCI_REGISTRY: sample-registry.com
      OCI_USERNAME:  _json_key_base64
      OCI_PASSWORD: abc123
      CONFIG_CPUS: 1

Docker Compose Deployment Example

The deployment and undeployment is then just a simple docker compose up and docker compose down. The following shows an example of deploying the Wallaroo edge pipeline using docker compose.

docker compose up
[+] Running 1/1
 ✔ Container cv_data-engine-1  Recreated                                                                                                                                                                 0.5s
Attaching to cv_data-engine-1
cv_data-engine-1  | Wallaroo Engine - Standalone mode
cv_data-engine-1  | Login Succeeded
cv_data-engine-1  | Fetching manifest and config for pipeline: sample-registry.com/pipelines/edge-cv-retail:bf70eaf7-8c11-4b46-b751-916a43b1a555
cv_data-engine-1  | Fetching model layers
cv_data-engine-1  | digest: sha256:c6c8869645962e7711132a7e17aced2ac0f60dcdc2c7faa79b2de73847a87984
cv_data-engine-1  |   filename: c6c8869645962e7711132a7e17aced2ac0f60dcdc2c7faa79b2de73847a87984
cv_data-engine-1  |   name: resnet-50
cv_data-engine-1  |   type: model
cv_data-engine-1  |   runtime: onnx
cv_data-engine-1  |   version: 693e19b5-0dc7-4afb-9922-e3f7feefe66d
cv_data-engine-1  |
cv_data-engine-1  | Fetched
cv_data-engine-1  | Starting engine
cv_data-engine-1  | Looking for preexisting `yaml` files in //modelconfigs
cv_data-engine-1  | Looking for preexisting `yaml` files in //pipelines

Helm Deployment

Published pipelines can be deployed through the use of helm charts.

Helm deployments take up to two steps - the first step is in retrieving the required values.yaml and making updates to override.

  1. Pull the helm charts from the published pipeline. The two fields are the Helm Chart URL and the Helm Chart version to specify the OCI . This typically takes the format of:
helm pull oci://{published.helm_chart_url} --version {published.helm_chart_version}
  1. Extract the tgz file and copy the values.yaml and copy the values used to edit engine allocations, etc. The following are required for the deployment to run:
ociRegistry:
  registry: {your registry service}
  username:  {registry username here}
  password: {registry token here}

Store this into another file, suc as local-values.yaml.

  1. Create the namespace to deploy the pipeline to. For example, the namespace wallaroo-edge-pipeline would be:
kubectl create -n wallaroo-edge-pipeline
  1. Deploy the helm installation with helm install through one of the following options:

    1. Specify the tgz file that was downloaded and the local values file. For example:

      helm install --namespace {namespace} --values {local values file} {helm install name} {tgz path}
      
    2. Specify the expended directory from the downloaded tgz file.

      helm install --namespace {namespace} --values {local values file} {helm install name} {helm directory path}
      
    3. Specify the Helm Pipeline Helm Chart and the Pipeline Helm Version.

      helm install --namespace {namespace} --values {local values file} {helm install name} oci://{published.helm_chart_url} --version {published.helm_chart_version}
      
  2. Once deployed, the DevOps engineer will have to forward the appropriate ports to the svc/engine-svc service in the specific pipeline. For example, using kubectl port-forward to the namespace ccfraud that would be:

    kubectl port-forward svc/engine-svc -n ccfraud01 8080 --address 0.0.0.0`
    
docker_compose = f'''
services:
  engine:
    image: {pub['engine_url']}
    ports:
      - 8080:8080
    environment:
      PIPELINE_URL: {pub['pipeline_url']}
      OCI_USERNAME: YOUR USERNAME 
      OCI_PASSWORD: YOUR PASSWORD OR TOKEN
      OCI_REGISTRY: ghcr.io
      CONFIG_CPUS: 1
'''

print(docker_compose)
services:
  engine:
    image: ghcr.io/wallaroolabs/doc-samples/engines/proxy/wallaroo/ghcr.io/wallaroolabs/standalone-mini:v2023.3.0-3798
    ports:
      - 8080:8080
    environment:
      PIPELINE_URL: ghcr.io/wallaroolabs/doc-samples/pipelines/edge-pipeline:1ea2d089-1127-464d-a980-e087d1f052e2
      OCI_USERNAME: YOUR USERNAME 
      OCI_PASSWORD: YOUR PASSWORD OR TOKEN
      OCI_REGISTRY: ghcr.io
      CONFIG_CPUS: 4

Edge Deployed Pipeline API Endpoints

Once deployed, we can check the pipelines and models available. We’ll use a curl command, but any HTTP based request will work the same way.

The endpoint /pipelines returns:

  • id (String): The name of the pipeline.
  • status (String): The status as either Running, or Error if there are any issues.

For this example, the deployment is made on a machine called testboy.local. Replace this URL with the URL of you edge deployment.

!curl testboy.local:8080/pipelines
{"pipelines":[{"id":"edge-pipeline","status":"Running"}]}

The endpoint /models returns a List of models with the following fields:

  • name (String): The model name.
  • sha (String): The sha hash value of the ML model.
  • status (String): The status of either Running or Error if there are any issues.
  • version (String): The model version. This matches the version designation used by Wallaroo to track model versions in UUID format.
!curl testboy.local:8080/models
{"models":[{"name":"ccfraud","sha":"054810e3e3ebbdd34438d9c1a08ed6a6680ef10bf97b9223f78ebf38e14b3b52","status":"Running","version":"4b28d9f8-31ad-4f4b-a262-a2196530c3d0"}]}

Edge Inference Endpoint

The inference endpoint takes the following pattern:

  • /pipelines/{pipeline-name}: The pipeline-name is the same as returned from the /pipelines endpoint as id.

Wallaroo inference endpoint URLs accept the following data inputs through the Content-Type header:

  • Content-Type: application/vnd.apache.arrow.file: For Apache Arrow tables.
  • Content-Type: application/json; format=pandas-records: For pandas DataFrame in record format.

Once deployed, we can perform an inference through the deployment URL.

The endpoint returns Content-Type: application/json; format=pandas-records by default with the following fields:

  • check_failures (List[Integer]): Whether any validation checks were triggered. For more information, see Wallaroo SDK Essentials Guide: Pipeline Management: Anomaly Testing.
  • elapsed (List[Integer]): A list of time in nanoseconds for:
    • [0] The time to serialize the input.
    • [1…n] How long each step took.
  • model_name (String): The name of the model used.
  • model_version (String): The version of the model in UUID format.
  • original_data: The original input data. Returns null if the input may be too long for a proper return.
  • outputs (List): The outputs of the inference result separated by data type, where each data type includes:
    • data: The returned values.
    • dim (List[Integer]): The dimension shape returned.
    • v (Integer): The vector shape of the data.
  • pipeline_name (String): The name of the pipeline.
  • shadow_data: Any shadow deployed data inferences in the same format as outputs.
  • time (Integer): The time since UNIX epoch.
!curl -X POST testboy.local:8080/pipelines/edge-pipeline -H "Content-Type: application/vnd.apache.arrow.file" --data-binary @./data/cc_data_10k.arrow
[{"check_failures":[],"elapsed":[1831692,4085791],"model_name":"ccfraud","model_version":"4b28d9f8-31ad-4f4b-a262-a2196530c3d0","original_data":null,"outputs":[{"Float":{"data":[1.0094895362854004,1.0094895362854004,1.0094895362854004,1.0094895362854004,-1.8477439880371094e-6,-0.00004494190216064453,-0.00009369850158691406,-0.0000832676887512207,-0.00008344650268554688,0.0004897117614746094,0.0006609857082366943,0.00007578730583190918,-0.00010061264038085938,-0.000519871711730957,-3.7550926208496094e-6,-0.00010895729064941406,-0.00017696619033813477,-0.000028371810913085938,0.00002181529998779297,-0.00008505582809448242,-0.000049233436584472656,0.00020524859428405762,0.00001677870750427246,-0.00008910894393920898,0.00008806586265563965,0.0002167224884033203,-0.00003045797348022461,-0.0001615285873413086,-0.00007712841033935547,-8.046627044677734e-6,-0.000048100948333740234,-0.00013583898544311523,-0.000014126300811767578,-0.00015842914581298828,-0.00004863739013671875,0.0000731050968170166,-7.212162017822266e-6,0.0005553662776947021,7.420778274536133e-6,9.000301361083984e-6,0.00011602044105529785,0.00005555152893066406,-0.00020551681518554688,0.0006919503211975098,-0.00003838539123535156,-0.00010466575622558594,0.000025719404220581055,0.00022289156913757324,-0.00014388561248779297,0.00006046891212463379,0.0006777942180633545,-0.0006906390190124512,-0.000011146068572998047,-0.0000692605972290039,-4.172325134277344e-6,0.00008225440979003906,0.0013971328735351562,-0.00010895729064941406,-0.00002586841583251953,-0.00024509429931640625,0.0001341700553894043,0.0000641942024230957,-0.00023108720779418945,0.00012108683586120605,-0.000026285648345947266,-0.00005835294723510742,-0.000056803226470947266,0.0002706944942474365,-9.298324584960938e-6,0.0013747215270996094,0.00010889768600463867,0.0001391768455505371,0.00033020973205566406,-2.9206275939941406e-6,0.00009962916374206543,-0.000033855438232421875,-0.00003886222839355469,0.00020307302474975586,0.00041168928146362305,0.00003641843795776367,0.0007800459861755371,-0.00003427267074584961,-0.0003724098205566406,6.556510925292969e-7,-0.000026047229766845703,-0.00004279613494873047,-0.00003844499588012695,0.0000171661376953125,0.000019282102584838867,0.00004598498344421387,-0.00011116266250610352,0.0008075833320617676,0.0003064572811126709,-0.000026226043701171875,0.00022932887077331543,-0.00015473365783691406,0.000012218952178955078,0.0007858872413635254,0.0010485351085662842,-0.000953972339630127,0.00006034970283508301,-0.00013965368270874023,0.00014868378639221191,-0.0000960230827331543,0.00022268295288085938,-0.00002372264862060547,0.00015243887901306152,0.000058531761169433594,-0.00020366907119750977,-0.00003266334533691406,0.000046372413635253906,0.0003497898578643799,-0.00004309415817260742,-0.00007253885269165039,0.00013744831085205078,-0.00005334615707397461,0.00008705258369445801,0.00015547871589660645,0.00010827183723449707,0.00015839934349060059,-0.000951230525970459,0.0005430281162261963,0.0006096959114074707,0.00005373358726501465,0.00014838576316833496,-5.543231964111328e-6,-0.000038564205169677734,0.0002301037311553955,0.0002828240394592285,0.0000254213809967041,0.00009182095527648926,0.00012382864952087402,0.000030219554901123047,-0.0001442432403564453,-0.0010399818420410156,0.000041604042053222656,0.00030282139778137207,0.0004699230194091797,0.00001004338264465332,-8.761882781982422e-6,0.0006243288516998291,-0.00013703107833862305,0.0004756748676300049,0.00006377696990966797,0.00004094839096069336,-0.00004678964614868164,-0.000261843204498291,0.000060230493545532227,-0.00003314018249511719,-0.00006818771362304688,-0.000022351741790771484,0.0002624392509460449,0.00011542439460754395,-0.0001252889633178711,0.00009205937385559082,0.000047087669372558594,-0.00013875961303710938,0.00016242265701293945,0.00018420815467834473,0.0000667572021484375,-0.00004190206527709961,1.0031051635742188,8.374452590942383e-6,-0.000011146068572998047,-0.00010162591934204102,-0.000054776668548583984,-0.00003916025161743164,0.00008448958396911621,0.0006806254386901855,0.00007832050323486328,-0.00006818771362304688,7.957220077514648e-6,0.000030159950256347656,1.4007091522216797e-6,0.000012487173080444336,0.00011420249938964844,0.000038564205169677734,-0.00006175041198730469,0.00010338425636291504,0.0006650686264038086,6.705522537231445e-6,0.0000705718994140625,-0.00001341104507446289,-0.00016045570373535156,-0.00001436471939086914,8.821487426757812e-6,-0.00004565715789794922,0.00005206465721130371,0.0000788569450378418,-0.00005453824996948242,-0.00010496377944946289,-0.000057578086853027344,0.000014543533325195312,0.00007987022399902344,0.00005200505256652832,-0.00004106760025024414,0.00017750263214111328,0.00004857778549194336,0.00022241473197937012,5.8710575103759766e-6,0.00012260675430297852,-0.00009238719940185547,-0.00009495019912719727,-0.00006073713302612305,-0.0000603795051574707,-0.00002372264862060547,0.0003605782985687256,0.00006362795829772949,0.0001945197582244873,-0.00007486343383789062,0.0003400444984436035,0.0001691877841949463,-0.00011646747589111328,-0.00003045797348022461,1.4007091522216797e-6,0.00003993511199951172,-0.00004845857620239258,0.00029987096786499023,-0.00008589029312133789,0.00002962350845336914,-8.165836334228516e-6,-0.00006395578384399414,0.000011980533599853516,-0.000048041343688964844,0.000013172626495361328,0.00007236003875732422,-0.00003057718276977539,0.0001099705696105957,0.00006970763206481934,0.0026289522647857666,0.00034049153327941895,0.00022974610328674316,-0.00011205673217773438,0.00008842349052429199,0.0001296699047088623,-0.00002199411392211914,-0.00011396408081054688,1.6391277313232422e-6,-0.00009763240814208984,7.0035457611083984e-6,-0.00025451183319091797,0.00005170702934265137,-0.0003129243850708008,0.0002517402172088623,-0.00006282329559326172,-0.00003266334533691406,0.000010371208190917969,-0.00007551908493041992,0.000017523765563964844,0.0002104043960571289,0.00024232268333435059,0.00011464953422546387,0.000016510486602783203,-0.00013703107833862305,0.0002478361129760742,0.00009262561798095703,-0.00012320280075073242,0.00013723969459533691,-0.0001881122589111328,-0.00006717443466186523,-0.000027894973754882812,0.0001271665096282959,0.00034058094024658203,-0.000050067901611328125,-0.00013691186904907227,-0.00003516674041748047,-0.0000673532485961914,-0.000025987625122070312,-0.0007557272911071777,0.00003692507743835449,0.000291287899017334,0.000023066997528076172,0.00007557868957519531,-0.00021779537200927734,0.0001627206802368164,0.00006014108657836914,0.0001519322395324707,8.255243301391602e-6,0.000011712312698364258,0.00004503130912780762,-0.00007915496826171875,0.00009515881538391113,-0.00006175041198730469,0.00008749961853027344,-0.000049233436584472656,0.000013053417205810547,-0.00006175041198730469,-0.00009000301361083984,0.000032454729080200195,0.000038743019104003906,0.00017514824867248535,0.000022619962692260742,0.00015926361083984375,-0.00010162591934204102,0.00005957484245300293,0.00046065449714660645,-4.172325134277344e-6,0.00011304020881652832,-0.00002872943878173828,-0.0000616908073425293,-2.9206275939941406e-6,0.00009137392044067383,-0.0000407099723815918,0.00010654330253601074,0.00010898709297180176,0.00014150142669677734,-0.00004857778549194336,0.00007382035255432129,-7.092952728271484e-6,-0.000019490718841552734,0.0000254213809967041,0.00002682209014892578,0.0014048218727111816,0.00003522634506225586,0.001670747995376587,-0.00003314018249511719,-0.000051140785217285156,0.00006148219108581543,-0.0001386404037475586,0.00016745924949645996,-0.00005173683166503906,-0.00012826919555664062,-0.00011724233627319336,-0.000025033950805664062,-0.00008755922317504883,-0.00004583597183227539,-0.00014722347259521484,-0.00033473968505859375,-0.00005125999450683594,-0.0013584494590759277,0.00020137429237365723,-0.00010502338409423828,-0.0004221796989440918,-0.00008535385131835938,0.00017812848091125488,0.000019818544387817383,0.00001385807991027832,-0.00004857778549194336,-0.00006175041198730469,-0.00001996755599975586,0.0003409385681152344,-0.00009971857070922852,0.000023305416107177734,-0.00009584426879882812,0.0004963576793670654,-0.00014019012451171875,0.00020310282707214355,-0.000027120113372802734,-1.1920928955078125e-6,0.00012561678886413574,-0.00004220008850097656,0.00016936659812927246,-0.000019848346710205078,-0.00004404783248901367,-0.0001474618911743164,0.00023934245109558105,-0.00006943941116333008,0.000010371208190917969,-1.7881393432617188e-7,-0.0016776323318481445,-0.000028133392333984375,-9.298324584960938e-6,0.00020357966423034668,0.00007766485214233398,-0.00005346536636352539,0.00007814168930053711,-0.00009500980377197266,-0.00001996755599975586,-0.00004202127456665039,0.0030659139156341553,0.00007766485214233398,0.000040590763092041016,0.00007304549217224121,0.00021648406982421875,-8.344650268554688e-7,0.00035637617111206055,0.0003491342067718506,-0.00001150369644165039,-0.000049233436584472656,-0.00007539987564086914,-5.364418029785156e-7,-0.00007033348083496094,0.001573026180267334,0.000011712312698364258,-0.00008821487426757812,-0.00008380413055419922,0.000051409006118774414,0.000037342309951782227,-0.00006765127182006836,0.0005421638488769531,-0.00006622076034545898,0.000021398067474365234,-0.00003415346145629883,-0.00016832351684570312,-0.000049054622650146484,-9.298324584960938e-6,-0.00004029273986816406,-0.00024503469467163086,-0.00015115737915039062,0.00006666779518127441,0.00016412138938903809,0.000011980533599853516,-9.000301361083984e-6,-0.000019788742065429688,0.000352710485458374,-0.000037670135498046875,0.0000426173210144043,0.0003161132335662842,0.0002676844596862793,0.0002047419548034668,-0.000017583370208740234,-0.000268399715423584,9.000301361083984e-6,-0.00011771917343139648,-0.00002872943878173828,0.00005939602851867676,0.0005748867988586426,0.0002168118953704834,0.00011768937110900879,-0.00001823902130126953,-0.00009167194366455078,0.00010922551155090332,-0.00003254413604736328,0.00010541081428527832,0.0013660788536071777,-0.0002314448356628418,-5.424022674560547e-6,0.00002041459083557129,0.00013369321823120117,-0.000019073486328125,0.0004660487174987793,-0.000048279762268066406,-5.900859832763672e-6,0.002194702625274658,-0.00008296966552734375,0.00016680359840393066,-0.000052928924560546875,-2.9206275939941406e-6,-0.00010597705841064453,0.00006327033042907715,0.000562518835067749,-0.0007330179214477539,-0.000021457672119140625,-0.00008469820022583008,0.000058084726333618164,0.00005015730857849121,0.00018325448036193848,-0.000030279159545898438,-0.00006848573684692383,-0.00001341104507446289,-0.00003254413604736328,0.0006752610206604004,-0.0003809928894042969,0.0001696944236755371,-6.4373016357421875e-6,0.00015291571617126465,-0.00004929304122924805,-0.000013887882232666016,0.0006453394889831543,-0.00008928775787353516,0.00009682774543762207,-0.00008690357208251953,7.748603820800781e-6,-0.0000540614128112793,0.0001620650291442871,0.00020524859428405762,0.00006130337715148926,-0.000011026859283447266,-0.00006645917892456055,0.00038427114486694336,-0.000010609626770019531,-0.00019943714141845703,0.00016736984252929688,-0.00006848573684692383,-0.0010878443717956543,-0.000021457672119140625,0.0006114840507507324,0.0007844865322113037,0.00006723403930664062,-0.000011205673217773438,0.000056415796279907227,0.000023305416107177734,-0.00003266334533691406,-0.00007069110870361328,-0.000011682510375976562,0.000032275915145874023,-0.0000623464584350586,0.00015985965728759766,-0.00010776519775390625,-0.00004285573959350586,0.0002612173557281494,0.000039130449295043945,0.000017911195755004883,-3.933906555175781e-6,-0.00007611513137817383,0.00012165307998657227,-0.00003266334533691406,-0.00007635354995727539,0.001859515905380249,-0.00006598234176635742,-0.0002478361129760742,0.0005283355712890625,-0.00015586614608764648,-0.00007998943328857422,-0.0000374913215637207,0.00015607476234436035,0.00005653500556945801,-0.0001461505889892578,-0.0001703500747680664,-0.00011497735977172852,0.00015872716903686523,0.00003629922866821289,0.0005819499492645264,0.0002072751522064209,-0.00010275840759277344,0.0006814897060394287,0.000024944543838500977,-0.00006175041198730469,-0.00010985136032104492,-0.00032955408096313477,-0.00007462501525878906,-2.980232238769531e-7,0.00002390146255493164,-0.00041353702545166016,0.00014549493789672852,-0.0004501938819885254,-0.00006175041198730469,0.00004735589027404785,0.00018990039825439453,2.5331974029541016e-6,0.000028908252716064453,-0.0004271268844604492,-0.0007519125938415527,-0.0019210577011108398,-0.00004029273986816406,-0.00004220008850097656,0.000060886144638061523,0.000553429126739502,-0.00003975629806518555,0.00006702542304992676,0.0007629990577697754,-0.00008744001388549805,-0.000056684017181396484,0.0006085634231567383,-0.00003838539123535156,-0.000047087669372558594,0.00039055943489074707,0.0005201399326324463,4.202127456665039e-6,-0.00007230043411254883,0.0000667572021484375,-0.000045299530029296875,0.00008890032768249512,-0.00012606382369995117,0.0001658797264099121,-0.00003999471664428711,-0.00005936622619628906,-0.0002568960189819336,0.00007066130638122559,-0.00006455183029174805,-0.00031310319900512695,-0.000053763389587402344,-0.000041484832763671875,0.00022780895233154297,-0.00007712841033935547,0.00035378336906433105,0.0008490979671478271,-0.00001150369644165039,8.64267349243164e-6,-0.0001227855682373047,0.001187354326248169,0.00001341104507446289,7.152557373046875e-6,0.000040590763092041016,0.000037044286727905273,0.0020221471786499023,-0.00005513429641723633,-0.0001303553581237793,-0.00005453824996948242,-0.000057756900787353516,-8.761882781982422e-6,-0.00004869699478149414,-0.00009393692016601562,-0.0000922083854675293,0.00021260976791381836,-0.0002377629280090332,-0.00012499094009399414,0.00007683038711547852,0.00019982457160949707,-0.000031113624572753906,0.00007963180541992188,-0.00003254413604736328,0.000024139881134033203,0.00015729665756225586,0.001053154468536377,-0.0001131892204284668,0.00010439753532409668,0.0004248321056365967,-0.0000712275505065918,0.00003272294998168945,0.002625793218612671,0.00015535950660705566,0.000023305416107177734,-0.00006729364395141602,-0.00006306171417236328,-0.00016045570373535156,7.957220077514648e-6,-0.000017583370208740234,0.00002905726432800293,0.00007387995719909668,0.000056415796279907227,-0.00016051530838012695,0.0006984174251556396,0.0016936957836151123,-0.00003266334533691406,-0.00005233287811279297,-0.00001609325408935547,-0.0002071857452392578,-0.0002918839454650879,-0.000048279762268066406,-0.000021696090698242188,-0.00003999471664428711,-5.900859832763672e-6,0.00012260675430297852,0.00006961822509765625,-1.8477439880371094e-6,0.008613228797912598,0.0001391768455505371,-0.000044465065002441406,0.00011470913887023926,0.0001399517059326172,0.00003293156623840332,-0.00003415346145629883,-0.00022113323211669922,0.0002512037754058838,-0.00013506412506103516,-0.0010699033737182617,-0.0001405477523803711,0.000040590763092041016,-5.602836608886719e-6,0.0005582273006439209,0.00010216236114501953,-0.0002544522285461426,-0.00005161762237548828,-0.00002092123031616211,0.00002625584602355957,0.00004920363426208496,-0.00022113323211669922,-0.00003147125244140625,-0.000047087669372558594,0.0012041926383972168,2.2649765014648438e-6,0.000011056661605834961,0.00008317828178405762,0.0002574622631072998,-0.000056743621826171875,-0.00005841255187988281,0.00032591819763183594,-0.00013452768325805664,-0.000017583370208740234,-0.00011199712753295898,0.000055283308029174805,0.00007304549217224121,0.00005412101745605469,0.00010669231414794922,0.000015676021575927734,-1.8477439880371094e-6,-0.00014919042587280273,0.00005990266799926758,7.450580596923828e-7,0.00020956993103027344,-0.00013208389282226562,0.00017517805099487305,0.0000667572021484375,0.000014871358871459961,-0.000052034854888916016,0.000058531761169433594,-0.000039577484130859375,0.00005969405174255371,0.000035136938095092773,-0.00007867813110351562,0.00006723403930664062,-0.00006264448165893555,-0.00003260374069213867,-0.00004947185516357422,-0.000027954578399658203,0.00025528669357299805,-0.00003266334533691406,0.00017511844635009766,-0.000018656253814697266,0.00038802623748779297,8.374452590942383e-6,0.00008296966552734375,-0.00006264448165893555,0.0012904107570648193,0.00015109777450561523,0.0011358857154846191,-0.00008356571197509766,-0.00017273426055908203,-0.00008046627044677734,-0.00008004903793334961,0.0001869797706604004,0.00008097290992736816,-0.000054836273193359375,0.00011780858039855957,-0.00011783838272094727,-8.52346420288086e-6,-0.000012159347534179688,4.559755325317383e-6,-0.000052869319915771484,-0.00032824277877807617,0.00022241473197937012,0.00011655688285827637,0.00021776556968688965,0.00009191036224365234,0.00001677870750427246,0.00020399689674377441,-0.00002765655517578125,0.00003337860107421875,0.0008656978607177734,0.00002753734588623047,-0.000021219253540039062,-0.000021159648895263672,0.00013762712478637695,0.00005939602851867676,-0.00024515390396118164,0.00006103515625,0.000015109777450561523,0.00004920363426208496,-0.00008690357208251953,0.0004245340824127197,-0.00003463029861450195,-4.649162292480469e-6,-0.0003299117088317871,-0.00007665157318115234,-0.00011205673217773438,-0.000059723854064941406,-0.0001443028450012207,0.0013949573040008545,7.62939453125e-6,0.0007587075233459473,0.000040590763092041016,0.00013449788093566895,0.0005497932434082031,-0.00003904104232788086,0.000059217214584350586,-0.0000578761100769043,-0.00016045570373535156,-0.00003451108932495117,0.00005283951759338379,-0.00013113021850585938,0.00005415081977844238,-0.000855565071105957,0.000051409006118774414,-0.00004279613494873047,0.000138014554977417,-0.000050067901611328125,-0.00006276369094848633,-0.0003508329391479492,0.00016322731971740723,-9.715557098388672e-6,0.00006318092346191406,-0.000015974044799804688,-0.000057756900787353516,0.0001418590545654297,-3.6954879760742188e-6,0.0001640617847442627,0.0005311965942382812,-0.0006833672523498535,7.778406143188477e-6,-0.0001595616340637207,0.0004950761795043945,0.00011652708053588867,-0.00012344121932983398,7.420778274536133e-6,0.0005854666233062744,0.000058323144912719727,0.0004997849464416504,0.00010451674461364746,-0.0000445246696472168,-0.00005638599395751953,-0.0000807642936706543,0.00039327144622802734,-0.00002372264862060547,-0.00008660554885864258,-7.748603820800781e-7,0.00026237964630126953,-0.00011301040649414062,0.00016757845878601074,-0.00010389089584350586,0.00034815073013305664,-0.000040590763092041016,0.00032773613929748535,0.000030249357223510742,-0.00039887428283691406,-0.00003319978713989258,-0.00010836124420166016,0.0000152587890625,-0.00001245737075805664,-0.000012814998626708984,0.00008043646812438965,-0.00006759166717529297,0.004439592361450195,-0.00006645917892456055,0.0006435513496398926,-0.00003653764724731445,-0.0002791285514831543,-0.00016379356384277344,0.000012874603271484375,0.0005150735378265381,-0.00006687641143798828,0.00005841255187988281,0.00005939602851867676,-0.000022709369659423828,0.00006777048110961914,0.0012004077434539795,0.00008353590965270996,-0.00009953975677490234,-0.00007104873657226562,0.0002047717571258545,0.000015944242477416992,0.00017377734184265137,-0.00009417533874511719,0.00018593668937683105,0.000523298978805542,-0.0006039142608642578,0.00020459294319152832,0.0019805729389190674,0.0000222623348236084,0.00005188584327697754,-0.00030815601348876953,0.000050067901611328125,0.000056415796279907227,0.00018021464347839355,0.000042110681533813477,0.00010761618614196777,7.778406143188477e-6,0.000010877847671508789,0.000011056661605834961,0.000010371208190917969,-5.4836273193359375e-6,0.000012248754501342773,0.00014084577560424805,0.000020951032638549805,0.00031754374504089355,0.0004915893077850342,-0.00018334388732910156,0.000017583370208740234,-0.00047284364700317383,0.00005391240119934082,0.00005137920379638672,0.000029385089874267578,0.000026464462280273438,0.00008949637413024902,0.00022846460342407227,0.0002377331256866455,9.000301361083984e-6,0.00024303793907165527,-0.0001838207244873047,0.0002231597900390625,-8.881092071533203e-6,9.59634780883789e-6,-0.0001849532127380371,-0.0003368854522705078,0.00008615851402282715,0.00004723668098449707,0.0006887316703796387,-0.00006175041198730469,7.12275505065918e-6,0.00015872716903686523,0.000011056661605834961,0.00006052851676940918,0.0005851984024047852,0.00016483664512634277,0.0009807050228118896,0.00011464953422546387,0.00007292628288269043,-0.00011301040649414062,-0.00006622076034545898,0.00011947751045227051,0.00007915496826171875,-0.000058591365814208984,0.00007042288780212402,-0.000049233436584472656,-0.000026226043701171875,0.000024259090423583984,0.0003885626792907715,0.00011587142944335938,0.00012484192848205566,0.00009378790855407715,-0.00008535385131835938,0.000039517879486083984,0.001344531774520874,-0.00008475780487060547,0.00007766485214233398,0.001497119665145874,-0.0002904534339904785,0.0001322329044342041,0.0004950761795043945,-0.00003403425216674805,-0.0000553131103515625,-0.00015795230865478516,0.0005057156085968018,-0.00040262937545776367,0.0008079111576080322,0.0001640021800994873,-0.00012570619583129883,0.00005409121513366699,-0.00014066696166992188,-0.00006854534149169922,-0.00002104043960571289,0.00006321072578430176,-0.000432431697845459,0.000056415796279907227,0.00020197033882141113,0.00005334615707397461,-0.0020911097526550293,0.000041425228118896484,0.00004228949546813965,3.8743019104003906e-7,0.0009822249412536621,-0.0005515813827514648,0.0005631446838378906,-0.00010466575622558594,-0.00007265806198120117,-0.00005745887756347656,0.00025767087936401367,0.000044733285903930664,0.00003701448440551758,0.000035643577575683594,0.00011068582534790039,-0.00001239776611328125,0.00023868680000305176,-0.00008052587509155273,0.00021761655807495117,-0.00013256072998046875,0.00004029273986816406,-0.00008046627044677734,0.000011593103408813477,-0.000050127506256103516,-0.00005918741226196289,0.9965696334838867,-0.0008934736251831055,1.1026859283447266e-6,0.0003985166549682617,0.000039130449295043945,0.0010131001472473145,0.0005317330360412598,0.00009769201278686523,-0.00022274255752563477,-0.00003910064697265625,-0.00134962797164917,0.0003387928009033203,0.0001786649227142334,0.00005182623863220215,0.00018659234046936035,-0.00004595518112182617,-0.00006395578384399414,0.0004660487174987793,-0.000030875205993652344,0.0004372894763946533,0.0001856684684753418,-0.000020742416381835938,0.0000648796558380127,-0.000017344951629638672,-0.0008408427238464355,-0.00008678436279296875,0.00031766295433044434,-0.00012040138244628906,0.0004812479019165039,0.00007590651512145996,0.0000616610050201416,-0.0011248588562011719,-0.0001601576805114746,-0.00020951032638549805,0.00026991963386535645,0.00071677565574646,0.00007534027099609375,0.00004082918167114258,0.0001093745231628418,0.00005581974983215332,0.00005221366882324219,0.00020304322242736816,-0.000045299530029296875,-0.0001806020736694336,-0.000043392181396484375,0.00014150142669677734,-0.0000985860824584961,0.0005464255809783936,-2.980232238769531e-7,0.00006115436553955078,0.00010135769844055176,0.0002200603485107422,-4.470348358154297e-6,0.00002962350845336914,-0.00005924701690673828,-0.00014603137969970703,-0.00018286705017089844,-0.00006002187728881836,-0.00003254413604736328,0.00022280216217041016,-7.450580596923828e-6,-0.00003910064697265625,-0.00002467632293701172,0.0000826418399810791,0.00003764033317565918,-0.00025969743728637695,0.00010520219802856445,-0.000037670135498046875,-0.00009328126907348633,-0.00005120038986206055,-0.00017708539962768555,-0.000033736228942871094,-0.00014472007751464844,0.00023701786994934082,-0.00009149312973022461,0.000011056661605834961,-0.00046384334564208984,-0.00008732080459594727,0.00008612871170043945,0.0000991523265838623,0.00006970763206481934,0.00001767277717590332,-0.00005990266799926758,-0.00013267993927001953,-0.00009244680404663086,-8.881092071533203e-6,0.00005564093589782715,0.0001270771026611328,-0.000025391578674316406,-0.000013470649719238281,-0.00007164478302001953,0.00007304549217224121,0.0016810297966003418,0.000013053417205810547,-0.0001380443572998047,-0.0000985264778137207,1.2814998626708984e-6,0.0001932382583618164,0.00007447600364685059,0.00010457634925842285,0.00022715330123901367,-0.00007086992263793945,0.00008016824722290039,0.00007963180541992188,0.0008942782878875732,0.00005227327346801758,-0.0000584721565246582,-0.00028645992279052734,0.00008612871170043945,-0.00025194883346557617,0.05461674928665161,-0.00025266408920288086,-0.000024378299713134766,-7.510185241699219e-6,-0.00009459257125854492,-0.000060558319091796875,0.0007780492305755615,-6.377696990966797e-6,0.000046581029891967773,-0.00010734796524047852,0.0003878474235534668,0.000015109777450561523,-0.00006884336471557617,4.559755325317383e-6,-0.00010710954666137695,0.00014281272888183594,-0.00002866983413696289,0.000023424625396728516,0.000027447938919067383,0.0000470578670501709,-0.0000788569450378418,9.804964065551758e-6,0.00013846158981323242,-6.67572021484375e-6,0.00003123283386230469,0.0000921785831451416,0.0017957985401153564,-3.4570693969726562e-6,0.0001793503761291504,-0.0001347661018371582,-0.00006681680679321289,0.00018611550331115723,-0.0003120303153991699,0.00001385807991027832,-0.00009882450103759766,0.00001430511474609375,-0.00009208917617797852,0.00044852495193481445,0.00010320544242858887,0.00008630752563476562,-0.000025987625122070312,0.0000432133674621582,0.00002893805503845215,0.000034689903259277344,0.00007456541061401367,-0.0000623464584350586,-0.000054836273193359375,0.000035762786865234375,-0.00030434131622314453,-0.00012695789337158203,0.0007923245429992676,0.000057131052017211914,-0.0000883936882019043,-0.0007992386817932129,0.0002683103084564209,-0.000022470951080322266,-0.00013816356658935547,0.000043392181396484375,0.00003573298454284668,-0.000022709369659423828,-0.00010758638381958008,0.00010839104652404785,-0.0006168484687805176,0.00002378225326538086,0.0010581612586975098,-0.00011301040649414062,0.000038743019104003906,0.00009745359420776367,-0.00005918741226196289,0.00003796815872192383,0.00005251169204711914,0.00003549456596374512,0.00013241171836853027,0.000029832124710083008,0.0005008280277252197,0.00013044476509094238,-0.00005823373794555664,0.00003713369369506836,-0.00020927190780639648,-0.000043511390686035156,-0.00010758638381958008,0.000254213809967041,-0.00010579824447631836,0.0005966722965240479,-0.000020325183868408203,0.00003841519355773926,0.00031119585037231445,-0.0000438690185546875,0.000035136938095092773,-0.0001201629638671875,-0.00035393238067626953,0.00008487701416015625,0.00010117888450622559,-0.00012099742889404297,-0.000011086463928222656,0.0002905428409576416,5.990266799926758e-6,0.00007233023643493652,0.0000254213809967041,0.00016224384307861328,9.000301361083984e-6,-0.00007069110870361328,8.07642936706543e-6,2.5331974029541016e-6,0.0002567172050476074,0.00037658214569091797,0.0007415115833282471,-0.00009274482727050781,-0.00004857778549194336,0.00006911158561706543,1.6391277313232422e-6,-0.00006753206253051758,-0.0001570582389831543,6.258487701416016e-7,0.00044411420822143555,0.00022205710411071777,0.00008234381675720215,-0.00008207559585571289,-0.00003993511199951172,-0.00015431642532348633,-0.00007092952728271484,-0.00003802776336669922,-0.00001043081283569336,0.00007665157318115234,-0.00008052587509155273,0.0012735426425933838,-0.00010704994201660156,-0.00006395578384399414,0.00014200806617736816,0.00019243359565734863,0.0003650188446044922,-0.00015676021575927734,-0.0001327991485595703,-0.00003618001937866211,-0.0002758502960205078,0.0002887248992919922,0.00001531839370727539,0.00037932395935058594,-0.000046253204345703125,0.00007557868957519531,0.00018683075904846191,0.00008445978164672852,0.00010889768600463867,-0.00003701448440551758,0.000038743019104003906,-0.000024080276489257812,0.000013887882232666016,-0.0003847479820251465,-0.0001946091651916504,0.0003078281879425049,-0.000532686710357666,-0.0000597834587097168,-9.298324584960938e-6,0.00012245774269104004,-0.000048041343688964844,-0.0001233220100402832,0.00014397501945495605,-0.00013715028762817383,-0.0000654458999633789,-0.00011771917343139648,6.0498714447021484e-6,0.00008001923561096191,-0.00014531612396240234,-0.000024080276489257812,0.000036090612411499023,0.0000432431697845459,0.000018537044525146484,0.00006395578384399414,0.00002065300941467285,0.000240325927734375,0.000087738037109375,-0.000045359134674072266,0.00011369585990905762,-0.0001334547996520996,0.00005602836608886719,-0.00020819902420043945,0.00023692846298217773,0.00022268295288085938,0.00026100873947143555,0.000026553869247436523,0.00026983022689819336,0.0006432831287384033,-0.00019663572311401367,9.000301361083984e-6,2.950429916381836e-6,-0.00003618001937866211,0.0000374913215637207,0.000051409006118774414,0.0000368654727935791,-0.00003314018249511719,-4.231929779052734e-6,0.00020650029182434082,0.0067882537841796875,0.000614553689956665,0.00006252527236938477,-0.00024521350860595703,0.00004652142524719238,0.0000374913215637207,0.0000292360782623291,-0.00017023086547851562,0.000021219253540039062,0.00003173947334289551,0.00035330653190612793,0.000043720006942749023,0.0003228485584259033,0.00002256035804748535,-0.00004607439041137695,-0.00012320280075073242,-0.00002288818359375,0.0010229051113128662,0.00033783912658691406,0.00012692809104919434,-0.0000445246696472168,-0.002033054828643799,-0.000016570091247558594,-0.000024080276489257812,7.450580596923828e-7,-0.00009244680404663086,-0.00002872943878173828,0.000045925378799438477,0.00020948052406311035,0.000028759241104125977,-0.00008106231689453125,-0.00008225440979003906,-0.00009226799011230469,0.001526951789855957,0.0002525150775909424,0.0000934898853302002,0.000021785497665405273,0.00003635883331298828,-0.00011616945266723633,-3.5762786865234375e-7,-0.000011861324310302734,-0.0001595020294189453,-0.00011324882507324219,0.00008627772331237793,-0.00008016824722290039,-0.000013172626495361328,0.00017192959785461426,0.00002256035804748535,0.00016412138938903809,0.00030094385147094727,0.000453263521194458,-0.00003629922866821289,0.00024771690368652344,0.00014773011207580566,0.00005561113357543945,0.00021791458129882812,-0.0008637905120849609,-0.00028645992279052734,0.00016963481903076172,0.00014382600784301758,-0.0000355839729309082,-0.00007271766662597656,-0.000039696693420410156,0.00042185187339782715,-0.0001277327537536621,0.00010651350021362305,0.00011748075485229492,0.000010341405868530273,0.00026029348373413086,-0.00004673004150390625,0.000049442052841186523,0.00020179152488708496,0.0004972517490386963,-8.344650268554688e-7,-0.0000324249267578125,-0.00012195110321044922,-0.0002346634864807129,0.027543574571609497,-0.00003826618194580078,0.00069427490234375,0.00011149048805236816,0.0011579692363739014,-7.748603820800781e-7,-0.00008410215377807617,0.00003764033317565918,-0.0002167820930480957,-0.0000674128532409668,0.00007963180541992188,-0.000020205974578857422,0.00011652708053588867,-0.00011205673217773438,0.00008043646812438965,0.000025719404220581055,-0.00005650520324707031,-0.00010031461715698242,0.00018548965454101562,0.0004343390464782715,-0.0013698339462280273,-0.0000349879264831543,-0.000056743621826171875,-0.00012737512588500977,0.00003451108932495117,2.7120113372802734e-6,-0.00020575523376464844,0.00004076957702636719,-0.0006015896797180176,0.00015437602996826172,0.0008349120616912842,0.0001945197582244873,-0.00005829334259033203,-8.702278137207031e-6,-0.00018787384033203125,0.0000292360782623291,-0.00011152029037475586,7.12275505065918e-6,0.0002987086772918701,-0.00005638599395751953,0.00027498602867126465,0.000728905200958252,-0.00008463859558105469,-0.00003838539123535156,-0.000026881694793701172,-0.0001131296157836914,0.00023311376571655273,0.0004515647888183594,0.0003565847873687744,-0.00006210803985595703,-0.000038564205169677734,-0.00004851818084716797,0.00019636750221252441,-0.00021922588348388672,-0.0005775094032287598,-0.00014197826385498047,-0.0003151893615722656,0.00031945109367370605,-0.00012916326522827148,0.000028789043426513672,-0.0001887679100036621,-0.00002765655517578125,-0.00004088878631591797,-0.00008440017700195312,0.00016936659812927246,-6.735324859619141e-6,-0.00008678436279296875,-0.00019371509552001953,0.000032395124435424805,0.0003720521926879883,0.0001099705696105957,0.00023880600929260254,3.0100345611572266e-6,-0.000023365020751953125,0.0003075599670410156,-0.00003719329833984375,0.000012755393981933594,-6.973743438720703e-6,0.0004925727844238281,0.0029455721378326416,-0.00004857778549194336,-0.000024378299713134766,0.00009498000144958496,-0.00005429983139038086,0.00014922022819519043,-8.344650268554688e-7,-0.00029540061950683594,0.00003409385681152344,-0.0001957416534423828,0.00013998150825500488,-0.00014954805374145508,0.0005075633525848389,0.00006839632987976074,0.00011086463928222656,-0.00008225440979003906,-0.00007736682891845703,-0.00007003545761108398,0.0014379322528839111,-0.00006175041198730469,0.00008720159530639648,0.000015050172805786133,-0.00013118982315063477,0.000018417835235595703,0.00009056925773620605,-0.000024080276489257812,0.00008001923561096191,-0.000010609626770019531,-0.00006765127182006836,-0.00019156932830810547,0.00008907914161682129,-0.00011724233627319336,-0.00007748603820800781,0.000030159950256347656,-0.00007534027099609375,0.000015348196029663086,0.0001620650291442871,0.0000775754451751709,-0.00008744001388549805,0.00007915496826171875,9.5367431640625e-7,-0.00002950429916381836,-0.00002294778823852539,-5.602836608886719e-6,0.0001963973045349121,-0.00017023086547851562,0.9967000484466553,-0.000037550926208496094,0.0006068944931030273,0.0001443624496459961,0.00042444467544555664,0.00006428360939025879,0.00021776556968688965,0.000058144330978393555,-0.00028693675994873047,0.00014826655387878418,-0.000026047229766845703,-0.00010216236114501953,0.00004938244819641113,0.00011131167411804199,9.387731552124023e-6,-0.000019371509552001953,-0.00004607439041137695,0.000048220157623291016,-0.001156926155090332,0.000020891427993774414,0.00017017126083374023,0.00019875168800354004,0.0018985569477081299,0.00008001923561096191,0.0010929703712463379,0.154680997133255,0.0005657970905303955,0.000012755393981933594,-0.00043082237243652344,0.0001297295093536377,-0.00008207559585571289,0.00007709860801696777,0.0000966191291809082,0.00007274746894836426,-0.001146554946899414,0.00011739134788513184,-0.00013238191604614258,-0.0001913905143737793,0.00008887052536010742,0.00006902217864990234,-0.000024497509002685547,-0.0000940561294555664,-0.000012874603271484375,-0.00011169910430908203,0.00038999319076538086,-0.00003916025161743164,-0.00001800060272216797,0.0003387928009033203,0.00006175041198730469,0.0000374913215637207,-0.00001138448715209961,0.00020208954811096191,-0.00008541345596313477,-7.569789886474609e-6,0.00003319978713989258,0.00036835670471191406,-0.00013768672943115234,0.0003140568733215332,-0.00008815526962280273,0.0001620650291442871,0.000976651906967163,-0.000013947486877441406,0.000026941299438476562,0.00029969215393066406,-0.00006395578384399414,0.000014871358871459961,0.00014859437942504883,0.000020056962966918945,-0.00030672550201416016,0.0010245144367218018,-0.0003267526626586914,-0.00011140108108520508,0.0011615157127380371,-0.00011718273162841797,0.0000985264778137207,0.000024378299713134766,0.00008615851402282715,5.424022674560547e-6,0.002024620771408081,0.00003439188003540039,-0.00006747245788574219,0.00002950429916381836,-0.0000413060188293457,0.00018870830535888672,-0.0002791285514831543,-0.00004267692565917969,-0.00005435943603515625,-0.00010776519775390625,-0.000033020973205566406,-0.00008845329284667969,0.00009512901306152344,-0.00018095970153808594,-0.00004857778549194336,-0.0010918974876403809,-0.0001881122589111328,0.0075664222240448,9.000301361083984e-6,-0.000016868114471435547,-0.00021779537200927734,-0.001434326171875,-0.0027778148651123047,0.00044727325439453125,0.00026535987854003906,0.00010380148887634277,0.000030249357223510742,-1.8477439880371094e-6,-0.0007334351539611816,0.00047472119331359863,0.00011298060417175293,-0.000056743621826171875,0.000027626752853393555,0.00006008148193359375,-0.000022351741790771484,0.00018861889839172363,0.00016796588897705078,0.000024646520614624023,0.00007963180541992188,0.00019913911819458008,0.000015079975128173828,-0.00014269351959228516,-0.00006449222564697266,-0.00009500980377197266,-0.000010907649993896484,0.00002968311309814453,0.0000400543212890625,-0.000039517879486083984,0.000038743019104003906,0.00032004714012145996,-6.67572021484375e-6,0.00007176399230957031,0.00001704692840576172,-0.0002359151840209961,0.00014191865921020508,-1.0132789611816406e-6,0.00008615851402282715,-0.000026226043701171875,0.00022917985916137695,0.0011649727821350098,-0.00019347667694091797,0.00004279613494873047,0.000057578086853027344,0.0001570582389831543,0.00008317828178405762,0.00012189149856567383,-0.00005173683166503906,0.00006130337715148926,0.0000870823860168457,-0.000025510787963867188,0.00005564093589782715,9.000301361083984e-6,0.0007108449935913086,0.00001189112663269043,6.318092346191406e-6,-0.00011050701141357422,0.0003285408020019531,0.00014346837997436523,0.0005007386207580566,0.0013189911842346191,0.00011494755744934082,0.0000298917293548584,-0.00005835294723510742,-0.00015538930892944336,-0.00004571676254272461,0.00003361701965332031,-0.0012104511260986328,-0.0006108880043029785,-0.00008046627044677734,-1.1920928955078125e-6,0.000764697790145874,0.00023993849754333496,9.000301361083984e-6,-0.000018775463104248047,0.0002613663673400879,0.000019371509552001953,-0.00007963180541992188,0.00010201334953308105,0.0001761317253112793,-0.00004965066909790039,-0.00009638071060180664,-0.00006020069122314453,0.00004076957702636719,0.0028809010982513428,-0.00011599063873291016,-0.00009584426879882812,0.0002518892288208008,-0.00004947185516357422,-0.000014424324035644531,0.0003661811351776123,-0.000048279762268066406,-0.00019544363021850586,-0.00003123283386230469,-0.00012040138244628906,0.000058531761169433594,0.0007878541946411133,-0.00006729364395141602,0.00015464425086975098,0.0040565431118011475,0.010540366172790527,-0.00017505884170532227,0.00028565526008605957,0.0002708137035369873,-0.00008952617645263672,-0.00015491247177124023,-0.000025391578674316406,0.00009751319885253906,0.00012350082397460938,0.043460071086883545,0.00017508864402770996,-0.0000521540641784668,-0.00038617849349975586,0.00015288591384887695,0.00002613663673400879,0.00034695863723754883,-0.00004404783248901367,-0.00004756450653076172,0.00019782781600952148,-0.00003653764724731445,0.00001239776611328125,0.00009447336196899414,-0.000028908252716064453,-0.000043511390686035156,0.00004112720489501953,0.00011664628982543945,-0.00002968311309814453,-0.0001703500747680664,0.00013118982315063477,0.00009867548942565918,0.0001633763313293457,0.000398486852645874,0.00011405348777770996,0.0003980100154876709,1.4007091522216797e-6,0.000033855438232421875,-0.00011557340621948242,0.0002936720848083496,0.000779271125793457,0.000026404857635498047,-0.00020331144332885742,-0.000048041343688964844,-6.4373016357421875e-6,0.008365094661712646,-0.00015693902969360352,-0.000024080276489257812,4.4405460357666016e-6,0.0007870495319366455,-0.00003790855407714844,-0.0001285076141357422,0.00006031990051269531,0.000016003847122192383,-0.000027894973754882812,-0.00015842914581298828,0.0001645982265472412,0.00008752942085266113,-0.000011682510375976562,-0.000029027462005615234,-0.00006395578384399414,0.000050693750381469727,-0.0000858306884765625,0.0001055002212524414,-0.0001589655876159668,0.00016683340072631836,-0.00012737512588500977,0.00038319826126098633,0.00006195902824401855,0.00009962916374206543,-0.000010251998901367188,-0.00020039081573486328,0.0001786947250366211,-0.00009244680404663086,0.00011485815048217773,-0.000027120113372802734,0.00004926323890686035,0.00012367963790893555,0.0002468526363372803,0.00003394484519958496,-1.1920928955078125e-6,0.000858992338180542,-0.00019210577011108398,-0.00013643503189086914,-0.00012564659118652344,-0.000011622905731201172,-0.00015854835510253906,0.0004056692123413086,-0.00018334388732910156,-0.00022542476654052734,0.0001500546932220459,-0.00010734796524047852,0.00005969405174255371,-0.000011324882507324219,-0.00004011392593383789,0.000025600194931030273,-0.0000400543212890625,0.000035136938095092773,-0.00003647804260253906,-0.0003993511199951172,-0.000049233436584472656,-0.00011545419692993164,0.0002484321594238281,0.000026047229766845703,0.00006702542304992676,-0.00006622076034545898,0.0009613633155822754,0.0013696849346160889,0.00020167231559753418,-0.00012028217315673828,-0.00008851289749145508,-0.00020676851272583008,0.00008502602577209473,-0.000011801719665527344,0.000317990779876709,0.000665128231048584,0.00013375282287597656,0.0004343390464782715,0.00001093745231628418,-0.0001596212387084961,-0.00008612871170043945,0.00017517805099487305,-0.00005459785461425781,0.000058531761169433594,-0.00009298324584960938,0.0012864172458648682,0.00033909082412719727,-0.00017970800399780273,0.00020179152488708496,-0.00011914968490600586,-0.0001284480094909668,-0.0000814199447631836,0.00029847025871276855,0.0008998215198516846,-0.0001628398895263672,0.00006130337715148926,-0.00011068582534790039,-0.00003528594970703125,-0.00007200241088867188,-0.00008702278137207031,-0.000020205974578857422,0.00026658177375793457,0.00007709860801696777,-2.3245811462402344e-6,-0.000029027462005615234,-0.00003820657730102539,0.000058531761169433594,0.004237085580825806,-0.000017881393432617188,-0.0003762245178222656,0.0008556246757507324,0.00069388747215271,0.00015649199485778809,-0.0001525282859802246,0.001047968864440918,0.00002378225326538086,0.000010341405868530273,-0.00008046627044677734,0.0004799962043762207,0.0001958608627319336,0.00007483363151550293,-0.00006920099258422852,0.00037670135498046875,4.500150680541992e-6,0.000035256147384643555,0.00033289194107055664,-0.000518500804901123,0.00001531839370727539,0.0007495582103729248,0.003031790256500244,-0.0006960034370422363,-0.000038683414459228516,0.0026393234729766846,-0.00007712841033935547,0.00016796588897705078,0.000051409006118774414,-0.00008410215377807617,-0.00005173683166503906,-0.0000635385513305664,6.0498714447021484e-6,0.8936001062393188,0.0005476176738739014,0.0002326667308807373,-0.000022470951080322266,-0.000033795833587646484,-0.00012952089309692383,0.000030666589736938477,0.00006395578384399414,-0.000011026859283447266,0.0004271566867828369,-0.00007003545761108398,0.0005788505077362061,-3.6954879760742188e-6,0.0010002553462982178,-5.066394805908203e-6,0.0007869601249694824,-0.00011456012725830078,-0.000038564205169677734,0.0002301633358001709,0.00014123320579528809,0.017958015203475952,0.0001849532127380371,0.00001239776611328125,0.00007030367851257324,0.0001246631145477295,-0.00005894899368286133,0.0000298917293548584,0.00012505054473876953,4.0531158447265625e-6,-0.00003606081008911133,-0.00016695261001586914,-6.67572021484375e-6,0.0006988346576690674,0.000027894973754882812,0.00002276897430419922,-7.152557373046875e-7,0.000042110681533813477,-0.00010985136032104492,-0.00011301040649414062,0.000016689300537109375,0.00018543004989624023,0.00034111738204956055,0.0008606314659118652,0.0009454786777496338,0.0007196664810180664,4.202127456665039e-6,-0.0001297593116760254,-0.000021219253540039062,-0.0001621842384338379,8.344650268554688e-7,0.00011432170867919922,0.0009383261203765869,0.00008916854858398438,0.000058531761169433594,0.0003771185874938965,-0.00010651350021362305,0.00001093745231628418,1.8775463104248047e-6,-0.0001761317253112793,0.0004426538944244385,0.00027370452880859375,0.00039201974868774414,-0.0003674626350402832,-0.0003153085708618164,0.000010102987289428711,-0.00013369321823120117,0.00024148821830749512,0.000015407800674438477,0.00017279386520385742,0.0000832676887512207,0.002135723829269409,0.00007715821266174316,-0.0000349879264831543,0.00023192167282104492,0.00028568506240844727,-0.00015795230865478516,-0.0000654458999633789,-0.00022071599960327148,0.00044667720794677734,0.00007644295692443848,-6.67572021484375e-6,-0.00006335973739624023,-0.0001137852668762207,0.00010028481483459473,0.000016123056411743164,-0.00007981061935424805,0.00008377432823181152,0.011123120784759521,-0.00013840198516845703,0.00005194544792175293,0.00010839104652404785,0.00010395050048828125,-0.0005806088447570801,-0.00006633996963500977,-0.0002085566520690918,-0.00002181529998779297,-0.00008040666580200195,3.4868717193603516e-6,0.00006341934204101562,0.00023093819618225098,0.000038743019104003906,-0.00006854534149169922,0.0005142092704772949,-0.00001621246337890625,-0.000054001808166503906,-0.00008946657180786133,0.00005874037742614746,0.00007092952728271484,-0.001827538013458252,-0.00013679265975952148,0.00018870830535888672,0.010084807872772217,-9.238719940185547e-6,-0.0002111196517944336,0.00006368756294250488,0.00003993511199951172,0.00006252527236938477,0.0001863241195678711,0.0001519620418548584,0.00002816319465637207,0.00006130337715148926,0.000012993812561035156,0.000012993812561035156,0.00008702278137207031,0.000046312808990478516,0.000014424324035644531,0.00012442469596862793,-0.00020807981491088867,-0.0001684427261352539,-0.0001462697982788086,0.00069388747215271,0.0006012320518493652,-0.00001239776611328125,0.0014383792877197266,-1.1920928955078125e-6,0.00001475214958190918,0.00015789270401000977,-0.0001875758171081543,0.000039964914321899414,-0.00011199712753295898,-0.000019669532775878906,0.00024232268333435059,0.000021666288375854492,-4.172325134277344e-7,0.000011324882507324219,-0.00030481815338134766,5.036592483520508e-6,0.0007088780403137207,0.00007387995719909668,0.00009843707084655762,-0.00002199411392211914,-5.900859832763672e-6,0.00023573637008666992,0.0001842975616455078,0.00003018975257873535,0.00033274292945861816,0.0007373392581939697,-0.00006592273712158203,-0.00006097555160522461,-0.0002460479736328125,0.00005227327346801758,-0.00020807981491088867,-0.00022727251052856445,0.00006154179573059082,-0.00012892484664916992,0.00019687414169311523,0.00020778179168701172,0.000026553869247436523,-0.0001799464225769043,-0.0010570287704467773,-0.000057578086853027344,-0.0002110004425048828,-0.000013053417205810547,0.00011229515075683594,0.00003835558891296387,0.000030606985092163086,0.00013208389282226562,0.00019729137420654297,-9.715557098388672e-6,0.0002485215663909912,-0.0001227855682373047,-0.0007824897766113281,0.00008702278137207031,0.00001481175422668457,0.000023484230041503906,0.0006262362003326416,0.000057578086853027344,0.0005315840244293213,-0.0002250075340270996,0.00026085972785949707,2.0563602447509766e-6,0.000030159950256347656,0.0003808140754699707,-0.00004786252975463867,-0.00008052587509155273,-0.00007528066635131836,-0.000018656253814697266,-0.00027441978454589844,0.00011155009269714355,0.00012674927711486816,-0.00007134675979614258,-0.000019311904907226562,-0.00004190206527709961,0.00005218386650085449,-0.00008022785186767578,0.0005297660827636719,0.0001685023307800293,0.0005402266979217529,0.0002015829086303711,-0.000017404556274414062,0.00007066130638122559,-4.172325134277344e-7,0.0005934238433837891,0.000011473894119262695,-0.00004076957702636719,0.00006029009819030762,-0.000010013580322265625,0.00010073184967041016,0.00003984570503234863,0.00022920966148376465,0.0024115145206451416,-0.00005793571472167969,0.0013051927089691162,7.450580596923828e-7,-0.00005441904067993164,0.00023892521858215332,-0.00013750791549682617,0.00003984570503234863,0.002346545457839966,0.000324249267578125,0.000024437904357910156,-0.00013142824172973633,0.00003892183303833008,0.00010889768600463867,0.00005200505256652832,-0.00006455183029174805,0.000030249357223510742,-0.000020205974578857422,-0.000019311904907226562,0.000023186206817626953,-0.00018471479415893555,-0.000019550323486328125,-0.000057578086853027344,0.00004062056541442871,-0.00013709068298339844,0.00003597140312194824,-0.000014066696166992188,-0.00006526708602905273,-0.001025378704071045,0.000022023916244506836,-0.0000349879264831543,0.000110626220703125,0.00045052170753479004,0.000044405460357666016,1.4007091522216797e-6,0.00016960501670837402,-0.0000362396240234375,-0.0000349879264831543,0.0032159090042114258,0.00006186962127685547,-0.000015556812286376953,-0.000056803226470947266,0.00006112456321716309,0.0006106197834014893,0.0017672181129455566,0.00019782781600952148,-0.00005447864532470703,-0.00003635883331298828,-0.0000673532485961914,0.00011646747589111328,-0.00004297494888305664,0.00035262107849121094,1.0619900226593018,0.00009250640869140625,-0.00001436471939086914,0.000394672155380249,0.000048160552978515625,-0.00003314018249511719,-0.00011593103408813477,-0.00006526708602905273,0.00039830803871154785,-0.00007086992263793945,-0.00010657310485839844,-7.152557373046875e-6,-0.00017023086547851562,0.00004971027374267578,-0.000010251998901367188,-0.00010728836059570312,0.00009590387344360352,0.00024506449699401855,0.0007878541946411133,0.0008027851581573486,0.0002652406692504883,0.0035292208194732666,0.000035136938095092773,5.27501106262207e-6,-0.00004380941390991211,3.6954879760742188e-6,0.000825345516204834,0.000056415796279907227,0.0000368654727935791,0.000023752450942993164,0.000047594308853149414,-0.000049173831939697266,0.00006639957427978516,-0.00010716915130615234,0.0035226941108703613,0.00006175041198730469,-0.00012737512588500977,0.00006598234176635742,0.0002738535404205322,0.00039207935333251953,-0.00010776519775390625,1.4603137969970703e-6,-0.000034868717193603516,-5.602836608886719e-6,0.0008271932601928711,0.0011271238327026367,0.00007414817810058594,-0.00008690357208251953,-0.00013023614883422852,-0.000012516975402832031,-0.000010013580322265625,0.0003142356872558594,0.00004938244819641113,0.00005391240119934082,-0.00008928775787353516,-0.00009548664093017578,-0.00007891654968261719,0.00007733702659606934,0.00007578730583190918,-0.00014632940292358398,-0.00005984306335449219,0.00009587407112121582,0.00035181641578674316,0.00020828843116760254,0.0017824769020080566,0.00004026293754577637,-4.76837158203125e-6,-0.00011199712753295898,0.12756288051605225,-0.000017583370208740234,0.000024259090423583984,0.000016629695892333984,-0.00003707408905029297,0.0008746087551116943,-0.00011199712753295898,0.00040861964225769043,-4.76837158203125e-7,-0.00020879507064819336,0.00030365586280822754,0.000016629695892333984,0.1076585054397583,0.00023797154426574707,-0.00004583597183227539,-0.00015795230865478516,-0.00004982948303222656,0.0007281899452209473,0.000010371208190917969,0.0010360777378082275,-0.00017273426055908203,0.0032575130462646484,-0.00001519918441772461,0.0002186894416809082,8.612871170043945e-6,0.0005216300487518311,0.00021606683731079102,-0.00002110004425048828,0.0001283586025238037,0.00022223591804504395,-0.00004857778549194336,-0.0001881122589111328,0.0000597536563873291,0.0038232803344726562,0.000036329030990600586,0.000050067901611328125,-0.00011175870895385742,0.0004247426986694336,0.0001347661018371582,-0.0003660917282104492,0.00011494755744934082,0.00001677870750427246,0.0000508725643157959,-0.00014972686767578125,-0.00006711483001708984,8.046627044677734e-7,6.079673767089844e-6,0.0006443560123443604,-0.000895380973815918,0.00007414817810058594,0.000016450881958007812,0.000024259090423583984,0.00011652708053588867,5.21540641784668e-6,-0.0003024935722351074,0.00023239850997924805,-0.00008893013000488281,0.000017911195755004883,0.0001634359359741211,-0.00008887052536010742,0.9734111428260803,0.0002053678035736084,7.4803829193115234e-6,0.00009077787399291992,0.00004404783248901367,-0.00011587142944335938,-9.715557098388672e-6,0.0000820457935333252,0.00004464387893676758,0.0004744529724121094,0.00018477439880371094,0.00002256035804748535,-0.00013113021850585938,-0.00011754035949707031,-0.00008052587509155273,0.0002047419548034668,-0.00002199411392211914,-0.00008207559585571289,-0.0002079606056213379,0.0008832812309265137,0.0005734264850616455,-0.000028908252716064453,-0.00007867813110351562,0.0024368762969970703,-0.000026702880859375,-0.00003886222839355469,-0.000052869319915771484,-0.0001652836799621582,0.0000413060188293457,0.00018960237503051758,-0.00005990266799926758,-3.635883331298828e-6,0.0008790791034698486,0.00005221366882324219,-0.000057816505432128906,0.00013810396194458008,0.00001677870750427246,0.00019720196723937988,0.00014147162437438965,0.00014963746070861816,0.0002613663673400879,0.0003415048122406006,0.00030046701431274414,0.00003293156623840332,-0.000041365623474121094,0.00026100873947143555,-6.67572021484375e-6,0.0004042387008666992,0.000020235776901245117,-3.337860107421875e-6,-0.00007331371307373047,1.043081283569336e-6,0.0000883638858795166,0.00012674927711486816,-0.0000209808349609375,0.00003394484519958496,-0.000021159648895263672,-0.00005441904067993164,0.00005742907524108887,-0.0005972981452941895,0.00005561113357543945,-9.000301361083984e-6,0.006903797388076782,-4.172325134277344e-6,0.00033742189407348633,0.0001710057258605957,0.00003865361213684082,-0.0001525282859802246,0.9974905252456665,-0.00004029273986816406,0.000056415796279907227,0.00044333934783935547,0.00006967782974243164,0.0000165402889251709,0.0006504356861114502,-0.00004887580871582031,-0.00006645917892456055,-0.000034809112548828125,-0.00046938657760620117,3.129243850708008e-6,-0.00009107589721679688,1.4007091522216797e-6,-0.00007069110870361328,0.00001385807991027832,-0.00004309415817260742,0.0006239712238311768,0.00011008977890014648,-0.00008857250213623047,-0.0004779696464538574,0.0004957020282745361,-0.0001442432403564453,0.000028789043426513672,0.000456392765045166,0.0000641942024230957,0.00013530254364013672,-0.000024318695068359375,-0.00007855892181396484,-0.000014781951904296875,0.00006315112113952637,0.0006995499134063721,-0.00031757354736328125,-0.00014728307723999023,0.00005939602851867676,-0.00007969141006469727,-0.001058816909790039,-0.0001881122589111328,-0.00004845857620239258,0.000030159950256347656,-0.0004247426986694336,0.00045120716094970703,0.000015020370483398438,-0.00006318092346191406,0.00005283951759338379,-0.000011146068572998047,0.0005142092704772949,0.0001881122589111328,-0.0001881718635559082,-0.00007277727127075195,-0.0002948641777038574,-9.000301361083984e-6,-1.9073486328125e-6,0.000028401613235473633,-0.00014644861221313477,-0.00013703107833862305,-0.000056684017181396484,-0.00010842084884643555,-0.0004646182060241699,-0.000102996826171875,4.231929779052734e-6,-0.000023424625396728516,-1.7881393432617188e-7,0.000010341405868530273,0.0007184743881225586,-0.00002092123031616211,9.834766387939453e-6,0.0001685023307800293,-0.00002950429916381836,0.0006702244281768799,0.0005649030208587646,-0.00002199411392211914,-0.00011110305786132812,0.000023037195205688477,8.821487426757812e-6,0.0003498494625091553,-0.00015431642532348633,0.00010326504707336426,-0.00014632940292358398,0.00025522708892822266,0.0032204389572143555,0.00011679530143737793,-0.00008755922317504883,0.0000374913215637207,0.0003311336040496826,0.0001462399959564209,0.0000254213809967041,-0.0001582503318786621,0.0009517073631286621,0.000087738037109375,0.0003178417682647705,0.000042110681533813477,0.00004026293754577637,-0.000038564205169677734,0.0006361007690429688,-0.00011330842971801758,0.0029163658618927,-0.000045418739318847656,0.0003847479820251465,-0.00003319978713989258,0.0011823773384094238,0.000311434268951416,0.00003463029861450195,-0.0001729726791381836,0.0003287196159362793,0.000029087066650390625,-0.00006622076034545898,0.00009587407112121582,0.00009065866470336914,0.00006052851676940918,0.00010856986045837402,0.00020235776901245117,0.0000998377799987793,-0.00003713369369506836,0.00008705258369445801,-0.00007992982864379883,0.00013169646263122559,0.00009611248970031738,0.00011464953422546387,-0.00002568960189819336,0.0000851750373840332,-0.00003916025161743164,0.000036597251892089844,-0.00006252527236938477,0.000043720006942749023,-0.00008547306060791016,0.00018227100372314453,0.00001710653305053711,0.00011155009269714355,-0.00003129243850708008,-0.000368654727935791,0.0006187558174133301,0.0011155307292938232,-0.000024080276489257812,0.00030797719955444336,-0.0001914501190185547,0.0004277229309082031,-0.00012737512588500977,-0.0002066493034362793,2.4139881134033203e-6,8.881092071533203e-6,0.000042319297790527344,-0.00002378225326538086,-0.00002199411392211914,0.00005799531936645508,-0.000011444091796875,0.0002620816230773926,-0.00005030632019042969,0.00021731853485107422,0.000015616416931152344,-0.0006544589996337891,0.00006628036499023438,0.0000985264778137207,0.003493964672088623,-8.165836334228516e-6,-0.00015461444854736328,0.000052541494369506836,-0.00007992982864379883,0.00018545985221862793,-0.00012421607971191406,-0.00002199411392211914,0.0015419721603393555,0.000019341707229614258,-0.00011849403381347656,0.000026553869247436523,-0.0007675886154174805,-0.0001742243766784668,-0.000095367431640625,-0.00008732080459594727,-0.000030040740966796875,0.0001175999641418457,0.00012806057929992676,0.0003839433193206787,0.00009930133819580078,0.0000947117805480957,-0.00012826919555664062,7.18235969543457e-6,-0.00001239776611328125,-2.9206275939941406e-6,0.0001825094223022461,0.0012904107570648193,-0.000033855438232421875,-0.000043392181396484375,0.000018149614334106445,0.00011816620826721191,-0.000045180320739746094,0.00007483363151550293,-0.00014019012451171875,0.00011527538299560547,8.493661880493164e-6,0.00003692507743835449,-0.00018072128295898438,0.000174790620803833,0.0002377033233642578,-0.00012725591659545898,0.0004902184009552002,0.00019782781600952148,-0.00007712841033935547,0.00003451108932495117,-0.000014066696166992188,-0.00003153085708618164,0.0002040266990661621,0.00008314847946166992,0.00008538365364074707,0.0002777278423309326,-8.702278137207031e-6,0.0000444948673248291,0.0005512535572052002,0.0000629425048828125,0.0000788271427154541,0.00009694695472717285,-0.00011515617370605469,0.0014816522598266602,0.000038564205169677734,0.0000584721565246582,-0.0001838207244873047,-0.00013184547424316406,0.00003764033317565918,0.000025928020477294922,0.0014185309410095215,0.005668759346008301,0.0001741945743560791,0.00002244114875793457,-0.00006669759750366211,0.000014215707778930664,-0.000011324882507324219,0.000014424324035644531,-0.00004678964614868164,-0.00009888410568237305,-0.0003344416618347168,0.00008416175842285156,-0.0001856088638305664,-0.0001392960548400879,0.00006565451622009277,7.927417755126953e-6,0.000036329030990600586,0.0000623166561126709,0.000045418739318847656,6.5267086029052734e-6,0.00011798739433288574,0.0004588961601257324,0.000057756900787353516,-0.00012052059173583984,-0.00006216764450073242,0.00021329522132873535,-0.000019550323486328125,0.00009959936141967773,0.000044286251068115234,-0.00009971857070922852,-0.00007146596908569336,0.0003497004508972168,-0.00005251169204711914,0.00006815791130065918,-0.00007098913192749023,0.00008368492126464844,-0.0001462697982788086,-0.000033974647521972656,-0.00034922361373901367,-0.00010734796524047852,-0.0001258254051208496,0.000057369470596313477,0.00017198920249938965,0.00013169646263122559,0.00007414817810058594,0.0001640915870666504,-0.0002257823944091797,0.005791991949081421,-0.00005823373794555664,-0.00008744001388549805,0.00008434057235717773,-0.00006175041198730469,7.778406143188477e-6,0.00005221366882324219,-0.000049173831939697266,-0.00003653764724731445,-0.00004279613494873047,-0.00006842613220214844,-0.00003987550735473633,-0.00003719329833984375,-0.00010436773300170898,-0.0011246204376220703,0.00016412138938903809,-0.00008273124694824219,-0.000021636486053466797,0.000018298625946044922,0.00003764033317565918,0.0001226961612701416,0.000026613473892211914,0.0030987560749053955,0.00020113587379455566,-0.00003451108932495117,0.0001100003719329834,-0.0004731416702270508,-0.000050067901611328125,0.00003102421760559082,0.00003412365913391113,0.0003573894500732422,0.0002791881561279297,-0.00011855363845825195,0.0007666647434234619,0.0001017153263092041,0.00023862719535827637,0.00011515617370605469,0.00005060434341430664,-0.00009882450103759766,4.470348358154297e-7,-4.410743713378906e-6,9.268522262573242e-6,-0.00003999471664428711,0.00009268522262573242,0.00012925267219543457,-0.00004220008850097656,-0.000301361083984375,-0.00015079975128173828,-0.0007612109184265137,0.00037863850593566895,-0.0004073977470397949,0.00015079975128173828,0.0006333589553833008,-0.0007686614990234375,0.000026792287826538086,7.361173629760742e-6,0.000050127506256103516,2.8312206268310547e-6,-0.00008749961853027344,-0.0000324249267578125,0.00019407272338867188,0.00024762749671936035,0.00004571676254272461,0.00011712312698364258,0.00005397200584411621,0.00010839104652404785,0.0008359551429748535,9.03010368347168e-6,0.00006598234176635742,-0.00003415346145629883,0.000048547983169555664,-0.00008368492126464844,-0.000051140785217285156,0.000041365623474121094,-0.0004463791847229004,0.00008970499038696289,-0.00019037723541259766,0.000027865171432495117,0.000026464462280273438,4.0531158447265625e-6,0.00002822279930114746,0.000028431415557861328,0.0000470280647277832,0.0004690587520599365,0.0006783604621887207,-0.0019513368606567383,0.0003542304039001465,0.00010097026824951172,0.000059932470321655273,0.00002244114875793457,0.0002982020378112793,-0.0002421736717224121,6.0498714447021484e-6,-0.00006395578384399414,-0.00004279613494873047,0.0001965165138244629,-0.00005453824996948242,0.002518951892852783,-0.00003510713577270508,0.0003229677677154541,0.00019979476928710938,-0.0000311732292175293,-0.00015813112258911133,0.00026303529739379883,-0.00008207559585571289,-0.00008422136306762695,0.00008893013000488281,-8.761882781982422e-6,0.00012424588203430176,0.00017595291137695312,-0.00017631053924560547,0.00011661648750305176,0.00025513768196105957,-5.900859832763672e-6,-0.00003254413604736328,-0.00008386373519897461,-0.000021219253540039062,0.000013530254364013672,0.00004404783248901367,0.000026464462280273438,-0.00002199411392211914,-0.000018477439880371094,-0.00003349781036376953,0.0000591278076171875,-0.0001285076141357422,-0.00006175041198730469,0.00419965386390686,-9.298324584960938e-6,-4.76837158203125e-7,0.02366921305656433,-0.00014764070510864258,0.00003865361213684082,0.0006722211837768555,1.1920928955078125e-6,0.00006508827209472656,-0.00004124641418457031,0.00012549757957458496,0.00016948580741882324,0.0003511011600494385,0.00024831295013427734,-0.00003075599670410156,0.00006020069122314453,0.00043195486068725586,-0.00006717443466186523,0.000011056661605834961,0.00013685226440429688,0.0001811981201171875,-0.0001817941665649414,0.000046700239181518555,-0.000042557716369628906,0.0007190406322479248,0.00007387995719909668,-0.0001125335693359375,-0.00020551681518554688,-0.0001201629638671875,0.00023061037063598633,-0.00004029273986816406,0.0006503760814666748,-0.000011444091796875,-0.000049114227294921875,-0.00009161233901977539,0.00011014938354492188,0.0006431937217712402,0.00013631582260131836,0.00030800700187683105,-0.000035703182220458984,0.00042307376861572266,0.00001704692840576172,-6.139278411865234e-6,-0.00003719329833984375,-0.00015109777450561523,0.0007800459861755371,-0.000010013580322265625,-0.000016391277313232422,-3.159046173095703e-6,-6.854534149169922e-6,0.00009801983833312988,-0.00027698278427124023,-0.0009726285934448242,0.0000603795051574707,0.0780571699142456,-8.761882781982422e-6,0.00010889768600463867,0.00007176399230957031,-0.0002097487449645996,-8.881092071533203e-6,-0.00004935264587402344,0.0000959932804107666,0.00016182661056518555,0.00007233023643493652,-0.00010526180267333984,-0.00012558698654174805,0.00006464123725891113,-0.00014764070510864258,-4.76837158203125e-7,0.00040012598037719727,0.00023105740547180176,-0.0006964206695556641,0.000051409006118774414,-0.00036275386810302734,0.00020626187324523926,0.00009906291961669922,0.000018209218978881836,0.000051409006118774414,0.0006341040134429932,-0.000019490718841552734,0.00009489059448242188,0.00006598234176635742,0.00033792853355407715,-0.00021773576736450195,0.00006175041198730469,-0.000013947486877441406,-0.000057756900787353516,-0.00002467632293701172,0.0000298917293548584,0.00014725327491760254,0.0008530914783477783,-0.000037729740142822266,-0.00003808736801147461,0.000011056661605834961,0.0006226301193237305,4.857778549194336e-6,0.00023725628852844238,-0.00003218650817871094,-4.172325134277344e-7,-0.0007373690605163574,-0.0006991028785705566,0.00042510032653808594,-6.854534149169922e-6,0.0004521608352661133,0.00021156668663024902,4.559755325317383e-6,0.00005885958671569824,0.00007572770118713379,-0.00002008676528930664,0.0002707242965698242,-0.00010836124420166016,-0.00006312131881713867,0.00003999471664428711,-0.0001684427261352539,7.897615432739258e-6,-0.00012195110321044922,-0.00003337860107421875,-0.00008690357208251953,-0.0001525282859802246,-0.00008660554885864258,0.00004106760025024414,-0.00009059906005859375,-0.0035704374313354492,0.00008428096771240234,-0.00002676248550415039,0.0007460415363311768,-0.0000979304313659668,0.00019490718841552734,0.00032955408096313477,0.00007387995719909668,-0.0005390048027038574,-0.00021779537200927734,0.00023952126502990723,0.00018212199211120605,-0.00014096498489379883,0.00039449334144592285,-0.00001150369644165039,0.0001328885555267334,0.0006299912929534912,0.0002498626708984375,-0.00002276897430419922,0.0002829134464263916,0.00003361701965332031,-0.00012880563735961914,-0.00008368492126464844,0.000023305416107177734,0.00011664628982543945,0.00012311339378356934,0.0000394284725189209,-0.0001837611198425293,0.00008669495582580566,0.0001951456069946289,0.000295490026473999,-0.000021636486053466797,0.0013923346996307373,0.00007387995719909668,-8.64267349243164e-6,-0.00006413459777832031,0.000027060508728027344,-0.0000845193862915039,0.00023791193962097168,-0.0001266002655029297,0.0013642311096191406,-0.00005644559860229492,0.00014549493789672852,-0.000040590763092041016,0.000017255544662475586,-0.00009125471115112305,-0.000053882598876953125,-0.00020688772201538086,0.0005757808685302734,0.00035181641578674316,0.00004363059997558594,-0.00003123283386230469,0.00004076957702636719,-0.00008213520050048828,0.002743750810623169,-0.00016045570373535156,-0.000047147274017333984,-0.00024056434631347656,4.857778549194336e-6,-0.000017583370208740234,0.00015601515769958496,-0.00007367134094238281,0.000011056661605834961,-0.0006039142608642578,0.000010371208190917969,-0.00009161233901977539,0.00018018484115600586,-0.000011444091796875,0.00021630525588989258,-0.0001932382583618164,-0.00007426738739013672,0.007965683937072754,0.00011470913887023926,0.0002378225326538086,0.00033220648765563965,0.00036135315895080566,0.0001703202724456787,-0.000041544437408447266,0.00018107891082763672,-0.00007337331771850586,0.0002760589122772217,-0.0000845193862915039,-0.00008690357208251953,-0.000056803226470947266,-0.00005030632019042969,0.0001678466796875,0.00032269954681396484,0.00044152140617370605,0.00013574957847595215,0.000012367963790893555,2.950429916381836e-6,0.000057756900787353516,-0.00007712841033935547,0.00019782781600952148,-0.0003985762596130371,-0.00007098913192749023,-0.00018709897994995117,-0.000040650367736816406,0.000028789043426513672,-0.00012737512588500977,0.00014415383338928223,3.7550926208496094e-6,4.32133674621582e-6,0.00005894899368286133,-0.000029146671295166016,-0.00006175041198730469,-0.00001728534698486328,-7.152557373046875e-6,-0.0002174973487854004,-0.00008821487426757812,0.00002568960189819336,0.0003406405448913574,-0.00011032819747924805,-0.0002161264419555664,-0.00017577409744262695,-0.00011622905731201172,-0.00001996755599975586,0.0006383657455444336,-4.351139068603516e-6,-0.000053763389587402344,-0.00002378225326538086,0.00002816319465637207,0.0004792213439941406,-0.0001766681671142578,-0.00013905763626098633,0.00005409121513366699,-0.00006175041198730469,0.0005030930042266846,0.0008121132850646973,0.000056415796279907227,0.0006763637065887451,-0.000019848346710205078,-0.00009638071060180664,0.0000591278076171875,0.00010889768600463867,0.0006135702133178711,-0.0001137852668762207,0.00020501017570495605,0.00007596611976623535,0.000035136938095092773,0.000023305416107177734,0.00012189149856567383,-0.00008630752563476562,-0.0001010894775390625,-5.125999450683594e-6,0.0012150108814239502,0.00009274482727050781,-0.00004857778549194336,-0.000049233436584472656,-0.0001296401023864746,0.00007963180541992188,-0.00014764070510864258,-0.00002765655517578125,-0.00003314018249511719,0.000027239322662353516,0.0000667572021484375,-0.00022369623184204102,-0.000010013580322265625,0.000021249055862426758,-0.00013720989227294922,-0.00008207559585571289,0.0002193450927734375,-0.0002903938293457031,0.000045418739318847656,-0.00030428171157836914,-0.000010013580322265625,0.0005785822868347168,0.0005546808242797852,0.00007075071334838867,0.004621356725692749,-0.000036716461181640625,-0.00010591745376586914,0.00002512335777282715,0.0003387928009033203,0.0000718832015991211,0.00010204315185546875,0.00010895729064941406,0.00009271502494812012,0.00018197298049926758,-0.00006031990051269531,-0.00018489360809326172,0.0003101825714111328,-0.000032067298889160156,0.000037789344787597656,-0.00003814697265625,-0.002085864543914795,0.0002537667751312256,-0.000010609626770019531,0.00005042552947998047,0.000035762786865234375,-0.00005429983139038086,-0.00006413459777832031,-0.00008386373519897461,0.0004372894763946533,-0.000022172927856445312,-0.00016987323760986328,0.00014039874076843262,-0.00007969141006469727,-0.00003987550735473633,0.00024050474166870117,0.005055904388427734,0.001671910285949707,-0.00009959936141967773,-0.0000438690185546875,-0.00019782781600952148,0.0002580881118774414,-0.00013589859008789062,-0.00020301342010498047,0.00004106760025024414,0.00009933114051818848,-0.000053882598876953125,0.0025929510593414307,0.00036391615867614746,0.000033736228942871094,-0.00005835294723510742,7.927417755126953e-6,-0.00010579824447631836,-0.00008720159530639648,-3.933906555175781e-6,0.1276165246963501,0.00021758675575256348,-0.00010198354721069336,0.00001874566078186035,-0.000032961368560791016,0.0001640915870666504,-0.00008744001388549805,-0.00004208087921142578,0.00045368075370788574,-0.0002079606056213379,0.00004410743713378906,0.00012853741645812988,0.000026792287826538086,-0.00022047758102416992,0.000029385089874267578,-0.000013947486877441406,-0.00009304285049438477,0.00006154179573059082,0.0004672408103942871,-0.000014960765838623047,-0.00011289119720458984,-0.00003886222839355469,0.000010371208190917969,0.0001246929168701172,0.00011479854583740234,-0.00003600120544433594,-0.00037670135498046875,-0.00006574392318725586,0.0002937018871307373,-0.0000940561294555664,-1.1920928955078125e-6,-0.00005745887756347656,-0.00004309415817260742,0.000027894973754882812,-0.00010162591934204102,-0.00010275840759277344,0.00023615360260009766,0.00016704201698303223,-0.00014346837997436523,0.00006008148193359375,5.632638931274414e-6,-0.000017583370208740234,0.009659171104431152,0.0003736913204193115,-0.0003110170364379883,0.000014454126358032227,0.00022345781326293945,-0.00001704692840576172,-0.0000762939453125,0.000573277473449707,0.005822688341140747,0.000023871660232543945,-0.00002110004425048828,-0.00022226572036743164,0.00009772181510925293,0.00018203258514404297,-1.9669532775878906e-6,-0.00009453296661376953,-0.00005239248275756836,-2.086162567138672e-6,0.000019341707229614258,0.0000718235969543457,0.00005459785461425781,-0.00020551681518554688,0.00006598234176635742,0.0000985562801361084,0.0008968114852905273,-0.0000286102294921875,0.0006791055202484131,-0.00004029273986816406,-0.000039696693420410156,-0.00023359060287475586,0.000038176774978637695,-0.00012683868408203125,0.00013190507888793945,0.00014445185661315918,-0.0001309514045715332,4.798173904418945e-6,0.00006467103958129883,0.0001265406608581543,-2.6226043701171875e-6,-0.000023424625396728516,0.000037729740142822266,4.976987838745117e-6,0.002126544713973999,0.0005249381065368652,0.00006413459777832031,-0.00008350610733032227,-0.0002409815788269043,0.00020271539688110352,0.000024259090423583984,0.00012478232383728027,-0.00004500150680541992,-0.00023049116134643555,0.00021314620971679688,-0.000017404556274414062,3.6656856536865234e-6,0.00045368075370788574,-0.0000890493392944336,0.00022998452186584473,0.000058531761169433594,0.0007298290729522705,0.00005328655242919922,-0.00017076730728149414,-0.00011658668518066406,0.0006191432476043701,-0.00009560585021972656,6.5267086029052734e-6,-0.0001398324966430664,-0.00001043081283569336,0.0002633631229400635,0.00019493699073791504,0.00017637014389038086,-0.00009912252426147461,-0.00007408857345581055,-0.00010037422180175781,0.00024712085723876953,-0.00021344423294067383,0.000861048698425293,-0.000010073184967041016,-0.0000814199447631836,-0.00003904104232788086,8.374452590942383e-6,-0.00004011392593383789,0.00010991096496582031,0.00010779500007629395,-0.000050902366638183594,-0.00010770559310913086,0.0003357529640197754,0.00007778406143188477,0.00008699297904968262,0.00046202540397644043,-0.00016075372695922852,-0.00002294778823852539,0.0010742545127868652,0.0005284547805786133,0.000024646520614624023,0.0006504356861114502,0.00011712312698364258,0.00003865361213684082,-0.00008863210678100586,0.00009441375732421875,0.00018411874771118164,0.000039517879486083984,0.00011152029037475586,-0.00013297796249389648,0.000039637088775634766,0.00019237399101257324,0.000012993812561035156,9.59634780883789e-6,0.000058531761169433594,0.000014901161193847656,-0.000030100345611572266,-1.9073486328125e-6,-0.00012737512588500977,0.000038743019104003906,0.0005559623241424561,0.0021409690380096436,0.000024616718292236328,-0.00005745887756347656,-0.00004976987838745117,-0.0001424551010131836,0.000054001808166503906,-0.00006395578384399414,0.00018909573554992676,-0.00014507770538330078,0.00008353590965270996,-0.00010162591934204102,0.0005299746990203857,0.000017434358596801758,-0.00013780593872070312,-0.00014072656631469727,-0.000015854835510253906,-0.00002002716064453125,-0.00005441904067993164,-1.2516975402832031e-6,-0.000016927719116210938,0.00016480684280395508,0.00041171908378601074,-0.00017559528350830078,0.00014159083366394043,0.0002429187297821045,0.00021860003471374512,-0.00004029273986816406,0.0004150867462158203,-0.00004762411117553711,0.00006383657455444336,0.0002942979335784912,7.748603820800781e-6,0.00003960728645324707,0.000027388334274291992,-0.00003790855407714844,0.000011056661605834961,0.00011265277862548828,0.00005778670310974121,-0.0013222098350524902,0.00001099705696105957,-8.344650268554688e-6,0.0022065937519073486,0.005291998386383057,-0.00006622076034545898,-0.004418075084686279,-0.00006097555160522461,-0.00009429454803466797,0.0013254880905151367,-0.00014674663543701172,0.0004911422729492188,-0.00014281272888183594,0.0002702474594116211,0.000017255544662475586,0.0000254213809967041,0.00034558773040771484,-0.000010967254638671875,-0.000010013580322265625,0.000045418739318847656,-0.00013244152069091797,-0.000020444393157958984,-0.000016570091247558594,0.0003484487533569336,5.066394805908203e-7,0.00019156932830810547,-0.00009006261825561523,-0.00022393465042114258,0.00016388297080993652,-0.0002777576446533203,0.0001341402530670166,0.000038743019104003906,-0.00003641843795776367,0.00017714500427246094,0.000025719404220581055,0.0001552104949951172,-1.7881393432617188e-6,0.00006213784217834473,0.0001316070556640625,0.00010982155799865723,0.0008836090564727783,0.00007787346839904785,0.00007542967796325684,0.000048279762268066406,0.00006008148193359375,0.00003764033317565918,0.0001601874828338623,-0.0001499652862548828,0.00003916025161743164,0.0000546872615814209,0.00011843442916870117,0.00001665949821472168,0.00003987550735473633,-0.00019466876983642578,0.0000254213809967041,-0.000049054622650146484,0.00027313828468322754,-0.000080108642578125,-0.00006765127182006836,0.0003840327262878418,-0.000056684017181396484,0.00001677870750427246,-0.00010341405868530273,0.00016221404075622559,0.000048220157623291016,-0.00010126829147338867,-0.00016075372695922852,-0.0001227259635925293,-0.00010311603546142578,-0.000022709369659423828,-0.00015342235565185547,0.000052362680435180664,-4.470348358154297e-6,0.00012236833572387695,-0.00016045570373535156,0.00007578730583190918,-0.00023990869522094727,-0.0001914501190185547,-0.00008279085159301758,-0.00007343292236328125,-0.0008326172828674316,-0.00001823902130126953,-0.0007087588310241699,-0.00010222196578979492,-0.0041945576667785645,-0.00006508827209472656,0.0008530318737030029,0.0009375810623168945,0.000019341707229614258,-0.000024139881134033203,0.0012004971504211426,0.00011548399925231934,0.0001895427703857422,0.0004284381866455078,-0.00008600950241088867,0.00010529160499572754,0.00011485815048217773,-6.67572021484375e-6,0.00008240342140197754,-0.00004380941390991211,0.00015813112258911133,0.0005284547805786133,0.0008274614810943604,0.00005117058753967285,0.000456392765045166,-0.00001436471939086914,0.00013241171836853027,-0.00004076957702636719,-0.00002199411392211914,-0.00012421607971191406,-0.00017023086547851562,0.00014799833297729492,-0.00013178586959838867,0.00009930133819580078,0.00009962916374206543,0.000015109777450561523,0.000029087066650390625,-0.00010603666305541992,-0.00008636713027954102,-0.0001437067985534668,-0.00013703107833862305,0.00001239776611328125,0.00003311038017272949,0.00003993511199951172,-0.00020122528076171875,0.00010249018669128418,0.00008651614189147949,-0.00002574920654296875,0.00043967366218566895,-9.715557098388672e-6,-0.00009042024612426758,-0.00006175041198730469,-0.00009500980377197266,0.000014275312423706055,0.00021925568580627441,-0.0000514984130859375,0.0006403326988220215,0.0000622868537902832,-0.00042569637298583984,-0.00005894899368286133,0.0002613663673400879,0.000448375940322876,-0.00004220008850097656,0.000045418739318847656,-2.980232238769531e-7,-0.000032782554626464844,-0.0000826716423034668,-0.0000832676887512207,0.00008875131607055664,0.0010144412517547607,0.00007578730583190918,-0.000018775463104248047,0.0031089186668395996,0.0005257129669189453,-0.00007152557373046875,0.0001252591609954834,0.00026038289070129395,0.0001265406608581543,-8.64267349243164e-6,-0.00002372264862060547,0.0017885863780975342,-0.00002378225326538086,-0.00006216764450073242,-0.00016635656356811523,0.0001195371150970459,0.000011086463928222656,0.00010848045349121094,-0.000054836273193359375,-0.00009459257125854492,-0.000056743621826171875,-0.00026619434356689453,0.00003841519355773926,-0.000041425228118896484,0.0000298917293548584,-0.0001856088638305664,-0.0007587671279907227,-0.00013715028762817383,0.0009095072746276855,-0.00016045570373535156,0.0002684295177459717,0.00003266334533691406,0.0001531839370727539,0.00005778670310974121,0.0009407997131347656,0.000041037797927856445,-0.00020772218704223633,-0.00006699562072753906,-0.00013840198516845703,-0.000037729740142822266,0.007404327392578125,-0.0000489354133605957,-0.00009745359420776367,-0.00019782781600952148,0.00002422928810119629,-0.0000731348991394043,-0.000246584415435791,-0.00012737512588500977,-0.00004947185516357422,-0.00019246339797973633,0.000010371208190917969,-0.000010311603546142578,-0.00005835294723510742,-0.000025033950805664062,0.00011652708053588867,0.00020635128021240234,0.00003999471664428711,-0.00011289119720458984,0.000047653913497924805,-0.0002627372741699219,3.9637088775634766e-6,0.0006329715251922607,-9.298324584960938e-6,-0.00035500526428222656,0.000019282102584838867,-2.9206275939941406e-6,5.811452865600586e-6,-0.000036716461181640625,-0.000010013580322265625,0.00047320127487182617,0.00015267729759216309,-0.000027000904083251953,-0.000020384788513183594,-0.00043839216232299805,-2.3245811462402344e-6,0.0001836717128753662,0.000034689903259277344,-0.00006896257400512695,-0.00014281272888183594,-0.000012576580047607422,0.0006558001041412354,0.000038743019104003906,0.00003680586814880371,0.000013887882232666016,0.000016808509826660156,0.0010871589183807373,0.00023862719535827637,-0.000014781951904296875,7.331371307373047e-6,0.0004343390464782715,0.00017532706260681152,-0.00014132261276245117,0.00009936094284057617,-0.00005650520324707031,0.0003961622714996338,0.001109689474105835,0.00007915496826171875,0.0015815496444702148,-0.00012099742889404297,0.00034859776496887207,-0.00006216764450073242,0.000041037797927856445,-0.000010073184967041016,0.0000374913215637207,-0.00012218952178955078,-0.00007218122482299805,0.00019782781600952148,-4.351139068603516e-6,0.00044402480125427246,0.0006433725357055664,-0.000164031982421875,-0.000027239322662353516,-0.00007367134094238281,0.0009597539901733398,0.0008310377597808838,0.0003269612789154053,0.00029164552688598633,-0.00005835294723510742,0.000046312808990478516,-0.0001901388168334961,-0.0001137852668762207,0.0001596212387084961,-0.00008690357208251953,0.00008615851402282715,-0.00006622076034545898,0.00004038214683532715,-0.000043392181396484375,-0.00003224611282348633,-0.00027424097061157227,0.000021755695343017578,-0.00025856494903564453,-0.00005030632019042969,-0.000028848648071289062,-0.00002676248550415039,0.002356022596359253,0.00012424588203430176,0.000011056661605834961,-0.0003839731216430664,0.00004902482032775879,-0.00006556510925292969,0.00018784403800964355,-0.000029981136322021484,0.00039759278297424316,-0.000019550323486328125,0.00013276934623718262,0.0014253556728363037,0.00017648935317993164,-0.00003403425216674805,-0.00009924173355102539,0.0005148947238922119,-0.00010776519775390625,0.0000642538070678711,0.00032836198806762695,-0.00007903575897216797,-0.00002580881118774414,0.00012630224227905273,0.00017440319061279297,-0.000024557113647460938,-0.000024080276489257812,0.0000298917293548584,0.0000737607479095459,-0.00001627206802368164,0.00005397200584411621,-0.00011873245239257812,0.0010547041893005371,0.00504755973815918,3.9637088775634766e-6,0.00007963180541992188,0.00014579296112060547,-6.67572021484375e-6,-0.00004363059997558594,0.00010699033737182617,-0.000011861324310302734,-1.0728836059570312e-6,0.0002949833869934082,1.6391277313232422e-6,0.00010704994201660156,0.00006654858589172363,0.0003961622714996338,-0.00005173683166503906,0.000043720006942749023,-0.0001462697982788086,0.00003275275230407715,0.000058531761169433594,0.00005939602851867676,0.00007456541061401367,0.00045618414878845215,-0.0001575946807861328,0.00008717179298400879,0.0003941953182220459,0.000011712312698364258,0.0001697540283203125,-0.00004029273986816406,-0.00040012598037719727,-0.00021249055862426758,0.0012807250022888184,0.0003603994846343994,-0.000024318695068359375,-0.0001163482666015625,0.0001614093780517578,0.00005111098289489746,-0.000023126602172851562,-0.00003319978713989258,-0.00007158517837524414,0.0001348555088043213,-0.00008016824722290039,0.000023305416107177734,0.00172463059425354,3.0100345611572266e-6,-0.00006341934204101562,-0.000052869319915771484,0.00009086728096008301,0.00005131959915161133,0.000155717134475708,9.238719940185547e-6,0.00033912062644958496,-0.0003822445869445801,-0.00011461973190307617,-6.4373016357421875e-6,-0.00006645917892456055,0.000029742717742919922,-0.00003170967102050781,-0.00015968084335327148,0.00020307302474975586,0.000038743019104003906,-0.00006651878356933594,0.00023052096366882324,3.0100345611572266e-6,7.569789886474609e-6,0.0002987980842590332,0.0002408921718597412,-0.000018358230590820312,0.00035384297370910645,-0.00005805492401123047,0.00001093745231628418,0.000039517879486083984,-1.1920928955078125e-6,-0.00010836124420166016,-0.000011265277862548828,0.0075265467166900635,0.00006008148193359375,0.00023564696311950684,0.00014477968215942383,0.00006341934204101562,0.000039517879486083984,0.0003508925437927246,-0.00013762712478637695,0.00025907158851623535,-0.00006514787673950195,0.000032007694244384766,0.0004564225673675537,0.0006086826324462891,0.0004254281520843506,-0.00008046627044677734,-8.881092071533203e-6,0.00007167458534240723,-0.0016456246376037598,-0.00007790327072143555,-0.000043392181396484375,-0.00006961822509765625,0.00016257166862487793,-0.00021779537200927734,0.00003185868263244629,-0.00006175041198730469,0.0011184215545654297,-0.0002079606056213379,0.00008448958396911621,0.000530540943145752,-0.000014543533325195312,-0.00006097555160522461,0.0005841255187988281,-0.000056743621826171875,0.000029087066650390625,0.00009694695472717285,0.00007542967796325684,0.00006911158561706543,0.00010526180267333984,-3.933906555175781e-6,0.0000655055046081543,-0.000023066997528076172,0.0005117058753967285,0.00013065338134765625,0.0002790391445159912,0.000026971101760864258,-0.00017827749252319336,-0.00005930662155151367,3.0100345611572266e-6,0.0002098679542541504,0.0014828145503997803,0.0008340179920196533,0.000054776668548583984,-0.0000349879264831543,0.000046372413635253906,-0.00006031990051269531,0.00008016824722290039,-8.761882781982422e-6,-0.00015115737915039062,-2.9206275939941406e-6,0.00020006299018859863,-0.00011605024337768555,-0.00004887580871582031,-0.000793159008026123,0.000043720006942749023,-8.761882781982422e-6,0.000028640031814575195,-0.00011551380157470703,0.00001239776611328125,0.00069388747215271,0.0001379847526550293,-0.0001615285873413086,0.000049442052841186523,-0.00006645917892456055,0.0002759993076324463,0.000010281801223754883,-0.00016045570373535156,0.0001392662525177002,0.0001501142978668213,0.0000959634780883789,0.00001093745231628418,-0.00022524595260620117,0.00020828843116760254,-0.00002199411392211914,0.000026553869247436523,-0.000037670135498046875,-0.00011289119720458984,0.00009638071060180664,-0.00004029273986816406,-0.00016045570373535156,-0.000058710575103759766,0.0020170211791992188,-0.00002092123031616211,-0.000017583370208740234,-0.00013118982315063477,-0.00004947185516357422,0.00006341934204101562,0.00012055039405822754,-0.00012302398681640625,-0.000021457672119140625,-0.00006717443466186523,0.000012993812561035156,0.0004381239414215088,-0.000050902366638183594,0.0006940066814422607,-0.00003445148468017578,0.31808745861053467,0.00021842122077941895,0.00020116567611694336,-0.000010609626770019531,-0.00012761354446411133,-0.0000393986701965332,-0.00002372264862060547,0.00011542439460754395,0.0001888275146484375,0.00020968914031982422,-0.00011175870895385742,0.000043839216232299805,-0.00029855966567993164,-0.00004309415817260742,0.0026486217975616455,0.00005194544792175293,-0.00005990266799926758,-0.00005239248275756836,0.00018993020057678223,0.00013309717178344727,0.000011056661605834961,-0.0000400543212890625,-0.00017023086547851562,7.063150405883789e-6,-0.00004869699478149414,-0.00008690357208251953,0.0005363523960113525,-0.00006455183029174805,0.0005677938461303711,0.000020176172256469727,-0.00001049041748046875,-0.000037789344787597656,-0.0003898739814758301,0.00005176663398742676,0.000051349401473999023,0.000028371810913085938,-0.00004583597183227539,0.00012484192848205566,0.0001392662525177002,0.00009062886238098145,-2.980232238769531e-7,0.000825732946395874,0.00014868378639221191,0.0001696944236755371,0.00018829107284545898,-0.00004786252975463867,0.00045999884605407715,0.00005123019218444824,0.00005391240119934082,0.0005907714366912842,-0.0006937384605407715,-0.00002199411392211914,0.000032275915145874023,0.00013822317123413086,-0.00022518634796142578,-0.000017881393432617188,0.00003266334533691406,-0.00014150142669677734,-3.2782554626464844e-6,4.500150680541992e-6,0.0006263852119445801,0.00007930397987365723,0.0001112520694732666,-0.00003904104232788086,-0.00016045570373535156,0.00007933378219604492,0.0001265108585357666,0.00009196996688842773,-0.00007623434066772461,-0.000011622905731201172,-6.4373016357421875e-6,9.000301361083984e-6,7.778406143188477e-6,0.000364452600479126,-0.00016021728515625,0.00030490756034851074,-0.00002872943878173828,-0.00003331899642944336,9.119510650634766e-6,0.00033020973205566406,0.00008895993232727051,0.000352710485458374,0.00006687641143798828,0.00025537610054016113,0.00009340047836303711,1.4603137969970703e-6,0.000014573335647583008,-0.0001131892204284668,0.0005371570587158203,0.0002281665802001953,0.0003352165222167969,0.000035136938095092773,0.0000196993350982666,-0.00003075599670410156,-0.00007712841033935547,0.00006508827209472656,-0.00014221668243408203,0.00028651952743530273,0.000026464462280273438,-0.000043511390686035156,0.00011664628982543945,0.00005182623863220215,-0.00006175041198730469,-0.00011557340621948242,-0.00047981739044189453,-0.00005501508712768555,-0.00005173683166503906,0.00020486116409301758,-0.00009000301361083984,0.0001334846019744873,0.000046133995056152344,-0.00011199712753295898,0.000057309865951538086,0.000055164098739624023,-0.00007021427154541016,-0.00008213520050048828,-0.0005948543548583984,0.0004595518112182617,-0.0000502467155456543,-0.00011968612670898438,2.950429916381836e-6,3.9637088775634766e-6,-0.00010091066360473633,0.00020685791969299316,-0.0019667744636535645,0.000039637088775634766,-0.00001728534698486328,0.0007398128509521484,0.0004901885986328125,-0.00007021427154541016,0.0005512535572052002,-0.000010132789611816406,0.00010564923286437988,0.000029206275939941406,0.0009828805923461914,0.0007458925247192383,0.00022298097610473633,-0.00008064508438110352,-0.00031441450119018555,0.00004622340202331543,0.00025957822799682617,-0.00017589330673217773,0.0002530217170715332,0.00017854571342468262,0.00012221932411193848,0.0001150369644165039,-0.00015735626220703125,-1.1920928955078125e-6,-0.0000400543212890625,0.00012242794036865234,0.0001138448715209961,-0.000016391277313232422,-0.00007069110870361328,0.00003865361213684082,0.000045746564865112305,-0.00006562471389770508,-1.1920928955078125e-6,-0.0001297593116760254,-0.00014013051986694336,0.00009170174598693848,0.000030606985092163086,-0.0001080632209777832,0.000028371810913085938,0.000012010335922241211,-0.0001329183578491211,0.000016689300537109375,-1.0132789611816406e-6,0.00016051530838012695,-0.000010609626770019531,0.00017687678337097168,-0.000010013580322265625,0.00021722912788391113,-0.000056803226470947266,0.0001640021800994873,-0.00030559301376342773,0.0006647408008575439,-0.00004082918167114258,-0.0000826120376586914,0.00009205937385559082,0.00014761090278625488,0.00012445449829101562,0.000043392181396484375,0.0001557767391204834,-0.00008088350296020508,-0.00012415647506713867,-0.00014013051986694336,-0.0001677870750427246,-0.00018537044525146484,-0.000011146068572998047,0.0007800459861755371,-0.00008296966552734375,-0.00006592273712158203,0.00004845857620239258,0.00006705522537231445,-0.0005903244018554688,-0.0001881122589111328,-0.00032401084899902344,0.00023132562637329102,-0.00021779537200927734,-0.00002199411392211914,0.000045418739318847656,0.00012093782424926758,-0.00009196996688842773,-0.00003314018249511719,0.00002378225326538086,-2.1457672119140625e-6,0.00002434849739074707,0.000023096799850463867,0.00009694695472717285,-0.00002104043960571289,0.000026464462280273438,2.86102294921875e-6,-0.00007140636444091797,0.000024259090423583984,-0.00019347667694091797,0.0002339184284210205,-0.000038564205169677734,-0.00010156631469726562,1.4007091522216797e-6,0.0004532933235168457,0.00003993511199951172,-0.00002372264862060547,0.00023031234741210938,-0.00005310773849487305,0.0019401609897613525,-0.0000908970832824707,-0.00007098913192749023,0.000051409006118774414,0.0001361370086669922,-0.00006884336471557617,0.00025540590286254883,9.000301361083984e-6,-0.00013500452041625977,-0.00018036365509033203,-0.00011593103408813477,0.0003141164779663086,-0.00003451108932495117,-0.00003719329833984375,0.0000254213809967041,-0.000011265277862548828,0.00027486681938171387,0.0018061399459838867,-0.00009322166442871094,-0.000010728836059570312,0.00004583597183227539,0.00020867586135864258,-0.00015163421630859375,0.00027063488960266113,0.000049740076065063477,-0.00010204315185546875,-0.000045180320739746094,-0.00002950429916381836,-0.000029027462005615234,0.00020259618759155273,-0.00017505884170532227,0.00008845329284667969,0.0005846619606018066,0.0005157291889190674,-0.00006103515625,0.00015610456466674805,-0.00013703107833862305,3.5762786865234375e-7,0.0007618069648742676,0.00023725628852844238,-0.00003898143768310547,-0.0000324249267578125,0.00040727853775024414,0.00007739663124084473,0.00003522634506225586,0.00022685527801513672,0.0033787190914154053,-0.00036269426345825195,2.8908252716064453e-6,0.0005964338779449463,0.000030159950256347656,-0.000011146068572998047,0.0003689229488372803,0.000046193599700927734,0.0002911686897277832,-0.000018775463104248047,0.00004985928535461426,0.00003018975257873535,-0.00044041872024536133,-0.0007075667381286621,0.0002326369285583496,0.0000254213809967041,1.6689300537109375e-6,-2.86102294921875e-6,0.002922743558883667,-0.0001590251922607422,-0.00007975101470947266,0.0000165402889251709,-0.00005894899368286133,0.0000241696834564209,-0.00008285045623779297,-0.00003612041473388672,0.000056803226470947266,0.00016754865646362305,-0.00010323524475097656,-0.00005453824996948242,-0.00046634674072265625,-0.00002950429916381836,0.00010889768600463867,-0.000020205974578857422,-0.000038683414459228516,0.000038743019104003906,-0.00006711483001708984,0.000011712312698364258,0.00028818845748901367,-4.351139068603516e-6,0.0013106167316436768,0.00014477968215942383,-0.00007921457290649414,-0.00005549192428588867,-0.0002855658531188965,-0.000302731990814209,0.00023311376571655273,-0.00013703107833862305,0.0002963542938232422,0.00005352497100830078,0.0005941689014434814,0.00018492341041564941,0.00011709332466125488,-0.000010848045349121094,-0.00010895729064941406,-0.00002008676528930664,0.004773199558258057,0.00023868680000305176,-0.00005537271499633789,0.0000432431697845459,0.000025153160095214844,0.0002657175064086914,0.000039517879486083984,-0.0001901388168334961,-0.00006175041198730469,0.00013053417205810547,-0.00004029273986816406,0.00022920966148376465,0.000652313232421875,0.0000298917293548584,0.0001093745231628418,-0.00008291006088256836,-0.00021922588348388672,-0.00018644332885742188,0.0009926557540893555,3.844499588012695e-6,-0.00004309415817260742,-0.00003129243850708008,-0.000057578086853027344,0.00003692507743835449,0.00011393427848815918,0.00007620453834533691,0.0002695620059967041,-0.0001327991485595703,0.00013884902000427246,0.00017318129539489746,0.0004583001136779785,-0.000033855438232421875,0.00013649463653564453,-0.00007337331771850586,0.00005182623863220215,-3.159046173095703e-6,1.430511474609375e-6,0.0002072751522064209,0.0000890195369720459,-0.0001570582389831543,-0.00008368492126464844,0.00007593631744384766,0.0000731348991394043,-0.00006175041198730469,0.0001754164695739746,0.0003961622714996338,0.000012993812561035156,0.000051409006118774414,-0.000052809715270996094,0.00003629922866821289,-0.00012046098709106445,-0.0001901388168334961,0.00003853440284729004,0.00005778670310974121,0.00012105703353881836,-0.0000883340835571289,0.00013235211372375488,0.0000991523265838623,-0.0001532435417175293,0.0011962652206420898,-0.00002682209014892578,-0.00001728534698486328,0.00014254450798034668,0.00013458728790283203,-0.000037550926208496094,0.00031632184982299805,0.0001742243766784668,0.00003337860107421875,-0.00003904104232788086,0.00009271502494812012,-0.0020911097526550293,0.00009137392044067383,0.0010845959186553955,-0.00023037195205688477,-0.000053882598876953125,-7.867813110351562e-6,-0.0001334547996520996,0.001875549554824829,0.0003803372383117676,-0.000019371509552001953,0.0000603795051574707,-0.00013530254364013672,-0.000046372413635253906,-0.00001823902130126953,0.000056415796279907227,0.00006154179573059082,0.0004950761795043945,0.00016075372695922852,-5.781650543212891e-6,0.000038743019104003906,-0.00023627281188964844,-0.000018715858459472656,-0.002343416213989258,-0.000057756900787353516,-0.00019466876983642578,-0.00003224611282348633,0.0002512037754058838,-0.00028067827224731445,-0.00011289119720458984,0.00023931264877319336,1.0003868341445923,-0.00007772445678710938,0.00023344159126281738,0.000018298625946044922,-1.1920928955078125e-6,0.00023511052131652832,-0.00030601024627685547,-0.0002751350402832031,0.000011056661605834961,-0.00021910667419433594,-1.8477439880371094e-6,0.00003764033317565918,-0.00006860494613647461,0.00011625885963439941,-0.0000514984130859375,-0.00010776519775390625,0.00008913874626159668,-0.00008744001388549805,-0.000051140785217285156,-0.00014150142669677734,0.000258713960647583,0.00348818302154541,0.0001920759677886963,0.0002257227897644043,0.00007304549217224121,-0.000048279762268066406,0.00004595518112182617,-0.00006258487701416016,-0.00010573863983154297,-0.00015670061111450195,0.0012691020965576172,0.00011026859283447266,0.0004897117614746094,-0.00019496679306030273,-0.00003635883331298828,0.000314176082611084,-7.62939453125e-6,0.00010415911674499512,-0.00012421607971191406,0.00010469555854797363,-0.000039696693420410156,7.18235969543457e-6,-0.00011962652206420898,0.000039637088775634766,-0.0002091526985168457,0.0000673532485961914,-0.00047576427459716797,0.00011664628982543945,-0.00003838539123535156,-0.00004696846008300781,-0.00017017126083374023,-0.000046133995056152344,-0.00009375810623168945,-0.00004470348358154297,0.0020770132541656494,-0.00001233816146850586,0.00012215971946716309,0.00010439753532409668,0.001260519027709961,-0.000017940998077392578,-0.00004214048385620117,1.5497207641601562e-6,0.00010895729064941406,-0.000020563602447509766,0.00019845366477966309,0.0000692605972290039,-0.00003814697265625,-7.152557373046875e-7,-0.00015026330947875977,-0.000029146671295166016,-0.00006175041198730469,-0.000041425228118896484,-0.0000693202018737793,-0.00008690357208251953,-0.000010013580322265625,7.12275505065918e-6,0.0000591278076171875,-0.000030338764190673828,0.0009763538837432861,-0.00006210803985595703,0.00011539459228515625,0.001177668571472168,-0.00014126300811767578,-0.00006943941116333008,-0.000021457672119140625,-0.00008189678192138672,0.0008236169815063477,-1.1920928955078125e-6,0.00010150671005249023,0.0000781714916229248,-0.00004011392593383789,0.000014871358871459961,7.12275505065918e-6,0.000028848648071289062,-0.0001347661018371582,-0.000010728836059570312,0.0001010596752166748,-0.00027108192443847656,0.00003764033317565918,0.000012636184692382812,0.001036524772644043,1.0087215900421143,0.00008603930473327637,-0.00013768672943115234,-0.00037223100662231445,-0.0005692839622497559,-4.0531158447265625e-6,0.000015944242477416992,-0.00008183717727661133,0.00005397200584411621,0.00005391240119934082,0.0005032718181610107,-0.000045180320739746094,0.00021025538444519043,0.00003045797348022461,-0.00008016824722290039,-0.000021278858184814453,0.0008064806461334229,-0.00007969141006469727,-0.00014507770538330078,0.000764697790145874,-0.00006896257400512695,-0.000029742717742919922,-0.0015646815299987793,0.00011652708053588867,-0.000023424625396728516,0.00001099705696105957,-0.00014096498489379883,-0.0011262297630310059,0.00007939338684082031,-0.0004246234893798828,-0.0003229975700378418,-0.0001869797706604004,0.0002937018871307373,0.00003102421760559082,-2.9206275939941406e-6,-0.000033795833587646484,0.00009039044380187988,-0.00004976987838745117,-0.00067901611328125,2.1457672119140625e-6,-0.0003625154495239258,-0.000010132789611816406,-0.00013023614883422852,0.00004336237907409668,-0.00018399953842163086,0.000020056962966918945,0.000033527612686157227,-0.00005745887756347656,-0.00013870000839233398,0.000061005353927612305,0.0004118680953979492,0.0001633763313293457,0.0001640915870666504,0.000041037797927856445,0.00021582841873168945,0.00004589557647705078,0.00035059452056884766,-0.0006142854690551758,-0.00008296966552734375,0.00010183453559875488,-0.0001697540283203125,0.0002747476100921631,0.00038185715675354004,0.00004190206527709961,-0.00011289119720458984,-0.000056684017181396484,8.672475814819336e-6,-0.00008285045623779297,0.000041931867599487305,-0.00005620718002319336,-0.000013828277587890625,0.00022047758102416992,-4.351139068603516e-6,-0.00010949373245239258,0.0002484321594238281,0.00010889768600463867,-0.00005888938903808594,-0.00007700920104980469,0.00007578730583190918,-0.00018459558486938477,0.00042000412940979004,-0.00001138448715209961,-0.000059723854064941406,0.00004139542579650879,-0.00012451410293579102,0.00001436471939086914,-0.00004947185516357422,-9.179115295410156e-6,-0.00009208917617797852,0.00018027424812316895,-0.00003510713577270508,0.000011056661605834961,-0.00006455183029174805,0.00010117888450622559,-0.0000730752944946289,0.0003085136413574219,-0.0001093745231628418,0.00018098950386047363,0.000013768672943115234,0.00002446770668029785,-0.0003123283386230469,-0.00011402368545532227,0.000039190053939819336,0.000024139881134033203,0.00015014410018920898,0.00012633204460144043,0.000341564416885376,-0.00013881921768188477,-0.000045180320739746094,0.000043958425521850586,-0.00010228157043457031,-0.00010758638381958008,0.00009515881538391113,-4.351139068603516e-6,0.0002936720848083496,0.000529944896697998,-0.00017201900482177734,-0.00012052059173583984,-0.000049591064453125,0.00006121397018432617,-0.000046312808990478516,0.00016757845878601074,0.0000661313533782959,0.000015079975128173828,0.00004929304122924805,-0.00009250640869140625,0.00010690093040466309,0.00016096234321594238,0.00005218386650085449,-0.00013786554336547852,-0.00045883655548095703,-0.00004935264587402344,-0.0004392862319946289,0.00006970763206481934,0.00029528141021728516,-0.000047147274017333984,-0.0002980232238769531,0.00006908178329467773,-0.000021159648895263672,-0.00002372264862060547,-0.00002968311309814453,-0.000016391277313232422,-0.00007551908493041992,0.00009009242057800293,0.000193864107131958,-0.00046765804290771484,0.00023192167282104492,-0.00011664628982543945,-0.00030690431594848633,0.000059604644775390625,-0.00007367134094238281,-0.00003600120544433594,-0.00010567903518676758,-0.000056803226470947266,-0.00011146068572998047,-0.000019848346710205078,0.00005778670310974121,-0.00011724233627319336,0.00002625584602355957,-0.000050961971282958984,-0.000021398067474365234,-0.00010007619857788086,0.00018808245658874512,-1.8477439880371094e-6,-0.000019788742065429688,-0.00009888410568237305,-0.00017023086547851562,-0.00020825862884521484,-0.000057816505432128906,1.6391277313232422e-6,-0.00001615285873413086,0.0005757808685302734,7.748603820800781e-6,0.0002982020378112793,-0.00003451108932495117,0.00038295984268188477,0.00037348270416259766,-0.00014138221740722656,0.00047150254249572754,-0.00019234418869018555,0.000023245811462402344,0.00006395578384399414,-0.00003552436828613281,0.00009647011756896973,0.0005761981010437012,0.00031745433807373047,0.00015947222709655762,-0.000052869319915771484,0.0005498528480529785,-0.00009524822235107422,-0.000030040740966796875,0.00012150406837463379,0.000021845102310180664,-0.00007903575897216797,0.00009292364120483398,-6.496906280517578e-6,0.000029921531677246094,-0.00006598234176635742,-0.00029212236404418945,0.00029605627059936523,-0.00004476308822631836,9.000301361083984e-6,-0.00015228986740112305,0.0002498328685760498,-0.000021457672119140625,0.0003685951232910156,0.00014898180961608887,0.00009989738464355469,-0.00012737512588500977,0.00017708539962768555,-0.00017136335372924805,0.00008615851402282715,0.00015044212341308594,0.00007304549217224121,0.00012728571891784668,-0.00003600120544433594,-0.00007331371307373047,-0.0001888871192932129,-0.00010734796524047852,-0.00005900859832763672,-8.761882781982422e-6,0.00018960237503051758,-0.00021272897720336914,0.0005817413330078125,9.804964065551758e-6,0.000014960765838623047,0.00008615851402282715,-0.0000209808349609375,0.0007527768611907959,-0.00004220008850097656,-0.00037235021591186523,0.00021222233772277832,0.00033485889434814453,0.0000686347484588623,-0.00008279085159301758,0.00004413723945617676,0.00034230947494506836,0.00015610456466674805,-0.000028908252716064453,2.2649765014648438e-6,-0.00003349781036376953,-0.0002072453498840332,-0.00011301040649414062,0.00014516711235046387,-4.172325134277344e-6,0.0002345740795135498,0.00027808547019958496,-0.00017023086547851562,-3.993511199951172e-6,0.0003819465637207031,0.00044855475425720215,-0.00005161762237548828,-0.00019669532775878906,-0.00005030632019042969,0.0003578066825866699,-0.000017344951629638672,0.0005161166191101074,-0.000014603137969970703,0.00008550286293029785,0.0001817643642425537,9.000301361083984e-6,0.00008258223533630371,-8.165836334228516e-6,0.00001099705696105957,0.0001971721649169922,-0.00004839897155761719,0.00006598234176635742,0.00010657310485839844,0.0001900196075439453,-0.00016456842422485352,-0.00003325939178466797,-0.000011265277862548828,0.0004184246063232422,-0.00007653236389160156,-0.00005555152893066406,-0.00017207860946655273,0.00004303455352783203,-0.00006151199340820312,0.0015815496444702148,0.0007964670658111572,-0.0002117156982421875,-0.000015854835510253906,-0.0001703500747680664,-0.000047147274017333984,-0.0001582503318786621,0.00002637505531311035,0.00022432208061218262,-0.000016570091247558594,0.0004343390464782715,0.00020334124565124512,-0.00012981891632080078,0.000038743019104003906,-0.00022560358047485352,0.000038623809814453125,-5.185604095458984e-6,0.00019499659538269043,-0.00006216764450073242,0.00027042627334594727,0.00024017691612243652,-0.0000851750373840332,-0.000020742416381835938,0.002068042755126953,-9.894371032714844e-6,0.00007963180541992188,0.0006750524044036865,0.0003387928009033203,0.00006112456321716309,-0.000027120113372802734,-0.0000654458999633789,-0.0001513361930847168,0.00003173947334289551,0.00007697939872741699,0.00004163384437561035,-0.000056803226470947266,0.000038743019104003906,-0.00022876262664794922,-0.0000661611557006836,-0.0001723766326904297,0.000017702579498291016,0.00015524029731750488,-0.00010985136032104492,-0.00006914138793945312,0.000056415796279907227,-0.00004416704177856445,-0.00002199411392211914,-0.00007027387619018555,0.00028079748153686523,-0.00001150369644165039,0.0002453327178955078,-0.00006818771362304688,0.0002784430980682373,-8.64267349243164e-6,-0.00006556510925292969,-0.000011146068572998047,0.00018805265426635742,0.00004252791404724121,-0.00014019012451171875,0.00025513768196105957,-0.000032007694244384766,-0.00004470348358154297,-0.00001615285873413086,0.0000731050968170166,-0.0002339482307434082,0.0000330805778503418,-0.000010907649993896484,0.0001723170280456543,-0.00004082918167114258,0.000033855438232421875,0.0008778572082519531,-0.00022464990615844727,0.0001614391803741455,-0.00010865926742553711,-5.364418029785156e-6,0.0000165402889251709,0.00005760788917541504,0.00008916854858398438,0.00008800625801086426,0.00047728419303894043,0.0001607835292816162,-0.00018334388732910156,-0.00008702278137207031,0.000030487775802612305,0.00002664327621459961,0.00008702278137207031,-0.0009887218475341797,-0.00010830163955688477,0.00008445978164672852,-0.00012737512588500977,0.0006105601787567139,0.000024199485778808594,-0.00021070241928100586,-0.00006306171417236328,0.00008878111839294434,-0.000024497509002685547,-0.00011301040649414062,-0.00006771087646484375,0.000011593103408813477,-0.00002092123031616211,2.384185791015625e-7,-0.00017023086547851562,-0.00010502338409423828,0.0005835294723510742,-0.000049233436584472656,-0.0003432631492614746,0.0001869499683380127,-0.00009679794311523438,-0.000095367431640625,-0.00029212236404418945,0.00001195073127746582,-0.000087738037109375,0.00003781914710998535,0.00011262297630310059,-0.00007319450378417969,2.4139881134033203e-6,-0.00026106834411621094,-0.00011718273162841797,0.00018864870071411133,-0.000020384788513183594,0.00003629922866821289,0.0010464191436767578,0.0001621842384338379,0.00003224611282348633,0.0007508397102355957,0.00022852420806884766,-0.000052869319915771484,0.00011625885963439941,0.00027117133140563965,-0.00010395050048828125,-0.00007355213165283203,0.00006175041198730469,0.00014325976371765137,-0.000020444393157958984,-0.000026464462280273438,-0.00006175041198730469,0.00013712048530578613,-0.00006824731826782227,3.1888484954833984e-6,0.0001779496669769287,0.004655003547668457,-0.000024080276489257812,-0.000011265277862548828,0.0011660456657409668,0.000012755393981933594,-0.00007414817810058594,0.00005173683166503906,1.0184556245803833,-0.00008571147918701172,0.00037360191345214844,0.0007800459861755371,-0.00007420778274536133,0.000027000904083251953,-0.000028371810913085938,0.00011163949966430664,0.000022023916244506836,0.000745624303817749,-0.00014597177505493164,0.0000292360782623291,5.8710575103759766e-6,-0.0001119375228881836,0.00011757016181945801,0.00006508827209472656,-0.000024080276489257812,-0.0013048648834228516,-0.000053882598876953125,0.0001825094223022461,-0.00005710124969482422,0.00004652142524719238,0.00024560093879699707,-0.00004416704177856445,-0.00016045570373535156,-0.00005036592483520508,-0.00022214651107788086,-0.00012415647506713867,0.00006556510925292969,-0.00012761354446411133,0.00004076957702636719,-0.00013822317123413086,0.0005757808685302734,-0.00010836124420166016,0.000033855438232421875,8.851289749145508e-6,0.00005117058753967285,0.00009268522262573242,4.976987838745117e-6,0.0002751648426055908,-0.00007146596908569336,-9.715557098388672e-6,-0.000335693359375,-0.00006729364395141602,0.00011745095252990723,-0.00003415346145629883,0.00010973215103149414,0.00025710463523864746,-0.00009584426879882812,0.0002416670322418213,-0.00003600120544433594,-0.000030040740966796875,-0.00011265277862548828,0.00019824504852294922,-0.00005328655242919922,-0.000022709369659423828,0.0006711781024932861,0.0011954307556152344,-0.00022047758102416992,-0.00003445148468017578,0.0001779496669769287,-0.00013595819473266602,-0.000034689903259277344,0.000028759241104125977,0.0000241696834564209,0.00006532669067382812,0.00010141730308532715,0.00005391240119934082,9.000301361083984e-6,0.0014383792877197266,-1.7881393432617188e-7,0.00001800060272216797,0.00009328126907348633,-0.00018334388732910156,-0.000011146068572998047,-0.00017023086547851562,-0.00006347894668579102,0.0001862049102783203,-0.0000349879264831543,0.0000298917293548584,-0.00013190507888793945,-0.00006830692291259766,-9.298324584960938e-6,-0.0000565648078918457,0.00002580881118774414,0.00036770105361938477,0.00025725364685058594,0.000027358531951904297,0.00026607513427734375,0.00031816959381103516,-0.000018537044525146484,-0.00002002716064453125,0.000022470951080322266,-1.8477439880371094e-6,0.000015228986740112305,-4.470348358154297e-6,0.00011917948722839355,0.000028759241104125977,-0.001032710075378418,8.255243301391602e-6,-0.00007712841033935547,0.00010132789611816406,-0.000023245811462402344,0.0000559687614440918,-0.00015044212341308594,0.000010162591934204102,0.000064849853515625,-0.00002759695053100586,-0.00021564960479736328,-4.351139068603516e-6,-0.00004494190216064453,-0.000026702880859375,0.00011646747589111328,0.00008419156074523926,-2.1457672119140625e-6,0.00020053982734680176,0.0003184080123901367,0.001975119113922119,0.000016242265701293945,-2.384185791015625e-6,0.0001666545867919922,0.0012909173965454102,0.0002301037311553955,0.00019985437393188477,0.0000909268856048584,-6.67572021484375e-6,-0.000048220157623291016,8.374452590942383e-6,-0.00005829334259033203,0.000010639429092407227,-0.000041544437408447266,0.00020751357078552246,-0.00004786252975463867,0.00004312396049499512,-0.000059604644775390625,4.082918167114258e-6,0.00035640597343444824,-0.00006622076034545898,0.0002644360065460205,-0.00013625621795654297,-0.0000349879264831543,0.0023232102394104004,0.00009521842002868652,-0.0007143020629882812,0.000013738870620727539,0.00011783838272094727,-9.715557098388672e-6,7.450580596923828e-7,0.00007832050323486328,-0.000021159648895263672,0.0015623271465301514,0.0000209808349609375,0.000045418739318847656,-0.00008744001388549805,0.0003101825714111328,0.00022277235984802246,0.00002300739288330078,0.00004509091377258301,-0.00011146068572998047,-0.00005745887756347656,-3.159046173095703e-6,-0.0001410841941833496,0.000024050474166870117,-0.00004857778549194336,-0.0005680322647094727,0.00028651952743530273,-5.4836273193359375e-6,0.00037658214569091797,-0.0014178156852722168,-0.00008702278137207031,0.0004526674747467041,0.00004699826240539551,0.0000623166561126709,1.2814998626708984e-6,-0.00004112720489501953,-0.0009093880653381348,0.0000832676887512207,0.00014960765838623047,0.00007271766662597656,0.00001621246337890625,-0.00003600120544433594,0.000030606985092163086,-0.0005013942718505859,-0.00007253885269165039,-0.00007981061935424805,-0.000011861324310302734,-0.0001266002655029297,0.0007370710372924805,-0.00005441904067993164,-0.000012159347534179688,0.00016859173774719238,0.000017911195755004883,-2.9206275939941406e-6,0.00043386220932006836,0.0009403526782989502,0.00022208690643310547,-0.00007641315460205078,0.000056415796279907227,-0.00008422136306762695,-0.0000400543212890625,-0.00012761354446411133,-0.00004363059997558594,-0.00005882978439331055,0.000314176082611084,-0.00034880638122558594,0.000736624002456665,0.00003692507743835449,-0.00023359060287475586,-0.00010353326797485352,-0.000030994415283203125,3.0100345611572266e-6,0.00006923079490661621,-0.00006985664367675781,-0.00009584426879882812,-0.0002275705337524414,0.008132874965667725,-0.00003075599670410156,0.00007027387619018555,0.0000667870044708252,0.00020256638526916504,0.00020548701286315918,0.00020930171012878418,-0.00003743171691894531,-0.00010627508163452148,0.000017434358596801758,0.0013747215270996094,0.00020185112953186035,-0.0006191730499267578,0.0001004338264465332,0.0003573298454284668,0.00017917156219482422,-0.000012576580047607422,0.00002187490463256836,-0.00009495019912719727,0.006038188934326172,-0.00014197826385498047,0.0001494884490966797,0.00009745359420776367,0.00006222724914550781,0.0001672506332397461,2.1457672119140625e-6,0.00008213520050048828,-0.000035762786865234375,-0.000044465065002441406,-0.00030875205993652344,0.00048103928565979004,-0.000011861324310302734,0.004509329795837402,-0.000025987625122070312,-0.0001837015151977539,-0.00009161233901977539,-0.00013208389282226562,0.00008907914161682129,0.000038683414459228516,0.00005182623863220215,-0.000052869319915771484,-0.00007712841033935547,0.0004075765609741211,0.0003998279571533203,-0.000015139579772949219,0.0015786290168762207,0.000087738037109375,0.00003471970558166504,0.01565346121788025,-0.000039696693420410156,-0.0006622672080993652,0.0002645254135131836,-0.00004309415817260742,0.000038117170333862305,2.592802047729492e-6,0.00014901161193847656,0.0012169480323791504,0.00009399652481079102,-0.00028514862060546875,-0.000043511390686035156,0.0001658797264099121,0.0002593696117401123,-0.0003453493118286133,0.0002817809581756592,-0.00010091066360473633,0.0001391768455505371,-0.00013524293899536133,0.0005136430263519287,0.000026941299438476562,-0.000023603439331054688,-0.00011515617370605469,-0.000022709369659423828,0.00024405121803283691,-0.00004029273986816406,-0.00009453296661376953,-0.00004935264587402344,-0.00006175041198730469,0.0004950761795043945,-4.410743713378906e-6,0.0001182854175567627,-0.000047087669372558594,-0.0006338357925415039,0.000014841556549072266,0.00009498000144958496,-0.000025331974029541016,0.00020390748977661133,0.00019618868827819824,-0.000110626220703125,-0.00021350383758544922,-0.000041425228118896484,-0.00016671419143676758,0.00010725855827331543,-0.00009161233901977539,0.0006235837936401367,0.000038564205169677734,0.00014349818229675293,0.00025275349617004395,0.000040590763092041016,0.000046372413635253906,-0.0002009868621826172,-0.0000998377799987793,-0.00005173683166503906,-0.0012410283088684082,-0.00015562772750854492,-0.00003331899642944336,0.000051409006118774414,0.00008615851402282715,-0.000018477439880371094,0.0002484321594238281,-0.0005284547805786133,-9.119510650634766e-6,-0.0006968379020690918,-0.0018134713172912598,0.00033420324325561523,0.0009375810623168945,0.00008639693260192871,-0.00003224611282348633,-0.00006753206253051758,-0.0000654458999633789,-0.0001646280288696289,-1.0132789611816406e-6,0.0001569688320159912,-0.000152587890625,0.000691533088684082,0.000035136938095092773,-0.00004792213439941406,-0.00010138750076293945,0.0009407997131347656,0.000014126300811767578,-0.0001901388168334961,-0.00006395578384399414,-0.000054895877838134766,-0.00004076957702636719,-0.00010764598846435547,-3.814697265625e-6,-0.00002288818359375,0.0001666247844696045,-0.0007026791572570801,-0.0001354813575744629,0.000032901763916015625,-0.0002918839454650879,-0.00026732683181762695,0.0000788271427154541,0.00007236003875732422,-0.00003075599670410156,-0.00016379356384277344,0.0005104243755340576,-0.00005054473876953125,0.00005695223808288574,0.00009319186210632324,-0.00006687641143798828,-0.00002676248550415039,0.0003406405448913574,-0.000024616718292236328,-0.00001239776611328125,0.00006940960884094238,-8.881092071533203e-6,0.00018364191055297852,-0.00008589029312133789,0.00007167458534240723,-0.000058710575103759766,0.00006338953971862793,0.00003999471664428711,0.000029385089874267578,-0.000039517879486083984,0.00005799531936645508,0.0001818537712097168,0.00014662742614746094,0.00007233023643493652,-0.00002199411392211914,-0.0005834698677062988,0.00042945146560668945,-0.00012171268463134766,0.0010508298873901367,0.000253140926361084,0.00001633167266845703,0.003268212080001831,-0.0001995563507080078,0.00012764334678649902,-0.000020265579223632812,0.00008416175842285156,0.00006148219108581543,-0.00020772218704223633,-0.0000584721565246582,0.00003457069396972656,-0.00009375810623168945,-0.000017583370208740234,0.0003961622714996338,-0.00004458427429199219,0.000023871660232543945,-4.172325134277344e-7,0.00010845065116882324,-0.00007265806198120117,-0.00016707181930541992,-0.00019305944442749023,-0.000056743621826171875,-0.00015097856521606445,0.00006970763206481934,0.00008317828178405762,0.0003469884395599365,1.996755599975586e-6,-0.00001436471939086914,0.0002905428409576416,0.000056415796279907227,0.00023725628852844238,-0.000018656253814697266,0.00004407763481140137,0.000015616416931152344,-0.00007277727127075195,-0.00012737512588500977,0.000021219253540039062,-4.5299530029296875e-6,0.00006276369094848633,-0.000049233436584472656,0.00015547871589660645,4.738569259643555e-6,-0.0000317692756652832,-0.0003103017807006836,0.00011944770812988281,0.0002357959747314453,0.00017708539962768555,1.0132789611816406e-6,0.00015714764595031738,0.00044605135917663574,0.001745760440826416,0.00017067790031433105,-0.00003701448440551758,0.00009927153587341309,-0.000049233436584472656,0.0000559687614440918,-0.00006568431854248047,0.000038564205169677734,-0.00003933906555175781,-0.00005525350570678711,0.0009301304817199707,9.506940841674805e-6,-0.00004583597183227539,0.00013443827629089355,0.00021663308143615723,0.00045797228813171387,-0.00009399652481079102,-0.00008690357208251953,0.000030368566513061523,-0.00003629922866821289,0.00006639957427978516,-0.00011289119720458984,0.00004920363426208496,-5.900859832763672e-6,-0.00014275312423706055,0.0003736913204193115,-0.00002199411392211914,0.000051409006118774414,-0.00007224082946777344,0.0013731718063354492,0.00010889768600463867,0.00010135769844055176,-0.00002849102020263672,-0.000023543834686279297,0.00004076957702636719,-0.00011652708053588867,0.00031125545501708984,-0.00005823373794555664,0.00020232796669006348,-0.00014209747314453125,-0.0002467632293701172,-0.000011920928955078125,0.00011223554611206055,0.00016552209854125977,0.0002835690975189209,-0.00011557340621948242,-0.00005745887756347656,0.00017219781875610352,-0.0001932382583618164,0.00007531046867370605,-0.00009310245513916016,0.000031441450119018555,0.000021636486053466797,-0.0015183687210083008,0.000039130449295043945,0.0003643035888671875,0.0006225109100341797,-0.00015246868133544922,0.00025784969329833984,-8.344650268554688e-7,0.00001755356788635254,0.000690847635269165,-0.00003916025161743164,-0.00007992982864379883,-0.000051975250244140625,9.387731552124023e-6,-0.000022590160369873047,-0.0002574324607849121,-0.000018656253814697266,-0.000056684017181396484,0.0001271069049835205,-0.00014573335647583008,-0.00003719329833984375,-0.00008064508438110352,0.00021025538444519043,0.00011226534843444824,0.00007295608520507812,0.00018340349197387695,-0.00005930662155151367,0.00005397200584411621,-0.00016945600509643555,-0.00006246566772460938,0.00017708539962768555,-0.00012969970703125,-4.172325134277344e-7,-0.000019311904907226562,0.0007363259792327881,0.000053495168685913086,-4.470348358154297e-6,0.000633925199508667,0.00041431188583374023,0.0007370710372924805,-0.00011199712753295898,-0.00001436471939086914,-4.708766937255859e-6,0.00013169646263122559,-0.000024378299713134766,0.00045868754386901855,0.00017780065536499023,0.000019341707229614258,0.0004343390464782715,-0.00007712841033935547,0.0005020499229431152,-0.000029146671295166016,0.0003037452697753906,-5.900859832763672e-6,0.000791698694229126,0.0006575286388397217,0.0003026723861694336,-0.00010496377944946289,0.0005331635475158691,-0.00007730722427368164,0.00016680359840393066,0.00005137920379638672,0.0000667572021484375,-0.00006508827209472656,-0.00003260374069213867,-4.5299530029296875e-6,-0.0000889897346496582,0.000038743019104003906,-0.0000400543212890625,0.002375096082687378,0.00045040249824523926,0.00009498000144958496,0.00007349252700805664,-0.00008213520050048828,-0.00010579824447631836,0.00001093745231628418,-0.0000870823860168457,-1.8477439880371094e-6,0.00007167458534240723,-0.0000922083854675293,-0.00024390220642089844,0.00007447600364685059,-0.000058710575103759766,-0.0001602768898010254,0.00016641616821289062,-0.00010836124420166016,0.00013372302055358887,-0.00009149312973022461,0.00027292966842651367,-0.00012767314910888672,0.00002434849739074707,0.0004812479019165039,-0.0001665949821472168,-0.00020843744277954102,-0.00008279085159301758,-0.00004279613494873047,-4.887580871582031e-6,0.00002917647361755371,-0.00007253885269165039,0.00006443262100219727,-0.000030338764190673828,-0.000053882598876953125,0.000016689300537109375,0.000012993812561035156,-0.0001703500747680664,-0.0004162788391113281,0.00006872415542602539,0.0003026127815246582,-0.00004357099533081055,-0.00014406442642211914,0.00007665157318115234,-0.00009500980377197266,-0.00021857023239135742,-0.00003081560134887695,-0.0000445246696472168,-0.0000616312026977539,-0.00016796588897705078,-0.00008291006088256836,0.00007832050323486328,0.0002586841583251953,0.00008979439735412598,0.0009567439556121826,0.000018298625946044922,-0.00008577108383178711,-4.351139068603516e-6,0.00005221366882324219,0.00002440810203552246,0.00025784969329833984,0.00034424662590026855,0.0007106661796569824,-0.000039517879486083984,-0.00004839897155761719,0.0008143782615661621,0.000033736228942871094,0.0005916953086853027,0.00006979703903198242,0.00024002790451049805,-0.000011980533599853516,-0.00008720159530639648,-0.000042557716369628906,0.000025719404220581055,0.00008431077003479004,-0.00007545948028564453,0.0004744529724121094,-1.1920928955078125e-6,0.00014135241508483887,0.0006210207939147949,0.00005447864532470703,0.00009572505950927734,-0.00003427267074584961,-0.0002523660659790039,-0.00007528066635131836,-0.00007873773574829102,0.00018456578254699707,-0.00002849102020263672,0.00016793608665466309,0.00014126300811767578,-0.0001621842384338379,0.0000991523265838623,0.00008505582809448242,-0.00009924173355102539,-0.00002199411392211914,0.0001697242259979248,0.00019738078117370605,-0.00011289119720458984,0.0003445744514465332,0.000010371208190917969,-0.00001043081283569336,-0.00007712841033935547,0.00044852495193481445,0.00007581710815429688,-0.00003135204315185547,-0.00005054473876953125,0.00021505355834960938,0.00004571676254272461,0.00034737586975097656,0.001233607530593872,0.0034908950328826904,0.00019380450248718262,0.00010254979133605957,-0.0000731348991394043,-0.00006389617919921875,-0.00041353702545166016,0.0004018247127532959,-0.00001919269561767578,-0.00003904104232788086,0.000010907649993896484,0.000015616416931152344,0.00021257996559143066,-0.00011783838272094727,-0.0001525282859802246,0.0005863010883331299,-0.00005650520324707031,0.0016044080257415771,0.0007280409336090088,-0.00003415346145629883,0.00006479024887084961,0.00003647804260253906,-1.0132789611816406e-6,0.00331878662109375,0.00018584728240966797,-0.0001266002655029297,0.00007387995719909668,-0.0001450181007385254,-0.00005429983139038086,-0.00003314018249511719,0.00020366907119750977,0.00015464425086975098,-0.0001919865608215332,-3.4570693969726562e-6,0.0008941292762756348,0.00003764033317565918,-0.00011074542999267578,-9.5367431640625e-6,-0.000019848346710205078,-0.000040531158447265625,0.0001944899559020996,0.00006598234176635742,0.00021183490753173828,0.00017893314361572266,-0.000018656253814697266,-0.00003170967102050781,-0.000016570091247558594,0.00011718273162841797,-0.0000661611557006836,0.0005636215209960938,-0.00020551681518554688,0.00001239776611328125,-0.000030219554901123047,-0.000049054622650146484,0.00022983551025390625,-9.953975677490234e-6,0.00018644332885742188,-0.00011301040649414062,-0.00008922815322875977,-0.00003314018249511719,-4.708766937255859e-6,0.00025451183319091797,-0.0000871419906616211,0.0019747912883758545,-1.9073486328125e-6,-0.00008744001388549805,0.00006052851676940918,-0.00006431341171264648,0.00009340047836303711,0.00002816319465637207,0.00010371208190917969,-0.00015461444854736328,-0.00006788969039916992,-0.00015854835510253906,0.00001677870750427246,-0.00031685829162597656,0.0003161132335662842,0.00002434849739074707,-0.00008726119995117188,-8.761882781982422e-6,-8.165836334228516e-6,-0.00007331371307373047,0.00006127357482910156,0.00010761618614196777,-0.00009655952453613281,0.00007089972496032715,-0.00002008676528930664,-0.0000883936882019043,-0.0015284419059753418,-0.000029027462005615234,-0.0000553131103515625,-0.000035643577575683594,0.00007304549217224121,-0.00008505582809448242,-0.000021457672119140625,0.0007075071334838867,0.0006789565086364746,0.000456392765045166,0.00012284517288208008,-0.000038683414459228516,0.00019156932830810547,-0.00019437074661254883,0.00008249282836914062,0.0003375411033630371,-0.00005835294723510742,0.00031509995460510254,0.00009432435035705566,0.00005537271499633789,0.000024050474166870117,-0.000012576580047607422,-0.00004607439041137695,0.00020706653594970703,-0.0001412034034729004,-0.00006747245788574219,-0.000013530254364013672,-0.0002846717834472656,0.0003459751605987549,-0.00003629922866821289,0.00007578730583190918,3.0100345611572266e-6,-0.00016516447067260742,0.00005996227264404297,0.00017410516738891602,-0.00004029273986816406,0.000038743019104003906,0.00011733174324035645,-0.000052094459533691406,0.0000470578670501709,-0.00004202127456665039,-0.00009638071060180664,0.000014781951904296875,0.00020831823348999023,-0.000049173831939697266,0.00007414817810058594,0.00013425946235656738,-2.9206275939941406e-6,0.000015735626220703125,-0.00006890296936035156,0.00011691451072692871,0.00019782781600952148,0.0005104243755340576,0.00003865361213684082,0.00027999281883239746,-0.00008302927017211914,-0.00005459785461425781,0.00018349289894104004,0.00012221932411193848,-0.00002002716064453125,-0.00014919042587280273,0.00003489851951599121,0.0006216168403625488,0.000015527009963989258,-0.00003415346145629883,0.00023815035820007324,0.00012725591659545898,0.00027939677238464355,-0.0005019903182983398,-5.7220458984375e-6,-0.00012624263763427734,0.000048220157623291016,-0.000060558319091796875,0.0012943148612976074,0.000290602445602417,0.00011017918586730957,0.00069388747215271,0.00046250224113464355,-0.00016045570373535156,0.00014725327491760254,-0.00008231401443481445,0.00003507733345031738,0.00016671419143676758,0.00019800662994384766,-0.000024497509002685547,-0.000011444091796875,-0.00013893842697143555,6.556510925292969e-7,0.00031763315200805664,0.00008019804954528809,-0.00003463029861450195,-0.00002568960189819336,0.000016510486602783203,-0.000056684017181396484,0.0000775754451751709,-0.00006175041198730469,-0.000057756900787353516,-0.000011086463928222656,0.0008706450462341309,0.0029019713401794434,0.00003764033317565918,0.0000787973403930664,-0.000622093677520752,-0.00010496377944946289,-0.0000928640365600586,-0.0000413060188293457,0.0003961622714996338,0.000021398067474365234,0.0021159350872039795,0.00012260675430297852,0.000011056661605834961,0.00015023350715637207,-0.0000152587890625,-0.0000718235969543457,-0.00006175041198730469,0.00021412968635559082,-0.00002771615982055664,0.00034818053245544434,0.00005179643630981445,0.00014328956604003906,-0.00001436471939086914,0.000011533498764038086,0.00004461407661437988,0.0010148286819458008,-0.00044095516204833984,0.00005930662155151367,0.00012424588203430176,0.00017374753952026367,0.000027239322662353516,-0.000015854835510253906,-0.0001779794692993164,-0.0001703500747680664,-0.00003641843795776367,-0.000501096248626709,0.000033915042877197266,-0.000023126602172851562,-0.00017392635345458984,-0.00024455785751342773,0.000012695789337158203,0.00010254979133605957,0.00022581219673156738,-0.00020331144332885742,0.00006467103958129883,0.000020116567611694336,0.000028371810913085938,-0.000022292137145996094,4.947185516357422e-6,-0.0020492076873779297,-0.00033789873123168945,0.0005476772785186768,0.0001449286937713623,-0.00018030405044555664,0.00001430511474609375,-0.00012612342834472656,-0.00003415346145629883,-0.0000870823860168457,0.0002937018871307373,-0.0000349879264831543,-0.0001552104949951172,-0.00009775161743164062,-0.00009745359420776367,-0.0000998377799987793,-0.00005519390106201172,-0.00021386146545410156,0.0001386702060699463,-0.00016045570373535156,-0.00016897916793823242,-0.00021785497665405273,-0.00003629922866821289,-0.00006532669067382812,-0.00003707408905029297,-0.000016570091247558594,0.00001341104507446289,-0.00013709068298339844,0.00012189149856567383,0.0004172325134277344,0.00012424588203430176,0.0004999637603759766,0.0003396272659301758,-1.7881393432617188e-7,0.00019559264183044434,0.0003254115581512451,0.00012314319610595703,-7.152557373046875e-7,0.0000393986701965332,0.00005227327346801758,0.0005920231342315674,0.00006046891212463379,0.0025355517864227295,-0.000019609928131103516,-0.00016045570373535156,0.00011229515075683594,0.00013574957847595215,-0.00001239776611328125,-0.001196146011352539,-0.00010091066360473633,-0.00006115436553955078,-0.0001633763313293457,0.0000374913215637207,0.0009527802467346191,-0.00005233287811279297,0.000020742416381835938,0.00003185868263244629,-0.00007992982864379883,0.00006851553916931152,0.0008163750171661377,-0.00004029273986816406,-0.00006753206253051758,0.000055670738220214844,-0.000054836273193359375,-0.00013619661331176758,0.00004073977470397949,-0.00016170740127563477,-0.000023603439331054688,0.00003692507743835449,-0.000015974044799804688,-0.000064849853515625,-0.000020205974578857422,-0.00018471479415893555,0.00005289912223815918,0.000029206275939941406,0.0005042850971221924,-0.00002372264862060547,0.000031501054763793945,-0.0000699758529663086,0.00006937980651855469,-0.000010967254638671875,-0.000012159347534179688,-0.00005352497100830078,0.00012969970703125,-0.0001939535140991211,0.00023260712623596191,-0.00013703107833862305,0.0007418990135192871,0.0001774430274963379,-0.00001138448715209961,0.0005669891834259033,-0.00020372867584228516,-0.00011360645294189453,-0.0004036426544189453,0.0002683699131011963,0.00008317828178405762,0.9982490539550781,-0.00003159046173095703,0.0000794827938079834,0.000030159950256347656,0.00006723403930664062,0.0002326667308807373,0.00028130412101745605,-0.00008690357208251953,-0.00003254413604736328,0.00014853477478027344,0.00019237399101257324,-0.0001525282859802246,-0.00004029273986816406,-0.00008219480514526367,0.00004073977470397949,-0.00026857852935791016,-0.00002676248550415039,0.0004950761795043945,0.00018399953842163086,-0.00010925531387329102,0.000031501054763793945,0.00005397200584411621,-0.00009196996688842773,0.00011867284774780273,-0.00023734569549560547,0.0005757808685302734,-0.00003820657730102539,-0.00008022785186767578,-0.00004678964614868164,0.0003374814987182617,0.00017368793487548828,0.005341857671737671,0.0004132390022277832,3.0100345611572266e-6,-0.00003743171691894531,0.00009438395500183105,-0.000025451183319091797,-0.00002676248550415039,-0.00006461143493652344,-0.00006252527236938477,0.0005765557289123535,0.0003794431686401367,0.0007134974002838135,-0.00008434057235717773,-0.00002944469451904297,6.705522537231445e-6,-0.00018095970153808594,-0.00005173683166503906,-0.00008213520050048828,-0.00007301568984985352,0.00007209181785583496,0.00005742907524108887,0.00007131695747375488,-0.00003713369369506836,-0.00001800060272216797,-0.00006252527236938477,0.001881331205368042,0.00014215707778930664,-0.00003135204315185547,0.0002148449420928955,0.00006568431854248047,0.00035387277603149414,-0.00007873773574829102,0.000028192996978759766,0.00005143880844116211,-0.00004947185516357422,-4.708766937255859e-6,-0.00011724233627319336,-0.00017279386520385742,0.0003218650817871094,0.00007027387619018555,0.0010507702827453613,-0.00003516674041748047,-0.0001551508903503418,0.000010371208190917969,-0.000052928924560546875,0.00015753507614135742,-0.00002104043960571289,0.00010910630226135254,0.000029653310775756836,0.00006970763206481934,-0.00010573863983154297,-0.000017583370208740234,-0.00003719329833984375,0.0000254213809967041,0.0002377927303314209,-0.0000623464584350586,0.00006598234176635742,-0.0001646876335144043,-0.00021213293075561523,0.00007516145706176758,-0.000011682510375976562,0.00014448165893554688,-0.00006461143493652344,-0.00011008977890014648,0.00003409385681152344,-0.00006508827209472656,0.00030478835105895996,-0.00006908178329467773,0.00008019804954528809,6.288290023803711e-6,-0.00006395578384399414,0.00013574957847595215,-0.0014451146125793457,0.0002944469451904297,0.0007665753364562988,-0.0000674128532409668,-0.00009429454803466797,-0.00009495019912719727,-0.00006985664367675781,-0.00003415346145629883,-0.000027894973754882812,3.0100345611572266e-6,0.000011980533599853516,-4.887580871582031e-6,-0.00011050701141357422,0.000017255544662475586,0.00017723441123962402,0.00014168024063110352,0.00004234910011291504,0.000010371208190917969,7.420778274536133e-6,0.00011211633682250977,-0.000054836273193359375,0.000010341405868530273,0.0005360245704650879,-0.00013458728790283203,0.00025856494903564453,0.00009080767631530762,-9.000301361083984e-6,0.0000890493392944336,0.00019064545631408691,-0.00008910894393920898,0.00014853477478027344,-0.00003635883331298828,0.00016242265701293945,-0.00005239248275756836,0.00008001923561096191,-0.00010758638381958008,-0.0000845789909362793,0.00004073977470397949,-0.000032067298889160156,0.00010263919830322266,0.0001736283302307129,-0.00006031990051269531,-0.000055849552154541016,-0.00013685226440429688,-1.8477439880371094e-6,0.0003005862236022949,0.00010749697685241699,0.0002478659152984619,0.00010216236114501953,0.00007539987564086914,0.000018298625946044922,0.0003535151481628418,0.001056283712387085,0.0002512037754058838,0.00043824315071105957,0.00007683038711547852,-0.00008720159530639648,-0.00003421306610107422,-0.000044226646423339844,5.0067901611328125e-6,0.0005072951316833496,0.00020000338554382324,-0.00003743171691894531,0.00009906291961669922,-4.5299530029296875e-6,-0.0003857612609863281,-0.0001341104507446289,-0.00013375282287597656,0.00004082918167114258,7.927417755126953e-6,0.0002798140048980713,-5.9604644775390625e-6,-0.00036919116973876953,0.0003961622714996338,0.0004210174083709717,0.000039130449295043945,-0.00005173683166503906,-0.00010585784912109375,-0.0003153085708618164,-0.00002187490463256836,0.0006359219551086426,0.000046581029891967773,-0.00016021728515625,0.0002995133399963379,-0.000017583370208740234,-0.000058710575103759766,0.00069388747215271,-0.00010985136032104492,-0.00007265806198120117,0.000027626752853393555,0.00014674663543701172,0.00011977553367614746,-0.00003904104232788086,-0.0003095865249633789,-0.0012875199317932129,0.00009936094284057617,-0.0001055598258972168,0.00010502338409423828,-0.00012916326522827148,-0.00006580352783203125,-0.000036835670471191406,-0.00040352344512939453,0.0003783702850341797,0.00022852420806884766,-0.00011360645294189453,-0.000017344951629638672,0.00010395050048828125,0.000045180320739746094,0.00007352232933044434,-0.0001583695411682129,0.00025984644889831543,0.000030159950256347656,0.000032395124435424805,-0.0003198981285095215,-0.00013685226440429688,-0.00016045570373535156,-0.0001366734504699707,-0.00019478797912597656,0.0004964768886566162,0.00008374452590942383,0.00014212727546691895,0.00006148219108581543,-0.0001081228256225586,0.0003496110439300537,-0.0000641942024230957,-0.0001380443572998047,-0.0002747178077697754,0.0003039538860321045,-0.00002372264862060547,0.000052362680435180664,-0.0001373291015625,0.00008845329284667969,0.0001893937587738037,-0.00014919042587280273,0.0003407001495361328,0.0002008974552154541,0.000020772218704223633,-0.000017583370208740234,0.002543121576309204,-0.0000769495964050293,0.00005391240119934082,0.0013007521629333496,-0.000110626220703125,-0.00011175870895385742,0.0002054274082183838,0.00009196996688842773,0.00018215179443359375,-1.0132789611816406e-6,-4.172325134277344e-7,-0.00008016824722290039,0.00019499659538269043,-0.0001957416534423828,0.0005024075508117676,-0.00039070844650268555,0.00013369321823120117,-0.0002683401107788086,-0.000020205974578857422,0.00009194016456604004,-0.00004678964614868164,-0.00005418062210083008,0.000024050474166870117,-0.000018656253814697266,-0.00006192922592163086,-0.00009465217590332031,4.410743713378906e-6,-0.0006210803985595703,-0.000041425228118896484,9.000301361083984e-6,-0.000038564205169677734,-0.00004363059997558594,0.010011762380599976,0.000047087669372558594,-0.000563502311706543,0.0000565648078918457,0.00042000412940979004,0.000020891427993774414,0.0000254213809967041,0.000028789043426513672,0.00026300549507141113,0.00006628036499023438,-0.00006020069122314453,0.00008556246757507324,0.00021919608116149902,-1.8477439880371094e-6,-0.00004029273986816406,4.887580871582031e-6,-0.0000622868537902832,0.00004842877388000488,-0.0001881122589111328,-0.00016826391220092773,0.0003993511199951172,0.0004056692123413086,0.0004363059997558594,-0.000030040740966796875,-0.00023216009140014648,0.00009003281593322754,-0.00003129243850708008,0.00006923079490661621,0.001544266939163208,0.00011652708053588867,0.0008057951927185059,-0.00010228157043457031,-0.000016033649444580078,-0.000058770179748535156,0.0001341402530670166,-0.00008380413055419922,2.8312206268310547e-6,0.0007148683071136475,0.00013715028762817383,0.0005553662776947021,-0.0001957416534423828,-0.00018423795700073242,0.00004824995994567871,-0.00011515617370605469,-0.00013315677642822266,-0.000054836273193359375,0.00003600120544433594,-0.00006622076034545898,-0.00005269050598144531,0.00019630789756774902,0.00008428096771240234,0.00017192959785461426,0.00015661120414733887,-0.00003904104232788086,-0.0000349879264831543,7.450580596923828e-7,-0.00015807151794433594,-0.0001551508903503418,-0.000052034854888916016,-0.00011754035949707031,-0.00017017126083374023,0.00011813640594482422,-0.00011283159255981445,-0.0000775456428527832,0.00010439753532409668,0.00012809038162231445,-0.0024405717849731445,-0.0001983642578125,7.420778274536133e-6,-0.000024437904357910156,-0.0000654458999633789,-0.000019550323486328125,0.000258028507232666,0.00016862154006958008,-0.000014483928680419922,0.00019562244415283203,0.000010162591934204102,-0.000047087669372558594,0.00021085143089294434,-0.0001570582389831543,0.000010371208190917969,0.00007039308547973633,0.000028371810913085938,0.0001391768455505371,-0.000027000904083251953,-0.00010538101196289062,0.00003272294998168945,-0.000057816505432128906,-0.00007039308547973633,0.0000686347484588623,-0.0004304051399230957,0.00031310319900512695,0.000042885541915893555,0.00025522708892822266,0.0002071857452392578,-0.00011366605758666992,-0.00021141767501831055,-0.00001436471939086914,-8.404254913330078e-6,0.000011712312698364258,-0.00019615888595581055,-0.00011944770812988281,0.0000788569450378418,-0.000054717063903808594,0.000058531761169433594,-0.00012940168380737305,-0.00006574392318725586,-0.000056743621826171875,0.00023260712623596191,-0.00001901388168334961,-0.00005030632019042969,0.00008800625801086426,1.1026859283447266e-6,-0.00006341934204101562,0.00022155046463012695,-0.0001532435417175293,-0.000020384788513183594,-0.00006890296936035156,0.000023096799850463867,-0.00013840198516845703,-0.000536501407623291,-0.00005173683166503906,-0.0001353621482849121,0.0004343390464782715,-4.76837158203125e-7,0.000028759241104125977,0.00010117888450622559,-0.000032007694244384766,-0.00005412101745605469,0.0003924369812011719,0.00002968311309814453,0.001584172248840332,0.00003987550735473633,0.000038743019104003906,0.000023245811462402344,0.00009647011756896973,0.00003960728645324707,0.0000222623348236084,0.00008881092071533203,0.00002378225326538086,-0.00007086992263793945,-0.00021779537200927734,0.0000444948673248291,0.00017899274826049805,-0.000017762184143066406,-0.00011992454528808594,-0.00008279085159301758,-0.00002473592758178711,0.00035321712493896484,-0.00015366077423095703,-0.00006669759750366211,-0.0003434419631958008,-0.00009638071060180664,0.00010889768600463867,-0.0009215474128723145,-0.000095367431640625,0.00005695223808288574,-0.00006753206253051758,-0.0001232624053955078,0.00021132826805114746,-0.0000388026237487793,0.00019437074661254883,0.0004216134548187256,-0.00005060434341430664,-0.000038504600524902344,-0.00019729137420654297,0.000014871358871459961,0.0001697242259979248,-0.00012242794036865234,0.00006148219108581543,0.00010439753532409668,0.000038743019104003906,-0.00006645917892456055,-0.000993490219116211,-9.417533874511719e-6,-0.0002676248550415039,0.0008746087551116943,-0.0002282261848449707,0.00041100382804870605,0.00023886561393737793,0.000025600194931030273,0.00014716386795043945,-0.00003069639205932617,9.000301361083984e-6,0.00009498000144958496,-0.00006175041198730469,-0.0001620650291442871,-0.00007915496826171875,0.00046196579933166504,0.00024452805519104004,-0.0006332993507385254,-0.000058710575103759766,0.000229567289352417,-0.00015503168106079102,-0.00011074542999267578,0.00009018182754516602,-0.00003629922866821289,0.000026464462280273438,1.6391277313232422e-6,-0.00020939111709594727,0.0009377896785736084,-0.00005173683166503906,-0.00006175041198730469,-0.00001055002212524414,-0.00015288591384887695,0.00005939602851867676,0.00011205673217773438,0.00029355287551879883,-0.00003135204315185547,0.0001773238182067871,0.00025767087936401367,0.00009372830390930176,-0.00016200542449951172,0.000031888484954833984,0.0002639591693878174,-0.00009340047836303711,0.00012746453285217285,0.0000648200511932373,2.086162567138672e-6,0.0005631446838378906,0.0005607306957244873,-0.00010031461715698242,0.00003764033317565918,4.857778549194336e-6,-2.384185791015625e-6,-0.00003147125244140625,0.000037342309951782227,0.00046899914741516113,-0.0001881122589111328,-0.00002378225326538086,0.00022533535957336426,-0.00010222196578979492,-0.0001856088638305664,0.004445403814315796,0.00011831521987915039,0.00006854534149169922,0.00043892860412597656,-0.000025331974029541016,0.00007414817810058594,0.000044912099838256836,6.5267086029052734e-6,-0.00003975629806518555,0.00483354926109314,-0.0001405477523803711,0.001049637794494629,-0.00003814697265625,0.0000667572021484375,0.00008094310760498047,0.13219475746154785,-0.00004583597183227539,0.000024944543838500977,1.2218952178955078e-6,-0.0003809928894042969,-0.0001366734504699707,-0.000039458274841308594,0.00005963444709777832,-5.4836273193359375e-6,-0.00008744001388549805,-0.00004029273986816406,0.000269472599029541,-0.00018537044525146484,0.000868380069732666,-0.00003451108932495117,-0.0005341768264770508,0.00044968724250793457,0.00010225176811218262,-0.0006827712059020996,0.00023040175437927246,-0.0002516508102416992,-0.00019741058349609375,0.0005765259265899658,0.000043720006942749023,-0.00021034479141235352,-0.00013935565948486328,0.00001800060272216797,-0.00015020370483398438,0.0000673532485961914,-0.00005739927291870117,-0.0007472038269042969,-0.00008922815322875977,0.0038232803344726562,-0.00022333860397338867,0.0005257129669189453,-0.00010859966278076172,0.0005566179752349854,-0.000022709369659423828,0.0005068182945251465,-0.00007420778274536133,0.00017830729484558105,-0.000015437602996826172,0.00003999471664428711,0.00025767087936401367,-0.00020295381546020508,0.0004501938819885254,-0.000033855438232421875,0.00008213520050048828,-0.00008630752563476562,-0.0004252195358276367,0.0002453923225402832,-0.00011897087097167969,0.00004729628562927246,-0.00014853477478027344,0.00002276897430419922,-0.00008165836334228516,0.00018352270126342773,-0.00001519918441772461,-0.000018775463104248047,0.00028392672538757324,0.00014269351959228516,-0.00007832050323486328,-0.00008046627044677734,-0.00020003318786621094,0.00022771954536437988,-0.00008744001388549805,0.0003317892551422119,-0.0001538395881652832,0.057941943407058716,-0.0000540614128112793,-6.854534149169922e-6,0.0002981424331665039,0.0006600022315979004,2.175569534301758e-6,-0.00004279613494873047,0.0001805424690246582,0.0002238750457763672,-0.00010377168655395508,-0.00010758638381958008,0.00005173683166503906,0.00011226534843444824,0.002223074436187744,-0.0000521540641784668,0.000045418739318847656,-1.3709068298339844e-6,-0.00006699562072753906,0.002326279878616333,-0.00017404556274414062,-0.00006657838821411133,-0.00008594989776611328,-0.0001812577247619629,-3.2782554626464844e-6,-0.000056743621826171875,-0.0001201629638671875,-4.351139068603516e-6,0.00019437074661254883,0.00007891654968261719,0.0002682805061340332,-0.00006622076034545898,0.000013768672943115234,-0.000046253204345703125,-0.00006264448165893555,-0.00006091594696044922,0.00006282329559326172,0.00007766485214233398,0.00007176399230957031,0.00028651952743530273,0.00006943941116333008,0.00014799833297729492,-0.00007653236389160156,0.000027239322662353516,1.1622905731201172e-6,-0.00040662288665771484,-0.000056743621826171875,-0.0000311732292175293,0.00024214386940002441,3.9637088775634766e-6,0.00008538365364074707,-4.0531158447265625e-6,-0.00015288591384887695,-2.980232238769531e-7,5.27501106262207e-6,3.606081008911133e-6,0.0007158517837524414,-0.000010311603546142578,-0.00002372264862060547,0.00017067790031433105,-0.0000400543212890625,0.00005397200584411621,-0.0024381279945373535,-0.00005918741226196289,0.0001601874828338623,-0.000038564205169677734,0.00022390484809875488,-1.8477439880371094e-6,0.00018903613090515137,-0.00011897087097167969,0.00011143088340759277,0.000040978193283081055,-0.000023543834686279297,-0.00007778406143188477,-0.000035822391510009766,-0.0001538395881652832,0.0022835135459899902,0.00008317828178405762,0.00024303793907165527,-0.00004583597183227539,-0.00011557340621948242,-0.00003057718276977539,0.0005976855754852295,0.0001868605613708496,-0.000030159950256347656,0.0010381340980529785,0.0003961622714996338,-0.00012230873107910156,-0.00008016824722290039,5.3942203521728516e-6,-4.172325134277344e-6,0.00004073977470397949,0.0003234744071960449,-0.0001957416534423828,-0.00022143125534057617,-0.00006031990051269531,-0.00027370452880859375,-0.0005246400833129883,0.00018540024757385254,0.00015920400619506836,0.000014126300811767578,0.0007292628288269043,-0.0001138448715209961,-8.761882781982422e-6,0.0001436173915863037,0.0005272328853607178,8.07642936706543e-6,-0.00008505582809448242,-0.0001131296157836914,0.0001850128173828125,-0.0005409717559814453,8.374452590942383e-6,-0.00012993812561035156,0.00005227327346801758,0.00023493170738220215,-0.000010013580322265625,0.0005335509777069092,-0.0009971261024475098,0.000058531761169433594,0.00016388297080993652,-0.00007826089859008789,-0.00014406442642211914,-0.00008606910705566406,-0.00005710124969482422,8.13603401184082e-6,-0.00010228157043457031,0.00045350193977355957,0.00008615851402282715,0.000042378902435302734,0.000041037797927856445,0.0007783770561218262,0.000022143125534057617,0.00012698769569396973,8.881092071533203e-6,6.5267086029052734e-6,-0.00004029273986816406,0.000520169734954834,-7.748603820800781e-6,0.00049629807472229,-0.00010061264038085938,0.0000432431697845459,0.00019535422325134277,0.00012513995170593262,-0.00020647048950195312,0.00006797909736633301,-0.00011068582534790039,0.00010889768600463867,0.00033164024353027344,0.00023192167282104492,-0.00013256072998046875,-6.973743438720703e-6,0.0008689761161804199,-0.00020873546600341797,-0.0005592703819274902,-0.0008193850517272949,-0.00014632940292358398,0.0035699307918548584,0.00001093745231628418,-0.000033855438232421875,7.450580596923828e-7,0.00017216801643371582,-0.00012201070785522461,-0.00015419721603393555,0.00006914138793945312,0.00008615851402282715,-0.00001609325408935547,-0.00020545721054077148,0.000023424625396728516,-0.0003399848937988281,0.0002790987491607666,0.00020954012870788574,-0.00022619962692260742,-0.00010585784912109375,-0.00014126300811767578,0.00021925568580627441,0.00010654330253601074,-8.165836334228516e-6,0.000011861324310302734,-0.000018835067749023438,-0.00009387731552124023,-0.00017023086547851562,-0.00008887052536010742,-0.000045180320739746094,-0.0000578761100769043,-0.00010532140731811523,-0.00002962350845336914,0.0003961622714996338,0.00007709860801696777,0.0001310110092163086,0.0006149709224700928,-0.00004941225051879883,0.0021272003650665283,-0.0019513368606567383,-9.5367431640625e-7,0.00004649162292480469,-0.00013703107833862305,-0.00006896257400512695,-0.00004404783248901367,0.00105208158493042,0.000021219253540039062,0.0001634359359741211,-0.000029146671295166016,6.556510925292969e-7,0.000025898218154907227,0.00020524859428405762,-0.0000699758529663086,0.00015664100646972656,0.000049620866775512695,-0.00012737512588500977,-0.00007092952728271484,0.00001531839370727539,0.0001443922519683838,-0.00002199411392211914,-0.00048094987869262695,0.0003666877746582031,0.0008790791034698486,0.00003764033317565918,0.00040596723556518555,-0.00001913309097290039,-0.000164031982421875,0.0003998279571533203,0.00015872716903686523,0.000011056661605834961,0.00007909536361694336,-0.00042551755905151367,0.0008502006530761719,0.0001825094223022461,-0.0001703500747680664,0.00015458464622497559,0.0009667277336120605,-0.00003713369369506836,0.000011056661605834961,-0.000017583370208740234,-0.000019550323486328125,0.006336987018585205,0.007716506719589233,-0.000060558319091796875,-0.00046563148498535156,-0.000021398067474365234,3.159046173095703e-6,-0.00006175041198730469,-0.000026047229766845703,-0.00016266107559204102,0.00003427267074584961,0.000021249055862426758,0.000017464160919189453,-0.00007712841033935547,-0.00006198883056640625,0.00003403425216674805,-0.0001488327980041504,-0.0008047223091125488,-0.0001487135887145996,0.0001182854175567627,-0.0001570582389831543,0.000026553869247436523,-0.000046253204345703125,-0.00006794929504394531,0.000467449426651001,-0.00001728534698486328,0.0007198452949523926,0.0005600154399871826,0.0001703202724456787,-3.4570693969726562e-6,9.268522262573242e-6,-0.00017023086547851562,0.00009498000144958496,-0.000053882598876953125,-0.000015437602996826172,-0.00003713369369506836,-0.00014060735702514648,-0.00012987852096557617,-0.00012540817260742188,0.00007596611976623535,0.00016921758651733398,-0.000733792781829834,-0.00006395578384399414,0.00010836124420166016,-0.00010949373245239258,0.00002148747444152832,0.0008379220962524414,0.00015464425086975098,0.00003960728645324707,0.0000388026237487793,-0.000056803226470947266,-0.00012099742889404297,-0.000057578086853027344,-0.00008106231689453125,0.000030368566513061523,-0.00015985965728759766,0.00004073977470397949,-0.000021159648895263672,-1.1920928955078125e-6,0.00001823902130126953,-0.00003266334533691406,0.00037348270416259766,0.0005197227001190186,0.00001385807991027832,-0.00003314018249511719,-0.00010818243026733398,0.00001239776611328125,-0.00017023086547851562,-0.000018358230590820312,-0.00007712841033935547,-0.000022709369659423828,-0.0006039142608642578,-0.000043392181396484375,-0.00007069110870361328,0.00008478760719299316,-0.0000998377799987793,0.00015524029731750488,0.0005228817462921143,0.00004678964614868164,0.0004112124443054199,0.00015211105346679688,0.00017282366752624512,-0.000015854835510253906,0.00017970800399780273,-0.0002338886260986328,-0.00004875659942626953,0.00012189149856567383,-0.00019186735153198242,-0.0001329183578491211,-0.00006097555160522461,0.00007423758506774902,0.00005742907524108887,0.00017562508583068848,0.0013796091079711914,0.00033664703369140625,-0.000016987323760986328,-0.000038683414459228516,0.00020039081573486328,0.0002664327621459961,-0.00004094839096069336,-0.00005793571472167969,0.0007998347282409668,-0.0007587671279907227,0.0003706514835357666,0.00016298890113830566,-0.000043272972106933594,0.0006051063537597656,0.00046697258949279785,-0.00006455183029174805,9.000301361083984e-6,0.000012993812561035156,0.00003018975257873535,0.0005589127540588379,-0.00014215707778930664,0.00015872716903686523,-0.00008779764175415039,-0.00009006261825561523,0.0002161860466003418,0.00022464990615844727,-0.00025272369384765625,4.380941390991211e-6,-0.00008052587509155273,0.000056415796279907227,0.00015798211097717285,-0.00016582012176513672,0.00014010071754455566,0.00006541609764099121,-0.00012862682342529297,0.00022962689399719238,-0.00002199411392211914,0.00006973743438720703,-0.00021779537200927734,0.00006774067878723145,0.00002625584602355957,0.00015872716903686523,-0.00006562471389770508,0.0001645982265472412,-0.00012576580047607422,0.00013142824172973633,0.00002244114875793457,0.00003477931022644043,0.000012874603271484375,-0.00007033348083496094,0.00007238984107971191,-0.0001887679100036621,0.0005559623241424561,-0.00010228157043457031,-0.00016158819198608398,0.00011771917343139648,-0.000023186206817626953,0.0005960166454315186,-1.9073486328125e-6,0.000950247049331665,0.0005960762500762939,0.00021028518676757812,-5.900859832763672e-6,0.00040844082832336426,-0.00018680095672607422,-0.000028192996978759766,-0.00007516145706176758,0.00005060434341430664,0.00020366907119750977,0.00007587671279907227,5.751848220825195e-6,-0.000014901161193847656,4.32133674621582e-6,0.000012993812561035156,-0.000014960765838623047,-0.00007396936416625977,0.000633925199508667,0.00005301833152770996,-0.00010913610458374023,0.000038743019104003906,-0.00011056661605834961,-0.00012195110321044922,-0.00003415346145629883,0.00010636448860168457,0.00011131167411804199,-0.000030338764190673828,-0.00012737512588500977,-0.00013899803161621094,0.00021544098854064941,-0.00011920928955078125,-0.000352323055267334,0.000038743019104003906,-0.00007605552673339844,-0.00005918741226196289,-0.00002664327621459961,0.00018867850303649902,-0.00012761354446411133,-0.0002658963203430176,-0.0006397366523742676,0.0001265406608581543,-0.000010728836059570312,0.00025013089179992676,-0.00008654594421386719,0.00015467405319213867,-0.0000654458999633789,-0.0002295374870300293,0.0002403557300567627,-0.00008088350296020508,-9.298324584960938e-6,-0.00003445148468017578,-0.00008064508438110352,-0.00001138448715209961,0.00010183453559875488,-0.0000972747802734375,0.000027239322662353516,0.000559687614440918,0.00008431077003479004,-0.00007355213165283203,-0.00010949373245239258,0.00006008148193359375,0.000467449426651001,-0.00013703107833862305,0.00136488676071167,0.00007575750350952148,0.00023040175437927246,-0.00012052059173583984,-0.00003075599670410156,-4.470348358154297e-6,-0.0000699162483215332,-0.000013828277587890625,-0.00006097555160522461,-0.000016808509826660156,0.00006362795829772949,-0.00005441904067993164,0.00010076165199279785,0.006914019584655762,0.00006920099258422852,0.002264171838760376,0.00020942091941833496,0.0002709031105041504,0.00014269351959228516,-0.00026673078536987305,-0.0003134012222290039,0.00012299418449401855,0.000012218952178955078,1.4007091522216797e-6,-0.0003294944763183594,0.00047957897186279297,-6.556510925292969e-7,-0.00007200241088867188,0.00006598234176635742,0.00008529424667358398,0.00009623169898986816,-0.00002199411392211914,-0.000010311603546142578,-0.00003349781036376953,-0.00006896257400512695,-0.00041359663009643555,0.00023192167282104492,0.00005224347114562988,0.00014269351959228516,0.00014451146125793457,0.00010910630226135254,-0.00005060434341430664,0.0000686347484588623,0.00001704692840576172,-0.00019299983978271484,-0.00021827220916748047,1.6391277313232422e-6,-0.000010013580322265625,0.000021070241928100586,-0.00002467632293701172,-0.00006276369094848633,0.00015947222709655762,-0.00018310546875,0.0002459883689880371,-0.00003153085708618164,0.00008282065391540527,-0.00010484457015991211,-0.0001137852668762207,0.0006563067436218262,-0.000047087669372558594,-0.000026702880859375,0.00021448731422424316,-0.00002008676528930664,0.00008797645568847656,0.0004285573959350586,-0.0007088184356689453,-0.00004583597183227539,-0.000021159648895263672,0.00015297532081604004,0.000025600194931030273,0.00012603402137756348,-0.00006878376007080078,-0.0005119442939758301,0.0005408525466918945,-0.0818401575088501,-0.00007712841033935547,-0.000038564205169677734,-0.00015056133270263672,0.0002593100070953369,0.000012993812561035156,0.00019538402557373047,-0.000017404556274414062,0.00011843442916870117,-0.00016808509826660156,0.000058531761169433594,0.00003898143768310547,0.9946230053901672,-0.00021260976791381836,-0.000027060508728027344,-5.0067901611328125e-6,1.4007091522216797e-6,-0.00011301040649414062,-0.00012767314910888672,-0.00005882978439331055,0.0004710257053375244,0.0003961622714996338,-0.00008755922317504883,-0.000020503997802734375,0.0002022385597229004,-0.0005088448524475098,-0.0000362396240234375,0.00001570582389831543,-0.00004023313522338867,-0.0001798868179321289,0.00006130337715148926,0.0010404884815216064,-0.00001728534698486328,0.000056415796279907227,0.00009718537330627441,-0.00015538930892944336,-0.000022172927856445312,0.000011056661605834961,9.000301361083984e-6,-0.000035643577575683594,0.0002047419548034668,-0.00001728534698486328,-0.00017654895782470703,-0.00007009506225585938,-0.000038564205169677734,-0.000032782554626464844,9.000301361083984e-6,0.0001233220100402832,0.000056415796279907227,-0.0002918839454650879,-0.000020265579223632812,0.00005733966827392578,0.015246808528900146,-0.00013583898544311523,0.00008380413055419922,-0.000035762786865234375,-4.351139068603516e-6,0.00044971704483032227,-0.00004798173904418945,0.00012293457984924316,-4.172325134277344e-6,0.0003853440284729004,-0.000021219253540039062,-1.8477439880371094e-6,0.00003361701965332031,-0.00016897916793823242,-4.172325134277344e-7,-0.00012797117233276367,0.00003039836883544922,2.086162567138672e-6,-0.00002014636993408203,-4.76837158203125e-7,0.0005034506320953369,0.00020524859428405762,0.000016808509826660156,0.00033670663833618164,-0.00005888938903808594,-0.0001309514045715332,0.0016042888164520264,0.00008019804954528809,0.0002541542053222656,0.000050067901611328125,0.000044226646423339844,-6.4373016357421875e-6,0.0000152587890625,0.00010904669761657715,0.0000985562801361084,0.0007128715515136719,0.0005147159099578857,0.000511467456817627,0.004290968179702759,-0.00002372264862060547,-0.000020205974578857422,-0.0001424551010131836,0.013300418853759766,-0.00008016824722290039,0.00007787346839904785,0.00005397200584411621,0.00003272294998168945,0.000725090503692627,-0.00003141164779663086,0.0008202195167541504,-0.00004690885543823242,0.00005561113357543945,0.0025506317615509033,-0.00004607439041137695,0.00006148219108581543,0.002022981643676758,-0.00026875734329223633,0.00011095404624938965,-0.000095367431640625,-0.0001685619354248047,0.00024014711380004883,0.00021031498908996582,0.00004407763481140137,0.12746703624725342,-7.152557373046875e-6,0.000027626752853393555,0.00020936131477355957,0.0008980333805084229,-0.00005161762237548828,0.00007638335227966309,0.00015753507614135742,-0.00014835596084594727,-0.00026673078536987305,-0.00001823902130126953,0.00005397200584411621,0.000012993812561035156,0.00006833672523498535,0.0005921721458435059,-0.000014066696166992188,0.00009113550186157227,0.000057756900787353516,-0.00001990795135498047,-0.0001017451286315918,0.0000966191291809082,0.00015839934349060059,0.000017255544662475586,-0.00021719932556152344,-0.0006619095802307129,-0.000014066696166992188,0.000048995018005371094,0.00004735589027404785,9.804964065551758e-6,0.000562518835067749,0.000019222497940063477,-0.000046312808990478516,0.0002987086772918701,-0.00007146596908569336,0.0004367232322692871,0.0004172325134277344,0.0008178651332855225,-0.00001990795135498047,0.0001468658447265625,0.00015524029731750488,0.000013619661331176758,0.000909954309463501,0.0003000795841217041,0.00005391240119934082,0.000027686357498168945,0.00008553266525268555,0.0004825294017791748,0.0004414021968841553,0.00012305378913879395,-0.00018274784088134766,-0.0000597834587097168,-0.000028133392333984375,0.00001677870750427246,-0.000058710575103759766,0.0002970099449157715,-0.00007170438766479492,-9.834766387939453e-6,-0.00021976232528686523,0.00003781914710998535,0.0007458031177520752,-0.00003927946090698242,0.00018164515495300293,0.000043720006942749023,-1.1920928955078125e-6,-0.00007522106170654297,0.00014898180961608887,-0.0004697442054748535,-0.000022709369659423828,-0.00011175870895385742,-0.00021779537200927734,-0.00004208087921142578,-0.0008678436279296875,-0.00004655122756958008,-0.000051915645599365234,-0.00047701597213745117,0.00006970763206481934,0.00017517805099487305,0.00028651952743530273,0.00008323788642883301,-0.00010102987289428711,-0.000027239322662353516,0.0000909268856048584,0.000011980533599853516,0.000125885009765625,-0.00011652708053588867,0.00019749999046325684,0.00007611513137817383,-0.000018656253814697266,0.00011652708053588867,0.0005821287631988525,-0.00011301040649414062,-0.00014507770538330078,0.00002568960189819336,0.00009796023368835449,0.00008976459503173828,-0.00019371509552001953,-0.00010651350021362305,0.00003376603126525879,-0.00006639957427978516,-0.000054955482482910156,-0.00001996755599975586,-0.000029146671295166016,-0.000014185905456542969,0.0000750124454498291,0.00012254714965820312,4.380941390991211e-6,0.00017067790031433105,-0.0001659393310546875,0.0008691251277923584,0.00030940771102905273,0.000029265880584716797,0.00009939074516296387,-0.00016796588897705078,-0.00020372867584228516,0.0000705420970916748,0.000013649463653564453,0.0005805790424346924,-0.000029146671295166016,-0.000036716461181640625,-0.00014138221740722656,0.000012993812561035156,-0.00004470348358154297,-0.00013822317123413086,0.00005778670310974121,0.000028192996978759766,-0.000049233436584472656,-0.00012493133544921875,0.00007006525993347168,0.00004076957702636719,0.00021457672119140625,0.0007081329822540283,0.0001525580883026123,-0.0000782012939453125,-9.000301361083984e-6,0.00006175041198730469,0.00009942054748535156,0.00014168024063110352,0.0011730194091796875,0.0005993843078613281,0.0013566315174102783,-0.00005996227264404297,0.000056415796279907227,0.0008396506309509277,0.00018545985221862793,-0.00006687641143798828,-0.00007778406143188477,-8.761882781982422e-6,-0.00003719329833984375,0.00012248754501342773,-0.00017726421356201172,9.000301361083984e-6,0.00019550323486328125,0.00022223591804504395,0.0005774497985839844,0.00018456578254699707,-6.973743438720703e-6,-0.00003904104232788086,-0.000011444091796875,-0.00010198354721069336,0.00016608834266662598,0.00006911158561706543,-0.000011742115020751953,-0.00010186433792114258,-0.00017511844635009766,-0.000017583370208740234,-0.000020503997802734375,0.00004869699478149414,0.0010079145431518555,-0.000051081180572509766,3.8743019104003906e-7,-0.00003463029861450195,-0.00008165836334228516,0.000055402517318725586,0.000267714262008667,0.00009608268737792969,-0.000015556812286376953,0.00005123019218444824,0.00006148219108581543,0.00010654330253601074,0.00022852420806884766,0.000026166439056396484,-0.0007342696189880371,-6.67572021484375e-6,-0.00022089481353759766,0.00042191147804260254,0.0001310110092163086,-0.00006687641143798828,-0.000011265277862548828,-0.00006753206253051758,-0.0000508427619934082,0.00021961331367492676,-0.00023293495178222656,-4.172325134277344e-7,-0.00011324882507324219,0.000038564205169677734,0.0000737309455871582,-0.00007653236389160156,-0.0006166696548461914,7.12275505065918e-6,0.00033032894134521484,0.00016942620277404785,-0.000022649765014648438,0.00018334388732910156,-0.00006145238876342773,-0.000050067901611328125,0.00002625584602355957,0.00003123283386230469,0.00018072128295898438,0.00008052587509155273,-0.0004754066467285156,0.000010371208190917969,0.00008305907249450684,0.000045418739318847656,-0.0001729726791381836,0.00035893917083740234,-0.00014954805374145508,-0.00008004903793334961,0.0018134713172912598,0.0000655055046081543,0.00018146634101867676,0.008831173181533813,0.000033855438232421875,0.00026041269302368164,-0.000016868114471435547,0.00005060434341430664,0.0009828805923461914,0.00003865361213684082,-0.00007063150405883789,-0.0000521540641784668,0.00016570091247558594,-9.357929229736328e-6,0.000024050474166870117,0.00007608532905578613,-0.0003326535224914551,0.00003489851951599121,-0.000024080276489257812,-0.00008368492126464844,0.0013796091079711914,0.00013628602027893066,0.0009992420673370361,0.00034043192863464355,-0.000016868114471435547,-0.00008594989776611328,0.00002804398536682129,-0.0000654458999633789,0.000011056661605834961,0.0005057156085968018,0.00007075071334838867,-0.00016051530838012695,0.0003680288791656494,1.0169150829315186,0.0009958446025848389,0.00012248754501342773,0.000011473894119262695,-0.00016045570373535156,9.804964065551758e-6,-3.159046173095703e-6,0.00002905726432800293,-0.00008445978164672852,-0.0001704096794128418,0.00013208389282226562,0.0004481673240661621,-0.000010788440704345703,0.0001666545867919922,-5.364418029785156e-6,0.00020319223403930664,0.00031632184982299805,0.000016123056411743164,-0.0009534955024719238,-0.000011146068572998047,0.00007578730583190918,0.00034043192863464355,-0.00005555152893066406,-0.000019311904907226562,-0.00005453824996948242,0.0000565648078918457,0.00009748339653015137,0.000046372413635253906,-6.616115570068359e-6,0.00008755922317504883,0.000058531761169433594,-0.00009918212890625,0.00005710124969482422,-0.000033855438232421875,0.00012084841728210449,0.00013390183448791504,0.000038743019104003906,-0.00001996755599975586,0.00041791796684265137,0.000012367963790893555,0.00008895993232727051,-0.00005030632019042969,-0.000039637088775634766,0.000046581029891967773,0.0002066195011138916,-0.00014191865921020508,-0.000043392181396484375,-0.000056803226470947266,1.7583370208740234e-6,0.0008179843425750732,-0.00009053945541381836,0.00011742115020751953,0.00001800060272216797,0.0000998377799987793,0.0003027617931365967,8.255243301391602e-6,0.00006747245788574219,-0.00004404783248901367,0.00006747245788574219,0.00002378225326538086,-0.000050067901611328125,0.002916872501373291,0.00007715821266174316,-8.702278137207031e-6,0.0001239478588104248,0.0003362894058227539,-0.00012737512588500977,0.0002575814723968506,0.00020679831504821777,0.0000629127025604248,-0.000020265579223632812,0.00011938810348510742,0.00016376376152038574,-0.00009548664093017578,0.00018173456192016602,-3.0994415283203125e-6,0.0002288222312927246,-0.00007897615432739258,-0.0000896453857421875,-0.00002872943878173828,-0.00013458728790283203,0.0004019737243652344,0.00004076957702636719,1.4603137969970703e-6,2.294778823852539e-6,-0.00020939111709594727,-0.00011926889419555664,-0.00007367134094238281,-0.00008422136306762695,-0.00006842613220214844,0.0001277625560760498,0.00011008977890014648,-0.0007248520851135254,-1.1920928955078125e-6,-0.0008009672164916992,-0.00007086992263793945,-0.00005060434341430664,0.000010371208190917969,-0.000033795833587646484,-0.000016570091247558594,0.00011980533599853516,8.672475814819336e-6,-0.00011366605758666992,0.00006592273712158203,0.00014677643775939941,-0.00003463029861450195,-0.000054895877838134766,-0.00003641843795776367,0.00019949674606323242,-0.0001175999641418457,-5.364418029785156e-6,0.00043147802352905273,-0.0000667572021484375,-0.00017017126083374023,0.00006628036499023438,-0.00005537271499633789,0.00015592575073242188,3.4570693969726562e-6,-0.00009840726852416992,-0.000022292137145996094,0.0001361370086669922,0.013528138399124146,0.00022861361503601074,-0.00004172325134277344,-0.00012195110321044922,-0.0003387928009033203,-0.000014483928680419922,-0.00014269351959228516,-0.00002199411392211914,-0.00001245737075805664,-0.00004756450653076172,0.00023040175437927246,0.00016990303993225098,0.00010439753532409668,0.000035762786865234375,-0.001922905445098877,0.0001723766326904297,-0.00006085634231567383,0.00007987022399902344,0.00004521012306213379,0.00012955069541931152,0.00002905726432800293,0.0001906752586364746,-0.0001856088638305664,0.000053048133850097656,0.00034543871879577637,8.255243301391602e-6,0.00007835030555725098,-8.761882781982422e-6,0.0005578398704528809,0.0005292892456054688,0.00002181529998779297,-0.000029146671295166016,-0.000052928924560546875,-6.67572021484375e-6,-0.00006908178329467773,-0.0008179545402526855,0.00019174814224243164,0.0005420148372650146,-0.00003314018249511719,0.0000254213809967041,0.00019183754920959473,-0.0001868605613708496,0.0000445246696472168,0.000035762786865234375,-0.00002193450927734375,0.00016632676124572754,0.00013124942779541016,-0.000038564205169677734,-0.00001436471939086914,-0.000016570091247558594,-0.00005334615707397461,0.000014036893844604492,0.00001749396324157715,-0.00004756450653076172,-0.00005930662155151367,-0.0006089210510253906,0.000011354684829711914,-0.000010311603546142578,-0.00007712841033935547,0.0006487071514129639,0.00024050474166870117,-4.351139068603516e-6,-0.0015180110931396484,-0.0009155869483947754,-0.00014215707778930664,0.000035703182220458984,-0.000034689903259277344,0.00007450580596923828,-0.000017344951629638672,-0.00007474422454833984,3.993511199951172e-6,5.811452865600586e-6,0.000010371208190917969,0.00006261467933654785,0.0001252889633178711,0.000174790620803833,9.804964065551758e-6,0.0002758800983428955,0.0001074075698852539,0.00008916854858398438,0.00014472007751464844,-0.00020068883895874023,0.00020259618759155273,4.172325134277344e-7,0.0000794827938079834,-0.000064849853515625,-0.00017255544662475586,0.00013151764869689941,-0.00010609626770019531,0.00013527274131774902,0.0001513659954071045,0.000027179718017578125,-0.0000349879264831543,0.00007739663124084473,0.00014960765838623047,0.0006583929061889648,0.000014871358871459961,0.00010129809379577637,-0.00011914968490600586,-0.0000858306884765625,0.00011596083641052246,-0.00002872943878173828,0.00010901689529418945,-0.0001341104507446289,0.00012615323066711426,0.00022974610328674316,0.000048786401748657227,0.000038743019104003906,-0.0000960230827331543,0.00008982419967651367,-0.00010281801223754883,-0.0000692605972290039,-0.00036346912384033203,0.00008627772331237793,-0.000024259090423583984,-0.000025331974029541016,-0.00003457069396972656,0.00020942091941833496,0.00048425793647766113,-4.351139068603516e-6,0.000016510486602783203,0.000027239322662353516,-0.0001876354217529297,-0.00007069110870361328,-0.00032526254653930664,0.00008615851402282715,0.00001806020736694336,0.000015616416931152344,0.00013127923011779785,4.202127456665039e-6,-0.000010371208190917969,-0.00004035234451293945,0.00007793307304382324,0.0002174675464630127,0.00040850043296813965,-0.0002181529998779297,-0.000091552734375,0.0002613663673400879,-7.152557373046875e-6,0.00020423531532287598,-0.0001952052116394043,9.000301361083984e-6,0.0005810856819152832,0.0003395676612854004,0.0004992187023162842,0.000045418739318847656,0.00004348158836364746,-0.0000833272933959961,-0.00009161233901977539,-0.00006812810897827148,-0.000031113624572753906,3.8743019104003906e-7,0.00011494755744934082,0.0000603795051574707,-0.00004416704177856445,0.00003281235694885254,0.00033986568450927734,0.00006383657455444336,-0.00005620718002319336,2.682209014892578e-7,0.00008705258369445801,-0.00007927417755126953,-0.000012814998626708984,0.00010257959365844727,-0.00003981590270996094,-0.00018310546875,-0.000213623046875,-4.351139068603516e-6,0.00011643767356872559,-0.00001609325408935547,-0.00014907121658325195,0.00006276369094848633,-0.0001627206802368164,0.000013709068298339844,-0.00006824731826782227,-0.00016045570373535156,0.0004941225051879883,-0.00015270709991455078,8.940696716308594e-6,0.00019058585166931152,-0.00005346536636352539,-0.00013059377670288086,0.00005397200584411621,-0.00005030632019042969,0.00001093745231628418,-0.00022792816162109375,0.000045418739318847656,-0.00004178285598754883,0.0006841123104095459,-0.00003123283386230469,-0.0001881122589111328,-0.0003580451011657715,-0.00004011392593383789,0.00006213784217834473,0.00003221631050109863,0.00023192167282104492,-0.00015503168106079102,0.00009775161743164062,0.00013145804405212402,0.0014584064483642578,0.00005882978439331055,0.00004920363426208496,0.00011429190635681152,0.00037354230880737305,-0.00014263391494750977,-0.00004744529724121094,0.00003382563591003418,0.0004837512969970703,0.00007414817810058594,-0.00007408857345581055,0.00003832578659057617,-0.00021082162857055664,0.000024884939193725586,-0.00003343820571899414,-0.00003832578659057617,-0.00021141767501831055,-0.0006555914878845215,-0.000016987323760986328,0.00004741549491882324,0.00045236945152282715,-0.00017547607421875,-0.00003701448440551758,0.0013471543788909912,0.000014901161193847656,0.00006192922592163086,0.0005710422992706299,0.0000661611557006836,0.0004977881908416748,-0.00007647275924682617,-0.00004309415817260742,0.0002600252628326416,0.00010073184967041016,-0.00001710653305053711,-0.00008440017700195312,0.0005197525024414062,0.00008231401443481445,-0.00007277727127075195,0.00016951560974121094,-0.00004857778549194336,-0.00007134675979614258,0.00007086992263793945,0.000025033950805664062,-0.000263214111328125,-0.00008690357208251953,-0.00003743171691894531,0.0001201629638671875,-0.00006389617919921875,-0.00001150369644165039,0.0001971721649169922,-0.00014531612396240234,4.6193599700927734e-6,0.0009101629257202148,-0.00010675191879272461,-0.00001519918441772461,9.000301361083984e-6,0.0007276237010955811,-0.00001800060272216797,0.00001424551010131836,-0.00014597177505493164,0.00008320808410644531,0.00008916854858398438,0.00028568506240844727,0.000064849853515625,0.00008448958396911621,0.00006839632987976074,0.0004825294017791748,-0.000018656253814697266,0.00021466612815856934,0.00011664628982543945,-0.00010687112808227539,-0.000037550926208496094,-0.00004857778549194336,0.00009647011756896973,-0.00008690357208251953,0.0010027587413787842,0.000019341707229614258,0.00019797682762145996,0.000012636184692382812,-0.000027894973754882812,-7.212162017822266e-6,0.000048220157623291016,-0.00010406970977783203,-0.00008851289749145508,-0.00008016824722290039,0.0000603795051574707,-0.000037550926208496094,0.00015613436698913574,-0.00010776519775390625,0.000051081180572509766,0.00010076165199279785,-0.00010228157043457031,0.00006154179573059082,0.24085110425949097,0.000043720006942749023,0.0008274614810943604,0.0007616877555847168,0.00016689300537109375,-0.000022470951080322266,0.00048360228538513184,0.0009475946426391602,0.00007614493370056152,0.00006341934204101562,-0.00003653764724731445,0.0001742243766784668,-0.00002759695053100586,-0.00001728534698486328,0.00028958916664123535,0.0007108449935913086,0.000028371810913085938,0.0013771355152130127,0.0003933906555175781,-0.00009351968765258789,1.00663423538208,-0.000047087669372558594,0.000058531761169433594,0.00022852420806884766,-0.0003345608711242676,-0.0000426173210144043,-8.881092071533203e-6,0.00003865361213684082,0.00015360116958618164,-0.00004857778549194336,-0.00028514862060546875,-0.00011426210403442383,-0.00009948015213012695,0.0015321969985961914,-0.00009989738464355469,-0.0000616908073425293,-0.00005030632019042969,-0.00004595518112182617,-0.000023245811462402344,-0.00015866756439208984,0.00006917119026184082,-0.00004857778549194336,0.00009378790855407715,0.00009736418724060059,-0.00003403425216674805,0.0000393986701965332,-0.0004393458366394043,8.881092071533203e-6,0.006521761417388916,0.00007078051567077637,-0.00011086463928222656,-0.000020742416381835938,-0.000052928924560546875,0.0005249083042144775,-0.00007712841033935547,0.0006239712238311768,-0.0004038810729980469,-0.000010013580322265625,-0.00006282329559326172,-0.00004029273986816406,-0.00011038780212402344,0.0005570054054260254,-0.00010156631469726562,-0.00008910894393920898,0.0002657175064086914,0.0005540847778320312,-0.00004678964614868164,0.00025850534439086914,-0.00024884939193725586,-0.00006431341171264648,0.0003064572811126709,-0.0002155303955078125,-0.00002104043960571289,-0.00031888484954833984,-0.00013679265975952148,-0.0000622868537902832,0.00028389692306518555,0.00009655952453613281,-0.00002282857894897461,-0.00003618001937866211,-0.00008422136306762695,-0.00004750490188598633,0.00012701749801635742,3.904104232788086e-6,0.00002562999725341797,0.00010117888450622559,0.00020074844360351562,0.00011652708053588867,5.692243576049805e-6,0.00008380413055419922,-0.000039637088775634766,0.000058531761169433594,-0.00002199411392211914,0.000050961971282958984,-0.00002771615982055664,0.000060051679611206055,7.4803829193115234e-6,0.00014272332191467285,-0.00008958578109741211,0.00392875075340271,0.0004343390464782715,-0.00002199411392211914,0.00005081295967102051,-0.00008887052536010742,-0.0004735589027404785,-7.927417755126953e-6,-0.000022292137145996094,0.000023573637008666992,0.000779271125793457,-0.0002735257148742676,0.00048482418060302734,-0.0006555914878845215,-0.000040650367736816406,0.00008657574653625488,0.000023126602172851562,-0.00009882450103759766,-0.000014126300811767578,0.0003637373447418213,-0.00002777576446533203,0.0001296699047088623,0.00023025274276733398,9.119510650634766e-6,-0.00029927492141723633,2.3245811462402344e-6,0.0007958710193634033,0.00016960501670837402,-0.00001728534698486328,0.00004506111145019531,-0.00007098913192749023,-0.000057816505432128906,0.00018838047981262207,0.000195235013961792,-0.00010335445404052734,-0.00005120038986206055,-0.0000776052474975586,-0.00012874603271484375,0.0016920268535614014,0.00010675191879272461,-6.973743438720703e-6,0.00003451108932495117,0.00006300210952758789,0.0019163787364959717,-4.112720489501953e-6,0.002390265464782715,-0.0003840923309326172,-0.0001817941665649414,0.00009113550186157227,0.0001379251480102539,-0.00011640787124633789,-0.00006645917892456055,0.00013333559036254883,-0.000060558319091796875,-0.00017112493515014648,0.00010120868682861328,-0.00042426586151123047,0.000037103891372680664,-0.0001405477523803711,-0.00014019012451171875,-0.00007462501525878906,-0.00024968385696411133,-0.000049233436584472656,-0.0001405477523803711,0.000056415796279907227,9.000301361083984e-6,0.00003993511199951172,0.00001239776611328125,-0.00007069110870361328,-9.059906005859375e-6,-0.00004094839096069336,-0.00012576580047607422,0.018777430057525635,0.00011894106864929199,0.00069388747215271,-0.00001823902130126953,0.00001093745231628418,0.0000667572021484375,-0.0000400543212890625,-0.00006884336471557617,-0.00008690357208251953,-0.00003314018249511719,0.00001430511474609375,0.0005803704261779785,0.000010371208190917969,0.00017067790031433105,-0.000013589859008789062,-0.000056743621826171875,-0.00008815526962280273,-0.000014066696166992188,0.00008505582809448242,0.000050634145736694336,0.000024139881134033203,0.0008490979671478271,0.00017750263214111328,0.00007915496826171875,-0.00011360645294189453,-0.00004190206527709961,-8.761882781982422e-6,-0.000056743621826171875,0.00003865361213684082,0.00018668174743652344,0.0008532404899597168,0.00014790892601013184,0.00047284364700317383,3.0100345611572266e-6,0.00009655952453613281,-0.00004839897155761719,0.000059098005294799805,0.00009956955909729004,0.00030544400215148926,0.00003165006637573242,0.000017434358596801758,-0.000017523765563964844,-0.00005793571472167969,0.001047968864440918,0.00009465217590332031,0.00024816393852233887,0.00017002224922180176,0.00008615851402282715,-0.00003445148468017578,-0.00006526708602905273,-7.987022399902344e-6,0.00013142824172973633,0.0001468658447265625,0.000035256147384643555,0.00019124150276184082,0.000015020370483398438,0.0010741055011749268,-0.0002079606056213379,0.00037550926208496094,2.950429916381836e-6,0.00007387995719909668,0.0008202195167541504,-0.000026166439056396484,-0.00001996755599975586,0.00002467632293701172,-6.973743438720703e-6,-3.5762786865234375e-7,0.00003764033317565918,0.00020417571067810059,-0.00002759695053100586,0.00015658140182495117,0.0000254213809967041,0.00003471970558166504,0.0018803775310516357,0.000028699636459350586,-0.00005835294723510742,0.0006657242774963379,0.00028845667839050293,-0.00003451108932495117,0.000022202730178833008,0.000012993812561035156,0.0001277625560760498,-0.00002676248550415039,0.0006513595581054688,-0.00006455183029174805,0.00005742907524108887,-0.00008845329284667969,0.000028431415557861328,-0.00010287761688232422,0.00014960765838623047,0.00004920363426208496,0.00006255507469177246,-0.000025451183319091797,-0.00005507469177246094,0.00025960803031921387,-0.0001582503318786621,0.0001391768455505371,0.000026553869247436523,-0.000020444393157958984,-0.00006175041198730469,0.00014406442642211914,-0.000045239925384521484,-0.00007462501525878906,-8.285045623779297e-6,0.00011652708053588867,0.000048220157623291016,0.0001087486743927002,0.000362396240234375,0.000057756900787353516,-0.000013053417205810547,-0.00003892183303833008,0.000038743019104003906,-0.00008213520050048828,-3.2782554626464844e-6,-0.00004988908767700195,-0.00010949373245239258,-0.00009262561798095703,0.0007047653198242188,0.00002378225326538086,-0.0015631914138793945,-0.00020551681518554688,0.000019282102584838867,-0.00014209747314453125,0.00003808736801147461,0.0004210174083709717,-0.000049114227294921875,0.00006949901580810547,-0.0005925893783569336,0.000012874603271484375,0.0022576749324798584,-0.0000922083854675293,-0.00012195110321044922,0.0003439486026763916,0.0008502006530761719,-0.00007063150405883789,0.00010779500007629395,-0.00002187490463256836,0.00001677870750427246,0.0004817545413970947,-0.0001620650291442871,0.0001125633716583252,0.00009492039680480957,-0.00006526708602905273,0.00020369887351989746,-0.00017017126083374023,-0.00023412704467773438,-0.00007712841033935547,-0.0001042485237121582,-0.00005620718002319336,0.00006467103958129883,-0.00009775161743164062,-0.00003653764724731445,-0.00011467933654785156,0.000049620866775512695,-3.4570693969726562e-6,-0.00005459785461425781,0.00009372830390930176,-0.0001856088638305664,-0.00021570920944213867,-0.0010913610458374023,0.000012695789337158203,8.374452590942383e-6,0.000023424625396728516,-0.000060498714447021484,-0.0013421177864074707,0.000043839216232299805,0.0008884966373443604,-0.000010788440704345703,-0.00015497207641601562,0.00012156367301940918,-0.0000731348991394043,0.00003993511199951172,-0.00011920928955078125,0.0001449882984161377,-0.0012600421905517578,0.00012201070785522461,-0.0001856088638305664,-0.000016748905181884766,0.00012800097465515137,0.00010028481483459473,-0.000052869319915771484,-0.00009584426879882812,0.00012189149856567383,0.0001691877841949463,-0.000027060508728027344,6.5267086029052734e-6,-0.0001442432403564453,-0.00010985136032104492,-0.0002060532569885254,-0.000019550323486328125,-0.0002707839012145996,0.0002828538417816162,0.00018236041069030762,-0.0001004934310913086,-0.000034689903259277344,1.0057635307312012,-0.00010985136032104492,-0.00004696846008300781,0.0002869069576263428,0.00022551417350769043,0.00007578730583190918,0.0004032254219055176,0.00004920363426208496,-0.00018781423568725586,0.0006343722343444824,0.000022739171981811523,0.000021576881408691406,-0.00004583597183227539,9.000301361083984e-6,5.632638931274414e-6,0.00020518898963928223,0.000058531761169433594,0.00006604194641113281,-0.0000349879264831543,0.0001703202724456787,0.00002378225326538086,0.000253140926361084,2.950429916381836e-6,0.000641554594039917,-0.00006645917892456055,-0.00017023086547851562,0.0005999505519866943,-0.00009644031524658203,-0.00015288591384887695,0.0003879964351654053,0.00036898255348205566,0.00011867284774780273,-0.000045180320739746094,0.00006410479545593262,-8.344650268554688e-7,-0.000011444091796875,-0.00013887882232666016,0.00005221366882324219,0.0002218782901763916,-3.814697265625e-6,-6.854534149169922e-6,0.00011652708053588867,-0.0008159279823303223,-0.000047087669372558594,-0.00014019012451171875,0.0001620948314666748,0.00032073259353637695,0.00013828277587890625,-0.0001391768455505371,0.00001704692840576172,-0.00006210803985595703,0.00008952617645263672,0.000057250261306762695,2.384185791015625e-7,0.00004076957702636719,0.00004920363426208496,0.00010147690773010254,0.000021845102310180664,0.00005391240119934082,-0.00005030632019042969,0.00002434849739074707,-0.0008249282836914062,-0.00006175041198730469,0.00017502903938293457,-0.000030159950256347656,-1.4901161193847656e-6,-0.00042253732681274414,0.00022470951080322266,-0.00013685226440429688,-0.00024008750915527344,-0.00005835294723510742,-0.0007074475288391113,0.000436246395111084,0.00024381279945373535,-0.000030338764190673828,-2.7418136596679688e-6,-0.00014466047286987305,-0.00008440017700195312,0.000028371810913085938,0.00005123019218444824,0.00007855892181396484,-0.00008034706115722656,0.000503838062286377,-0.00004839897155761719,-0.00024306774139404297,0.00009509921073913574,-0.00011080503463745117,-0.0000616908073425293,-0.00016045570373535156,0.0005100667476654053,0.00007930397987365723,-0.00006204843521118164,0.00012955069541931152,-0.00022536516189575195,-0.000260770320892334,-0.0001093745231628418,-0.00008702278137207031,-0.000046312808990478516,0.00009867548942565918,-0.00004857778549194336,-0.00002294778823852539,0.00019916892051696777,-0.0001615285873413086,0.00016197562217712402,0.0001246631145477295,-0.00002199411392211914,7.152557373046875e-6,0.0008274614810943604,0.0000432431697845459,-0.00006395578384399414,9.268522262573242e-6,-0.0001302957534790039,0.00012037158012390137,-0.000013053417205810547,0.00005885958671569824,-0.000021219253540039062,0.0000699460506439209,-5.424022674560547e-6,0.00017067790031433105,0.0007844865322113037,0.0009587407112121582,0.00005939602851867676,-9.834766387939453e-6,0.00006371736526489258,-0.0001291036605834961,0.00010150671005249023,-0.000024497509002685547,0.0007259845733642578,0.00008615851402282715,0.00009062886238098145,0.00015103816986083984,4.738569259643555e-6,0.00007370114326477051,0.0006429553031921387,-0.0000712275505065918,-0.00013935565948486328,-0.000059664249420166016,0.000045686960220336914,-0.00006431341171264648,-0.00009435415267944336,-0.00014597177505493164,0.000056415796279907227,0.001337975263595581,0.00024375319480895996,0.0000896155834197998,-0.0009056329727172852,-0.00009584426879882812,0.000058531761169433594,-0.00011289119720458984,-0.00006753206253051758,0.00009524822235107422,0.00003382563591003418,0.00023323297500610352,-0.00007170438766479492,-0.0000349879264831543,0.00007081031799316406,-0.00003737211227416992,0.000030249357223510742,0.00003471970558166504,0.0004837512969970703,0.00003409385681152344,-0.0002751350402832031,0.0003699958324432373,-0.0000483393669128418,0.00013592839241027832,-7.569789886474609e-6,-0.0000985264778137207,-0.00014066696166992188,-0.00001436471939086914,0.0026037395000457764,0.000031560659408569336,-0.00002199411392211914,-6.973743438720703e-6,0.043460071086883545,-0.00004798173904418945,0.0001481771469116211,0.00006276369094848633,8.821487426757812e-6,0.00038239359855651855,-0.00012058019638061523,-0.00034493207931518555,0.0004201829433441162,-0.000865638256072998,2.4139881134033203e-6,0.0008160769939422607,0.00003865361213684082,0.0006165206432342529,0.00014516711235046387,0.0000591278076171875,0.0001316666603088379,-0.0000832676887512207,-0.000019848346710205078,0.00009459257125854492,-0.00003224611282348633,9.000301361083984e-6,0.0001494288444519043,-0.00012958049774169922,0.00019791722297668457,-0.0000502467155456543,0.00002625584602355957,0.00008845329284667969,0.0003808140754699707,-0.00008922815322875977,0.000026464462280273438,-0.000024080276489257812,0.00005555152893066406,-0.00010818243026733398,0.005840659141540527,0.00006917119026184082,0.018185466527938843,0.00003597140312194824,0.00007387995719909668,-0.00006395578384399414,-0.0014110803604125977,0.000050067901611328125,0.00005650520324707031,0.0002716183662414551,0.00033342838287353516,-0.0001412034034729004,0.00008213520050048828,0.00003981590270996094,-0.0005708932876586914,9.000301361083984e-6,0.00028270483016967773,-0.00005984306335449219,0.0003808140754699707,-0.000023603439331054688,0.0002480745315551758,-0.000049054622650146484,-0.00002968311309814453,-0.00014603137969970703,-0.00006115436553955078,-0.00010830163955688477,-0.000012934207916259766,0.02489343285560608,-0.000023603439331054688,0.0001017153263092041,-0.00019598007202148438,-0.00009185075759887695,0.000576406717300415,-0.0001856088638305664,-0.0001214146614074707,-0.000037789344787597656,0.0005100667476654053,-9.238719940185547e-6,-0.00006949901580810547,0.00034043192863464355,0.00014740228652954102,-0.0004163980484008789,-0.00010114908218383789,0.0008478164672851562,-0.00017750263214111328,0.0006039440631866455,0.000058531761169433594,-0.00007486343383789062,0.00009062886238098145,-0.0002072453498840332,-0.00003349781036376953,0.00028890371322631836,0.0003801584243774414,0.00009810924530029297,-0.00010150671005249023,-0.0000349879264831543,0.0003846883773803711,0.00009149312973022461,0.00017404556274414062,-0.00019508600234985352,0.0005627572536468506,0.000010371208190917969,0.00023886561393737793,0.00003153085708618164,-0.00007712841033935547,-0.00004094839096069336,-0.00016766786575317383,0.002607375383377075,-0.00006127357482910156,0.00009170174598693848,-0.0000438690185546875,0.0006996691226959229,-0.00008600950241088867,0.00001099705696105957,-0.0061203837394714355,0.00002244114875793457,-0.00001633167266845703,-7.152557373046875e-6,-0.0000603795051574707,0.00007280707359313965,0.000028371810913085938,0.000054389238357543945,0.00007528066635131836,0.000742793083190918,-0.00004756450653076172,0.00039759278297424316,-0.00005984306335449219,0.00003471970558166504,0.00004073977470397949,0.00019174814224243164,-0.0002849102020263672,-0.00012683868408203125,0.00018459558486938477,0.0002662837505340576,0.000028789043426513672,-0.00007092952728271484,0.0000692903995513916,0.000033855438232421875,2.115964889526367e-6,0.001211404800415039,0.000516742467880249,0.00006413459777832031,0.00014278292655944824,0.00014868378639221191,-0.00003170967102050781,0.0004006028175354004,-0.0001335740089416504,0.000015556812286376953,-0.0001423358917236328,-0.000018656253814697266,-0.00004220008850097656,0.0005996823310852051,0.00014984607696533203,0.0001055598258972168,5.662441253662109e-7,-0.00007253885269165039,0.0005622208118438721,0.00008475780487060547,0.00018468499183654785,0.00011229515075683594,0.00009846687316894531,-0.00004935264587402344,-0.000030338764190673828,0.0002955198287963867,0.0005402266979217529,0.000039249658584594727,-0.0004259943962097168,0.00010475516319274902,2.0563602447509766e-6,-0.0002486109733581543,-3.159046173095703e-6,0.0011923909187316895,0.00010666251182556152,0.0008148849010467529,0.00012037158012390137,9.000301361083984e-6,-0.00005030632019042969,0.00014477968215942383,0.00011515617370605469,0.000058531761169433594,-0.000023543834686279297,0.00003933906555175781,0.000011056661605834961,0.000026941299438476562,0.00038617849349975586,-0.0017943382263183594,-3.933906555175781e-6,0.0006118714809417725,0.00010117888450622559,0.00001239776611328125,0.00011548399925231934,-0.00012636184692382812,-0.000031828880310058594,0.0005104243755340576,0.0005698502063751221,-4.172325134277344e-6,-0.0008103847503662109,0.000038743019104003906,-0.00011330842971801758,-0.00006514787673950195,0.0007437169551849365,-0.0001932382583618164,-0.00006794929504394531,-0.00011754035949707031,0.00011664628982543945,-1.1920928955078125e-6,-0.00006091594696044922,-0.000059485435485839844,0.00023102760314941406,-0.000016868114471435547,-0.0001901388168334961,0.0006360709667205811,0.0001341402530670166,-0.00008922815322875977,-0.00008285045623779297,0.0004464089870452881,-0.00007957220077514648,-0.00006514787673950195,0.000136643648147583,0.00021713972091674805,0.000053495168685913086,-0.00003141164779663086,-0.00005030632019042969,-0.00003403425216674805,-0.00002568960189819336,-0.000037670135498046875,0.00007700920104980469,0.00014585256576538086,0.00006148219108581543,-0.0001271963119506836,0.007077038288116455,0.0003961622714996338,-0.00001609325408935547,0.00039145350456237793,-0.0000438690185546875,-0.0006629824638366699,-1.0132789611816406e-6,0.00004938244819641113,-0.00009042024612426758,0.0002466440200805664,-0.00003325939178466797,-0.000029981136322021484,0.0011116862297058105,0.0002804696559906006,0.000012874603271484375,0.00014960765838623047,0.00021731853485107422,0.00006002187728881836,3.0100345611572266e-6,0.00032272934913635254,0.00002428889274597168,0.00019437074661254883,-0.00016045570373535156,0.0004839301109313965,0.00015267729759216309,-0.000037729740142822266,-5.364418029785156e-7,-0.0000845193862915039,0.000039249658584594727,0.000028580427169799805,-0.00002181529998779297,0.00010338425636291504,0.0001869797706604004,-0.000039637088775634766,9.506940841674805e-6,-0.00004273653030395508,-0.00004875659942626953,0.000673443078994751,-0.000039696693420410156,-0.000046312808990478516,-0.00004947185516357422,-0.000017821788787841797,-0.0002772212028503418,0.000010371208190917969,0.0004965364933013916,-5.7220458984375e-6,0.00003764033317565918,0.0010091662406921387,0.00008118152618408203,-0.0002276301383972168,-1.5497207641601562e-6,-0.00010770559310913086,-0.0001621842384338379,0.00018164515495300293,-0.00012642145156860352,-0.00003719329833984375,0.0005890429019927979,0.00022581219673156738,-0.000054836273193359375,0.007965683937072754,-0.0006231069564819336,0.00035697221755981445,0.0002924799919128418,-0.0006958842277526855,-0.0009298920631408691,-0.00014466047286987305,0.00008615851402282715,-0.00017249584197998047,0.0003498494625091553,-3.874301910400391e-6,0.0015297234058380127,0.00010132789611816406,-0.00011777877807617188,0.00009736418724060059,0.00007578730583190918,0.0007616877555847168,-0.00006753206253051758,0.00005361437797546387,0.00009202957153320312,0.0005225539207458496,-0.0018393993377685547,-0.00012236833572387695,0.000051409006118774414,-0.00003218650817871094,-0.00002181529998779297,-0.00012958049774169922,0.00007414817810058594,-0.00012171268463134766,-0.00010353326797485352,-0.000056684017181396484,0.00007835030555725098,-0.00004947185516357422,-0.00008744001388549805,0.00010788440704345703,0.000016033649444580078,9.000301361083984e-6,0.00015559792518615723,0.00017210841178894043,0.00001284480094909668,0.000014126300811767578,-0.0006039142608642578,-0.0000966191291809082,0.00013887882232666016,7.420778274536133e-6,0.0007370710372924805,-0.00041162967681884766,0.0013432800769805908,-0.00008314847946166992,-0.00025534629821777344,-0.00017070770263671875,-0.000011444091796875,0.000051081180572509766,-0.000010013580322265625,2.652406692504883e-6,-0.005954623222351074,-0.00006031990051269531,-0.00009053945541381836,-0.00014483928680419922,-0.00004786252975463867,-0.00013637542724609375,0.00023549795150756836,-0.00002110004425048828,0.00007471442222595215,-0.00015842914581298828,0.000024259090423583984,-0.000018775463104248047,0.00002625584602355957,-0.000023424625396728516,-0.000689089298248291,0.00017774105072021484,-0.00014728307723999023,-0.00006765127182006836,0.00011491775512695312,-0.00003123283386230469,-0.000029921531677246094,-0.00010079145431518555,0.00001385807991027832,-0.00004982948303222656,-0.000024497509002685547,-0.00016045570373535156,-0.00005513429641723633,0.00001239776611328125,-0.00003266334533691406,-0.00012737512588500977,-0.0000730752944946289,-0.0001570582389831543,0.00004750490188598633,0.0001545548439025879,-0.00003445148468017578,0.00014987587928771973,-0.0002503395080566406,-0.0009137392044067383,0.0001284480094909668,0.00001862645149230957,0.0006805360317230225,-0.0000324249267578125,0.000013649463653564453,-0.00005650520324707031,0.000016301870346069336,0.0003192424774169922,0.00013053417205810547,-0.00008165836334228516,0.0009419023990631104,0.00040602684020996094,-0.00002199411392211914,0.00011464953422546387,-0.00008606910705566406,0.00007387995719909668,-0.000029027462005615234,0.000013500452041625977,0.0002733170986175537,0.00010901689529418945,0.00003865361213684082,-0.00025922060012817383,0.000332564115524292,-0.00008600950241088867,-0.000051021575927734375,0.00006115436553955078,-0.000013947486877441406,-0.00013059377670288086,4.0531158447265625e-6,0.0013551712036132812,0.00007918477058410645,-0.0003018975257873535,-0.000027894973754882812,0.0001423954963684082,-0.00017511844635009766,-0.000013887882232666016,-0.00002491474151611328,0.00008809566497802734,-0.000032067298889160156,-0.00005882978439331055,-4.172325134277344e-7,0.0015513896942138672,-0.00008195638656616211,0.00034555792808532715,-8.046627044677734e-6,0.00040343403816223145,-0.0001507401466369629,-0.0001570582389831543,0.00014802813529968262,-0.00002199411392211914,0.0001379251480102539,0.00003573298454284668,-0.00005984306335449219,0.000037103891372680664,4.798173904418945e-6,-0.000050902366638183594,-0.000010371208190917969,0.0005042850971221924,0.00009682774543762207,0.00003084540367126465,-0.000039458274841308594,-0.000036597251892089844,0.0000966191291809082,0.00015118718147277832,-0.000021457672119140625,-2.9206275939941406e-6,0.00002905726432800293,0.000015676021575927734,-0.00007712841033935547,0.00004038214683532715,-0.00008577108383178711,0.0002937018871307373,-0.0001856088638305664,-0.00004363059997558594,0.0010742545127868652,0.00001677870750427246,-0.000056803226470947266,-0.0008009672164916992,-0.00003224611282348633,0.000023305416107177734,-0.00007891654968261719,-0.0003096461296081543,-0.000046193599700927734,-0.00008052587509155273,0.0007198750972747803,0.00037926435470581055,-0.00009447336196899414,-0.00002110004425048828,0.00008052587509155273,0.00004789233207702637,-0.00004696846008300781,0.00003203749656677246,0.00030928850173950195,0.000697702169418335,-0.00002372264862060547,0.06425303220748901,-0.000050067901611328125,-0.00002562999725341797,0.000022023916244506836,-0.00008243322372436523,0.00006148219108581543,0.0003598630428314209,0.00005716085433959961,0.000030159950256347656,-0.00013971328735351562,-0.000010013580322265625,-0.000023126602172851562,0.00011402368545532227,0.00005173683166503906,0.0004018247127532959,-0.00006836652755737305,0.002896130084991455,-0.0014400482177734375,0.00006410479545593262,0.0006135702133178711,0.00003173947334289551,0.00022464990615844727,-0.00009161233901977539,0.00006130337715148926,0.000051409006118774414,0.0008941590785980225,0.0000667870044708252,-0.00013017654418945312,0.00014495849609375,0.0004546940326690674,-0.00006973743438720703,0.0005207955837249756,-0.000023186206817626953,0.0007666945457458496,-0.000058531761169433594,0.0005284547805786133,0.00008365511894226074,0.00017940998077392578,0.0004743635654449463,-8.046627044677734e-6,-0.00003451108932495117,-0.000013828277587890625,0.00011068582534790039,7.957220077514648e-6,-0.0003020167350769043,0.00011512637138366699,0.00012958049774169922,0.00004971027374267578,-0.000042498111724853516,-0.00003653764724731445,0.000038743019104003906,0.000364452600479126,-0.00002586841583251953,9.804964065551758e-6,-7.152557373046875e-7,0.00010889768600463867,-0.00007712841033935547,0.00018233060836791992,0.0001685023307800293,-0.00002008676528930664,-0.00020885467529296875,2.0563602447509766e-6,-0.00039952993392944336,-0.0004531741142272949,-0.00017505884170532227,-7.212162017822266e-6,0.000039637088775634766,0.0001379847526550293,0.0023800134658813477,-0.00011831521987915039,-0.00021392107009887695,0.000041812658309936523,0.00020119547843933105,-0.0000388026237487793,-0.00008046627044677734,0.00028461217880249023,2.2649765014648438e-6,-0.00006854534149169922,-0.00003653764724731445,-2.384185791015625e-7,0.0015007257461547852,0.00003403425216674805,-4.172325134277344e-7,-0.00025194883346557617,-0.0001634359359741211,0.000026464462280273438,0.00047579407691955566,-0.00010406970977783203,0.00006499886512756348,0.0001907050609588623,-0.0000349879264831543,0.00001773238182067871,8.64267349243164e-6,0.00015556812286376953,-0.00003212690353393555,-0.00008314847946166992,0.00007447600364685059,0.000036388635635375977,0.00011304020881652832,0.00006300210952758789,-0.000048041343688964844,-0.000029206275939941406,0.00001800060272216797,0.00019785761833190918,0.0001703202724456787,0.000756382942199707,0.000034689903259277344,0.0003623366355895996,0.00003045797348022461,-0.00022208690643310547,-0.000010013580322265625,0.00008738040924072266,0.0005178153514862061,-1.8477439880371094e-6,0.0000667572021484375,0.000014841556549072266,-0.00009316205978393555,0.0001500546932220459,0.0006135702133178711,-0.00011789798736572266,-0.00006020069122314453,-0.00029790401458740234,0.00009870529174804688,-0.0001398324966430664,-0.0001659393310546875,-0.00017523765563964844,-0.00003796815872192383,-0.00008434057235717773,0.00019782781600952148,0.0002377927303314209,0.000015020370483398438,0.0008573532104492188,0.00002726912498474121,-0.000056684017181396484,-0.00002199411392211914,0.000304490327835083,-0.00029844045639038086,-0.00003075599670410156,-0.00002384185791015625,0.00008612871170043945,-0.00002014636993408203,-0.000310361385345459,-0.00006639957427978516,-9.298324584960938e-6,0.00039836764335632324,0.00003471970558166504,-0.000016868114471435547,-0.0001704096794128418,0.00007709860801696777,-0.00010645389556884766,-0.000011742115020751953,-0.000037670135498046875,0.0012444853782653809,0.00011923909187316895,-0.00006759166717529297,0.00007286667823791504,-0.00020998716354370117,-0.00011098384857177734,0.0009254515171051025,0.00005194544792175293,0.00007608532905578613,-0.000020444393157958984,0.000010371208190917969,-0.000011444091796875,-0.00020247697830200195,-0.00014090538024902344,0.0000718533992767334,0.00010910630226135254,0.0004372894763946533,0.00010880827903747559,-0.0001780390739440918,0.00004750490188598633,-0.00021201372146606445,-0.000059723854064941406,0.00013527274131774902,-4.351139068603516e-6,-0.00006842613220214844,-0.00012612342834472656,-0.00004380941390991211,-0.00014191865921020508,0.0001443624496459961,0.0009068548679351807,0.00007417798042297363,0.0005512535572052002,0.00020453333854675293,0.0005907714366912842,0.00006407499313354492,0.00025513768196105957,0.000030368566513061523,0.00018325448036193848,-0.000038504600524902344,0.000053763389587402344,0.000030666589736938477,0.000696718692779541,0.005731731653213501,-0.00018388032913208008,-5.364418029785156e-7,-7.3909759521484375e-6,0.00045669078826904297,-0.00008273124694824219,-0.000016629695892333984,-0.00010758638381958008,0.00003516674041748047,-6.079673767089844e-6,0.0000750124454498291,0.0006246566772460938,0.000034928321838378906,0.00004404783248901367,-1.3113021850585938e-6,-0.0004152059555053711,0.00003489851951599121,0.0003535151481628418,0.000053048133850097656,-0.00015753507614135742,-0.000022709369659423828,-0.00006884336471557617,-0.0001703500747680664,0.00027549266815185547,-0.00007462501525878906,0.00029927492141723633,-0.00004762411117553711,-0.00005751848220825195,-0.00015288591384887695,-0.00016164779663085938,9.864568710327148e-6,-7.152557373046875e-6,0.0001741945743560791,0.00012704730033874512,0.000012218952178955078,-0.00040078163146972656,0.0005661845207214355,-0.00046765804290771484,-0.00011426210403442383,0.0007196664810180664,0.0038198530673980713,5.334615707397461e-6,-0.00010627508163452148,-0.00005161762237548828,0.00009450316429138184,-7.62939453125e-6,0.0000940859317779541,0.00013890862464904785,0.00002771615982055664,-0.0001342296600341797,0.00007939338684082031,0.0001564323902130127,0.00011545419692993164,-0.0001703500747680664,0.000036597251892089844,-2.8014183044433594e-6,0.00005638599395751953,-0.00017583370208740234,-0.000029861927032470703,0.0008274614810943604,0.000296175479888916,0.00023090839385986328,-0.000013828277587890625,-0.00003451108932495117,-0.000058710575103759766,0.00016948580741882324,0.0008798539638519287,0.0001639723777770996,0.000056415796279907227,-0.00012421607971191406,-0.00007098913192749023,0.000044673681259155273,0.00010895729064941406,0.00011211633682250977,-0.00010091066360473633,-0.00017511844635009766,0.000013649463653564453,0.00027573108673095703,7.450580596923828e-7,-0.00012576580047607422,0.00003948807716369629,0.0008201301097869873,-0.00012749433517456055,-0.00007975101470947266,0.00001385807991027832,0.000011056661605834961,0.000030428171157836914,-0.0000871419906616211,-0.00004029273986816406,0.0002804696559906006,-0.000017642974853515625,0.0006674528121948242,-0.000022470951080322266,-0.00011676549911499023,-0.0001652836799621582,-0.00018084049224853516,0.000031888484954833984,0.00005906820297241211,-0.00006663799285888672,0.0004044175148010254,-0.0001537799835205078,-0.00006145238876342773,-0.0001876354217529297,-0.000019371509552001953,0.00027257204055786133,-0.00007659196853637695,-0.0000890493392944336,0.00011923909187316895,0.0002047419548034668,-0.00002199411392211914,-0.00023299455642700195,0.00006496906280517578,0.00009188055992126465,0.000016808509826660156,-0.000018775463104248047,-0.00020056962966918945,0.0000852346420288086,-0.0002595186233520508,0.00001385807991027832,-0.000031948089599609375,0.00007042288780212402,-0.00012749433517456055,0.00034108757972717285,0.00016623735427856445,7.450580596923828e-7,0.00018277764320373535,0.0003961622714996338,0.00005397200584411621,0.0008328855037689209,-0.0005686283111572266,0.000037044286727905273,-0.00004029273986816406,5.125999450683594e-6,0.00005459785461425781,0.0006996393203735352,-0.00008279085159301758,0.001502305269241333,0.0002681314945220947,-0.0000330805778503418,-0.00040465593338012695,0.00010895729064941406,0.000039249658584594727,-0.000058591365814208984,-0.000021159648895263672,0.0007207393646240234,-0.0000317692756652832,-0.00011199712753295898,0.000019669532775878906,0.0003737211227416992,-0.00008684396743774414,0.000029921531677246094,0.00017893314361572266,0.00001138448715209961,0.00013449788093566895,0.000024259090423583984,-9.119510650634766e-6,-0.0000871419906616211,-0.000026226043701171875,0.0004980862140655518,0.000013053417205810547,-0.00001519918441772461,0.000024110078811645508,-0.00002372264862060547,0.00019982457160949707,0.00008615851402282715,-0.0002275705337524414,0.00010186433792114258,-0.000018656253814697266,0.00009170174598693848,0.0001640915870666504,0.001059025526046753,6.9141387939453125e-6,0.550259530544281,-0.0013703703880310059,0.00026300549507141113,0.0010390281677246094,0.00003719329833984375,0.0000254213809967041,0.00006413459777832031,0.00011309981346130371,-0.00001531839370727539,-0.00004470348358154297,-0.00011557340621948242,0.0011613667011260986,0.00018411874771118164,-0.00015556812286376953,0.00013557076454162598,3.2186508178710938e-6,0.0003574788570404053,0.0003961622714996338,-0.00011301040649414062,0.0006579756736755371,-4.172325134277344e-7,0.0008565187454223633,-0.0003151893615722656,-0.000038564205169677734,-0.00003504753112792969,0.00006574392318725586,-0.00007528066635131836,0.00024232268333435059,0.00008574128150939941,0.00003361701965332031,0.00003764033317565918,0.00008150935173034668,0.0001379251480102539,0.00010889768600463867,0.00011911988258361816,0.00013524293899536133,-0.00004112720489501953,0.00007021427154541016,-0.00001728534698486328,0.00005391240119934082,-0.0000966191291809082,0.0003961622714996338,0.00005137920379638672,0.00006857514381408691,-0.00007385015487670898,-6.4373016357421875e-6,-0.00012534856796264648,-0.00001424551010131836,0.00022464990615844727,0.00023424625396728516,0.0006609857082366943,-0.00008493661880493164,0.000015348196029663086,-4.172325134277344e-7,-0.00002491474151611328,-0.0001703500747680664,0.0006894767284393311,0.000025033950805664062,3.9637088775634766e-6,-0.00004786252975463867,-0.00012224912643432617,-0.0001480579376220703,0.00007709860801696777,0.0001703202724456787,-0.00008040666580200195,-0.00005453824996948242,0.000013053417205810547,0.05007743835449219,-0.00009185075759887695,0.000016123056411743164,0.00002199411392211914,-0.000018656253814697266,-0.00019800662994384766,-0.0001266002655029297,-0.00011777877807617188,0.00045058131217956543,-0.0000565648078918457,0.000011712312698364258,-0.000011920928955078125,-0.000014901161193847656,-0.00011092424392700195,-0.0002231597900390625,-0.000041425228118896484,0.00002428889274597168,-0.0003917813301086426,-0.00007712841033935547,0.00010204315185546875,0.00008615851402282715,-0.00011742115020751953,0.0003961622714996338,0.0002047717571258545,0.0001895129680633545,-0.0001627206802368164,-0.0000336766242980957,0.00007066130638122559,8.851289749145508e-6,0.0003610849380493164,-0.000011742115020751953,-0.00008004903793334961,0.00015470385551452637,0.0004972219467163086,-0.000058531761169433594,-0.000039696693420410156,-0.000020682811737060547,-0.00004369020462036133,0.0014047622680664062,-1.8477439880371094e-6,0.0004950761795043945,0.00012597441673278809,-0.00011599063873291016,-0.00007367134094238281,0.00004062056541442871,-0.000014901161193847656,0.00007793307304382324,-0.000046312808990478516,0.0010656416416168213,0.00040012598037719727,0.000849306583404541,-0.00020384788513183594,0.0000432431697845459,-0.00004029273986816406,0.000016689300537109375,0.00040596723556518555,0.0007940232753753662,-0.00014144182205200195,-0.005874931812286377,0.00009113550186157227,2.8908252716064453e-6,-0.00016045570373535156,-0.000046193599700927734,-0.00005835294723510742,0.00006178021430969238,-0.000018596649169921875,0.00010889768600463867,-0.00027680397033691406,0.00010779500007629395,-0.00027441978454589844,-0.00008445978164672852,0.00009268522262573242,-0.00017279386520385742,0.00006467103958129883,0.0004950761795043945,0.0000775754451751709,0.0000374913215637207,0.00022345781326293945,0.00012093782424926758,0.0003274977207183838,0.000019669532775878906,0.00033020973205566406,-0.00003504753112792969,-0.0000871419906616211,0.000017523765563964844,-0.0006068944931030273,0.000061005353927612305,-0.000095367431640625,0.0000756680965423584,0.00001341104507446289,-0.0009786486625671387,-0.000012934207916259766,0.0000349581241607666,-0.0003701448440551758,0.000010371208190917969,-5.9604644775390625e-6,0.00003406405448913574,-0.000041425228118896484,-8.761882781982422e-6,0.000030159950256347656,0.00046899914741516113,-0.00006318092346191406,-0.0002562999725341797,0.00007158517837524414,0.0002543032169342041,-0.000037670135498046875,-0.00010693073272705078,-0.000022649765014648438,0.00003960728645324707,-0.000018477439880371094,0.00010392069816589355,0.00022241473197937012,0.0004367232322692871,0.00011566281318664551,0.00013458728790283203,-0.0009288191795349121,0.00008669495582580566,0.00008428096771240234,-0.00005173683166503906,-0.00001996755599975586,0.0021333694458007812,-0.000039696693420410156,-5.066394805908203e-6,-4.172325134277344e-6,0.00011241436004638672,-0.00016045570373535156,0.0005744993686676025,-0.0015993714332580566,-0.00021839141845703125,0.00008684396743774414,0.00004920363426208496,-0.000052869319915771484,-0.000020384788513183594,-0.0004373788833618164,-0.00005835294723510742,-0.0000712275505065918,0.000742793083190918,7.12275505065918e-6,0.00014385581016540527,0.00009700655937194824,0.00003826618194580078,-0.0017909407615661621,-0.00033468008041381836,0.000041872262954711914,0.000052869319915771484,0.000033229589462280273,-0.00010007619857788086,0.0005438625812530518,-0.001097559928894043,-0.0002574324607849121,0.0006753504276275635,0.00013458728790283203,-0.0001221299171447754,-0.0001068115234375,0.00042429566383361816,0.0006009042263031006,0.00032508373260498047,0.000013172626495361328,0.00008678436279296875,-0.00009131431579589844,0.0000616610050201416,0.00018781423568725586,-0.000056684017181396484,0.005434244871139526,-0.00016295909881591797,1.6391277313232422e-6,-0.00034165382385253906,0.004350781440734863,-0.00008690357208251953,0.00006189942359924316,-0.0001798868179321289,0.0005969405174255371,-0.0000317692756652832,-0.000016868114471435547,0.0014499127864837646,0.000045418739318847656,0.00012728571891784668,0.0001658797264099121,0.0006530582904815674,0.000023245811462402344,0.000054776668548583984,-0.00016069412231445312,-0.00011217594146728516,0.00007176399230957031,-0.000024318695068359375,0.000026017427444458008,3.9637088775634766e-6,-0.0001450181007385254,3.9637088775634766e-6,-0.0002853870391845703,-0.000087738037109375,-0.0000711679458618164,-0.00011432170867919922,0.0000686347484588623,-0.0000464320182800293,-0.00010776519775390625,-0.00006765127182006836,0.0004754364490509033,0.00004595518112182617,-0.00006890296936035156,0.0005850493907928467,-0.00008744001388549805,-0.00007069110870361328,-2.4437904357910156e-6,0.00005805492401123047,0.00031641125679016113,-0.000041425228118896484,0.00003764033317565918,0.0010000765323638916,0.00014406442642211914,0.00011867284774780273,-0.0003510713577270508,-0.00006175041198730469,-0.000059604644775390625,-0.0006822347640991211,0.00040149688720703125,0.00035181641578674316,0.0001086890697479248,0.0005919337272644043,-9.298324584960938e-6,-0.00008887052536010742,-0.000012576580047607422,0.00003489851951599121,-0.000023663043975830078,-0.000011146068572998047,-0.00019347667694091797,0.00006115436553955078,0.000059098005294799805,0.00012683868408203125,-0.000016748905181884766,0.00016137957572937012,0.00034555792808532715,-0.00006031990051269531,0.00004026293754577637,-5.602836608886719e-6,0.0001049339771270752,0.0007477998733520508,0.0003269612789154053,-9.000301361083984e-6,0.0007869601249694824,-0.00004464387893676758,0.00022143125534057617,6.288290023803711e-6,-0.00004887580871582031,-9.953975677490234e-6,0.00002905726432800293,-0.00016939640045166016,-0.0001137852668762207,-0.0006788372993469238,-0.000053822994232177734,-0.00016885995864868164,0.00022745132446289062,-0.000016808509826660156,-0.0008813738822937012,-0.0000794529914855957,-0.00006848573684692383,1.0053213834762573,0.00005036592483520508,0.0002967417240142822,-0.00007337331771850586,-0.00008976459503173828,-0.0001399517059326172,6.854534149169922e-6,-0.000016570091247558594,0.0001411139965057373,-0.000043392181396484375,0.0002351999282836914,-0.00013822317123413086,-0.00008910894393920898,-0.0002574324607849121,0.000050634145736694336,0.00001621246337890625,0.00004062056541442871,-0.00005745887756347656,-0.00010639429092407227,-0.000020623207092285156,0.00013136863708496094,0.00020235776901245117,-0.0001925826072692871,0.000913769006729126,0.00016289949417114258,-0.00006896257400512695,-0.0001348257064819336,0.00009226799011230469,-0.0000705718994140625,0.00003471970558166504,0.0000298917293548584,0.0001112222671508789,0.0004158318042755127,0.0008469820022583008,0.00019982457160949707,0.000058531761169433594,-0.00009304285049438477,0.00010889768600463867,-0.00006109476089477539,0.00020065903663635254,-0.00009244680404663086,0.0009026229381561279,-0.00008744001388549805,-0.00008374452590942383,0.0001289844512939453,0.0001412034034729004,0.0006379783153533936,0.00024580955505371094,-0.0001399517059326172,0.00045603513717651367,0.000038564205169677734,0.00003463029861450195,0.00024336576461791992,0.000011533498764038086,0.00012996792793273926,0.00009161233901977539,-0.000049054622650146484,0.000013768672943115234,-0.000039637088775634766,-0.000012874603271484375,-0.00013893842697143555,-0.00005030632019042969,0.0029011666774749756,0.00017622113227844238,-0.0001895427703857422,0.000030159950256347656,0.0001614093780517578,-0.0001315474510192871,0.00016948580741882324,-0.0000641942024230957,-1.1920928955078125e-7,0.000038743019104003906,0.00001677870750427246,0.00006395578384399414,0.00024193525314331055,0.00001704692840576172,0.0001290440559387207,-0.00013250112533569336,0.0001328885555267334,-0.00005990266799926758,0.0009530782699584961,-0.00003737211227416992,0.00011879205703735352,-0.00004857778549194336,0.00023424625396728516,0.00014987587928771973,1.341104507446289e-6,0.00009950995445251465,-0.0006316900253295898,-0.000024318695068359375,-0.0001887679100036621,0.00003555417060852051,-0.00010031461715698242,0.00020363926887512207,0.001071631908416748,0.000025719404220581055,-0.00015312433242797852,0.00007069110870361328,-2.9206275939941406e-6,3.635883331298828e-6,0.00008845329284667969,-0.00009316205978393555,-0.000024080276489257812,0.00016251206398010254,-0.00022178888320922852,0.000054836273193359375,0.0012392103672027588,0.00026172399520874023,-0.00013691186904907227,-7.510185241699219e-6,-0.00001615285873413086,0.000030159950256347656,0.0003439784049987793,7.778406143188477e-6,0.00012189149856567383,0.0004372894763946533,-0.004754066467285156,-0.000037670135498046875,-0.00001823902130126953,-0.000095367431640625,0.0002976953983306885,0.00007987022399902344,-0.000095367431640625,-0.0000286102294921875,-0.00007665157318115234,-0.00001436471939086914,-0.00018084049224853516,-0.00005918741226196289,-0.00010216236114501953,0.0033968687057495117,0.00006374716758728027,-0.00006371736526489258,-0.000015497207641601562,-0.0002683401107788086,0.0002593696117401123,0.000024080276489257812,0.00011664628982543945,0.0001049339771270752,0.00007963180541992188,-0.0000947713851928711,0.00019308924674987793,7.778406143188477e-6,-0.00006431341171264648,-0.000225067138671875,-0.00004184246063232422,-0.00019377470016479492,-0.000011622905731201172,-0.00006175041198730469,0.000010371208190917969,-0.00021135807037353516,-0.00006175041198730469,3.4868717193603516e-6,0.000058531761169433594,0.000702202320098877,-0.0000966191291809082,-0.00011718273162841797,0.000013738870620727539,-0.00008422136306762695,0.00007742643356323242,-4.172325134277344e-7,-1.1920928955078125e-6,0.000056415796279907227,0.00007918477058410645,0.00035059452056884766,-0.00007766485214233398,-0.000020205974578857422,0.0005331635475158691,-0.0000546574592590332,0.00043022632598876953,0.00006148219108581543,0.00007614493370056152,-0.00014507770538330078,0.00018468499183654785,0.0005929470062255859,0.000373154878616333,-0.00005835294723510742,-0.000015437602996826172,0.0013747215270996094,-0.000013828277587890625,-0.00008934736251831055,0.000050634145736694336,1.817941665649414e-6,0.000056624412536621094,7.12275505065918e-6,0.00017049908638000488,0.0000292360782623291,0.00009498000144958496,-0.0008346438407897949,0.00006598234176635742,-0.0009838342666625977,0.00009682774543762207,0.00009846687316894531,-0.00016045570373535156,-0.000020682811737060547,0.00003808736801147461,0.00010439753532409668,0.00012499094009399414,0.00007447600364685059,-0.00008386373519897461,0.000044673681259155273,0.00006115436553955078,-0.00013870000839233398,-0.00006175041198730469,0.00043317675590515137,0.000038743019104003906,0.00001385807991027832,-0.000044345855712890625,0.00022846460342407227,-0.00015550851821899414,0.0006593763828277588,0.0004057586193084717,0.0000966787338256836,0.000028342008590698242,-0.000042557716369628906,-0.00019371509552001953,-0.00005370378494262695,0.04569914937019348,0.000011056661605834961,0.00008675456047058105,0.00008410215377807617,0.000030159950256347656,0.0005034506320953369,-0.00011730194091796875,0.0007529854774475098,0.00004190206527709961,-0.00001609325408935547,-0.00001436471939086914,-0.00005841255187988281,0.00007608532905578613,0.0010043978691101074,-0.00021779537200927734,0.0017265081405639648,0.00008234381675720215,0.00034672021865844727,-0.00008767843246459961,-0.00017696619033813477,-0.0000654458999633789,-0.00012701749801635742,0.00006195902824401855,-0.000021576881408691406,-0.000017583370208740234,0.000053316354751586914,0.0004355311393737793,-0.00007617473602294922,-0.002789020538330078,0.011596471071243286,0.00008779764175415039,0.00044164061546325684,0.0001531839370727539,0.000048667192459106445,0.00001677870750427246,-0.00006622076034545898,0.000038743019104003906,-0.000018775463104248047,-0.0001881122589111328,0.00019782781600952148,0.00003764033317565918,-0.00017660856246948242,0.00008177757263183594,-0.00034618377685546875,-0.000058710575103759766,0.0006584823131561279,-0.0002532005310058594,0.00021073222160339355,0.00014516711235046387,0.00011813640594482422,-0.00003641843795776367,0.0010380446910858154,0.000011593103408813477,-6.973743438720703e-6,-0.00002199411392211914,-0.000014007091522216797,0.00005996227264404297,0.000012487173080444336,-0.000032782554626464844,0.00011220574378967285,-0.00013571977615356445,0.00019812583923339844,-0.000012874603271484375,-0.00043958425521850586,-0.00007092952728271484,-0.00018072128295898438,0.00014585256576538086,-0.00008189678192138672,-0.00021409988403320312,0.00171700119972229,-8.761882781982422e-6,0.0003184974193572998,0.0005669295787811279,-0.000014781951904296875,-0.0003084540367126465,0.00004062056541442871,-0.00004190206527709961,-0.00008487701416015625,0.0001283884048461914,-0.0002701282501220703,0.00016894936561584473,-0.000034868717193603516,0.0036369264125823975,0.00011771917343139648,-0.0002466440200805664,-0.00008732080459594727,0.00003454089164733887,0.000045418739318847656,-0.000036716461181640625,0.0002453029155731201,0.00013437867164611816,0.00023099780082702637,0.0010644197463989258,3.993511199951172e-6,-0.000036597251892089844,0.0007998347282409668,0.00007387995719909668,2.5331974029541016e-6,0.00010323524475097656,-0.0001049041748046875,0.0010041296482086182,-0.02607262134552002,-0.000019609928131103516,0.000018298625946044922,0.00021958351135253906,-0.00009161233901977539,0.00004652142524719238,-0.00030618906021118164,0.00026607513427734375,0.9759286642074585,0.0001678466796875,0.00005778670310974121,-0.00003838539123535156,0.1501309871673584,-0.00001424551010131836,-0.00018012523651123047,2.1457672119140625e-6,-0.00018012523651123047,0.0001347661018371582,0.00010010600090026855,7.867813110351562e-6,-0.000055909156799316406,0.00006034970283508301,0.00007128715515136719,0.00027117133140563965,8.374452590942383e-6,-0.00004029273986816406,-0.00011199712753295898,0.0002613663673400879,-0.000010013580322265625,0.00035321712493896484,-0.00005882978439331055,0.00034818053245544434,0.00021058320999145508,-0.00006222724914550781,0.0001042783260345459,0.0005699694156646729,0.000016510486602783203,0.0005570054054260254,0.00007387995719909668,-0.000037670135498046875,0.000026464462280273438,0.00016441941261291504,1.8775463104248047e-6,0.00006970763206481934,0.00012162327766418457,0.000011056661605834961,0.00018593668937683105,-0.00008165836334228516,-0.00003212690353393555,-0.00004887580871582031,0.0007893145084381104,-0.0001633167266845703,-0.00013697147369384766,-0.0001380443572998047,0.0005807280540466309,0.00007909536361694336,-0.000014126300811767578,0.0002624094486236572,-0.00009489059448242188,-0.00010722875595092773,0.00004369020462036133,0.00010323524475097656,-0.00002092123031616211,9.804964065551758e-6,-0.000028133392333984375,-0.000011146068572998047,0.011081278324127197,0.00010761618614196777,-0.00011301040649414062,-0.00004857778549194336,0.00010439753532409668,0.00002893805503845215,-0.0010860562324523926,-0.00003415346145629883,-0.00009453296661376953,0.000141143798828125,-0.00011914968490600586,-6.973743438720703e-6,-0.000036656856536865234,0.00009080767631530762,-0.0001361370086669922,-3.159046173095703e-6,0.00002250075340270996,0.000017255544662475586,-0.000024080276489257812,-0.0000972747802734375,0.00008705258369445801,-0.0000788569450378418,-0.00005078315734863281,0.0000743567943572998,0.00019621849060058594,-0.00006967782974243164,0.0007491409778594971,-0.00006395578384399414,-0.0000737309455871582,0.0013224780559539795,-0.0002516508102416992,-0.0000521540641784668,-0.00019508600234985352,-0.00015151500701904297,0.001351773738861084,0.00009173154830932617,-0.00008744001388549805,-0.0001621842384338379,-0.00021922588348388672,-0.00029927492141723633,-0.00005316734313964844,-3.635883331298828e-6,-0.00017023086547851562,0.00009468197822570801,0.00008127093315124512,-0.00008630752563476562,-0.00007474422454833984,-0.00034499168395996094,0.000046759843826293945,0.00012165307998657227,0.00041747093200683594,-0.0001156926155090332,9.000301361083984e-6,0.00085410475730896,-0.0003705024719238281,0.0009673833847045898,-0.00012570619583129883,0.000760197639465332,-0.00015598535537719727,0.00018960237503051758,0.00010690093040466309,0.0003711581230163574,-0.00025218725204467773,0.00003516674041748047,-0.000011324882507324219,4.0531158447265625e-6,-0.000022292137145996094,-0.00003170967102050781,-0.000051915645599365234,-0.00006693601608276367,0.00009062886238098145,0.0001035928726196289,0.00016069412231445312,0.0002837181091308594,0.00011771917343139648,-0.000019669532775878906,0.00014135241508483887,0.001089245080947876,0.00003203749656677246,-0.00008922815322875977,0.0008187592029571533,-0.000302731990814209,0.00029337406158447266,-7.152557373046875e-6,0.00008806586265563965,-0.0003051161766052246,-0.00006645917892456055,-0.00003635883331298828,-0.00014162063598632812,-0.00002372264862060547,-0.000036597251892089844,0.0007529258728027344,0.00007665157318115234,-0.000025451183319091797,-0.000040531158447265625,0.00007104873657226562,-0.00011175870895385742,-0.000030934810638427734,7.599592208862305e-6,0.000049054622650146484,-0.00004607439041137695,0.00012770295143127441,0.000044345855712890625,-0.000010609626770019531,-0.00011438131332397461,0.0004245340824127197,-0.00006753206253051758,0.00015914440155029297,0.0013771355152130127,-0.00003415346145629883,0.00005841255187988281,-0.00014597177505493164,-0.00005984306335449219,0.0005838274955749512,-0.00009143352508544922,9.000301361083984e-6,0.00005742907524108887,-0.000025331974029541016,0.0006593763828277588,-9.238719940185547e-6,0.00001868605613708496,3.725290298461914e-6,0.00015681982040405273,0.0002709031105041504,-0.00002199411392211914,0.00002586841583251953,0.00019541382789611816,0.00006467103958129883,-0.00004655122756958008,-0.0001233220100402832,0.0007963180541992188,8.374452590942383e-6,-0.0000749826431274414,0.00012382864952087402,-0.00012737512588500977,0.00013071298599243164,0.00003337860107421875,-6.67572021484375e-6,0.00010180473327636719,-0.00008857250213623047,0.00005391240119934082,-0.0001329183578491211,-0.00012195110321044922,-0.0008754730224609375,-0.00001728534698486328,-0.000043392181396484375,-0.00010722875595092773,-0.00004583597183227539,-0.00015968084335327148,-0.00048410892486572266,0.0002460479736328125,-0.00011199712753295898,-0.00003981590270996094,-0.00017434358596801758,-0.000024437904357910156,-0.0002771615982055664,-0.00015795230865478516,-0.0000985860824584961,0.00013819336891174316,0.00004661083221435547,-0.00007891654968261719,5.334615707397461e-6,0.00004073977470397949,0.0000444948673248291,3.9637088775634766e-6,-0.00009739398956298828,-0.000056624412536621094,-0.0000883936882019043,0.003315061330795288,-0.00010287761688232422,0.00015798211097717285,0.00004312396049499512,-0.0001278519630432129,0.0006258785724639893,0.0006172060966491699,0.0006260275840759277,-0.0000661611557006836,-0.0001258254051208496,0.0002942383289337158,0.00002467632293701172,-0.0000362396240234375,0.0002967715263366699,0.0005104243755340576,0.0003930330276489258,0.00009003281593322754,0.0005249977111816406,-0.000024080276489257812,-0.000039577484130859375,-0.000059485435485839844,-0.00010609626770019531,0.00006970763206481934,-0.00005549192428588867,-4.172325134277344e-7,-0.000028192996978759766,0.0006927251815795898,0.000064849853515625,0.00017240643501281738,0.0003860592842102051,0.00001099705696105957,0.0005478560924530029,-1.7881393432617188e-6,-0.00004792213439941406,0.0031849443912506104,-0.00006020069122314453,-0.000021755695343017578,0.0016826987266540527,0.00017067790031433105,0.0003650486469268799,0.0019600093364715576,-0.001213669776916504,-0.000054001808166503906,-0.00012058019638061523,1.7881393432617188e-6,0.00003865361213684082,-0.00034630298614501953,-0.00019556283950805664,-0.00009453296661376953,-0.00010150671005249023,-0.00010442733764648438,0.002476811408996582,-0.000011444091796875,-0.00016421079635620117,-0.00012880563735961914,-0.0001335740089416504,0.0002416372299194336,0.00014317035675048828,2.652406692504883e-6,-0.00006979703903198242,0.000023424625396728516,9.47713851928711e-6,-0.00004029273986816406,-0.00014132261276245117,0.00008127093315124512,0.00019726157188415527,0.00019049644470214844,0.000029772520065307617,-0.00004947185516357422,2.294778823852539e-6,0.0001945197582244873,0.00005608797073364258,-0.00007086992263793945,0.00015664100646972656,-0.00001728534698486328,-0.000020205974578857422,0.000058531761169433594,-0.00001239776611328125,0.000026166439056396484,-0.00029355287551879883,0.0001042485237121582,0.000020265579223632812,0.00023192167282104492,-0.000047087669372558594,-0.00003904104232788086,-0.00008589029312133789,0.000013738870620727539,-1.1920928955078125e-6,-0.00001537799835205078,0.000012993812561035156,0.000030606985092163086,0.000954747200012207,-0.00002568960189819336,-0.00020951032638549805,0.00015994906425476074,-0.00007778406143188477,-0.00006812810897827148,7.063150405883789e-6,2.1457672119140625e-6,-0.00005429983139038086,0.000034928321838378906,0.0004165470600128174,-0.00015497207641601562,-0.00004267692565917969,-0.00015878677368164062,0.000013947486877441406,0.0006739795207977295,0.0003508925437927246,-0.00004673004150390625,0.0004112124443054199,0.00015872716903686523,-0.0000941157341003418,0.00008428096771240234,0.00010097026824951172,0.0005241334438323975,-0.000014126300811767578,0.00022220611572265625,0.0001366734504699707,0.0002944469451904297,-0.00004589557647705078,0.00006970763206481934,-0.00006103515625,-0.000152587890625,-0.000011146068572998047,-0.0001881718635559082,0.000042110681533813477,0.00005695223808288574,0.00003364682197570801,0.0000432431697845459,-0.0007026791572570801,0.00012311339378356934,-0.00003844499588012695,0.0004939138889312744,0.00022718310356140137,-1.5497207641601562e-6,0.0006563067436218262,-0.00007462501525878906,-0.000056684017181396484,0.00039136409759521484,0.000058978796005249023,0.0002917349338531494,0.00001946091651916504,0.00001093745231628418,0.00020778179168701172,0.00025895237922668457,0.00011643767356872559,0.000163346529006958,-0.0001633763313293457,0.00005924701690673828,-9.000301361083984e-6,0.0005913972854614258,-0.00007712841033935547,0.0006880760192871094,-0.00010514259338378906,-0.00007265806198120117,-0.0001366734504699707,-4.351139068603516e-6,-0.00004655122756958008,0.00035053491592407227,0.00002849102020263672,0.00016480684280395508,0.00023156404495239258,-0.00006395578384399414,-6.973743438720703e-6,0.00018343329429626465,-0.0001551508903503418,0.00020942091941833496,-0.00002276897430419922,-0.00002300739288330078,0.00024211406707763672,0.00007909536361694336,0.00007602572441101074,-0.00004947185516357422,-0.00010538101196289062,-0.000049114227294921875,-0.00025194883346557617,-9.298324584960938e-6,0.000029087066650390625,0.0001468658447265625,0.00008505582809448242,-0.0001957416534423828,-0.0000864267349243164,-0.00007539987564086914,-0.0003122091293334961,0.00018867850303649902,0.00016611814498901367,0.00003993511199951172,0.00007963180541992188,-0.000095367431640625,0.00007385015487670898,-7.152557373046875e-6,-0.000031828880310058594,0.000011056661605834961,0.00006145238876342773,0.000027924776077270508,0.00003218650817871094,-0.000020444393157958984,0.000010281801223754883,0.00013840198516845703,0.00013649463653564453,0.00010675191879272461,-0.00002586841583251953,0.00009930133819580078,0.00047284364700317383,-4.172325134277344e-6,-0.000024080276489257812,-0.00030034780502319336,0.00020995736122131348,0.00015553832054138184,0.0005878210067749023,-0.00019359588623046875,-0.00014448165893554688,-9.298324584960938e-6,-0.00004845857620239258,0.00018483400344848633,0.000025719404220581055,-0.0009467601776123047,-0.0001487135887145996,-0.000038564205169677734,0.0000578463077545166,0.00016960501670837402,0.000764697790145874,-0.00006091594696044922,0.0008490979671478271,0.00026607513427734375,0.00004622340202331543,-5.245208740234375e-6,-0.00009161233901977539,-0.0000922083854675293,0.000026464462280273438,-0.00006783008575439453,0.00045120716094970703,-0.00012105703353881836,-0.000056743621826171875,-0.000019550323486328125,0.00001385807991027832,0.00006276369094848633,0.000033855438232421875,0.00012692809104919434,-2.682209014892578e-6,-0.0017408132553100586,-0.00017219781875610352,-0.00020843744277954102,7.867813110351562e-6,-0.000052928924560546875,0.00013169646263122559,-0.00021910667419433594,-0.0001297593116760254,0.00011372566223144531,0.0000254213809967041,0.0004188418388366699,-0.00006753206253051758,-0.000038564205169677734,0.0003267228603363037,0.000027239322662353516,-0.0002333521842956543,0.0003903210163116455,-0.00010091066360473633,-8.165836334228516e-6,0.0003724992275238037,0.00019043684005737305,-0.00009942054748535156,0.0000489354133605957,0.0002484321594238281,-0.00010961294174194336,0.00008615851402282715,0.000418931245803833,0.0005750060081481934,0.00014188885688781738,-0.00006395578384399414,-0.0010715126991271973,0.000030249357223510742,-0.000038564205169677734,-0.00011688470840454102,0.0006131529808044434,0.00012955069541931152,0.000339508056640625,0.00006148219108581543,0.000047773122787475586,-0.00004404783248901367,0.0000890493392944336,-0.00016045570373535156,0.000012487173080444336,0.0011903643608093262,-0.0003783702850341797,0.0000775754451751709,-0.000026226043701171875,-0.00008785724639892578,-0.000047087669372558594,0.0008422434329986572,-0.00007736682891845703,-0.00006848573684692383,0.00009179115295410156,0.00010085105895996094,0.00008597970008850098,0.000010371208190917969,0.00011652708053588867,-0.0001112222671508789,-1.1920928955078125e-6,-0.00017017126083374023,-0.00020551681518554688,0.0007346570491790771,0.00004076957702636719,-0.00026047229766845703,-0.000025212764739990234,0.00014421343803405762,0.00004780292510986328,0.000058531761169433594,-0.000041425228118896484,-0.00005692243576049805,0.0004298985004425049,-6.198883056640625e-6,-0.00007581710815429688,-0.0001499652862548828,0.0002675354480743408,0.00011977553367614746,-0.00010728836059570312,0.00017654895782470703,0.0004202425479888916,7.18235969543457e-6,-0.0007015466690063477,0.00023221969604492188,-0.00011599063873291016,0.0005787014961242676,0.000038564205169677734,0.0013332366943359375,-0.004218101501464844,-0.000020205974578857422,-4.172325134277344e-7,0.00010704994201660156,0.0016810297966003418,-0.00013256072998046875,0.0001659989356994629,-0.00014466047286987305,0.00007575750350952148,-0.00006264448165893555,-0.00001811981201171875,0.00021409988403320312,-0.00001150369644165039,-0.00006753206253051758,-0.000038683414459228516,-9.59634780883789e-6,-0.00025784969329833984,0.0006210207939147949,-0.00017577409744262695,0.00010445713996887207,-0.000010728836059570312,0.00013047456741333008,0.000013828277587890625,-0.000041544437408447266,0.0007458925247192383,-0.0000858306884765625,-0.000037729740142822266,-0.000018656253814697266,0.0002232193946838379,0.00007909536361694336,-4.351139068603516e-6,-0.00012737512588500977,0.00021025538444519043,0.0001736283302307129,0.0003789961338043213,-4.351139068603516e-6,0.00015872716903686523,-0.0005110502243041992,0.00003865361213684082,-0.0001786947250366211,0.0001609325408935547,0.00024062395095825195,0.000043720006942749023,-0.0000349879264831543,0.000023156404495239258,-0.00011533498764038086,-0.000030994415283203125,0.0000368654727935791,0.000024259090423583984,-3.4570693969726562e-6,0.0002097487449645996,-0.00016707181930541992,-0.000050067901611328125,-0.00008952617645263672,-0.00010228157043457031,1.0005313158035278,-0.000054717063903808594,-0.00016546249389648438,-0.00009500980377197266,0.0001690685749053955,-0.00002199411392211914,0.00006073713302612305,0.00019568204879760742,-0.000016987323760986328,-0.0010405778884887695,0.00020575523376464844,0.000033020973205566406,-0.00007766485214233398,-0.00010836124420166016,0.00009387731552124023,0.000021636486053466797,-0.00002372264862060547,0.00006508827209472656,-0.00004225969314575195,0.00033912062644958496,-0.00004857778549194336,-0.00014191865921020508,-0.0000438690185546875,-0.0001957416534423828,-0.00045299530029296875,-0.0004190206527709961,-0.00016444921493530273,-0.00011032819747924805,-0.000043511390686035156,-0.00003999471664428711,0.00002518296241760254,-0.000018298625946044922,0.00048103928565979004,-0.0000903010368347168,-0.000016808509826660156,-0.00013184547424316406,0.0003961622714996338,0.0000934302806854248,-0.00014221668243408203,-0.000047266483306884766,0.0003228485584259033,-0.00004583597183227539,0.00020706653594970703,-0.00004851818084716797,-0.000032901763916015625,0.00004941225051879883,-0.0002129673957824707,0.00007614493370056152,0.00008949637413024902,0.00005409121513366699,0.000012993812561035156,0.0005127489566802979,-9.715557098388672e-6,0.00006970763206481934,0.0001710653305053711,0.00005334615707397461,-0.00026023387908935547,-0.000010609626770019531,0.006366103887557983,0.000048220157623291016,-0.00006979703903198242,0.0000693202018737793,0.0006429851055145264,-5.900859832763672e-6,0.000010371208190917969,-0.00034821033477783203,0.000018537044525146484,-0.00017952919006347656,-0.0001266002655029297,0.0000254213809967041,0.00009113550186157227,0.000034481287002563477,0.0001353621482849121,0.00001430511474609375,-0.00022977590560913086,-0.00010877847671508789,0.0005900561809539795,0.000016689300537109375],"dim":[10254,1],"v":1}}],"pipeline_name":"edge-pipeline","shadow_data":{},"time":1694197368155}]
!curl -X POST testboy.local:8080/pipelines/edge-pipeline -H "Content-Type: application/json; format=pandas-records" --data-binary @./data/cc_data_10k.df.json
[{"check_failures":[],"elapsed":[82181917,4328729],"model_name":"ccfraud","model_version":"4b28d9f8-31ad-4f4b-a262-a2196530c3d0","original_data":null,"outputs":[{"Float":{"data":[1.0094895362854004,1.0094895362854004,1.0094895362854004,1.0094895362854004,-1.8477439880371094e-6,-0.00004494190216064453,-0.00009369850158691406,-0.0000832676887512207,-0.00008344650268554688,0.0004897117614746094,0.0006609857082366943,0.00007578730583190918,-0.00010061264038085938,-0.000519871711730957,-3.7550926208496094e-6,-0.00010895729064941406,-0.00017696619033813477,-0.000028371810913085938,0.00002181529998779297,-0.00008505582809448242,-0.000049233436584472656,0.00020524859428405762,0.00001677870750427246,-0.00008910894393920898,0.00008806586265563965,0.0002167224884033203,-0.00003045797348022461,-0.0001615285873413086,-0.00007712841033935547,-8.046627044677734e-6,-0.000048100948333740234,-0.00013583898544311523,-0.000014126300811767578,-0.00015842914581298828,-0.00004863739013671875,0.0000731050968170166,-7.212162017822266e-6,0.0005553662776947021,7.420778274536133e-6,9.000301361083984e-6,0.00011602044105529785,0.00005555152893066406,-0.00020551681518554688,0.0006919503211975098,-0.00003838539123535156,-0.00010466575622558594,0.000025719404220581055,0.00022289156913757324,-0.00014388561248779297,0.00006046891212463379,0.0006777942180633545,-0.0006906390190124512,-0.000011146068572998047,-0.0000692605972290039,-4.172325134277344e-6,0.00008225440979003906,0.0013971328735351562,-0.00010895729064941406,-0.00002586841583251953,-0.00024509429931640625,0.0001341700553894043,0.0000641942024230957,-0.00023108720779418945,0.00012108683586120605,-0.000026285648345947266,-0.00005835294723510742,-0.000056803226470947266,0.0002706944942474365,-9.298324584960938e-6,0.0013747215270996094,0.00010889768600463867,0.0001391768455505371,0.00033020973205566406,-2.9206275939941406e-6,0.00009962916374206543,-0.000033855438232421875,-0.00003886222839355469,0.00020307302474975586,0.00041168928146362305,0.00003641843795776367,0.0007800459861755371,-0.00003427267074584961,-0.0003724098205566406,6.556510925292969e-7,-0.000026047229766845703,-0.00004279613494873047,-0.00003844499588012695,0.0000171661376953125,0.000019282102584838867,0.00004598498344421387,-0.00011116266250610352,0.0008075833320617676,0.0003064572811126709,-0.000026226043701171875,0.00022932887077331543,-0.00015473365783691406,0.000012218952178955078,0.0007858872413635254,0.0010485351085662842,-0.000953972339630127,0.00006034970283508301,-0.00013965368270874023,0.00014868378639221191,-0.0000960230827331543,0.00022268295288085938,-0.00002372264862060547,0.00015243887901306152,0.000058531761169433594,-0.00020366907119750977,-0.00003266334533691406,0.000046372413635253906,0.0003497898578643799,-0.00004309415817260742,-0.00007253885269165039,0.00013744831085205078,-0.00005334615707397461,0.00008705258369445801,0.00015547871589660645,0.00010827183723449707,0.00015839934349060059,-0.000951230525970459,0.0005430281162261963,0.0006096959114074707,0.00005373358726501465,0.00014838576316833496,-5.543231964111328e-6,-0.000038564205169677734,0.0002301037311553955,0.0002828240394592285,0.0000254213809967041,0.00009182095527648926,0.00012382864952087402,0.000030219554901123047,-0.0001442432403564453,-0.0010399818420410156,0.000041604042053222656,0.00030282139778137207,0.0004699230194091797,0.00001004338264465332,-8.761882781982422e-6,0.0006243288516998291,-0.00013703107833862305,0.0004756748676300049,0.00006377696990966797,0.00004094839096069336,-0.00004678964614868164,-0.000261843204498291,0.000060230493545532227,-0.00003314018249511719,-0.00006818771362304688,-0.000022351741790771484,0.0002624392509460449,0.00011542439460754395,-0.0001252889633178711,0.00009205937385559082,0.000047087669372558594,-0.00013875961303710938,0.00016242265701293945,0.00018420815467834473,0.0000667572021484375,-0.00004190206527709961,1.0031051635742188,8.374452590942383e-6,-0.000011146068572998047,-0.00010162591934204102,-0.000054776668548583984,-0.00003916025161743164,0.00008448958396911621,0.0006806254386901855,0.00007832050323486328,-0.00006818771362304688,7.957220077514648e-6,0.000030159950256347656,1.4007091522216797e-6,0.000012487173080444336,0.00011420249938964844,0.000038564205169677734,-0.00006175041198730469,0.00010338425636291504,0.0006650686264038086,6.705522537231445e-6,0.0000705718994140625,-0.00001341104507446289,-0.00016045570373535156,-0.00001436471939086914,8.821487426757812e-6,-0.00004565715789794922,0.00005206465721130371,0.0000788569450378418,-0.00005453824996948242,-0.00010496377944946289,-0.000057578086853027344,0.000014543533325195312,0.00007987022399902344,0.00005200505256652832,-0.00004106760025024414,0.00017750263214111328,0.00004857778549194336,0.00022241473197937012,5.8710575103759766e-6,0.00012260675430297852,-0.00009238719940185547,-0.00009495019912719727,-0.00006073713302612305,-0.0000603795051574707,-0.00002372264862060547,0.0003605782985687256,0.00006362795829772949,0.0001945197582244873,-0.00007486343383789062,0.0003400444984436035,0.0001691877841949463,-0.00011646747589111328,-0.00003045797348022461,1.4007091522216797e-6,0.00003993511199951172,-0.00004845857620239258,0.00029987096786499023,-0.00008589029312133789,0.00002962350845336914,-8.165836334228516e-6,-0.00006395578384399414,0.000011980533599853516,-0.000048041343688964844,0.000013172626495361328,0.00007236003875732422,-0.00003057718276977539,0.0001099705696105957,0.00006970763206481934,0.0026289522647857666,0.00034049153327941895,0.00022974610328674316,-0.00011205673217773438,0.00008842349052429199,0.0001296699047088623,-0.00002199411392211914,-0.00011396408081054688,1.6391277313232422e-6,-0.00009763240814208984,7.0035457611083984e-6,-0.00025451183319091797,0.00005170702934265137,-0.0003129243850708008,0.0002517402172088623,-0.00006282329559326172,-0.00003266334533691406,0.000010371208190917969,-0.00007551908493041992,0.000017523765563964844,0.0002104043960571289,0.00024232268333435059,0.00011464953422546387,0.000016510486602783203,-0.00013703107833862305,0.0002478361129760742,0.00009262561798095703,-0.00012320280075073242,0.00013723969459533691,-0.0001881122589111328,-0.00006717443466186523,-0.000027894973754882812,0.0001271665096282959,0.00034058094024658203,-0.000050067901611328125,-0.00013691186904907227,-0.00003516674041748047,-0.0000673532485961914,-0.000025987625122070312,-0.0007557272911071777,0.00003692507743835449,0.000291287899017334,0.000023066997528076172,0.00007557868957519531,-0.00021779537200927734,0.0001627206802368164,0.00006014108657836914,0.0001519322395324707,8.255243301391602e-6,0.000011712312698364258,0.00004503130912780762,-0.00007915496826171875,0.00009515881538391113,-0.00006175041198730469,0.00008749961853027344,-0.000049233436584472656,0.000013053417205810547,-0.00006175041198730469,-0.00009000301361083984,0.000032454729080200195,0.000038743019104003906,0.00017514824867248535,0.000022619962692260742,0.00015926361083984375,-0.00010162591934204102,0.00005957484245300293,0.00046065449714660645,-4.172325134277344e-6,0.00011304020881652832,-0.00002872943878173828,-0.0000616908073425293,-2.9206275939941406e-6,0.00009137392044067383,-0.0000407099723815918,0.00010654330253601074,0.00010898709297180176,0.00014150142669677734,-0.00004857778549194336,0.00007382035255432129,-7.092952728271484e-6,-0.000019490718841552734,0.0000254213809967041,0.00002682209014892578,0.0014048218727111816,0.00003522634506225586,0.001670747995376587,-0.00003314018249511719,-0.000051140785217285156,0.00006148219108581543,-0.0001386404037475586,0.00016745924949645996,-0.00005173683166503906,-0.00012826919555664062,-0.00011724233627319336,-0.000025033950805664062,-0.00008755922317504883,-0.00004583597183227539,-0.00014722347259521484,-0.00033473968505859375,-0.00005125999450683594,-0.0013584494590759277,0.00020137429237365723,-0.00010502338409423828,-0.0004221796989440918,-0.00008535385131835938,0.00017812848091125488,0.000019818544387817383,0.00001385807991027832,-0.00004857778549194336,-0.00006175041198730469,-0.00001996755599975586,0.0003409385681152344,-0.00009971857070922852,0.000023305416107177734,-0.00009584426879882812,0.0004963576793670654,-0.00014019012451171875,0.00020310282707214355,-0.000027120113372802734,-1.1920928955078125e-6,0.00012561678886413574,-0.00004220008850097656,0.00016936659812927246,-0.000019848346710205078,-0.00004404783248901367,-0.0001474618911743164,0.00023934245109558105,-0.00006943941116333008,0.000010371208190917969,-1.7881393432617188e-7,-0.0016776323318481445,-0.000028133392333984375,-9.298324584960938e-6,0.00020357966423034668,0.00007766485214233398,-0.00005346536636352539,0.00007814168930053711,-0.00009500980377197266,-0.00001996755599975586,-0.00004202127456665039,0.0030659139156341553,0.00007766485214233398,0.000040590763092041016,0.00007304549217224121,0.00021648406982421875,-8.344650268554688e-7,0.00035637617111206055,0.0003491342067718506,-0.00001150369644165039,-0.000049233436584472656,-0.00007539987564086914,-5.364418029785156e-7,-0.00007033348083496094,0.001573026180267334,0.000011712312698364258,-0.00008821487426757812,-0.00008380413055419922,0.000051409006118774414,0.000037342309951782227,-0.00006765127182006836,0.0005421638488769531,-0.00006622076034545898,0.000021398067474365234,-0.00003415346145629883,-0.00016832351684570312,-0.000049054622650146484,-9.298324584960938e-6,-0.00004029273986816406,-0.00024503469467163086,-0.00015115737915039062,0.00006666779518127441,0.00016412138938903809,0.000011980533599853516,-9.000301361083984e-6,-0.000019788742065429688,0.000352710485458374,-0.000037670135498046875,0.0000426173210144043,0.0003161132335662842,0.0002676844596862793,0.0002047419548034668,-0.000017583370208740234,-0.000268399715423584,9.000301361083984e-6,-0.00011771917343139648,-0.00002872943878173828,0.00005939602851867676,0.0005748867988586426,0.0002168118953704834,0.00011768937110900879,-0.00001823902130126953,-0.00009167194366455078,0.00010922551155090332,-0.00003254413604736328,0.00010541081428527832,0.0013660788536071777,-0.0002314448356628418,-5.424022674560547e-6,0.00002041459083557129,0.00013369321823120117,-0.000019073486328125,0.0004660487174987793,-0.000048279762268066406,-5.900859832763672e-6,0.002194702625274658,-0.00008296966552734375,0.00016680359840393066,-0.000052928924560546875,-2.9206275939941406e-6,-0.00010597705841064453,0.00006327033042907715,0.000562518835067749,-0.0007330179214477539,-0.000021457672119140625,-0.00008469820022583008,0.000058084726333618164,0.00005015730857849121,0.00018325448036193848,-0.000030279159545898438,-0.00006848573684692383,-0.00001341104507446289,-0.00003254413604736328,0.0006752610206604004,-0.0003809928894042969,0.0001696944236755371,-6.4373016357421875e-6,0.00015291571617126465,-0.00004929304122924805,-0.000013887882232666016,0.0006453394889831543,-0.00008928775787353516,0.00009682774543762207,-0.00008690357208251953,7.748603820800781e-6,-0.0000540614128112793,0.0001620650291442871,0.00020524859428405762,0.00006130337715148926,-0.000011026859283447266,-0.00006645917892456055,0.00038427114486694336,-0.000010609626770019531,-0.00019943714141845703,0.00016736984252929688,-0.00006848573684692383,-0.0010878443717956543,-0.000021457672119140625,0.0006114840507507324,0.0007844865322113037,0.00006723403930664062,-0.000011205673217773438,0.000056415796279907227,0.000023305416107177734,-0.00003266334533691406,-0.00007069110870361328,-0.000011682510375976562,0.000032275915145874023,-0.0000623464584350586,0.00015985965728759766,-0.00010776519775390625,-0.00004285573959350586,0.0002612173557281494,0.000039130449295043945,0.000017911195755004883,-3.933906555175781e-6,-0.00007611513137817383,0.00012165307998657227,-0.00003266334533691406,-0.00007635354995727539,0.001859515905380249,-0.00006598234176635742,-0.0002478361129760742,0.0005283355712890625,-0.00015586614608764648,-0.00007998943328857422,-0.0000374913215637207,0.00015607476234436035,0.00005653500556945801,-0.0001461505889892578,-0.0001703500747680664,-0.00011497735977172852,0.00015872716903686523,0.00003629922866821289,0.0005819499492645264,0.0002072751522064209,-0.00010275840759277344,0.0006814897060394287,0.000024944543838500977,-0.00006175041198730469,-0.00010985136032104492,-0.00032955408096313477,-0.00007462501525878906,-2.980232238769531e-7,0.00002390146255493164,-0.00041353702545166016,0.00014549493789672852,-0.0004501938819885254,-0.00006175041198730469,0.00004735589027404785,0.00018990039825439453,2.5331974029541016e-6,0.000028908252716064453,-0.0004271268844604492,-0.0007519125938415527,-0.0019210577011108398,-0.00004029273986816406,-0.00004220008850097656,0.000060886144638061523,0.000553429126739502,-0.00003975629806518555,0.00006702542304992676,0.0007629990577697754,-0.00008744001388549805,-0.000056684017181396484,0.0006085634231567383,-0.00003838539123535156,-0.000047087669372558594,0.00039055943489074707,0.0005201399326324463,4.202127456665039e-6,-0.00007230043411254883,0.0000667572021484375,-0.000045299530029296875,0.00008890032768249512,-0.00012606382369995117,0.0001658797264099121,-0.00003999471664428711,-0.00005936622619628906,-0.0002568960189819336,0.00007066130638122559,-0.00006455183029174805,-0.00031310319900512695,-0.000053763389587402344,-0.000041484832763671875,0.00022780895233154297,-0.00007712841033935547,0.00035378336906433105,0.0008490979671478271,-0.00001150369644165039,8.64267349243164e-6,-0.0001227855682373047,0.001187354326248169,0.00001341104507446289,7.152557373046875e-6,0.000040590763092041016,0.000037044286727905273,0.0020221471786499023,-0.00005513429641723633,-0.0001303553581237793,-0.00005453824996948242,-0.000057756900787353516,-8.761882781982422e-6,-0.00004869699478149414,-0.00009393692016601562,-0.0000922083854675293,0.00021260976791381836,-0.0002377629280090332,-0.00012499094009399414,0.00007683038711547852,0.00019982457160949707,-0.000031113624572753906,0.00007963180541992188,-0.00003254413604736328,0.000024139881134033203,0.00015729665756225586,0.001053154468536377,-0.0001131892204284668,0.00010439753532409668,0.0004248321056365967,-0.0000712275505065918,0.00003272294998168945,0.002625793218612671,0.00015535950660705566,0.000023305416107177734,-0.00006729364395141602,-0.00006306171417236328,-0.00016045570373535156,7.957220077514648e-6,-0.000017583370208740234,0.00002905726432800293,0.00007387995719909668,0.000056415796279907227,-0.00016051530838012695,0.0006984174251556396,0.0016936957836151123,-0.00003266334533691406,-0.00005233287811279297,-0.00001609325408935547,-0.0002071857452392578,-0.0002918839454650879,-0.000048279762268066406,-0.000021696090698242188,-0.00003999471664428711,-5.900859832763672e-6,0.00012260675430297852,0.00006961822509765625,-1.8477439880371094e-6,0.008613228797912598,0.0001391768455505371,-0.000044465065002441406,0.00011470913887023926,0.0001399517059326172,0.00003293156623840332,-0.00003415346145629883,-0.00022113323211669922,0.0002512037754058838,-0.00013506412506103516,-0.0010699033737182617,-0.0001405477523803711,0.000040590763092041016,-5.602836608886719e-6,0.0005582273006439209,0.00010216236114501953,-0.0002544522285461426,-0.00005161762237548828,-0.00002092123031616211,0.00002625584602355957,0.00004920363426208496,-0.00022113323211669922,-0.00003147125244140625,-0.000047087669372558594,0.0012041926383972168,2.2649765014648438e-6,0.000011056661605834961,0.00008317828178405762,0.0002574622631072998,-0.000056743621826171875,-0.00005841255187988281,0.00032591819763183594,-0.00013452768325805664,-0.000017583370208740234,-0.00011199712753295898,0.000055283308029174805,0.00007304549217224121,0.00005412101745605469,0.00010669231414794922,0.000015676021575927734,-1.8477439880371094e-6,-0.00014919042587280273,0.00005990266799926758,7.450580596923828e-7,0.00020956993103027344,-0.00013208389282226562,0.00017517805099487305,0.0000667572021484375,0.000014871358871459961,-0.000052034854888916016,0.000058531761169433594,-0.000039577484130859375,0.00005969405174255371,0.000035136938095092773,-0.00007867813110351562,0.00006723403930664062,-0.00006264448165893555,-0.00003260374069213867,-0.00004947185516357422,-0.000027954578399658203,0.00025528669357299805,-0.00003266334533691406,0.00017511844635009766,-0.000018656253814697266,0.00038802623748779297,8.374452590942383e-6,0.00008296966552734375,-0.00006264448165893555,0.0012904107570648193,0.00015109777450561523,0.0011358857154846191,-0.00008356571197509766,-0.00017273426055908203,-0.00008046627044677734,-0.00008004903793334961,0.0001869797706604004,0.00008097290992736816,-0.000054836273193359375,0.00011780858039855957,-0.00011783838272094727,-8.52346420288086e-6,-0.000012159347534179688,4.559755325317383e-6,-0.000052869319915771484,-0.00032824277877807617,0.00022241473197937012,0.00011655688285827637,0.00021776556968688965,0.00009191036224365234,0.00001677870750427246,0.00020399689674377441,-0.00002765655517578125,0.00003337860107421875,0.0008656978607177734,0.00002753734588623047,-0.000021219253540039062,-0.000021159648895263672,0.00013762712478637695,0.00005939602851867676,-0.00024515390396118164,0.00006103515625,0.000015109777450561523,0.00004920363426208496,-0.00008690357208251953,0.0004245340824127197,-0.00003463029861450195,-4.649162292480469e-6,-0.0003299117088317871,-0.00007665157318115234,-0.00011205673217773438,-0.000059723854064941406,-0.0001443028450012207,0.0013949573040008545,7.62939453125e-6,0.0007587075233459473,0.000040590763092041016,0.00013449788093566895,0.0005497932434082031,-0.00003904104232788086,0.000059217214584350586,-0.0000578761100769043,-0.00016045570373535156,-0.00003451108932495117,0.00005283951759338379,-0.00013113021850585938,0.00005415081977844238,-0.000855565071105957,0.000051409006118774414,-0.00004279613494873047,0.000138014554977417,-0.000050067901611328125,-0.00006276369094848633,-0.0003508329391479492,0.00016322731971740723,-9.715557098388672e-6,0.00006318092346191406,-0.000015974044799804688,-0.000057756900787353516,0.0001418590545654297,-3.6954879760742188e-6,0.0001640617847442627,0.0005311965942382812,-0.0006833672523498535,7.778406143188477e-6,-0.0001595616340637207,0.0004950761795043945,0.00011652708053588867,-0.00012344121932983398,7.420778274536133e-6,0.0005854666233062744,0.000058323144912719727,0.0004997849464416504,0.00010451674461364746,-0.0000445246696472168,-0.00005638599395751953,-0.0000807642936706543,0.00039327144622802734,-0.00002372264862060547,-0.00008660554885864258,-7.748603820800781e-7,0.00026237964630126953,-0.00011301040649414062,0.00016757845878601074,-0.00010389089584350586,0.00034815073013305664,-0.000040590763092041016,0.00032773613929748535,0.000030249357223510742,-0.00039887428283691406,-0.00003319978713989258,-0.00010836124420166016,0.0000152587890625,-0.00001245737075805664,-0.000012814998626708984,0.00008043646812438965,-0.00006759166717529297,0.004439592361450195,-0.00006645917892456055,0.0006435513496398926,-0.00003653764724731445,-0.0002791285514831543,-0.00016379356384277344,0.000012874603271484375,0.0005150735378265381,-0.00006687641143798828,0.00005841255187988281,0.00005939602851867676,-0.000022709369659423828,0.00006777048110961914,0.0012004077434539795,0.00008353590965270996,-0.00009953975677490234,-0.00007104873657226562,0.0002047717571258545,0.000015944242477416992,0.00017377734184265137,-0.00009417533874511719,0.00018593668937683105,0.000523298978805542,-0.0006039142608642578,0.00020459294319152832,0.0019805729389190674,0.0000222623348236084,0.00005188584327697754,-0.00030815601348876953,0.000050067901611328125,0.000056415796279907227,0.00018021464347839355,0.000042110681533813477,0.00010761618614196777,7.778406143188477e-6,0.000010877847671508789,0.000011056661605834961,0.000010371208190917969,-5.4836273193359375e-6,0.000012248754501342773,0.00014084577560424805,0.000020951032638549805,0.00031754374504089355,0.0004915893077850342,-0.00018334388732910156,0.000017583370208740234,-0.00047284364700317383,0.00005391240119934082,0.00005137920379638672,0.000029385089874267578,0.000026464462280273438,0.00008949637413024902,0.00022846460342407227,0.0002377331256866455,9.000301361083984e-6,0.00024303793907165527,-0.0001838207244873047,0.0002231597900390625,-8.881092071533203e-6,9.59634780883789e-6,-0.0001849532127380371,-0.0003368854522705078,0.00008615851402282715,0.00004723668098449707,0.0006887316703796387,-0.00006175041198730469,7.12275505065918e-6,0.00015872716903686523,0.000011056661605834961,0.00006052851676940918,0.0005851984024047852,0.00016483664512634277,0.0009807050228118896,0.00011464953422546387,0.00007292628288269043,-0.00011301040649414062,-0.00006622076034545898,0.00011947751045227051,0.00007915496826171875,-0.000058591365814208984,0.00007042288780212402,-0.000049233436584472656,-0.000026226043701171875,0.000024259090423583984,0.0003885626792907715,0.00011587142944335938,0.00012484192848205566,0.00009378790855407715,-0.00008535385131835938,0.000039517879486083984,0.001344531774520874,-0.00008475780487060547,0.00007766485214233398,0.001497119665145874,-0.0002904534339904785,0.0001322329044342041,0.0004950761795043945,-0.00003403425216674805,-0.0000553131103515625,-0.00015795230865478516,0.0005057156085968018,-0.00040262937545776367,0.0008079111576080322,0.0001640021800994873,-0.00012570619583129883,0.00005409121513366699,-0.00014066696166992188,-0.00006854534149169922,-0.00002104043960571289,0.00006321072578430176,-0.000432431697845459,0.000056415796279907227,0.00020197033882141113,0.00005334615707397461,-0.0020911097526550293,0.000041425228118896484,0.00004228949546813965,3.8743019104003906e-7,0.0009822249412536621,-0.0005515813827514648,0.0005631446838378906,-0.00010466575622558594,-0.00007265806198120117,-0.00005745887756347656,0.00025767087936401367,0.000044733285903930664,0.00003701448440551758,0.000035643577575683594,0.00011068582534790039,-0.00001239776611328125,0.00023868680000305176,-0.00008052587509155273,0.00021761655807495117,-0.00013256072998046875,0.00004029273986816406,-0.00008046627044677734,0.000011593103408813477,-0.000050127506256103516,-0.00005918741226196289,0.9965696334838867,-0.0008934736251831055,1.1026859283447266e-6,0.0003985166549682617,0.000039130449295043945,0.0010131001472473145,0.0005317330360412598,0.00009769201278686523,-0.00022274255752563477,-0.00003910064697265625,-0.00134962797164917,0.0003387928009033203,0.0001786649227142334,0.00005182623863220215,0.00018659234046936035,-0.00004595518112182617,-0.00006395578384399414,0.0004660487174987793,-0.000030875205993652344,0.0004372894763946533,0.0001856684684753418,-0.000020742416381835938,0.0000648796558380127,-0.000017344951629638672,-0.0008408427238464355,-0.00008678436279296875,0.00031766295433044434,-0.00012040138244628906,0.0004812479019165039,0.00007590651512145996,0.0000616610050201416,-0.0011248588562011719,-0.0001601576805114746,-0.00020951032638549805,0.00026991963386535645,0.00071677565574646,0.00007534027099609375,0.00004082918167114258,0.0001093745231628418,0.00005581974983215332,0.00005221366882324219,0.00020304322242736816,-0.000045299530029296875,-0.0001806020736694336,-0.000043392181396484375,0.00014150142669677734,-0.0000985860824584961,0.0005464255809783936,-2.980232238769531e-7,0.00006115436553955078,0.00010135769844055176,0.0002200603485107422,-4.470348358154297e-6,0.00002962350845336914,-0.00005924701690673828,-0.00014603137969970703,-0.00018286705017089844,-0.00006002187728881836,-0.00003254413604736328,0.00022280216217041016,-7.450580596923828e-6,-0.00003910064697265625,-0.00002467632293701172,0.0000826418399810791,0.00003764033317565918,-0.00025969743728637695,0.00010520219802856445,-0.000037670135498046875,-0.00009328126907348633,-0.00005120038986206055,-0.00017708539962768555,-0.000033736228942871094,-0.00014472007751464844,0.00023701786994934082,-0.00009149312973022461,0.000011056661605834961,-0.00046384334564208984,-0.00008732080459594727,0.00008612871170043945,0.0000991523265838623,0.00006970763206481934,0.00001767277717590332,-0.00005990266799926758,-0.00013267993927001953,-0.00009244680404663086,-8.881092071533203e-6,0.00005564093589782715,0.0001270771026611328,-0.000025391578674316406,-0.000013470649719238281,-0.00007164478302001953,0.00007304549217224121,0.0016810297966003418,0.000013053417205810547,-0.0001380443572998047,-0.0000985264778137207,1.2814998626708984e-6,0.0001932382583618164,0.00007447600364685059,0.00010457634925842285,0.00022715330123901367,-0.00007086992263793945,0.00008016824722290039,0.00007963180541992188,0.0008942782878875732,0.00005227327346801758,-0.0000584721565246582,-0.00028645992279052734,0.00008612871170043945,-0.00025194883346557617,0.05461674928665161,-0.00025266408920288086,-0.000024378299713134766,-7.510185241699219e-6,-0.00009459257125854492,-0.000060558319091796875,0.0007780492305755615,-6.377696990966797e-6,0.000046581029891967773,-0.00010734796524047852,0.0003878474235534668,0.000015109777450561523,-0.00006884336471557617,4.559755325317383e-6,-0.00010710954666137695,0.00014281272888183594,-0.00002866983413696289,0.000023424625396728516,0.000027447938919067383,0.0000470578670501709,-0.0000788569450378418,9.804964065551758e-6,0.00013846158981323242,-6.67572021484375e-6,0.00003123283386230469,0.0000921785831451416,0.0017957985401153564,-3.4570693969726562e-6,0.0001793503761291504,-0.0001347661018371582,-0.00006681680679321289,0.00018611550331115723,-0.0003120303153991699,0.00001385807991027832,-0.00009882450103759766,0.00001430511474609375,-0.00009208917617797852,0.00044852495193481445,0.00010320544242858887,0.00008630752563476562,-0.000025987625122070312,0.0000432133674621582,0.00002893805503845215,0.000034689903259277344,0.00007456541061401367,-0.0000623464584350586,-0.000054836273193359375,0.000035762786865234375,-0.00030434131622314453,-0.00012695789337158203,0.0007923245429992676,0.000057131052017211914,-0.0000883936882019043,-0.0007992386817932129,0.0002683103084564209,-0.000022470951080322266,-0.00013816356658935547,0.000043392181396484375,0.00003573298454284668,-0.000022709369659423828,-0.00010758638381958008,0.00010839104652404785,-0.0006168484687805176,0.00002378225326538086,0.0010581612586975098,-0.00011301040649414062,0.000038743019104003906,0.00009745359420776367,-0.00005918741226196289,0.00003796815872192383,0.00005251169204711914,0.00003549456596374512,0.00013241171836853027,0.000029832124710083008,0.0005008280277252197,0.00013044476509094238,-0.00005823373794555664,0.00003713369369506836,-0.00020927190780639648,-0.000043511390686035156,-0.00010758638381958008,0.000254213809967041,-0.00010579824447631836,0.0005966722965240479,-0.000020325183868408203,0.00003841519355773926,0.00031119585037231445,-0.0000438690185546875,0.000035136938095092773,-0.0001201629638671875,-0.00035393238067626953,0.00008487701416015625,0.00010117888450622559,-0.00012099742889404297,-0.000011086463928222656,0.0002905428409576416,5.990266799926758e-6,0.00007233023643493652,0.0000254213809967041,0.00016224384307861328,9.000301361083984e-6,-0.00007069110870361328,8.07642936706543e-6,2.5331974029541016e-6,0.0002567172050476074,0.00037658214569091797,0.0007415115833282471,-0.00009274482727050781,-0.00004857778549194336,0.00006911158561706543,1.6391277313232422e-6,-0.00006753206253051758,-0.0001570582389831543,6.258487701416016e-7,0.00044411420822143555,0.00022205710411071777,0.00008234381675720215,-0.00008207559585571289,-0.00003993511199951172,-0.00015431642532348633,-0.00007092952728271484,-0.00003802776336669922,-0.00001043081283569336,0.00007665157318115234,-0.00008052587509155273,0.0012735426425933838,-0.00010704994201660156,-0.00006395578384399414,0.00014200806617736816,0.00019243359565734863,0.0003650188446044922,-0.00015676021575927734,-0.0001327991485595703,-0.00003618001937866211,-0.0002758502960205078,0.0002887248992919922,0.00001531839370727539,0.00037932395935058594,-0.000046253204345703125,0.00007557868957519531,0.00018683075904846191,0.00008445978164672852,0.00010889768600463867,-0.00003701448440551758,0.000038743019104003906,-0.000024080276489257812,0.000013887882232666016,-0.0003847479820251465,-0.0001946091651916504,0.0003078281879425049,-0.000532686710357666,-0.0000597834587097168,-9.298324584960938e-6,0.00012245774269104004,-0.000048041343688964844,-0.0001233220100402832,0.00014397501945495605,-0.00013715028762817383,-0.0000654458999633789,-0.00011771917343139648,6.0498714447021484e-6,0.00008001923561096191,-0.00014531612396240234,-0.000024080276489257812,0.000036090612411499023,0.0000432431697845459,0.000018537044525146484,0.00006395578384399414,0.00002065300941467285,0.000240325927734375,0.000087738037109375,-0.000045359134674072266,0.00011369585990905762,-0.0001334547996520996,0.00005602836608886719,-0.00020819902420043945,0.00023692846298217773,0.00022268295288085938,0.00026100873947143555,0.000026553869247436523,0.00026983022689819336,0.0006432831287384033,-0.00019663572311401367,9.000301361083984e-6,2.950429916381836e-6,-0.00003618001937866211,0.0000374913215637207,0.000051409006118774414,0.0000368654727935791,-0.00003314018249511719,-4.231929779052734e-6,0.00020650029182434082,0.0067882537841796875,0.000614553689956665,0.00006252527236938477,-0.00024521350860595703,0.00004652142524719238,0.0000374913215637207,0.0000292360782623291,-0.00017023086547851562,0.000021219253540039062,0.00003173947334289551,0.00035330653190612793,0.000043720006942749023,0.0003228485584259033,0.00002256035804748535,-0.00004607439041137695,-0.00012320280075073242,-0.00002288818359375,0.0010229051113128662,0.00033783912658691406,0.00012692809104919434,-0.0000445246696472168,-0.002033054828643799,-0.000016570091247558594,-0.000024080276489257812,7.450580596923828e-7,-0.00009244680404663086,-0.00002872943878173828,0.000045925378799438477,0.00020948052406311035,0.000028759241104125977,-0.00008106231689453125,-0.00008225440979003906,-0.00009226799011230469,0.001526951789855957,0.0002525150775909424,0.0000934898853302002,0.000021785497665405273,0.00003635883331298828,-0.00011616945266723633,-3.5762786865234375e-7,-0.000011861324310302734,-0.0001595020294189453,-0.00011324882507324219,0.00008627772331237793,-0.00008016824722290039,-0.000013172626495361328,0.00017192959785461426,0.00002256035804748535,0.00016412138938903809,0.00030094385147094727,0.000453263521194458,-0.00003629922866821289,0.00024771690368652344,0.00014773011207580566,0.00005561113357543945,0.00021791458129882812,-0.0008637905120849609,-0.00028645992279052734,0.00016963481903076172,0.00014382600784301758,-0.0000355839729309082,-0.00007271766662597656,-0.000039696693420410156,0.00042185187339782715,-0.0001277327537536621,0.00010651350021362305,0.00011748075485229492,0.000010341405868530273,0.00026029348373413086,-0.00004673004150390625,0.000049442052841186523,0.00020179152488708496,0.0004972517490386963,-8.344650268554688e-7,-0.0000324249267578125,-0.00012195110321044922,-0.0002346634864807129,0.027543574571609497,-0.00003826618194580078,0.00069427490234375,0.00011149048805236816,0.0011579692363739014,-7.748603820800781e-7,-0.00008410215377807617,0.00003764033317565918,-0.0002167820930480957,-0.0000674128532409668,0.00007963180541992188,-0.000020205974578857422,0.00011652708053588867,-0.00011205673217773438,0.00008043646812438965,0.000025719404220581055,-0.00005650520324707031,-0.00010031461715698242,0.00018548965454101562,0.0004343390464782715,-0.0013698339462280273,-0.0000349879264831543,-0.000056743621826171875,-0.00012737512588500977,0.00003451108932495117,2.7120113372802734e-6,-0.00020575523376464844,0.00004076957702636719,-0.0006015896797180176,0.00015437602996826172,0.0008349120616912842,0.0001945197582244873,-0.00005829334259033203,-8.702278137207031e-6,-0.00018787384033203125,0.0000292360782623291,-0.00011152029037475586,7.12275505065918e-6,0.0002987086772918701,-0.00005638599395751953,0.00027498602867126465,0.000728905200958252,-0.00008463859558105469,-0.00003838539123535156,-0.000026881694793701172,-0.0001131296157836914,0.00023311376571655273,0.0004515647888183594,0.0003565847873687744,-0.00006210803985595703,-0.000038564205169677734,-0.00004851818084716797,0.00019636750221252441,-0.00021922588348388672,-0.0005775094032287598,-0.00014197826385498047,-0.0003151893615722656,0.00031945109367370605,-0.00012916326522827148,0.000028789043426513672,-0.0001887679100036621,-0.00002765655517578125,-0.00004088878631591797,-0.00008440017700195312,0.00016936659812927246,-6.735324859619141e-6,-0.00008678436279296875,-0.00019371509552001953,0.000032395124435424805,0.0003720521926879883,0.0001099705696105957,0.00023880600929260254,3.0100345611572266e-6,-0.000023365020751953125,0.0003075599670410156,-0.00003719329833984375,0.000012755393981933594,-6.973743438720703e-6,0.0004925727844238281,0.0029455721378326416,-0.00004857778549194336,-0.000024378299713134766,0.00009498000144958496,-0.00005429983139038086,0.00014922022819519043,-8.344650268554688e-7,-0.00029540061950683594,0.00003409385681152344,-0.0001957416534423828,0.00013998150825500488,-0.00014954805374145508,0.0005075633525848389,0.00006839632987976074,0.00011086463928222656,-0.00008225440979003906,-0.00007736682891845703,-0.00007003545761108398,0.0014379322528839111,-0.00006175041198730469,0.00008720159530639648,0.000015050172805786133,-0.00013118982315063477,0.000018417835235595703,0.00009056925773620605,-0.000024080276489257812,0.00008001923561096191,-0.000010609626770019531,-0.00006765127182006836,-0.00019156932830810547,0.00008907914161682129,-0.00011724233627319336,-0.00007748603820800781,0.000030159950256347656,-0.00007534027099609375,0.000015348196029663086,0.0001620650291442871,0.0000775754451751709,-0.00008744001388549805,0.00007915496826171875,9.5367431640625e-7,-0.00002950429916381836,-0.00002294778823852539,-5.602836608886719e-6,0.0001963973045349121,-0.00017023086547851562,0.9967000484466553,-0.000037550926208496094,0.0006068944931030273,0.0001443624496459961,0.00042444467544555664,0.00006428360939025879,0.00021776556968688965,0.000058144330978393555,-0.00028693675994873047,0.00014826655387878418,-0.000026047229766845703,-0.00010216236114501953,0.00004938244819641113,0.00011131167411804199,9.387731552124023e-6,-0.000019371509552001953,-0.00004607439041137695,0.000048220157623291016,-0.001156926155090332,0.000020891427993774414,0.00017017126083374023,0.00019875168800354004,0.0018985569477081299,0.00008001923561096191,0.0010929703712463379,0.154680997133255,0.0005657970905303955,0.000012755393981933594,-0.00043082237243652344,0.0001297295093536377,-0.00008207559585571289,0.00007709860801696777,0.0000966191291809082,0.00007274746894836426,-0.001146554946899414,0.00011739134788513184,-0.00013238191604614258,-0.0001913905143737793,0.00008887052536010742,0.00006902217864990234,-0.000024497509002685547,-0.0000940561294555664,-0.000012874603271484375,-0.00011169910430908203,0.00038999319076538086,-0.00003916025161743164,-0.00001800060272216797,0.0003387928009033203,0.00006175041198730469,0.0000374913215637207,-0.00001138448715209961,0.00020208954811096191,-0.00008541345596313477,-7.569789886474609e-6,0.00003319978713989258,0.00036835670471191406,-0.00013768672943115234,0.0003140568733215332,-0.00008815526962280273,0.0001620650291442871,0.000976651906967163,-0.000013947486877441406,0.000026941299438476562,0.00029969215393066406,-0.00006395578384399414,0.000014871358871459961,0.00014859437942504883,0.000020056962966918945,-0.00030672550201416016,0.0010245144367218018,-0.0003267526626586914,-0.00011140108108520508,0.0011615157127380371,-0.00011718273162841797,0.0000985264778137207,0.000024378299713134766,0.00008615851402282715,5.424022674560547e-6,0.002024620771408081,0.00003439188003540039,-0.00006747245788574219,0.00002950429916381836,-0.0000413060188293457,0.00018870830535888672,-0.0002791285514831543,-0.00004267692565917969,-0.00005435943603515625,-0.00010776519775390625,-0.000033020973205566406,-0.00008845329284667969,0.00009512901306152344,-0.00018095970153808594,-0.00004857778549194336,-0.0010918974876403809,-0.0001881122589111328,0.0075664222240448,9.000301361083984e-6,-0.000016868114471435547,-0.00021779537200927734,-0.001434326171875,-0.0027778148651123047,0.00044727325439453125,0.00026535987854003906,0.00010380148887634277,0.000030249357223510742,-1.8477439880371094e-6,-0.0007334351539611816,0.00047472119331359863,0.00011298060417175293,-0.000056743621826171875,0.000027626752853393555,0.00006008148193359375,-0.000022351741790771484,0.00018861889839172363,0.00016796588897705078,0.000024646520614624023,0.00007963180541992188,0.00019913911819458008,0.000015079975128173828,-0.00014269351959228516,-0.00006449222564697266,-0.00009500980377197266,-0.000010907649993896484,0.00002968311309814453,0.0000400543212890625,-0.000039517879486083984,0.000038743019104003906,0.00032004714012145996,-6.67572021484375e-6,0.00007176399230957031,0.00001704692840576172,-0.0002359151840209961,0.00014191865921020508,-1.0132789611816406e-6,0.00008615851402282715,-0.000026226043701171875,0.00022917985916137695,0.0011649727821350098,-0.00019347667694091797,0.00004279613494873047,0.000057578086853027344,0.0001570582389831543,0.00008317828178405762,0.00012189149856567383,-0.00005173683166503906,0.00006130337715148926,0.0000870823860168457,-0.000025510787963867188,0.00005564093589782715,9.000301361083984e-6,0.0007108449935913086,0.00001189112663269043,6.318092346191406e-6,-0.00011050701141357422,0.0003285408020019531,0.00014346837997436523,0.0005007386207580566,0.0013189911842346191,0.00011494755744934082,0.0000298917293548584,-0.00005835294723510742,-0.00015538930892944336,-0.00004571676254272461,0.00003361701965332031,-0.0012104511260986328,-0.0006108880043029785,-0.00008046627044677734,-1.1920928955078125e-6,0.000764697790145874,0.00023993849754333496,9.000301361083984e-6,-0.000018775463104248047,0.0002613663673400879,0.000019371509552001953,-0.00007963180541992188,0.00010201334953308105,0.0001761317253112793,-0.00004965066909790039,-0.00009638071060180664,-0.00006020069122314453,0.00004076957702636719,0.0028809010982513428,-0.00011599063873291016,-0.00009584426879882812,0.0002518892288208008,-0.00004947185516357422,-0.000014424324035644531,0.0003661811351776123,-0.000048279762268066406,-0.00019544363021850586,-0.00003123283386230469,-0.00012040138244628906,0.000058531761169433594,0.0007878541946411133,-0.00006729364395141602,0.00015464425086975098,0.0040565431118011475,0.010540366172790527,-0.00017505884170532227,0.00028565526008605957,0.0002708137035369873,-0.00008952617645263672,-0.00015491247177124023,-0.000025391578674316406,0.00009751319885253906,0.00012350082397460938,0.043460071086883545,0.00017508864402770996,-0.0000521540641784668,-0.00038617849349975586,0.00015288591384887695,0.00002613663673400879,0.00034695863723754883,-0.00004404783248901367,-0.00004756450653076172,0.00019782781600952148,-0.00003653764724731445,0.00001239776611328125,0.00009447336196899414,-0.000028908252716064453,-0.000043511390686035156,0.00004112720489501953,0.00011664628982543945,-0.00002968311309814453,-0.0001703500747680664,0.00013118982315063477,0.00009867548942565918,0.0001633763313293457,0.000398486852645874,0.00011405348777770996,0.0003980100154876709,1.4007091522216797e-6,0.000033855438232421875,-0.00011557340621948242,0.0002936720848083496,0.000779271125793457,0.000026404857635498047,-0.00020331144332885742,-0.000048041343688964844,-6.4373016357421875e-6,0.008365094661712646,-0.00015693902969360352,-0.000024080276489257812,4.4405460357666016e-6,0.0007870495319366455,-0.00003790855407714844,-0.0001285076141357422,0.00006031990051269531,0.000016003847122192383,-0.000027894973754882812,-0.00015842914581298828,0.0001645982265472412,0.00008752942085266113,-0.000011682510375976562,-0.000029027462005615234,-0.00006395578384399414,0.000050693750381469727,-0.0000858306884765625,0.0001055002212524414,-0.0001589655876159668,0.00016683340072631836,-0.00012737512588500977,0.00038319826126098633,0.00006195902824401855,0.00009962916374206543,-0.000010251998901367188,-0.00020039081573486328,0.0001786947250366211,-0.00009244680404663086,0.00011485815048217773,-0.000027120113372802734,0.00004926323890686035,0.00012367963790893555,0.0002468526363372803,0.00003394484519958496,-1.1920928955078125e-6,0.000858992338180542,-0.00019210577011108398,-0.00013643503189086914,-0.00012564659118652344,-0.000011622905731201172,-0.00015854835510253906,0.0004056692123413086,-0.00018334388732910156,-0.00022542476654052734,0.0001500546932220459,-0.00010734796524047852,0.00005969405174255371,-0.000011324882507324219,-0.00004011392593383789,0.000025600194931030273,-0.0000400543212890625,0.000035136938095092773,-0.00003647804260253906,-0.0003993511199951172,-0.000049233436584472656,-0.00011545419692993164,0.0002484321594238281,0.000026047229766845703,0.00006702542304992676,-0.00006622076034545898,0.0009613633155822754,0.0013696849346160889,0.00020167231559753418,-0.00012028217315673828,-0.00008851289749145508,-0.00020676851272583008,0.00008502602577209473,-0.000011801719665527344,0.000317990779876709,0.000665128231048584,0.00013375282287597656,0.0004343390464782715,0.00001093745231628418,-0.0001596212387084961,-0.00008612871170043945,0.00017517805099487305,-0.00005459785461425781,0.000058531761169433594,-0.00009298324584960938,0.0012864172458648682,0.00033909082412719727,-0.00017970800399780273,0.00020179152488708496,-0.00011914968490600586,-0.0001284480094909668,-0.0000814199447631836,0.00029847025871276855,0.0008998215198516846,-0.0001628398895263672,0.00006130337715148926,-0.00011068582534790039,-0.00003528594970703125,-0.00007200241088867188,-0.00008702278137207031,-0.000020205974578857422,0.00026658177375793457,0.00007709860801696777,-2.3245811462402344e-6,-0.000029027462005615234,-0.00003820657730102539,0.000058531761169433594,0.004237085580825806,-0.000017881393432617188,-0.0003762245178222656,0.0008556246757507324,0.00069388747215271,0.00015649199485778809,-0.0001525282859802246,0.001047968864440918,0.00002378225326538086,0.000010341405868530273,-0.00008046627044677734,0.0004799962043762207,0.0001958608627319336,0.00007483363151550293,-0.00006920099258422852,0.00037670135498046875,4.500150680541992e-6,0.000035256147384643555,0.00033289194107055664,-0.000518500804901123,0.00001531839370727539,0.0007495582103729248,0.003031790256500244,-0.0006960034370422363,-0.000038683414459228516,0.0026393234729766846,-0.00007712841033935547,0.00016796588897705078,0.000051409006118774414,-0.00008410215377807617,-0.00005173683166503906,-0.0000635385513305664,6.0498714447021484e-6,0.8936001062393188,0.0005476176738739014,0.0002326667308807373,-0.000022470951080322266,-0.000033795833587646484,-0.00012952089309692383,0.000030666589736938477,0.00006395578384399414,-0.000011026859283447266,0.0004271566867828369,-0.00007003545761108398,0.0005788505077362061,-3.6954879760742188e-6,0.0010002553462982178,-5.066394805908203e-6,0.0007869601249694824,-0.00011456012725830078,-0.000038564205169677734,0.0002301633358001709,0.00014123320579528809,0.017958015203475952,0.0001849532127380371,0.00001239776611328125,0.00007030367851257324,0.0001246631145477295,-0.00005894899368286133,0.0000298917293548584,0.00012505054473876953,4.0531158447265625e-6,-0.00003606081008911133,-0.00016695261001586914,-6.67572021484375e-6,0.0006988346576690674,0.000027894973754882812,0.00002276897430419922,-7.152557373046875e-7,0.000042110681533813477,-0.00010985136032104492,-0.00011301040649414062,0.000016689300537109375,0.00018543004989624023,0.00034111738204956055,0.0008606314659118652,0.0009454786777496338,0.0007196664810180664,4.202127456665039e-6,-0.0001297593116760254,-0.000021219253540039062,-0.0001621842384338379,8.344650268554688e-7,0.00011432170867919922,0.0009383261203765869,0.00008916854858398438,0.000058531761169433594,0.0003771185874938965,-0.00010651350021362305,0.00001093745231628418,1.8775463104248047e-6,-0.0001761317253112793,0.0004426538944244385,0.00027370452880859375,0.00039201974868774414,-0.0003674626350402832,-0.0003153085708618164,0.000010102987289428711,-0.00013369321823120117,0.00024148821830749512,0.000015407800674438477,0.00017279386520385742,0.0000832676887512207,0.002135723829269409,0.00007715821266174316,-0.0000349879264831543,0.00023192167282104492,0.00028568506240844727,-0.00015795230865478516,-0.0000654458999633789,-0.00022071599960327148,0.00044667720794677734,0.00007644295692443848,-6.67572021484375e-6,-0.00006335973739624023,-0.0001137852668762207,0.00010028481483459473,0.000016123056411743164,-0.00007981061935424805,0.00008377432823181152,0.011123120784759521,-0.00013840198516845703,0.00005194544792175293,0.00010839104652404785,0.00010395050048828125,-0.0005806088447570801,-0.00006633996963500977,-0.0002085566520690918,-0.00002181529998779297,-0.00008040666580200195,3.4868717193603516e-6,0.00006341934204101562,0.00023093819618225098,0.000038743019104003906,-0.00006854534149169922,0.0005142092704772949,-0.00001621246337890625,-0.000054001808166503906,-0.00008946657180786133,0.00005874037742614746,0.00007092952728271484,-0.001827538013458252,-0.00013679265975952148,0.00018870830535888672,0.010084807872772217,-9.238719940185547e-6,-0.0002111196517944336,0.00006368756294250488,0.00003993511199951172,0.00006252527236938477,0.0001863241195678711,0.0001519620418548584,0.00002816319465637207,0.00006130337715148926,0.000012993812561035156,0.000012993812561035156,0.00008702278137207031,0.000046312808990478516,0.000014424324035644531,0.00012442469596862793,-0.00020807981491088867,-0.0001684427261352539,-0.0001462697982788086,0.00069388747215271,0.0006012320518493652,-0.00001239776611328125,0.0014383792877197266,-1.1920928955078125e-6,0.00001475214958190918,0.00015789270401000977,-0.0001875758171081543,0.000039964914321899414,-0.00011199712753295898,-0.000019669532775878906,0.00024232268333435059,0.000021666288375854492,-4.172325134277344e-7,0.000011324882507324219,-0.00030481815338134766,5.036592483520508e-6,0.0007088780403137207,0.00007387995719909668,0.00009843707084655762,-0.00002199411392211914,-5.900859832763672e-6,0.00023573637008666992,0.0001842975616455078,0.00003018975257873535,0.00033274292945861816,0.0007373392581939697,-0.00006592273712158203,-0.00006097555160522461,-0.0002460479736328125,0.00005227327346801758,-0.00020807981491088867,-0.00022727251052856445,0.00006154179573059082,-0.00012892484664916992,0.00019687414169311523,0.00020778179168701172,0.000026553869247436523,-0.0001799464225769043,-0.0010570287704467773,-0.000057578086853027344,-0.0002110004425048828,-0.000013053417205810547,0.00011229515075683594,0.00003835558891296387,0.000030606985092163086,0.00013208389282226562,0.00019729137420654297,-9.715557098388672e-6,0.0002485215663909912,-0.0001227855682373047,-0.0007824897766113281,0.00008702278137207031,0.00001481175422668457,0.000023484230041503906,0.0006262362003326416,0.000057578086853027344,0.0005315840244293213,-0.0002250075340270996,0.00026085972785949707,2.0563602447509766e-6,0.000030159950256347656,0.0003808140754699707,-0.00004786252975463867,-0.00008052587509155273,-0.00007528066635131836,-0.000018656253814697266,-0.00027441978454589844,0.00011155009269714355,0.00012674927711486816,-0.00007134675979614258,-0.000019311904907226562,-0.00004190206527709961,0.00005218386650085449,-0.00008022785186767578,0.0005297660827636719,0.0001685023307800293,0.0005402266979217529,0.0002015829086303711,-0.000017404556274414062,0.00007066130638122559,-4.172325134277344e-7,0.0005934238433837891,0.000011473894119262695,-0.00004076957702636719,0.00006029009819030762,-0.000010013580322265625,0.00010073184967041016,0.00003984570503234863,0.00022920966148376465,0.0024115145206451416,-0.00005793571472167969,0.0013051927089691162,7.450580596923828e-7,-0.00005441904067993164,0.00023892521858215332,-0.00013750791549682617,0.00003984570503234863,0.002346545457839966,0.000324249267578125,0.000024437904357910156,-0.00013142824172973633,0.00003892183303833008,0.00010889768600463867,0.00005200505256652832,-0.00006455183029174805,0.000030249357223510742,-0.000020205974578857422,-0.000019311904907226562,0.000023186206817626953,-0.00018471479415893555,-0.000019550323486328125,-0.000057578086853027344,0.00004062056541442871,-0.00013709068298339844,0.00003597140312194824,-0.000014066696166992188,-0.00006526708602905273,-0.001025378704071045,0.000022023916244506836,-0.0000349879264831543,0.000110626220703125,0.00045052170753479004,0.000044405460357666016,1.4007091522216797e-6,0.00016960501670837402,-0.0000362396240234375,-0.0000349879264831543,0.0032159090042114258,0.00006186962127685547,-0.000015556812286376953,-0.000056803226470947266,0.00006112456321716309,0.0006106197834014893,0.0017672181129455566,0.00019782781600952148,-0.00005447864532470703,-0.00003635883331298828,-0.0000673532485961914,0.00011646747589111328,-0.00004297494888305664,0.00035262107849121094,1.0619900226593018,0.00009250640869140625,-0.00001436471939086914,0.000394672155380249,0.000048160552978515625,-0.00003314018249511719,-0.00011593103408813477,-0.00006526708602905273,0.00039830803871154785,-0.00007086992263793945,-0.00010657310485839844,-7.152557373046875e-6,-0.00017023086547851562,0.00004971027374267578,-0.000010251998901367188,-0.00010728836059570312,0.00009590387344360352,0.00024506449699401855,0.0007878541946411133,0.0008027851581573486,0.0002652406692504883,0.0035292208194732666,0.000035136938095092773,5.27501106262207e-6,-0.00004380941390991211,3.6954879760742188e-6,0.000825345516204834,0.000056415796279907227,0.0000368654727935791,0.000023752450942993164,0.000047594308853149414,-0.000049173831939697266,0.00006639957427978516,-0.00010716915130615234,0.0035226941108703613,0.00006175041198730469,-0.00012737512588500977,0.00006598234176635742,0.0002738535404205322,0.00039207935333251953,-0.00010776519775390625,1.4603137969970703e-6,-0.000034868717193603516,-5.602836608886719e-6,0.0008271932601928711,0.0011271238327026367,0.00007414817810058594,-0.00008690357208251953,-0.00013023614883422852,-0.000012516975402832031,-0.000010013580322265625,0.0003142356872558594,0.00004938244819641113,0.00005391240119934082,-0.00008928775787353516,-0.00009548664093017578,-0.00007891654968261719,0.00007733702659606934,0.00007578730583190918,-0.00014632940292358398,-0.00005984306335449219,0.00009587407112121582,0.00035181641578674316,0.00020828843116760254,0.0017824769020080566,0.00004026293754577637,-4.76837158203125e-6,-0.00011199712753295898,0.12756288051605225,-0.000017583370208740234,0.000024259090423583984,0.000016629695892333984,-0.00003707408905029297,0.0008746087551116943,-0.00011199712753295898,0.00040861964225769043,-4.76837158203125e-7,-0.00020879507064819336,0.00030365586280822754,0.000016629695892333984,0.1076585054397583,0.00023797154426574707,-0.00004583597183227539,-0.00015795230865478516,-0.00004982948303222656,0.0007281899452209473,0.000010371208190917969,0.0010360777378082275,-0.00017273426055908203,0.0032575130462646484,-0.00001519918441772461,0.0002186894416809082,8.612871170043945e-6,0.0005216300487518311,0.00021606683731079102,-0.00002110004425048828,0.0001283586025238037,0.00022223591804504395,-0.00004857778549194336,-0.0001881122589111328,0.0000597536563873291,0.0038232803344726562,0.000036329030990600586,0.000050067901611328125,-0.00011175870895385742,0.0004247426986694336,0.0001347661018371582,-0.0003660917282104492,0.00011494755744934082,0.00001677870750427246,0.0000508725643157959,-0.00014972686767578125,-0.00006711483001708984,8.046627044677734e-7,6.079673767089844e-6,0.0006443560123443604,-0.000895380973815918,0.00007414817810058594,0.000016450881958007812,0.000024259090423583984,0.00011652708053588867,5.21540641784668e-6,-0.0003024935722351074,0.00023239850997924805,-0.00008893013000488281,0.000017911195755004883,0.0001634359359741211,-0.00008887052536010742,0.9734111428260803,0.0002053678035736084,7.4803829193115234e-6,0.00009077787399291992,0.00004404783248901367,-0.00011587142944335938,-9.715557098388672e-6,0.0000820457935333252,0.00004464387893676758,0.0004744529724121094,0.00018477439880371094,0.00002256035804748535,-0.00013113021850585938,-0.00011754035949707031,-0.00008052587509155273,0.0002047419548034668,-0.00002199411392211914,-0.00008207559585571289,-0.0002079606056213379,0.0008832812309265137,0.0005734264850616455,-0.000028908252716064453,-0.00007867813110351562,0.0024368762969970703,-0.000026702880859375,-0.00003886222839355469,-0.000052869319915771484,-0.0001652836799621582,0.0000413060188293457,0.00018960237503051758,-0.00005990266799926758,-3.635883331298828e-6,0.0008790791034698486,0.00005221366882324219,-0.000057816505432128906,0.00013810396194458008,0.00001677870750427246,0.00019720196723937988,0.00014147162437438965,0.00014963746070861816,0.0002613663673400879,0.0003415048122406006,0.00030046701431274414,0.00003293156623840332,-0.000041365623474121094,0.00026100873947143555,-6.67572021484375e-6,0.0004042387008666992,0.000020235776901245117,-3.337860107421875e-6,-0.00007331371307373047,1.043081283569336e-6,0.0000883638858795166,0.00012674927711486816,-0.0000209808349609375,0.00003394484519958496,-0.000021159648895263672,-0.00005441904067993164,0.00005742907524108887,-0.0005972981452941895,0.00005561113357543945,-9.000301361083984e-6,0.006903797388076782,-4.172325134277344e-6,0.00033742189407348633,0.0001710057258605957,0.00003865361213684082,-0.0001525282859802246,0.9974905252456665,-0.00004029273986816406,0.000056415796279907227,0.00044333934783935547,0.00006967782974243164,0.0000165402889251709,0.0006504356861114502,-0.00004887580871582031,-0.00006645917892456055,-0.000034809112548828125,-0.00046938657760620117,3.129243850708008e-6,-0.00009107589721679688,1.4007091522216797e-6,-0.00007069110870361328,0.00001385807991027832,-0.00004309415817260742,0.0006239712238311768,0.00011008977890014648,-0.00008857250213623047,-0.0004779696464538574,0.0004957020282745361,-0.0001442432403564453,0.000028789043426513672,0.000456392765045166,0.0000641942024230957,0.00013530254364013672,-0.000024318695068359375,-0.00007855892181396484,-0.000014781951904296875,0.00006315112113952637,0.0006995499134063721,-0.00031757354736328125,-0.00014728307723999023,0.00005939602851867676,-0.00007969141006469727,-0.001058816909790039,-0.0001881122589111328,-0.00004845857620239258,0.000030159950256347656,-0.0004247426986694336,0.00045120716094970703,0.000015020370483398438,-0.00006318092346191406,0.00005283951759338379,-0.000011146068572998047,0.0005142092704772949,0.0001881122589111328,-0.0001881718635559082,-0.00007277727127075195,-0.0002948641777038574,-9.000301361083984e-6,-1.9073486328125e-6,0.000028401613235473633,-0.00014644861221313477,-0.00013703107833862305,-0.000056684017181396484,-0.00010842084884643555,-0.0004646182060241699,-0.000102996826171875,4.231929779052734e-6,-0.000023424625396728516,-1.7881393432617188e-7,0.000010341405868530273,0.0007184743881225586,-0.00002092123031616211,9.834766387939453e-6,0.0001685023307800293,-0.00002950429916381836,0.0006702244281768799,0.0005649030208587646,-0.00002199411392211914,-0.00011110305786132812,0.000023037195205688477,8.821487426757812e-6,0.0003498494625091553,-0.00015431642532348633,0.00010326504707336426,-0.00014632940292358398,0.00025522708892822266,0.0032204389572143555,0.00011679530143737793,-0.00008755922317504883,0.0000374913215637207,0.0003311336040496826,0.0001462399959564209,0.0000254213809967041,-0.0001582503318786621,0.0009517073631286621,0.000087738037109375,0.0003178417682647705,0.000042110681533813477,0.00004026293754577637,-0.000038564205169677734,0.0006361007690429688,-0.00011330842971801758,0.0029163658618927,-0.000045418739318847656,0.0003847479820251465,-0.00003319978713989258,0.0011823773384094238,0.000311434268951416,0.00003463029861450195,-0.0001729726791381836,0.0003287196159362793,0.000029087066650390625,-0.00006622076034545898,0.00009587407112121582,0.00009065866470336914,0.00006052851676940918,0.00010856986045837402,0.00020235776901245117,0.0000998377799987793,-0.00003713369369506836,0.00008705258369445801,-0.00007992982864379883,0.00013169646263122559,0.00009611248970031738,0.00011464953422546387,-0.00002568960189819336,0.0000851750373840332,-0.00003916025161743164,0.000036597251892089844,-0.00006252527236938477,0.000043720006942749023,-0.00008547306060791016,0.00018227100372314453,0.00001710653305053711,0.00011155009269714355,-0.00003129243850708008,-0.000368654727935791,0.0006187558174133301,0.0011155307292938232,-0.000024080276489257812,0.00030797719955444336,-0.0001914501190185547,0.0004277229309082031,-0.00012737512588500977,-0.0002066493034362793,2.4139881134033203e-6,8.881092071533203e-6,0.000042319297790527344,-0.00002378225326538086,-0.00002199411392211914,0.00005799531936645508,-0.000011444091796875,0.0002620816230773926,-0.00005030632019042969,0.00021731853485107422,0.000015616416931152344,-0.0006544589996337891,0.00006628036499023438,0.0000985264778137207,0.003493964672088623,-8.165836334228516e-6,-0.00015461444854736328,0.000052541494369506836,-0.00007992982864379883,0.00018545985221862793,-0.00012421607971191406,-0.00002199411392211914,0.0015419721603393555,0.000019341707229614258,-0.00011849403381347656,0.000026553869247436523,-0.0007675886154174805,-0.0001742243766784668,-0.000095367431640625,-0.00008732080459594727,-0.000030040740966796875,0.0001175999641418457,0.00012806057929992676,0.0003839433193206787,0.00009930133819580078,0.0000947117805480957,-0.00012826919555664062,7.18235969543457e-6,-0.00001239776611328125,-2.9206275939941406e-6,0.0001825094223022461,0.0012904107570648193,-0.000033855438232421875,-0.000043392181396484375,0.000018149614334106445,0.00011816620826721191,-0.000045180320739746094,0.00007483363151550293,-0.00014019012451171875,0.00011527538299560547,8.493661880493164e-6,0.00003692507743835449,-0.00018072128295898438,0.000174790620803833,0.0002377033233642578,-0.00012725591659545898,0.0004902184009552002,0.00019782781600952148,-0.00007712841033935547,0.00003451108932495117,-0.000014066696166992188,-0.00003153085708618164,0.0002040266990661621,0.00008314847946166992,0.00008538365364074707,0.0002777278423309326,-8.702278137207031e-6,0.0000444948673248291,0.0005512535572052002,0.0000629425048828125,0.0000788271427154541,0.00009694695472717285,-0.00011515617370605469,0.0014816522598266602,0.000038564205169677734,0.0000584721565246582,-0.0001838207244873047,-0.00013184547424316406,0.00003764033317565918,0.000025928020477294922,0.0014185309410095215,0.005668759346008301,0.0001741945743560791,0.00002244114875793457,-0.00006669759750366211,0.000014215707778930664,-0.000011324882507324219,0.000014424324035644531,-0.00004678964614868164,-0.00009888410568237305,-0.0003344416618347168,0.00008416175842285156,-0.0001856088638305664,-0.0001392960548400879,0.00006565451622009277,7.927417755126953e-6,0.000036329030990600586,0.0000623166561126709,0.000045418739318847656,6.5267086029052734e-6,0.00011798739433288574,0.0004588961601257324,0.000057756900787353516,-0.00012052059173583984,-0.00006216764450073242,0.00021329522132873535,-0.000019550323486328125,0.00009959936141967773,0.000044286251068115234,-0.00009971857070922852,-0.00007146596908569336,0.0003497004508972168,-0.00005251169204711914,0.00006815791130065918,-0.00007098913192749023,0.00008368492126464844,-0.0001462697982788086,-0.000033974647521972656,-0.00034922361373901367,-0.00010734796524047852,-0.0001258254051208496,0.000057369470596313477,0.00017198920249938965,0.00013169646263122559,0.00007414817810058594,0.0001640915870666504,-0.0002257823944091797,0.005791991949081421,-0.00005823373794555664,-0.00008744001388549805,0.00008434057235717773,-0.00006175041198730469,7.778406143188477e-6,0.00005221366882324219,-0.000049173831939697266,-0.00003653764724731445,-0.00004279613494873047,-0.00006842613220214844,-0.00003987550735473633,-0.00003719329833984375,-0.00010436773300170898,-0.0011246204376220703,0.00016412138938903809,-0.00008273124694824219,-0.000021636486053466797,0.000018298625946044922,0.00003764033317565918,0.0001226961612701416,0.000026613473892211914,0.0030987560749053955,0.00020113587379455566,-0.00003451108932495117,0.0001100003719329834,-0.0004731416702270508,-0.000050067901611328125,0.00003102421760559082,0.00003412365913391113,0.0003573894500732422,0.0002791881561279297,-0.00011855363845825195,0.0007666647434234619,0.0001017153263092041,0.00023862719535827637,0.00011515617370605469,0.00005060434341430664,-0.00009882450103759766,4.470348358154297e-7,-4.410743713378906e-6,9.268522262573242e-6,-0.00003999471664428711,0.00009268522262573242,0.00012925267219543457,-0.00004220008850097656,-0.000301361083984375,-0.00015079975128173828,-0.0007612109184265137,0.00037863850593566895,-0.0004073977470397949,0.00015079975128173828,0.0006333589553833008,-0.0007686614990234375,0.000026792287826538086,7.361173629760742e-6,0.000050127506256103516,2.8312206268310547e-6,-0.00008749961853027344,-0.0000324249267578125,0.00019407272338867188,0.00024762749671936035,0.00004571676254272461,0.00011712312698364258,0.00005397200584411621,0.00010839104652404785,0.0008359551429748535,9.03010368347168e-6,0.00006598234176635742,-0.00003415346145629883,0.000048547983169555664,-0.00008368492126464844,-0.000051140785217285156,0.000041365623474121094,-0.0004463791847229004,0.00008970499038696289,-0.00019037723541259766,0.000027865171432495117,0.000026464462280273438,4.0531158447265625e-6,0.00002822279930114746,0.000028431415557861328,0.0000470280647277832,0.0004690587520599365,0.0006783604621887207,-0.0019513368606567383,0.0003542304039001465,0.00010097026824951172,0.000059932470321655273,0.00002244114875793457,0.0002982020378112793,-0.0002421736717224121,6.0498714447021484e-6,-0.00006395578384399414,-0.00004279613494873047,0.0001965165138244629,-0.00005453824996948242,0.002518951892852783,-0.00003510713577270508,0.0003229677677154541,0.00019979476928710938,-0.0000311732292175293,-0.00015813112258911133,0.00026303529739379883,-0.00008207559585571289,-0.00008422136306762695,0.00008893013000488281,-8.761882781982422e-6,0.00012424588203430176,0.00017595291137695312,-0.00017631053924560547,0.00011661648750305176,0.00025513768196105957,-5.900859832763672e-6,-0.00003254413604736328,-0.00008386373519897461,-0.000021219253540039062,0.000013530254364013672,0.00004404783248901367,0.000026464462280273438,-0.00002199411392211914,-0.000018477439880371094,-0.00003349781036376953,0.0000591278076171875,-0.0001285076141357422,-0.00006175041198730469,0.00419965386390686,-9.298324584960938e-6,-4.76837158203125e-7,0.02366921305656433,-0.00014764070510864258,0.00003865361213684082,0.0006722211837768555,1.1920928955078125e-6,0.00006508827209472656,-0.00004124641418457031,0.00012549757957458496,0.00016948580741882324,0.0003511011600494385,0.00024831295013427734,-0.00003075599670410156,0.00006020069122314453,0.00043195486068725586,-0.00006717443466186523,0.000011056661605834961,0.00013685226440429688,0.0001811981201171875,-0.0001817941665649414,0.000046700239181518555,-0.000042557716369628906,0.0007190406322479248,0.00007387995719909668,-0.0001125335693359375,-0.00020551681518554688,-0.0001201629638671875,0.00023061037063598633,-0.00004029273986816406,0.0006503760814666748,-0.000011444091796875,-0.000049114227294921875,-0.00009161233901977539,0.00011014938354492188,0.0006431937217712402,0.00013631582260131836,0.00030800700187683105,-0.000035703182220458984,0.00042307376861572266,0.00001704692840576172,-6.139278411865234e-6,-0.00003719329833984375,-0.00015109777450561523,0.0007800459861755371,-0.000010013580322265625,-0.000016391277313232422,-3.159046173095703e-6,-6.854534149169922e-6,0.00009801983833312988,-0.00027698278427124023,-0.0009726285934448242,0.0000603795051574707,0.0780571699142456,-8.761882781982422e-6,0.00010889768600463867,0.00007176399230957031,-0.0002097487449645996,-8.881092071533203e-6,-0.00004935264587402344,0.0000959932804107666,0.00016182661056518555,0.00007233023643493652,-0.00010526180267333984,-0.00012558698654174805,0.00006464123725891113,-0.00014764070510864258,-4.76837158203125e-7,0.00040012598037719727,0.00023105740547180176,-0.0006964206695556641,0.000051409006118774414,-0.00036275386810302734,0.00020626187324523926,0.00009906291961669922,0.000018209218978881836,0.000051409006118774414,0.0006341040134429932,-0.000019490718841552734,0.00009489059448242188,0.00006598234176635742,0.00033792853355407715,-0.00021773576736450195,0.00006175041198730469,-0.000013947486877441406,-0.000057756900787353516,-0.00002467632293701172,0.0000298917293548584,0.00014725327491760254,0.0008530914783477783,-0.000037729740142822266,-0.00003808736801147461,0.000011056661605834961,0.0006226301193237305,4.857778549194336e-6,0.00023725628852844238,-0.00003218650817871094,-4.172325134277344e-7,-0.0007373690605163574,-0.0006991028785705566,0.00042510032653808594,-6.854534149169922e-6,0.0004521608352661133,0.00021156668663024902,4.559755325317383e-6,0.00005885958671569824,0.00007572770118713379,-0.00002008676528930664,0.0002707242965698242,-0.00010836124420166016,-0.00006312131881713867,0.00003999471664428711,-0.0001684427261352539,7.897615432739258e-6,-0.00012195110321044922,-0.00003337860107421875,-0.00008690357208251953,-0.0001525282859802246,-0.00008660554885864258,0.00004106760025024414,-0.00009059906005859375,-0.0035704374313354492,0.00008428096771240234,-0.00002676248550415039,0.0007460415363311768,-0.0000979304313659668,0.00019490718841552734,0.00032955408096313477,0.00007387995719909668,-0.0005390048027038574,-0.00021779537200927734,0.00023952126502990723,0.00018212199211120605,-0.00014096498489379883,0.00039449334144592285,-0.00001150369644165039,0.0001328885555267334,0.0006299912929534912,0.0002498626708984375,-0.00002276897430419922,0.0002829134464263916,0.00003361701965332031,-0.00012880563735961914,-0.00008368492126464844,0.000023305416107177734,0.00011664628982543945,0.00012311339378356934,0.0000394284725189209,-0.0001837611198425293,0.00008669495582580566,0.0001951456069946289,0.000295490026473999,-0.000021636486053466797,0.0013923346996307373,0.00007387995719909668,-8.64267349243164e-6,-0.00006413459777832031,0.000027060508728027344,-0.0000845193862915039,0.00023791193962097168,-0.0001266002655029297,0.0013642311096191406,-0.00005644559860229492,0.00014549493789672852,-0.000040590763092041016,0.000017255544662475586,-0.00009125471115112305,-0.000053882598876953125,-0.00020688772201538086,0.0005757808685302734,0.00035181641578674316,0.00004363059997558594,-0.00003123283386230469,0.00004076957702636719,-0.00008213520050048828,0.002743750810623169,-0.00016045570373535156,-0.000047147274017333984,-0.00024056434631347656,4.857778549194336e-6,-0.000017583370208740234,0.00015601515769958496,-0.00007367134094238281,0.000011056661605834961,-0.0006039142608642578,0.000010371208190917969,-0.00009161233901977539,0.00018018484115600586,-0.000011444091796875,0.00021630525588989258,-0.0001932382583618164,-0.00007426738739013672,0.007965683937072754,0.00011470913887023926,0.0002378225326538086,0.00033220648765563965,0.00036135315895080566,0.0001703202724456787,-0.000041544437408447266,0.00018107891082763672,-0.00007337331771850586,0.0002760589122772217,-0.0000845193862915039,-0.00008690357208251953,-0.000056803226470947266,-0.00005030632019042969,0.0001678466796875,0.00032269954681396484,0.00044152140617370605,0.00013574957847595215,0.000012367963790893555,2.950429916381836e-6,0.000057756900787353516,-0.00007712841033935547,0.00019782781600952148,-0.0003985762596130371,-0.00007098913192749023,-0.00018709897994995117,-0.000040650367736816406,0.000028789043426513672,-0.00012737512588500977,0.00014415383338928223,3.7550926208496094e-6,4.32133674621582e-6,0.00005894899368286133,-0.000029146671295166016,-0.00006175041198730469,-0.00001728534698486328,-7.152557373046875e-6,-0.0002174973487854004,-0.00008821487426757812,0.00002568960189819336,0.0003406405448913574,-0.00011032819747924805,-0.0002161264419555664,-0.00017577409744262695,-0.00011622905731201172,-0.00001996755599975586,0.0006383657455444336,-4.351139068603516e-6,-0.000053763389587402344,-0.00002378225326538086,0.00002816319465637207,0.0004792213439941406,-0.0001766681671142578,-0.00013905763626098633,0.00005409121513366699,-0.00006175041198730469,0.0005030930042266846,0.0008121132850646973,0.000056415796279907227,0.0006763637065887451,-0.000019848346710205078,-0.00009638071060180664,0.0000591278076171875,0.00010889768600463867,0.0006135702133178711,-0.0001137852668762207,0.00020501017570495605,0.00007596611976623535,0.000035136938095092773,0.000023305416107177734,0.00012189149856567383,-0.00008630752563476562,-0.0001010894775390625,-5.125999450683594e-6,0.0012150108814239502,0.00009274482727050781,-0.00004857778549194336,-0.000049233436584472656,-0.0001296401023864746,0.00007963180541992188,-0.00014764070510864258,-0.00002765655517578125,-0.00003314018249511719,0.000027239322662353516,0.0000667572021484375,-0.00022369623184204102,-0.000010013580322265625,0.000021249055862426758,-0.00013720989227294922,-0.00008207559585571289,0.0002193450927734375,-0.0002903938293457031,0.000045418739318847656,-0.00030428171157836914,-0.000010013580322265625,0.0005785822868347168,0.0005546808242797852,0.00007075071334838867,0.004621356725692749,-0.000036716461181640625,-0.00010591745376586914,0.00002512335777282715,0.0003387928009033203,0.0000718832015991211,0.00010204315185546875,0.00010895729064941406,0.00009271502494812012,0.00018197298049926758,-0.00006031990051269531,-0.00018489360809326172,0.0003101825714111328,-0.000032067298889160156,0.000037789344787597656,-0.00003814697265625,-0.002085864543914795,0.0002537667751312256,-0.000010609626770019531,0.00005042552947998047,0.000035762786865234375,-0.00005429983139038086,-0.00006413459777832031,-0.00008386373519897461,0.0004372894763946533,-0.000022172927856445312,-0.00016987323760986328,0.00014039874076843262,-0.00007969141006469727,-0.00003987550735473633,0.00024050474166870117,0.005055904388427734,0.001671910285949707,-0.00009959936141967773,-0.0000438690185546875,-0.00019782781600952148,0.0002580881118774414,-0.00013589859008789062,-0.00020301342010498047,0.00004106760025024414,0.00009933114051818848,-0.000053882598876953125,0.0025929510593414307,0.00036391615867614746,0.000033736228942871094,-0.00005835294723510742,7.927417755126953e-6,-0.00010579824447631836,-0.00008720159530639648,-3.933906555175781e-6,0.1276165246963501,0.00021758675575256348,-0.00010198354721069336,0.00001874566078186035,-0.000032961368560791016,0.0001640915870666504,-0.00008744001388549805,-0.00004208087921142578,0.00045368075370788574,-0.0002079606056213379,0.00004410743713378906,0.00012853741645812988,0.000026792287826538086,-0.00022047758102416992,0.000029385089874267578,-0.000013947486877441406,-0.00009304285049438477,0.00006154179573059082,0.0004672408103942871,-0.000014960765838623047,-0.00011289119720458984,-0.00003886222839355469,0.000010371208190917969,0.0001246929168701172,0.00011479854583740234,-0.00003600120544433594,-0.00037670135498046875,-0.00006574392318725586,0.0002937018871307373,-0.0000940561294555664,-1.1920928955078125e-6,-0.00005745887756347656,-0.00004309415817260742,0.000027894973754882812,-0.00010162591934204102,-0.00010275840759277344,0.00023615360260009766,0.00016704201698303223,-0.00014346837997436523,0.00006008148193359375,5.632638931274414e-6,-0.000017583370208740234,0.009659171104431152,0.0003736913204193115,-0.0003110170364379883,0.000014454126358032227,0.00022345781326293945,-0.00001704692840576172,-0.0000762939453125,0.000573277473449707,0.005822688341140747,0.000023871660232543945,-0.00002110004425048828,-0.00022226572036743164,0.00009772181510925293,0.00018203258514404297,-1.9669532775878906e-6,-0.00009453296661376953,-0.00005239248275756836,-2.086162567138672e-6,0.000019341707229614258,0.0000718235969543457,0.00005459785461425781,-0.00020551681518554688,0.00006598234176635742,0.0000985562801361084,0.0008968114852905273,-0.0000286102294921875,0.0006791055202484131,-0.00004029273986816406,-0.000039696693420410156,-0.00023359060287475586,0.000038176774978637695,-0.00012683868408203125,0.00013190507888793945,0.00014445185661315918,-0.0001309514045715332,4.798173904418945e-6,0.00006467103958129883,0.0001265406608581543,-2.6226043701171875e-6,-0.000023424625396728516,0.000037729740142822266,4.976987838745117e-6,0.002126544713973999,0.0005249381065368652,0.00006413459777832031,-0.00008350610733032227,-0.0002409815788269043,0.00020271539688110352,0.000024259090423583984,0.00012478232383728027,-0.00004500150680541992,-0.00023049116134643555,0.00021314620971679688,-0.000017404556274414062,3.6656856536865234e-6,0.00045368075370788574,-0.0000890493392944336,0.00022998452186584473,0.000058531761169433594,0.0007298290729522705,0.00005328655242919922,-0.00017076730728149414,-0.00011658668518066406,0.0006191432476043701,-0.00009560585021972656,6.5267086029052734e-6,-0.0001398324966430664,-0.00001043081283569336,0.0002633631229400635,0.00019493699073791504,0.00017637014389038086,-0.00009912252426147461,-0.00007408857345581055,-0.00010037422180175781,0.00024712085723876953,-0.00021344423294067383,0.000861048698425293,-0.000010073184967041016,-0.0000814199447631836,-0.00003904104232788086,8.374452590942383e-6,-0.00004011392593383789,0.00010991096496582031,0.00010779500007629395,-0.000050902366638183594,-0.00010770559310913086,0.0003357529640197754,0.00007778406143188477,0.00008699297904968262,0.00046202540397644043,-0.00016075372695922852,-0.00002294778823852539,0.0010742545127868652,0.0005284547805786133,0.000024646520614624023,0.0006504356861114502,0.00011712312698364258,0.00003865361213684082,-0.00008863210678100586,0.00009441375732421875,0.00018411874771118164,0.000039517879486083984,0.00011152029037475586,-0.00013297796249389648,0.000039637088775634766,0.00019237399101257324,0.000012993812561035156,9.59634780883789e-6,0.000058531761169433594,0.000014901161193847656,-0.000030100345611572266,-1.9073486328125e-6,-0.00012737512588500977,0.000038743019104003906,0.0005559623241424561,0.0021409690380096436,0.000024616718292236328,-0.00005745887756347656,-0.00004976987838745117,-0.0001424551010131836,0.000054001808166503906,-0.00006395578384399414,0.00018909573554992676,-0.00014507770538330078,0.00008353590965270996,-0.00010162591934204102,0.0005299746990203857,0.000017434358596801758,-0.00013780593872070312,-0.00014072656631469727,-0.000015854835510253906,-0.00002002716064453125,-0.00005441904067993164,-1.2516975402832031e-6,-0.000016927719116210938,0.00016480684280395508,0.00041171908378601074,-0.00017559528350830078,0.00014159083366394043,0.0002429187297821045,0.00021860003471374512,-0.00004029273986816406,0.0004150867462158203,-0.00004762411117553711,0.00006383657455444336,0.0002942979335784912,7.748603820800781e-6,0.00003960728645324707,0.000027388334274291992,-0.00003790855407714844,0.000011056661605834961,0.00011265277862548828,0.00005778670310974121,-0.0013222098350524902,0.00001099705696105957,-8.344650268554688e-6,0.0022065937519073486,0.005291998386383057,-0.00006622076034545898,-0.004418075084686279,-0.00006097555160522461,-0.00009429454803466797,0.0013254880905151367,-0.00014674663543701172,0.0004911422729492188,-0.00014281272888183594,0.0002702474594116211,0.000017255544662475586,0.0000254213809967041,0.00034558773040771484,-0.000010967254638671875,-0.000010013580322265625,0.000045418739318847656,-0.00013244152069091797,-0.000020444393157958984,-0.000016570091247558594,0.0003484487533569336,5.066394805908203e-7,0.00019156932830810547,-0.00009006261825561523,-0.00022393465042114258,0.00016388297080993652,-0.0002777576446533203,0.0001341402530670166,0.000038743019104003906,-0.00003641843795776367,0.00017714500427246094,0.000025719404220581055,0.0001552104949951172,-1.7881393432617188e-6,0.00006213784217834473,0.0001316070556640625,0.00010982155799865723,0.0008836090564727783,0.00007787346839904785,0.00007542967796325684,0.000048279762268066406,0.00006008148193359375,0.00003764033317565918,0.0001601874828338623,-0.0001499652862548828,0.00003916025161743164,0.0000546872615814209,0.00011843442916870117,0.00001665949821472168,0.00003987550735473633,-0.00019466876983642578,0.0000254213809967041,-0.000049054622650146484,0.00027313828468322754,-0.000080108642578125,-0.00006765127182006836,0.0003840327262878418,-0.000056684017181396484,0.00001677870750427246,-0.00010341405868530273,0.00016221404075622559,0.000048220157623291016,-0.00010126829147338867,-0.00016075372695922852,-0.0001227259635925293,-0.00010311603546142578,-0.000022709369659423828,-0.00015342235565185547,0.000052362680435180664,-4.470348358154297e-6,0.00012236833572387695,-0.00016045570373535156,0.00007578730583190918,-0.00023990869522094727,-0.0001914501190185547,-0.00008279085159301758,-0.00007343292236328125,-0.0008326172828674316,-0.00001823902130126953,-0.0007087588310241699,-0.00010222196578979492,-0.0041945576667785645,-0.00006508827209472656,0.0008530318737030029,0.0009375810623168945,0.000019341707229614258,-0.000024139881134033203,0.0012004971504211426,0.00011548399925231934,0.0001895427703857422,0.0004284381866455078,-0.00008600950241088867,0.00010529160499572754,0.00011485815048217773,-6.67572021484375e-6,0.00008240342140197754,-0.00004380941390991211,0.00015813112258911133,0.0005284547805786133,0.0008274614810943604,0.00005117058753967285,0.000456392765045166,-0.00001436471939086914,0.00013241171836853027,-0.00004076957702636719,-0.00002199411392211914,-0.00012421607971191406,-0.00017023086547851562,0.00014799833297729492,-0.00013178586959838867,0.00009930133819580078,0.00009962916374206543,0.000015109777450561523,0.000029087066650390625,-0.00010603666305541992,-0.00008636713027954102,-0.0001437067985534668,-0.00013703107833862305,0.00001239776611328125,0.00003311038017272949,0.00003993511199951172,-0.00020122528076171875,0.00010249018669128418,0.00008651614189147949,-0.00002574920654296875,0.00043967366218566895,-9.715557098388672e-6,-0.00009042024612426758,-0.00006175041198730469,-0.00009500980377197266,0.000014275312423706055,0.00021925568580627441,-0.0000514984130859375,0.0006403326988220215,0.0000622868537902832,-0.00042569637298583984,-0.00005894899368286133,0.0002613663673400879,0.000448375940322876,-0.00004220008850097656,0.000045418739318847656,-2.980232238769531e-7,-0.000032782554626464844,-0.0000826716423034668,-0.0000832676887512207,0.00008875131607055664,0.0010144412517547607,0.00007578730583190918,-0.000018775463104248047,0.0031089186668395996,0.0005257129669189453,-0.00007152557373046875,0.0001252591609954834,0.00026038289070129395,0.0001265406608581543,-8.64267349243164e-6,-0.00002372264862060547,0.0017885863780975342,-0.00002378225326538086,-0.00006216764450073242,-0.00016635656356811523,0.0001195371150970459,0.000011086463928222656,0.00010848045349121094,-0.000054836273193359375,-0.00009459257125854492,-0.000056743621826171875,-0.00026619434356689453,0.00003841519355773926,-0.000041425228118896484,0.0000298917293548584,-0.0001856088638305664,-0.0007587671279907227,-0.00013715028762817383,0.0009095072746276855,-0.00016045570373535156,0.0002684295177459717,0.00003266334533691406,0.0001531839370727539,0.00005778670310974121,0.0009407997131347656,0.000041037797927856445,-0.00020772218704223633,-0.00006699562072753906,-0.00013840198516845703,-0.000037729740142822266,0.007404327392578125,-0.0000489354133605957,-0.00009745359420776367,-0.00019782781600952148,0.00002422928810119629,-0.0000731348991394043,-0.000246584415435791,-0.00012737512588500977,-0.00004947185516357422,-0.00019246339797973633,0.000010371208190917969,-0.000010311603546142578,-0.00005835294723510742,-0.000025033950805664062,0.00011652708053588867,0.00020635128021240234,0.00003999471664428711,-0.00011289119720458984,0.000047653913497924805,-0.0002627372741699219,3.9637088775634766e-6,0.0006329715251922607,-9.298324584960938e-6,-0.00035500526428222656,0.000019282102584838867,-2.9206275939941406e-6,5.811452865600586e-6,-0.000036716461181640625,-0.000010013580322265625,0.00047320127487182617,0.00015267729759216309,-0.000027000904083251953,-0.000020384788513183594,-0.00043839216232299805,-2.3245811462402344e-6,0.0001836717128753662,0.000034689903259277344,-0.00006896257400512695,-0.00014281272888183594,-0.000012576580047607422,0.0006558001041412354,0.000038743019104003906,0.00003680586814880371,0.000013887882232666016,0.000016808509826660156,0.0010871589183807373,0.00023862719535827637,-0.000014781951904296875,7.331371307373047e-6,0.0004343390464782715,0.00017532706260681152,-0.00014132261276245117,0.00009936094284057617,-0.00005650520324707031,0.0003961622714996338,0.001109689474105835,0.00007915496826171875,0.0015815496444702148,-0.00012099742889404297,0.00034859776496887207,-0.00006216764450073242,0.000041037797927856445,-0.000010073184967041016,0.0000374913215637207,-0.00012218952178955078,-0.00007218122482299805,0.00019782781600952148,-4.351139068603516e-6,0.00044402480125427246,0.0006433725357055664,-0.000164031982421875,-0.000027239322662353516,-0.00007367134094238281,0.0009597539901733398,0.0008310377597808838,0.0003269612789154053,0.00029164552688598633,-0.00005835294723510742,0.000046312808990478516,-0.0001901388168334961,-0.0001137852668762207,0.0001596212387084961,-0.00008690357208251953,0.00008615851402282715,-0.00006622076034545898,0.00004038214683532715,-0.000043392181396484375,-0.00003224611282348633,-0.00027424097061157227,0.000021755695343017578,-0.00025856494903564453,-0.00005030632019042969,-0.000028848648071289062,-0.00002676248550415039,0.002356022596359253,0.00012424588203430176,0.000011056661605834961,-0.0003839731216430664,0.00004902482032775879,-0.00006556510925292969,0.00018784403800964355,-0.000029981136322021484,0.00039759278297424316,-0.000019550323486328125,0.00013276934623718262,0.0014253556728363037,0.00017648935317993164,-0.00003403425216674805,-0.00009924173355102539,0.0005148947238922119,-0.00010776519775390625,0.0000642538070678711,0.00032836198806762695,-0.00007903575897216797,-0.00002580881118774414,0.00012630224227905273,0.00017440319061279297,-0.000024557113647460938,-0.000024080276489257812,0.0000298917293548584,0.0000737607479095459,-0.00001627206802368164,0.00005397200584411621,-0.00011873245239257812,0.0010547041893005371,0.00504755973815918,3.9637088775634766e-6,0.00007963180541992188,0.00014579296112060547,-6.67572021484375e-6,-0.00004363059997558594,0.00010699033737182617,-0.000011861324310302734,-1.0728836059570312e-6,0.0002949833869934082,1.6391277313232422e-6,0.00010704994201660156,0.00006654858589172363,0.0003961622714996338,-0.00005173683166503906,0.000043720006942749023,-0.0001462697982788086,0.00003275275230407715,0.000058531761169433594,0.00005939602851867676,0.00007456541061401367,0.00045618414878845215,-0.0001575946807861328,0.00008717179298400879,0.0003941953182220459,0.000011712312698364258,0.0001697540283203125,-0.00004029273986816406,-0.00040012598037719727,-0.00021249055862426758,0.0012807250022888184,0.0003603994846343994,-0.000024318695068359375,-0.0001163482666015625,0.0001614093780517578,0.00005111098289489746,-0.000023126602172851562,-0.00003319978713989258,-0.00007158517837524414,0.0001348555088043213,-0.00008016824722290039,0.000023305416107177734,0.00172463059425354,3.0100345611572266e-6,-0.00006341934204101562,-0.000052869319915771484,0.00009086728096008301,0.00005131959915161133,0.000155717134475708,9.238719940185547e-6,0.00033912062644958496,-0.0003822445869445801,-0.00011461973190307617,-6.4373016357421875e-6,-0.00006645917892456055,0.000029742717742919922,-0.00003170967102050781,-0.00015968084335327148,0.00020307302474975586,0.000038743019104003906,-0.00006651878356933594,0.00023052096366882324,3.0100345611572266e-6,7.569789886474609e-6,0.0002987980842590332,0.0002408921718597412,-0.000018358230590820312,0.00035384297370910645,-0.00005805492401123047,0.00001093745231628418,0.000039517879486083984,-1.1920928955078125e-6,-0.00010836124420166016,-0.000011265277862548828,0.0075265467166900635,0.00006008148193359375,0.00023564696311950684,0.00014477968215942383,0.00006341934204101562,0.000039517879486083984,0.0003508925437927246,-0.00013762712478637695,0.00025907158851623535,-0.00006514787673950195,0.000032007694244384766,0.0004564225673675537,0.0006086826324462891,0.0004254281520843506,-0.00008046627044677734,-8.881092071533203e-6,0.00007167458534240723,-0.0016456246376037598,-0.00007790327072143555,-0.000043392181396484375,-0.00006961822509765625,0.00016257166862487793,-0.00021779537200927734,0.00003185868263244629,-0.00006175041198730469,0.0011184215545654297,-0.0002079606056213379,0.00008448958396911621,0.000530540943145752,-0.000014543533325195312,-0.00006097555160522461,0.0005841255187988281,-0.000056743621826171875,0.000029087066650390625,0.00009694695472717285,0.00007542967796325684,0.00006911158561706543,0.00010526180267333984,-3.933906555175781e-6,0.0000655055046081543,-0.000023066997528076172,0.0005117058753967285,0.00013065338134765625,0.0002790391445159912,0.000026971101760864258,-0.00017827749252319336,-0.00005930662155151367,3.0100345611572266e-6,0.0002098679542541504,0.0014828145503997803,0.0008340179920196533,0.000054776668548583984,-0.0000349879264831543,0.000046372413635253906,-0.00006031990051269531,0.00008016824722290039,-8.761882781982422e-6,-0.00015115737915039062,-2.9206275939941406e-6,0.00020006299018859863,-0.00011605024337768555,-0.00004887580871582031,-0.000793159008026123,0.000043720006942749023,-8.761882781982422e-6,0.000028640031814575195,-0.00011551380157470703,0.00001239776611328125,0.00069388747215271,0.0001379847526550293,-0.0001615285873413086,0.000049442052841186523,-0.00006645917892456055,0.0002759993076324463,0.000010281801223754883,-0.00016045570373535156,0.0001392662525177002,0.0001501142978668213,0.0000959634780883789,0.00001093745231628418,-0.00022524595260620117,0.00020828843116760254,-0.00002199411392211914,0.000026553869247436523,-0.000037670135498046875,-0.00011289119720458984,0.00009638071060180664,-0.00004029273986816406,-0.00016045570373535156,-0.000058710575103759766,0.0020170211791992188,-0.00002092123031616211,-0.000017583370208740234,-0.00013118982315063477,-0.00004947185516357422,0.00006341934204101562,0.00012055039405822754,-0.00012302398681640625,-0.000021457672119140625,-0.00006717443466186523,0.000012993812561035156,0.0004381239414215088,-0.000050902366638183594,0.0006940066814422607,-0.00003445148468017578,0.31808745861053467,0.00021842122077941895,0.00020116567611694336,-0.000010609626770019531,-0.00012761354446411133,-0.0000393986701965332,-0.00002372264862060547,0.00011542439460754395,0.0001888275146484375,0.00020968914031982422,-0.00011175870895385742,0.000043839216232299805,-0.00029855966567993164,-0.00004309415817260742,0.0026486217975616455,0.00005194544792175293,-0.00005990266799926758,-0.00005239248275756836,0.00018993020057678223,0.00013309717178344727,0.000011056661605834961,-0.0000400543212890625,-0.00017023086547851562,7.063150405883789e-6,-0.00004869699478149414,-0.00008690357208251953,0.0005363523960113525,-0.00006455183029174805,0.0005677938461303711,0.000020176172256469727,-0.00001049041748046875,-0.000037789344787597656,-0.0003898739814758301,0.00005176663398742676,0.000051349401473999023,0.000028371810913085938,-0.00004583597183227539,0.00012484192848205566,0.0001392662525177002,0.00009062886238098145,-2.980232238769531e-7,0.000825732946395874,0.00014868378639221191,0.0001696944236755371,0.00018829107284545898,-0.00004786252975463867,0.00045999884605407715,0.00005123019218444824,0.00005391240119934082,0.0005907714366912842,-0.0006937384605407715,-0.00002199411392211914,0.000032275915145874023,0.00013822317123413086,-0.00022518634796142578,-0.000017881393432617188,0.00003266334533691406,-0.00014150142669677734,-3.2782554626464844e-6,4.500150680541992e-6,0.0006263852119445801,0.00007930397987365723,0.0001112520694732666,-0.00003904104232788086,-0.00016045570373535156,0.00007933378219604492,0.0001265108585357666,0.00009196996688842773,-0.00007623434066772461,-0.000011622905731201172,-6.4373016357421875e-6,9.000301361083984e-6,7.778406143188477e-6,0.000364452600479126,-0.00016021728515625,0.00030490756034851074,-0.00002872943878173828,-0.00003331899642944336,9.119510650634766e-6,0.00033020973205566406,0.00008895993232727051,0.000352710485458374,0.00006687641143798828,0.00025537610054016113,0.00009340047836303711,1.4603137969970703e-6,0.000014573335647583008,-0.0001131892204284668,0.0005371570587158203,0.0002281665802001953,0.0003352165222167969,0.000035136938095092773,0.0000196993350982666,-0.00003075599670410156,-0.00007712841033935547,0.00006508827209472656,-0.00014221668243408203,0.00028651952743530273,0.000026464462280273438,-0.000043511390686035156,0.00011664628982543945,0.00005182623863220215,-0.00006175041198730469,-0.00011557340621948242,-0.00047981739044189453,-0.00005501508712768555,-0.00005173683166503906,0.00020486116409301758,-0.00009000301361083984,0.0001334846019744873,0.000046133995056152344,-0.00011199712753295898,0.000057309865951538086,0.000055164098739624023,-0.00007021427154541016,-0.00008213520050048828,-0.0005948543548583984,0.0004595518112182617,-0.0000502467155456543,-0.00011968612670898438,2.950429916381836e-6,3.9637088775634766e-6,-0.00010091066360473633,0.00020685791969299316,-0.0019667744636535645,0.000039637088775634766,-0.00001728534698486328,0.0007398128509521484,0.0004901885986328125,-0.00007021427154541016,0.0005512535572052002,-0.000010132789611816406,0.00010564923286437988,0.000029206275939941406,0.0009828805923461914,0.0007458925247192383,0.00022298097610473633,-0.00008064508438110352,-0.00031441450119018555,0.00004622340202331543,0.00025957822799682617,-0.00017589330673217773,0.0002530217170715332,0.00017854571342468262,0.00012221932411193848,0.0001150369644165039,-0.00015735626220703125,-1.1920928955078125e-6,-0.0000400543212890625,0.00012242794036865234,0.0001138448715209961,-0.000016391277313232422,-0.00007069110870361328,0.00003865361213684082,0.000045746564865112305,-0.00006562471389770508,-1.1920928955078125e-6,-0.0001297593116760254,-0.00014013051986694336,0.00009170174598693848,0.000030606985092163086,-0.0001080632209777832,0.000028371810913085938,0.000012010335922241211,-0.0001329183578491211,0.000016689300537109375,-1.0132789611816406e-6,0.00016051530838012695,-0.000010609626770019531,0.00017687678337097168,-0.000010013580322265625,0.00021722912788391113,-0.000056803226470947266,0.0001640021800994873,-0.00030559301376342773,0.0006647408008575439,-0.00004082918167114258,-0.0000826120376586914,0.00009205937385559082,0.00014761090278625488,0.00012445449829101562,0.000043392181396484375,0.0001557767391204834,-0.00008088350296020508,-0.00012415647506713867,-0.00014013051986694336,-0.0001677870750427246,-0.00018537044525146484,-0.000011146068572998047,0.0007800459861755371,-0.00008296966552734375,-0.00006592273712158203,0.00004845857620239258,0.00006705522537231445,-0.0005903244018554688,-0.0001881122589111328,-0.00032401084899902344,0.00023132562637329102,-0.00021779537200927734,-0.00002199411392211914,0.000045418739318847656,0.00012093782424926758,-0.00009196996688842773,-0.00003314018249511719,0.00002378225326538086,-2.1457672119140625e-6,0.00002434849739074707,0.000023096799850463867,0.00009694695472717285,-0.00002104043960571289,0.000026464462280273438,2.86102294921875e-6,-0.00007140636444091797,0.000024259090423583984,-0.00019347667694091797,0.0002339184284210205,-0.000038564205169677734,-0.00010156631469726562,1.4007091522216797e-6,0.0004532933235168457,0.00003993511199951172,-0.00002372264862060547,0.00023031234741210938,-0.00005310773849487305,0.0019401609897613525,-0.0000908970832824707,-0.00007098913192749023,0.000051409006118774414,0.0001361370086669922,-0.00006884336471557617,0.00025540590286254883,9.000301361083984e-6,-0.00013500452041625977,-0.00018036365509033203,-0.00011593103408813477,0.0003141164779663086,-0.00003451108932495117,-0.00003719329833984375,0.0000254213809967041,-0.000011265277862548828,0.00027486681938171387,0.0018061399459838867,-0.00009322166442871094,-0.000010728836059570312,0.00004583597183227539,0.00020867586135864258,-0.00015163421630859375,0.00027063488960266113,0.000049740076065063477,-0.00010204315185546875,-0.000045180320739746094,-0.00002950429916381836,-0.000029027462005615234,0.00020259618759155273,-0.00017505884170532227,0.00008845329284667969,0.0005846619606018066,0.0005157291889190674,-0.00006103515625,0.00015610456466674805,-0.00013703107833862305,3.5762786865234375e-7,0.0007618069648742676,0.00023725628852844238,-0.00003898143768310547,-0.0000324249267578125,0.00040727853775024414,0.00007739663124084473,0.00003522634506225586,0.00022685527801513672,0.0033787190914154053,-0.00036269426345825195,2.8908252716064453e-6,0.0005964338779449463,0.000030159950256347656,-0.000011146068572998047,0.0003689229488372803,0.000046193599700927734,0.0002911686897277832,-0.000018775463104248047,0.00004985928535461426,0.00003018975257873535,-0.00044041872024536133,-0.0007075667381286621,0.0002326369285583496,0.0000254213809967041,1.6689300537109375e-6,-2.86102294921875e-6,0.002922743558883667,-0.0001590251922607422,-0.00007975101470947266,0.0000165402889251709,-0.00005894899368286133,0.0000241696834564209,-0.00008285045623779297,-0.00003612041473388672,0.000056803226470947266,0.00016754865646362305,-0.00010323524475097656,-0.00005453824996948242,-0.00046634674072265625,-0.00002950429916381836,0.00010889768600463867,-0.000020205974578857422,-0.000038683414459228516,0.000038743019104003906,-0.00006711483001708984,0.000011712312698364258,0.00028818845748901367,-4.351139068603516e-6,0.0013106167316436768,0.00014477968215942383,-0.00007921457290649414,-0.00005549192428588867,-0.0002855658531188965,-0.000302731990814209,0.00023311376571655273,-0.00013703107833862305,0.0002963542938232422,0.00005352497100830078,0.0005941689014434814,0.00018492341041564941,0.00011709332466125488,-0.000010848045349121094,-0.00010895729064941406,-0.00002008676528930664,0.004773199558258057,0.00023868680000305176,-0.00005537271499633789,0.0000432431697845459,0.000025153160095214844,0.0002657175064086914,0.000039517879486083984,-0.0001901388168334961,-0.00006175041198730469,0.00013053417205810547,-0.00004029273986816406,0.00022920966148376465,0.000652313232421875,0.0000298917293548584,0.0001093745231628418,-0.00008291006088256836,-0.00021922588348388672,-0.00018644332885742188,0.0009926557540893555,3.844499588012695e-6,-0.00004309415817260742,-0.00003129243850708008,-0.000057578086853027344,0.00003692507743835449,0.00011393427848815918,0.00007620453834533691,0.0002695620059967041,-0.0001327991485595703,0.00013884902000427246,0.00017318129539489746,0.0004583001136779785,-0.000033855438232421875,0.00013649463653564453,-0.00007337331771850586,0.00005182623863220215,-3.159046173095703e-6,1.430511474609375e-6,0.0002072751522064209,0.0000890195369720459,-0.0001570582389831543,-0.00008368492126464844,0.00007593631744384766,0.0000731348991394043,-0.00006175041198730469,0.0001754164695739746,0.0003961622714996338,0.000012993812561035156,0.000051409006118774414,-0.000052809715270996094,0.00003629922866821289,-0.00012046098709106445,-0.0001901388168334961,0.00003853440284729004,0.00005778670310974121,0.00012105703353881836,-0.0000883340835571289,0.00013235211372375488,0.0000991523265838623,-0.0001532435417175293,0.0011962652206420898,-0.00002682209014892578,-0.00001728534698486328,0.00014254450798034668,0.00013458728790283203,-0.000037550926208496094,0.00031632184982299805,0.0001742243766784668,0.00003337860107421875,-0.00003904104232788086,0.00009271502494812012,-0.0020911097526550293,0.00009137392044067383,0.0010845959186553955,-0.00023037195205688477,-0.000053882598876953125,-7.867813110351562e-6,-0.0001334547996520996,0.001875549554824829,0.0003803372383117676,-0.000019371509552001953,0.0000603795051574707,-0.00013530254364013672,-0.000046372413635253906,-0.00001823902130126953,0.000056415796279907227,0.00006154179573059082,0.0004950761795043945,0.00016075372695922852,-5.781650543212891e-6,0.000038743019104003906,-0.00023627281188964844,-0.000018715858459472656,-0.002343416213989258,-0.000057756900787353516,-0.00019466876983642578,-0.00003224611282348633,0.0002512037754058838,-0.00028067827224731445,-0.00011289119720458984,0.00023931264877319336,1.0003868341445923,-0.00007772445678710938,0.00023344159126281738,0.000018298625946044922,-1.1920928955078125e-6,0.00023511052131652832,-0.00030601024627685547,-0.0002751350402832031,0.000011056661605834961,-0.00021910667419433594,-1.8477439880371094e-6,0.00003764033317565918,-0.00006860494613647461,0.00011625885963439941,-0.0000514984130859375,-0.00010776519775390625,0.00008913874626159668,-0.00008744001388549805,-0.000051140785217285156,-0.00014150142669677734,0.000258713960647583,0.00348818302154541,0.0001920759677886963,0.0002257227897644043,0.00007304549217224121,-0.000048279762268066406,0.00004595518112182617,-0.00006258487701416016,-0.00010573863983154297,-0.00015670061111450195,0.0012691020965576172,0.00011026859283447266,0.0004897117614746094,-0.00019496679306030273,-0.00003635883331298828,0.000314176082611084,-7.62939453125e-6,0.00010415911674499512,-0.00012421607971191406,0.00010469555854797363,-0.000039696693420410156,7.18235969543457e-6,-0.00011962652206420898,0.000039637088775634766,-0.0002091526985168457,0.0000673532485961914,-0.00047576427459716797,0.00011664628982543945,-0.00003838539123535156,-0.00004696846008300781,-0.00017017126083374023,-0.000046133995056152344,-0.00009375810623168945,-0.00004470348358154297,0.0020770132541656494,-0.00001233816146850586,0.00012215971946716309,0.00010439753532409668,0.001260519027709961,-0.000017940998077392578,-0.00004214048385620117,1.5497207641601562e-6,0.00010895729064941406,-0.000020563602447509766,0.00019845366477966309,0.0000692605972290039,-0.00003814697265625,-7.152557373046875e-7,-0.00015026330947875977,-0.000029146671295166016,-0.00006175041198730469,-0.000041425228118896484,-0.0000693202018737793,-0.00008690357208251953,-0.000010013580322265625,7.12275505065918e-6,0.0000591278076171875,-0.000030338764190673828,0.0009763538837432861,-0.00006210803985595703,0.00011539459228515625,0.001177668571472168,-0.00014126300811767578,-0.00006943941116333008,-0.000021457672119140625,-0.00008189678192138672,0.0008236169815063477,-1.1920928955078125e-6,0.00010150671005249023,0.0000781714916229248,-0.00004011392593383789,0.000014871358871459961,7.12275505065918e-6,0.000028848648071289062,-0.0001347661018371582,-0.000010728836059570312,0.0001010596752166748,-0.00027108192443847656,0.00003764033317565918,0.000012636184692382812,0.001036524772644043,1.0087215900421143,0.00008603930473327637,-0.00013768672943115234,-0.00037223100662231445,-0.0005692839622497559,-4.0531158447265625e-6,0.000015944242477416992,-0.00008183717727661133,0.00005397200584411621,0.00005391240119934082,0.0005032718181610107,-0.000045180320739746094,0.00021025538444519043,0.00003045797348022461,-0.00008016824722290039,-0.000021278858184814453,0.0008064806461334229,-0.00007969141006469727,-0.00014507770538330078,0.000764697790145874,-0.00006896257400512695,-0.000029742717742919922,-0.0015646815299987793,0.00011652708053588867,-0.000023424625396728516,0.00001099705696105957,-0.00014096498489379883,-0.0011262297630310059,0.00007939338684082031,-0.0004246234893798828,-0.0003229975700378418,-0.0001869797706604004,0.0002937018871307373,0.00003102421760559082,-2.9206275939941406e-6,-0.000033795833587646484,0.00009039044380187988,-0.00004976987838745117,-0.00067901611328125,2.1457672119140625e-6,-0.0003625154495239258,-0.000010132789611816406,-0.00013023614883422852,0.00004336237907409668,-0.00018399953842163086,0.000020056962966918945,0.000033527612686157227,-0.00005745887756347656,-0.00013870000839233398,0.000061005353927612305,0.0004118680953979492,0.0001633763313293457,0.0001640915870666504,0.000041037797927856445,0.00021582841873168945,0.00004589557647705078,0.00035059452056884766,-0.0006142854690551758,-0.00008296966552734375,0.00010183453559875488,-0.0001697540283203125,0.0002747476100921631,0.00038185715675354004,0.00004190206527709961,-0.00011289119720458984,-0.000056684017181396484,8.672475814819336e-6,-0.00008285045623779297,0.000041931867599487305,-0.00005620718002319336,-0.000013828277587890625,0.00022047758102416992,-4.351139068603516e-6,-0.00010949373245239258,0.0002484321594238281,0.00010889768600463867,-0.00005888938903808594,-0.00007700920104980469,0.00007578730583190918,-0.00018459558486938477,0.00042000412940979004,-0.00001138448715209961,-0.000059723854064941406,0.00004139542579650879,-0.00012451410293579102,0.00001436471939086914,-0.00004947185516357422,-9.179115295410156e-6,-0.00009208917617797852,0.00018027424812316895,-0.00003510713577270508,0.000011056661605834961,-0.00006455183029174805,0.00010117888450622559,-0.0000730752944946289,0.0003085136413574219,-0.0001093745231628418,0.00018098950386047363,0.000013768672943115234,0.00002446770668029785,-0.0003123283386230469,-0.00011402368545532227,0.000039190053939819336,0.000024139881134033203,0.00015014410018920898,0.00012633204460144043,0.000341564416885376,-0.00013881921768188477,-0.000045180320739746094,0.000043958425521850586,-0.00010228157043457031,-0.00010758638381958008,0.00009515881538391113,-4.351139068603516e-6,0.0002936720848083496,0.000529944896697998,-0.00017201900482177734,-0.00012052059173583984,-0.000049591064453125,0.00006121397018432617,-0.000046312808990478516,0.00016757845878601074,0.0000661313533782959,0.000015079975128173828,0.00004929304122924805,-0.00009250640869140625,0.00010690093040466309,0.00016096234321594238,0.00005218386650085449,-0.00013786554336547852,-0.00045883655548095703,-0.00004935264587402344,-0.0004392862319946289,0.00006970763206481934,0.00029528141021728516,-0.000047147274017333984,-0.0002980232238769531,0.00006908178329467773,-0.000021159648895263672,-0.00002372264862060547,-0.00002968311309814453,-0.000016391277313232422,-0.00007551908493041992,0.00009009242057800293,0.000193864107131958,-0.00046765804290771484,0.00023192167282104492,-0.00011664628982543945,-0.00030690431594848633,0.000059604644775390625,-0.00007367134094238281,-0.00003600120544433594,-0.00010567903518676758,-0.000056803226470947266,-0.00011146068572998047,-0.000019848346710205078,0.00005778670310974121,-0.00011724233627319336,0.00002625584602355957,-0.000050961971282958984,-0.000021398067474365234,-0.00010007619857788086,0.00018808245658874512,-1.8477439880371094e-6,-0.000019788742065429688,-0.00009888410568237305,-0.00017023086547851562,-0.00020825862884521484,-0.000057816505432128906,1.6391277313232422e-6,-0.00001615285873413086,0.0005757808685302734,7.748603820800781e-6,0.0002982020378112793,-0.00003451108932495117,0.00038295984268188477,0.00037348270416259766,-0.00014138221740722656,0.00047150254249572754,-0.00019234418869018555,0.000023245811462402344,0.00006395578384399414,-0.00003552436828613281,0.00009647011756896973,0.0005761981010437012,0.00031745433807373047,0.00015947222709655762,-0.000052869319915771484,0.0005498528480529785,-0.00009524822235107422,-0.000030040740966796875,0.00012150406837463379,0.000021845102310180664,-0.00007903575897216797,0.00009292364120483398,-6.496906280517578e-6,0.000029921531677246094,-0.00006598234176635742,-0.00029212236404418945,0.00029605627059936523,-0.00004476308822631836,9.000301361083984e-6,-0.00015228986740112305,0.0002498328685760498,-0.000021457672119140625,0.0003685951232910156,0.00014898180961608887,0.00009989738464355469,-0.00012737512588500977,0.00017708539962768555,-0.00017136335372924805,0.00008615851402282715,0.00015044212341308594,0.00007304549217224121,0.00012728571891784668,-0.00003600120544433594,-0.00007331371307373047,-0.0001888871192932129,-0.00010734796524047852,-0.00005900859832763672,-8.761882781982422e-6,0.00018960237503051758,-0.00021272897720336914,0.0005817413330078125,9.804964065551758e-6,0.000014960765838623047,0.00008615851402282715,-0.0000209808349609375,0.0007527768611907959,-0.00004220008850097656,-0.00037235021591186523,0.00021222233772277832,0.00033485889434814453,0.0000686347484588623,-0.00008279085159301758,0.00004413723945617676,0.00034230947494506836,0.00015610456466674805,-0.000028908252716064453,2.2649765014648438e-6,-0.00003349781036376953,-0.0002072453498840332,-0.00011301040649414062,0.00014516711235046387,-4.172325134277344e-6,0.0002345740795135498,0.00027808547019958496,-0.00017023086547851562,-3.993511199951172e-6,0.0003819465637207031,0.00044855475425720215,-0.00005161762237548828,-0.00019669532775878906,-0.00005030632019042969,0.0003578066825866699,-0.000017344951629638672,0.0005161166191101074,-0.000014603137969970703,0.00008550286293029785,0.0001817643642425537,9.000301361083984e-6,0.00008258223533630371,-8.165836334228516e-6,0.00001099705696105957,0.0001971721649169922,-0.00004839897155761719,0.00006598234176635742,0.00010657310485839844,0.0001900196075439453,-0.00016456842422485352,-0.00003325939178466797,-0.000011265277862548828,0.0004184246063232422,-0.00007653236389160156,-0.00005555152893066406,-0.00017207860946655273,0.00004303455352783203,-0.00006151199340820312,0.0015815496444702148,0.0007964670658111572,-0.0002117156982421875,-0.000015854835510253906,-0.0001703500747680664,-0.000047147274017333984,-0.0001582503318786621,0.00002637505531311035,0.00022432208061218262,-0.000016570091247558594,0.0004343390464782715,0.00020334124565124512,-0.00012981891632080078,0.000038743019104003906,-0.00022560358047485352,0.000038623809814453125,-5.185604095458984e-6,0.00019499659538269043,-0.00006216764450073242,0.00027042627334594727,0.00024017691612243652,-0.0000851750373840332,-0.000020742416381835938,0.002068042755126953,-9.894371032714844e-6,0.00007963180541992188,0.0006750524044036865,0.0003387928009033203,0.00006112456321716309,-0.000027120113372802734,-0.0000654458999633789,-0.0001513361930847168,0.00003173947334289551,0.00007697939872741699,0.00004163384437561035,-0.000056803226470947266,0.000038743019104003906,-0.00022876262664794922,-0.0000661611557006836,-0.0001723766326904297,0.000017702579498291016,0.00015524029731750488,-0.00010985136032104492,-0.00006914138793945312,0.000056415796279907227,-0.00004416704177856445,-0.00002199411392211914,-0.00007027387619018555,0.00028079748153686523,-0.00001150369644165039,0.0002453327178955078,-0.00006818771362304688,0.0002784430980682373,-8.64267349243164e-6,-0.00006556510925292969,-0.000011146068572998047,0.00018805265426635742,0.00004252791404724121,-0.00014019012451171875,0.00025513768196105957,-0.000032007694244384766,-0.00004470348358154297,-0.00001615285873413086,0.0000731050968170166,-0.0002339482307434082,0.0000330805778503418,-0.000010907649993896484,0.0001723170280456543,-0.00004082918167114258,0.000033855438232421875,0.0008778572082519531,-0.00022464990615844727,0.0001614391803741455,-0.00010865926742553711,-5.364418029785156e-6,0.0000165402889251709,0.00005760788917541504,0.00008916854858398438,0.00008800625801086426,0.00047728419303894043,0.0001607835292816162,-0.00018334388732910156,-0.00008702278137207031,0.000030487775802612305,0.00002664327621459961,0.00008702278137207031,-0.0009887218475341797,-0.00010830163955688477,0.00008445978164672852,-0.00012737512588500977,0.0006105601787567139,0.000024199485778808594,-0.00021070241928100586,-0.00006306171417236328,0.00008878111839294434,-0.000024497509002685547,-0.00011301040649414062,-0.00006771087646484375,0.000011593103408813477,-0.00002092123031616211,2.384185791015625e-7,-0.00017023086547851562,-0.00010502338409423828,0.0005835294723510742,-0.000049233436584472656,-0.0003432631492614746,0.0001869499683380127,-0.00009679794311523438,-0.000095367431640625,-0.00029212236404418945,0.00001195073127746582,-0.000087738037109375,0.00003781914710998535,0.00011262297630310059,-0.00007319450378417969,2.4139881134033203e-6,-0.00026106834411621094,-0.00011718273162841797,0.00018864870071411133,-0.000020384788513183594,0.00003629922866821289,0.0010464191436767578,0.0001621842384338379,0.00003224611282348633,0.0007508397102355957,0.00022852420806884766,-0.000052869319915771484,0.00011625885963439941,0.00027117133140563965,-0.00010395050048828125,-0.00007355213165283203,0.00006175041198730469,0.00014325976371765137,-0.000020444393157958984,-0.000026464462280273438,-0.00006175041198730469,0.00013712048530578613,-0.00006824731826782227,3.1888484954833984e-6,0.0001779496669769287,0.004655003547668457,-0.000024080276489257812,-0.000011265277862548828,0.0011660456657409668,0.000012755393981933594,-0.00007414817810058594,0.00005173683166503906,1.0184556245803833,-0.00008571147918701172,0.00037360191345214844,0.0007800459861755371,-0.00007420778274536133,0.000027000904083251953,-0.000028371810913085938,0.00011163949966430664,0.000022023916244506836,0.000745624303817749,-0.00014597177505493164,0.0000292360782623291,5.8710575103759766e-6,-0.0001119375228881836,0.00011757016181945801,0.00006508827209472656,-0.000024080276489257812,-0.0013048648834228516,-0.000053882598876953125,0.0001825094223022461,-0.00005710124969482422,0.00004652142524719238,0.00024560093879699707,-0.00004416704177856445,-0.00016045570373535156,-0.00005036592483520508,-0.00022214651107788086,-0.00012415647506713867,0.00006556510925292969,-0.00012761354446411133,0.00004076957702636719,-0.00013822317123413086,0.0005757808685302734,-0.00010836124420166016,0.000033855438232421875,8.851289749145508e-6,0.00005117058753967285,0.00009268522262573242,4.976987838745117e-6,0.0002751648426055908,-0.00007146596908569336,-9.715557098388672e-6,-0.000335693359375,-0.00006729364395141602,0.00011745095252990723,-0.00003415346145629883,0.00010973215103149414,0.00025710463523864746,-0.00009584426879882812,0.0002416670322418213,-0.00003600120544433594,-0.000030040740966796875,-0.00011265277862548828,0.00019824504852294922,-0.00005328655242919922,-0.000022709369659423828,0.0006711781024932861,0.0011954307556152344,-0.00022047758102416992,-0.00003445148468017578,0.0001779496669769287,-0.00013595819473266602,-0.000034689903259277344,0.000028759241104125977,0.0000241696834564209,0.00006532669067382812,0.00010141730308532715,0.00005391240119934082,9.000301361083984e-6,0.0014383792877197266,-1.7881393432617188e-7,0.00001800060272216797,0.00009328126907348633,-0.00018334388732910156,-0.000011146068572998047,-0.00017023086547851562,-0.00006347894668579102,0.0001862049102783203,-0.0000349879264831543,0.0000298917293548584,-0.00013190507888793945,-0.00006830692291259766,-9.298324584960938e-6,-0.0000565648078918457,0.00002580881118774414,0.00036770105361938477,0.00025725364685058594,0.000027358531951904297,0.00026607513427734375,0.00031816959381103516,-0.000018537044525146484,-0.00002002716064453125,0.000022470951080322266,-1.8477439880371094e-6,0.000015228986740112305,-4.470348358154297e-6,0.00011917948722839355,0.000028759241104125977,-0.001032710075378418,8.255243301391602e-6,-0.00007712841033935547,0.00010132789611816406,-0.000023245811462402344,0.0000559687614440918,-0.00015044212341308594,0.000010162591934204102,0.000064849853515625,-0.00002759695053100586,-0.00021564960479736328,-4.351139068603516e-6,-0.00004494190216064453,-0.000026702880859375,0.00011646747589111328,0.00008419156074523926,-2.1457672119140625e-6,0.00020053982734680176,0.0003184080123901367,0.001975119113922119,0.000016242265701293945,-2.384185791015625e-6,0.0001666545867919922,0.0012909173965454102,0.0002301037311553955,0.00019985437393188477,0.0000909268856048584,-6.67572021484375e-6,-0.000048220157623291016,8.374452590942383e-6,-0.00005829334259033203,0.000010639429092407227,-0.000041544437408447266,0.00020751357078552246,-0.00004786252975463867,0.00004312396049499512,-0.000059604644775390625,4.082918167114258e-6,0.00035640597343444824,-0.00006622076034545898,0.0002644360065460205,-0.00013625621795654297,-0.0000349879264831543,0.0023232102394104004,0.00009521842002868652,-0.0007143020629882812,0.000013738870620727539,0.00011783838272094727,-9.715557098388672e-6,7.450580596923828e-7,0.00007832050323486328,-0.000021159648895263672,0.0015623271465301514,0.0000209808349609375,0.000045418739318847656,-0.00008744001388549805,0.0003101825714111328,0.00022277235984802246,0.00002300739288330078,0.00004509091377258301,-0.00011146068572998047,-0.00005745887756347656,-3.159046173095703e-6,-0.0001410841941833496,0.000024050474166870117,-0.00004857778549194336,-0.0005680322647094727,0.00028651952743530273,-5.4836273193359375e-6,0.00037658214569091797,-0.0014178156852722168,-0.00008702278137207031,0.0004526674747467041,0.00004699826240539551,0.0000623166561126709,1.2814998626708984e-6,-0.00004112720489501953,-0.0009093880653381348,0.0000832676887512207,0.00014960765838623047,0.00007271766662597656,0.00001621246337890625,-0.00003600120544433594,0.000030606985092163086,-0.0005013942718505859,-0.00007253885269165039,-0.00007981061935424805,-0.000011861324310302734,-0.0001266002655029297,0.0007370710372924805,-0.00005441904067993164,-0.000012159347534179688,0.00016859173774719238,0.000017911195755004883,-2.9206275939941406e-6,0.00043386220932006836,0.0009403526782989502,0.00022208690643310547,-0.00007641315460205078,0.000056415796279907227,-0.00008422136306762695,-0.0000400543212890625,-0.00012761354446411133,-0.00004363059997558594,-0.00005882978439331055,0.000314176082611084,-0.00034880638122558594,0.000736624002456665,0.00003692507743835449,-0.00023359060287475586,-0.00010353326797485352,-0.000030994415283203125,3.0100345611572266e-6,0.00006923079490661621,-0.00006985664367675781,-0.00009584426879882812,-0.0002275705337524414,0.008132874965667725,-0.00003075599670410156,0.00007027387619018555,0.0000667870044708252,0.00020256638526916504,0.00020548701286315918,0.00020930171012878418,-0.00003743171691894531,-0.00010627508163452148,0.000017434358596801758,0.0013747215270996094,0.00020185112953186035,-0.0006191730499267578,0.0001004338264465332,0.0003573298454284668,0.00017917156219482422,-0.000012576580047607422,0.00002187490463256836,-0.00009495019912719727,0.006038188934326172,-0.00014197826385498047,0.0001494884490966797,0.00009745359420776367,0.00006222724914550781,0.0001672506332397461,2.1457672119140625e-6,0.00008213520050048828,-0.000035762786865234375,-0.000044465065002441406,-0.00030875205993652344,0.00048103928565979004,-0.000011861324310302734,0.004509329795837402,-0.000025987625122070312,-0.0001837015151977539,-0.00009161233901977539,-0.00013208389282226562,0.00008907914161682129,0.000038683414459228516,0.00005182623863220215,-0.000052869319915771484,-0.00007712841033935547,0.0004075765609741211,0.0003998279571533203,-0.000015139579772949219,0.0015786290168762207,0.000087738037109375,0.00003471970558166504,0.01565346121788025,-0.000039696693420410156,-0.0006622672080993652,0.0002645254135131836,-0.00004309415817260742,0.000038117170333862305,2.592802047729492e-6,0.00014901161193847656,0.0012169480323791504,0.00009399652481079102,-0.00028514862060546875,-0.000043511390686035156,0.0001658797264099121,0.0002593696117401123,-0.0003453493118286133,0.0002817809581756592,-0.00010091066360473633,0.0001391768455505371,-0.00013524293899536133,0.0005136430263519287,0.000026941299438476562,-0.000023603439331054688,-0.00011515617370605469,-0.000022709369659423828,0.00024405121803283691,-0.00004029273986816406,-0.00009453296661376953,-0.00004935264587402344,-0.00006175041198730469,0.0004950761795043945,-4.410743713378906e-6,0.0001182854175567627,-0.000047087669372558594,-0.0006338357925415039,0.000014841556549072266,0.00009498000144958496,-0.000025331974029541016,0.00020390748977661133,0.00019618868827819824,-0.000110626220703125,-0.00021350383758544922,-0.000041425228118896484,-0.00016671419143676758,0.00010725855827331543,-0.00009161233901977539,0.0006235837936401367,0.000038564205169677734,0.00014349818229675293,0.00025275349617004395,0.000040590763092041016,0.000046372413635253906,-0.0002009868621826172,-0.0000998377799987793,-0.00005173683166503906,-0.0012410283088684082,-0.00015562772750854492,-0.00003331899642944336,0.000051409006118774414,0.00008615851402282715,-0.000018477439880371094,0.0002484321594238281,-0.0005284547805786133,-9.119510650634766e-6,-0.0006968379020690918,-0.0018134713172912598,0.00033420324325561523,0.0009375810623168945,0.00008639693260192871,-0.00003224611282348633,-0.00006753206253051758,-0.0000654458999633789,-0.0001646280288696289,-1.0132789611816406e-6,0.0001569688320159912,-0.000152587890625,0.000691533088684082,0.000035136938095092773,-0.00004792213439941406,-0.00010138750076293945,0.0009407997131347656,0.000014126300811767578,-0.0001901388168334961,-0.00006395578384399414,-0.000054895877838134766,-0.00004076957702636719,-0.00010764598846435547,-3.814697265625e-6,-0.00002288818359375,0.0001666247844696045,-0.0007026791572570801,-0.0001354813575744629,0.000032901763916015625,-0.0002918839454650879,-0.00026732683181762695,0.0000788271427154541,0.00007236003875732422,-0.00003075599670410156,-0.00016379356384277344,0.0005104243755340576,-0.00005054473876953125,0.00005695223808288574,0.00009319186210632324,-0.00006687641143798828,-0.00002676248550415039,0.0003406405448913574,-0.000024616718292236328,-0.00001239776611328125,0.00006940960884094238,-8.881092071533203e-6,0.00018364191055297852,-0.00008589029312133789,0.00007167458534240723,-0.000058710575103759766,0.00006338953971862793,0.00003999471664428711,0.000029385089874267578,-0.000039517879486083984,0.00005799531936645508,0.0001818537712097168,0.00014662742614746094,0.00007233023643493652,-0.00002199411392211914,-0.0005834698677062988,0.00042945146560668945,-0.00012171268463134766,0.0010508298873901367,0.000253140926361084,0.00001633167266845703,0.003268212080001831,-0.0001995563507080078,0.00012764334678649902,-0.000020265579223632812,0.00008416175842285156,0.00006148219108581543,-0.00020772218704223633,-0.0000584721565246582,0.00003457069396972656,-0.00009375810623168945,-0.000017583370208740234,0.0003961622714996338,-0.00004458427429199219,0.000023871660232543945,-4.172325134277344e-7,0.00010845065116882324,-0.00007265806198120117,-0.00016707181930541992,-0.00019305944442749023,-0.000056743621826171875,-0.00015097856521606445,0.00006970763206481934,0.00008317828178405762,0.0003469884395599365,1.996755599975586e-6,-0.00001436471939086914,0.0002905428409576416,0.000056415796279907227,0.00023725628852844238,-0.000018656253814697266,0.00004407763481140137,0.000015616416931152344,-0.00007277727127075195,-0.00012737512588500977,0.000021219253540039062,-4.5299530029296875e-6,0.00006276369094848633,-0.000049233436584472656,0.00015547871589660645,4.738569259643555e-6,-0.0000317692756652832,-0.0003103017807006836,0.00011944770812988281,0.0002357959747314453,0.00017708539962768555,1.0132789611816406e-6,0.00015714764595031738,0.00044605135917663574,0.001745760440826416,0.00017067790031433105,-0.00003701448440551758,0.00009927153587341309,-0.000049233436584472656,0.0000559687614440918,-0.00006568431854248047,0.000038564205169677734,-0.00003933906555175781,-0.00005525350570678711,0.0009301304817199707,9.506940841674805e-6,-0.00004583597183227539,0.00013443827629089355,0.00021663308143615723,0.00045797228813171387,-0.00009399652481079102,-0.00008690357208251953,0.000030368566513061523,-0.00003629922866821289,0.00006639957427978516,-0.00011289119720458984,0.00004920363426208496,-5.900859832763672e-6,-0.00014275312423706055,0.0003736913204193115,-0.00002199411392211914,0.000051409006118774414,-0.00007224082946777344,0.0013731718063354492,0.00010889768600463867,0.00010135769844055176,-0.00002849102020263672,-0.000023543834686279297,0.00004076957702636719,-0.00011652708053588867,0.00031125545501708984,-0.00005823373794555664,0.00020232796669006348,-0.00014209747314453125,-0.0002467632293701172,-0.000011920928955078125,0.00011223554611206055,0.00016552209854125977,0.0002835690975189209,-0.00011557340621948242,-0.00005745887756347656,0.00017219781875610352,-0.0001932382583618164,0.00007531046867370605,-0.00009310245513916016,0.000031441450119018555,0.000021636486053466797,-0.0015183687210083008,0.000039130449295043945,0.0003643035888671875,0.0006225109100341797,-0.00015246868133544922,0.00025784969329833984,-8.344650268554688e-7,0.00001755356788635254,0.000690847635269165,-0.00003916025161743164,-0.00007992982864379883,-0.000051975250244140625,9.387731552124023e-6,-0.000022590160369873047,-0.0002574324607849121,-0.000018656253814697266,-0.000056684017181396484,0.0001271069049835205,-0.00014573335647583008,-0.00003719329833984375,-0.00008064508438110352,0.00021025538444519043,0.00011226534843444824,0.00007295608520507812,0.00018340349197387695,-0.00005930662155151367,0.00005397200584411621,-0.00016945600509643555,-0.00006246566772460938,0.00017708539962768555,-0.00012969970703125,-4.172325134277344e-7,-0.000019311904907226562,0.0007363259792327881,0.000053495168685913086,-4.470348358154297e-6,0.000633925199508667,0.00041431188583374023,0.0007370710372924805,-0.00011199712753295898,-0.00001436471939086914,-4.708766937255859e-6,0.00013169646263122559,-0.000024378299713134766,0.00045868754386901855,0.00017780065536499023,0.000019341707229614258,0.0004343390464782715,-0.00007712841033935547,0.0005020499229431152,-0.000029146671295166016,0.0003037452697753906,-5.900859832763672e-6,0.000791698694229126,0.0006575286388397217,0.0003026723861694336,-0.00010496377944946289,0.0005331635475158691,-0.00007730722427368164,0.00016680359840393066,0.00005137920379638672,0.0000667572021484375,-0.00006508827209472656,-0.00003260374069213867,-4.5299530029296875e-6,-0.0000889897346496582,0.000038743019104003906,-0.0000400543212890625,0.002375096082687378,0.00045040249824523926,0.00009498000144958496,0.00007349252700805664,-0.00008213520050048828,-0.00010579824447631836,0.00001093745231628418,-0.0000870823860168457,-1.8477439880371094e-6,0.00007167458534240723,-0.0000922083854675293,-0.00024390220642089844,0.00007447600364685059,-0.000058710575103759766,-0.0001602768898010254,0.00016641616821289062,-0.00010836124420166016,0.00013372302055358887,-0.00009149312973022461,0.00027292966842651367,-0.00012767314910888672,0.00002434849739074707,0.0004812479019165039,-0.0001665949821472168,-0.00020843744277954102,-0.00008279085159301758,-0.00004279613494873047,-4.887580871582031e-6,0.00002917647361755371,-0.00007253885269165039,0.00006443262100219727,-0.000030338764190673828,-0.000053882598876953125,0.000016689300537109375,0.000012993812561035156,-0.0001703500747680664,-0.0004162788391113281,0.00006872415542602539,0.0003026127815246582,-0.00004357099533081055,-0.00014406442642211914,0.00007665157318115234,-0.00009500980377197266,-0.00021857023239135742,-0.00003081560134887695,-0.0000445246696472168,-0.0000616312026977539,-0.00016796588897705078,-0.00008291006088256836,0.00007832050323486328,0.0002586841583251953,0.00008979439735412598,0.0009567439556121826,0.000018298625946044922,-0.00008577108383178711,-4.351139068603516e-6,0.00005221366882324219,0.00002440810203552246,0.00025784969329833984,0.00034424662590026855,0.0007106661796569824,-0.000039517879486083984,-0.00004839897155761719,0.0008143782615661621,0.000033736228942871094,0.0005916953086853027,0.00006979703903198242,0.00024002790451049805,-0.000011980533599853516,-0.00008720159530639648,-0.000042557716369628906,0.000025719404220581055,0.00008431077003479004,-0.00007545948028564453,0.0004744529724121094,-1.1920928955078125e-6,0.00014135241508483887,0.0006210207939147949,0.00005447864532470703,0.00009572505950927734,-0.00003427267074584961,-0.0002523660659790039,-0.00007528066635131836,-0.00007873773574829102,0.00018456578254699707,-0.00002849102020263672,0.00016793608665466309,0.00014126300811767578,-0.0001621842384338379,0.0000991523265838623,0.00008505582809448242,-0.00009924173355102539,-0.00002199411392211914,0.0001697242259979248,0.00019738078117370605,-0.00011289119720458984,0.0003445744514465332,0.000010371208190917969,-0.00001043081283569336,-0.00007712841033935547,0.00044852495193481445,0.00007581710815429688,-0.00003135204315185547,-0.00005054473876953125,0.00021505355834960938,0.00004571676254272461,0.00034737586975097656,0.001233607530593872,0.0034908950328826904,0.00019380450248718262,0.00010254979133605957,-0.0000731348991394043,-0.00006389617919921875,-0.00041353702545166016,0.0004018247127532959,-0.00001919269561767578,-0.00003904104232788086,0.000010907649993896484,0.000015616416931152344,0.00021257996559143066,-0.00011783838272094727,-0.0001525282859802246,0.0005863010883331299,-0.00005650520324707031,0.0016044080257415771,0.0007280409336090088,-0.00003415346145629883,0.00006479024887084961,0.00003647804260253906,-1.0132789611816406e-6,0.00331878662109375,0.00018584728240966797,-0.0001266002655029297,0.00007387995719909668,-0.0001450181007385254,-0.00005429983139038086,-0.00003314018249511719,0.00020366907119750977,0.00015464425086975098,-0.0001919865608215332,-3.4570693969726562e-6,0.0008941292762756348,0.00003764033317565918,-0.00011074542999267578,-9.5367431640625e-6,-0.000019848346710205078,-0.000040531158447265625,0.0001944899559020996,0.00006598234176635742,0.00021183490753173828,0.00017893314361572266,-0.000018656253814697266,-0.00003170967102050781,-0.000016570091247558594,0.00011718273162841797,-0.0000661611557006836,0.0005636215209960938,-0.00020551681518554688,0.00001239776611328125,-0.000030219554901123047,-0.000049054622650146484,0.00022983551025390625,-9.953975677490234e-6,0.00018644332885742188,-0.00011301040649414062,-0.00008922815322875977,-0.00003314018249511719,-4.708766937255859e-6,0.00025451183319091797,-0.0000871419906616211,0.0019747912883758545,-1.9073486328125e-6,-0.00008744001388549805,0.00006052851676940918,-0.00006431341171264648,0.00009340047836303711,0.00002816319465637207,0.00010371208190917969,-0.00015461444854736328,-0.00006788969039916992,-0.00015854835510253906,0.00001677870750427246,-0.00031685829162597656,0.0003161132335662842,0.00002434849739074707,-0.00008726119995117188,-8.761882781982422e-6,-8.165836334228516e-6,-0.00007331371307373047,0.00006127357482910156,0.00010761618614196777,-0.00009655952453613281,0.00007089972496032715,-0.00002008676528930664,-0.0000883936882019043,-0.0015284419059753418,-0.000029027462005615234,-0.0000553131103515625,-0.000035643577575683594,0.00007304549217224121,-0.00008505582809448242,-0.000021457672119140625,0.0007075071334838867,0.0006789565086364746,0.000456392765045166,0.00012284517288208008,-0.000038683414459228516,0.00019156932830810547,-0.00019437074661254883,0.00008249282836914062,0.0003375411033630371,-0.00005835294723510742,0.00031509995460510254,0.00009432435035705566,0.00005537271499633789,0.000024050474166870117,-0.000012576580047607422,-0.00004607439041137695,0.00020706653594970703,-0.0001412034034729004,-0.00006747245788574219,-0.000013530254364013672,-0.0002846717834472656,0.0003459751605987549,-0.00003629922866821289,0.00007578730583190918,3.0100345611572266e-6,-0.00016516447067260742,0.00005996227264404297,0.00017410516738891602,-0.00004029273986816406,0.000038743019104003906,0.00011733174324035645,-0.000052094459533691406,0.0000470578670501709,-0.00004202127456665039,-0.00009638071060180664,0.000014781951904296875,0.00020831823348999023,-0.000049173831939697266,0.00007414817810058594,0.00013425946235656738,-2.9206275939941406e-6,0.000015735626220703125,-0.00006890296936035156,0.00011691451072692871,0.00019782781600952148,0.0005104243755340576,0.00003865361213684082,0.00027999281883239746,-0.00008302927017211914,-0.00005459785461425781,0.00018349289894104004,0.00012221932411193848,-0.00002002716064453125,-0.00014919042587280273,0.00003489851951599121,0.0006216168403625488,0.000015527009963989258,-0.00003415346145629883,0.00023815035820007324,0.00012725591659545898,0.00027939677238464355,-0.0005019903182983398,-5.7220458984375e-6,-0.00012624263763427734,0.000048220157623291016,-0.000060558319091796875,0.0012943148612976074,0.000290602445602417,0.00011017918586730957,0.00069388747215271,0.00046250224113464355,-0.00016045570373535156,0.00014725327491760254,-0.00008231401443481445,0.00003507733345031738,0.00016671419143676758,0.00019800662994384766,-0.000024497509002685547,-0.000011444091796875,-0.00013893842697143555,6.556510925292969e-7,0.00031763315200805664,0.00008019804954528809,-0.00003463029861450195,-0.00002568960189819336,0.000016510486602783203,-0.000056684017181396484,0.0000775754451751709,-0.00006175041198730469,-0.000057756900787353516,-0.000011086463928222656,0.0008706450462341309,0.0029019713401794434,0.00003764033317565918,0.0000787973403930664,-0.000622093677520752,-0.00010496377944946289,-0.0000928640365600586,-0.0000413060188293457,0.0003961622714996338,0.000021398067474365234,0.0021159350872039795,0.00012260675430297852,0.000011056661605834961,0.00015023350715637207,-0.0000152587890625,-0.0000718235969543457,-0.00006175041198730469,0.00021412968635559082,-0.00002771615982055664,0.00034818053245544434,0.00005179643630981445,0.00014328956604003906,-0.00001436471939086914,0.000011533498764038086,0.00004461407661437988,0.0010148286819458008,-0.00044095516204833984,0.00005930662155151367,0.00012424588203430176,0.00017374753952026367,0.000027239322662353516,-0.000015854835510253906,-0.0001779794692993164,-0.0001703500747680664,-0.00003641843795776367,-0.000501096248626709,0.000033915042877197266,-0.000023126602172851562,-0.00017392635345458984,-0.00024455785751342773,0.000012695789337158203,0.00010254979133605957,0.00022581219673156738,-0.00020331144332885742,0.00006467103958129883,0.000020116567611694336,0.000028371810913085938,-0.000022292137145996094,4.947185516357422e-6,-0.0020492076873779297,-0.00033789873123168945,0.0005476772785186768,0.0001449286937713623,-0.00018030405044555664,0.00001430511474609375,-0.00012612342834472656,-0.00003415346145629883,-0.0000870823860168457,0.0002937018871307373,-0.0000349879264831543,-0.0001552104949951172,-0.00009775161743164062,-0.00009745359420776367,-0.0000998377799987793,-0.00005519390106201172,-0.00021386146545410156,0.0001386702060699463,-0.00016045570373535156,-0.00016897916793823242,-0.00021785497665405273,-0.00003629922866821289,-0.00006532669067382812,-0.00003707408905029297,-0.000016570091247558594,0.00001341104507446289,-0.00013709068298339844,0.00012189149856567383,0.0004172325134277344,0.00012424588203430176,0.0004999637603759766,0.0003396272659301758,-1.7881393432617188e-7,0.00019559264183044434,0.0003254115581512451,0.00012314319610595703,-7.152557373046875e-7,0.0000393986701965332,0.00005227327346801758,0.0005920231342315674,0.00006046891212463379,0.0025355517864227295,-0.000019609928131103516,-0.00016045570373535156,0.00011229515075683594,0.00013574957847595215,-0.00001239776611328125,-0.001196146011352539,-0.00010091066360473633,-0.00006115436553955078,-0.0001633763313293457,0.0000374913215637207,0.0009527802467346191,-0.00005233287811279297,0.000020742416381835938,0.00003185868263244629,-0.00007992982864379883,0.00006851553916931152,0.0008163750171661377,-0.00004029273986816406,-0.00006753206253051758,0.000055670738220214844,-0.000054836273193359375,-0.00013619661331176758,0.00004073977470397949,-0.00016170740127563477,-0.000023603439331054688,0.00003692507743835449,-0.000015974044799804688,-0.000064849853515625,-0.000020205974578857422,-0.00018471479415893555,0.00005289912223815918,0.000029206275939941406,0.0005042850971221924,-0.00002372264862060547,0.000031501054763793945,-0.0000699758529663086,0.00006937980651855469,-0.000010967254638671875,-0.000012159347534179688,-0.00005352497100830078,0.00012969970703125,-0.0001939535140991211,0.00023260712623596191,-0.00013703107833862305,0.0007418990135192871,0.0001774430274963379,-0.00001138448715209961,0.0005669891834259033,-0.00020372867584228516,-0.00011360645294189453,-0.0004036426544189453,0.0002683699131011963,0.00008317828178405762,0.9982490539550781,-0.00003159046173095703,0.0000794827938079834,0.000030159950256347656,0.00006723403930664062,0.0002326667308807373,0.00028130412101745605,-0.00008690357208251953,-0.00003254413604736328,0.00014853477478027344,0.00019237399101257324,-0.0001525282859802246,-0.00004029273986816406,-0.00008219480514526367,0.00004073977470397949,-0.00026857852935791016,-0.00002676248550415039,0.0004950761795043945,0.00018399953842163086,-0.00010925531387329102,0.000031501054763793945,0.00005397200584411621,-0.00009196996688842773,0.00011867284774780273,-0.00023734569549560547,0.0005757808685302734,-0.00003820657730102539,-0.00008022785186767578,-0.00004678964614868164,0.0003374814987182617,0.00017368793487548828,0.005341857671737671,0.0004132390022277832,3.0100345611572266e-6,-0.00003743171691894531,0.00009438395500183105,-0.000025451183319091797,-0.00002676248550415039,-0.00006461143493652344,-0.00006252527236938477,0.0005765557289123535,0.0003794431686401367,0.0007134974002838135,-0.00008434057235717773,-0.00002944469451904297,6.705522537231445e-6,-0.00018095970153808594,-0.00005173683166503906,-0.00008213520050048828,-0.00007301568984985352,0.00007209181785583496,0.00005742907524108887,0.00007131695747375488,-0.00003713369369506836,-0.00001800060272216797,-0.00006252527236938477,0.001881331205368042,0.00014215707778930664,-0.00003135204315185547,0.0002148449420928955,0.00006568431854248047,0.00035387277603149414,-0.00007873773574829102,0.000028192996978759766,0.00005143880844116211,-0.00004947185516357422,-4.708766937255859e-6,-0.00011724233627319336,-0.00017279386520385742,0.0003218650817871094,0.00007027387619018555,0.0010507702827453613,-0.00003516674041748047,-0.0001551508903503418,0.000010371208190917969,-0.000052928924560546875,0.00015753507614135742,-0.00002104043960571289,0.00010910630226135254,0.000029653310775756836,0.00006970763206481934,-0.00010573863983154297,-0.000017583370208740234,-0.00003719329833984375,0.0000254213809967041,0.0002377927303314209,-0.0000623464584350586,0.00006598234176635742,-0.0001646876335144043,-0.00021213293075561523,0.00007516145706176758,-0.000011682510375976562,0.00014448165893554688,-0.00006461143493652344,-0.00011008977890014648,0.00003409385681152344,-0.00006508827209472656,0.00030478835105895996,-0.00006908178329467773,0.00008019804954528809,6.288290023803711e-6,-0.00006395578384399414,0.00013574957847595215,-0.0014451146125793457,0.0002944469451904297,0.0007665753364562988,-0.0000674128532409668,-0.00009429454803466797,-0.00009495019912719727,-0.00006985664367675781,-0.00003415346145629883,-0.000027894973754882812,3.0100345611572266e-6,0.000011980533599853516,-4.887580871582031e-6,-0.00011050701141357422,0.000017255544662475586,0.00017723441123962402,0.00014168024063110352,0.00004234910011291504,0.000010371208190917969,7.420778274536133e-6,0.00011211633682250977,-0.000054836273193359375,0.000010341405868530273,0.0005360245704650879,-0.00013458728790283203,0.00025856494903564453,0.00009080767631530762,-9.000301361083984e-6,0.0000890493392944336,0.00019064545631408691,-0.00008910894393920898,0.00014853477478027344,-0.00003635883331298828,0.00016242265701293945,-0.00005239248275756836,0.00008001923561096191,-0.00010758638381958008,-0.0000845789909362793,0.00004073977470397949,-0.000032067298889160156,0.00010263919830322266,0.0001736283302307129,-0.00006031990051269531,-0.000055849552154541016,-0.00013685226440429688,-1.8477439880371094e-6,0.0003005862236022949,0.00010749697685241699,0.0002478659152984619,0.00010216236114501953,0.00007539987564086914,0.000018298625946044922,0.0003535151481628418,0.001056283712387085,0.0002512037754058838,0.00043824315071105957,0.00007683038711547852,-0.00008720159530639648,-0.00003421306610107422,-0.000044226646423339844,5.0067901611328125e-6,0.0005072951316833496,0.00020000338554382324,-0.00003743171691894531,0.00009906291961669922,-4.5299530029296875e-6,-0.0003857612609863281,-0.0001341104507446289,-0.00013375282287597656,0.00004082918167114258,7.927417755126953e-6,0.0002798140048980713,-5.9604644775390625e-6,-0.00036919116973876953,0.0003961622714996338,0.0004210174083709717,0.000039130449295043945,-0.00005173683166503906,-0.00010585784912109375,-0.0003153085708618164,-0.00002187490463256836,0.0006359219551086426,0.000046581029891967773,-0.00016021728515625,0.0002995133399963379,-0.000017583370208740234,-0.000058710575103759766,0.00069388747215271,-0.00010985136032104492,-0.00007265806198120117,0.000027626752853393555,0.00014674663543701172,0.00011977553367614746,-0.00003904104232788086,-0.0003095865249633789,-0.0012875199317932129,0.00009936094284057617,-0.0001055598258972168,0.00010502338409423828,-0.00012916326522827148,-0.00006580352783203125,-0.000036835670471191406,-0.00040352344512939453,0.0003783702850341797,0.00022852420806884766,-0.00011360645294189453,-0.000017344951629638672,0.00010395050048828125,0.000045180320739746094,0.00007352232933044434,-0.0001583695411682129,0.00025984644889831543,0.000030159950256347656,0.000032395124435424805,-0.0003198981285095215,-0.00013685226440429688,-0.00016045570373535156,-0.0001366734504699707,-0.00019478797912597656,0.0004964768886566162,0.00008374452590942383,0.00014212727546691895,0.00006148219108581543,-0.0001081228256225586,0.0003496110439300537,-0.0000641942024230957,-0.0001380443572998047,-0.0002747178077697754,0.0003039538860321045,-0.00002372264862060547,0.000052362680435180664,-0.0001373291015625,0.00008845329284667969,0.0001893937587738037,-0.00014919042587280273,0.0003407001495361328,0.0002008974552154541,0.000020772218704223633,-0.000017583370208740234,0.002543121576309204,-0.0000769495964050293,0.00005391240119934082,0.0013007521629333496,-0.000110626220703125,-0.00011175870895385742,0.0002054274082183838,0.00009196996688842773,0.00018215179443359375,-1.0132789611816406e-6,-4.172325134277344e-7,-0.00008016824722290039,0.00019499659538269043,-0.0001957416534423828,0.0005024075508117676,-0.00039070844650268555,0.00013369321823120117,-0.0002683401107788086,-0.000020205974578857422,0.00009194016456604004,-0.00004678964614868164,-0.00005418062210083008,0.000024050474166870117,-0.000018656253814697266,-0.00006192922592163086,-0.00009465217590332031,4.410743713378906e-6,-0.0006210803985595703,-0.000041425228118896484,9.000301361083984e-6,-0.000038564205169677734,-0.00004363059997558594,0.010011762380599976,0.000047087669372558594,-0.000563502311706543,0.0000565648078918457,0.00042000412940979004,0.000020891427993774414,0.0000254213809967041,0.000028789043426513672,0.00026300549507141113,0.00006628036499023438,-0.00006020069122314453,0.00008556246757507324,0.00021919608116149902,-1.8477439880371094e-6,-0.00004029273986816406,4.887580871582031e-6,-0.0000622868537902832,0.00004842877388000488,-0.0001881122589111328,-0.00016826391220092773,0.0003993511199951172,0.0004056692123413086,0.0004363059997558594,-0.000030040740966796875,-0.00023216009140014648,0.00009003281593322754,-0.00003129243850708008,0.00006923079490661621,0.001544266939163208,0.00011652708053588867,0.0008057951927185059,-0.00010228157043457031,-0.000016033649444580078,-0.000058770179748535156,0.0001341402530670166,-0.00008380413055419922,2.8312206268310547e-6,0.0007148683071136475,0.00013715028762817383,0.0005553662776947021,-0.0001957416534423828,-0.00018423795700073242,0.00004824995994567871,-0.00011515617370605469,-0.00013315677642822266,-0.000054836273193359375,0.00003600120544433594,-0.00006622076034545898,-0.00005269050598144531,0.00019630789756774902,0.00008428096771240234,0.00017192959785461426,0.00015661120414733887,-0.00003904104232788086,-0.0000349879264831543,7.450580596923828e-7,-0.00015807151794433594,-0.0001551508903503418,-0.000052034854888916016,-0.00011754035949707031,-0.00017017126083374023,0.00011813640594482422,-0.00011283159255981445,-0.0000775456428527832,0.00010439753532409668,0.00012809038162231445,-0.0024405717849731445,-0.0001983642578125,7.420778274536133e-6,-0.000024437904357910156,-0.0000654458999633789,-0.000019550323486328125,0.000258028507232666,0.00016862154006958008,-0.000014483928680419922,0.00019562244415283203,0.000010162591934204102,-0.000047087669372558594,0.00021085143089294434,-0.0001570582389831543,0.000010371208190917969,0.00007039308547973633,0.000028371810913085938,0.0001391768455505371,-0.000027000904083251953,-0.00010538101196289062,0.00003272294998168945,-0.000057816505432128906,-0.00007039308547973633,0.0000686347484588623,-0.0004304051399230957,0.00031310319900512695,0.000042885541915893555,0.00025522708892822266,0.0002071857452392578,-0.00011366605758666992,-0.00021141767501831055,-0.00001436471939086914,-8.404254913330078e-6,0.000011712312698364258,-0.00019615888595581055,-0.00011944770812988281,0.0000788569450378418,-0.000054717063903808594,0.000058531761169433594,-0.00012940168380737305,-0.00006574392318725586,-0.000056743621826171875,0.00023260712623596191,-0.00001901388168334961,-0.00005030632019042969,0.00008800625801086426,1.1026859283447266e-6,-0.00006341934204101562,0.00022155046463012695,-0.0001532435417175293,-0.000020384788513183594,-0.00006890296936035156,0.000023096799850463867,-0.00013840198516845703,-0.000536501407623291,-0.00005173683166503906,-0.0001353621482849121,0.0004343390464782715,-4.76837158203125e-7,0.000028759241104125977,0.00010117888450622559,-0.000032007694244384766,-0.00005412101745605469,0.0003924369812011719,0.00002968311309814453,0.001584172248840332,0.00003987550735473633,0.000038743019104003906,0.000023245811462402344,0.00009647011756896973,0.00003960728645324707,0.0000222623348236084,0.00008881092071533203,0.00002378225326538086,-0.00007086992263793945,-0.00021779537200927734,0.0000444948673248291,0.00017899274826049805,-0.000017762184143066406,-0.00011992454528808594,-0.00008279085159301758,-0.00002473592758178711,0.00035321712493896484,-0.00015366077423095703,-0.00006669759750366211,-0.0003434419631958008,-0.00009638071060180664,0.00010889768600463867,-0.0009215474128723145,-0.000095367431640625,0.00005695223808288574,-0.00006753206253051758,-0.0001232624053955078,0.00021132826805114746,-0.0000388026237487793,0.00019437074661254883,0.0004216134548187256,-0.00005060434341430664,-0.000038504600524902344,-0.00019729137420654297,0.000014871358871459961,0.0001697242259979248,-0.00012242794036865234,0.00006148219108581543,0.00010439753532409668,0.000038743019104003906,-0.00006645917892456055,-0.000993490219116211,-9.417533874511719e-6,-0.0002676248550415039,0.0008746087551116943,-0.0002282261848449707,0.00041100382804870605,0.00023886561393737793,0.000025600194931030273,0.00014716386795043945,-0.00003069639205932617,9.000301361083984e-6,0.00009498000144958496,-0.00006175041198730469,-0.0001620650291442871,-0.00007915496826171875,0.00046196579933166504,0.00024452805519104004,-0.0006332993507385254,-0.000058710575103759766,0.000229567289352417,-0.00015503168106079102,-0.00011074542999267578,0.00009018182754516602,-0.00003629922866821289,0.000026464462280273438,1.6391277313232422e-6,-0.00020939111709594727,0.0009377896785736084,-0.00005173683166503906,-0.00006175041198730469,-0.00001055002212524414,-0.00015288591384887695,0.00005939602851867676,0.00011205673217773438,0.00029355287551879883,-0.00003135204315185547,0.0001773238182067871,0.00025767087936401367,0.00009372830390930176,-0.00016200542449951172,0.000031888484954833984,0.0002639591693878174,-0.00009340047836303711,0.00012746453285217285,0.0000648200511932373,2.086162567138672e-6,0.0005631446838378906,0.0005607306957244873,-0.00010031461715698242,0.00003764033317565918,4.857778549194336e-6,-2.384185791015625e-6,-0.00003147125244140625,0.000037342309951782227,0.00046899914741516113,-0.0001881122589111328,-0.00002378225326538086,0.00022533535957336426,-0.00010222196578979492,-0.0001856088638305664,0.004445403814315796,0.00011831521987915039,0.00006854534149169922,0.00043892860412597656,-0.000025331974029541016,0.00007414817810058594,0.000044912099838256836,6.5267086029052734e-6,-0.00003975629806518555,0.00483354926109314,-0.0001405477523803711,0.001049637794494629,-0.00003814697265625,0.0000667572021484375,0.00008094310760498047,0.13219475746154785,-0.00004583597183227539,0.000024944543838500977,1.2218952178955078e-6,-0.0003809928894042969,-0.0001366734504699707,-0.000039458274841308594,0.00005963444709777832,-5.4836273193359375e-6,-0.00008744001388549805,-0.00004029273986816406,0.000269472599029541,-0.00018537044525146484,0.000868380069732666,-0.00003451108932495117,-0.0005341768264770508,0.00044968724250793457,0.00010225176811218262,-0.0006827712059020996,0.00023040175437927246,-0.0002516508102416992,-0.00019741058349609375,0.0005765259265899658,0.000043720006942749023,-0.00021034479141235352,-0.00013935565948486328,0.00001800060272216797,-0.00015020370483398438,0.0000673532485961914,-0.00005739927291870117,-0.0007472038269042969,-0.00008922815322875977,0.0038232803344726562,-0.00022333860397338867,0.0005257129669189453,-0.00010859966278076172,0.0005566179752349854,-0.000022709369659423828,0.0005068182945251465,-0.00007420778274536133,0.00017830729484558105,-0.000015437602996826172,0.00003999471664428711,0.00025767087936401367,-0.00020295381546020508,0.0004501938819885254,-0.000033855438232421875,0.00008213520050048828,-0.00008630752563476562,-0.0004252195358276367,0.0002453923225402832,-0.00011897087097167969,0.00004729628562927246,-0.00014853477478027344,0.00002276897430419922,-0.00008165836334228516,0.00018352270126342773,-0.00001519918441772461,-0.000018775463104248047,0.00028392672538757324,0.00014269351959228516,-0.00007832050323486328,-0.00008046627044677734,-0.00020003318786621094,0.00022771954536437988,-0.00008744001388549805,0.0003317892551422119,-0.0001538395881652832,0.057941943407058716,-0.0000540614128112793,-6.854534149169922e-6,0.0002981424331665039,0.0006600022315979004,2.175569534301758e-6,-0.00004279613494873047,0.0001805424690246582,0.0002238750457763672,-0.00010377168655395508,-0.00010758638381958008,0.00005173683166503906,0.00011226534843444824,0.002223074436187744,-0.0000521540641784668,0.000045418739318847656,-1.3709068298339844e-6,-0.00006699562072753906,0.002326279878616333,-0.00017404556274414062,-0.00006657838821411133,-0.00008594989776611328,-0.0001812577247619629,-3.2782554626464844e-6,-0.000056743621826171875,-0.0001201629638671875,-4.351139068603516e-6,0.00019437074661254883,0.00007891654968261719,0.0002682805061340332,-0.00006622076034545898,0.000013768672943115234,-0.000046253204345703125,-0.00006264448165893555,-0.00006091594696044922,0.00006282329559326172,0.00007766485214233398,0.00007176399230957031,0.00028651952743530273,0.00006943941116333008,0.00014799833297729492,-0.00007653236389160156,0.000027239322662353516,1.1622905731201172e-6,-0.00040662288665771484,-0.000056743621826171875,-0.0000311732292175293,0.00024214386940002441,3.9637088775634766e-6,0.00008538365364074707,-4.0531158447265625e-6,-0.00015288591384887695,-2.980232238769531e-7,5.27501106262207e-6,3.606081008911133e-6,0.0007158517837524414,-0.000010311603546142578,-0.00002372264862060547,0.00017067790031433105,-0.0000400543212890625,0.00005397200584411621,-0.0024381279945373535,-0.00005918741226196289,0.0001601874828338623,-0.000038564205169677734,0.00022390484809875488,-1.8477439880371094e-6,0.00018903613090515137,-0.00011897087097167969,0.00011143088340759277,0.000040978193283081055,-0.000023543834686279297,-0.00007778406143188477,-0.000035822391510009766,-0.0001538395881652832,0.0022835135459899902,0.00008317828178405762,0.00024303793907165527,-0.00004583597183227539,-0.00011557340621948242,-0.00003057718276977539,0.0005976855754852295,0.0001868605613708496,-0.000030159950256347656,0.0010381340980529785,0.0003961622714996338,-0.00012230873107910156,-0.00008016824722290039,5.3942203521728516e-6,-4.172325134277344e-6,0.00004073977470397949,0.0003234744071960449,-0.0001957416534423828,-0.00022143125534057617,-0.00006031990051269531,-0.00027370452880859375,-0.0005246400833129883,0.00018540024757385254,0.00015920400619506836,0.000014126300811767578,0.0007292628288269043,-0.0001138448715209961,-8.761882781982422e-6,0.0001436173915863037,0.0005272328853607178,8.07642936706543e-6,-0.00008505582809448242,-0.0001131296157836914,0.0001850128173828125,-0.0005409717559814453,8.374452590942383e-6,-0.00012993812561035156,0.00005227327346801758,0.00023493170738220215,-0.000010013580322265625,0.0005335509777069092,-0.0009971261024475098,0.000058531761169433594,0.00016388297080993652,-0.00007826089859008789,-0.00014406442642211914,-0.00008606910705566406,-0.00005710124969482422,8.13603401184082e-6,-0.00010228157043457031,0.00045350193977355957,0.00008615851402282715,0.000042378902435302734,0.000041037797927856445,0.0007783770561218262,0.000022143125534057617,0.00012698769569396973,8.881092071533203e-6,6.5267086029052734e-6,-0.00004029273986816406,0.000520169734954834,-7.748603820800781e-6,0.00049629807472229,-0.00010061264038085938,0.0000432431697845459,0.00019535422325134277,0.00012513995170593262,-0.00020647048950195312,0.00006797909736633301,-0.00011068582534790039,0.00010889768600463867,0.00033164024353027344,0.00023192167282104492,-0.00013256072998046875,-6.973743438720703e-6,0.0008689761161804199,-0.00020873546600341797,-0.0005592703819274902,-0.0008193850517272949,-0.00014632940292358398,0.0035699307918548584,0.00001093745231628418,-0.000033855438232421875,7.450580596923828e-7,0.00017216801643371582,-0.00012201070785522461,-0.00015419721603393555,0.00006914138793945312,0.00008615851402282715,-0.00001609325408935547,-0.00020545721054077148,0.000023424625396728516,-0.0003399848937988281,0.0002790987491607666,0.00020954012870788574,-0.00022619962692260742,-0.00010585784912109375,-0.00014126300811767578,0.00021925568580627441,0.00010654330253601074,-8.165836334228516e-6,0.000011861324310302734,-0.000018835067749023438,-0.00009387731552124023,-0.00017023086547851562,-0.00008887052536010742,-0.000045180320739746094,-0.0000578761100769043,-0.00010532140731811523,-0.00002962350845336914,0.0003961622714996338,0.00007709860801696777,0.0001310110092163086,0.0006149709224700928,-0.00004941225051879883,0.0021272003650665283,-0.0019513368606567383,-9.5367431640625e-7,0.00004649162292480469,-0.00013703107833862305,-0.00006896257400512695,-0.00004404783248901367,0.00105208158493042,0.000021219253540039062,0.0001634359359741211,-0.000029146671295166016,6.556510925292969e-7,0.000025898218154907227,0.00020524859428405762,-0.0000699758529663086,0.00015664100646972656,0.000049620866775512695,-0.00012737512588500977,-0.00007092952728271484,0.00001531839370727539,0.0001443922519683838,-0.00002199411392211914,-0.00048094987869262695,0.0003666877746582031,0.0008790791034698486,0.00003764033317565918,0.00040596723556518555,-0.00001913309097290039,-0.000164031982421875,0.0003998279571533203,0.00015872716903686523,0.000011056661605834961,0.00007909536361694336,-0.00042551755905151367,0.0008502006530761719,0.0001825094223022461,-0.0001703500747680664,0.00015458464622497559,0.0009667277336120605,-0.00003713369369506836,0.000011056661605834961,-0.000017583370208740234,-0.000019550323486328125,0.006336987018585205,0.007716506719589233,-0.000060558319091796875,-0.00046563148498535156,-0.000021398067474365234,3.159046173095703e-6,-0.00006175041198730469,-0.000026047229766845703,-0.00016266107559204102,0.00003427267074584961,0.000021249055862426758,0.000017464160919189453,-0.00007712841033935547,-0.00006198883056640625,0.00003403425216674805,-0.0001488327980041504,-0.0008047223091125488,-0.0001487135887145996,0.0001182854175567627,-0.0001570582389831543,0.000026553869247436523,-0.000046253204345703125,-0.00006794929504394531,0.000467449426651001,-0.00001728534698486328,0.0007198452949523926,0.0005600154399871826,0.0001703202724456787,-3.4570693969726562e-6,9.268522262573242e-6,-0.00017023086547851562,0.00009498000144958496,-0.000053882598876953125,-0.000015437602996826172,-0.00003713369369506836,-0.00014060735702514648,-0.00012987852096557617,-0.00012540817260742188,0.00007596611976623535,0.00016921758651733398,-0.000733792781829834,-0.00006395578384399414,0.00010836124420166016,-0.00010949373245239258,0.00002148747444152832,0.0008379220962524414,0.00015464425086975098,0.00003960728645324707,0.0000388026237487793,-0.000056803226470947266,-0.00012099742889404297,-0.000057578086853027344,-0.00008106231689453125,0.000030368566513061523,-0.00015985965728759766,0.00004073977470397949,-0.000021159648895263672,-1.1920928955078125e-6,0.00001823902130126953,-0.00003266334533691406,0.00037348270416259766,0.0005197227001190186,0.00001385807991027832,-0.00003314018249511719,-0.00010818243026733398,0.00001239776611328125,-0.00017023086547851562,-0.000018358230590820312,-0.00007712841033935547,-0.000022709369659423828,-0.0006039142608642578,-0.000043392181396484375,-0.00007069110870361328,0.00008478760719299316,-0.0000998377799987793,0.00015524029731750488,0.0005228817462921143,0.00004678964614868164,0.0004112124443054199,0.00015211105346679688,0.00017282366752624512,-0.000015854835510253906,0.00017970800399780273,-0.0002338886260986328,-0.00004875659942626953,0.00012189149856567383,-0.00019186735153198242,-0.0001329183578491211,-0.00006097555160522461,0.00007423758506774902,0.00005742907524108887,0.00017562508583068848,0.0013796091079711914,0.00033664703369140625,-0.000016987323760986328,-0.000038683414459228516,0.00020039081573486328,0.0002664327621459961,-0.00004094839096069336,-0.00005793571472167969,0.0007998347282409668,-0.0007587671279907227,0.0003706514835357666,0.00016298890113830566,-0.000043272972106933594,0.0006051063537597656,0.00046697258949279785,-0.00006455183029174805,9.000301361083984e-6,0.000012993812561035156,0.00003018975257873535,0.0005589127540588379,-0.00014215707778930664,0.00015872716903686523,-0.00008779764175415039,-0.00009006261825561523,0.0002161860466003418,0.00022464990615844727,-0.00025272369384765625,4.380941390991211e-6,-0.00008052587509155273,0.000056415796279907227,0.00015798211097717285,-0.00016582012176513672,0.00014010071754455566,0.00006541609764099121,-0.00012862682342529297,0.00022962689399719238,-0.00002199411392211914,0.00006973743438720703,-0.00021779537200927734,0.00006774067878723145,0.00002625584602355957,0.00015872716903686523,-0.00006562471389770508,0.0001645982265472412,-0.00012576580047607422,0.00013142824172973633,0.00002244114875793457,0.00003477931022644043,0.000012874603271484375,-0.00007033348083496094,0.00007238984107971191,-0.0001887679100036621,0.0005559623241424561,-0.00010228157043457031,-0.00016158819198608398,0.00011771917343139648,-0.000023186206817626953,0.0005960166454315186,-1.9073486328125e-6,0.000950247049331665,0.0005960762500762939,0.00021028518676757812,-5.900859832763672e-6,0.00040844082832336426,-0.00018680095672607422,-0.000028192996978759766,-0.00007516145706176758,0.00005060434341430664,0.00020366907119750977,0.00007587671279907227,5.751848220825195e-6,-0.000014901161193847656,4.32133674621582e-6,0.000012993812561035156,-0.000014960765838623047,-0.00007396936416625977,0.000633925199508667,0.00005301833152770996,-0.00010913610458374023,0.000038743019104003906,-0.00011056661605834961,-0.00012195110321044922,-0.00003415346145629883,0.00010636448860168457,0.00011131167411804199,-0.000030338764190673828,-0.00012737512588500977,-0.00013899803161621094,0.00021544098854064941,-0.00011920928955078125,-0.000352323055267334,0.000038743019104003906,-0.00007605552673339844,-0.00005918741226196289,-0.00002664327621459961,0.00018867850303649902,-0.00012761354446411133,-0.0002658963203430176,-0.0006397366523742676,0.0001265406608581543,-0.000010728836059570312,0.00025013089179992676,-0.00008654594421386719,0.00015467405319213867,-0.0000654458999633789,-0.0002295374870300293,0.0002403557300567627,-0.00008088350296020508,-9.298324584960938e-6,-0.00003445148468017578,-0.00008064508438110352,-0.00001138448715209961,0.00010183453559875488,-0.0000972747802734375,0.000027239322662353516,0.000559687614440918,0.00008431077003479004,-0.00007355213165283203,-0.00010949373245239258,0.00006008148193359375,0.000467449426651001,-0.00013703107833862305,0.00136488676071167,0.00007575750350952148,0.00023040175437927246,-0.00012052059173583984,-0.00003075599670410156,-4.470348358154297e-6,-0.0000699162483215332,-0.000013828277587890625,-0.00006097555160522461,-0.000016808509826660156,0.00006362795829772949,-0.00005441904067993164,0.00010076165199279785,0.006914019584655762,0.00006920099258422852,0.002264171838760376,0.00020942091941833496,0.0002709031105041504,0.00014269351959228516,-0.00026673078536987305,-0.0003134012222290039,0.00012299418449401855,0.000012218952178955078,1.4007091522216797e-6,-0.0003294944763183594,0.00047957897186279297,-6.556510925292969e-7,-0.00007200241088867188,0.00006598234176635742,0.00008529424667358398,0.00009623169898986816,-0.00002199411392211914,-0.000010311603546142578,-0.00003349781036376953,-0.00006896257400512695,-0.00041359663009643555,0.00023192167282104492,0.00005224347114562988,0.00014269351959228516,0.00014451146125793457,0.00010910630226135254,-0.00005060434341430664,0.0000686347484588623,0.00001704692840576172,-0.00019299983978271484,-0.00021827220916748047,1.6391277313232422e-6,-0.000010013580322265625,0.000021070241928100586,-0.00002467632293701172,-0.00006276369094848633,0.00015947222709655762,-0.00018310546875,0.0002459883689880371,-0.00003153085708618164,0.00008282065391540527,-0.00010484457015991211,-0.0001137852668762207,0.0006563067436218262,-0.000047087669372558594,-0.000026702880859375,0.00021448731422424316,-0.00002008676528930664,0.00008797645568847656,0.0004285573959350586,-0.0007088184356689453,-0.00004583597183227539,-0.000021159648895263672,0.00015297532081604004,0.000025600194931030273,0.00012603402137756348,-0.00006878376007080078,-0.0005119442939758301,0.0005408525466918945,-0.0818401575088501,-0.00007712841033935547,-0.000038564205169677734,-0.00015056133270263672,0.0002593100070953369,0.000012993812561035156,0.00019538402557373047,-0.000017404556274414062,0.00011843442916870117,-0.00016808509826660156,0.000058531761169433594,0.00003898143768310547,0.9946230053901672,-0.00021260976791381836,-0.000027060508728027344,-5.0067901611328125e-6,1.4007091522216797e-6,-0.00011301040649414062,-0.00012767314910888672,-0.00005882978439331055,0.0004710257053375244,0.0003961622714996338,-0.00008755922317504883,-0.000020503997802734375,0.0002022385597229004,-0.0005088448524475098,-0.0000362396240234375,0.00001570582389831543,-0.00004023313522338867,-0.0001798868179321289,0.00006130337715148926,0.0010404884815216064,-0.00001728534698486328,0.000056415796279907227,0.00009718537330627441,-0.00015538930892944336,-0.000022172927856445312,0.000011056661605834961,9.000301361083984e-6,-0.000035643577575683594,0.0002047419548034668,-0.00001728534698486328,-0.00017654895782470703,-0.00007009506225585938,-0.000038564205169677734,-0.000032782554626464844,9.000301361083984e-6,0.0001233220100402832,0.000056415796279907227,-0.0002918839454650879,-0.000020265579223632812,0.00005733966827392578,0.015246808528900146,-0.00013583898544311523,0.00008380413055419922,-0.000035762786865234375,-4.351139068603516e-6,0.00044971704483032227,-0.00004798173904418945,0.00012293457984924316,-4.172325134277344e-6,0.0003853440284729004,-0.000021219253540039062,-1.8477439880371094e-6,0.00003361701965332031,-0.00016897916793823242,-4.172325134277344e-7,-0.00012797117233276367,0.00003039836883544922,2.086162567138672e-6,-0.00002014636993408203,-4.76837158203125e-7,0.0005034506320953369,0.00020524859428405762,0.000016808509826660156,0.00033670663833618164,-0.00005888938903808594,-0.0001309514045715332,0.0016042888164520264,0.00008019804954528809,0.0002541542053222656,0.000050067901611328125,0.000044226646423339844,-6.4373016357421875e-6,0.0000152587890625,0.00010904669761657715,0.0000985562801361084,0.0007128715515136719,0.0005147159099578857,0.000511467456817627,0.004290968179702759,-0.00002372264862060547,-0.000020205974578857422,-0.0001424551010131836,0.013300418853759766,-0.00008016824722290039,0.00007787346839904785,0.00005397200584411621,0.00003272294998168945,0.000725090503692627,-0.00003141164779663086,0.0008202195167541504,-0.00004690885543823242,0.00005561113357543945,0.0025506317615509033,-0.00004607439041137695,0.00006148219108581543,0.002022981643676758,-0.00026875734329223633,0.00011095404624938965,-0.000095367431640625,-0.0001685619354248047,0.00024014711380004883,0.00021031498908996582,0.00004407763481140137,0.12746703624725342,-7.152557373046875e-6,0.000027626752853393555,0.00020936131477355957,0.0008980333805084229,-0.00005161762237548828,0.00007638335227966309,0.00015753507614135742,-0.00014835596084594727,-0.00026673078536987305,-0.00001823902130126953,0.00005397200584411621,0.000012993812561035156,0.00006833672523498535,0.0005921721458435059,-0.000014066696166992188,0.00009113550186157227,0.000057756900787353516,-0.00001990795135498047,-0.0001017451286315918,0.0000966191291809082,0.00015839934349060059,0.000017255544662475586,-0.00021719932556152344,-0.0006619095802307129,-0.000014066696166992188,0.000048995018005371094,0.00004735589027404785,9.804964065551758e-6,0.000562518835067749,0.000019222497940063477,-0.000046312808990478516,0.0002987086772918701,-0.00007146596908569336,0.0004367232322692871,0.0004172325134277344,0.0008178651332855225,-0.00001990795135498047,0.0001468658447265625,0.00015524029731750488,0.000013619661331176758,0.000909954309463501,0.0003000795841217041,0.00005391240119934082,0.000027686357498168945,0.00008553266525268555,0.0004825294017791748,0.0004414021968841553,0.00012305378913879395,-0.00018274784088134766,-0.0000597834587097168,-0.000028133392333984375,0.00001677870750427246,-0.000058710575103759766,0.0002970099449157715,-0.00007170438766479492,-9.834766387939453e-6,-0.00021976232528686523,0.00003781914710998535,0.0007458031177520752,-0.00003927946090698242,0.00018164515495300293,0.000043720006942749023,-1.1920928955078125e-6,-0.00007522106170654297,0.00014898180961608887,-0.0004697442054748535,-0.000022709369659423828,-0.00011175870895385742,-0.00021779537200927734,-0.00004208087921142578,-0.0008678436279296875,-0.00004655122756958008,-0.000051915645599365234,-0.00047701597213745117,0.00006970763206481934,0.00017517805099487305,0.00028651952743530273,0.00008323788642883301,-0.00010102987289428711,-0.000027239322662353516,0.0000909268856048584,0.000011980533599853516,0.000125885009765625,-0.00011652708053588867,0.00019749999046325684,0.00007611513137817383,-0.000018656253814697266,0.00011652708053588867,0.0005821287631988525,-0.00011301040649414062,-0.00014507770538330078,0.00002568960189819336,0.00009796023368835449,0.00008976459503173828,-0.00019371509552001953,-0.00010651350021362305,0.00003376603126525879,-0.00006639957427978516,-0.000054955482482910156,-0.00001996755599975586,-0.000029146671295166016,-0.000014185905456542969,0.0000750124454498291,0.00012254714965820312,4.380941390991211e-6,0.00017067790031433105,-0.0001659393310546875,0.0008691251277923584,0.00030940771102905273,0.000029265880584716797,0.00009939074516296387,-0.00016796588897705078,-0.00020372867584228516,0.0000705420970916748,0.000013649463653564453,0.0005805790424346924,-0.000029146671295166016,-0.000036716461181640625,-0.00014138221740722656,0.000012993812561035156,-0.00004470348358154297,-0.00013822317123413086,0.00005778670310974121,0.000028192996978759766,-0.000049233436584472656,-0.00012493133544921875,0.00007006525993347168,0.00004076957702636719,0.00021457672119140625,0.0007081329822540283,0.0001525580883026123,-0.0000782012939453125,-9.000301361083984e-6,0.00006175041198730469,0.00009942054748535156,0.00014168024063110352,0.0011730194091796875,0.0005993843078613281,0.0013566315174102783,-0.00005996227264404297,0.000056415796279907227,0.0008396506309509277,0.00018545985221862793,-0.00006687641143798828,-0.00007778406143188477,-8.761882781982422e-6,-0.00003719329833984375,0.00012248754501342773,-0.00017726421356201172,9.000301361083984e-6,0.00019550323486328125,0.00022223591804504395,0.0005774497985839844,0.00018456578254699707,-6.973743438720703e-6,-0.00003904104232788086,-0.000011444091796875,-0.00010198354721069336,0.00016608834266662598,0.00006911158561706543,-0.000011742115020751953,-0.00010186433792114258,-0.00017511844635009766,-0.000017583370208740234,-0.000020503997802734375,0.00004869699478149414,0.0010079145431518555,-0.000051081180572509766,3.8743019104003906e-7,-0.00003463029861450195,-0.00008165836334228516,0.000055402517318725586,0.000267714262008667,0.00009608268737792969,-0.000015556812286376953,0.00005123019218444824,0.00006148219108581543,0.00010654330253601074,0.00022852420806884766,0.000026166439056396484,-0.0007342696189880371,-6.67572021484375e-6,-0.00022089481353759766,0.00042191147804260254,0.0001310110092163086,-0.00006687641143798828,-0.000011265277862548828,-0.00006753206253051758,-0.0000508427619934082,0.00021961331367492676,-0.00023293495178222656,-4.172325134277344e-7,-0.00011324882507324219,0.000038564205169677734,0.0000737309455871582,-0.00007653236389160156,-0.0006166696548461914,7.12275505065918e-6,0.00033032894134521484,0.00016942620277404785,-0.000022649765014648438,0.00018334388732910156,-0.00006145238876342773,-0.000050067901611328125,0.00002625584602355957,0.00003123283386230469,0.00018072128295898438,0.00008052587509155273,-0.0004754066467285156,0.000010371208190917969,0.00008305907249450684,0.000045418739318847656,-0.0001729726791381836,0.00035893917083740234,-0.00014954805374145508,-0.00008004903793334961,0.0018134713172912598,0.0000655055046081543,0.00018146634101867676,0.008831173181533813,0.000033855438232421875,0.00026041269302368164,-0.000016868114471435547,0.00005060434341430664,0.0009828805923461914,0.00003865361213684082,-0.00007063150405883789,-0.0000521540641784668,0.00016570091247558594,-9.357929229736328e-6,0.000024050474166870117,0.00007608532905578613,-0.0003326535224914551,0.00003489851951599121,-0.000024080276489257812,-0.00008368492126464844,0.0013796091079711914,0.00013628602027893066,0.0009992420673370361,0.00034043192863464355,-0.000016868114471435547,-0.00008594989776611328,0.00002804398536682129,-0.0000654458999633789,0.000011056661605834961,0.0005057156085968018,0.00007075071334838867,-0.00016051530838012695,0.0003680288791656494,1.0169150829315186,0.0009958446025848389,0.00012248754501342773,0.000011473894119262695,-0.00016045570373535156,9.804964065551758e-6,-3.159046173095703e-6,0.00002905726432800293,-0.00008445978164672852,-0.0001704096794128418,0.00013208389282226562,0.0004481673240661621,-0.000010788440704345703,0.0001666545867919922,-5.364418029785156e-6,0.00020319223403930664,0.00031632184982299805,0.000016123056411743164,-0.0009534955024719238,-0.000011146068572998047,0.00007578730583190918,0.00034043192863464355,-0.00005555152893066406,-0.000019311904907226562,-0.00005453824996948242,0.0000565648078918457,0.00009748339653015137,0.000046372413635253906,-6.616115570068359e-6,0.00008755922317504883,0.000058531761169433594,-0.00009918212890625,0.00005710124969482422,-0.000033855438232421875,0.00012084841728210449,0.00013390183448791504,0.000038743019104003906,-0.00001996755599975586,0.00041791796684265137,0.000012367963790893555,0.00008895993232727051,-0.00005030632019042969,-0.000039637088775634766,0.000046581029891967773,0.0002066195011138916,-0.00014191865921020508,-0.000043392181396484375,-0.000056803226470947266,1.7583370208740234e-6,0.0008179843425750732,-0.00009053945541381836,0.00011742115020751953,0.00001800060272216797,0.0000998377799987793,0.0003027617931365967,8.255243301391602e-6,0.00006747245788574219,-0.00004404783248901367,0.00006747245788574219,0.00002378225326538086,-0.000050067901611328125,0.002916872501373291,0.00007715821266174316,-8.702278137207031e-6,0.0001239478588104248,0.0003362894058227539,-0.00012737512588500977,0.0002575814723968506,0.00020679831504821777,0.0000629127025604248,-0.000020265579223632812,0.00011938810348510742,0.00016376376152038574,-0.00009548664093017578,0.00018173456192016602,-3.0994415283203125e-6,0.0002288222312927246,-0.00007897615432739258,-0.0000896453857421875,-0.00002872943878173828,-0.00013458728790283203,0.0004019737243652344,0.00004076957702636719,1.4603137969970703e-6,2.294778823852539e-6,-0.00020939111709594727,-0.00011926889419555664,-0.00007367134094238281,-0.00008422136306762695,-0.00006842613220214844,0.0001277625560760498,0.00011008977890014648,-0.0007248520851135254,-1.1920928955078125e-6,-0.0008009672164916992,-0.00007086992263793945,-0.00005060434341430664,0.000010371208190917969,-0.000033795833587646484,-0.000016570091247558594,0.00011980533599853516,8.672475814819336e-6,-0.00011366605758666992,0.00006592273712158203,0.00014677643775939941,-0.00003463029861450195,-0.000054895877838134766,-0.00003641843795776367,0.00019949674606323242,-0.0001175999641418457,-5.364418029785156e-6,0.00043147802352905273,-0.0000667572021484375,-0.00017017126083374023,0.00006628036499023438,-0.00005537271499633789,0.00015592575073242188,3.4570693969726562e-6,-0.00009840726852416992,-0.000022292137145996094,0.0001361370086669922,0.013528138399124146,0.00022861361503601074,-0.00004172325134277344,-0.00012195110321044922,-0.0003387928009033203,-0.000014483928680419922,-0.00014269351959228516,-0.00002199411392211914,-0.00001245737075805664,-0.00004756450653076172,0.00023040175437927246,0.00016990303993225098,0.00010439753532409668,0.000035762786865234375,-0.001922905445098877,0.0001723766326904297,-0.00006085634231567383,0.00007987022399902344,0.00004521012306213379,0.00012955069541931152,0.00002905726432800293,0.0001906752586364746,-0.0001856088638305664,0.000053048133850097656,0.00034543871879577637,8.255243301391602e-6,0.00007835030555725098,-8.761882781982422e-6,0.0005578398704528809,0.0005292892456054688,0.00002181529998779297,-0.000029146671295166016,-0.000052928924560546875,-6.67572021484375e-6,-0.00006908178329467773,-0.0008179545402526855,0.00019174814224243164,0.0005420148372650146,-0.00003314018249511719,0.0000254213809967041,0.00019183754920959473,-0.0001868605613708496,0.0000445246696472168,0.000035762786865234375,-0.00002193450927734375,0.00016632676124572754,0.00013124942779541016,-0.000038564205169677734,-0.00001436471939086914,-0.000016570091247558594,-0.00005334615707397461,0.000014036893844604492,0.00001749396324157715,-0.00004756450653076172,-0.00005930662155151367,-0.0006089210510253906,0.000011354684829711914,-0.000010311603546142578,-0.00007712841033935547,0.0006487071514129639,0.00024050474166870117,-4.351139068603516e-6,-0.0015180110931396484,-0.0009155869483947754,-0.00014215707778930664,0.000035703182220458984,-0.000034689903259277344,0.00007450580596923828,-0.000017344951629638672,-0.00007474422454833984,3.993511199951172e-6,5.811452865600586e-6,0.000010371208190917969,0.00006261467933654785,0.0001252889633178711,0.000174790620803833,9.804964065551758e-6,0.0002758800983428955,0.0001074075698852539,0.00008916854858398438,0.00014472007751464844,-0.00020068883895874023,0.00020259618759155273,4.172325134277344e-7,0.0000794827938079834,-0.000064849853515625,-0.00017255544662475586,0.00013151764869689941,-0.00010609626770019531,0.00013527274131774902,0.0001513659954071045,0.000027179718017578125,-0.0000349879264831543,0.00007739663124084473,0.00014960765838623047,0.0006583929061889648,0.000014871358871459961,0.00010129809379577637,-0.00011914968490600586,-0.0000858306884765625,0.00011596083641052246,-0.00002872943878173828,0.00010901689529418945,-0.0001341104507446289,0.00012615323066711426,0.00022974610328674316,0.000048786401748657227,0.000038743019104003906,-0.0000960230827331543,0.00008982419967651367,-0.00010281801223754883,-0.0000692605972290039,-0.00036346912384033203,0.00008627772331237793,-0.000024259090423583984,-0.000025331974029541016,-0.00003457069396972656,0.00020942091941833496,0.00048425793647766113,-4.351139068603516e-6,0.000016510486602783203,0.000027239322662353516,-0.0001876354217529297,-0.00007069110870361328,-0.00032526254653930664,0.00008615851402282715,0.00001806020736694336,0.000015616416931152344,0.00013127923011779785,4.202127456665039e-6,-0.000010371208190917969,-0.00004035234451293945,0.00007793307304382324,0.0002174675464630127,0.00040850043296813965,-0.0002181529998779297,-0.000091552734375,0.0002613663673400879,-7.152557373046875e-6,0.00020423531532287598,-0.0001952052116394043,9.000301361083984e-6,0.0005810856819152832,0.0003395676612854004,0.0004992187023162842,0.000045418739318847656,0.00004348158836364746,-0.0000833272933959961,-0.00009161233901977539,-0.00006812810897827148,-0.000031113624572753906,3.8743019104003906e-7,0.00011494755744934082,0.0000603795051574707,-0.00004416704177856445,0.00003281235694885254,0.00033986568450927734,0.00006383657455444336,-0.00005620718002319336,2.682209014892578e-7,0.00008705258369445801,-0.00007927417755126953,-0.000012814998626708984,0.00010257959365844727,-0.00003981590270996094,-0.00018310546875,-0.000213623046875,-4.351139068603516e-6,0.00011643767356872559,-0.00001609325408935547,-0.00014907121658325195,0.00006276369094848633,-0.0001627206802368164,0.000013709068298339844,-0.00006824731826782227,-0.00016045570373535156,0.0004941225051879883,-0.00015270709991455078,8.940696716308594e-6,0.00019058585166931152,-0.00005346536636352539,-0.00013059377670288086,0.00005397200584411621,-0.00005030632019042969,0.00001093745231628418,-0.00022792816162109375,0.000045418739318847656,-0.00004178285598754883,0.0006841123104095459,-0.00003123283386230469,-0.0001881122589111328,-0.0003580451011657715,-0.00004011392593383789,0.00006213784217834473,0.00003221631050109863,0.00023192167282104492,-0.00015503168106079102,0.00009775161743164062,0.00013145804405212402,0.0014584064483642578,0.00005882978439331055,0.00004920363426208496,0.00011429190635681152,0.00037354230880737305,-0.00014263391494750977,-0.00004744529724121094,0.00003382563591003418,0.0004837512969970703,0.00007414817810058594,-0.00007408857345581055,0.00003832578659057617,-0.00021082162857055664,0.000024884939193725586,-0.00003343820571899414,-0.00003832578659057617,-0.00021141767501831055,-0.0006555914878845215,-0.000016987323760986328,0.00004741549491882324,0.00045236945152282715,-0.00017547607421875,-0.00003701448440551758,0.0013471543788909912,0.000014901161193847656,0.00006192922592163086,0.0005710422992706299,0.0000661611557006836,0.0004977881908416748,-0.00007647275924682617,-0.00004309415817260742,0.0002600252628326416,0.00010073184967041016,-0.00001710653305053711,-0.00008440017700195312,0.0005197525024414062,0.00008231401443481445,-0.00007277727127075195,0.00016951560974121094,-0.00004857778549194336,-0.00007134675979614258,0.00007086992263793945,0.000025033950805664062,-0.000263214111328125,-0.00008690357208251953,-0.00003743171691894531,0.0001201629638671875,-0.00006389617919921875,-0.00001150369644165039,0.0001971721649169922,-0.00014531612396240234,4.6193599700927734e-6,0.0009101629257202148,-0.00010675191879272461,-0.00001519918441772461,9.000301361083984e-6,0.0007276237010955811,-0.00001800060272216797,0.00001424551010131836,-0.00014597177505493164,0.00008320808410644531,0.00008916854858398438,0.00028568506240844727,0.000064849853515625,0.00008448958396911621,0.00006839632987976074,0.0004825294017791748,-0.000018656253814697266,0.00021466612815856934,0.00011664628982543945,-0.00010687112808227539,-0.000037550926208496094,-0.00004857778549194336,0.00009647011756896973,-0.00008690357208251953,0.0010027587413787842,0.000019341707229614258,0.00019797682762145996,0.000012636184692382812,-0.000027894973754882812,-7.212162017822266e-6,0.000048220157623291016,-0.00010406970977783203,-0.00008851289749145508,-0.00008016824722290039,0.0000603795051574707,-0.000037550926208496094,0.00015613436698913574,-0.00010776519775390625,0.000051081180572509766,0.00010076165199279785,-0.00010228157043457031,0.00006154179573059082,0.24085110425949097,0.000043720006942749023,0.0008274614810943604,0.0007616877555847168,0.00016689300537109375,-0.000022470951080322266,0.00048360228538513184,0.0009475946426391602,0.00007614493370056152,0.00006341934204101562,-0.00003653764724731445,0.0001742243766784668,-0.00002759695053100586,-0.00001728534698486328,0.00028958916664123535,0.0007108449935913086,0.000028371810913085938,0.0013771355152130127,0.0003933906555175781,-0.00009351968765258789,1.00663423538208,-0.000047087669372558594,0.000058531761169433594,0.00022852420806884766,-0.0003345608711242676,-0.0000426173210144043,-8.881092071533203e-6,0.00003865361213684082,0.00015360116958618164,-0.00004857778549194336,-0.00028514862060546875,-0.00011426210403442383,-0.00009948015213012695,0.0015321969985961914,-0.00009989738464355469,-0.0000616908073425293,-0.00005030632019042969,-0.00004595518112182617,-0.000023245811462402344,-0.00015866756439208984,0.00006917119026184082,-0.00004857778549194336,0.00009378790855407715,0.00009736418724060059,-0.00003403425216674805,0.0000393986701965332,-0.0004393458366394043,8.881092071533203e-6,0.006521761417388916,0.00007078051567077637,-0.00011086463928222656,-0.000020742416381835938,-0.000052928924560546875,0.0005249083042144775,-0.00007712841033935547,0.0006239712238311768,-0.0004038810729980469,-0.000010013580322265625,-0.00006282329559326172,-0.00004029273986816406,-0.00011038780212402344,0.0005570054054260254,-0.00010156631469726562,-0.00008910894393920898,0.0002657175064086914,0.0005540847778320312,-0.00004678964614868164,0.00025850534439086914,-0.00024884939193725586,-0.00006431341171264648,0.0003064572811126709,-0.0002155303955078125,-0.00002104043960571289,-0.00031888484954833984,-0.00013679265975952148,-0.0000622868537902832,0.00028389692306518555,0.00009655952453613281,-0.00002282857894897461,-0.00003618001937866211,-0.00008422136306762695,-0.00004750490188598633,0.00012701749801635742,3.904104232788086e-6,0.00002562999725341797,0.00010117888450622559,0.00020074844360351562,0.00011652708053588867,5.692243576049805e-6,0.00008380413055419922,-0.000039637088775634766,0.000058531761169433594,-0.00002199411392211914,0.000050961971282958984,-0.00002771615982055664,0.000060051679611206055,7.4803829193115234e-6,0.00014272332191467285,-0.00008958578109741211,0.00392875075340271,0.0004343390464782715,-0.00002199411392211914,0.00005081295967102051,-0.00008887052536010742,-0.0004735589027404785,-7.927417755126953e-6,-0.000022292137145996094,0.000023573637008666992,0.000779271125793457,-0.0002735257148742676,0.00048482418060302734,-0.0006555914878845215,-0.000040650367736816406,0.00008657574653625488,0.000023126602172851562,-0.00009882450103759766,-0.000014126300811767578,0.0003637373447418213,-0.00002777576446533203,0.0001296699047088623,0.00023025274276733398,9.119510650634766e-6,-0.00029927492141723633,2.3245811462402344e-6,0.0007958710193634033,0.00016960501670837402,-0.00001728534698486328,0.00004506111145019531,-0.00007098913192749023,-0.000057816505432128906,0.00018838047981262207,0.000195235013961792,-0.00010335445404052734,-0.00005120038986206055,-0.0000776052474975586,-0.00012874603271484375,0.0016920268535614014,0.00010675191879272461,-6.973743438720703e-6,0.00003451108932495117,0.00006300210952758789,0.0019163787364959717,-4.112720489501953e-6,0.002390265464782715,-0.0003840923309326172,-0.0001817941665649414,0.00009113550186157227,0.0001379251480102539,-0.00011640787124633789,-0.00006645917892456055,0.00013333559036254883,-0.000060558319091796875,-0.00017112493515014648,0.00010120868682861328,-0.00042426586151123047,0.000037103891372680664,-0.0001405477523803711,-0.00014019012451171875,-0.00007462501525878906,-0.00024968385696411133,-0.000049233436584472656,-0.0001405477523803711,0.000056415796279907227,9.000301361083984e-6,0.00003993511199951172,0.00001239776611328125,-0.00007069110870361328,-9.059906005859375e-6,-0.00004094839096069336,-0.00012576580047607422,0.018777430057525635,0.00011894106864929199,0.00069388747215271,-0.00001823902130126953,0.00001093745231628418,0.0000667572021484375,-0.0000400543212890625,-0.00006884336471557617,-0.00008690357208251953,-0.00003314018249511719,0.00001430511474609375,0.0005803704261779785,0.000010371208190917969,0.00017067790031433105,-0.000013589859008789062,-0.000056743621826171875,-0.00008815526962280273,-0.000014066696166992188,0.00008505582809448242,0.000050634145736694336,0.000024139881134033203,0.0008490979671478271,0.00017750263214111328,0.00007915496826171875,-0.00011360645294189453,-0.00004190206527709961,-8.761882781982422e-6,-0.000056743621826171875,0.00003865361213684082,0.00018668174743652344,0.0008532404899597168,0.00014790892601013184,0.00047284364700317383,3.0100345611572266e-6,0.00009655952453613281,-0.00004839897155761719,0.000059098005294799805,0.00009956955909729004,0.00030544400215148926,0.00003165006637573242,0.000017434358596801758,-0.000017523765563964844,-0.00005793571472167969,0.001047968864440918,0.00009465217590332031,0.00024816393852233887,0.00017002224922180176,0.00008615851402282715,-0.00003445148468017578,-0.00006526708602905273,-7.987022399902344e-6,0.00013142824172973633,0.0001468658447265625,0.000035256147384643555,0.00019124150276184082,0.000015020370483398438,0.0010741055011749268,-0.0002079606056213379,0.00037550926208496094,2.950429916381836e-6,0.00007387995719909668,0.0008202195167541504,-0.000026166439056396484,-0.00001996755599975586,0.00002467632293701172,-6.973743438720703e-6,-3.5762786865234375e-7,0.00003764033317565918,0.00020417571067810059,-0.00002759695053100586,0.00015658140182495117,0.0000254213809967041,0.00003471970558166504,0.0018803775310516357,0.000028699636459350586,-0.00005835294723510742,0.0006657242774963379,0.00028845667839050293,-0.00003451108932495117,0.000022202730178833008,0.000012993812561035156,0.0001277625560760498,-0.00002676248550415039,0.0006513595581054688,-0.00006455183029174805,0.00005742907524108887,-0.00008845329284667969,0.000028431415557861328,-0.00010287761688232422,0.00014960765838623047,0.00004920363426208496,0.00006255507469177246,-0.000025451183319091797,-0.00005507469177246094,0.00025960803031921387,-0.0001582503318786621,0.0001391768455505371,0.000026553869247436523,-0.000020444393157958984,-0.00006175041198730469,0.00014406442642211914,-0.000045239925384521484,-0.00007462501525878906,-8.285045623779297e-6,0.00011652708053588867,0.000048220157623291016,0.0001087486743927002,0.000362396240234375,0.000057756900787353516,-0.000013053417205810547,-0.00003892183303833008,0.000038743019104003906,-0.00008213520050048828,-3.2782554626464844e-6,-0.00004988908767700195,-0.00010949373245239258,-0.00009262561798095703,0.0007047653198242188,0.00002378225326538086,-0.0015631914138793945,-0.00020551681518554688,0.000019282102584838867,-0.00014209747314453125,0.00003808736801147461,0.0004210174083709717,-0.000049114227294921875,0.00006949901580810547,-0.0005925893783569336,0.000012874603271484375,0.0022576749324798584,-0.0000922083854675293,-0.00012195110321044922,0.0003439486026763916,0.0008502006530761719,-0.00007063150405883789,0.00010779500007629395,-0.00002187490463256836,0.00001677870750427246,0.0004817545413970947,-0.0001620650291442871,0.0001125633716583252,0.00009492039680480957,-0.00006526708602905273,0.00020369887351989746,-0.00017017126083374023,-0.00023412704467773438,-0.00007712841033935547,-0.0001042485237121582,-0.00005620718002319336,0.00006467103958129883,-0.00009775161743164062,-0.00003653764724731445,-0.00011467933654785156,0.000049620866775512695,-3.4570693969726562e-6,-0.00005459785461425781,0.00009372830390930176,-0.0001856088638305664,-0.00021570920944213867,-0.0010913610458374023,0.000012695789337158203,8.374452590942383e-6,0.000023424625396728516,-0.000060498714447021484,-0.0013421177864074707,0.000043839216232299805,0.0008884966373443604,-0.000010788440704345703,-0.00015497207641601562,0.00012156367301940918,-0.0000731348991394043,0.00003993511199951172,-0.00011920928955078125,0.0001449882984161377,-0.0012600421905517578,0.00012201070785522461,-0.0001856088638305664,-0.000016748905181884766,0.00012800097465515137,0.00010028481483459473,-0.000052869319915771484,-0.00009584426879882812,0.00012189149856567383,0.0001691877841949463,-0.000027060508728027344,6.5267086029052734e-6,-0.0001442432403564453,-0.00010985136032104492,-0.0002060532569885254,-0.000019550323486328125,-0.0002707839012145996,0.0002828538417816162,0.00018236041069030762,-0.0001004934310913086,-0.000034689903259277344,1.0057635307312012,-0.00010985136032104492,-0.00004696846008300781,0.0002869069576263428,0.00022551417350769043,0.00007578730583190918,0.0004032254219055176,0.00004920363426208496,-0.00018781423568725586,0.0006343722343444824,0.000022739171981811523,0.000021576881408691406,-0.00004583597183227539,9.000301361083984e-6,5.632638931274414e-6,0.00020518898963928223,0.000058531761169433594,0.00006604194641113281,-0.0000349879264831543,0.0001703202724456787,0.00002378225326538086,0.000253140926361084,2.950429916381836e-6,0.000641554594039917,-0.00006645917892456055,-0.00017023086547851562,0.0005999505519866943,-0.00009644031524658203,-0.00015288591384887695,0.0003879964351654053,0.00036898255348205566,0.00011867284774780273,-0.000045180320739746094,0.00006410479545593262,-8.344650268554688e-7,-0.000011444091796875,-0.00013887882232666016,0.00005221366882324219,0.0002218782901763916,-3.814697265625e-6,-6.854534149169922e-6,0.00011652708053588867,-0.0008159279823303223,-0.000047087669372558594,-0.00014019012451171875,0.0001620948314666748,0.00032073259353637695,0.00013828277587890625,-0.0001391768455505371,0.00001704692840576172,-0.00006210803985595703,0.00008952617645263672,0.000057250261306762695,2.384185791015625e-7,0.00004076957702636719,0.00004920363426208496,0.00010147690773010254,0.000021845102310180664,0.00005391240119934082,-0.00005030632019042969,0.00002434849739074707,-0.0008249282836914062,-0.00006175041198730469,0.00017502903938293457,-0.000030159950256347656,-1.4901161193847656e-6,-0.00042253732681274414,0.00022470951080322266,-0.00013685226440429688,-0.00024008750915527344,-0.00005835294723510742,-0.0007074475288391113,0.000436246395111084,0.00024381279945373535,-0.000030338764190673828,-2.7418136596679688e-6,-0.00014466047286987305,-0.00008440017700195312,0.000028371810913085938,0.00005123019218444824,0.00007855892181396484,-0.00008034706115722656,0.000503838062286377,-0.00004839897155761719,-0.00024306774139404297,0.00009509921073913574,-0.00011080503463745117,-0.0000616908073425293,-0.00016045570373535156,0.0005100667476654053,0.00007930397987365723,-0.00006204843521118164,0.00012955069541931152,-0.00022536516189575195,-0.000260770320892334,-0.0001093745231628418,-0.00008702278137207031,-0.000046312808990478516,0.00009867548942565918,-0.00004857778549194336,-0.00002294778823852539,0.00019916892051696777,-0.0001615285873413086,0.00016197562217712402,0.0001246631145477295,-0.00002199411392211914,7.152557373046875e-6,0.0008274614810943604,0.0000432431697845459,-0.00006395578384399414,9.268522262573242e-6,-0.0001302957534790039,0.00012037158012390137,-0.000013053417205810547,0.00005885958671569824,-0.000021219253540039062,0.0000699460506439209,-5.424022674560547e-6,0.00017067790031433105,0.0007844865322113037,0.0009587407112121582,0.00005939602851867676,-9.834766387939453e-6,0.00006371736526489258,-0.0001291036605834961,0.00010150671005249023,-0.000024497509002685547,0.0007259845733642578,0.00008615851402282715,0.00009062886238098145,0.00015103816986083984,4.738569259643555e-6,0.00007370114326477051,0.0006429553031921387,-0.0000712275505065918,-0.00013935565948486328,-0.000059664249420166016,0.000045686960220336914,-0.00006431341171264648,-0.00009435415267944336,-0.00014597177505493164,0.000056415796279907227,0.001337975263595581,0.00024375319480895996,0.0000896155834197998,-0.0009056329727172852,-0.00009584426879882812,0.000058531761169433594,-0.00011289119720458984,-0.00006753206253051758,0.00009524822235107422,0.00003382563591003418,0.00023323297500610352,-0.00007170438766479492,-0.0000349879264831543,0.00007081031799316406,-0.00003737211227416992,0.000030249357223510742,0.00003471970558166504,0.0004837512969970703,0.00003409385681152344,-0.0002751350402832031,0.0003699958324432373,-0.0000483393669128418,0.00013592839241027832,-7.569789886474609e-6,-0.0000985264778137207,-0.00014066696166992188,-0.00001436471939086914,0.0026037395000457764,0.000031560659408569336,-0.00002199411392211914,-6.973743438720703e-6,0.043460071086883545,-0.00004798173904418945,0.0001481771469116211,0.00006276369094848633,8.821487426757812e-6,0.00038239359855651855,-0.00012058019638061523,-0.00034493207931518555,0.0004201829433441162,-0.000865638256072998,2.4139881134033203e-6,0.0008160769939422607,0.00003865361213684082,0.0006165206432342529,0.00014516711235046387,0.0000591278076171875,0.0001316666603088379,-0.0000832676887512207,-0.000019848346710205078,0.00009459257125854492,-0.00003224611282348633,9.000301361083984e-6,0.0001494288444519043,-0.00012958049774169922,0.00019791722297668457,-0.0000502467155456543,0.00002625584602355957,0.00008845329284667969,0.0003808140754699707,-0.00008922815322875977,0.000026464462280273438,-0.000024080276489257812,0.00005555152893066406,-0.00010818243026733398,0.005840659141540527,0.00006917119026184082,0.018185466527938843,0.00003597140312194824,0.00007387995719909668,-0.00006395578384399414,-0.0014110803604125977,0.000050067901611328125,0.00005650520324707031,0.0002716183662414551,0.00033342838287353516,-0.0001412034034729004,0.00008213520050048828,0.00003981590270996094,-0.0005708932876586914,9.000301361083984e-6,0.00028270483016967773,-0.00005984306335449219,0.0003808140754699707,-0.000023603439331054688,0.0002480745315551758,-0.000049054622650146484,-0.00002968311309814453,-0.00014603137969970703,-0.00006115436553955078,-0.00010830163955688477,-0.000012934207916259766,0.02489343285560608,-0.000023603439331054688,0.0001017153263092041,-0.00019598007202148438,-0.00009185075759887695,0.000576406717300415,-0.0001856088638305664,-0.0001214146614074707,-0.000037789344787597656,0.0005100667476654053,-9.238719940185547e-6,-0.00006949901580810547,0.00034043192863464355,0.00014740228652954102,-0.0004163980484008789,-0.00010114908218383789,0.0008478164672851562,-0.00017750263214111328,0.0006039440631866455,0.000058531761169433594,-0.00007486343383789062,0.00009062886238098145,-0.0002072453498840332,-0.00003349781036376953,0.00028890371322631836,0.0003801584243774414,0.00009810924530029297,-0.00010150671005249023,-0.0000349879264831543,0.0003846883773803711,0.00009149312973022461,0.00017404556274414062,-0.00019508600234985352,0.0005627572536468506,0.000010371208190917969,0.00023886561393737793,0.00003153085708618164,-0.00007712841033935547,-0.00004094839096069336,-0.00016766786575317383,0.002607375383377075,-0.00006127357482910156,0.00009170174598693848,-0.0000438690185546875,0.0006996691226959229,-0.00008600950241088867,0.00001099705696105957,-0.0061203837394714355,0.00002244114875793457,-0.00001633167266845703,-7.152557373046875e-6,-0.0000603795051574707,0.00007280707359313965,0.000028371810913085938,0.000054389238357543945,0.00007528066635131836,0.000742793083190918,-0.00004756450653076172,0.00039759278297424316,-0.00005984306335449219,0.00003471970558166504,0.00004073977470397949,0.00019174814224243164,-0.0002849102020263672,-0.00012683868408203125,0.00018459558486938477,0.0002662837505340576,0.000028789043426513672,-0.00007092952728271484,0.0000692903995513916,0.000033855438232421875,2.115964889526367e-6,0.001211404800415039,0.000516742467880249,0.00006413459777832031,0.00014278292655944824,0.00014868378639221191,-0.00003170967102050781,0.0004006028175354004,-0.0001335740089416504,0.000015556812286376953,-0.0001423358917236328,-0.000018656253814697266,-0.00004220008850097656,0.0005996823310852051,0.00014984607696533203,0.0001055598258972168,5.662441253662109e-7,-0.00007253885269165039,0.0005622208118438721,0.00008475780487060547,0.00018468499183654785,0.00011229515075683594,0.00009846687316894531,-0.00004935264587402344,-0.000030338764190673828,0.0002955198287963867,0.0005402266979217529,0.000039249658584594727,-0.0004259943962097168,0.00010475516319274902,2.0563602447509766e-6,-0.0002486109733581543,-3.159046173095703e-6,0.0011923909187316895,0.00010666251182556152,0.0008148849010467529,0.00012037158012390137,9.000301361083984e-6,-0.00005030632019042969,0.00014477968215942383,0.00011515617370605469,0.000058531761169433594,-0.000023543834686279297,0.00003933906555175781,0.000011056661605834961,0.000026941299438476562,0.00038617849349975586,-0.0017943382263183594,-3.933906555175781e-6,0.0006118714809417725,0.00010117888450622559,0.00001239776611328125,0.00011548399925231934,-0.00012636184692382812,-0.000031828880310058594,0.0005104243755340576,0.0005698502063751221,-4.172325134277344e-6,-0.0008103847503662109,0.000038743019104003906,-0.00011330842971801758,-0.00006514787673950195,0.0007437169551849365,-0.0001932382583618164,-0.00006794929504394531,-0.00011754035949707031,0.00011664628982543945,-1.1920928955078125e-6,-0.00006091594696044922,-0.000059485435485839844,0.00023102760314941406,-0.000016868114471435547,-0.0001901388168334961,0.0006360709667205811,0.0001341402530670166,-0.00008922815322875977,-0.00008285045623779297,0.0004464089870452881,-0.00007957220077514648,-0.00006514787673950195,0.000136643648147583,0.00021713972091674805,0.000053495168685913086,-0.00003141164779663086,-0.00005030632019042969,-0.00003403425216674805,-0.00002568960189819336,-0.000037670135498046875,0.00007700920104980469,0.00014585256576538086,0.00006148219108581543,-0.0001271963119506836,0.007077038288116455,0.0003961622714996338,-0.00001609325408935547,0.00039145350456237793,-0.0000438690185546875,-0.0006629824638366699,-1.0132789611816406e-6,0.00004938244819641113,-0.00009042024612426758,0.0002466440200805664,-0.00003325939178466797,-0.000029981136322021484,0.0011116862297058105,0.0002804696559906006,0.000012874603271484375,0.00014960765838623047,0.00021731853485107422,0.00006002187728881836,3.0100345611572266e-6,0.00032272934913635254,0.00002428889274597168,0.00019437074661254883,-0.00016045570373535156,0.0004839301109313965,0.00015267729759216309,-0.000037729740142822266,-5.364418029785156e-7,-0.0000845193862915039,0.000039249658584594727,0.000028580427169799805,-0.00002181529998779297,0.00010338425636291504,0.0001869797706604004,-0.000039637088775634766,9.506940841674805e-6,-0.00004273653030395508,-0.00004875659942626953,0.000673443078994751,-0.000039696693420410156,-0.000046312808990478516,-0.00004947185516357422,-0.000017821788787841797,-0.0002772212028503418,0.000010371208190917969,0.0004965364933013916,-5.7220458984375e-6,0.00003764033317565918,0.0010091662406921387,0.00008118152618408203,-0.0002276301383972168,-1.5497207641601562e-6,-0.00010770559310913086,-0.0001621842384338379,0.00018164515495300293,-0.00012642145156860352,-0.00003719329833984375,0.0005890429019927979,0.00022581219673156738,-0.000054836273193359375,0.007965683937072754,-0.0006231069564819336,0.00035697221755981445,0.0002924799919128418,-0.0006958842277526855,-0.0009298920631408691,-0.00014466047286987305,0.00008615851402282715,-0.00017249584197998047,0.0003498494625091553,-3.874301910400391e-6,0.0015297234058380127,0.00010132789611816406,-0.00011777877807617188,0.00009736418724060059,0.00007578730583190918,0.0007616877555847168,-0.00006753206253051758,0.00005361437797546387,0.00009202957153320312,0.0005225539207458496,-0.0018393993377685547,-0.00012236833572387695,0.000051409006118774414,-0.00003218650817871094,-0.00002181529998779297,-0.00012958049774169922,0.00007414817810058594,-0.00012171268463134766,-0.00010353326797485352,-0.000056684017181396484,0.00007835030555725098,-0.00004947185516357422,-0.00008744001388549805,0.00010788440704345703,0.000016033649444580078,9.000301361083984e-6,0.00015559792518615723,0.00017210841178894043,0.00001284480094909668,0.000014126300811767578,-0.0006039142608642578,-0.0000966191291809082,0.00013887882232666016,7.420778274536133e-6,0.0007370710372924805,-0.00041162967681884766,0.0013432800769805908,-0.00008314847946166992,-0.00025534629821777344,-0.00017070770263671875,-0.000011444091796875,0.000051081180572509766,-0.000010013580322265625,2.652406692504883e-6,-0.005954623222351074,-0.00006031990051269531,-0.00009053945541381836,-0.00014483928680419922,-0.00004786252975463867,-0.00013637542724609375,0.00023549795150756836,-0.00002110004425048828,0.00007471442222595215,-0.00015842914581298828,0.000024259090423583984,-0.000018775463104248047,0.00002625584602355957,-0.000023424625396728516,-0.000689089298248291,0.00017774105072021484,-0.00014728307723999023,-0.00006765127182006836,0.00011491775512695312,-0.00003123283386230469,-0.000029921531677246094,-0.00010079145431518555,0.00001385807991027832,-0.00004982948303222656,-0.000024497509002685547,-0.00016045570373535156,-0.00005513429641723633,0.00001239776611328125,-0.00003266334533691406,-0.00012737512588500977,-0.0000730752944946289,-0.0001570582389831543,0.00004750490188598633,0.0001545548439025879,-0.00003445148468017578,0.00014987587928771973,-0.0002503395080566406,-0.0009137392044067383,0.0001284480094909668,0.00001862645149230957,0.0006805360317230225,-0.0000324249267578125,0.000013649463653564453,-0.00005650520324707031,0.000016301870346069336,0.0003192424774169922,0.00013053417205810547,-0.00008165836334228516,0.0009419023990631104,0.00040602684020996094,-0.00002199411392211914,0.00011464953422546387,-0.00008606910705566406,0.00007387995719909668,-0.000029027462005615234,0.000013500452041625977,0.0002733170986175537,0.00010901689529418945,0.00003865361213684082,-0.00025922060012817383,0.000332564115524292,-0.00008600950241088867,-0.000051021575927734375,0.00006115436553955078,-0.000013947486877441406,-0.00013059377670288086,4.0531158447265625e-6,0.0013551712036132812,0.00007918477058410645,-0.0003018975257873535,-0.000027894973754882812,0.0001423954963684082,-0.00017511844635009766,-0.000013887882232666016,-0.00002491474151611328,0.00008809566497802734,-0.000032067298889160156,-0.00005882978439331055,-4.172325134277344e-7,0.0015513896942138672,-0.00008195638656616211,0.00034555792808532715,-8.046627044677734e-6,0.00040343403816223145,-0.0001507401466369629,-0.0001570582389831543,0.00014802813529968262,-0.00002199411392211914,0.0001379251480102539,0.00003573298454284668,-0.00005984306335449219,0.000037103891372680664,4.798173904418945e-6,-0.000050902366638183594,-0.000010371208190917969,0.0005042850971221924,0.00009682774543762207,0.00003084540367126465,-0.000039458274841308594,-0.000036597251892089844,0.0000966191291809082,0.00015118718147277832,-0.000021457672119140625,-2.9206275939941406e-6,0.00002905726432800293,0.000015676021575927734,-0.00007712841033935547,0.00004038214683532715,-0.00008577108383178711,0.0002937018871307373,-0.0001856088638305664,-0.00004363059997558594,0.0010742545127868652,0.00001677870750427246,-0.000056803226470947266,-0.0008009672164916992,-0.00003224611282348633,0.000023305416107177734,-0.00007891654968261719,-0.0003096461296081543,-0.000046193599700927734,-0.00008052587509155273,0.0007198750972747803,0.00037926435470581055,-0.00009447336196899414,-0.00002110004425048828,0.00008052587509155273,0.00004789233207702637,-0.00004696846008300781,0.00003203749656677246,0.00030928850173950195,0.000697702169418335,-0.00002372264862060547,0.06425303220748901,-0.000050067901611328125,-0.00002562999725341797,0.000022023916244506836,-0.00008243322372436523,0.00006148219108581543,0.0003598630428314209,0.00005716085433959961,0.000030159950256347656,-0.00013971328735351562,-0.000010013580322265625,-0.000023126602172851562,0.00011402368545532227,0.00005173683166503906,0.0004018247127532959,-0.00006836652755737305,0.002896130084991455,-0.0014400482177734375,0.00006410479545593262,0.0006135702133178711,0.00003173947334289551,0.00022464990615844727,-0.00009161233901977539,0.00006130337715148926,0.000051409006118774414,0.0008941590785980225,0.0000667870044708252,-0.00013017654418945312,0.00014495849609375,0.0004546940326690674,-0.00006973743438720703,0.0005207955837249756,-0.000023186206817626953,0.0007666945457458496,-0.000058531761169433594,0.0005284547805786133,0.00008365511894226074,0.00017940998077392578,0.0004743635654449463,-8.046627044677734e-6,-0.00003451108932495117,-0.000013828277587890625,0.00011068582534790039,7.957220077514648e-6,-0.0003020167350769043,0.00011512637138366699,0.00012958049774169922,0.00004971027374267578,-0.000042498111724853516,-0.00003653764724731445,0.000038743019104003906,0.000364452600479126,-0.00002586841583251953,9.804964065551758e-6,-7.152557373046875e-7,0.00010889768600463867,-0.00007712841033935547,0.00018233060836791992,0.0001685023307800293,-0.00002008676528930664,-0.00020885467529296875,2.0563602447509766e-6,-0.00039952993392944336,-0.0004531741142272949,-0.00017505884170532227,-7.212162017822266e-6,0.000039637088775634766,0.0001379847526550293,0.0023800134658813477,-0.00011831521987915039,-0.00021392107009887695,0.000041812658309936523,0.00020119547843933105,-0.0000388026237487793,-0.00008046627044677734,0.00028461217880249023,2.2649765014648438e-6,-0.00006854534149169922,-0.00003653764724731445,-2.384185791015625e-7,0.0015007257461547852,0.00003403425216674805,-4.172325134277344e-7,-0.00025194883346557617,-0.0001634359359741211,0.000026464462280273438,0.00047579407691955566,-0.00010406970977783203,0.00006499886512756348,0.0001907050609588623,-0.0000349879264831543,0.00001773238182067871,8.64267349243164e-6,0.00015556812286376953,-0.00003212690353393555,-0.00008314847946166992,0.00007447600364685059,0.000036388635635375977,0.00011304020881652832,0.00006300210952758789,-0.000048041343688964844,-0.000029206275939941406,0.00001800060272216797,0.00019785761833190918,0.0001703202724456787,0.000756382942199707,0.000034689903259277344,0.0003623366355895996,0.00003045797348022461,-0.00022208690643310547,-0.000010013580322265625,0.00008738040924072266,0.0005178153514862061,-1.8477439880371094e-6,0.0000667572021484375,0.000014841556549072266,-0.00009316205978393555,0.0001500546932220459,0.0006135702133178711,-0.00011789798736572266,-0.00006020069122314453,-0.00029790401458740234,0.00009870529174804688,-0.0001398324966430664,-0.0001659393310546875,-0.00017523765563964844,-0.00003796815872192383,-0.00008434057235717773,0.00019782781600952148,0.0002377927303314209,0.000015020370483398438,0.0008573532104492188,0.00002726912498474121,-0.000056684017181396484,-0.00002199411392211914,0.000304490327835083,-0.00029844045639038086,-0.00003075599670410156,-0.00002384185791015625,0.00008612871170043945,-0.00002014636993408203,-0.000310361385345459,-0.00006639957427978516,-9.298324584960938e-6,0.00039836764335632324,0.00003471970558166504,-0.000016868114471435547,-0.0001704096794128418,0.00007709860801696777,-0.00010645389556884766,-0.000011742115020751953,-0.000037670135498046875,0.0012444853782653809,0.00011923909187316895,-0.00006759166717529297,0.00007286667823791504,-0.00020998716354370117,-0.00011098384857177734,0.0009254515171051025,0.00005194544792175293,0.00007608532905578613,-0.000020444393157958984,0.000010371208190917969,-0.000011444091796875,-0.00020247697830200195,-0.00014090538024902344,0.0000718533992767334,0.00010910630226135254,0.0004372894763946533,0.00010880827903747559,-0.0001780390739440918,0.00004750490188598633,-0.00021201372146606445,-0.000059723854064941406,0.00013527274131774902,-4.351139068603516e-6,-0.00006842613220214844,-0.00012612342834472656,-0.00004380941390991211,-0.00014191865921020508,0.0001443624496459961,0.0009068548679351807,0.00007417798042297363,0.0005512535572052002,0.00020453333854675293,0.0005907714366912842,0.00006407499313354492,0.00025513768196105957,0.000030368566513061523,0.00018325448036193848,-0.000038504600524902344,0.000053763389587402344,0.000030666589736938477,0.000696718692779541,0.005731731653213501,-0.00018388032913208008,-5.364418029785156e-7,-7.3909759521484375e-6,0.00045669078826904297,-0.00008273124694824219,-0.000016629695892333984,-0.00010758638381958008,0.00003516674041748047,-6.079673767089844e-6,0.0000750124454498291,0.0006246566772460938,0.000034928321838378906,0.00004404783248901367,-1.3113021850585938e-6,-0.0004152059555053711,0.00003489851951599121,0.0003535151481628418,0.000053048133850097656,-0.00015753507614135742,-0.000022709369659423828,-0.00006884336471557617,-0.0001703500747680664,0.00027549266815185547,-0.00007462501525878906,0.00029927492141723633,-0.00004762411117553711,-0.00005751848220825195,-0.00015288591384887695,-0.00016164779663085938,9.864568710327148e-6,-7.152557373046875e-6,0.0001741945743560791,0.00012704730033874512,0.000012218952178955078,-0.00040078163146972656,0.0005661845207214355,-0.00046765804290771484,-0.00011426210403442383,0.0007196664810180664,0.0038198530673980713,5.334615707397461e-6,-0.00010627508163452148,-0.00005161762237548828,0.00009450316429138184,-7.62939453125e-6,0.0000940859317779541,0.00013890862464904785,0.00002771615982055664,-0.0001342296600341797,0.00007939338684082031,0.0001564323902130127,0.00011545419692993164,-0.0001703500747680664,0.000036597251892089844,-2.8014183044433594e-6,0.00005638599395751953,-0.00017583370208740234,-0.000029861927032470703,0.0008274614810943604,0.000296175479888916,0.00023090839385986328,-0.000013828277587890625,-0.00003451108932495117,-0.000058710575103759766,0.00016948580741882324,0.0008798539638519287,0.0001639723777770996,0.000056415796279907227,-0.00012421607971191406,-0.00007098913192749023,0.000044673681259155273,0.00010895729064941406,0.00011211633682250977,-0.00010091066360473633,-0.00017511844635009766,0.000013649463653564453,0.00027573108673095703,7.450580596923828e-7,-0.00012576580047607422,0.00003948807716369629,0.0008201301097869873,-0.00012749433517456055,-0.00007975101470947266,0.00001385807991027832,0.000011056661605834961,0.000030428171157836914,-0.0000871419906616211,-0.00004029273986816406,0.0002804696559906006,-0.000017642974853515625,0.0006674528121948242,-0.000022470951080322266,-0.00011676549911499023,-0.0001652836799621582,-0.00018084049224853516,0.000031888484954833984,0.00005906820297241211,-0.00006663799285888672,0.0004044175148010254,-0.0001537799835205078,-0.00006145238876342773,-0.0001876354217529297,-0.000019371509552001953,0.00027257204055786133,-0.00007659196853637695,-0.0000890493392944336,0.00011923909187316895,0.0002047419548034668,-0.00002199411392211914,-0.00023299455642700195,0.00006496906280517578,0.00009188055992126465,0.000016808509826660156,-0.000018775463104248047,-0.00020056962966918945,0.0000852346420288086,-0.0002595186233520508,0.00001385807991027832,-0.000031948089599609375,0.00007042288780212402,-0.00012749433517456055,0.00034108757972717285,0.00016623735427856445,7.450580596923828e-7,0.00018277764320373535,0.0003961622714996338,0.00005397200584411621,0.0008328855037689209,-0.0005686283111572266,0.000037044286727905273,-0.00004029273986816406,5.125999450683594e-6,0.00005459785461425781,0.0006996393203735352,-0.00008279085159301758,0.001502305269241333,0.0002681314945220947,-0.0000330805778503418,-0.00040465593338012695,0.00010895729064941406,0.000039249658584594727,-0.000058591365814208984,-0.000021159648895263672,0.0007207393646240234,-0.0000317692756652832,-0.00011199712753295898,0.000019669532775878906,0.0003737211227416992,-0.00008684396743774414,0.000029921531677246094,0.00017893314361572266,0.00001138448715209961,0.00013449788093566895,0.000024259090423583984,-9.119510650634766e-6,-0.0000871419906616211,-0.000026226043701171875,0.0004980862140655518,0.000013053417205810547,-0.00001519918441772461,0.000024110078811645508,-0.00002372264862060547,0.00019982457160949707,0.00008615851402282715,-0.0002275705337524414,0.00010186433792114258,-0.000018656253814697266,0.00009170174598693848,0.0001640915870666504,0.001059025526046753,6.9141387939453125e-6,0.550259530544281,-0.0013703703880310059,0.00026300549507141113,0.0010390281677246094,0.00003719329833984375,0.0000254213809967041,0.00006413459777832031,0.00011309981346130371,-0.00001531839370727539,-0.00004470348358154297,-0.00011557340621948242,0.0011613667011260986,0.00018411874771118164,-0.00015556812286376953,0.00013557076454162598,3.2186508178710938e-6,0.0003574788570404053,0.0003961622714996338,-0.00011301040649414062,0.0006579756736755371,-4.172325134277344e-7,0.0008565187454223633,-0.0003151893615722656,-0.000038564205169677734,-0.00003504753112792969,0.00006574392318725586,-0.00007528066635131836,0.00024232268333435059,0.00008574128150939941,0.00003361701965332031,0.00003764033317565918,0.00008150935173034668,0.0001379251480102539,0.00010889768600463867,0.00011911988258361816,0.00013524293899536133,-0.00004112720489501953,0.00007021427154541016,-0.00001728534698486328,0.00005391240119934082,-0.0000966191291809082,0.0003961622714996338,0.00005137920379638672,0.00006857514381408691,-0.00007385015487670898,-6.4373016357421875e-6,-0.00012534856796264648,-0.00001424551010131836,0.00022464990615844727,0.00023424625396728516,0.0006609857082366943,-0.00008493661880493164,0.000015348196029663086,-4.172325134277344e-7,-0.00002491474151611328,-0.0001703500747680664,0.0006894767284393311,0.000025033950805664062,3.9637088775634766e-6,-0.00004786252975463867,-0.00012224912643432617,-0.0001480579376220703,0.00007709860801696777,0.0001703202724456787,-0.00008040666580200195,-0.00005453824996948242,0.000013053417205810547,0.05007743835449219,-0.00009185075759887695,0.000016123056411743164,0.00002199411392211914,-0.000018656253814697266,-0.00019800662994384766,-0.0001266002655029297,-0.00011777877807617188,0.00045058131217956543,-0.0000565648078918457,0.000011712312698364258,-0.000011920928955078125,-0.000014901161193847656,-0.00011092424392700195,-0.0002231597900390625,-0.000041425228118896484,0.00002428889274597168,-0.0003917813301086426,-0.00007712841033935547,0.00010204315185546875,0.00008615851402282715,-0.00011742115020751953,0.0003961622714996338,0.0002047717571258545,0.0001895129680633545,-0.0001627206802368164,-0.0000336766242980957,0.00007066130638122559,8.851289749145508e-6,0.0003610849380493164,-0.000011742115020751953,-0.00008004903793334961,0.00015470385551452637,0.0004972219467163086,-0.000058531761169433594,-0.000039696693420410156,-0.000020682811737060547,-0.00004369020462036133,0.0014047622680664062,-1.8477439880371094e-6,0.0004950761795043945,0.00012597441673278809,-0.00011599063873291016,-0.00007367134094238281,0.00004062056541442871,-0.000014901161193847656,0.00007793307304382324,-0.000046312808990478516,0.0010656416416168213,0.00040012598037719727,0.000849306583404541,-0.00020384788513183594,0.0000432431697845459,-0.00004029273986816406,0.000016689300537109375,0.00040596723556518555,0.0007940232753753662,-0.00014144182205200195,-0.005874931812286377,0.00009113550186157227,2.8908252716064453e-6,-0.00016045570373535156,-0.000046193599700927734,-0.00005835294723510742,0.00006178021430969238,-0.000018596649169921875,0.00010889768600463867,-0.00027680397033691406,0.00010779500007629395,-0.00027441978454589844,-0.00008445978164672852,0.00009268522262573242,-0.00017279386520385742,0.00006467103958129883,0.0004950761795043945,0.0000775754451751709,0.0000374913215637207,0.00022345781326293945,0.00012093782424926758,0.0003274977207183838,0.000019669532775878906,0.00033020973205566406,-0.00003504753112792969,-0.0000871419906616211,0.000017523765563964844,-0.0006068944931030273,0.000061005353927612305,-0.000095367431640625,0.0000756680965423584,0.00001341104507446289,-0.0009786486625671387,-0.000012934207916259766,0.0000349581241607666,-0.0003701448440551758,0.000010371208190917969,-5.9604644775390625e-6,0.00003406405448913574,-0.000041425228118896484,-8.761882781982422e-6,0.000030159950256347656,0.00046899914741516113,-0.00006318092346191406,-0.0002562999725341797,0.00007158517837524414,0.0002543032169342041,-0.000037670135498046875,-0.00010693073272705078,-0.000022649765014648438,0.00003960728645324707,-0.000018477439880371094,0.00010392069816589355,0.00022241473197937012,0.0004367232322692871,0.00011566281318664551,0.00013458728790283203,-0.0009288191795349121,0.00008669495582580566,0.00008428096771240234,-0.00005173683166503906,-0.00001996755599975586,0.0021333694458007812,-0.000039696693420410156,-5.066394805908203e-6,-4.172325134277344e-6,0.00011241436004638672,-0.00016045570373535156,0.0005744993686676025,-0.0015993714332580566,-0.00021839141845703125,0.00008684396743774414,0.00004920363426208496,-0.000052869319915771484,-0.000020384788513183594,-0.0004373788833618164,-0.00005835294723510742,-0.0000712275505065918,0.000742793083190918,7.12275505065918e-6,0.00014385581016540527,0.00009700655937194824,0.00003826618194580078,-0.0017909407615661621,-0.00033468008041381836,0.000041872262954711914,0.000052869319915771484,0.000033229589462280273,-0.00010007619857788086,0.0005438625812530518,-0.001097559928894043,-0.0002574324607849121,0.0006753504276275635,0.00013458728790283203,-0.0001221299171447754,-0.0001068115234375,0.00042429566383361816,0.0006009042263031006,0.00032508373260498047,0.000013172626495361328,0.00008678436279296875,-0.00009131431579589844,0.0000616610050201416,0.00018781423568725586,-0.000056684017181396484,0.005434244871139526,-0.00016295909881591797,1.6391277313232422e-6,-0.00034165382385253906,0.004350781440734863,-0.00008690357208251953,0.00006189942359924316,-0.0001798868179321289,0.0005969405174255371,-0.0000317692756652832,-0.000016868114471435547,0.0014499127864837646,0.000045418739318847656,0.00012728571891784668,0.0001658797264099121,0.0006530582904815674,0.000023245811462402344,0.000054776668548583984,-0.00016069412231445312,-0.00011217594146728516,0.00007176399230957031,-0.000024318695068359375,0.000026017427444458008,3.9637088775634766e-6,-0.0001450181007385254,3.9637088775634766e-6,-0.0002853870391845703,-0.000087738037109375,-0.0000711679458618164,-0.00011432170867919922,0.0000686347484588623,-0.0000464320182800293,-0.00010776519775390625,-0.00006765127182006836,0.0004754364490509033,0.00004595518112182617,-0.00006890296936035156,0.0005850493907928467,-0.00008744001388549805,-0.00007069110870361328,-2.4437904357910156e-6,0.00005805492401123047,0.00031641125679016113,-0.000041425228118896484,0.00003764033317565918,0.0010000765323638916,0.00014406442642211914,0.00011867284774780273,-0.0003510713577270508,-0.00006175041198730469,-0.000059604644775390625,-0.0006822347640991211,0.00040149688720703125,0.00035181641578674316,0.0001086890697479248,0.0005919337272644043,-9.298324584960938e-6,-0.00008887052536010742,-0.000012576580047607422,0.00003489851951599121,-0.000023663043975830078,-0.000011146068572998047,-0.00019347667694091797,0.00006115436553955078,0.000059098005294799805,0.00012683868408203125,-0.000016748905181884766,0.00016137957572937012,0.00034555792808532715,-0.00006031990051269531,0.00004026293754577637,-5.602836608886719e-6,0.0001049339771270752,0.0007477998733520508,0.0003269612789154053,-9.000301361083984e-6,0.0007869601249694824,-0.00004464387893676758,0.00022143125534057617,6.288290023803711e-6,-0.00004887580871582031,-9.953975677490234e-6,0.00002905726432800293,-0.00016939640045166016,-0.0001137852668762207,-0.0006788372993469238,-0.000053822994232177734,-0.00016885995864868164,0.00022745132446289062,-0.000016808509826660156,-0.0008813738822937012,-0.0000794529914855957,-0.00006848573684692383,1.0053213834762573,0.00005036592483520508,0.0002967417240142822,-0.00007337331771850586,-0.00008976459503173828,-0.0001399517059326172,6.854534149169922e-6,-0.000016570091247558594,0.0001411139965057373,-0.000043392181396484375,0.0002351999282836914,-0.00013822317123413086,-0.00008910894393920898,-0.0002574324607849121,0.000050634145736694336,0.00001621246337890625,0.00004062056541442871,-0.00005745887756347656,-0.00010639429092407227,-0.000020623207092285156,0.00013136863708496094,0.00020235776901245117,-0.0001925826072692871,0.000913769006729126,0.00016289949417114258,-0.00006896257400512695,-0.0001348257064819336,0.00009226799011230469,-0.0000705718994140625,0.00003471970558166504,0.0000298917293548584,0.0001112222671508789,0.0004158318042755127,0.0008469820022583008,0.00019982457160949707,0.000058531761169433594,-0.00009304285049438477,0.00010889768600463867,-0.00006109476089477539,0.00020065903663635254,-0.00009244680404663086,0.0009026229381561279,-0.00008744001388549805,-0.00008374452590942383,0.0001289844512939453,0.0001412034034729004,0.0006379783153533936,0.00024580955505371094,-0.0001399517059326172,0.00045603513717651367,0.000038564205169677734,0.00003463029861450195,0.00024336576461791992,0.000011533498764038086,0.00012996792793273926,0.00009161233901977539,-0.000049054622650146484,0.000013768672943115234,-0.000039637088775634766,-0.000012874603271484375,-0.00013893842697143555,-0.00005030632019042969,0.0029011666774749756,0.00017622113227844238,-0.0001895427703857422,0.000030159950256347656,0.0001614093780517578,-0.0001315474510192871,0.00016948580741882324,-0.0000641942024230957,-1.1920928955078125e-7,0.000038743019104003906,0.00001677870750427246,0.00006395578384399414,0.00024193525314331055,0.00001704692840576172,0.0001290440559387207,-0.00013250112533569336,0.0001328885555267334,-0.00005990266799926758,0.0009530782699584961,-0.00003737211227416992,0.00011879205703735352,-0.00004857778549194336,0.00023424625396728516,0.00014987587928771973,1.341104507446289e-6,0.00009950995445251465,-0.0006316900253295898,-0.000024318695068359375,-0.0001887679100036621,0.00003555417060852051,-0.00010031461715698242,0.00020363926887512207,0.001071631908416748,0.000025719404220581055,-0.00015312433242797852,0.00007069110870361328,-2.9206275939941406e-6,3.635883331298828e-6,0.00008845329284667969,-0.00009316205978393555,-0.000024080276489257812,0.00016251206398010254,-0.00022178888320922852,0.000054836273193359375,0.0012392103672027588,0.00026172399520874023,-0.00013691186904907227,-7.510185241699219e-6,-0.00001615285873413086,0.000030159950256347656,0.0003439784049987793,7.778406143188477e-6,0.00012189149856567383,0.0004372894763946533,-0.004754066467285156,-0.000037670135498046875,-0.00001823902130126953,-0.000095367431640625,0.0002976953983306885,0.00007987022399902344,-0.000095367431640625,-0.0000286102294921875,-0.00007665157318115234,-0.00001436471939086914,-0.00018084049224853516,-0.00005918741226196289,-0.00010216236114501953,0.0033968687057495117,0.00006374716758728027,-0.00006371736526489258,-0.000015497207641601562,-0.0002683401107788086,0.0002593696117401123,0.000024080276489257812,0.00011664628982543945,0.0001049339771270752,0.00007963180541992188,-0.0000947713851928711,0.00019308924674987793,7.778406143188477e-6,-0.00006431341171264648,-0.000225067138671875,-0.00004184246063232422,-0.00019377470016479492,-0.000011622905731201172,-0.00006175041198730469,0.000010371208190917969,-0.00021135807037353516,-0.00006175041198730469,3.4868717193603516e-6,0.000058531761169433594,0.000702202320098877,-0.0000966191291809082,-0.00011718273162841797,0.000013738870620727539,-0.00008422136306762695,0.00007742643356323242,-4.172325134277344e-7,-1.1920928955078125e-6,0.000056415796279907227,0.00007918477058410645,0.00035059452056884766,-0.00007766485214233398,-0.000020205974578857422,0.0005331635475158691,-0.0000546574592590332,0.00043022632598876953,0.00006148219108581543,0.00007614493370056152,-0.00014507770538330078,0.00018468499183654785,0.0005929470062255859,0.000373154878616333,-0.00005835294723510742,-0.000015437602996826172,0.0013747215270996094,-0.000013828277587890625,-0.00008934736251831055,0.000050634145736694336,1.817941665649414e-6,0.000056624412536621094,7.12275505065918e-6,0.00017049908638000488,0.0000292360782623291,0.00009498000144958496,-0.0008346438407897949,0.00006598234176635742,-0.0009838342666625977,0.00009682774543762207,0.00009846687316894531,-0.00016045570373535156,-0.000020682811737060547,0.00003808736801147461,0.00010439753532409668,0.00012499094009399414,0.00007447600364685059,-0.00008386373519897461,0.000044673681259155273,0.00006115436553955078,-0.00013870000839233398,-0.00006175041198730469,0.00043317675590515137,0.000038743019104003906,0.00001385807991027832,-0.000044345855712890625,0.00022846460342407227,-0.00015550851821899414,0.0006593763828277588,0.0004057586193084717,0.0000966787338256836,0.000028342008590698242,-0.000042557716369628906,-0.00019371509552001953,-0.00005370378494262695,0.04569914937019348,0.000011056661605834961,0.00008675456047058105,0.00008410215377807617,0.000030159950256347656,0.0005034506320953369,-0.00011730194091796875,0.0007529854774475098,0.00004190206527709961,-0.00001609325408935547,-0.00001436471939086914,-0.00005841255187988281,0.00007608532905578613,0.0010043978691101074,-0.00021779537200927734,0.0017265081405639648,0.00008234381675720215,0.00034672021865844727,-0.00008767843246459961,-0.00017696619033813477,-0.0000654458999633789,-0.00012701749801635742,0.00006195902824401855,-0.000021576881408691406,-0.000017583370208740234,0.000053316354751586914,0.0004355311393737793,-0.00007617473602294922,-0.002789020538330078,0.011596471071243286,0.00008779764175415039,0.00044164061546325684,0.0001531839370727539,0.000048667192459106445,0.00001677870750427246,-0.00006622076034545898,0.000038743019104003906,-0.000018775463104248047,-0.0001881122589111328,0.00019782781600952148,0.00003764033317565918,-0.00017660856246948242,0.00008177757263183594,-0.00034618377685546875,-0.000058710575103759766,0.0006584823131561279,-0.0002532005310058594,0.00021073222160339355,0.00014516711235046387,0.00011813640594482422,-0.00003641843795776367,0.0010380446910858154,0.000011593103408813477,-6.973743438720703e-6,-0.00002199411392211914,-0.000014007091522216797,0.00005996227264404297,0.000012487173080444336,-0.000032782554626464844,0.00011220574378967285,-0.00013571977615356445,0.00019812583923339844,-0.000012874603271484375,-0.00043958425521850586,-0.00007092952728271484,-0.00018072128295898438,0.00014585256576538086,-0.00008189678192138672,-0.00021409988403320312,0.00171700119972229,-8.761882781982422e-6,0.0003184974193572998,0.0005669295787811279,-0.000014781951904296875,-0.0003084540367126465,0.00004062056541442871,-0.00004190206527709961,-0.00008487701416015625,0.0001283884048461914,-0.0002701282501220703,0.00016894936561584473,-0.000034868717193603516,0.0036369264125823975,0.00011771917343139648,-0.0002466440200805664,-0.00008732080459594727,0.00003454089164733887,0.000045418739318847656,-0.000036716461181640625,0.0002453029155731201,0.00013437867164611816,0.00023099780082702637,0.0010644197463989258,3.993511199951172e-6,-0.000036597251892089844,0.0007998347282409668,0.00007387995719909668,2.5331974029541016e-6,0.00010323524475097656,-0.0001049041748046875,0.0010041296482086182,-0.02607262134552002,-0.000019609928131103516,0.000018298625946044922,0.00021958351135253906,-0.00009161233901977539,0.00004652142524719238,-0.00030618906021118164,0.00026607513427734375,0.9759286642074585,0.0001678466796875,0.00005778670310974121,-0.00003838539123535156,0.1501309871673584,-0.00001424551010131836,-0.00018012523651123047,2.1457672119140625e-6,-0.00018012523651123047,0.0001347661018371582,0.00010010600090026855,7.867813110351562e-6,-0.000055909156799316406,0.00006034970283508301,0.00007128715515136719,0.00027117133140563965,8.374452590942383e-6,-0.00004029273986816406,-0.00011199712753295898,0.0002613663673400879,-0.000010013580322265625,0.00035321712493896484,-0.00005882978439331055,0.00034818053245544434,0.00021058320999145508,-0.00006222724914550781,0.0001042783260345459,0.0005699694156646729,0.000016510486602783203,0.0005570054054260254,0.00007387995719909668,-0.000037670135498046875,0.000026464462280273438,0.00016441941261291504,1.8775463104248047e-6,0.00006970763206481934,0.00012162327766418457,0.000011056661605834961,0.00018593668937683105,-0.00008165836334228516,-0.00003212690353393555,-0.00004887580871582031,0.0007893145084381104,-0.0001633167266845703,-0.00013697147369384766,-0.0001380443572998047,0.0005807280540466309,0.00007909536361694336,-0.000014126300811767578,0.0002624094486236572,-0.00009489059448242188,-0.00010722875595092773,0.00004369020462036133,0.00010323524475097656,-0.00002092123031616211,9.804964065551758e-6,-0.000028133392333984375,-0.000011146068572998047,0.011081278324127197,0.00010761618614196777,-0.00011301040649414062,-0.00004857778549194336,0.00010439753532409668,0.00002893805503845215,-0.0010860562324523926,-0.00003415346145629883,-0.00009453296661376953,0.000141143798828125,-0.00011914968490600586,-6.973743438720703e-6,-0.000036656856536865234,0.00009080767631530762,-0.0001361370086669922,-3.159046173095703e-6,0.00002250075340270996,0.000017255544662475586,-0.000024080276489257812,-0.0000972747802734375,0.00008705258369445801,-0.0000788569450378418,-0.00005078315734863281,0.0000743567943572998,0.00019621849060058594,-0.00006967782974243164,0.0007491409778594971,-0.00006395578384399414,-0.0000737309455871582,0.0013224780559539795,-0.0002516508102416992,-0.0000521540641784668,-0.00019508600234985352,-0.00015151500701904297,0.001351773738861084,0.00009173154830932617,-0.00008744001388549805,-0.0001621842384338379,-0.00021922588348388672,-0.00029927492141723633,-0.00005316734313964844,-3.635883331298828e-6,-0.00017023086547851562,0.00009468197822570801,0.00008127093315124512,-0.00008630752563476562,-0.00007474422454833984,-0.00034499168395996094,0.000046759843826293945,0.00012165307998657227,0.00041747093200683594,-0.0001156926155090332,9.000301361083984e-6,0.00085410475730896,-0.0003705024719238281,0.0009673833847045898,-0.00012570619583129883,0.000760197639465332,-0.00015598535537719727,0.00018960237503051758,0.00010690093040466309,0.0003711581230163574,-0.00025218725204467773,0.00003516674041748047,-0.000011324882507324219,4.0531158447265625e-6,-0.000022292137145996094,-0.00003170967102050781,-0.000051915645599365234,-0.00006693601608276367,0.00009062886238098145,0.0001035928726196289,0.00016069412231445312,0.0002837181091308594,0.00011771917343139648,-0.000019669532775878906,0.00014135241508483887,0.001089245080947876,0.00003203749656677246,-0.00008922815322875977,0.0008187592029571533,-0.000302731990814209,0.00029337406158447266,-7.152557373046875e-6,0.00008806586265563965,-0.0003051161766052246,-0.00006645917892456055,-0.00003635883331298828,-0.00014162063598632812,-0.00002372264862060547,-0.000036597251892089844,0.0007529258728027344,0.00007665157318115234,-0.000025451183319091797,-0.000040531158447265625,0.00007104873657226562,-0.00011175870895385742,-0.000030934810638427734,7.599592208862305e-6,0.000049054622650146484,-0.00004607439041137695,0.00012770295143127441,0.000044345855712890625,-0.000010609626770019531,-0.00011438131332397461,0.0004245340824127197,-0.00006753206253051758,0.00015914440155029297,0.0013771355152130127,-0.00003415346145629883,0.00005841255187988281,-0.00014597177505493164,-0.00005984306335449219,0.0005838274955749512,-0.00009143352508544922,9.000301361083984e-6,0.00005742907524108887,-0.000025331974029541016,0.0006593763828277588,-9.238719940185547e-6,0.00001868605613708496,3.725290298461914e-6,0.00015681982040405273,0.0002709031105041504,-0.00002199411392211914,0.00002586841583251953,0.00019541382789611816,0.00006467103958129883,-0.00004655122756958008,-0.0001233220100402832,0.0007963180541992188,8.374452590942383e-6,-0.0000749826431274414,0.00012382864952087402,-0.00012737512588500977,0.00013071298599243164,0.00003337860107421875,-6.67572021484375e-6,0.00010180473327636719,-0.00008857250213623047,0.00005391240119934082,-0.0001329183578491211,-0.00012195110321044922,-0.0008754730224609375,-0.00001728534698486328,-0.000043392181396484375,-0.00010722875595092773,-0.00004583597183227539,-0.00015968084335327148,-0.00048410892486572266,0.0002460479736328125,-0.00011199712753295898,-0.00003981590270996094,-0.00017434358596801758,-0.000024437904357910156,-0.0002771615982055664,-0.00015795230865478516,-0.0000985860824584961,0.00013819336891174316,0.00004661083221435547,-0.00007891654968261719,5.334615707397461e-6,0.00004073977470397949,0.0000444948673248291,3.9637088775634766e-6,-0.00009739398956298828,-0.000056624412536621094,-0.0000883936882019043,0.003315061330795288,-0.00010287761688232422,0.00015798211097717285,0.00004312396049499512,-0.0001278519630432129,0.0006258785724639893,0.0006172060966491699,0.0006260275840759277,-0.0000661611557006836,-0.0001258254051208496,0.0002942383289337158,0.00002467632293701172,-0.0000362396240234375,0.0002967715263366699,0.0005104243755340576,0.0003930330276489258,0.00009003281593322754,0.0005249977111816406,-0.000024080276489257812,-0.000039577484130859375,-0.000059485435485839844,-0.00010609626770019531,0.00006970763206481934,-0.00005549192428588867,-4.172325134277344e-7,-0.000028192996978759766,0.0006927251815795898,0.000064849853515625,0.00017240643501281738,0.0003860592842102051,0.00001099705696105957,0.0005478560924530029,-1.7881393432617188e-6,-0.00004792213439941406,0.0031849443912506104,-0.00006020069122314453,-0.000021755695343017578,0.0016826987266540527,0.00017067790031433105,0.0003650486469268799,0.0019600093364715576,-0.001213669776916504,-0.000054001808166503906,-0.00012058019638061523,1.7881393432617188e-6,0.00003865361213684082,-0.00034630298614501953,-0.00019556283950805664,-0.00009453296661376953,-0.00010150671005249023,-0.00010442733764648438,0.002476811408996582,-0.000011444091796875,-0.00016421079635620117,-0.00012880563735961914,-0.0001335740089416504,0.0002416372299194336,0.00014317035675048828,2.652406692504883e-6,-0.00006979703903198242,0.000023424625396728516,9.47713851928711e-6,-0.00004029273986816406,-0.00014132261276245117,0.00008127093315124512,0.00019726157188415527,0.00019049644470214844,0.000029772520065307617,-0.00004947185516357422,2.294778823852539e-6,0.0001945197582244873,0.00005608797073364258,-0.00007086992263793945,0.00015664100646972656,-0.00001728534698486328,-0.000020205974578857422,0.000058531761169433594,-0.00001239776611328125,0.000026166439056396484,-0.00029355287551879883,0.0001042485237121582,0.000020265579223632812,0.00023192167282104492,-0.000047087669372558594,-0.00003904104232788086,-0.00008589029312133789,0.000013738870620727539,-1.1920928955078125e-6,-0.00001537799835205078,0.000012993812561035156,0.000030606985092163086,0.000954747200012207,-0.00002568960189819336,-0.00020951032638549805,0.00015994906425476074,-0.00007778406143188477,-0.00006812810897827148,7.063150405883789e-6,2.1457672119140625e-6,-0.00005429983139038086,0.000034928321838378906,0.0004165470600128174,-0.00015497207641601562,-0.00004267692565917969,-0.00015878677368164062,0.000013947486877441406,0.0006739795207977295,0.0003508925437927246,-0.00004673004150390625,0.0004112124443054199,0.00015872716903686523,-0.0000941157341003418,0.00008428096771240234,0.00010097026824951172,0.0005241334438323975,-0.000014126300811767578,0.00022220611572265625,0.0001366734504699707,0.0002944469451904297,-0.00004589557647705078,0.00006970763206481934,-0.00006103515625,-0.000152587890625,-0.000011146068572998047,-0.0001881718635559082,0.000042110681533813477,0.00005695223808288574,0.00003364682197570801,0.0000432431697845459,-0.0007026791572570801,0.00012311339378356934,-0.00003844499588012695,0.0004939138889312744,0.00022718310356140137,-1.5497207641601562e-6,0.0006563067436218262,-0.00007462501525878906,-0.000056684017181396484,0.00039136409759521484,0.000058978796005249023,0.0002917349338531494,0.00001946091651916504,0.00001093745231628418,0.00020778179168701172,0.00025895237922668457,0.00011643767356872559,0.000163346529006958,-0.0001633763313293457,0.00005924701690673828,-9.000301361083984e-6,0.0005913972854614258,-0.00007712841033935547,0.0006880760192871094,-0.00010514259338378906,-0.00007265806198120117,-0.0001366734504699707,-4.351139068603516e-6,-0.00004655122756958008,0.00035053491592407227,0.00002849102020263672,0.00016480684280395508,0.00023156404495239258,-0.00006395578384399414,-6.973743438720703e-6,0.00018343329429626465,-0.0001551508903503418,0.00020942091941833496,-0.00002276897430419922,-0.00002300739288330078,0.00024211406707763672,0.00007909536361694336,0.00007602572441101074,-0.00004947185516357422,-0.00010538101196289062,-0.000049114227294921875,-0.00025194883346557617,-9.298324584960938e-6,0.000029087066650390625,0.0001468658447265625,0.00008505582809448242,-0.0001957416534423828,-0.0000864267349243164,-0.00007539987564086914,-0.0003122091293334961,0.00018867850303649902,0.00016611814498901367,0.00003993511199951172,0.00007963180541992188,-0.000095367431640625,0.00007385015487670898,-7.152557373046875e-6,-0.000031828880310058594,0.000011056661605834961,0.00006145238876342773,0.000027924776077270508,0.00003218650817871094,-0.000020444393157958984,0.000010281801223754883,0.00013840198516845703,0.00013649463653564453,0.00010675191879272461,-0.00002586841583251953,0.00009930133819580078,0.00047284364700317383,-4.172325134277344e-6,-0.000024080276489257812,-0.00030034780502319336,0.00020995736122131348,0.00015553832054138184,0.0005878210067749023,-0.00019359588623046875,-0.00014448165893554688,-9.298324584960938e-6,-0.00004845857620239258,0.00018483400344848633,0.000025719404220581055,-0.0009467601776123047,-0.0001487135887145996,-0.000038564205169677734,0.0000578463077545166,0.00016960501670837402,0.000764697790145874,-0.00006091594696044922,0.0008490979671478271,0.00026607513427734375,0.00004622340202331543,-5.245208740234375e-6,-0.00009161233901977539,-0.0000922083854675293,0.000026464462280273438,-0.00006783008575439453,0.00045120716094970703,-0.00012105703353881836,-0.000056743621826171875,-0.000019550323486328125,0.00001385807991027832,0.00006276369094848633,0.000033855438232421875,0.00012692809104919434,-2.682209014892578e-6,-0.0017408132553100586,-0.00017219781875610352,-0.00020843744277954102,7.867813110351562e-6,-0.000052928924560546875,0.00013169646263122559,-0.00021910667419433594,-0.0001297593116760254,0.00011372566223144531,0.0000254213809967041,0.0004188418388366699,-0.00006753206253051758,-0.000038564205169677734,0.0003267228603363037,0.000027239322662353516,-0.0002333521842956543,0.0003903210163116455,-0.00010091066360473633,-8.165836334228516e-6,0.0003724992275238037,0.00019043684005737305,-0.00009942054748535156,0.0000489354133605957,0.0002484321594238281,-0.00010961294174194336,0.00008615851402282715,0.000418931245803833,0.0005750060081481934,0.00014188885688781738,-0.00006395578384399414,-0.0010715126991271973,0.000030249357223510742,-0.000038564205169677734,-0.00011688470840454102,0.0006131529808044434,0.00012955069541931152,0.000339508056640625,0.00006148219108581543,0.000047773122787475586,-0.00004404783248901367,0.0000890493392944336,-0.00016045570373535156,0.000012487173080444336,0.0011903643608093262,-0.0003783702850341797,0.0000775754451751709,-0.000026226043701171875,-0.00008785724639892578,-0.000047087669372558594,0.0008422434329986572,-0.00007736682891845703,-0.00006848573684692383,0.00009179115295410156,0.00010085105895996094,0.00008597970008850098,0.000010371208190917969,0.00011652708053588867,-0.0001112222671508789,-1.1920928955078125e-6,-0.00017017126083374023,-0.00020551681518554688,0.0007346570491790771,0.00004076957702636719,-0.00026047229766845703,-0.000025212764739990234,0.00014421343803405762,0.00004780292510986328,0.000058531761169433594,-0.000041425228118896484,-0.00005692243576049805,0.0004298985004425049,-6.198883056640625e-6,-0.00007581710815429688,-0.0001499652862548828,0.0002675354480743408,0.00011977553367614746,-0.00010728836059570312,0.00017654895782470703,0.0004202425479888916,7.18235969543457e-6,-0.0007015466690063477,0.00023221969604492188,-0.00011599063873291016,0.0005787014961242676,0.000038564205169677734,0.0013332366943359375,-0.004218101501464844,-0.000020205974578857422,-4.172325134277344e-7,0.00010704994201660156,0.0016810297966003418,-0.00013256072998046875,0.0001659989356994629,-0.00014466047286987305,0.00007575750350952148,-0.00006264448165893555,-0.00001811981201171875,0.00021409988403320312,-0.00001150369644165039,-0.00006753206253051758,-0.000038683414459228516,-9.59634780883789e-6,-0.00025784969329833984,0.0006210207939147949,-0.00017577409744262695,0.00010445713996887207,-0.000010728836059570312,0.00013047456741333008,0.000013828277587890625,-0.000041544437408447266,0.0007458925247192383,-0.0000858306884765625,-0.000037729740142822266,-0.000018656253814697266,0.0002232193946838379,0.00007909536361694336,-4.351139068603516e-6,-0.00012737512588500977,0.00021025538444519043,0.0001736283302307129,0.0003789961338043213,-4.351139068603516e-6,0.00015872716903686523,-0.0005110502243041992,0.00003865361213684082,-0.0001786947250366211,0.0001609325408935547,0.00024062395095825195,0.000043720006942749023,-0.0000349879264831543,0.000023156404495239258,-0.00011533498764038086,-0.000030994415283203125,0.0000368654727935791,0.000024259090423583984,-3.4570693969726562e-6,0.0002097487449645996,-0.00016707181930541992,-0.000050067901611328125,-0.00008952617645263672,-0.00010228157043457031,1.0005313158035278,-0.000054717063903808594,-0.00016546249389648438,-0.00009500980377197266,0.0001690685749053955,-0.00002199411392211914,0.00006073713302612305,0.00019568204879760742,-0.000016987323760986328,-0.0010405778884887695,0.00020575523376464844,0.000033020973205566406,-0.00007766485214233398,-0.00010836124420166016,0.00009387731552124023,0.000021636486053466797,-0.00002372264862060547,0.00006508827209472656,-0.00004225969314575195,0.00033912062644958496,-0.00004857778549194336,-0.00014191865921020508,-0.0000438690185546875,-0.0001957416534423828,-0.00045299530029296875,-0.0004190206527709961,-0.00016444921493530273,-0.00011032819747924805,-0.000043511390686035156,-0.00003999471664428711,0.00002518296241760254,-0.000018298625946044922,0.00048103928565979004,-0.0000903010368347168,-0.000016808509826660156,-0.00013184547424316406,0.0003961622714996338,0.0000934302806854248,-0.00014221668243408203,-0.000047266483306884766,0.0003228485584259033,-0.00004583597183227539,0.00020706653594970703,-0.00004851818084716797,-0.000032901763916015625,0.00004941225051879883,-0.0002129673957824707,0.00007614493370056152,0.00008949637413024902,0.00005409121513366699,0.000012993812561035156,0.0005127489566802979,-9.715557098388672e-6,0.00006970763206481934,0.0001710653305053711,0.00005334615707397461,-0.00026023387908935547,-0.000010609626770019531,0.006366103887557983,0.000048220157623291016,-0.00006979703903198242,0.0000693202018737793,0.0006429851055145264,-5.900859832763672e-6,0.000010371208190917969,-0.00034821033477783203,0.000018537044525146484,-0.00017952919006347656,-0.0001266002655029297,0.0000254213809967041,0.00009113550186157227,0.000034481287002563477,0.0001353621482849121,0.00001430511474609375,-0.00022977590560913086,-0.00010877847671508789,0.0005900561809539795,0.000016689300537109375],"dim":[10254,1],"v":1}}],"pipeline_name":"edge-pipeline","shadow_data":{},"time":1694197369398}]